/* ============================================================
   Bench. — design tokens
   ============================================================ */
:root{
  --ink:        #0B0E14;
  --ink-2:      #12151D;
  --paper:      #F4F6FA;
  --paper-dim:  #E7EBF2;
  --paper-line: rgba(11,14,20,0.10);
  --amber:      #8B7FFF;
  --amber-dark: #ACA0FF;
  --teal:       #14B8D4;
  --teal-dark:  #0C7A94;
  --stamp:      #FF7A5C;
  --gold:       #FF7A5C;
  --cream:      #F4F6FA;
  --ink-soft:   #B4BCCC;
  --ink-soft-2: #3D4658;

  --display: "Space Grotesk", sans-serif;
  --body:    "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  --mono:    "IBM Plex Mono", "Courier New", monospace;

  --max: 1180px;
}

*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin:0;
  font-family: var(--body);
  color: var(--ink);
  background: var(--ink);
  -webkit-font-smoothing: antialiased;
  font-synthesis: none;
}
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(--display); margin:0; line-height:1.05; }
p{ margin:0; }

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

.eyebrow{
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  display:inline-flex;
  align-items:center;
  gap:8px;
}
.eyebrow::before{
  content:"";
  width:7px; height:7px;
  background: currentColor;
  border-radius:1px;
  transform: rotate(45deg);
  display:inline-block;
}

/* focus visibility */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible{
  outline: 2px solid var(--amber);
  outline-offset: 3px;
}
@media (prefers-reduced-motion: reduce){
  *{ animation: none !important; transition: none !important; scroll-behavior:auto !important; }
}

/* ============================================================
   Buttons
   ============================================================ */
.btn{
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: .03em;
  text-transform: uppercase;
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding: 14px 26px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor:pointer;
  transition: transform .2s cubic-bezier(.2,.8,.2,1), background .18s ease, border-color .18s ease, box-shadow .2s ease;
  white-space:nowrap;
  will-change: transform;
}
.btn:hover{ transform: translateY(-2px) scale(1.02); box-shadow: 0 10px 24px -10px rgba(20,33,61,0.35); }
.btn:active{ transform: translateY(0) scale(0.98); }
.btn-amber{ background: var(--amber); color: var(--paper); }
.btn-amber:hover{ background: var(--amber-dark); color: var(--paper); }
.btn-ink{ background: var(--ink); color: var(--paper); }
.btn-ink:hover{ background: var(--ink-2); }
.btn-outline{ background: transparent; border-color: currentColor; color: var(--ink); }
.btn-outline.on-dark{ color: var(--paper); }
.btn-outline:hover{ background: rgba(28,35,51,0.06); }
.btn-outline.on-dark:hover{ background: rgba(247,242,231,0.08); }
.btn-teal{ background: var(--paper); color: var(--ink); border-color: var(--ink); }
.btn-teal:hover{ background: var(--ink); color: var(--paper); }
.btn-arrow::after{ content:"→"; }
.btn-block{ width:100%; justify-content:center; }

/* ============================================================
   Nav
   ============================================================ */
.nav{
  position: sticky; top:0; z-index: 50;
  background: var(--ink);
  border-bottom: 1px solid rgba(247,242,231,0.12);
}
.nav .wrap{
  display:flex; align-items:center; justify-content:space-between;
  height:72px;
}
.logo{
  font-family: var(--display);
  font-size: 24px;
  color: var(--paper);
  letter-spacing: -0.01em;
}
.logo span{ color: var(--amber); }
.nav-links{
  display:flex; align-items:center; gap:30px;
}
.nav-links a{
  font-family: var(--mono);
  font-size: 12.5px;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--ink-soft);
  transition: color .15s ease;
}
.nav-links a:hover, .nav-links a.active{ color: var(--paper); position:relative; }
.nav-links a.active::after{
  content:""; position:absolute; left:0; right:0; bottom:-6px; height:2px;
  background: var(--gold); border-radius:2px;
}
.nav-cta{ display:flex; align-items:center; gap:20px; }
.nav-toggle{
  display:none;
  background:none; border:none; color:var(--paper);
  font-size: 22px; cursor:pointer;
}
@media (max-width: 880px){
  .nav-links{
    position:absolute; top:72px; left:0; right:0;
    background: var(--ink);
    flex-direction:column; align-items:flex-start;
    gap:0; padding: 8px 32px 20px;
    border-bottom: 1px solid rgba(247,242,231,0.12);
    display:none;
  }
  .nav-links.open{ display:flex; }
  .nav-links a{ padding: 12px 0; width:100%; border-bottom:1px solid rgba(247,242,231,0.08); }
  .nav-toggle{ display:block; }
}

/* ============================================================
   Section rhythm
   ============================================================ */
.section{ padding: 96px 0; }
.section-tight{ padding: 64px 0; }
.on-ink{ background: var(--ink); color: var(--paper); }
.on-paper{ background: var(--paper); }
.on-paper-dim{ background: var(--paper-dim); }

.section-head{
  max-width: 620px;
  margin-bottom: 56px;
}
.section-head .eyebrow{ color: var(--teal-dark); margin-bottom: 16px; }
.on-ink .section-head .eyebrow{ color: var(--amber); }
.section-head h2{ font-size: clamp(28px, 4vw, 42px); margin-bottom: 14px; }
.section-head p{ color: var(--ink-soft-2); font-size: 17px; line-height:1.6; }
.on-ink .section-head p{ color: var(--ink-soft); }

/* ============================================================
   Hero
   ============================================================ */
.hero{
  background: var(--ink);
  color: var(--paper);
  padding: 88px 0 0;
  position:relative;
  overflow:hidden;
}
.hero-deco{
  position:absolute; top:0; right:0; width:60%; height:100%;
  pointer-events:none; z-index:0;
}
.hero-grid{
  position:relative; z-index:1;
  display:grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items:center;
  padding-bottom: 72px;
}
.hero .eyebrow{ color: var(--amber); margin-bottom:22px; }
.hero h1{
  font-size: clamp(38px, 5.4vw, 68px);
  letter-spacing: -0.015em;
  margin-bottom: 22px;
}
.hero h1 em{ font-style:normal; color:var(--amber); }
.hero p.lede{
  font-size: 18px;
  line-height:1.65;
  color: var(--ink-soft);
  max-width: 480px;
  margin-bottom: 34px;
}
.hero-ctas{ display:flex; gap:14px; flex-wrap:wrap; }

.hero-card{
  background: var(--paper);
  color: var(--ink);
  border-radius: 20px;
  padding: 28px;
  position: relative;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.45);
}
.hero-card-label{
  font-family: var(--mono); font-size:11px; letter-spacing:.1em;
  text-transform:uppercase; color: var(--ink-soft-2); margin-bottom:16px;
}
.hero-stat{
  display:flex; justify-content:space-between; align-items:baseline;
  padding: 13px 0; border-bottom: 1px solid var(--paper-line);
}
.hero-stat:last-child{ border-bottom:none; }
.hero-stat b{ font-family: var(--display); font-size: 26px; }
.hero-stat span{ font-family: var(--mono); font-size: 11.5px; color: var(--ink-soft-2); text-transform:uppercase; letter-spacing:.05em; }

.industry-strip{
  border-top: 1px solid rgba(247,242,231,0.12);
  padding: 22px 0;
}
.industry-strip .wrap{
  display:flex; align-items:center; gap: 28px;
  flex-wrap:wrap;
}
.industry-strip .tag-label{
  font-family: var(--mono); font-size:11px; text-transform:uppercase;
  letter-spacing:.08em; color: var(--ink-soft); white-space:nowrap;
}
.industry-strip .chips{ display:flex; gap:10px; flex-wrap:wrap; }
.chip{
  font-family: var(--mono); font-size:12.5px;
  border: 1px solid rgba(247,242,231,0.22);
  color: var(--paper);
  padding: 7px 13px; border-radius: 30px;
}

@media (max-width: 880px){
  .hero-grid{ grid-template-columns: 1fr; }
}

/* ============================================================
   THE ROUTE — signature 3-step funnel component
   ============================================================ */
.route{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position:relative;
  margin-top: 20px;
}
.route::before{
  content:"";
  position:absolute;
  top: 46px; left: 60px; right: 60px; height:0;
  border-top: 3px dashed var(--paper-line);
  z-index:0;
}
.route-stop{
  position:relative; z-index:1;
  padding: 0 20px;
}
.route-num{
  width: 92px; height:92px;
  border-radius: 50%;
  background: var(--paper);
  border: 3px solid var(--ink);
  color: var(--ink);
  display:flex; align-items:center; justify-content:center;
  font-family: var(--mono); font-weight:600; font-size: 26px;
  margin-bottom: 22px;
}
.route-stop:nth-child(2) .route-num{ border-color: var(--stamp); color:var(--stamp); }
.route-stop:nth-child(3) .route-num{ border-color: var(--teal); color:var(--teal); }
.route-ticket{
  background: var(--paper);
  border: 1px solid var(--paper-line);
  border-radius: 14px;
  padding: 26px 24px;
  position:relative;
  box-shadow: 0 1px 3px rgba(20,33,61,0.05);
  transition: transform .25s cubic-bezier(.2,.8,.2,1), box-shadow .25s ease;
}
.route-ticket:hover{ transform: translateY(-5px); box-shadow: 0 20px 40px -20px rgba(20,33,61,0.25); }
.route-tag{
  font-family: var(--mono); font-size:11px; text-transform:uppercase;
  letter-spacing:.08em; padding:4px 9px; border-radius: 20px;
  display:inline-block; margin-bottom:12px;
}
.tag-free{ background: rgba(47,122,99,0.13); color: var(--teal-dark); }
.tag-paid{ background: rgba(193,68,59,0.12); color: var(--stamp); }
.tag-custom{ background: rgba(232,163,61,0.18); color: var(--amber-dark); }
.route-ticket h3{ font-size: 21px; margin-bottom: 10px; }
.route-ticket p{ color: var(--ink-soft-2); font-size:14.5px; line-height:1.55; margin-bottom:16px; }
.route-ticket .fine{
  font-family: var(--mono); font-size:12px; color: var(--ink-soft-2);
  border-top: 1px dashed var(--paper-line); padding-top:12px;
}
@media (max-width: 880px){
  .route::before{ display:none; }
}
@media (max-width: 640px){
  .route{
    display:flex; flex-wrap:nowrap; overflow-x:auto; gap:16px;
    scroll-snap-type:x mandatory; -webkit-overflow-scrolling:touch; padding-bottom:14px;
  }
  .route .route-stop{ flex:0 0 82%; scroll-snap-align:start; padding:0; }
}

/* ============================================================
   Pillars
   ============================================================ */
.pillars{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.pillar-card{
  background: var(--ink-2);
  border-radius: 6px;
  padding: 34px 28px;
  border-top: 4px solid var(--amber);
  transition: transform .18s ease, box-shadow .18s ease;
}
.pillar-card:nth-child(2){ border-top-color: var(--teal); }
.pillar-card:nth-child(3){ border-top-color: var(--stamp); }
.pillar-card:hover{ transform: translateY(-4px); box-shadow: 0 20px 40px -18px rgba(0,0,0,0.5); }
.pillar-num{ font-family: var(--mono); color: var(--ink-soft); font-size:13px; margin-bottom: 18px; display:block; }
.pillar-card h3{ font-size: 25px; color: var(--paper); margin-bottom: 12px; }
.pillar-card p{ color: var(--ink-soft); font-size: 15px; line-height:1.6; margin-bottom: 22px; }
.pillar-list{ margin-bottom: 26px; }
.pillar-list li{
  font-size: 13.5px; color: var(--ink-soft);
  padding: 8px 0; border-top: 1px solid rgba(247,242,231,0.09);
  display:flex; gap:9px; align-items:flex-start;
}
.pillar-list li::before{ content:"—"; color: var(--amber); flex-shrink:0; }
.pillar-card:nth-child(2) .pillar-list li::before{ color: var(--teal); }
.pillar-card:nth-child(3) .pillar-list li::before{ color: var(--stamp); }
.pillar-link{ font-family: var(--mono); font-size:13px; color: var(--paper); text-transform:uppercase; letter-spacing:.03em; }
.pillar-link::after{ content:"→"; margin-left:8px; transition: margin .15s ease; }
.pillar-card:hover .pillar-link::after{ margin-left:14px; }

@media (max-width: 940px){ .pillars{ grid-template-columns:1fr; } }

/* ============================================================
   Channel ticket cards (marketing/branding listings)
   ============================================================ */
.channel-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.channel-grid.cols-4{ grid-template-columns: repeat(4,1fr); }
@media (max-width:1080px){ .channel-grid.cols-4{ grid-template-columns: repeat(2,1fr);} }
@media (max-width:640px){ .channel-grid.cols-4{ grid-template-columns: 1fr;} }
@media (max-width: 980px){ .channel-grid{ grid-template-columns: repeat(2,1fr); } }
@media (max-width: 640px){ .channel-grid{ grid-template-columns: 1fr; } }

.channel-card{
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--paper-line);
  border-radius: 16px;
  overflow:hidden;
  box-shadow: 0 1px 3px rgba(20,33,61,0.05);
  transition: transform .25s cubic-bezier(.2,.8,.2,1), box-shadow .25s ease;
}
.channel-card:hover{ transform: translateY(-6px); box-shadow: 0 24px 44px -22px rgba(20,33,61,0.28); }
.channel-head{
  padding: 20px 22px 16px;
  border-bottom: 1px solid var(--paper-line);
  display:flex; justify-content:space-between; align-items:flex-start; gap:10px;
}
.channel-head h4{ font-size: 19px; }
.channel-idx{ font-family: var(--mono); font-size:11px; color: var(--ink-soft-2); }
.channel-body{ padding: 18px 22px 22px; }
.channel-tier{
  display:flex; align-items:center; justify-content:space-between;
  padding: 11px 0; border-bottom: 1px solid var(--paper-line);
  font-size: 13.5px;
}
.channel-tier:last-child{ border-bottom:none; }
.channel-tier .t-label{ display:flex; align-items:center; gap:9px; }
.dot{ width:8px; height:8px; border-radius:50%; flex-shrink:0; }
.dot-free{ background: var(--teal); }
.dot-paid{ background: var(--stamp); }
.dot-custom{ background: var(--amber-dark); }
.channel-tier a{
  font-family: var(--mono); font-size:11.5px; text-transform:uppercase;
  color: var(--ink); border-bottom:1px solid var(--ink);
}
.channel-tier a:hover{ color: var(--teal-dark); border-color: var(--teal-dark); }

/* stage toggle */
.stage-toggle{
  display:inline-flex; background: var(--paper-dim);
  border: 1.5px solid var(--ink); border-radius: 30px; padding:4px;
  margin-bottom: 40px;
}
.stage-toggle button{
  font-family: var(--mono); font-size:12.5px; text-transform:uppercase;
  letter-spacing:.03em; padding: 9px 20px; border-radius:30px;
  border:none; background:transparent; cursor:pointer; color: var(--ink-soft-2);
}
.stage-toggle button.active{ background: var(--ink); color: var(--paper); }

/* ============================================================
   Checklist (branding)
   ============================================================ */
.checklist{
  display:grid; grid-template-columns: repeat(3,1fr); gap:14px;
}
.checklist.cols-5{ grid-template-columns: repeat(5,1fr); }
@media (max-width:980px){ .checklist.cols-5{ grid-template-columns: repeat(3,1fr);} }
@media (max-width:600px){ .checklist.cols-5{ grid-template-columns: 1fr;} }
@media (max-width:900px){ .checklist{ grid-template-columns: repeat(2,1fr);} }
@media (max-width:600px){ .checklist{ grid-template-columns: 1fr;} }
.checklist-item{
  color: var(--ink);
  background: var(--paper); border:1px solid var(--paper-line); border-radius:16px;
  padding: 18px 18px; display:flex; gap:12px; align-items:flex-start;
  box-shadow: 0 1px 3px rgba(20,33,61,0.05);
  transition: transform .25s cubic-bezier(.2,.8,.2,1), box-shadow .25s ease;
}
.checklist-item:hover{ transform: translateY(-4px); box-shadow: 0 18px 34px -18px rgba(20,33,61,0.25); }
.checklist-item .num{
  font-family: var(--mono); font-size:12px; color: var(--paper); background: var(--ink);
  width:24px; height:24px; border-radius:50%; flex-shrink:0;
  display:flex; align-items:center; justify-content:center;
}
.checklist-item h4{ font-size:15.5px; margin-bottom:5px; }
.checklist-item p{ font-size:12.5px; color: var(--ink-soft-2); line-height:1.5; }

/* stage stamp select (pills) */
.pill-row{ display:flex; flex-wrap:wrap; gap:10px; }
.pill{
  font-family: var(--mono); font-size:12.5px; padding: 9px 16px;
  border:1.5px solid var(--ink); border-radius:30px; background:transparent;
  cursor:pointer; color:var(--ink);
}
.pill.active{ background: var(--ink); color: var(--paper); }

/* ============================================================
   Stats strip
   ============================================================ */
.stats{
  display:grid; grid-template-columns: repeat(4,1fr); gap:24px;
  border-top: 1px solid rgba(247,242,231,0.12);
  padding-top: 48px;
}
@media (max-width:820px){ .stats{ grid-template-columns: repeat(2,1fr);} }
.stat b{ display:block; font-family:var(--mono); font-weight:600; font-size: 38px; color: var(--amber); margin-bottom:6px; }
.stat span{ font-family: var(--mono); font-size:12px; text-transform:uppercase; letter-spacing:.05em; color: var(--ink-soft); }

/* ============================================================
   Resource grid (factory / media)
   ============================================================ */
.resource-grid{
  display:grid; grid-template-columns: repeat(3, 1fr); gap:20px;
}
.resource-grid.cols-4{ grid-template-columns: repeat(4,1fr); }
@media (max-width:900px){ .resource-grid.cols-4{ grid-template-columns: repeat(2,1fr);} }
@media (max-width:600px){ .resource-grid.cols-4{ grid-template-columns: 1fr;} }
@media (max-width:900px){ .resource-grid{ grid-template-columns: repeat(2,1fr);} }
@media (max-width:600px){ .resource-grid{ grid-template-columns: 1fr;} }
.resource-card{
  color: var(--ink);
  background: var(--paper); border:1px solid var(--paper-line); border-radius:16px;
  padding: 26px 22px; position:relative;
  box-shadow: 0 1px 3px rgba(20,33,61,0.05);
  transition: transform .25s cubic-bezier(.2,.8,.2,1), box-shadow .25s ease;
}
.resource-card:hover{ transform: translateY(-6px); box-shadow: 0 24px 44px -22px rgba(20,33,61,0.28); }
.resource-card .tick{
  position:absolute; top:0; right:22px;
  font-family:var(--mono); font-size:11px; color: var(--ink-soft-2);
  background: var(--paper); padding: 4px 8px; transform: translateY(-50%);
  border: 1px solid var(--paper-line); border-radius:20px;
}
.resource-card h4{ font-size:19px; margin-bottom:10px; }
.resource-card p{ font-size:14px; color: var(--ink-soft-2); line-height:1.55; margin-bottom:16px; }

/* ============================================================
   CTA band
   ============================================================ */
.cta-band{
  background: var(--amber);
  border-radius: 6px;
  padding: 48px 44px;
  display:flex; align-items:center; justify-content:space-between;
  gap: 30px; flex-wrap:wrap;
}
.cta-band h3{ font-size: clamp(22px,3vw,30px); color: var(--paper); max-width:520px; }
.cta-band p{ color: rgba(247,242,231,0.82); margin-top:8px; font-size:15px; }
.cta-band.on-light h3{ color: var(--ink); }
.cta-band.on-light p{ color: rgba(20,33,61,0.7); }

/* ============================================================
   Footer
   ============================================================ */
footer{ background: var(--ink); color: var(--paper); padding: 64px 0 28px; }
.footer-top{
  display:grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap:36px;
  padding-bottom: 44px; border-bottom: 1px solid rgba(247,242,231,0.12);
}
@media (max-width: 780px){ .footer-top{ grid-template-columns: 1fr 1fr; } }
.footer-col h5{
  font-family: var(--mono); font-size:11.5px; text-transform:uppercase;
  letter-spacing:.08em; color: var(--ink-soft); margin-bottom:18px;
}
.footer-col a, .footer-col p{
  display:block; font-size:14px; color: var(--paper); opacity:.85;
  padding: 6px 0;
}
.footer-col a:hover{ color: var(--amber); opacity:1; }
.footer-newsletter{
  display:flex; justify-content:space-between; align-items:center; gap:32px; flex-wrap:wrap;
  padding: 32px 0; border-bottom: 1px solid rgba(247,242,231,0.12);
}
.footer-newsletter-copy h5{
  font-family: var(--mono); font-size:11.5px; text-transform:uppercase; letter-spacing:.08em;
  color: var(--ink-soft); margin-bottom:8px;
}
.footer-newsletter-copy p{ font-size:14px; color: var(--paper); opacity:.85; max-width:360px; margin:0; }
.footer-newsletter-form{ min-width:280px; flex:1; max-width:420px; }
.footer-bottom{
  display:flex; justify-content:space-between; align-items:center;
  padding-top: 26px; flex-wrap:wrap; gap:10px;
}
.footer-bottom p{ font-family: var(--mono); font-size:12px; color: var(--ink-soft); }

/* ============================================================
   Sub-page header banner
   ============================================================ */
.page-banner{
  position:relative; overflow:hidden;
  background:
    radial-gradient(ellipse 600px 400px at 15% 0%, rgba(91,95,239,0.22), transparent 60%),
    radial-gradient(ellipse 500px 380px at 90% 100%, rgba(8,145,178,0.16), transparent 60%),
    var(--ink);
  color: var(--paper); padding: 64px 0 56px;
}
.page-banner::before{
  content:''; position:absolute; inset:0; pointer-events:none; opacity:.5;
  background-image:
    linear-gradient(rgba(244,246,250,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244,246,250,0.05) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.9), transparent 85%);
}
.page-banner .wrap{ position:relative; z-index:1; }
.page-banner .eyebrow{ color: var(--amber); margin-bottom:18px; }
.page-banner h1{ font-size: clamp(32px,4.5vw,52px); max-width: 760px; margin-bottom:16px; }
.page-banner p{ color: var(--ink-soft); font-size:16.5px; max-width:600px; line-height:1.6; }
.breadcrumb{
  font-family: var(--mono); font-size:12px; color: var(--ink-soft);
  margin-bottom: 22px; text-transform:uppercase; letter-spacing:.04em;
}
.breadcrumb a:hover{ color: var(--amber); }

/* ============================================================
   Form (book a service)
   ============================================================ */
.form-card{
  background: var(--paper); border: 1.5px solid var(--ink); border-radius:6px;
  padding: 36px; max-width: 640px;
  color: var(--ink);
}
@media (max-width:560px){ .form-card{ padding:24px 20px; } }
.form-row{ margin-bottom:20px; }
.form-row label{
  display:block; font-family: var(--mono); font-size:12px; text-transform:uppercase;
  letter-spacing:.05em; color: var(--ink-soft-2); margin-bottom:8px;
}
.form-row input, .form-row textarea, .form-row select{
  width:100%; font-family: var(--body); font-size:16px;
  padding: 12px 14px; border: 1.5px solid var(--paper-line);
  border-radius:3px; background: #fff; color: var(--ink);
}
.form-row textarea{ min-height:110px; resize:vertical; }
.form-two{ display:grid; grid-template-columns:1fr 1fr; gap:16px; }
@media (max-width:560px){ .form-two{ grid-template-columns:1fr; } }
.form-success{
  display:none; text-align:center; padding: 30px 10px;
}
.form-success.show{ display:block; }
.form-success .mark{ font-size:40px; color: var(--teal); margin-bottom:14px; }

/* ============================================================
   Icons
   ============================================================ */
.icon-svg{
  width: 22px; height:22px;
  stroke: currentColor; fill:none;
  stroke-width: 1.6; stroke-linecap:round; stroke-linejoin:round;
  flex-shrink:0;
}
.icon-badge{
  width: 52px; height:52px; border-radius:50%;
  border: 2px solid var(--ink);
  background: var(--paper);
  display:flex; align-items:center; justify-content:center;
  margin-bottom: 16px; flex-shrink:0;
  color: var(--ink);
}
.icon-badge.small{ width:38px; height:38px; margin-bottom:0; }
.icon-badge.small .icon-svg{ width:19px; height:19px; }
.icon-badge.tiny{ width:28px; height:28px; margin-bottom:0; }
.icon-badge.tiny .icon-svg{ width:15px; height:15px; }

.chip{ display:inline-flex; align-items:center; gap:8px; }
.chip .icon-svg{ width:16px; height:16px; stroke-width:1.8; }

.pillar-card .icon-badge{ border-color: var(--amber); color: var(--amber); background: rgba(232,163,61,0.08); }
.pillar-card:nth-child(2) .icon-badge{ border-color: var(--teal); color: var(--teal); background: rgba(47,122,99,0.08); }
.pillar-card:nth-child(3) .icon-badge{ border-color: var(--stamp); color: var(--stamp); background: rgba(193,68,59,0.08); }

.channel-head-icon{ display:flex; align-items:center; gap:12px; }

.resource-card .icon-badge{ border-color: var(--ink); color: var(--ink); }

/* ============================================================
   Community / Forum
   ============================================================ */
.topic-filter{ display:flex; flex-wrap:wrap; gap:10px; margin-bottom:32px; }
.topic-chip{
  font-family: var(--mono); font-size:12.5px;
  padding: 9px 16px; border:1.5px solid var(--ink); border-radius:30px;
  background:transparent; cursor:pointer; color:var(--ink);
}
.topic-chip.active{ background:var(--ink); color:var(--paper); }

.thread-card{
  color: var(--ink);
  background: var(--paper); border:1px solid var(--paper-line); border-radius:16px;
  padding: 22px 24px; margin-bottom:16px;
  box-shadow: 0 1px 3px rgba(20,33,61,0.05);
}
.thread-top{ display:flex; justify-content:space-between; align-items:flex-start; gap:16px; }
.thread-tag{
  font-family:var(--mono); font-size:11px; text-transform:uppercase;
  padding:4px 10px; border-radius:20px; background:rgba(47,122,99,0.13); color:var(--teal-dark);
  display:inline-block; margin-bottom:10px;
}
.thread-card h3{ font-size:19px; margin-bottom:8px; cursor:pointer; }
.thread-snippet{ font-size:14.5px; color:var(--ink-soft-2); line-height:1.6; margin-bottom:10px; }
.thread-meta{ font-family:var(--mono); font-size:11.5px; color:var(--ink-soft-2); }
.thread-actions{ display:flex; gap:18px; margin-top:14px; padding-top:14px; border-top:1px dashed var(--paper-line); }
.thread-action{
  font-family:var(--mono); font-size:11.5px; text-transform:uppercase; letter-spacing:.03em;
  background:none; border:none; cursor:pointer; color:var(--ink-soft-2); display:flex; align-items:center; gap:6px;
  padding:0;
}
.thread-action:hover{ color:var(--ink); }
.thread-action.is-saved{ color:var(--amber-dark); }
.thread-body{ display:none; margin-top:16px; padding-top:16px; border-top:1.5px dashed var(--paper-line); }
.thread-body.open{ display:block; }
.thread-full-text{ font-size:15px; color:var(--ink-soft-2); line-height:1.65; margin-bottom:18px; }
.reply-item{
  background: var(--paper-dim); border-radius:4px; padding:14px 16px; margin-bottom:10px;
}
.reply-meta{ font-family:var(--mono); font-size:11px; color:var(--ink-soft-2); margin-bottom:6px; }
.reply-text{ font-size:14px; color:var(--ink); line-height:1.55; }
.reply-form{ margin-top:16px; }
.reply-form textarea{
  width:100%; font-family:var(--body); font-size:14px; padding:12px 14px;
  border:1.5px solid var(--paper-line); border-radius:3px; min-height:80px; margin-bottom:10px;
}

.modal-overlay{
  display:none; position:fixed; inset:0; background:rgba(28,35,51,0.7);
  z-index:100; align-items:center; justify-content:center; padding:20px;
}
.modal-overlay.open{ display:flex; }
.modal-box{
  background:var(--paper); border-radius:6px; padding:32px; max-width:440px; width:100%;
  border:1.5px solid var(--ink);
}
.modal-box h3{ font-size:22px; margin-bottom:8px; }
.modal-box p{ font-size:14px; color:var(--ink-soft-2); margin-bottom:20px; }
.modal-close{
  float:right; background:none; border:none; font-size:20px; cursor:pointer; color:var(--ink-soft-2);
}
.session-bar{
  display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:12px;
  margin-bottom:28px; padding:14px 18px; background:var(--paper-dim); border-radius:4px;
  font-family:var(--mono); font-size:12.5px;
}
.session-bar a{ text-decoration:underline; }

/* ============================================================
   Process steps (4-step "How We Work")
   ============================================================ */
.process-grid{ display:grid; grid-template-columns: repeat(4,1fr); gap:24px; }
@media (max-width:900px){ .process-grid{ grid-template-columns: repeat(2,1fr);} }
@media (max-width:560px){ .process-grid{ grid-template-columns: 1fr;} }
.process-step .step-num{
  font-family:var(--mono); font-size:32px; font-weight:600; color:var(--amber); margin-bottom:14px; display:block;
}
.process-step h3{ font-size:19px; margin-bottom:10px; color:var(--paper); }
.process-step p{ font-size:14px; color:var(--ink-soft); line-height:1.6; }

/* ============================================================
   Testimonials
   ============================================================ */
.testimonial-grid{ display:grid; grid-template-columns: repeat(3,1fr); gap:20px; }
@media (max-width:900px){ .testimonial-grid{ grid-template-columns: 1fr; } }
.testimonial-card{
  color: var(--ink);
  background:var(--paper); border:1px solid var(--paper-line); border-radius:16px; padding:26px 24px;
  box-shadow: 0 1px 3px rgba(20,33,61,0.05);
  transition: transform .25s cubic-bezier(.2,.8,.2,1), box-shadow .25s ease;
}
.testimonial-card:hover{ transform: translateY(-6px); box-shadow: 0 24px 44px -22px rgba(20,33,61,0.22); }
.testimonial-card .quote-mark{ font-family:var(--display); font-size:40px; color:var(--gold); line-height:1; margin-bottom:8px; display:block; }
.testimonial-card p{ font-size:14.5px; color:var(--ink-soft-2); line-height:1.65; margin-bottom:18px; }
.testimonial-card .who{ font-family:var(--mono); font-size:12.5px; color:var(--ink); }
.testimonial-card .who span{ display:block; color:var(--ink-soft-2); font-size:11.5px; margin-top:2px; }

/* ============================================================
   Partner logo strip
   ============================================================ */
.logo-strip{
  display:flex; flex-wrap:wrap; align-items:center; justify-content:space-between; gap:24px;
}
.logo-tile{
  font-family:var(--display); font-size:22px; color:var(--ink-soft-2);
  letter-spacing:-0.01em; opacity:.75; transition:opacity .15s ease;
}
.logo-tile:hover{ opacity:1; color:var(--ink); }

/* ============================================================
   Team members (About Us)
   ============================================================ */
.team-showcase{
  position:relative;
  background: linear-gradient(135deg, #14180F 0%, #3A2410 45%, #C1502B 100%);
  overflow:hidden;
  color:var(--paper);
}
.team-showcase .grain{
  position:absolute; inset:0; opacity:0.35; mix-blend-mode:overlay; pointer-events:none;
}
.team-showcase .wrap{ position:relative; z-index:1; }
.team-showcase-grid{
  display:grid; grid-template-columns: 0.9fr 1.6fr; gap:40px; align-items:start;
}
@media (max-width:900px){ .team-showcase-grid{ grid-template-columns:1fr; } }
.team-arrow-btn{
  width:64px; height:64px; border-radius:16px; background:var(--paper);
  display:flex; align-items:center; justify-content:center; margin-bottom:40px;
  box-shadow:0 12px 24px -8px rgba(0,0,0,0.35);
}
.team-arrow-btn svg{ width:26px; height:26px; stroke:#C1502B; stroke-width:2.4; fill:none; stroke-linecap:round; stroke-linejoin:round; }
.team-showcase h2{
  font-size: clamp(40px, 6vw, 68px);
  line-height:0.98; font-weight:900; color:var(--paper);
}
.team-photo-grid{
  display:grid; grid-template-columns: repeat(4, 1fr); gap: 28px 20px;
}
@media (max-width:760px){ .team-photo-grid{ grid-template-columns: repeat(2,1fr); } }
.team-photo-grid .row-2{ grid-column: 2 / span 2; display:grid; grid-template-columns:repeat(2,1fr); gap:20px; margin-top:38px; }
@media (max-width:760px){ .team-photo-grid .row-2{ grid-column: 1 / -1; margin-top:8px; } }
.team-member{ text-align:center; }
.team-avatar{
  width:96px; height:96px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  font-family:var(--mono); font-weight:600; font-size:24px; color:var(--paper);
  margin:0 auto 16px; border:2px solid rgba(247,242,231,0.5);
}
.team-member h4{ font-size:16px; color:var(--paper); margin-bottom:2px; }
.team-member .role{ font-size:12.5px; color:rgba(247,242,231,0.75); display:block; margin-bottom:8px; }
.team-member p{ font-size:12px; color:rgba(247,242,231,0.68); line-height:1.5; }

/* ============================================================
   Market Eco-Strategy wheel (Marketing page)
   ============================================================ */
.eco-strategy{ background:linear-gradient(180deg, #EEF3F6 0%, var(--paper) 100%); }
.eco-strategy h2{
  text-align:center; font-size:clamp(30px,4.5vw,44px); color:#1E2A5E; margin-bottom:48px;
}
.eco-grid{
  display:grid; grid-template-columns: 1fr auto 1fr; column-gap:36px; row-gap:28px;
  align-items:center; max-width:1040px; margin:0 auto;
}
.eco-wheel{ grid-column:2; grid-row:1 / span 3; align-self:center; justify-self:center; }
.eco-wheel-svg{ width:300px; height:300px; }
@media (max-width:900px){
  .eco-grid{ grid-template-columns:1fr; }
  .eco-wheel{ grid-column:1; grid-row:auto; order:-1; margin-bottom:8px; }
  .eco-block{ text-align:center !important; }
}
.eco-block h3{
  font-family:var(--mono); font-size:14px; letter-spacing:.04em; color:#1E2A5E; margin-bottom:10px;
}
.eco-block ul{ margin:0; }
.eco-block li{ font-size:14px; color:var(--ink-soft-2); line-height:1.6; }
.eco-block.align-right{ grid-column:1; text-align:right; }
.eco-block.align-left{ grid-column:3; text-align:left; }
.eco-website-block{
  max-width:420px; margin:40px auto 0; text-align:center;
}
.eco-website-block h3{ font-family:var(--mono); font-size:14px; letter-spacing:.04em; color:#1E2A5E; margin-bottom:10px; }
.eco-website-block ul{ display:inline-block; text-align:left; }
.eco-website-block li{ font-size:14px; color:var(--ink-soft-2); line-height:1.6; }

/* ============================================================
   Pre-Launch / After-Launch process cards
   ============================================================ */
.launch-phase{ text-align:center; }
.launch-phase h2{ font-size:clamp(24px,3.5vw,32px); margin-bottom:8px; }
.launch-phase .sub{ color:var(--ink-soft-2); font-size:15px; margin-bottom:36px; }
.launch-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:20px; text-align:left; align-items:stretch; }
@media (max-width:900px){ .launch-grid{ grid-template-columns:repeat(2,1fr);} }
@media (max-width:560px){
  .launch-grid{
    display:flex; flex-wrap:nowrap; overflow-x:auto; gap:16px;
    scroll-snap-type:x mandatory; -webkit-overflow-scrolling:touch; padding-bottom:14px;
  }
  .launch-grid .launch-card{ flex:0 0 80%; scroll-snap-align:start; }
}
.launch-card{ display:flex; flex-direction:column; height:100%; }
.launch-num{
  font-family:var(--mono); font-weight:700; font-size:48px; color:rgba(255,255,255,0.92);
  padding:14px 20px 8px; border-radius:8px 8px 0 0; line-height:1;
}
.launch-card-body{
  background:var(--paper); border:1.5px solid; border-top:none; border-radius:0 0 8px 8px;
  padding:20px 18px; flex:1;
}
.launch-card-body h4{ font-size:17px; margin-bottom:8px; }
.launch-card-body p{ font-size:13.5px; color:var(--ink-soft-2); line-height:1.55; }
.launch-1 .launch-num{ background: var(--ink); }
.launch-1 .launch-card-body{ border-color: var(--ink); }
.launch-2 .launch-num{ background: var(--ink); }
.launch-2 .launch-card-body{ border-color: var(--ink); }
.launch-3 .launch-num{ background: var(--ink); }
.launch-3 .launch-card-body{ border-color: var(--ink); }
.launch-4 .launch-num{ background: var(--ink); }
.launch-4 .launch-card-body{ border-color: var(--ink); }

/* ============================================================
   Integrated Market cards (Marketing page)
   ============================================================ */
.market-grid{
  display:grid; grid-template-columns:repeat(3,1fr); gap:22px; margin-bottom:44px;
}
@media (max-width:980px){ .market-grid{ grid-template-columns:repeat(2,1fr); } }
@media (max-width:640px){
  .market-grid{
    display:flex; flex-wrap:nowrap; overflow-x:auto; gap:16px;
    scroll-snap-type:x mandatory; -webkit-overflow-scrolling:touch; padding-bottom:14px;
  }
  .market-grid .market-card{ flex:0 0 82%; scroll-snap-align:start; }
}
.market-card{
  color: var(--ink);
  background:var(--paper); border:1px solid var(--paper-line); border-top-width:5px; border-top-style:solid;
  border-radius:16px; padding:24px 22px;
  box-shadow: 0 1px 3px rgba(20,33,61,0.05);
  transition: transform .25s cubic-bezier(.2,.8,.2,1), box-shadow .25s ease;
}
.market-card:hover{ transform:translateY(-4px); box-shadow:0 18px 34px -18px rgba(28,35,51,0.28); }
.market-card h3{ font-size:19px; margin-bottom:10px; color:#1E2A5E; }
.market-card p{ font-size:13.5px; color:var(--ink-soft-2); line-height:1.6; margin-bottom:14px; }
.market-card ul{ margin:0; padding-top:12px; border-top:1px dashed var(--paper-line); }
.market-card li{
  font-size:13px; color:var(--ink-soft-2); line-height:1.6; padding-left:16px; position:relative; margin-bottom:5px;
}
.market-card li::before{ content:"—"; position:absolute; left:0; color:var(--ink-soft); }

/* ============================================================
   Brand stats + photo strip (homepage, between mindset banner and why-work)
   ============================================================ */
.brand-stats{ padding:56px 0 0; background:var(--paper); }
.brand-stats-row{
  display:grid; grid-template-columns:repeat(3,1fr); gap:24px; text-align:center;
  padding-bottom:48px;
}
@media (max-width:700px){ .brand-stats-row{ grid-template-columns:1fr; gap:36px; } }
.brand-stats-row b{
  display:block; font-family:var(--mono); font-weight:700; font-size:clamp(30px,4.5vw,44px); color:var(--ink);
}
.brand-stats-row span{ font-size:15px; color:var(--ink-soft-2); }
.photo-strip-section{ background:var(--paper); overflow:hidden; }
.photo-strip{
  display:grid; grid-template-columns:repeat(4,1fr);
}
@media (max-width:760px){ .photo-strip{ grid-template-columns:repeat(2,1fr); } }
.photo-strip img{ width:100%; height:220px; object-fit:cover; display:block; }

.page-banner.cosmic{
  background-size: cover; background-position: center; position:relative;
  color: var(--paper);
}
.page-banner.cosmic .eyebrow{ color:#B9C8F0; }
.page-banner.cosmic h1{ color:#FFFFFF; text-shadow: 0 0 30px rgba(120,150,255,0.35); }
.page-banner.cosmic p{ color: rgba(247,242,231,0.8); }
.page-banner.cosmic .breadcrumb{ color: rgba(247,242,231,0.65); }
.page-banner.cosmic .breadcrumb a:hover{ color:#FFFFFF; }

/* ============================================================
   Universe theme — cosmic hero + starfield accents
   ============================================================ */
.blob-hero.cosmic{
  background: linear-gradient(180deg, rgba(10,8,20,0.55) 0%, rgba(10,8,20,0.78) 55%, rgba(8,6,16,0.94) 100%), url('images/universe-nebula.png');
  background-size: cover; background-position: center;
  color: var(--paper);
}
.blob-hero.cosmic .blob-layer{ display:none; }
.blob-hero.cosmic .eyebrow{ color:#B9C8F0 !important; }
.blob-hero.cosmic h1{
  color: #FFFFFF;
  text-shadow: 0 0 40px rgba(120,150,255,0.45), 0 0 80px rgba(120,150,255,0.2);
}
.blob-hero.cosmic .lede{ color: rgba(247,242,231,0.82); }
.blob-hero.cosmic .btn-outline{ border-color: rgba(247,242,231,0.6); color: var(--paper); }
.blob-hero.cosmic .btn-outline:hover{ background: rgba(247,242,231,0.12); }

.blob-hero.cosmic .eco-connect-card{
  background: rgba(20,18,35,0.55); backdrop-filter: blur(6px);
  border: 1px solid rgba(180,190,255,0.28);
}
.blob-hero.cosmic .eco-connect-card h3{ color:#FFFFFF; }
.blob-hero.cosmic .eco-connect-card p,
.blob-hero.cosmic .eco-connect-card li{ color: rgba(247,242,231,0.75); }
.blob-hero.cosmic .eco-connect-card li::before{ color:#E8916D; }

.blob-hero.cosmic .service-icon-strip{ border-top-color: rgba(247,242,231,0.15); }
.blob-hero.cosmic .service-icon-item span{ color: rgba(247,242,231,0.7); }
.blob-hero.cosmic .service-icon-item:hover span{ color:#FFFFFF; }
.blob-hero.cosmic .letter-badge{ box-shadow: 0 0 18px rgba(120,150,255,0.55); }

.mindset-banner.cosmic{
  background: linear-gradient(180deg, rgba(8,6,16,0.35) 0%, rgba(8,6,16,0.55) 100%), url('images/universe-eclipse.png');
  background-size: cover; background-position: center;
}
.mindset-banner.cosmic h2{
  color:#FFFFFF; text-shadow: 0 0 36px rgba(255,180,110,0.5), 0 0 70px rgba(120,150,255,0.35);
}
.mindset-banner.cosmic .glider{ display:none; }

.starfield{ position:relative; }
.starfield::before{
  content:""; position:absolute; inset:0; pointer-events:none; opacity:0.5; z-index:0;
  background-image:
    radial-gradient(1.5px 1.5px at 10% 20%, rgba(255,255,255,0.9), transparent),
    radial-gradient(1.5px 1.5px at 80% 10%, rgba(240,180,41,0.85), transparent),
    radial-gradient(1px 1px at 30% 70%, rgba(255,255,255,0.8), transparent),
    radial-gradient(1.5px 1.5px at 60% 85%, rgba(255,255,255,0.6), transparent),
    radial-gradient(1px 1px at 90% 60%, rgba(240,180,41,0.7), transparent),
    radial-gradient(1px 1px at 45% 35%, rgba(255,255,255,0.6), transparent),
    radial-gradient(1.5px 1.5px at 20% 90%, rgba(255,255,255,0.5), transparent);
  background-repeat: no-repeat;
}
.starfield > .wrap{ position:relative; z-index:1; }

/* ============================================================
   Blob Hero (redesigned homepage hero)
   ============================================================ */
.blob-hero{
  position:relative; overflow:hidden; background:var(--paper);
  padding: 100px 0 60px;
}
.blob-hero .blob-layer{ position:absolute; inset:0; z-index:0; overflow:hidden; }
.blob-hero .blob-layer svg{ position:absolute; top:0; right:0; width:70%; height:100%; opacity:0.9; }
.blob-hero .wrap{ position:relative; z-index:1; }
.blob-hero h1{
  font-size:clamp(40px,6.5vw,76px); color:var(--ink); max-width:680px; margin-bottom:30px; letter-spacing:-0.02em;
}
.blob-hero .lede{ font-size:17px; color:var(--ink-soft-2); max-width:460px; margin-bottom:32px; line-height:1.6; }

/* ============================================================
   Eco-Connect two-card row
   ============================================================ */
.eco-connect-grid{ display:grid; grid-template-columns:1fr 1fr; gap:20px; margin-top:48px; position:relative; z-index:1; }
@media (max-width:760px){ .eco-connect-grid{ grid-template-columns:1fr; } }
.eco-connect-card{
  background:var(--paper); border:1.5px solid var(--ink); border-radius:6px; padding:26px 24px;
}
.eco-connect-card h3{ font-size:19px; margin-bottom:12px; color:var(--ink); }
.eco-connect-card p{ font-size:14px; color:var(--ink-soft-2); line-height:1.6; }
.eco-connect-card ul{ margin:0; }
.eco-connect-card li{
  font-size:13.5px; color:var(--ink-soft-2); line-height:1.7; padding-left:16px; position:relative;
}
.eco-connect-card li::before{ content:"—"; position:absolute; left:0; color:var(--teal-dark); }

/* ============================================================
   Service icon strip
   ============================================================ */
.service-icon-strip{
  display:flex; justify-content:space-between; flex-wrap:wrap; gap:24px;
  padding:36px 0; border-top:1px solid var(--paper-line); margin-top:48px;
}
@media (max-width:760px){
  .service-icon-strip{
    flex-wrap:nowrap; justify-content:flex-start; overflow-x:auto;
    scroll-snap-type:x mandatory; -webkit-overflow-scrolling:touch;
    padding-bottom:14px;
  }
  .service-icon-strip::-webkit-scrollbar{ height:4px; }
  .service-icon-strip::-webkit-scrollbar-thumb{ background:var(--paper-line); border-radius:2px; }
}
.service-icon-item{ text-align:center; flex:1; min-width:100px; }
@media (max-width:760px){ .service-icon-item{ flex:0 0 auto; min-width:84px; scroll-snap-align:start; } }
.service-icon-item .letter-badge{
  width:52px; height:52px; border-radius:50%; margin:0 auto 10px;
  display:flex; align-items:center; justify-content:center;
  font-family:var(--mono); font-weight:600; font-size:18px;
  background: var(--paper); color: var(--amber);
  border: 2px solid var(--amber);
  transition: transform .15s ease, background .15s ease, color .15s ease;
}
.service-icon-item:hover .letter-badge{ transform:translateY(-3px); background: var(--amber); color: var(--paper); }
.service-icon-item span{ font-family:var(--mono); font-size:12px; text-transform:uppercase; letter-spacing:.04em; color:var(--ink-soft-2); }
.service-icon-item:hover span{ color:var(--ink); }

/* ============================================================
   Mindset banner
   ============================================================ */
.mindset-banner{
  background:linear-gradient(160deg, #E9E3CC 0%, #F2EEDD 55%, var(--paper) 100%);
  padding:80px 0; text-align:center; position:relative; overflow:hidden;
}
.mindset-banner h2{
  font-size:clamp(30px,5vw,50px); color:var(--ink); line-height:1.15; position:relative; z-index:1;
}
.mindset-banner .glider{ position:absolute; top:12%; right:8%; width:160px; opacity:0.9; }
@media (max-width:760px){ .mindset-banner .glider{ display:none; } }

/* ============================================================
   Why Work With Us
   ============================================================ */
.why-work{
  position:relative; background:linear-gradient(150deg,#14180F 0%,#1D2417 100%); color:var(--paper); overflow:hidden;
}
.why-work .grain{ position:absolute; inset:0; opacity:0.3; mix-blend-mode:overlay; pointer-events:none; }
.why-work .wrap{ position:relative; z-index:1; }
.why-work-grid{ display:grid; grid-template-columns:0.8fr 2fr; gap:40px; align-items:center; }
@media (max-width:900px){ .why-work-grid{ grid-template-columns:1fr; } }
.why-work h2{ font-size:clamp(34px,5vw,54px); line-height:1.05; color:var(--paper); }
.why-cards{ display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
@media (max-width:760px){ .why-cards{ grid-template-columns:1fr; } }
.why-card{ background:var(--paper); border-radius:6px; overflow:hidden; color:var(--ink); }
.why-card-art{
  height:150px; display:flex; align-items:center; justify-content:center; position:relative;
}
.why-card-art span{ font-family:var(--mono); font-weight:700; font-size:40px; color:rgba(247,242,231,0.9); }
.why-card-body{ padding:20px 20px 24px; }
.why-card-body h4{ font-size:16.5px; margin-bottom:10px; text-align:center; }
.why-card-body p{ font-size:13px; color:var(--ink-soft-2); line-height:1.6; text-align:center; }

/* ============================================================
   Service Modules (pennant cards)
   ============================================================ */
.service-modules{
  background: var(--paper-dim); padding:72px 0;
}
.service-modules .mod-head{ text-align:center; margin-bottom:44px; }
.service-modules .mod-head h2{ font-size:clamp(26px,4vw,36px); color:var(--ink); }
.service-modules .mod-head p{ color:var(--ink-soft-2); margin-top:10px; font-size:15px; }
.modules-grid{
  display:grid; grid-template-columns:repeat(7,1fr); gap:14px;
}
@media (max-width:1100px){ .modules-grid{ grid-template-columns:repeat(4,1fr); } }
@media (max-width:700px){
  .modules-grid{
    display:flex; flex-wrap:nowrap; overflow-x:auto; gap:14px;
    scroll-snap-type:x mandatory; -webkit-overflow-scrolling:touch; padding-bottom:14px;
  }
  .modules-grid .module-card{ flex:0 0 78%; scroll-snap-align:start; }
}
.module-card{ display:flex; flex-direction:column; }
.module-flag{
  padding:18px 14px 26px; color:var(--paper); position:relative;
  clip-path: polygon(0 0, 100% 0, 100% 82%, 50% 100%, 0 82%);
  margin-bottom:-14px;
}
.module-flag .mod-num{ font-family:var(--mono); font-weight:600; font-size:24px; display:block; margin-bottom:6px; }
.module-flag .mod-title{ font-size:13px; font-weight:700; line-height:1.25; }
.module-body{
  background:var(--paper); border-radius:0 0 6px 6px; padding:20px 12px 16px; flex:1;
}
.module-body ul{ margin:0; }
.module-body li{
  font-size:11.5px; color:var(--ink-soft-2); line-height:1.55; padding-left:12px; position:relative; margin-bottom:5px;
}
.module-body li::before{ content:"•"; position:absolute; left:0; color:var(--ink-soft); }

/* ============================================================
   Reveal panels ("More" expand/collapse) + dynamic color scheme
   ============================================================ */
.reveal-toggle-wrap{ text-align:center; margin-top:40px; }
.reveal-toggle{
  font-family:var(--mono); font-size:12.5px; text-transform:uppercase; letter-spacing:.04em;
  display:inline-flex; align-items:center; gap:8px;
  padding:13px 26px; border-radius:30px; border:1.5px solid var(--ink);
  background:var(--paper); color:var(--ink); cursor:pointer;
  transition: background .18s ease, color .18s ease, transform .15s ease;
}
.reveal-toggle:hover{ background:var(--ink); color:var(--paper); transform:translateY(-1px); }
.reveal-toggle:active{ transform: scale(0.97); }
.reveal-toggle .chevron{ transition: transform .3s ease; display:inline-block; }
.reveal-toggle.is-open .chevron{ transform: rotate(180deg); }
.reveal-toggle .label-more{ display:inline; }
.reveal-toggle .label-less{ display:none; }
.reveal-toggle.is-open .label-more{ display:none; }
.reveal-toggle.is-open .label-less{ display:inline; }

.reveal-panel{
  max-height:0; overflow:hidden; opacity:0;
  transition: max-height .5s cubic-bezier(.4,0,.2,1), opacity .4s ease;
}
.reveal-panel.open{ opacity:1; margin-top:40px; }

.dynamic-scheme .channel-card{
  transition: transform .2s ease, box-shadow .2s ease;
  border-top-width:4px; border-top-style:solid;
}
.dynamic-scheme .channel-card:hover{ transform:translateY(-3px); box-shadow:0 16px 32px -16px rgba(28,35,51,0.25); }
.dynamic-scheme .channel-grid .channel-card:nth-child(6n+1){ border-top-color:#E8916D; }
.dynamic-scheme .channel-grid .channel-card:nth-child(6n+2){ border-top-color:#D97B4F; }
.dynamic-scheme .channel-grid .channel-card:nth-child(6n+3){ border-top-color:#C1502B; }
.dynamic-scheme .channel-grid .channel-card:nth-child(6n+4){ border-top-color:#A6421F; }
.dynamic-scheme .channel-grid .channel-card:nth-child(6n+5){ border-top-color:#8B3518; }
.dynamic-scheme .channel-grid .channel-card:nth-child(6n+6){ border-top-color:#6B2812; }
.dynamic-scheme .channel-tier a{ transition: color .15s ease; }

/* Wheel wedge + process card action effects */
.eco-wheel-svg path{ transition: transform .2s ease, filter .2s ease; transform-box: fill-box; transform-origin: center; cursor:default; }
.eco-wheel-svg path:hover{ transform: scale(1.06); filter:brightness(1.08); }
.launch-card{ transition: transform .2s ease, box-shadow .2s ease; }
.launch-card:hover{ transform: translateY(-5px); box-shadow:0 18px 34px -16px rgba(28,35,51,0.3); }

/* ============================================================
   Scroll reveal
   ============================================================ */
.reveal-init{ opacity:0; transform: translateY(28px); transition: opacity .7s cubic-bezier(.2,.8,.2,1), transform .7s cubic-bezier(.2,.8,.2,1); }
.reveal-init.in-view{ opacity:1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce){
  .reveal-init{ opacity:1; transform:none; transition:none; }
}

/* ============================================================
   Section spacing — a subtle thin divider between top-level blocks,
   not a heavy gap (adjacent same-tone blocks should still flow together)
   ============================================================ */
body > section + section,
body > header + section,
body > section + footer{
  border-top: 1px solid rgba(132,150,176,0.28);
}
.no-divider{ border-top: none !important; }
.mindset-banner.cosmic, .pill-trio-section{ margin-top: 10px; }

/* ============================================================
   Case studies (horizontal: photo | info | metrics)
   ============================================================ */
.case{
  display:grid; grid-template-columns:0.85fr 1fr 1fr; gap:0;
  border:1px solid var(--paper-line); margin-bottom:28px; overflow:hidden; border-radius:4px;
}
@media (max-width:900px){ .case{ grid-template-columns:1fr; } }
.case-photo{ min-height:280px; background-size:cover; background-position:center; background-color:var(--ink-2); }
.case-info{ background:var(--ink); color:var(--paper); padding:44px 40px; }
.case-info .domain{ font-family:var(--mono); font-size:11.5px; color:var(--stamp); }
.case-info h3{ font-family:var(--display); font-size:34px; margin:12px 0 16px; color:var(--paper); }
.case-info p{ font-size:14.5px; color:rgba(242,238,221,0.65); margin-bottom:22px; line-height:1.6; }
.case-quote{ font-size:14px; font-style:italic; color:var(--paper); border-left:2px solid var(--amber); padding-left:14px; margin-bottom:12px; opacity:.85; }
.case-metrics{ background:var(--paper); color:var(--ink); padding:44px 40px; display:grid; grid-template-columns:1fr 1fr; gap:26px; }
.cm-item .val{ font-family:var(--mono); font-size:26px; color:var(--amber); font-weight:600; }
.cm-item .lbl{ font-size:12px; opacity:.65; margin-top:4px; }

/* ============================================================
   As Seen In press strip
   ============================================================ */
.press-strip{ text-align:center; }
.press-strip .eyebrow{ justify-content:center; color:var(--amber); margin-bottom:34px; }
.press-marquee{ overflow:hidden; width:100%; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.press-track{ display:flex; align-items:center; gap:56px; width:max-content; animation: press-scroll 32s linear infinite; }
.press-marquee:hover .press-track{ animation-play-state: paused; }
@keyframes press-scroll{ from{ transform:translateX(0); } to{ transform:translateX(-50%); } }
.press-item{
  display:inline-flex; align-items:center; gap:10px;
  font-family:var(--display); font-size:22px; color:var(--ink-soft-2);
  opacity:.7; filter:grayscale(1); transition:opacity .15s ease; white-space:nowrap;
}
.press-item:hover{ opacity:1; }
.press-icon{
  width:28px; height:28px; border-radius:50%; flex-shrink:0;
  border:1.5px solid var(--ink-soft-2);
  display:flex; align-items:center; justify-content:center;
  font-family:var(--mono); font-size:12px; font-weight:600; color:var(--ink-soft-2);
}
@media (prefers-reduced-motion: reduce){ .press-track{ animation:none; } }

.checklist-item.with-photo{ flex-direction:column; align-items:flex-start; padding:0; overflow:hidden; }
.checklist-item.with-photo .step-photo{ width:100%; height:110px; background-size:cover; background-position:center; }
.checklist-item.with-photo .step-body{ padding:16px 16px 18px; display:flex; gap:12px; align-items:flex-start; }

.resource-card.with-photo{ padding:0; overflow:hidden; }
.resource-card.with-photo .rc-photo{ width:100%; height:150px; background-size:cover; background-position:center; }
.resource-card.with-photo .rc-body{ padding:20px 22px; position:relative; }
.resource-card.with-photo .tick{ top:0; transform:translateY(-50%); }

.topic-select{
  font-family: var(--mono); font-size:13px; text-transform:uppercase; letter-spacing:.03em;
  padding: 12px 40px 12px 18px; border-radius:30px; border:1.5px solid var(--ink);
  background:var(--paper) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2314180F' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E") no-repeat right 14px center;
  background-size:16px; appearance:none; -webkit-appearance:none; cursor:pointer; color:var(--ink);
  min-width:200px;
}

.service-form-layout{
  display:grid; grid-template-columns: 1.3fr 0.9fr; gap:40px; align-items:flex-start;
}
@media (max-width:760px){
  .service-form-layout{ grid-template-columns: 1fr; gap:28px; }
}

/* misc */
.divider-dash{ border-top: 2px dashed var(--paper-line); margin: 0; }
.mt-56{ margin-top:56px; }
.center{ text-align:center; }

/* ============================================================
   Brand intro module ("Not Just a Logo File") — branding.html
   ============================================================ */
.brand-intro-banner{
  background: var(--ink);
  padding:56px 0; color:var(--paper);
}
.brand-intro-banner h2{ font-size:clamp(30px,4.5vw,44px); color:#FFFFFF; margin-bottom:18px; }
.brand-intro-banner p{ font-size:17px; color:rgba(247,242,231,0.88); max-width:820px; line-height:1.55; }

.pill-trio-section{ background: var(--ink); padding:56px 0; }
.pill-trio-row{ display:flex; justify-content:center; gap:28px; flex-wrap:wrap; }
@media (max-width:640px){
  .pill-trio-row{
    flex-wrap:nowrap; justify-content:flex-start; overflow-x:auto;
    scroll-snap-type:x mandatory; -webkit-overflow-scrolling:touch; padding-bottom:14px;
  }
  .pill-trio-row .pill-capsule{ flex:0 0 auto; scroll-snap-align:start; }
}
.pill-capsule{
  width:210px; height:320px; border-radius:105px;
  display:flex; flex-direction:column; align-items:center; justify-content:center; gap:10px;
  color:#FFFFFF; text-align:center; padding:0 16px;
  transition: transform .2s ease;
}
.pill-capsule:hover{ transform:translateY(-6px); }
.pill-capsule .pill-num{ font-family:var(--mono); font-weight:700; font-size:48px; text-shadow:0 4px 18px rgba(0,0,0,0.25); }
.pill-capsule .pill-label{ font-size:15px; font-weight:700; }
.pill-1{ background:linear-gradient(160deg,#E8916D 0%,#C1502B 55%,#3A150A 100%); }
.pill-2{ background:linear-gradient(160deg,#D6A85A 0%,#B4924A 55%,#332711 100%); }
.pill-3{ background:linear-gradient(160deg,#EBB08F 0%,#8B3518 55%,#2B1108 100%); }

.brand-detail-cards{ display:grid; grid-template-columns:repeat(4,1fr); }
@media (max-width:900px){ .brand-detail-cards{ grid-template-columns:repeat(2,1fr); } }
@media (max-width:560px){ .brand-detail-cards{ grid-template-columns:1fr; } }
.brand-detail-card{
  padding:36px 26px 30px; text-align:center;
}
.brand-detail-card:nth-child(odd){ background:var(--paper-dim); }
.brand-detail-card:nth-child(even){ background:#DCE6F5; }
.brand-detail-card .card-icon{ margin-bottom:20px; display:flex; justify-content:center; }
.brand-detail-card .card-icon svg{ width:34px; height:34px; }
.brand-detail-card p{ font-size:13.5px; color:var(--ink-soft-2); line-height:1.6; margin-bottom:20px; min-height:110px; }
.brand-detail-card .card-tag{
  display:inline-block; font-size:14px; font-weight:700; color:var(--amber-dark);
}
