/* =========================================================================
   Woodard & Co. — Shared Design System
   Premium navy · cream · gold. Cormorant Garamond + Jost.
   ========================================================================= */

:root {
  --navy:        #061426;
  --navy-2:      #0b1f3a;
  --navy-3:      #102846;
  --navy-4:      #15355a;
  --cream:       #f7efe1;
  --cream-muted: rgba(247, 239, 225, 0.72);
  --cream-soft:  rgba(247, 239, 225, 0.08);
  --gold:        #c8a45d;
  --gold-light:  #e6d3a3;
  --gold-deep:   #a88643;
  --line:        rgba(247, 239, 225, 0.16);
  --line-strong: rgba(247, 239, 225, 0.28);
  --success:     #76d39b;
  --warning:     #d9a441;
  --danger:      #c96b5c;

  --font-head: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-body: "Jost", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;

  --radius-sm: 6px;
  --radius:    10px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.18);
  --shadow:    0 12px 30px rgba(0, 0, 0, 0.28);
  --shadow-lg: 0 24px 60px rgba(0, 0, 0, 0.40);

  --container: 1180px;
  --gutter: clamp(20px, 4vw, 40px);

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
html, body { height: 100%; }
img, picture, svg, video { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; color: inherit; }
button { background: none; border: 0; cursor: pointer; }
a { color: inherit; text-decoration: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Base */
body {
  background: var(--navy);
  color: var(--cream);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.6;
  font-size: clamp(15px, 1vw + 0.5rem, 17px);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  background-image:
    radial-gradient(1200px 600px at 80% -10%, rgba(200, 164, 93, 0.10), transparent 60%),
    radial-gradient(900px 500px at -10% 100%, rgba(21, 53, 90, 0.55), transparent 60%);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.005em;
  color: var(--cream);
}

h1 { font-size: clamp(2.4rem, 5vw + 0.5rem, 4.4rem); font-weight: 500; }
h2 { font-size: clamp(1.9rem, 3vw + 0.5rem, 3.0rem); font-weight: 500; }
h3 { font-size: clamp(1.4rem, 1.5vw + 0.5rem, 1.85rem); font-weight: 500; }
h4 { font-size: clamp(1.1rem, 0.5vw + 0.8rem, 1.25rem); font-weight: 500; }

p { color: var(--cream-muted); }
strong { color: var(--cream); font-weight: 500; }

::selection { background: var(--gold); color: var(--navy); }

a { transition: color 0.2s var(--ease), opacity 0.2s var(--ease); }
a:hover { color: var(--gold-light); }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}

.skip-link {
  position: absolute; top: -40px; left: 16px;
  background: var(--gold); color: var(--navy);
  padding: 10px 16px; border-radius: var(--radius-sm);
  font-weight: 500; z-index: 1000;
  transition: top 0.2s var(--ease);
}
.skip-link:focus { top: 16px; }

/* Layout */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  width: 100%;
}

.section { padding: clamp(60px, 8vw, 110px) 0; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

.lede {
  font-size: clamp(1.05rem, 0.6vw + 0.9rem, 1.2rem);
  color: var(--cream-muted);
  max-width: 62ch;
  margin-top: 18px;
  margin-bottom: 18px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  border-radius: 4px;
  cursor: pointer;
  text-align: center;
  border: 1px solid transparent;
  transition: all 0.25s var(--ease);
  white-space: nowrap;
  line-height: 1.2;
}

.btn-sm { padding: 10px 18px; font-size: 0.85rem; }
.btn-block { display: flex; width: 100%; }

.btn-primary {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: var(--navy);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(200, 164, 93, 0.35);
}

.btn-secondary {
  background: transparent;
  color: var(--cream);
  border-color: var(--gold);
}
.btn-secondary:hover {
  background: rgba(200, 164, 93, 0.12);
  color: var(--gold-light);
}

.btn-ghost {
  background: transparent;
  color: var(--cream);
  border-color: var(--line-strong);
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold-light);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.link-arrow {
  display: inline-block;
  margin-top: 14px;
  color: var(--gold);
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
}
.link-arrow:hover { color: var(--gold-light); }

.link-quiet { color: var(--cream-muted); font-size: 0.88rem; }
.link-quiet:hover { color: var(--gold-light); }

/* Header / Nav */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(6, 20, 38, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  transition: all 0.25s var(--ease);
}
.site-header.scrolled {
  background: rgba(6, 20, 38, 0.96);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 76px;
}

.brand {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.brand-name {
  font-family: var(--font-head);
  font-size: 1.45rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--cream);
}
.brand-descriptor {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 2px;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.primary-nav ul {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  padding: 0;
}
.primary-nav a {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--cream-muted);
  position: relative;
  padding: 4px 0;
}
.primary-nav a:hover, .primary-nav a.active {
  color: var(--cream);
}
.primary-nav a.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 1px;
  background: var(--gold);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav-toggle span {
  width: 24px; height: 1.5px;
  background: var(--cream);
  transition: all 0.25s var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

@media (max-width: 960px) {
  .nav-toggle { display: flex; }
  .primary-nav {
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--navy-2);
    border-bottom: 1px solid var(--line);
    padding: 24px var(--gutter);
    max-height: 0; overflow: hidden;
    transition: max-height 0.3s var(--ease);
  }
  .primary-nav.open { max-height: 600px; padding-top: 24px; padding-bottom: 24px; }
  .primary-nav ul { flex-direction: column; align-items: stretch; gap: 0; width: 100%; }
  .primary-nav li { border-bottom: 1px solid var(--line); }
  .primary-nav a { display: block; padding: 14px 0; }
  .primary-nav a.active::after { display: none; }
  .nav-cta { margin-top: 18px; align-self: stretch; }
}

/* Hero */
.hero {
  padding: clamp(70px, 10vw, 130px) 0 clamp(60px, 8vw, 100px);
  position: relative;
  overflow: hidden;
}
.hero-compact { padding: clamp(60px, 8vw, 100px) 0 clamp(40px, 5vw, 60px); }

.hero-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
@media (max-width: 900px) { .hero-inner { grid-template-columns: 1fr; } }

.hero-copy h1 { margin-bottom: 22px; }
.hero-sub {
  font-size: clamp(1.1rem, 0.6vw + 1rem, 1.3rem);
  color: var(--cream-muted);
  max-width: 56ch;
  margin-bottom: 32px;
}

.hero-visual { width: 100%; }
.dash-card {
  background: linear-gradient(155deg, var(--navy-3), var(--navy-2));
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  padding: clamp(20px, 3vw, 32px);
  box-shadow: var(--shadow-lg);
  position: relative;
}
.dash-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(200, 164, 93, 0.18), transparent 50%);
  pointer-events: none;
}
.dash-card-head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 22px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}
.dash-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}
.dash-tag {
  font-size: 0.78rem;
  color: var(--cream-muted);
  padding: 4px 10px;
  border: 1px solid var(--line);
  border-radius: 100px;
}
.dash-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 20px;
}
.dash-stat {
  background: var(--cream-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
  display: flex; flex-direction: column; gap: 4px;
}
.dash-label {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream-muted);
}
.dash-value {
  font-family: var(--font-head);
  font-size: 1.7rem;
  color: var(--gold-light);
  line-height: 1.1;
}
.dash-meta { font-size: 0.78rem; color: var(--cream-muted); }
.dash-foot {
  display: flex; align-items: center; gap: 10px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-size: 0.85rem;
  color: var(--cream-muted);
}
.dash-dot {
  width: 8px; height: 8px;
  background: var(--success);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(118, 211, 155, 0.18);
}

/* Trust strip */
.trust-strip {
  background: var(--navy-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 36px 0;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media (max-width: 720px) { .trust-grid { grid-template-columns: 1fr; gap: 22px; } }
.trust-item { display: flex; gap: 16px; align-items: flex-start; }
.trust-num {
  font-family: var(--font-head);
  font-size: 1.5rem;
  color: var(--gold);
  line-height: 1;
  flex-shrink: 0;
}
.trust-item p { color: var(--cream); font-size: 0.95rem; margin: 0; }

/* Problem */
.leak-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 44px;
}
@media (max-width: 900px) { .leak-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .leak-grid { grid-template-columns: 1fr; } }

.leak-card {
  padding: 24px;
  background: var(--navy-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease);
}
.leak-card:hover { border-color: var(--gold); transform: translateY(-2px); }
.leak-card h3 {
  color: var(--gold-light);
  font-size: 1.2rem;
  margin-bottom: 8px;
}
.leak-card p { font-size: 0.92rem; }

/* Feature grid */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 44px;
}
@media (max-width: 900px) { .feature-grid { grid-template-columns: 1fr; } }
.feature-card {
  padding: 32px;
  background: var(--navy-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}
.feature-num {
  font-family: var(--font-head);
  font-size: 1.6rem;
  color: var(--gold);
  display: block;
  margin-bottom: 12px;
}
.feature-card h3 { margin-bottom: 10px; }

/* Offers */
.offers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 44px;
}
@media (max-width: 1100px) { .offers-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 720px)  { .offers-grid { grid-template-columns: 1fr; } }

.offer-card {
  padding: 32px 26px;
  background: var(--navy-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease);
}
.offer-card:hover { border-color: var(--line-strong); transform: translateY(-3px); }

.offer-featured,
.offer-premium {
  border-color: var(--gold);
  background: linear-gradient(165deg, var(--navy-3), var(--navy-2));
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.35);
}

.offer-flag {
  position: absolute;
  top: -12px; left: 24px;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
}
.offer-flag-quiet {
  background: var(--cream-soft);
  color: var(--gold-light);
  border: 1px solid var(--line);
}

.offer-card h3 { margin-bottom: 12px; margin-top: 6px; }

.offer-price {
  display: flex; align-items: baseline; gap: 8px;
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.price-amount {
  font-family: var(--font-head);
  font-size: 2rem;
  color: var(--gold);
  line-height: 1;
}
.price-meta { color: var(--cream-muted); font-size: 0.88rem; }

.offer-label {
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 10px;
}

.offer-desc { font-size: 0.92rem; margin-bottom: 18px; }

.offer-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex; flex-direction: column; gap: 10px;
  flex: 1;
}
.offer-list li {
  position: relative;
  padding-left: 22px;
  font-size: 0.92rem;
  color: var(--cream);
}
.offer-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 9px;
  width: 10px; height: 10px;
  border: 1px solid var(--gold);
  border-radius: 2px;
  transform: rotate(45deg);
}

.offer-card .link-arrow { margin-top: 10px; text-align: center; }

/* Two products */
.two-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 32px;
}
@media (max-width: 720px) { .two-grid { grid-template-columns: 1fr; } }
.two-card {
  padding: 36px;
  background: var(--navy-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}
.two-card h3 { color: var(--gold-light); margin-bottom: 8px; }
.two-meta {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

/* Founder */
.founder {
  background: linear-gradient(180deg, var(--navy-2), var(--navy));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.founder-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(40px, 6vw, 70px);
  align-items: center;
}
@media (max-width: 900px) { .founder-inner { grid-template-columns: 1fr; } }

.founder-quote {
  margin: 28px 0;
  padding: 24px 28px;
  border-left: 2px solid var(--gold);
  background: var(--cream-soft);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.founder-quote p {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-style: italic;
  color: var(--cream);
  line-height: 1.45;
  margin-bottom: 12px;
}
.founder-quote cite {
  font-style: normal;
  font-size: 0.85rem;
  color: var(--gold);
  letter-spacing: 0.06em;
}

.founder-credentials {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
@media (max-width: 480px) { .founder-credentials { grid-template-columns: 1fr; } }
.cred-card {
  padding: 18px;
  background: var(--navy-3);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.cred-label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.cred-value { color: var(--cream); font-size: 0.92rem; line-height: 1.4; }

/* Assessment form */
.assessment {
  background: var(--navy-2);
  border-top: 1px solid var(--line);
}
.assessment-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(40px, 5vw, 60px);
  align-items: start;
}
@media (max-width: 900px) { .assessment-inner { grid-template-columns: 1fr; } }

.assessment-list {
  list-style: none; padding: 0;
  display: flex; flex-direction: column; gap: 10px;
  margin-top: 20px;
}
.assessment-list li {
  position: relative;
  padding-left: 24px;
  font-size: 0.95rem;
}
.assessment-list li::before {
  content: "✓";
  position: absolute; left: 0;
  color: var(--gold);
  font-weight: 500;
}

.assessment-form {
  background: var(--navy-3);
  padding: clamp(28px, 4vw, 40px);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.hp-field { position: absolute; left: -9999px; }

.field { display: flex; flex-direction: column; gap: 8px; }
.field label {
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  color: var(--cream);
  font-weight: 400;
}
.field input,
.field textarea {
  background: var(--navy);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  color: var(--cream);
  font-family: var(--font-body);
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
}
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--navy-2);
}
.field input::placeholder,
.field textarea::placeholder { color: rgba(247, 239, 225, 0.4); }
.field textarea { resize: vertical; min-height: 110px; }

.form-note {
  font-size: 0.82rem;
  color: var(--cream-muted);
  text-align: center;
  margin-top: 4px;
}

.field-error { border-color: var(--danger) !important; }

/* Footer */
.site-footer {
  background: var(--navy);
  border-top: 1px solid var(--line);
  padding: 60px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr; gap: 32px; } }

.footer-brand .brand-name { font-size: 1.4rem; display: block; }
.footer-brand .brand-descriptor { display: block; margin: 4px 0 12px; }
.footer-loc { color: var(--cream-muted); font-size: 0.88rem; }

.footer-nav h4,
.footer-cta h4 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  font-weight: 500;
}
.footer-nav ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-nav a { font-size: 0.92rem; color: var(--cream-muted); }
.footer-nav a:hover { color: var(--gold-light); }

.footer-base {
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-size: 0.82rem;
  color: var(--cream-muted);
  text-align: center;
}

/* Services — detail sections */
.start-here .start-card {
  padding: clamp(36px, 5vw, 56px);
  background: linear-gradient(165deg, var(--navy-3), var(--navy-2));
  border: 1px solid var(--gold);
  border-radius: var(--radius-xl);
  text-align: center;
  position: relative;
  box-shadow: var(--shadow);
}
.start-card .offer-flag { position: relative; top: 0; left: 0; margin-bottom: 18px; display: inline-block; }
.start-card .offer-list { max-width: 460px; margin: 0 auto 28px; text-align: left; }
.start-card .offer-price { display: inline-flex; border: 0; padding: 0; margin: 12px 0 22px; }

.detail-section { padding: clamp(50px, 6vw, 80px) 0; border-bottom: 1px solid var(--line); }
.detail-alt { background: var(--navy-2); }
.detail-premium { background: linear-gradient(165deg, var(--navy-3), var(--navy-2)); }

.detail-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(40px, 6vw, 70px);
  align-items: start;
}
@media (max-width: 900px) { .detail-inner { grid-template-columns: 1fr; } }

.detail-copy h2 { margin-bottom: 12px; }
.detail-copy .offer-price { display: inline-flex; border: 0; padding: 0; margin: 6px 0 18px; }
.best-for { font-size: 0.95rem; color: var(--cream); margin-bottom: 14px; }

.feature-list {
  list-style: none; padding: 0;
  display: flex; flex-direction: column; gap: 12px;
  background: var(--navy-3);
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}
.feature-list li {
  position: relative;
  padding-left: 22px;
  font-size: 0.95rem;
  color: var(--cream);
}
.feature-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 9px;
  width: 10px; height: 10px;
  border: 1px solid var(--gold);
  border-radius: 2px;
  transform: rotate(45deg);
}

/* Comparison */
.comparison-section { background: var(--navy-2); }

.comparison-wrap {
  margin-top: 36px;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--navy-3);
}
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
  min-width: 720px;
}
.comparison-table thead th {
  text-align: left;
  padding: 18px 20px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--navy-2);
  border-bottom: 1px solid var(--line);
}
.comparison-table tbody th,
.comparison-table tbody td {
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
  color: var(--cream);
  text-align: left;
  font-weight: 400;
}
.comparison-table tbody tr:last-child th,
.comparison-table tbody tr:last-child td { border-bottom: 0; }
.comparison-table tbody tr:hover { background: rgba(200, 164, 93, 0.05); }
.comparison-table tbody th {
  font-family: var(--font-head);
  font-size: 1.1rem;
  color: var(--gold-light);
}

@media (max-width: 760px) {
  .comparison-wrap { overflow: visible; border: 0; background: transparent; padding: 0; }
  .comparison-table { min-width: 0; display: block; }
  .comparison-table thead { display: none; }
  .comparison-table tbody, .comparison-table tr, .comparison-table th, .comparison-table td { display: block; }
  .comparison-table tbody tr {
    background: var(--navy-3);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    margin-bottom: 16px;
    padding: 8px 0;
  }
  .comparison-table tbody th,
  .comparison-table tbody td {
    padding: 10px 18px;
    border: 0;
  }
  .comparison-table tbody td::before {
    content: attr(data-label);
    display: block;
    font-size: 0.7rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 4px;
  }
  .comparison-table tbody th {
    font-family: var(--font-head);
    font-size: 1.2rem;
    color: var(--gold-light);
    padding-top: 16px;
  }
}

.decision-guide { background: var(--navy); text-align: left; }
.decision-guide .lede { margin-bottom: 14px; }

/* Demo bar */
.demo-bar {
  background: var(--gold);
  color: var(--navy);
}
.demo-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 12px 0;
  flex-wrap: wrap;
}
.demo-bar-text {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--navy);
}
.demo-bar-actions {
  display: flex; align-items: center; gap: 16px;
}
.demo-bar .link-quiet { color: rgba(6, 20, 38, 0.75); font-weight: 500; }
.demo-bar .link-quiet:hover { color: var(--navy); }
.demo-bar .btn-primary {
  background: var(--navy);
  color: var(--gold);
  border-color: var(--navy);
}
.demo-bar .btn-primary:hover {
  background: var(--navy-2);
  color: var(--gold-light);
}

/* Dashboard shell */
.page-demo { background: var(--navy); }

.dashboard-shell {
  display: grid;
  grid-template-columns: 260px 1fr;
  min-height: calc(100vh - 60px);
}
@media (max-width: 900px) { .dashboard-shell { grid-template-columns: 1fr; } }

.dash-sidebar {
  background: var(--navy-2);
  border-right: 1px solid var(--line);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
}
@media (max-width: 900px) {
  .dash-sidebar {
    position: relative;
    height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 24px var(--gutter);
  }
}

.dash-sidebar-brand { display: flex; flex-direction: column; gap: 2px; }
.brand-product {
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 6px;
}
.dash-sidebar-brand .brand-descriptor { margin-top: 8px; }

.dash-nav ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 4px; }
.dash-nav a {
  display: block;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  color: var(--cream-muted);
  transition: all 0.2s var(--ease);
}
.dash-nav a:hover { background: var(--cream-soft); color: var(--cream); }
.dash-nav a.active {
  background: rgba(200, 164, 93, 0.16);
  color: var(--gold-light);
  border-left: 2px solid var(--gold);
  padding-left: 12px;
}
@media (max-width: 900px) {
  .dash-nav ul { flex-direction: row; flex-wrap: wrap; }
  .dash-nav a { padding: 8px 12px; font-size: 0.85rem; }
  .dash-nav a.active { border-left: 0; padding-left: 12px; border-bottom: 2px solid var(--gold); }
}

.dash-user {
  margin-top: auto;
  padding: 14px;
  background: var(--navy-3);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: flex; align-items: center; gap: 12px;
}
.dash-avatar {
  width: 40px; height: 40px;
  background: var(--gold);
  color: var(--navy);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 500;
  font-size: 0.9rem;
}
.dash-user-name { display: block; color: var(--cream); font-size: 0.92rem; }
.dash-user-meta { display: block; color: var(--cream-muted); font-size: 0.78rem; }

.dash-main { padding: clamp(28px, 4vw, 48px); display: flex; flex-direction: column; gap: 28px; }

.dash-greeting {
  display: flex; justify-content: space-between; align-items: flex-start; gap: 20px;
  flex-wrap: wrap;
}
.dash-greeting h1 { font-size: clamp(1.8rem, 3vw + 0.5rem, 2.6rem); margin-bottom: 8px; }
.dash-greeting-sub { font-size: 1rem; max-width: 60ch; }

/* KPI cards */
.kpi-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.kpi-grid-5 { grid-template-columns: repeat(5, 1fr); }
@media (max-width: 1100px) { .kpi-grid, .kpi-grid-5 { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 720px)  { .kpi-grid, .kpi-grid-5 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px)  { .kpi-grid, .kpi-grid-5 { grid-template-columns: 1fr; } }

.kpi-card {
  padding: 22px;
  background: var(--navy-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: flex; flex-direction: column; gap: 6px;
}
.kpi-label {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream-muted);
}
.kpi-value {
  font-family: var(--font-head);
  font-size: 2rem;
  color: var(--gold-light);
  line-height: 1;
}
.kpi-meta { font-size: 0.8rem; color: var(--cream-muted); }
.kpi-meta.success { color: var(--success); }

/* Panels */
.panel {
  background: var(--navy-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(22px, 3vw, 32px);
}
.panel-head {
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px;
  margin-bottom: 22px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
  flex-wrap: wrap;
}
.panel-head h2 { font-size: 1.4rem; }
.panel-meta { font-size: 0.82rem; color: var(--cream-muted); }

/* Client tabs */
.client-tabs {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-bottom: 22px;
}
.client-tab {
  padding: 8px 14px;
  font-size: 0.85rem;
  background: var(--navy-3);
  border: 1px solid var(--line);
  border-radius: 100px;
  color: var(--cream-muted);
  transition: all 0.2s var(--ease);
}
.client-tab:hover { border-color: var(--gold); color: var(--cream); }
.client-tab.active {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
  font-weight: 500;
}

.client-summary { margin-bottom: 22px; }
.client-summary h3 { color: var(--gold-light); margin-bottom: 12px; }
.client-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.tag {
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}
.tag-high { background: rgba(118, 211, 155, 0.16); color: var(--success); border: 1px solid rgba(118, 211, 155, 0.3); }
.tag-warn { background: rgba(217, 164, 65, 0.16); color: var(--warning); border: 1px solid rgba(217, 164, 65, 0.3); }
.tag-urgent { background: rgba(201, 107, 92, 0.16); color: var(--danger); border: 1px solid rgba(201, 107, 92, 0.3); }

.intel-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
  margin-bottom: 18px;
}
@media (max-width: 720px) { .intel-grid { grid-template-columns: 1fr; } }
.intel-card {
  padding: 16px;
  background: var(--navy-3);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.intel-label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.intel-card p { color: var(--cream); font-size: 0.88rem; }

.intel-note {
  padding: 16px 20px;
  background: rgba(200, 164, 93, 0.08);
  border-left: 2px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 0.92rem;
  color: var(--cream);
}

/* AI reply */
.email-thread { display: flex; flex-direction: column; gap: 16px; }
.email-incoming, .email-draft {
  padding: 20px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}
.email-incoming { background: var(--navy-3); }
.email-draft {
  background: linear-gradient(165deg, rgba(200, 164, 93, 0.12), rgba(200, 164, 93, 0.04));
  border-color: rgba(200, 164, 93, 0.4);
}
.email-from {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream-muted);
  margin-bottom: 4px;
}
.email-subject {
  display: block;
  font-family: var(--font-head);
  font-size: 1.05rem;
  color: var(--cream);
  margin-bottom: 10px;
}
.email-incoming p, .email-draft p { font-size: 0.92rem; color: var(--cream); }

.draft-label {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
  padding: 3px 10px;
  background: rgba(200, 164, 93, 0.16);
  border-radius: 100px;
}
.draft-actions {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.email-draft.completed { opacity: 0.55; }

/* Digest */
.digest-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
}
@media (max-width: 1000px) { .digest-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .digest-grid { grid-template-columns: 1fr; } }
.digest-block { padding: 18px; background: var(--navy-3); border: 1px solid var(--line); border-radius: var(--radius); }
.digest-block h4 { color: var(--gold-light); font-size: 0.95rem; margin-bottom: 10px; }
.digest-block ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 6px; }
.digest-block li { font-size: 0.85rem; color: var(--cream-muted); }
.digest-panel.highlighted { border-color: var(--gold); box-shadow: 0 0 0 1px var(--gold); }

/* Deadlines */
.deadline-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
@media (max-width: 1000px) { .deadline-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .deadline-grid { grid-template-columns: 1fr; } }
.deadline-card {
  padding: 18px;
  background: var(--navy-3);
  border: 1px solid var(--line);
  border-left: 2px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.deadline-day {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.deadline-card h4 { font-family: var(--font-head); font-size: 1.05rem; margin-bottom: 6px; color: var(--cream); }
.deadline-card p { font-size: 0.85rem; }

/* Tasks */
.task-list { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.task-item {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 18px;
  background: var(--navy-3);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 0.92rem;
  cursor: pointer;
  transition: all 0.2s var(--ease);
}
.task-item:hover { border-color: var(--gold); }
.task-check {
  width: 22px; height: 22px;
  border: 1.5px solid var(--gold);
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  color: var(--navy); background: transparent;
  font-size: 0.85rem; font-weight: 500;
  flex-shrink: 0;
}
.task-item.complete .task-check { background: var(--gold); color: var(--navy); }
.task-item.complete > span:last-child { text-decoration: line-through; opacity: 0.6; }

/* Pipeline */
.pipeline-grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px;
}
@media (max-width: 1100px) { .pipeline-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 720px)  { .pipeline-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px)  { .pipeline-grid { grid-template-columns: 1fr; } }

.pipeline-col { display: flex; flex-direction: column; gap: 10px; }
.pipeline-col h4 {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--line);
}
.pipeline-card {
  padding: 14px;
  background: var(--navy-3);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  display: flex; flex-direction: column; gap: 4px;
}
.pipe-name { color: var(--cream); font-size: 0.9rem; }
.pipe-value { color: var(--gold); font-family: var(--font-head); font-size: 1.1rem; }

/* Dash CTA */
.dash-cta {
  text-align: center;
  padding: clamp(40px, 5vw, 60px);
  background: linear-gradient(165deg, var(--navy-3), var(--navy-2));
  border: 1px solid var(--gold);
  border-radius: var(--radius-xl);
}
.dash-cta h2 { max-width: 28ch; margin: 0 auto 16px; }
.dash-cta p { max-width: 56ch; margin: 0 auto 24px; }
.dash-cta .cta-row { justify-content: center; }

/* Business Pulse report */
.report-shell { padding-top: 0; }

.report-header {
  padding: clamp(50px, 7vw, 90px) 0 clamp(36px, 5vw, 60px);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, var(--navy-3), var(--navy));
}
.report-brand {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.report-header h1 { margin-bottom: 14px; }
.report-sub { font-size: 1.1rem; color: var(--cream-muted); max-width: 60ch; margin-bottom: 32px; }

.report-profile {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
  padding: 20px 24px;
  background: var(--navy-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.profile-name { display: block; font-family: var(--font-head); font-size: 1.3rem; color: var(--cream); }
.profile-meta { display: block; font-size: 0.85rem; color: var(--cream-muted); margin-top: 2px; }
.profile-month {
  font-family: var(--font-head);
  font-size: 1.4rem;
  color: var(--gold);
  letter-spacing: 0.02em;
}

/* Month tabs */
.month-tabs-wrap { padding: 24px 0; border-bottom: 1px solid var(--line); }
.month-tabs { display: flex; gap: 8px; flex-wrap: wrap; }
.month-tab {
  padding: 10px 22px;
  background: var(--navy-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  color: var(--cream-muted);
  font-weight: 500;
  font-size: 0.88rem;
  letter-spacing: 0.05em;
  transition: all 0.2s var(--ease);
}
.month-tab:hover { border-color: var(--gold); color: var(--cream); }
.month-tab.active {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}

/* Memo */
.memo-section { padding: clamp(40px, 5vw, 70px) 0; }
.memo-card {
  padding: clamp(28px, 4vw, 44px);
  background: var(--navy-2);
  border: 1px solid var(--line);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius-lg);
}
.memo-head {
  display: flex; justify-content: space-between; align-items: flex-start;
  flex-wrap: wrap; gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}
.memo-head h2 { font-size: clamp(1.5rem, 2vw + 0.5rem, 2rem); }
.analysis-badge {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 6px 14px;
  background: rgba(200, 164, 93, 0.12);
  border: 1px solid rgba(200, 164, 93, 0.4);
  border-radius: 100px;
}
.memo-body p {
  font-size: 1.02rem;
  margin-bottom: 14px;
  color: var(--cream);
  line-height: 1.7;
}
.memo-sign {
  font-family: var(--font-head);
  font-style: italic;
  color: var(--gold);
  margin-top: 18px;
}

/* Forecast & missed */
.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media (max-width: 800px) { .split-grid { grid-template-columns: 1fr; } }

.forecast-panel h3 { color: var(--gold-light); margin: 8px 0 14px; }
.forecast-range {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--gold);
  margin-bottom: 22px;
}
.forecast-list, .missed-list { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.forecast-list li, .missed-list li {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.92rem;
}
.forecast-list li:last-child, .missed-list li:last-child { border-bottom: 0; }
.forecast-list strong { color: var(--gold-light); font-family: var(--font-head); font-size: 1.15rem; }

.missed-panel { border-color: rgba(201, 107, 92, 0.3); }
.missed-panel .eyebrow { color: var(--danger); }
.missed-amount {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  color: var(--danger);
  line-height: 1;
  margin: 12px 0 4px;
}
.missed-sub { font-size: 0.92rem; color: var(--cream-muted); margin-bottom: 22px; }
.missed-cause { color: var(--cream); }
.missed-val { color: var(--danger); font-family: var(--font-head); font-size: 1.15rem; font-weight: 500; }

/* Section heads */
.section-head { margin-bottom: 28px; }
.section-head h3 { color: var(--gold-light); }

/* Metric grids */
.metric-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 22px;
}
.metric-grid-3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 800px) { .metric-grid, .metric-grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .metric-grid, .metric-grid-3 { grid-template-columns: 1fr; } }

.metric-card {
  padding: 20px;
  background: var(--navy-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: flex; flex-direction: column; gap: 6px;
}
.metric-label {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream-muted);
}
.metric-value {
  font-family: var(--font-head);
  font-size: 1.7rem;
  color: var(--gold-light);
  line-height: 1.1;
}
.metric-value.metric-text { font-size: 1rem; line-height: 1.4; }

.insight-card {
  padding: 22px 26px;
  background: rgba(200, 164, 93, 0.08);
  border-left: 2px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.insight-label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
  font-weight: 500;
}
.insight-card p { color: var(--cream); font-size: 0.95rem; }

/* Lead grid */
.lead-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
@media (max-width: 900px) { .lead-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .lead-grid { grid-template-columns: 1fr; } }
.lead-card {
  padding: 22px;
  background: var(--navy-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: flex; flex-direction: column; gap: 8px;
}
.lead-card h4 { color: var(--gold-light); font-size: 1.1rem; }
.lead-meta { font-size: 0.85rem; color: var(--cream-muted); }
.lead-tag {
  display: inline-block;
  align-self: flex-start;
  padding: 3px 10px;
  border-radius: 100px;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  background: rgba(118, 211, 155, 0.16);
  color: var(--success);
  border: 1px solid rgba(118, 211, 155, 0.3);
  margin-top: 4px;
}
.lead-tag-good { background: rgba(118, 211, 155, 0.12); }
.lead-tag-quiet { background: var(--cream-soft); color: var(--cream-muted); border-color: var(--line); }
.lead-tag-warn { background: rgba(217, 164, 65, 0.16); color: var(--warning); border-color: rgba(217, 164, 65, 0.3); }
.lead-best { border-color: var(--gold); }

/* Trend chart */
.trend-chart {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 12px;
  height: 280px;
  padding: 24px 24px 40px;
  background: var(--navy-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}
.trend-bar {
  flex: 1;
  height: var(--h);
  background: linear-gradient(180deg, var(--gold-light), var(--gold-deep));
  border-radius: 4px 4px 0 0;
  position: relative;
  display: flex; flex-direction: column; justify-content: flex-end; align-items: center;
  min-height: 40px;
  opacity: 0.6;
  transition: opacity 0.3s var(--ease);
}
.trend-bar:hover { opacity: 1; }
.trend-bar-active { opacity: 1; box-shadow: 0 0 0 2px var(--gold-light); }
.trend-val {
  position: absolute;
  top: -28px;
  font-family: var(--font-head);
  font-size: 0.92rem;
  color: var(--cream);
  white-space: nowrap;
}
.trend-label {
  position: absolute;
  bottom: -24px;
  font-size: 0.78rem;
  color: var(--cream-muted);
  letter-spacing: 0.06em;
}

/* Action plan */
.action-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
}
@media (max-width: 900px) { .action-grid { grid-template-columns: 1fr; } }
.action-card {
  padding: 28px;
  background: var(--navy-2);
  border: 1px solid var(--line);
  border-top: 3px solid var(--gold);
  border-radius: var(--radius-lg);
}
.action-tag {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--navy);
  background: var(--gold);
  padding: 4px 12px;
  border-radius: 100px;
  font-weight: 500;
  margin-bottom: 14px;
}
.action-card h4 { font-size: 1.15rem; margin-bottom: 10px; color: var(--cream); }
.action-card p { font-size: 0.92rem; margin-bottom: 10px; }
.action-impact {
  font-size: 0.88rem;
  padding-top: 10px;
  border-top: 1px solid var(--line);
  color: var(--gold-light);
}

/* How it works */
.how-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
}
@media (max-width: 1000px) { .how-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .how-grid { grid-template-columns: 1fr; } }
.how-card {
  padding: 26px;
  background: var(--navy-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}
.how-num {
  font-family: var(--font-head);
  font-size: 1.6rem;
  color: var(--gold);
  display: block;
  margin-bottom: 12px;
}
.how-card h4 { font-size: 1.05rem; margin-bottom: 8px; color: var(--cream); }
.how-card p { font-size: 0.9rem; }

/* Thank-you */
.thanks-section {
  padding: clamp(70px, 10vw, 130px) 0;
  min-height: calc(100vh - 200px);
  display: flex; align-items: center;
}
.thanks-inner { max-width: 720px; }
.thanks-section h1 { margin-bottom: 18px; }
.thanks-next {
  margin: 36px 0;
  padding: 28px 32px;
  background: var(--navy-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}
.thanks-next h2 { font-size: 1.3rem; margin-bottom: 16px; color: var(--gold-light); }
.thanks-list { padding-left: 22px; display: flex; flex-direction: column; gap: 10px; }
.thanks-list li { color: var(--cream); font-size: 0.95rem; }
.thanks-list li::marker { color: var(--gold); font-weight: 500; }

/* Toast */
.toast {
  position: fixed;
  bottom: 24px; left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--navy-3);
  color: var(--cream);
  border: 1px solid var(--gold);
  padding: 14px 22px;
  border-radius: 100px;
  font-size: 0.9rem;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s var(--ease);
  z-index: 200;
}
.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.about-positioning { background: var(--navy-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.two-products { background: var(--navy); }

/* =========================================================
   FOUNDER PHOTO ON HOMEPAGE
   ========================================================= */
.founder-inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(40px, 6vw, 70px);
  align-items: center;
}
.founder-photo {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--gold-soft);
}
.founder-photo img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 1156 / 1600;
  object-fit: cover;
}

/* =========================================================
   MEET KIM PAGE
   ========================================================= */
.meet-hero {
  padding: clamp(56px, 8vw, 110px) 0 clamp(40px, 6vw, 80px);
  background:
    radial-gradient(800px 500px at 80% 15%, rgba(200,164,93,0.10), transparent 70%),
    var(--navy);
}
.meet-hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(40px, 6vw, 70px);
  align-items: center;
}
.meet-hero-copy h1 { margin-bottom: 1.4rem; }
.meet-hero-photo {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--gold-soft);
}
.meet-hero-photo img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 1066 / 1600;
  object-fit: cover;
}

.meet-narrow { max-width: 780px; }
.text-center { text-align: center; }
.text-center .lede { margin-left: auto; margin-right: auto; }
.cta-center { justify-content: center; }

.meet-story h2 { margin-bottom: 1.6rem; max-width: 24ch; }
.meet-story p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--cream);
  margin-bottom: 1.2rem;
}

.meet-values { background: linear-gradient(180deg, var(--navy-2), var(--navy)); }
.meet-values h2 { margin-bottom: 2.5rem; max-width: 22ch; }
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.value-card {
  background: linear-gradient(165deg, var(--navy-2), var(--navy-3));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: border-color var(--t-base), transform var(--t-base);
}
.value-card:hover { border-color: var(--gold-soft); transform: translateY(-2px); }
.value-num {
  display: inline-block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 14px;
  line-height: 1;
}
.value-card h3 {
  font-size: 1.35rem;
  margin-bottom: 10px;
  color: var(--cream);
}
.value-card p { font-size: 0.96rem; line-height: 1.65; }

.meet-why { background: var(--navy); }
.meet-why-inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(40px, 6vw, 70px);
  align-items: center;
}
.meet-why-photo {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--gold-soft);
}
.meet-why-photo img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 1066 / 1600;
  object-fit: cover;
}
.meet-why-copy h2 { margin-bottom: 1.4rem; }
.meet-why-copy p {
  font-size: 1.02rem;
  line-height: 1.75;
  margin-bottom: 1rem;
  color: var(--cream);
}

.meet-quote-section {
  background: linear-gradient(180deg, var(--navy), var(--navy-2));
  text-align: center;
}
.meet-pull-quote {
  margin: 0 auto;
  max-width: 780px;
  padding: clamp(28px, 5vw, 56px);
  background: linear-gradient(165deg, rgba(200,164,93,0.10), var(--navy-2));
  border: 1px solid var(--gold-soft);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.meet-pull-quote p {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.4rem, 2.6vw, 1.95rem);
  font-style: italic;
  line-height: 1.45;
  color: var(--cream);
  margin-bottom: 18px;
}
.meet-pull-quote cite {
  font-style: normal;
  font-family: 'Jost', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}

.meet-credentials h2 { margin-bottom: 2rem; }
.meet-credentials .founder-credentials {
  grid-template-columns: repeat(3, 1fr);
}

.meet-cta {
  background: linear-gradient(180deg, var(--navy-2), var(--navy));
}
.meet-cta h2 { margin: 12px auto 1.2rem; max-width: 18ch; }

/* =========================================================
   CONTACT PAGE
   ========================================================= */
.contact-options { background: linear-gradient(180deg, var(--navy), var(--navy-2)); }
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.contact-card {
  background: linear-gradient(165deg, var(--navy-2), var(--navy-3));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  transition: border-color var(--t-base), transform var(--t-base), box-shadow var(--t-base);
}
.contact-card:hover {
  border-color: var(--gold-soft);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.contact-card h2 {
  font-size: 1.5rem;
  margin: 10px 0 12px;
}
.contact-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 22px;
  flex-grow: 1;
}
.contact-featured {
  border-color: var(--gold);
  background: linear-gradient(165deg, rgba(200,164,93,0.12), var(--navy-2));
  box-shadow: var(--shadow-gold);
}

.optional {
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: none;
  color: var(--cream-faint);
  font-weight: 400;
}

.contact-details {
  background: var(--navy);
}
.contact-details-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.detail-block {
  background: var(--navy-soft);
  border: 1px solid var(--line);
  border-left: 2px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 24px;
}
.detail-block .cred-value {
  font-size: 1.2rem;
  display: block;
  margin: 4px 0 12px;
}
.detail-block .cred-value a { color: var(--gold-light); transition: color var(--t-fast); }
.detail-block .cred-value a:hover { color: var(--gold); }
.detail-block p { font-size: 0.88rem; }

/* =========================================================
   MEET KIM + CONTACT — Mobile
   ========================================================= */
@media (max-width: 980px) {
  .meet-hero-inner,
  .meet-why-inner { grid-template-columns: 1fr; }
  .meet-hero-photo { order: -1; max-width: 480px; margin: 0 auto; }
  .meet-why-photo { max-width: 480px; margin: 0 auto; }
  .values-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-details-grid { grid-template-columns: 1fr; }
  .meet-credentials .founder-credentials { grid-template-columns: 1fr 1fr; }
  .founder-inner { grid-template-columns: 1fr; }
  .founder-photo { max-width: 480px; margin: 0 auto; order: -1; }
}

@media (max-width: 640px) {
  .meet-credentials .founder-credentials { grid-template-columns: 1fr; }
}
