
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --soil: #1c1a14;
  --bark: #2e2a1f;
  --moss: #3a5c2a;
  --leaf: #5a8f3c;
  --sprout: #8dc063;
  --straw: #e8dfc0;
  --cream: #f7f3ea;
  --white: #ffffff;
  --rust: #c4622d;
  --harvest: #d4a017;
  --mist: rgba(255,255,255,0.06);
  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'DM Sans', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }
body { font-family: var(--sans); background: var(--cream); color: var(--soil); overflow-x: hidden; }

/* ─── NAV ─── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center;
  padding: 0 48px; height: 68px;
  background: rgba(28,26,20,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-logo-mark {
  width: 34px; height: 34px; background: var(--leaf);
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 15px; font-weight: 700; color: #fff; letter-spacing: -0.5px;
}
.nav-logo-text { font-family: var(--serif); font-size: 20px; color: #fff; font-weight: 700; letter-spacing: 0.02em; }
.nav-links { display: flex; align-items: center; gap: 32px; margin: 0 auto; }
.nav-links a { font-size: 14px; color: rgba(255,255,255,0.65); text-decoration: none; font-weight: 400; transition: color 0.2s; }
.nav-links a:hover { color: #fff; }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.btn-ghost { padding: 8px 18px; border: 1px solid rgba(255,255,255,0.2); border-radius: 6px; font-size: 14px; color: rgba(255,255,255,0.8); text-decoration: none; font-family: var(--sans); cursor: pointer; background: none; transition: border-color 0.2s, color 0.2s; }
.btn-ghost:hover { border-color: rgba(255,255,255,0.5); color: #fff; }
.btn-primary { padding: 9px 20px; background: var(--leaf); border: none; border-radius: 6px; font-size: 14px; color: #fff; font-family: var(--sans); font-weight: 500; cursor: pointer; text-decoration: none; transition: background 0.2s; }
.btn-primary:hover { background: var(--moss); }

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  background: var(--soil);
  position: relative;
  display: flex; align-items: center;
  overflow: hidden;
  padding: 120px 48px 80px;
}
.hero-texture {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(ellipse 60% 50% at 70% 50%, rgba(58,92,42,0.35) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 20% 80%, rgba(90,143,60,0.12) 0%, transparent 60%);
}
.hero-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 64px 64px;
}
.hero-content { position: relative; max-width: 680px; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(90,143,60,0.15); border: 1px solid rgba(90,143,60,0.3);
  border-radius: 20px; padding: 5px 14px; margin-bottom: 28px;
  font-size: 12px; color: var(--sprout); letter-spacing: 0.08em; text-transform: uppercase; font-weight: 500;
}
.hero-eyebrow-dot { width: 6px; height: 6px; background: var(--sprout); border-radius: 50%; }
.hero h1 {
  font-family: var(--serif); font-size: clamp(48px, 6vw, 82px);
  line-height: 1.05; color: #fff; font-weight: 900;
  margin-bottom: 24px; letter-spacing: -0.02em;
}
.hero h1 em { color: var(--sprout); font-style: italic; }
.hero-sub { font-size: 18px; color: rgba(255,255,255,0.55); line-height: 1.7; max-width: 520px; margin-bottom: 40px; font-weight: 300; }
.hero-actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.btn-hero { padding: 14px 28px; background: var(--leaf); border: none; border-radius: 8px; font-size: 16px; color: #fff; font-family: var(--sans); font-weight: 500; cursor: pointer; text-decoration: none; transition: background 0.2s, transform 0.15s; }
.btn-hero:hover { background: #6aaa44; transform: translateY(-1px); }
.btn-hero-outline { padding: 14px 28px; background: none; border: 1px solid rgba(255,255,255,0.25); border-radius: 8px; font-size: 16px; color: rgba(255,255,255,0.8); font-family: var(--sans); cursor: pointer; text-decoration: none; transition: border-color 0.2s; }
.btn-hero-outline:hover { border-color: rgba(255,255,255,0.6); color: #fff; }
.hero-trust { display: flex; align-items: center; gap: 10px; margin-top: 48px; }
.hero-trust-text { font-size: 12px; color: rgba(255,255,255,0.35); }
.hero-trust-avatars { display: flex; }
.trust-av { width: 28px; height: 28px; border-radius: 50%; border: 2px solid var(--soil); background: var(--moss); display: flex; align-items: center; justify-content: center; font-size: 10px; color: #fff; font-weight: 500; margin-left: -6px; }
.trust-av:first-child { margin-left: 0; }

.hero-visual {
  position: absolute; right: -20px; top: 50%; transform: translateY(-50%);
  width: 520px;
}
.hero-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px; padding: 24px;
  backdrop-filter: blur(8px);
}
.hero-card-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.hero-card-title { font-size: 13px; color: rgba(255,255,255,0.5); font-weight: 400; }
.hero-card-badge { background: rgba(90,143,60,0.2); border: 1px solid rgba(90,143,60,0.4); border-radius: 20px; padding: 3px 10px; font-size: 11px; color: var(--sprout); }
.hero-stat-row { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 12px; margin-bottom: 20px; }
.hero-stat { background: rgba(255,255,255,0.04); border-radius: 10px; padding: 14px; border: 1px solid rgba(255,255,255,0.07); }
.hero-stat-val { font-size: 22px; font-weight: 500; color: #fff; font-family: var(--serif); }
.hero-stat-lbl { font-size: 10px; color: rgba(255,255,255,0.4); margin-top: 2px; }
.hero-bar-row { display: flex; flex-direction: column; gap: 8px; }
.bar-item { display: flex; align-items: center; gap: 10px; font-size: 11px; color: rgba(255,255,255,0.5); }
.bar-label { width: 80px; text-align: right; }
.bar-track { flex: 1; background: rgba(255,255,255,0.07); border-radius: 4px; height: 6px; overflow: hidden; }
.bar-fill { height: 100%; border-radius: 4px; background: var(--leaf); }
.bar-val { width: 36px; color: rgba(255,255,255,0.6); }

/* ─── LOGOS STRIP ─── */
.logos-strip { background: var(--bark); padding: 22px 48px; border-top: 1px solid rgba(255,255,255,0.05); border-bottom: 1px solid rgba(255,255,255,0.05); }
.logos-inner { display: flex; align-items: center; gap: 48px; overflow: hidden; }
.logos-label { font-size: 11px; color: rgba(255,255,255,0.25); text-transform: uppercase; letter-spacing: 0.1em; white-space: nowrap; }
.logos-list { display: flex; align-items: center; gap: 40px; flex-wrap: wrap; }
.logo-item { font-size: 13px; color: rgba(255,255,255,0.25); font-weight: 500; letter-spacing: 0.03em; white-space: nowrap; }

/* ─── SECTIONS ─── */
section { padding: 100px 48px; }
.section-eyebrow { font-size: 11px; color: var(--leaf); text-transform: uppercase; letter-spacing: 0.12em; font-weight: 500; margin-bottom: 14px; }
.section-heading { font-family: var(--serif); font-size: clamp(32px, 4vw, 52px); line-height: 1.1; font-weight: 900; letter-spacing: -0.02em; margin-bottom: 18px; }
.section-sub { font-size: 17px; color: #6b6b5a; line-height: 1.7; max-width: 540px; font-weight: 300; }

/* ─── FEATURES ─── */
.features { background: var(--cream); }
.features-intro { max-width: 600px; margin-bottom: 64px; }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: #d8d0b8; border-radius: 16px; overflow: hidden; }
.feature-tile {
  background: var(--cream); padding: 36px 32px;
  transition: background 0.2s;
}
.feature-tile:hover { background: #f0ebe0; }
.feature-icon {
  width: 44px; height: 44px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px; font-size: 22px;
}
.fi-green { background: #e4f3d8; }
.fi-orange { background: #fdeee2; }
.fi-blue { background: #e3eff9; }
.fi-teal { background: #ddf2ea; }
.fi-purple { background: #ede9f8; }
.fi-amber { background: #fdf2d8; }
.feature-title { font-family: var(--serif); font-size: 19px; font-weight: 700; margin-bottom: 10px; color: var(--soil); }
.feature-desc { font-size: 14px; color: #6b6b5a; line-height: 1.65; font-weight: 300; }

/* ─── RESTAURANT BRIDGE ─── */
.restaurant-bridge { background: var(--soil); color: #fff; position: relative; overflow: hidden; }
.rb-texture {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 55% 70% at 90% 50%, rgba(58,92,42,0.4) 0%, transparent 65%);
}
.rb-inner { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.rb-left .section-eyebrow { color: var(--sprout); }
.rb-left .section-heading { color: #fff; }
.rb-left .section-heading em { color: var(--sprout); font-style: italic; }
.rb-left p { font-size: 16px; color: rgba(255,255,255,0.55); line-height: 1.75; margin-bottom: 32px; font-weight: 300; }
.rb-steps { display: flex; flex-direction: column; gap: 20px; }
.rb-step { display: flex; align-items: flex-start; gap: 14px; }
.rb-step-num { width: 28px; height: 28px; border-radius: 50%; background: rgba(90,143,60,0.2); border: 1px solid rgba(90,143,60,0.4); display: flex; align-items: center; justify-content: center; font-size: 12px; color: var(--sprout); font-weight: 500; flex-shrink: 0; margin-top: 1px; }
.rb-step-title { font-size: 15px; font-weight: 500; color: rgba(255,255,255,0.9); margin-bottom: 3px; }
.rb-step-desc { font-size: 13px; color: rgba(255,255,255,0.45); line-height: 1.6; }
.rb-right { display: flex; flex-direction: column; gap: 14px; }
.rb-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 12px; padding: 20px 22px;
  transition: border-color 0.2s;
}
.rb-card:hover { border-color: rgba(90,143,60,0.4); }
.rb-card-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.rb-card-name { font-size: 14px; font-weight: 500; color: rgba(255,255,255,0.9); }
.rb-card-type { font-size: 10px; background: rgba(90,143,60,0.15); border: 1px solid rgba(90,143,60,0.3); border-radius: 20px; padding: 2px 9px; color: var(--sprout); }
.rb-card-body { display: flex; align-items: center; gap: 10px; }
.rb-produce-chip { background: rgba(255,255,255,0.07); border-radius: 6px; padding: 4px 10px; font-size: 11px; color: rgba(255,255,255,0.55); }
.rb-card-price { margin-left: auto; font-size: 15px; font-weight: 500; color: var(--sprout); }
.rb-alert {
  background: rgba(90,143,60,0.1);
  border: 1px solid rgba(90,143,60,0.3);
  border-radius: 10px; padding: 14px 18px;
  display: flex; align-items: center; gap: 12px;
}
.rb-alert-dot { width: 8px; height: 8px; background: var(--sprout); border-radius: 50%; flex-shrink: 0; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.4; } }
.rb-alert-text { font-size: 13px; color: rgba(255,255,255,0.7); }
.rb-alert-text strong { color: var(--sprout); }

/* ─── MODULES ─── */
.modules { background: var(--white); }
.modules-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: end; margin-bottom: 64px; }
.modules-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.module-card {
  border: 1px solid #e0d9c8;
  border-radius: 14px; padding: 24px;
  background: var(--cream);
  transition: border-color 0.2s, transform 0.2s;
  cursor: default;
}
.module-card:hover { border-color: var(--leaf); transform: translateY(-3px); }
.mc-icon { font-size: 28px; margin-bottom: 14px; display: block; }
.mc-title { font-family: var(--serif); font-size: 16px; font-weight: 700; margin-bottom: 6px; color: var(--soil); }
.mc-desc { font-size: 12px; color: #7a7a68; line-height: 1.6; }

/* ─── WEBSITE CMS ─── */
.website-cms { background: var(--straw); }
.cms-inner { display: grid; grid-template-columns: 1fr 1.1fr; gap: 80px; align-items: center; }
.cms-features { display: flex; flex-direction: column; gap: 24px; margin-top: 36px; }
.cms-feature { display: flex; align-items: flex-start; gap: 14px; }
.cms-feature-icon { width: 36px; height: 36px; background: #fff; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 17px; flex-shrink: 0; border: 1px solid #d8d0b8; }
.cms-feature-title { font-size: 15px; font-weight: 500; color: var(--soil); margin-bottom: 3px; }
.cms-feature-desc { font-size: 13px; color: #7a7a68; line-height: 1.6; }
.cms-mockup { background: #fff; border-radius: 16px; overflow: hidden; border: 1px solid #d8d0b8; box-shadow: 0 24px 60px rgba(28,26,20,0.12); }
.cms-browser-bar { background: #f5f3ee; border-bottom: 1px solid #e8e2d4; padding: 10px 14px; display: flex; align-items: center; gap: 8px; }
.cbr-dot { width: 10px; height: 10px; border-radius: 50%; }
.cbr-url { flex: 1; background: #eee8da; border-radius: 6px; padding: 4px 10px; font-size: 11px; color: #9a9280; text-align: center; }
.cms-page { padding: 0; }
.cms-page-hero { background: var(--soil); padding: 28px 24px; }
.cms-page-farm { font-family: var(--serif); font-size: 22px; color: #fff; font-weight: 700; }
.cms-page-tagline { font-size: 12px; color: rgba(255,255,255,0.45); margin-top: 3px; }
.cms-page-nav { display: flex; gap: 16px; margin-top: 14px; }
.cms-nav-link { font-size: 11px; color: rgba(255,255,255,0.5); }
.cms-nav-link.active { color: var(--sprout); }
.cms-products { padding: 18px; display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 10px; }
.cms-product { border: 1px solid #e8e2d4; border-radius: 8px; padding: 12px; }
.cms-product-img { width: 100%; height: 50px; border-radius: 6px; margin-bottom: 8px; }
.cms-product-name { font-size: 11px; font-weight: 500; color: var(--soil); }
.cms-product-price { font-size: 11px; color: var(--leaf); margin-top: 3px; }
.cms-product-btn { width: 100%; margin-top: 8px; padding: 5px; background: var(--soil); border: none; border-radius: 5px; font-size: 10px; color: #fff; cursor: pointer; font-family: var(--sans); }

/* ─── PRICING ─── */
.pricing { background: var(--cream); }
.pricing-intro { text-align: center; max-width: 560px; margin: 0 auto 56px; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; max-width: 900px; margin: 0 auto; }
.price-card { background: var(--white); border: 1px solid #e0d9c8; border-radius: 16px; padding: 32px 28px; }
.price-card.featured { background: var(--soil); border-color: var(--soil); }
.price-badge { font-size: 10px; background: rgba(90,143,60,0.15); border: 1px solid rgba(90,143,60,0.3); border-radius: 20px; padding: 3px 10px; color: var(--leaf); display: inline-block; margin-bottom: 16px; }
.price-badge.featured-badge { background: rgba(90,143,60,0.25); border-color: rgba(90,143,60,0.5); color: var(--sprout); }
.price-name { font-family: var(--serif); font-size: 22px; font-weight: 700; margin-bottom: 8px; }
.price-card.featured .price-name { color: #fff; }
.price-amount { font-size: 40px; font-weight: 300; color: var(--soil); margin-bottom: 4px; }
.price-card.featured .price-amount { color: #fff; }
.price-amount sup { font-size: 18px; vertical-align: super; }
.price-amount.tbd { font-size: 19px; font-weight: 500; color: var(--leaf); margin-bottom: 24px; }
.price-card.featured .price-amount.tbd { color: #fff; }
.price-period { font-size: 13px; color: #9a9280; margin-bottom: 24px; }
.price-card.featured .price-period { color: rgba(255,255,255,0.4); }
.price-divider { height: 1px; background: #e8e2d4; margin-bottom: 20px; }
.price-card.featured .price-divider { background: rgba(255,255,255,0.1); }
.price-features { list-style: none; display: flex; flex-direction: column; gap: 11px; margin-bottom: 28px; }
.price-features li { font-size: 13px; color: #5a5a4a; display: flex; align-items: center; gap: 9px; }
.price-card.featured .price-features li { color: rgba(255,255,255,0.65); }
.pf-check { width: 16px; height: 16px; background: #e4f3d8; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 9px; color: var(--leaf); }
.price-card.featured .pf-check { background: rgba(90,143,60,0.25); color: var(--sprout); }
.btn-plan { width: 100%; padding: 12px; border-radius: 8px; font-size: 14px; font-family: var(--sans); font-weight: 500; cursor: pointer; transition: background 0.2s; }
.btn-plan-outline { background: none; border: 1px solid #d0c8b4; color: var(--soil); }
.btn-plan-outline:hover { background: var(--cream); }
.btn-plan-solid { background: var(--leaf); border: none; color: #fff; }
.btn-plan-solid:hover { background: var(--moss); }
.btn-plan-white { background: #fff; border: none; color: var(--soil); }
.btn-plan-white:hover { background: #f0ebe0; }

/* ─── TESTIMONIALS ─── */
.testimonials { background: var(--white); }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 56px; }
.testi-card { background: var(--cream); border: 1px solid #e0d9c8; border-radius: 14px; padding: 28px; }
.testi-stars { color: var(--harvest); font-size: 14px; letter-spacing: 2px; margin-bottom: 14px; }
.testi-quote { font-family: var(--serif); font-size: 16px; line-height: 1.65; color: var(--soil); font-style: italic; margin-bottom: 20px; }
.testi-author { display: flex; align-items: center; gap: 10px; }
.testi-av { width: 36px; height: 36px; border-radius: 50%; background: var(--moss); display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 500; color: #fff; flex-shrink: 0; }
.testi-name { font-size: 13px; font-weight: 500; color: var(--soil); }
.testi-farm { font-size: 11px; color: #9a9280; }

/* ─── CTA ─── */
.cta-section {
  background: var(--moss);
  text-align: center; padding: 100px 48px;
  position: relative; overflow: hidden;
}
.cta-texture {
  position: absolute; inset: 0;
  background-image: radial-gradient(ellipse 60% 80% at 50% 100%, rgba(0,0,0,0.3) 0%, transparent 70%);
}
.cta-content { position: relative; }
.cta-eyebrow { font-size: 11px; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 16px; }
.cta-heading { font-family: var(--serif); font-size: clamp(36px, 5vw, 60px); color: #fff; font-weight: 900; line-height: 1.1; margin-bottom: 20px; letter-spacing: -0.02em; }
.cta-heading em { color: var(--sprout); font-style: italic; }
.cta-sub { font-size: 17px; color: rgba(255,255,255,0.6); margin-bottom: 40px; font-weight: 300; }
.cta-actions { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }
.btn-cta-white { padding: 15px 32px; background: #fff; border: none; border-radius: 8px; font-size: 16px; color: var(--moss); font-family: var(--sans); font-weight: 500; cursor: pointer; text-decoration: none; transition: transform 0.15s; }
.btn-cta-white:hover { transform: translateY(-2px); }
.btn-cta-outline { padding: 15px 32px; background: none; border: 1px solid rgba(255,255,255,0.3); border-radius: 8px; font-size: 16px; color: rgba(255,255,255,0.8); font-family: var(--sans); cursor: pointer; text-decoration: none; transition: border-color 0.2s; }
.btn-cta-outline:hover { border-color: rgba(255,255,255,0.7); color: #fff; }

/* ─── FOOTER ─── */
footer { background: var(--soil); color: rgba(255,255,255,0.5); padding: 60px 48px 36px; }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand .nav-logo { margin-bottom: 14px; }
.footer-brand p { font-size: 13px; line-height: 1.7; max-width: 240px; font-weight: 300; }
.footer-col-title { font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.3); margin-bottom: 16px; font-weight: 500; }
.footer-links { display: flex; flex-direction: column; gap: 9px; }
.footer-links a { font-size: 13px; color: rgba(255,255,255,0.45); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: rgba(255,255,255,0.8); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.07); padding-top: 24px; display: flex; align-items: center; justify-content: space-between; }
.footer-copy { font-size: 12px; }
.footer-tagline { font-size: 12px; font-family: var(--serif); font-style: italic; color: rgba(255,255,255,0.2); }

/* ─── ANIMATIONS ─── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
.hero-content > * { animation: fadeUp 0.7s ease both; }
.hero-eyebrow { animation-delay: 0.1s; }
.hero h1 { animation-delay: 0.2s; }
.hero-sub { animation-delay: 0.3s; }
.hero-actions { animation-delay: 0.4s; }
.hero-trust { animation-delay: 0.5s; }
.hero-visual { animation: fadeUp 0.9s 0.35s ease both; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1100px) {
  .hero-visual { display: none; }
  .hero-content { max-width: 100%; }
  .rb-inner, .cms-inner { grid-template-columns: 1fr; gap: 48px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .modules-grid { grid-template-columns: repeat(2, 1fr); }
  .modules-intro { grid-template-columns: 1fr; gap: 20px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
}
.nav-toggle {
  display: none; background: none; border: none; color: #fff;
  font-size: 22px; cursor: pointer; padding: 4px 8px; margin-left: 8px;
}
.nav-links.open {
  display: flex; flex-direction: column; position: absolute;
  top: 68px; left: 0; right: 0; background: rgba(28,26,20,0.98);
  padding: 20px 24px 24px; gap: 16px; border-bottom: 1px solid rgba(255,255,255,0.07);
}

/* ─── INNER PAGES ─── */
.page-hero {
  background: var(--soil); padding: 140px 48px 72px;
  position: relative; overflow: hidden;
}
.page-hero .hero-texture, .page-hero .hero-grid { position: absolute; inset: 0; }
.page-hero-inner { position: relative; max-width: 720px; }
.page-hero h1 {
  font-family: var(--serif); font-size: clamp(36px, 5vw, 56px);
  color: #fff; font-weight: 900; line-height: 1.1; margin-bottom: 16px;
}
.page-hero p { font-size: 17px; color: rgba(255,255,255,0.55); line-height: 1.7; font-weight: 300; max-width: 540px; }
.page-body { padding: 72px 48px 100px; max-width: 960px; margin: 0 auto; }
.page-body.wide { max-width: 1100px; }
.prose h2 { font-family: var(--serif); font-size: 28px; font-weight: 700; margin: 40px 0 14px; color: var(--soil); }
.prose h3 { font-family: var(--serif); font-size: 20px; font-weight: 700; margin: 28px 0 10px; }
.prose p, .prose li { font-size: 15px; color: #5a5a4a; line-height: 1.75; font-weight: 300; margin-bottom: 14px; }
.prose ul, .prose ol { padding-left: 24px; margin-bottom: 20px; }
.prose a { color: var(--leaf); text-decoration: none; }
.prose a:hover { text-decoration: underline; }

/* ─── FORMS ─── */
.auth-section { min-height: 100vh; background: var(--soil); display: flex; align-items: center; justify-content: center; padding: 100px 24px 48px; position: relative; }
.auth-section .hero-texture, .auth-section .hero-grid { position: absolute; inset: 0; }
.auth-card {
  position: relative; background: var(--cream); border-radius: 16px;
  padding: 40px; width: 100%; max-width: 420px;
  border: 1px solid #e0d9c8; box-shadow: 0 24px 60px rgba(0,0,0,0.25);
}
.auth-card h1 { font-family: var(--serif); font-size: 28px; font-weight: 900; margin-bottom: 8px; }
.auth-card .auth-sub { font-size: 14px; color: #7a7a68; margin-bottom: 28px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 13px; font-weight: 500; margin-bottom: 6px; color: var(--soil); }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 11px 14px; border: 1px solid #d0c8b4; border-radius: 8px;
  font-family: var(--sans); font-size: 14px; background: #fff; color: var(--soil);
}
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--leaf); }
.form-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; font-size: 13px; }
.form-row a { color: var(--leaf); text-decoration: none; }
.auth-footer { text-align: center; margin-top: 24px; font-size: 13px; color: #7a7a68; }
.auth-footer a { color: var(--leaf); text-decoration: none; font-weight: 500; }
.demo-box {
  background: #f0ebe0; border: 1px solid #d0c8b4; border-radius: 8px;
  padding: 14px 16px; margin-bottom: 22px; font-size: 13px;
}
.demo-box-title { font-weight: 500; color: var(--soil); margin-bottom: 6px; }
.demo-box code { background: #fff; padding: 1px 6px; border-radius: 4px; font-size: 12px; color: var(--soil); }
.btn-demo {
  width: 100%; padding: 11px; margin-top: 10px; background: none;
  border: 1px solid var(--leaf); border-radius: 8px; color: var(--leaf);
  font-family: var(--sans); font-size: 14px; font-weight: 500; cursor: pointer;
}
.btn-demo:hover { background: #e4f3d8; }
.btn-full { width: 100%; padding: 13px; background: var(--leaf); border: none; border-radius: 8px; color: #fff; font-family: var(--sans); font-size: 15px; font-weight: 500; cursor: pointer; }
.btn-full:hover { background: var(--moss); }

/* ─── DOCS ─── */
.docs-layout { display: grid; grid-template-columns: 240px 1fr; gap: 48px; max-width: 1100px; margin: 0 auto; padding: 72px 48px 100px; }
.docs-sidebar { position: sticky; top: 88px; align-self: start; }
.docs-sidebar h4 { font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; color: #9a9280; margin-bottom: 12px; }
.docs-sidebar a { display: block; font-size: 14px; color: #5a5a4a; text-decoration: none; padding: 6px 0; }
.docs-sidebar a:hover, .docs-sidebar a.active { color: var(--leaf); }
.docs-content h2 { font-family: var(--serif); font-size: 32px; font-weight: 900; margin-bottom: 16px; }
.code-block {
  background: var(--soil); color: #e8dfc0; border-radius: 10px; padding: 20px 24px;
  font-family: 'Consolas', monospace; font-size: 13px; line-height: 1.6; overflow-x: auto; margin: 20px 0;
}
.doc-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 32px; }
.doc-card {
  background: var(--white); border: 1px solid #e0d9c8; border-radius: 12px; padding: 24px;
  text-decoration: none; color: inherit; transition: border-color 0.2s, transform 0.2s;
}
.doc-card:hover { border-color: var(--leaf); transform: translateY(-2px); }
.doc-card-icon { font-size: 24px; margin-bottom: 12px; }
.doc-card-title { font-family: var(--serif); font-size: 17px; font-weight: 700; margin-bottom: 6px; }
.doc-card-desc { font-size: 13px; color: #7a7a68; line-height: 1.6; }

/* ─── BLOG ─── */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.blog-card {
  background: var(--white); border: 1px solid #e0d9c8; border-radius: 14px; overflow: hidden;
  text-decoration: none; color: inherit; transition: border-color 0.2s, transform 0.2s;
}
.blog-card:hover { border-color: var(--leaf); transform: translateY(-3px); }
.blog-card-img { height: 160px; }
.blog-card-body { padding: 22px; }
.blog-card-date { font-size: 11px; color: #9a9280; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 8px; }
.blog-card-title { font-family: var(--serif); font-size: 18px; font-weight: 700; margin-bottom: 8px; line-height: 1.3; }
.blog-card-excerpt { font-size: 13px; color: #7a7a68; line-height: 1.6; }

/* ─── CHANGELOG ─── */
.changelog-list { display: flex; flex-direction: column; gap: 32px; }
.changelog-item { border-left: 3px solid var(--leaf); padding-left: 24px; }
.changelog-version { font-family: var(--serif); font-size: 22px; font-weight: 700; margin-bottom: 4px; }
.changelog-date { font-size: 12px; color: #9a9280; margin-bottom: 12px; }
.changelog-item ul { list-style: none; }
.changelog-item li { font-size: 14px; color: #5a5a4a; padding: 4px 0; line-height: 1.6; }
.changelog-item li::before { content: "→ "; color: var(--leaf); }

/* ─── CONTACT ─── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 24px; }
.contact-item h3 { font-family: var(--serif); font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.contact-item p { font-size: 14px; color: #7a7a68; line-height: 1.6; }
.contact-item a { color: var(--leaf); text-decoration: none; }

/* ─── CAREERS ─── */
.jobs-list { display: flex; flex-direction: column; gap: 16px; margin-top: 32px; }
.job-card {
  background: var(--white); border: 1px solid #e0d9c8; border-radius: 12px; padding: 24px 28px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.job-title { font-family: var(--serif); font-size: 18px; font-weight: 700; margin-bottom: 4px; }
.job-meta { font-size: 13px; color: #9a9280; }
.job-tag { font-size: 11px; background: #e4f3d8; color: var(--leaf); padding: 4px 10px; border-radius: 20px; white-space: nowrap; }

/* ─── STATUS ─── */
.status-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin: 32px 0; }
.status-item {
  background: var(--white); border: 1px solid #e0d9c8; border-radius: 12px; padding: 20px 24px;
  display: flex; align-items: center; justify-content: space-between;
}
.status-name { font-size: 15px; font-weight: 500; }
.status-badge { font-size: 12px; padding: 4px 12px; border-radius: 20px; }
.status-ok { background: #e4f3d8; color: var(--leaf); }
.status-banner {
  background: #e4f3d8; border: 1px solid rgba(90,143,60,0.3); border-radius: 10px;
  padding: 16px 20px; display: flex; align-items: center; gap: 12px; margin-bottom: 32px;
}
.status-banner-dot { width: 10px; height: 10px; background: var(--leaf); border-radius: 50%; }

@media (max-width: 768px) {
  nav { padding: 0 24px; }
  .nav-toggle { display: block; }
  .nav-links { display: none; }
  .nav-cta .btn-ghost { display: none; }
  section { padding: 72px 24px; }
  .hero { padding: 110px 24px 72px; }
  .features-grid, .modules-grid, .testi-grid, .pricing-grid, .blog-grid, .doc-cards { grid-template-columns: 1fr; }
  .logos-strip { padding: 16px 24px; }
  footer { padding: 48px 24px 28px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
  .page-hero { padding: 120px 24px 56px; }
  .page-body, .docs-layout { padding: 48px 24px 72px; }
  .docs-layout { grid-template-columns: 1fr; }
  .docs-sidebar { position: static; display: flex; flex-wrap: wrap; gap: 8px 20px; }
  .docs-sidebar h4 { width: 100%; }
  .contact-grid { grid-template-columns: 1fr; }
  .status-grid { grid-template-columns: 1fr; }
  .job-card { flex-direction: column; align-items: flex-start; }
}
