/* ============================================================
   Cohere Solutions — Design System
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,500;0,9..144,600;0,9..144,700;1,9..144,500&family=Inter:wght@400;500;600;700;800&family=Space+Grotesk:wght@500;600;700&display=swap');

:root{
  --gold: #b99552;
  --gold-light: #d9bb84;
  --gold-deep: #6e4f1e;
  --navy: #1b3a5c;
  --navy-deep: #102436;
  --cream: #faf6ec;
  --cream-deep: #f0e8d6;
  --ink: #1c1811;
  --ink-soft: #3a3327;
  --white: #ffffff;

  --glass-bg: #fffdf9;
  --glass-border: rgba(185,149,82,0.35);
  --glass-shadow: 0 2px 10px rgba(27,58,92,0.07);

  --glass-navy-bg: var(--navy-deep);
  --glass-navy-border: rgba(217,187,132,0.3);

  --radius-lg: 16px;
  --radius-md: 12px;
  --radius-sm: 8px;

  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'Space Grotesk', 'Inter', sans-serif;

  --container: 1280px;
}

@media (prefers-color-scheme: dark){
  :root:not([data-theme="light"]){
    --cream: #0a1622;
    --cream-deep: #0f1f30;
    --ink: #f3ecd9;
    --ink-soft: #b9ae94;
    --glass-bg: #14304a;
    --glass-border: rgba(217,187,132,0.28);
    --glass-shadow: 0 4px 18px rgba(0,0,0,0.45);
    /* gold-deep is a dark brown tuned for text on light (cream) backgrounds — on dark
       backgrounds it fails WCAG contrast, so swap it for the lighter gold everywhere */
    --gold-deep: #d9bb84;
  }
}
:root[data-theme="dark"]{
  --cream: #0a1622;
  --cream-deep: #0f1f30;
  --ink: #f3ecd9;
  --ink-soft: #b9ae94;
  --glass-bg: #14304a;
  --glass-border: rgba(217,187,132,0.28);
  --glass-shadow: 0 4px 18px rgba(0,0,0,0.45);
  --gold-deep: #d9bb84;
}

/* headings/brand text hardcode navy-deep, which is unreadable once the page background goes dark */
@media (prefers-color-scheme: dark){
  :root:not([data-theme="light"]) h1, :root:not([data-theme="light"]) h2,
  :root:not([data-theme="light"]) h3, :root:not([data-theme="light"]) h4,
  :root:not([data-theme="light"]) .nav-brand span, :root:not([data-theme="light"]) .hero h1,
  :root:not([data-theme="light"]) .btn-ghost, :root:not([data-theme="light"]) .expert-detail-inner strong{
    color: var(--ink);
  }
  :root:not([data-theme="light"]) .btn-ghost{ border-color: var(--gold); }
}
:root[data-theme="dark"] h1, :root[data-theme="dark"] h2,
:root[data-theme="dark"] h3, :root[data-theme="dark"] h4,
:root[data-theme="dark"] .nav-brand span, :root[data-theme="dark"] .hero h1,
:root[data-theme="dark"] .btn-ghost, :root[data-theme="dark"] .expert-detail-inner strong{
  color: var(--ink);
}
:root[data-theme="dark"] .btn-ghost{ border-color: var(--gold); }

/* ---------------- Accessibility ---------------- */
.skip-link{
  position: absolute; left:12px; top:-60px; z-index:1000;
  background: var(--navy-deep); color: var(--white); padding:12px 20px;
  border-radius: var(--radius-sm); font-weight:700; font-size:14px;
  transition: top .15s ease;
}
.skip-link:focus{ top:12px; }

:focus-visible{ outline: 3px solid var(--gold-deep); outline-offset: 2px; }
.gterm:focus-visible{ outline-offset: 1px; }

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

*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin:0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img{ max-width:100%; display:block; }
a{ color: inherit; text-decoration:none; }
ul{ margin:0; padding:0; list-style:none; }
h1,h2,h3,h4{ font-family: var(--font-display); margin:0; font-weight:600; color: var(--navy-deep); }
p{ margin:0; }
button{ font-family: inherit; cursor:pointer; }

.container{ max-width: var(--container); margin: 0 auto; padding: 0 32px; position: relative; }

/* ---------------- Background field (kept as a no-op hook for layout spacing) ---------------- */
.blob-field{ display:none; }

/* ---------------- Micro labels ---------------- */
.tag-label{
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold-deep);
  display:flex; align-items:center; gap:8px;
  font-weight:700;
}
.tag-label::before{
  content:''; width:18px; height:1px; background: var(--gold);
}
.hairline{ height:1px; background: linear-gradient(90deg, transparent, var(--glass-border) 20%, var(--glass-border) 80%, transparent); border:none; margin:0; }

/* ---------------- Language switcher ---------------- */
.lang-select{
  height:38px; padding:0 28px 0 12px; border-radius:999px; border:1px solid var(--glass-border);
  background: var(--glass-bg) url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M4 6l4 4 4-4" fill="none" stroke="%23b99552" stroke-width="1.6" stroke-linecap="round" stroke-linejoin="round"/></svg>') no-repeat right 8px center;
  background-size:14px; color: var(--ink-soft); font-size:13px; font-weight:600;
  appearance:none; -webkit-appearance:none; cursor:pointer; flex-shrink:0;
}
.lang-select:hover{ border-color: var(--gold); color: var(--gold-deep); }

/* ---------------- Theme toggle ---------------- */
.theme-toggle{
  display:flex; align-items:center; justify-content:center;
  width:38px; height:38px; border-radius:50%; border:1px solid var(--glass-border);
  background: var(--glass-bg); color: var(--ink-soft); flex-shrink:0;
  transition: color .2s ease, border-color .2s ease;
}
.theme-toggle:hover{ color: var(--gold-deep); border-color: var(--gold); }
.theme-toggle svg{ width:18px; height:18px; }
.theme-toggle .icon-moon{ display:none; }
:root[data-theme="dark"] .theme-toggle .icon-sun{ display:none; }
:root[data-theme="dark"] .theme-toggle .icon-moon{ display:block; }

/* ---------------- FAQ chatbot ---------------- */
.faq-chat-btn{
  position: fixed; right:24px; bottom:24px; z-index:800;
  width:56px; height:56px; border-radius:50%; border:1px solid var(--gold);
  background: var(--navy-deep); color: var(--gold-light);
  display:flex; align-items:center; justify-content:center;
  box-shadow: 0 8px 24px rgba(16,36,54,.3);
  transition: transform .2s ease;
}
.faq-chat-btn:hover{ transform: translateY(-2px); }
.faq-chat-btn svg{ width:24px; height:24px; }
.faq-chat-panel{
  position: fixed; right:24px; bottom:92px; z-index:800;
  width:min(340px, calc(100vw - 48px)); max-height:min(480px, calc(100vh - 140px));
  background: var(--glass-bg); border:1px solid var(--glass-border); border-radius: var(--radius-lg);
  box-shadow: 0 16px 40px rgba(16,36,54,.28);
  display:flex; flex-direction:column;
  opacity:0; transform: translateY(10px) scale(.98); pointer-events:none;
  transition: opacity .18s ease, transform .18s ease;
}
.faq-chat-panel.is-open{ opacity:1; transform:translateY(0) scale(1); pointer-events:auto; }
.faq-chat-head{
  display:flex; align-items:center; justify-content:space-between;
  padding:16px 18px; border-bottom:1px solid var(--glass-border);
  font-family: var(--font-display); font-weight:600; font-size:16px; color: var(--ink);
}
.faq-chat-close{ background:none; border:none; font-size:18px; color: var(--ink-soft); line-height:1; }
.faq-chat-close:hover{ color: var(--ink); }
.faq-chat-body{ padding:16px 18px; overflow-y:auto; display:flex; flex-direction:column; gap:10px; }
.faq-chat-intro{ font-size:13.5px; color: var(--ink-soft); margin-bottom:4px; }
.faq-chat-q{
  text-align:left; background: rgba(217,187,132,0.08); border:1px solid var(--glass-border);
  border-radius: var(--radius-sm); padding:10px 14px; font-size:14px; color: var(--ink);
  transition: border-color .15s ease, background .15s ease;
}
.faq-chat-q:hover{ border-color: var(--gold); background: rgba(217,187,132,0.16); }
.faq-chat-back{ background:none; border:none; padding:0; font-size:13px; font-weight:600; color: var(--gold-deep); text-align:left; }
.faq-chat-back:hover{ color: var(--ink); }
.faq-chat-answered-q{ font-family: var(--font-display); font-weight:600; font-size:15px; color: var(--ink); margin-top:6px; }
.faq-chat-a{ font-size:14px; line-height:1.6; color: var(--ink-soft); }
.faq-chat-link{
  display:inline-block; margin-top:4px; font-size:13px; font-weight:700;
  color: var(--gold-deep); text-decoration: underline;
}
.faq-chat-link:hover{ color: var(--ink); }
@media (max-width: 480px){
  .faq-chat-btn{ right:16px; bottom:16px; }
  .faq-chat-panel{ right:16px; bottom:82px; }
}

/* ---------------- Nav ---------------- */
.site-nav{
  position: sticky; top:0; z-index:100;
  background: var(--cream);
  border-bottom: 1px solid var(--glass-border);
}
.nav-inner{
  max-width: var(--container); margin:0 auto; padding: 16px 32px;
  display:flex; align-items:center; justify-content:space-between; gap:24px;
}
.nav-brand{ display:flex; align-items:center; gap:12px; }
.nav-brand img{ height:38px; width:auto; }
.nav-brand span{ font-family: var(--font-display); font-weight:600; font-size:19px; color: var(--navy-deep); }
.nav-links{ display:flex; align-items:center; gap:28px; }
.nav-links a{
  font-size: 13.5px; font-weight:600; letter-spacing:.04em; text-transform:uppercase;
  color: var(--ink-soft); position:relative; padding: 4px 0;
  transition: color .2s ease;
}
.nav-links a:hover, .nav-links a.active{ color: var(--gold-deep); }
.nav-links a.active::after{
  content:''; position:absolute; left:0; right:0; bottom:-4px; height:2px; background: var(--gold);
}
.nav-cta{
  padding: 15px 34px; border-radius: 999px;
  background: var(--navy-deep); color: var(--white) !important;
  border: 1px solid var(--gold);
  font-size:13.5px; font-weight:700; letter-spacing:.04em;
  box-shadow: 0 8px 20px rgba(16,36,54,.35);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.nav-cta:hover{ background: var(--navy); transform: translateY(-2px); box-shadow: 0 12px 26px rgba(16,36,54,.4); }
.nav-toggle{ display:none; background:none; border:none; padding:8px; }
.nav-toggle span{ display:block; width:24px; height:2px; background:var(--navy); margin:5px 0; }

/* ---------------- Hero ---------------- */
.hero{
  position:relative; padding: 100px 0 70px;
  overflow:hidden;
}
.hero-inner{ position:relative; z-index:1; display:grid; grid-template-columns: 1.15fr .85fr; gap:48px; align-items:center; }
.hero-eyebrow{ margin-bottom:22px; }
.hero h1{
  font-size: clamp(42px, 6vw, 76px);
  line-height: .98;
  letter-spacing: -.01em;
  color: var(--navy-deep);
}
.hero h1 em{ font-style: italic; color: var(--gold-deep); }
.hero-sub{
  font-size: 18px; line-height:1.6; color: var(--ink-soft);
  max-width: 520px; margin-top:22px;
}
.hero-actions{ display:flex; gap:16px; margin-top:34px; flex-wrap:wrap; }

.btn{
  display:inline-flex; align-items:center; gap:10px;
  padding: 15px 28px; border-radius: 999px;
  font-size:14px; font-weight:700; letter-spacing:.03em; text-transform:uppercase;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  border: none;
}
.btn-primary{ background: var(--navy); color:var(--white); box-shadow: 0 10px 24px rgba(27,58,92,.28); }
.btn-primary:hover{ transform: translateY(-3px); box-shadow: 0 16px 30px rgba(27,58,92,.34); }
.btn-ghost{
  background: transparent; color: var(--navy-deep);
  border: 1px solid var(--navy);
}
.btn-ghost:hover{ background: var(--navy); color: var(--white); transform: translateY(-2px); }

.hero-mark{
  position:relative; display:flex; align-items:center; justify-content:center;
}
.hero-mark img{
  width: 100%; max-width: 420px;
  filter: drop-shadow(0 30px 40px rgba(27,58,92,.18));
  animation: float 7s ease-in-out infinite;
}
@keyframes float{ 0%,100%{ transform: translateY(0) rotate(0deg);} 50%{ transform: translateY(-14px) rotate(2deg);} }

/* ---------------- Section chrome ---------------- */
.section{ position:relative; padding: 90px 0; }
.section-alt{ background: var(--cream-deep); }
.section-navy{ background: linear-gradient(160deg, var(--navy-deep), var(--navy)); color: var(--white); }
.section-navy h2, .section-navy h3{ color: var(--white); }
.section-navy .tag-label{ color: var(--gold-light); }
.section-navy .tag-label::before{ background: var(--gold-light); }

.section-head{ max-width: 680px; margin-bottom: 52px; }
.section-head h2{ font-size: clamp(30px, 4vw, 46px); margin-top:14px; line-height:1.08; }
.section-head p{ margin-top:16px; font-size:16.5px; color: var(--ink-soft); line-height:1.6; }
.section-navy .section-head p{ color: rgba(255,255,255,.75); }

/* ---------------- Bento grid ---------------- */
.bento-grid{
  display:grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 22px;
}
.bento-card{
  position:relative;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--glass-shadow);
  padding: 34px;
  overflow:hidden;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.bento-card:hover{
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(27,58,92,.12);
  border-color: var(--gold);
}
.bento-card.dark{
  background: var(--glass-navy-bg); border-color: var(--glass-navy-border); color: var(--white);
}
.bento-card.dark h2, .bento-card.dark h3, .bento-card.dark h4{ color: var(--white); }
.bento-card.dark .card-desc{ color: rgba(255,255,255,.82); }

.col-2{ grid-column: span 2; }
.col-3{ grid-column: span 3; }
.col-4{ grid-column: span 4; }
.col-6{ grid-column: span 6; }
.row-2{ grid-row: span 2; }

.card-icon{
  width:44px; height:44px; border-radius: 8px;
  background: var(--navy);
  display:flex; align-items:center; justify-content:center;
  color:var(--gold-light); font-size:18px; font-family:var(--font-mono); font-weight:700; margin-bottom:20px;
}
.card-image{
  width: calc(100% + 68px); margin: -34px -34px 20px -34px;
  aspect-ratio: 16/10; object-fit: cover; display:block;
}
.bento-card h3{ font-size: 21px; margin-bottom:10px; }
.bento-card h4{ font-size:16px; margin-bottom:6px;}
.card-desc{ font-size: 15.5px; line-height:1.65; color: var(--ink-soft); }

.gterm{
  font: inherit; color: var(--gold-deep); background:none; border:none; padding:0;
  cursor:pointer; text-decoration: underline dotted; text-underline-offset:3px;
  text-decoration-color: var(--gold); transition: color .15s ease;
}
.gterm:hover, .gterm:focus-visible, .gterm.is-active{ color: var(--ink); text-decoration-style: solid; }
.gdot{ color: var(--gold); opacity:.6; }
.bento-card.dark .gterm{ color: var(--gold-light); text-decoration-color: rgba(217,187,132,.6); }
.bento-card.dark .gterm:hover, .bento-card.dark .gterm.is-active{ color: var(--white); }

.glossary-backdrop{
  position: fixed; inset:0; background: rgba(16,36,54,.35); z-index:900;
  opacity:0; pointer-events:none; transition: opacity .15s ease;
}
.glossary-backdrop.is-open{ opacity:1; pointer-events:auto; }
.glossary-popover{
  position: fixed; z-index:901; max-width:300px; background: var(--glass-bg);
  border:1px solid var(--glass-border); border-radius: var(--radius-md);
  box-shadow: 0 12px 32px rgba(16,36,54,.25); padding:16px 18px;
  opacity:0; transform: translateY(6px); pointer-events:none;
  transition: opacity .15s ease, transform .15s ease;
}
.glossary-popover.is-open{ opacity:1; transform:translateY(0); pointer-events:auto; }
.glossary-popover h5{
  font-family: var(--font-display); font-size:17px; margin:0 0 6px; padding-right:20px; color: var(--ink);
}
.glossary-popover p{ font-size:14px; line-height:1.55; color: var(--ink-soft); margin:0; }
.glossary-popover .gclose{
  position:absolute; top:10px; right:10px; width:22px; height:22px; border:none;
  background:none; cursor:pointer; color: var(--ink-soft); font-size:16px; line-height:1;
  border-radius:50%; display:flex; align-items:center; justify-content:center;
}
.glossary-popover .gclose:hover{ background: var(--cream-deep); color: var(--ink); }

.card-link{
  margin-top:20px; display:inline-flex; align-items:center; gap:8px;
  font-size:13px; font-weight:700; text-transform:uppercase; letter-spacing:.04em;
  color: var(--gold-deep);
}
.card-link svg{ transition: transform .2s ease; }
.bento-card:hover .card-link svg{ transform: translateX(4px); }

.card-image{
  width:calc(100% + 68px); margin: -34px -34px 20px -34px;
  height:170px; object-fit:cover; display:block;
}
.chip-row{ display:flex; flex-wrap:wrap; gap:8px; margin-top:18px; }
.chip{
  font-size:11.5px; font-weight:600; letter-spacing:.03em; text-transform:uppercase;
  padding:6px 12px; border-radius:999px;
  background: rgba(185,149,82,.14); color: var(--gold-deep);
  border:1px solid rgba(185,149,82,.25);
}
.dark .chip{ background: rgba(255,255,255,.1); color: var(--gold-light); border-color: rgba(255,255,255,.18); }

/* ---------------- Footer ---------------- */
.site-footer{ background: var(--navy-deep); color: rgba(255,255,255,.8); padding: 64px 0 28px; }
.footer-grid{ display:grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 40px; }
.footer-social{ display:flex; gap:10px; margin-top:12px; }
.footer-social a{ padding:0; display:flex; align-items:center; justify-content:center; width:30px; height:30px; border-radius:50%; border:1px solid rgba(255,255,255,.18); color:rgba(255,255,255,.68); }
.footer-social a:hover{ color: var(--gold-light); border-color: var(--gold-light); }
.footer-social svg{ width:14px; height:14px; }
.footer-brand{ display:flex; align-items:center; gap:12px; margin-bottom:16px; }
.footer-brand img{ height:34px; }
.footer-brand span{ font-family: var(--font-display); font-size:18px; color:var(--white); font-weight:600; }
.site-footer h4{ color: var(--gold-light); font-family: var(--font-mono); font-size:12px; letter-spacing:.12em; text-transform:uppercase; margin-bottom:16px; }
.site-footer a{ display:block; font-size:14px; color: rgba(255,255,255,.68); padding:6px 0; transition:color .2s ease; }
.site-footer a:hover{ color: var(--gold-light); }
.footer-bottom{ margin-top:48px; padding-top:24px; border-top:1px solid rgba(255,255,255,.12); display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:12px; font-size:13px; color: rgba(255,255,255,.5); }
.footer-a11y-statement{ margin-top:20px; padding-top:20px; border-top:1px solid rgba(255,255,255,.08); font-size:12.5px; line-height:1.6; color: rgba(255,255,255,.5); max-width:760px; }
.compliance-badge{ display:inline-flex !important; align-items:center; gap:6px; padding:5px 12px !important; border-radius:999px; border:1px solid rgba(255,255,255,.22); background: rgba(255,255,255,.04); color: rgba(255,255,255,.72) !important; font-size:12px !important; font-weight:600; white-space:nowrap; }
.compliance-badge:hover{ color: var(--gold-light) !important; border-color: var(--gold-light); }

/* ---------------- Utility ---------------- */
.mt-0{margin-top:0;}
.text-center{ text-align:center; margin-left:auto; margin-right:auto; }
.reveal{ opacity:0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in{ opacity:1; transform:none; }

/* ---------------- Expert cards (expand-in-place) ---------------- */
.expert-card{
  cursor:pointer;
}
.expert-photo{
  width:100%; aspect-ratio: 1/1; object-fit:cover; border-radius: var(--radius-md);
  margin-bottom:18px; filter: saturate(.92) contrast(1.03);
  border: 1px solid var(--glass-border);
}
.expert-detail{
  max-height:0; overflow:hidden; transition: max-height .5s ease, margin-top .5s ease;
  margin-top:0;
}
.expert-card.open .expert-detail{ margin-top:18px; }
.expert-detail-inner{ padding-top:18px; border-top:1px dashed var(--glass-border); font-size:14px; line-height:1.7; color: var(--ink-soft); }
.expert-detail-inner strong{ color: var(--navy-deep); }
.expert-detail-inner .exp-block{ margin-bottom:14px; }
.expand-indicator{
  margin-top:16px; display:flex; align-items:center; gap:8px; font-size:12px; font-weight:700; text-transform:uppercase; letter-spacing:.05em; color: var(--gold-deep);
}
.expand-indicator svg{ transition: transform .3s ease; }
.expert-card.open .expand-indicator svg{ transform: rotate(180deg); }

/* ---------------- Offer carousel ---------------- */
.carousel-wrap{ position:relative; }
.carousel{
  display:flex; gap:22px; overflow-x:auto; scroll-snap-type:x mandatory;
  padding: 6px 6px 26px; margin: 0 -6px;
  scrollbar-width: thin; scrollbar-color: var(--gold) transparent;
}
.carousel::-webkit-scrollbar{ height:6px; }
.carousel::-webkit-scrollbar-thumb{ background: var(--gold); border-radius:99px; }
.carousel-card{
  flex: 0 0 300px; scroll-snap-align:start;
}
.carousel-card .card-image{ width: calc(100% + 68px); margin: -34px -34px 20px -34px; }
.carousel-nav{ display:flex; gap:10px; margin-top:6px; justify-content:flex-end; }
.carousel-nav button{
  width:40px; height:40px; border-radius:50%; border:1px solid var(--navy);
  background: transparent;
  display:flex; align-items:center; justify-content:center;
  transition: background .2s ease, color .2s ease;
}
.carousel-nav button:hover{ background: var(--navy); color: var(--white); }
@media (max-width:640px){ .carousel-card{ flex-basis: 260px; } }

/* ---------------- SDG badges ---------------- */
.sdg-row{ display:flex; flex-wrap:wrap; gap:6px; margin-top:8px; }
.sdg-badge{
  width:28px; height:28px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  border: 1px solid rgba(0,0,0,.15);
  cursor:default;
  color:#fff;
}
.sdg-badge svg{
  width:15px; height:15px;
  fill:none; stroke:currentColor; stroke-width:1.7;
  stroke-linecap:round; stroke-linejoin:round;
}
.sdg-1{ background:#E5243B; }
.sdg-2{ background:#DDA63A; }
.sdg-3{ background:#4C9F38; }
.sdg-4{ background:#C5192D; }
.sdg-5{ background:#FF3A21; }
.sdg-6{ background:#26BDE2; }
.sdg-7{ background:#FCC30B; }
.sdg-8{ background:#A21942; }
.sdg-9{ background:#FD6925; }
.sdg-10{ background:#DD1367; }
.sdg-11{ background:#FD9D24; }
.sdg-12{ background:#BF8B2E; }
.sdg-13{ background:#3F7E44; }
.sdg-14{ background:#0A97D9; }
.sdg-15{ background:#56C02B; }
.sdg-16{ background:#00689D; }
.sdg-17{ background:#19486A; }

/* ---------------- Pricing table ---------------- */
.price-table{ width:100%; border-collapse:collapse; font-size:14px; }
.price-table th, .price-table td{ padding:14px 16px; text-align:left; border-bottom:1px solid var(--glass-border); }
.price-table th{ font-family: var(--font-mono); text-transform:uppercase; font-size:11px; letter-spacing:.08em; color: var(--gold-deep); }
.price-table tr:last-child td{ border-bottom:none; }

/* ---------------- Responsive ---------------- */
@media (max-width: 980px){
  .hero-inner{ grid-template-columns: 1fr; }
  .hero-mark{ order:-1; max-width:280px; margin:0 auto; }
  .bento-grid{ grid-template-columns: repeat(2, 1fr); }
  .col-2,.col-3,.col-4,.col-6{ grid-column: span 2; }
  .footer-grid{ grid-template-columns: 1fr 1fr; }
  .nav-links{ position:fixed; top:74px; left:0; right:0; background: var(--cream); flex-direction:column; align-items:flex-start; padding:24px 32px; gap:18px; border-bottom:1px solid var(--glass-border); transform: translateY(-140%); transition: transform .3s ease; z-index:99; }
  .nav-links.open{ transform: translateY(0); }
  .nav-toggle{ display:block; }
}
@media (max-width: 640px){
  .bento-grid{ grid-template-columns: 1fr; }
  .col-2,.col-3,.col-4,.col-6{ grid-column: span 1; }
  .footer-grid{ grid-template-columns: 1fr; }
  .container{ padding:0 20px; }
}
