/* site.css — Nui Hale Operations marketing pages
 * Hawaiian materials visual identity: warm beige background, koa wood cards,
 * earth-tone palette.
 * Teal kept ONLY for interactive elements (buttons, links, CTAs).
 * Dashboard pages (app.css) are not affected — they use the original tokens.
 */

/* ── RESET ── */
*,*::before,*::after{margin:0;padding:0;box-sizing:border-box}
html{scroll-behavior:smooth;-webkit-font-smoothing:antialiased}

/* ── MARKETING TOKEN OVERRIDES ──
 * Override the dark-mode token values for the warm beige + koa wood palette.
 * Only applies on marketing pages (body.marketing).
 * Dashboard pages never get this class, so they keep the original ocean tokens.
 */
body.marketing {
  /* Page backgrounds — warm beige */
  --color-void:       #f5f0e8;
  --color-depth:      #efe8dc;
  --color-abyss:      #3b2314;
  --color-reef:       #5C3317;
  --color-lagoon:     #6d4023;
  --color-foam:       #7a5030;

  /* Muted forest green — earthy, grounded, Hawaiian */
  --color-teal:       #4a6b35;
  --color-teal-bright:#5a7b42;
  --color-teal-dim:   rgba(74, 107, 53, 0.12);
  --color-teal-glow:  rgba(74, 107, 53, 0.08);
  --color-teal-border:rgba(74, 107, 53, 0.25);
  --color-teal-shadow:rgba(74, 107, 53, 0.15);

  /* Coral/alert */
  --color-coral:      #c4503b;
  --color-coral-dim:  rgba(196, 80, 59, 0.12);

  /* Sand/gold — darker warm gold for beige contrast (4.7:1) */
  --color-sand:       #8a6420;
  --color-sand-dim:   rgba(138, 100, 32, 0.15);
  --color-sand-border:#8a6420;

  /* Fern — darker green for beige contrast (5.6:1) */
  --color-fern:       #2b6e3f;

  /* Text — SOLID dark earth tones on beige. No opacity. */
  --color-text-primary:  #2d1f14;  /* body text — 13:1 contrast on beige */
  --color-text-secondary:#3b2a1a;  /* secondary — 12.6:1 on beige */
  --color-text-muted:    #6b5a48;  /* muted — 5.1:1 on beige, passes AA */
  --color-text-bright:   #1a0f08;  /* headings — near-black warm, 16:1 */
  --color-text-inverse:  #f5f0e8;

  /* Borders — SOLID brown, no low-opacity rgba */
  --color-border-subtle:  #d4c4ae;  /* visible warm tan border */
  --color-border-dim:     #c4b194;  /* slightly darker tan border */
  --color-border-accent:  rgba(74, 107, 53, 0.40);

  /* Shadows — boosted opacity for visibility */
  --shadow-sm:   0 1px 4px rgba(60, 35, 15, 0.20);
  --shadow-md:   0 4px 16px rgba(60, 35, 15, 0.25);
  --shadow-lg:   0 8px 40px rgba(60, 35, 15, 0.30);

  /* Legacy aliases */
  --ink:       var(--color-void);
  --surface:   var(--color-depth);
  --panel:     var(--color-reef);
  --ridge:     var(--color-lagoon);
  --teal:      var(--color-teal);
  --teal-glow: var(--color-teal-dim);
  --amber:     var(--color-sand);
  --amber-glow:var(--color-sand-dim);
  --coral:     var(--color-coral);
  --text:      var(--color-text-secondary);
  --bright:    var(--color-text-primary);
  --white:     var(--color-text-primary);
  --muted:     var(--color-text-muted);
}

/* ── MARKETING OVERRIDES: visible text on dark card backgrounds ── */
/* Cards use koa wood #5C3317, so text must be light (--color-text-inverse = #f5f0e8) */
body.marketing h1,
body.marketing h2,
body.marketing h3,
body.marketing h4 {
  color: #1a0f08;
}
body.marketing .logo span,
body.marketing .price-amount {
  color: #f5f0e8;
}
/* .proof-num and .feat-module h3 sit on beige background — must be dark */
body.marketing .proof-num,
body.marketing .feat-module h3 {
  color: #1a0f08;
}
/* Trust strip numbers on pricing page — beige page bg, must be dark */
body.marketing .trust-num {
  color: #1a0f08;
}
body.marketing .trust-label {
  color: #3b2a1a;
}

/* ── BODY ── */
body{
  font-family:var(--font-body,'Satoshi',system-ui,sans-serif);
  background:var(--ink);
  color:var(--text);
  line-height:1.6;
  overflow-x:hidden;
}
h1,h2,h3,h4{font-family:var(--font-heading,'Fraunces',Georgia,serif);color:var(--white);font-weight:400;line-height:1.15}
a{color:var(--teal);text-decoration:none}
em{font-style:italic;color:var(--teal)}
strong{font-weight:600;color:var(--bright)}

/* ── NOISE TEXTURE (default — dark theme) ── */
body::before{
  content:'';
  position:fixed;top:0;left:0;right:0;bottom:0;
  background-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.025'/%3E%3C/svg%3E");
  pointer-events:none;z-index:0;opacity:0.4;
}
*{position:relative;z-index:1}

/* ── TARO LEAF BORDER removed ── */

/* ── NAV ── */
nav{
  position:fixed;top:0;left:0;right:0;z-index:200;
  padding:1rem 2.5rem;
  display:flex;justify-content:space-between;align-items:center;
  background:rgba(10,12,16,0.85);
  backdrop-filter:blur(20px) saturate(150%);
  border-bottom:1px solid rgba(45,212,191,0.07);
}
body.marketing nav{
  background:rgba(59,35,20,0.95);
  backdrop-filter:blur(20px) saturate(120%);
  border-bottom:1px solid #6d4023;
}
.logo-link{text-decoration:none;display:flex;align-items:center;gap:0.625rem}
.logo-mark{display:block;flex-shrink:0;line-height:1}
.logo{
  font-family:var(--font-heading,'Fraunces',Georgia,serif);
  font-size:1.5rem;
  color:#ffffff;
  letter-spacing:-0.5px;
}
.logo span{color:var(--white)}
body.marketing .logo span{color:#f5f0e8}
.nav-pill{
  font-size:0.65rem;text-transform:uppercase;letter-spacing:2.5px;
  color:var(--muted);margin-top:2px;
}
body.marketing .nav-pill{color:rgba(245,240,232,0.75)}
.nav-links{display:flex;gap:1.75rem;align-items:center}
.nav-tab{
  color:var(--text);font-size:0.875rem;font-family:'Satoshi',sans-serif;font-weight:500;
  transition:color 0.15s;padding-bottom:2px;
  border-bottom:2px solid transparent;
}
.nav-tab:hover{color:var(--white)}
.nav-tab.active{color:var(--white);border-bottom-color:var(--teal)}
body.marketing .nav-tab{color:rgba(245,240,232,0.85)}
body.marketing .nav-tab:hover{color:#f5f0e8}
body.marketing .nav-tab.active{color:#f5f0e8;border-bottom-color:var(--teal)}
.btn-nav{
  background:var(--teal);color:#0a0c10;
  padding:0.5rem 1.25rem;
  border-radius:6px;
  font-weight:700;font-size:0.85rem;
  transition:all 0.15s;
  letter-spacing:0.2px;
  font-family:'Satoshi',sans-serif;
}
.btn-nav:hover{opacity:0.88;color:#0a0c10;transform:translateY(-1px)}

/* ── HAMBURGER ── */
.hamburger{
  display:none;
  flex-direction:column;gap:5px;
  background:none;border:none;cursor:pointer;
  padding:4px;
}
.hamburger span{
  display:block;width:22px;height:2px;
  background:var(--text);
  border-radius:2px;
  transition:all 0.2s;
  transform-origin:center;
}
body.marketing .hamburger span{background:rgba(245,240,232,0.85)}
.hamburger.open span:nth-child(1){transform:translateY(7px) rotate(45deg)}
.hamburger.open span:nth-child(2){opacity:0}
.hamburger.open span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}

/* ── MOBILE DRAWER ── */
.mobile-drawer{
  display:none;
  position:fixed;top:60px;left:0;right:0;z-index:199;
  background:rgba(16,20,30,0.97);
  backdrop-filter:blur(24px);
  border-bottom:1px solid rgba(45,212,191,0.1);
  transform:translateY(-100%);
  opacity:0;
  transition:transform 0.25s ease, opacity 0.25s ease;
  pointer-events:none;
}
body.marketing .mobile-drawer{
  background:rgba(59,35,20,0.97);
  border-bottom:1px solid #6d4023;
}
.mobile-drawer.open{transform:translateY(0);opacity:1;pointer-events:all}
.mobile-drawer-inner{
  padding:1.5rem;
  display:flex;flex-direction:column;gap:0;
}
.mobile-nav-link{
  padding:0.85rem 0;
  font-size:1rem;font-family:'Satoshi',sans-serif;font-weight:500;
  color:var(--text);
  border-bottom:1px solid rgba(255,255,255,0.04);
  transition:color 0.15s;
}
body.marketing .mobile-nav-link{color:rgba(245,240,232,0.85);border-bottom-color:rgba(245,240,232,0.2)}
.mobile-nav-link.active{color:var(--teal)}
.mobile-nav-link:hover{color:var(--white)}
body.marketing .mobile-nav-link:hover{color:#f5f0e8}
.mobile-cta{
  margin-top:1.25rem;
  display:block;
  text-align:center;
  background:var(--teal);color:#0a0c10;
  padding:0.85rem;border-radius:8px;
  font-weight:700;font-size:0.95rem;font-family:'Satoshi',sans-serif;
  transition:opacity 0.15s;
}
.mobile-cta:hover{opacity:0.9;color:#0a0c10}

/* ── BUTTONS ── */
.btn-primary{
  background:var(--teal);color:#0a0c10;
  padding:0.9rem 2.25rem;
  border-radius:8px;
  font-weight:700;font-size:1rem;font-family:'Satoshi',sans-serif;
  transition:all 0.2s;
  box-shadow:0 0 40px var(--color-teal-shadow);
}
.btn-primary:hover{opacity:0.9;color:#0a0c10;transform:translateY(-2px);box-shadow:0 4px 40px rgba(74,107,53,0.3)}
.btn-ghost{
  border:1px solid var(--color-teal-border);color:var(--teal);
  padding:0.9rem 2.25rem;
  border-radius:8px;font-size:0.95rem;font-family:'Satoshi',sans-serif;
  transition:all 0.2s;
}
.btn-ghost:hover{background:var(--teal-glow);border-color:var(--teal)}

/* ── SECTION SHARED ── */
.section-eyebrow{
  font-size:0.7rem;text-transform:uppercase;letter-spacing:3px;
  color:var(--teal);margin-bottom:0.75rem;
  font-family:'Satoshi',sans-serif;font-weight:700;
}
body.marketing .section-eyebrow{color:#2b6e3f}
.section-title{font-size:clamp(2rem,4.5vw,3rem);margin-bottom:1rem;letter-spacing:-0.5px}
.section-sub{color:var(--text);max-width:500px;margin-bottom:3.5rem;line-height:1.7}

/* ── BADGE ── */
.badge{
  display:inline-flex;align-items:center;gap:0.5rem;
  border:1px solid var(--color-teal-border);
  background:var(--color-teal-dim);
  padding:0.35rem 0.9rem;
  border-radius:100px;
  font-size:0.72rem;text-transform:uppercase;letter-spacing:2px;
  color:var(--teal);
  margin-bottom:1.75rem;
  font-family:'Satoshi',sans-serif;font-weight:600;
}
body.marketing .badge{
  border-color:#c4b194;
  background:rgba(43,110,63,0.10);
  color:#2b6e3f;
}
.badge::before{content:'';display:inline-block;width:6px;height:6px;background:var(--teal);border-radius:50%;animation:pulse 2s ease-in-out infinite}
body.marketing .badge::before{background:#2b6e3f}
@keyframes pulse{0%,100%{opacity:1;transform:scale(1)}50%{opacity:0.5;transform:scale(0.8)}}

/* ── HERO ── */
.hero{
  min-height:100vh;
  display:flex;flex-direction:column;justify-content:center;
  padding:10rem 2.5rem 5rem;
  max-width:1100px;margin:0 auto;
  position:relative;
}
.hero-orbit{
  position:absolute;top:-10%;right:-15%;
  width:700px;height:700px;
  background:radial-gradient(ellipse at center,rgba(45,212,191,0.06) 0%,transparent 65%);
  pointer-events:none;border-radius:50%;
}
.hero-orbit-2{
  position:absolute;bottom:-5%;left:-10%;
  width:500px;height:500px;
  background:radial-gradient(ellipse at center,rgba(245,158,11,0.04) 0%,transparent 65%);
  pointer-events:none;border-radius:50%;
}
/* Hide orbit glow on marketing — clean beige bg */
body.marketing .hero-orbit,
body.marketing .hero-orbit-2{display:none}
.hero h1{
  font-size:clamp(2.8rem,7vw,5.2rem);
  margin-bottom:1.5rem;
  letter-spacing:-1.5px;
  max-width:800px;
}
.hero-sub{
  font-size:1.1rem;
  max-width:540px;
  color:var(--text);
  margin-bottom:3rem;
  line-height:1.75;
}
.hero-cta{display:flex;gap:1rem;flex-wrap:wrap;align-items:center;margin-bottom:4rem}

/* ── PROOF ROW ── */
.proof-row{
  display:flex;gap:2.5rem;flex-wrap:wrap;
  padding-top:2rem;
  border-top:1px solid rgba(255,255,255,0.06);
}
body.marketing .proof-row{border-top-color:#c4b194}
.proof-item{display:flex;flex-direction:column;gap:0.15rem}
.proof-num{font-family:var(--font-heading,'Fraunces',Georgia,serif);font-size:2rem;color:var(--white)}
.proof-label{font-size:0.78rem;color:var(--muted);text-transform:uppercase;letter-spacing:1.5px;font-family:'Satoshi',sans-serif}

/* ── HOW IT WORKS ── */
.how{padding:6rem 2.5rem;max-width:1100px;margin:0 auto}
.how-split{display:grid;grid-template-columns:1fr 1fr;gap:5rem;align-items:center}
.steps{display:flex;flex-direction:column;gap:2rem;margin-top:2.5rem}
.step{display:flex;gap:1.25rem;align-items:flex-start}
.step-dot{
  width:32px;height:32px;border-radius:50%;
  background:var(--teal-glow);
  border:1px solid var(--color-teal-border);
  color:var(--teal);
  display:flex;align-items:center;justify-content:center;
  font-family:'Satoshi',sans-serif;font-weight:700;font-size:0.85rem;
  flex-shrink:0;margin-top:2px;
}
.step h4{font-family:'Satoshi',sans-serif;font-size:0.95rem;font-weight:700;color:var(--bright);margin-bottom:0.3rem}
.step p{font-size:0.875rem;color:var(--text);line-height:1.6}

/* ── DEMO MOCK — koa wood card ── */
.demo-mock{
  background:var(--panel);
  border:1px solid rgba(45,212,191,0.12);
  border-radius:16px;
  padding:1.5rem;
  font-family:'Satoshi',sans-serif;
  font-size:0.875rem;
}
body.marketing .demo-mock{
  background:#5C3317;
  border-color:#7a5030;
  color:#e8ddd0;
  box-shadow:0 4px 16px rgba(60,35,15,0.25);
}
.demo-header{
  display:flex;justify-content:space-between;align-items:center;
  margin-bottom:1.25rem;
  padding-bottom:1rem;
  border-bottom:1px solid rgba(255,255,255,0.05);
}
body.marketing .demo-header{border-bottom-color:rgba(245,240,232,0.25)}
.demo-title{font-weight:700;color:var(--bright);font-size:0.9rem}
body.marketing .demo-title{color:#f5f0e8}
.demo-status{font-size:0.7rem;text-transform:uppercase;letter-spacing:1.5px;color:var(--teal)}
.msg-bubble{padding:0.85rem 1rem;border-radius:10px;margin-bottom:0.75rem;font-size:0.82rem;line-height:1.6}
.msg-guest{background:var(--ridge);color:var(--text)}
body.marketing .msg-guest{background:rgba(245,240,232,0.12);color:#e8ddd0}
.msg-ai{background:var(--teal-glow);border:1px solid var(--color-teal-border);color:var(--bright)}
body.marketing .msg-ai{color:#f5f0e8}
.msg-label{font-size:0.65rem;text-transform:uppercase;letter-spacing:1.5px;color:var(--muted);margin-bottom:0.35rem}
body.marketing .msg-label{color:rgba(245,240,232,0.7)}
.msg-ai .msg-label{color:var(--teal)}
.reasoning-chip{
  display:flex;gap:0.5rem;align-items:flex-start;
  background:rgba(245,158,11,0.07);
  border:1px solid rgba(245,158,11,0.15);
  border-radius:8px;padding:0.75rem;margin-top:0.5rem;
}
body.marketing .reasoning-chip{
  background:rgba(138,100,32,0.15);
  border-color:#8a6420;
}
.reasoning-chip-icon{color:var(--amber);font-size:0.9rem;flex-shrink:0;margin-top:1px}
.reasoning-chip-text{font-size:0.75rem;color:var(--text);line-height:1.5}
body.marketing .reasoning-chip-text{color:#e8ddd0}
.reasoning-chip-label{font-weight:700;color:var(--amber);margin-bottom:0.2rem;font-size:0.7rem;text-transform:uppercase;letter-spacing:1px}

/* ── TESTIMONIALS ── */
.testimonials{
  padding:6rem 2.5rem;
  background:var(--surface);
  border-top:1px solid rgba(255,255,255,0.04);
  border-bottom:1px solid rgba(255,255,255,0.04);
}
body.marketing .testimonials{
  background:#efe8dc;
  border-top-color:#c4b194;
  border-bottom-color:#c4b194;
}
.testimonials-inner{max-width:1100px;margin:0 auto}
.testi-grid{
  display:grid;grid-template-columns:repeat(3,1fr);gap:1.25rem;margin-top:3rem;
}
.testi-card{
  background:var(--panel);
  border:1px solid rgba(255,255,255,0.05);
  border-radius:14px;padding:1.75rem;
  display:flex;flex-direction:column;gap:1.25rem;
  transition:border-color 0.2s, transform 0.2s;
}
body.marketing .testi-card{
  background:#5C3317;
  border-color:#7a5030;
  box-shadow:0 2px 8px rgba(60,35,15,0.20);
}
.testi-card:hover{border-color:var(--color-teal-border);transform:translateY(-2px)}
.testi-card.featured-testi{
  background:linear-gradient(160deg,rgba(45,212,191,0.06),rgba(10,12,16,0.3));
  border-color:rgba(45,212,191,0.18);
}
body.marketing .testi-card.featured-testi{
  background:#5C3317;
  border-color:#7a5030;
}
.testi-quote{font-size:0.9rem;color:var(--text);line-height:1.7;font-style:italic}
body.marketing .testi-quote{color:#e8ddd0}
.testi-meta{display:flex;gap:0.85rem;align-items:center}
.testi-avatar{
  width:36px;height:36px;border-radius:50%;
  background:var(--teal-glow);border:1px solid var(--color-teal-border);
  color:var(--teal);
  display:flex;align-items:center;justify-content:center;
  font-family:'Satoshi',sans-serif;font-weight:700;font-size:0.85rem;
  flex-shrink:0;
}
.testi-name{font-size:0.875rem;font-weight:600;color:var(--bright);font-family:'Satoshi',sans-serif}
body.marketing .testi-name{color:#f5f0e8}
.testi-role{font-size:0.75rem;color:var(--muted);font-family:'Satoshi',sans-serif;margin-top:0.1rem}
body.marketing .testi-role{color:rgba(245,240,232,0.75)}

/* ── VALUE STRIPS — koa wood ── */
.value-strips{padding:5rem 2.5rem;max-width:1100px;margin:0 auto}
.value-strips-inner{display:flex;flex-direction:column;gap:1px;border:1px solid rgba(255,255,255,0.05);border-radius:14px;overflow:hidden}
body.marketing .value-strips-inner{border-color:#7a5030}
.strip{
  display:flex;gap:1.5rem;align-items:flex-start;
  background:var(--panel);
  padding:1.5rem 2rem;
  border-bottom:1px solid rgba(255,255,255,0.04);
  transition:background 0.2s;
}
body.marketing .strip{
  background:#5C3317;
  border-bottom-color:rgba(245,240,232,0.20);
}
.strip:last-child{border-bottom:none}
.strip:hover{background:rgba(22,28,42,0.9)}
body.marketing .strip:hover{background:#6d4023}
.strip-icon{font-size:1.5rem;flex-shrink:0;margin-top:2px}
.strip-title{font-family:'Satoshi',sans-serif;font-weight:700;color:var(--bright);margin-bottom:0.25rem}
body.marketing .strip-title{color:#f5f0e8}
.strip-desc{font-size:0.875rem;color:var(--text);line-height:1.6}
body.marketing .strip-desc{color:#e8ddd0}

/* ── FINAL CTA — koa wood band ── */
.final-cta{
  padding:8rem 2.5rem;
  text-align:center;
  position:relative;overflow:hidden;
}
.final-cta::before{
  content:'';
  position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);
  width:700px;height:700px;
  background:radial-gradient(circle,rgba(45,212,191,0.07) 0%,transparent 65%);
  pointer-events:none;
}
body.marketing .final-cta{
  background:#5C3317;
}
body.marketing .final-cta::before{
  display:none;
}
.final-cta h2{font-size:clamp(2.2rem,5vw,3.8rem);margin-bottom:1.25rem;letter-spacing:-1px}
body.marketing .final-cta h2{color:#f5f0e8}
.final-cta p{color:var(--text);max-width:480px;margin:0 auto 2.5rem;line-height:1.7}
body.marketing .final-cta p{color:#e8ddd0}
.cta-note{font-size:0.8rem;color:var(--muted);margin-top:1rem}
body.marketing .cta-note{color:rgba(245,240,232,0.75)}

/* ── FOOTER ── */
footer{
  padding:2rem 2.5rem;
  border-top:1px solid rgba(255,255,255,0.04);
  display:flex;justify-content:space-between;align-items:center;
  max-width:1100px;margin:0 auto;
  flex-wrap:wrap;gap:1rem;
}
body.marketing footer{border-top-color:#c4b194}
.footer-logo{font-family:var(--font-heading,'Fraunces',Georgia,serif);font-size:1.25rem;color:var(--teal)}
.footer-logo span{color:var(--white)}
.footer-copy{font-size:0.78rem;color:var(--muted);font-family:'Satoshi',sans-serif;margin-top:0.2rem}
.footer-links{display:flex;gap:1.5rem;flex-wrap:wrap}
.footer-links a{font-size:0.8rem;color:var(--muted);font-family:'Satoshi',sans-serif;transition:color 0.15s}
.footer-links a:hover{color:var(--bright)}

/* ── PAGE HERO (interior pages) ── */
.page-hero{
  padding:9rem 2.5rem 4rem;
  max-width:1100px;margin:0 auto;
  position:relative;
}
.page-hero h1{font-size:clamp(2.4rem,6vw,4rem);letter-spacing:-1px;max-width:750px;margin-bottom:1rem}
.page-hero p{font-size:1.05rem;color:var(--text);max-width:520px;line-height:1.75}
.page-orbit{
  position:absolute;top:-20%;right:-10%;
  width:600px;height:600px;
  background:radial-gradient(ellipse at center,rgba(45,212,191,0.05) 0%,transparent 65%);
  pointer-events:none;border-radius:50%;
}
body.marketing .page-orbit{display:none}

/* ── FEATURES PAGE ── */
.feat-section{padding:4rem 2.5rem 2rem;max-width:1100px;margin:0 auto}
.feat-module{
  display:grid;grid-template-columns:1fr 2fr;gap:4rem;
  padding:4rem 0;
  border-top:1px solid rgba(255,255,255,0.05);
  align-items:start;
}
body.marketing .feat-module{border-top-color:#c4b194}
.feat-module:first-child{border-top:none}
.feat-module-label{
  display:flex;flex-direction:column;gap:0.75rem;
  position:sticky;top:90px;
}
.feat-status-chip{
  display:inline-flex;
  font-size:0.65rem;text-transform:uppercase;letter-spacing:2px;
  padding:0.25rem 0.65rem;border-radius:4px;
  font-family:'Satoshi',sans-serif;font-weight:700;
  align-self:flex-start;
}
.chip-live{background:var(--color-teal-dim);color:var(--teal);border:1px solid var(--color-teal-border)}
body.marketing .chip-live{background:rgba(43,110,63,0.12);color:#2b6e3f;border-color:#2b6e3f}
.chip-soon{background:rgba(245,158,11,0.1);color:var(--amber);border:1px solid rgba(245,158,11,0.2)}
.chip-later{background:rgba(255,255,255,0.04);color:var(--muted);border:1px solid rgba(255,255,255,0.08)}
body.marketing .chip-later{background:rgba(92,51,23,0.08);border-color:#c4b194}
.feat-module h3{font-size:1.6rem;letter-spacing:-0.3px;font-family:var(--font-heading,'Fraunces',Georgia,serif);color:var(--white)}
.feat-module-body{display:flex;flex-direction:column;gap:1.5rem}
.feat-detail{font-size:0.9rem;color:var(--text);line-height:1.75}
.feat-bullets{display:flex;flex-direction:column;gap:0.65rem}
.feat-bullet{
  display:flex;gap:0.65rem;align-items:flex-start;
  font-size:0.875rem;color:var(--text);line-height:1.55;
}
.feat-bullet::before{content:'→';color:var(--teal);flex-shrink:0;font-size:0.8rem;margin-top:0.1rem}
body.marketing .feat-bullet::before{color:#2b6e3f}
.feat-bullet strong{color:var(--bright);font-weight:600}

/* ── PRICING PAGE ── */
.pricing-page{padding:3rem 2.5rem 6rem;max-width:1100px;margin:0 auto}
.pricing-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:1rem;
  margin-top:3.5rem;
}
.price-card{
  background:var(--panel);
  border:1px solid rgba(255,255,255,0.06);
  border-radius:14px;
  padding:2rem 1.5rem;
  display:flex;flex-direction:column;gap:0.5rem;
}
body.marketing .price-card{
  background:#5C3317;
  border-color:#7a5030;
  box-shadow:0 2px 8px rgba(60,35,15,0.20);
}
.price-card.featured{
  background:linear-gradient(160deg,rgba(45,212,191,0.1),rgba(10,12,16,0.4));
  border-color:rgba(45,212,191,0.3);
  box-shadow:0 0 60px rgba(45,212,191,0.08);
}
body.marketing .price-card.featured{
  background:#5C3317;
  border-color:#7a5030;
  box-shadow:0 2px 8px rgba(60,35,15,0.20);
}
.price-tier{font-size:0.65rem;text-transform:uppercase;letter-spacing:2.5px;color:var(--muted);margin-bottom:0.25rem;font-family:'Satoshi',sans-serif;font-weight:700}
body.marketing .price-tier{color:rgba(245,240,232,0.75)}
.price-amount{font-family:var(--font-heading,'Fraunces',Georgia,serif);font-size:2.8rem;color:var(--white);line-height:1}
body.marketing .price-amount{color:#f5f0e8}
.price-amount sup{font-size:1.2rem;vertical-align:top;margin-top:0.5rem;display:inline-block}
.price-amount sub{font-family:'Satoshi',sans-serif;font-size:0.9rem;color:var(--muted)}
body.marketing .price-amount sub{color:rgba(245,240,232,0.75)}
.price-unit{font-size:0.8rem;color:var(--muted);margin-top:0.25rem;font-family:'Satoshi',sans-serif}
body.marketing .price-unit{color:rgba(245,240,232,0.75)}
.price-divider{border:none;height:1px;background:rgba(255,255,255,0.05);margin:1rem 0}
body.marketing .price-divider{background:rgba(245,240,232,0.25)}
.price-feature{
  font-size:0.82rem;color:var(--text);
  display:flex;gap:0.5rem;align-items:flex-start;
  line-height:1.5;margin-bottom:0.5rem;
}
body.marketing .price-feature{color:#e8ddd0}
.price-feature::before{content:'—';color:var(--teal);flex-shrink:0}
.price-cta{
  margin-top:auto;
  display:block;
  text-align:center;
  border:1px solid var(--color-teal-border);
  color:var(--teal);
  padding:0.7rem 1rem;
  border-radius:8px;
  font-family:'Satoshi',sans-serif;font-weight:600;font-size:0.875rem;
  transition:all 0.2s;
}
.price-cta:hover{background:var(--teal-glow)}
.price-cta.solid{background:var(--teal);color:#0a0c10;border-color:var(--teal)}
.price-cta.solid:hover{opacity:0.9;color:#0a0c10}
.price-popular{
  font-size:0.65rem;text-transform:uppercase;letter-spacing:1.5px;
  background:var(--teal);color:#0a0c10;
  padding:0.2rem 0.6rem;border-radius:4px;
  font-family:'Satoshi',sans-serif;font-weight:700;
  display:inline-block;margin-bottom:0.5rem;
  align-self:flex-start;
}

/* Pricing comparison matrix */
.pricing-matrix{
  margin-top:5rem;
  border:1px solid rgba(255,255,255,0.05);
  border-radius:14px;
  overflow:hidden;
}
body.marketing .pricing-matrix{border-color:#7a5030}
.matrix-header{
  display:grid;
  grid-template-columns:2fr repeat(4,1fr);
  background:var(--panel);
  padding:1rem 1.5rem;
  border-bottom:1px solid rgba(255,255,255,0.05);
  gap:0.5rem;
}
body.marketing .matrix-header{
  background:#5C3317;
  border-bottom-color:rgba(245,240,232,0.25);
}
.matrix-row{
  display:grid;
  grid-template-columns:2fr repeat(4,1fr);
  padding:0.85rem 1.5rem;
  border-bottom:1px solid rgba(255,255,255,0.03);
  gap:0.5rem;
  align-items:center;
  transition:background 0.15s;
}
body.marketing .matrix-row{border-bottom-color:#d4c4ae}
.matrix-row:last-child{border-bottom:none}
.matrix-row:hover{background:rgba(22,28,42,0.5)}
body.marketing .matrix-row:hover{background:rgba(92,51,23,0.08)}
.matrix-row.section-header{
  background:rgba(45,212,191,0.03);
  padding-top:1.25rem;
  padding-bottom:0.5rem;
}
body.marketing .matrix-row.section-header{background:rgba(43,110,63,0.08)}
.matrix-col-head{
  font-family:'Satoshi',sans-serif;font-weight:700;
  font-size:0.75rem;text-transform:uppercase;letter-spacing:1.5px;
  color:var(--muted);text-align:center;
}
.matrix-col-head.featured{color:var(--teal)}
.matrix-feat{font-size:0.85rem;color:var(--text)}
.matrix-feat.section-label{
  font-size:0.7rem;text-transform:uppercase;letter-spacing:2px;
  color:var(--teal);font-family:'Satoshi',sans-serif;font-weight:700;
}
body.marketing .matrix-feat.section-label{color:#2b6e3f}
.matrix-val{text-align:center;font-size:0.85rem;color:var(--muted)}
.matrix-val.yes{color:var(--teal);font-size:1rem}
.matrix-val.partial{color:var(--amber);font-size:0.8rem}
.matrix-val.featured-col{background:var(--color-teal-dim)}

/* ── ABOUT PAGE ── */
.about-section{padding:3rem 2.5rem 5rem;max-width:1100px;margin:0 auto}
.about-intro{
  display:grid;grid-template-columns:1fr 1fr;gap:5rem;
  padding:3rem 0 5rem;
  border-bottom:1px solid rgba(255,255,255,0.05);
  align-items:start;
}
body.marketing .about-intro{border-bottom-color:#c4b194}
.about-story p{font-size:0.95rem;color:var(--text);line-height:1.8;margin-bottom:1.25rem}
.about-story p:last-child{margin-bottom:0}

/* Competitor comparison */
.comp-section{padding:4rem 0}
.comp-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:1.25rem;
  margin-top:2.5rem;
}
.comp-card{
  background:var(--panel);
  border:1px solid rgba(255,255,255,0.06);
  border-radius:12px;padding:1.75rem;
  position:relative;overflow:hidden;
}
body.marketing .comp-card{
  background:#5C3317;
  border-color:#7a5030;
  box-shadow:0 2px 8px rgba(60,35,15,0.20);
}
.comp-card::before{
  content:'';position:absolute;top:0;left:0;right:0;height:3px;
}
.comp-card.them::before{background:rgba(248,113,113,0.5)}
body.marketing .comp-card.them::before{background:rgba(196,80,59,0.5)}
.comp-card.us-card::before{background:linear-gradient(90deg,var(--teal),var(--amber))}
.comp-rival{font-size:0.7rem;text-transform:uppercase;letter-spacing:2px;color:var(--muted);margin-bottom:0.4rem;font-family:'Satoshi',sans-serif}
body.marketing .comp-rival{color:rgba(245,240,232,0.75)}
.comp-title{font-family:'Satoshi',sans-serif;font-size:1rem;font-weight:700;color:var(--bright);margin-bottom:1rem}
body.marketing .comp-title{color:#f5f0e8}
.comp-issue,.comp-good{display:flex;gap:0.6rem;align-items:flex-start;font-size:0.85rem;color:var(--text);line-height:1.5;margin-bottom:0.65rem}
body.marketing .comp-issue, body.marketing .comp-good{color:#e8ddd0}
.comp-issue::before{content:'✕';color:var(--coral);font-size:0.75rem;margin-top:0.1rem;flex-shrink:0}
.comp-good::before{content:'✓';color:var(--teal);font-size:0.75rem;margin-top:0.1rem;flex-shrink:0}
.us-card{background:linear-gradient(135deg,rgba(45,212,191,0.08),rgba(245,158,11,0.04));border-color:rgba(45,212,191,0.2)}
body.marketing .us-card{background:#5C3317;border-color:#7a5030}

/* Hawaii section */
.hawaii-section{
  padding:4rem 0;
  border-top:1px solid rgba(255,255,255,0.05);
}
body.marketing .hawaii-section{border-top-color:#c4b194}
.hawaii-split{display:grid;grid-template-columns:1fr 1fr;gap:4rem;align-items:start}
.compliance-list{display:flex;flex-direction:column;gap:0.75rem;margin-top:2rem}
.compliance-item{
  background:var(--panel);border:1px solid rgba(255,255,255,0.05);
  border-radius:10px;padding:1rem 1.25rem;
  display:flex;gap:1rem;align-items:center;font-size:0.875rem;
}
body.marketing .compliance-item{
  background:#5C3317;
  border-color:#7a5030;
}
.compliance-icon{
  width:36px;height:36px;border-radius:8px;
  background:var(--amber-glow);border:1px solid rgba(245,158,11,0.2);
  display:flex;align-items:center;justify-content:center;
  font-size:1.1rem;flex-shrink:0;
}
body.marketing .compliance-icon{
  background:rgba(43,110,63,0.15);
  border-color:#2b6e3f;
}
.compliance-text strong{display:block;color:var(--bright);margin-bottom:0.1rem}
body.marketing .compliance-text strong{color:#f5f0e8}
.compliance-text span{color:var(--muted);font-size:0.8rem}
body.marketing .compliance-text span{color:rgba(245,240,232,0.75)}

/* Roadmap */
.roadmap-section{padding:4rem 0;border-top:1px solid rgba(255,255,255,0.05)}
body.marketing .roadmap-section{border-top-color:#c4b194}
.roadmap-list{display:flex;flex-direction:column;gap:0.75rem;margin-top:2rem}
.roadmap-item{display:flex;gap:1rem;align-items:center;font-size:0.875rem;color:var(--text)}
.roadmap-chip{font-size:0.65rem;text-transform:uppercase;letter-spacing:1.5px;padding:0.2rem 0.6rem;border-radius:4px;font-family:'Satoshi',sans-serif;font-weight:700;flex-shrink:0}

/* ── RESPONSIVE ── */
@media(max-width:900px){
  .pricing-grid{grid-template-columns:repeat(2,1fr)}
  .matrix-header,.matrix-row{grid-template-columns:1.5fr repeat(4,1fr);font-size:0.8rem}
  .about-intro{grid-template-columns:1fr}
  .hawaii-split{grid-template-columns:1fr}
  .comp-grid{grid-template-columns:1fr}
  .testi-grid{grid-template-columns:1fr}
  .how-split{grid-template-columns:1fr;gap:3rem}
  .feat-module{grid-template-columns:1fr;gap:1.5rem}
  .feat-module-label{position:static}
}
@media(max-width:640px){
  nav{padding:0.9rem 1.25rem}
  .hamburger{display:flex}
  .mobile-drawer{display:block}
  .nav-links{display:none}
  .hero{padding:8rem 1.25rem 3rem}
  .how,.feat-section,.about-section,.pricing-page,.page-hero,.value-strips,.final-cta{padding-left:1.25rem;padding-right:1.25rem}
  .testimonials{padding-left:1.25rem;padding-right:1.25rem}
  footer{padding-left:1.25rem;padding-right:1.25rem}
  .pricing-grid{grid-template-columns:1fr}
  .pricing-matrix{overflow-x:auto}
  .matrix-header,.matrix-row{min-width:560px}
  /* taro leaf borders removed */
}
