*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: auto; }
body {
  font-family: 'Inter', sans-serif;
  background: #F5F8FB;
  color: #0a1a2a;
  -webkit-font-smoothing: antialiased;
}

:root {
  --navy:    #091826;
  --dark:    #0d2235;
  --blue:    #2872A1;
  --blue-md: #3585b8;
  --sky:     #CBDDE9;
  --sky-dk:  #b3cedd;
  --charcoal:#595959;
  --stone:   #F5F8FB;
  --white:   #FEFFFD;
  --gray1:   #e5edf3;
  --gray2:   #c8d8e4;
  --cx: max(40px, calc((100% - 1360px) / 2));
}

.shell { width: 100%; }

/* ── NAV ── */
nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 8px 12px;
  height: auto;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 100px;
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: auto;
  min-width: min(760px, calc(100vw - 40px));
  z-index: 9000;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
  gap: 8px;
}
nav.nav-scrolled {
  background: rgba(9,24,38,0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-color: rgba(255,255,255,0.08);
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
}
.logo {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px; font-weight: 800;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--white);
}
.logo-acc { color: var(--sky); }
.nav-pills {
  display: flex; gap: 2px;
  background: rgba(255,255,255,.05); padding: 4px;
  border-radius: 100px; border: 1px solid rgba(255,255,255,.08);
}
.nav-pills a {
  font-family: 'Inter', sans-serif; font-size: 13px; font-weight: 500;
  padding: 7px 20px; border-radius: 100px;
  text-decoration: none; color: rgba(255,255,255,.4); cursor: pointer;
  transition: color .2s;
}
.nav-pills a:hover { color: rgba(255,255,255,.85); }
.nav-pills a.active { background: var(--sky); color: var(--navy); font-weight: 600; }
.btn-nav {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--sky); color: var(--navy);
  border: none; border-radius: 100px;
  padding: 9px 22px; font-family: 'Montserrat', sans-serif;
  font-size: 13px; font-weight: 700; cursor: pointer; transition: background .2s;
}
.btn-nav:hover { background: var(--sky-dk); }

/* ── PAGES ── */
.page { display: none; }
.page.active { display: block; animation: fadeUp .35s ease both; }
.page > div, .page > section, .site-footer {
  border-radius: 32px;
  margin: 0;
  margin-top: -55px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.08);
}
/* Every section is exactly one viewport tall */
.page > div, .page > section {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
/* Hero is the first div — no negative margin, covers nav */
.page > div:first-child { margin-top: 0; border-radius: 0; box-shadow: none; }
/* Protocol section and CTA wrap should not clip their content the same way */
.protocol-section { overflow: visible; }
.cta-section-wrap { overflow: visible; }
.site-footer { border-radius: 32px 32px 0 0; min-height: 0; display: block; }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── BUTTONS ── */
.btn-blue {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--blue); color: var(--white); border: none;
  border-radius: 100px; padding: 13px 28px;
  font-family: 'Montserrat', sans-serif; font-size: 13px; font-weight: 700;
  cursor: pointer; text-decoration: none; transition: background .2s;
}
.btn-blue:hover { background: var(--blue-md); }
.btn-sky {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--sky); color: var(--navy); border: none;
  border-radius: 100px; padding: 13px 28px;
  font-family: 'Montserrat', sans-serif; font-size: 13px; font-weight: 700;
  cursor: pointer; text-decoration: none; transition: background .2s;
}
.btn-sky:hover { background: var(--sky-dk); }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--navy);
  border: 1.5px solid #c0d4e2; border-radius: 100px; padding: 12px 28px;
  font-family: 'Montserrat', sans-serif; font-size: 13px; font-weight: 600;
  cursor: pointer; text-decoration: none; transition: all .2s;
}
.btn-ghost:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }
.btn-ghost-w {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--white);
  border: 1.5px solid rgba(255,255,255,.2); border-radius: 100px; padding: 12px 28px;
  font-family: 'Montserrat', sans-serif; font-size: 13px; font-weight: 600;
  cursor: pointer; text-decoration: none; transition: border-color .2s;
}
.btn-ghost-w:hover { border-color: rgba(255,255,255,.5); }
.btn-hero-solid {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--white); color: var(--navy); border: none;
  border-radius: 100px; padding: 14px 28px;
  font-family: 'Montserrat', sans-serif; font-size: 13px; font-weight: 700;
  cursor: pointer; transition: opacity .2s;
}
.btn-hero-solid:hover { opacity: .88; }
.btn-hero-outline {
  display: inline-flex; align-items: center; gap: 10px;
  background: transparent; color: var(--white);
  border: 1.5px solid rgba(255,255,255,.25); border-radius: 100px; padding: 13px 28px;
  font-family: 'Montserrat', sans-serif; font-size: 13px; font-weight: 600;
  cursor: pointer; transition: border-color .2s;
}
.btn-hero-outline:hover { border-color: rgba(255,255,255,.6); }

/* ── HERO ── */
.hero {
  background: #2872A1;
  position: relative; overflow: hidden;
  min-height: max(100vh, 830px);
  display: flex !important; flex-direction: column !important;
  justify-content: space-between !important;
  padding: 120px var(--cx) 0;
}
#mol-canvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  z-index: 0; pointer-events: none;
  display: block;
}
.hero-top { position: relative; z-index: 10; transform: translateY(50px); }
.hero-tag {
  display: inline-flex; align-items: center; gap: 16px;
  font-family: 'Inter', sans-serif; font-size: 12px; font-weight: 500;
  letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,.4); margin-bottom: 12px;
}
.hero-tag::before {
  content: ''; display: block; width: 32px; height: 1px;
  background: var(--sky); flex-shrink: 0;
}
.hero-brand {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: clamp(80px, 17.5vw, 240px);
  line-height: .88; letter-spacing: -4px;
  color: var(--white);
  position: relative; z-index: 2;
  text-transform: uppercase;
}
.hero-brand .line2 {
  display: block;
  -webkit-text-stroke: 1.5px rgba(255,255,255,.18);
  color: transparent;
}
.hero-3d { display: none; }

/* scroll indicator */
.hero-scroll {
  position: absolute; right: var(--cx); top: 50%;
  transform: translateY(-50%) rotate(90deg);
  transform-origin: center center;
  font-family: 'Inter', sans-serif; font-size: 10px; font-weight: 500;
  letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,.35);
  display: flex; align-items: center; gap: 12px;
  z-index: 10;
  animation: scrollPulse 2.8s ease-in-out infinite;
}
.hero-scroll::after {
  content: ''; display: block; width: 40px; height: 1px;
  background: linear-gradient(90deg, rgba(255,255,255,.15) 0%, rgba(255,255,255,.8) 50%, rgba(255,255,255,.15) 100%);
  background-size: 200% 100%;
  animation: scrollLine 2.8s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: .35; }
  50%       { opacity: .75; }
}
@keyframes scrollLine {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* hero bottom */
.hero-bottom {
  position: relative; z-index: 10;
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 32px; padding-bottom: 230px; padding-top: 48px;
  border-top: none;
  margin-top: 40px;
}
.hero-desc {
  font-family: 'Inter', sans-serif; font-size: 34px;
  color: rgba(255,255,255,.5); line-height: 1.3;
  max-width: 700px; margin-bottom: 24px;
}
.hero-desc strong { color: rgba(255,255,255,.8); font-weight: 500; }
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-cards { display: flex; gap: 16px; align-items: flex-end; flex-shrink: 0; margin-bottom: 34px; }
.hero-card {
  border-radius: 20px; overflow: hidden;
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  display: flex; flex-direction: column;
  align-items: flex-start; justify-content: flex-start;
  padding: 20px; gap: 0; flex-shrink: 1;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
  isolation: isolate;
  position: relative;
  transition: border-color 1.4s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow   1.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.hero-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--white);
  border-radius: inherit;
  opacity: 0;
  transition: opacity 1.4s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
  z-index: 0;
}
.hero-card > * { position: relative; z-index: 1; }
.hero-card:hover::before { opacity: 1; }
.hero-card-sm { width: 260px; height: 360px; }
.hero-card-lg { width: 340px; height: 460px; }
@media (max-width: 1400px) {
  .hero-card-sm { width: 220px; height: 310px; }
  .hero-card-lg { width: 290px; height: 400px; }
}
@media (max-width: 1100px) {
  .hero-card-sm { width: 170px; height: 240px; }
  .hero-card-lg { width: 230px; height: 320px; }
}
.hero-card-title {
  font-family: 'Montserrat', sans-serif; font-size: 18px; font-weight: 700;
  color: #fff; letter-spacing: -.3px; margin-bottom: 6px;
  transition: color 1.1s cubic-bezier(0.16, 1, 0.3, 1);
}
.hero-card-markets-lbl {
  font-family: 'Inter', sans-serif; font-size: 10px; font-weight: 500;
  color: rgba(255,255,255,.4); letter-spacing: 1.5px; text-transform: uppercase;
  margin-bottom: 4px;
  transition: color 1.1s cubic-bezier(0.16, 1, 0.3, 1);
}
.hero-card-markets {
  font-family: 'Inter', sans-serif; font-size: 12px; font-weight: 400;
  color: rgba(255,255,255,.65); line-height: 1.5; margin-bottom: 16px;
  transition: color 1.1s cubic-bezier(0.16, 1, 0.3, 1);
}
.hero-card-photo {
  flex: 1; width: 100%; border-radius: 12px;
  background-size: cover; background-position: center;
  min-height: 0;
}
.hero-card-ico { display: none; }
.hero-card-lbl {
  font-family: 'Inter', sans-serif; font-size: 8px;
  color: rgba(255,255,255,.25); line-height: 1.4;
  font-style: italic; max-width: 120px;
}
.hero-counter {
  display: flex; align-items: center; gap: 12px;
  font-family: 'Inter', sans-serif; font-size: 11px;
  color: rgba(255,255,255,.3); align-self: flex-end;
}
.hero-counter-bar {
  width: 80px; height: 1px; background: rgba(255,255,255,.12);
  position: relative;
}
.hero-counter-bar::before {
  content: ''; position: absolute; left: 0; top: 0;
  width: 35%; height: 100%; background: var(--sky);
}

/* ── TICKER ── */
.ticker { background: var(--blue); overflow: hidden; padding: 13px 0; }
.ticker-track { display: inline-block; white-space: nowrap; animation: tick 28s linear infinite; }
.ticker-item {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--sky); padding: 0 28px;
}
.ticker-item::after { content: '·'; margin-left: 28px; opacity: .4; color: rgba(255,255,255,.4); }
@keyframes tick { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── WHY US ── */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.why-left { padding: 130px 64px 130px 0; border-right: 1px solid var(--gray1); }
.why-right { padding: 130px 0 130px 64px; }
.big-stat {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(80px, 10vw, 140px);
  font-weight: 900; line-height: .88; letter-spacing: -4px;
  color: var(--navy);
}
.big-stat .unit { color: var(--blue); }
.stat-row {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1px; background: var(--gray1);
  border: 1px solid var(--gray1); border-radius: 16px;
  overflow: hidden; margin-top: 32px;
}
.stat-cell { background: var(--white); padding: 24px; }
.stat-cell-n {
  font-family: 'Montserrat', sans-serif;
  font-size: 36px; font-weight: 900;
  letter-spacing: -1.5px; color: var(--navy);
}
.stat-cell-l { font-family: 'Inter', sans-serif; font-size: 12px; color: var(--charcoal); margin-top: 4px; }

/* ── TYPOGRAPHY ── */
.t-hero {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(64px, 11vw, 152px);
  font-weight: 900; line-height: .88; letter-spacing: -4px;
}
.t-big {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(40px, 6vw, 88px);
  font-weight: 900; line-height: .92; letter-spacing: -2.5px;
}
.t-sec {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(28px, 3.5vw, 56px);
  font-weight: 800; line-height: .95; letter-spacing: -1.5px;
}
.t-card { font-family: 'Montserrat', sans-serif; font-size: 20px; font-weight: 700; letter-spacing: -.3px; }
.t-body { font-family: 'Inter', sans-serif; font-size: 14px; font-weight: 400; line-height: 1.8; color: var(--charcoal); }
.t-body-w { color: rgba(255,255,255,.5); }
.t-label { font-family: 'Montserrat', sans-serif; font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; }
.dot-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Montserrat', sans-serif; font-size: 11px; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase; color: var(--charcoal);
}
.dot-label::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--blue); flex-shrink: 0; }
.dot-label.on-dark { color: rgba(255,255,255,.3); }
.dot-label.on-dark::before { background: var(--sky); }
.text-acc { color: var(--sky); }

/* ── STAT ── */
.stat-n {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(44px, 6vw, 72px);
  font-weight: 900; line-height: 1; letter-spacing: -2px;
}
.stat-l { font-family: 'Inter', sans-serif; font-size: 13px; font-weight: 500; color: rgba(255,255,255,.4); margin-top: 6px; }
.stat-l.dk { color: var(--charcoal); }

/* ── TAGS ── */
.tag {
  display: inline-block;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1);
  border-radius: 100px; padding: 4px 12px;
  font-family: 'Inter', sans-serif; font-size: 11px; font-weight: 500;
  color: rgba(255,255,255,.45);
}
.tag-sky { background: rgba(203,221,233,.12); border: 1px solid rgba(203,221,233,.25); color: var(--sky); }
.tag-lt {
  background: #e8f2f8; border: 1px solid #c0d4e4;
  border-radius: 100px; padding: 4px 12px;
  font-family: 'Inter', sans-serif; font-size: 11px; font-weight: 500;
  color: var(--blue); display: inline-block;
}

/* ── IMAGE PLACEHOLDERS ── */
.img-ph {
  background: rgba(255,255,255,.04); border: 1px dashed rgba(255,255,255,.1);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; padding: 24px; gap: 8px;
}
.img-ph.lt { background: #e4eef5; border-color: #c0d4e2; }
.img-ph-ico { font-size: 28px; opacity: .15; }
.img-ph-lbl { font-family: 'Inter', sans-serif; font-size: 10px; color: rgba(255,255,255,.3); line-height: 1.5; max-width: 240px; font-style: italic; }
.img-ph.lt .img-ph-lbl { color: #7aa0b8; }
.img-ph-sz { font-family: 'Inter', sans-serif; font-size: 9px; color: rgba(255,255,255,.2); letter-spacing: 1px; text-transform: uppercase; }
.img-ph.lt .img-ph-sz { color: #98b8cc; }

/* ── ACCORDION ── */
.acc-item { border-bottom: 1px solid rgba(255,255,255,.07); }
.acc-item.lt { border-color: #d8e8f0; }
.acc-head { display: flex; align-items: center; padding: 26px var(--cx); cursor: pointer; gap: 32px; transition: background .2s; }
.acc-n {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(28px, 3.5vw, 52px);
  font-weight: 900; color: rgba(255,255,255,.1); min-width: 76px;
  letter-spacing: -1px; transition: color .2s;
}
.acc-n.on { color: var(--sky); }
.acc-item.lt .acc-n { color: #d0e0ea; }
.acc-item.lt .acc-n.on { color: var(--blue); }
.acc-info { flex: 1; }
.acc-tog {
  width: 34px; height: 34px; border: 1.5px solid rgba(255,255,255,.12);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: rgba(255,255,255,.3); flex-shrink: 0; transition: all .2s;
}
.acc-item.lt .acc-tog { border-color: #c0d4e2; color: #90b4c8; }
.acc-tog.on { background: transparent; border-color: var(--sky); color: var(--sky); }
.acc-item.lt .acc-tog.on { background: transparent; border-color: var(--blue); color: var(--blue); }
.acc-body {
  max-height: 0; opacity: 0; overflow: hidden;
  padding: 0 var(--cx) 0 calc(var(--cx) + 108px);
  display: flex; gap: 36px; align-items: flex-start;
  transition: max-height 0.35s ease-in-out, opacity 0.3s ease-in-out, padding 0.35s ease-in-out;
}
.acc-body.open { max-height: 600px; opacity: 1; padding-bottom: 36px; }

/* ── SECTION BG ── */
.s-navy  { background: var(--navy); color: var(--white); }
.s-dark  { background: var(--dark); color: var(--white); }
.s-blue  { background: var(--blue); color: var(--white); }
.s-sky   { background: var(--sky); color: var(--navy); }
.s-white { background: var(--white); color: var(--navy); }
.s-stone { background: var(--stone); color: var(--navy); }

/* ── PADDING ── */
.pad  { padding: 80px var(--cx); }
.pads { padding: 80px var(--cx); }
.px   { padding-left: var(--cx); padding-right: var(--cx); }
.pt   { padding-top: 114px; }
.pb   { padding-bottom: 130px; }

/* ── FLEX / GRID ── */
.flex    { display: flex; }
.col     { flex-direction: column; }
.wrap    { flex-wrap: wrap; }
.center  { align-items: center; }
.end     { align-items: flex-end; }
.between { justify-content: space-between; }
.g8{gap:8px} .g12{gap:12px} .g16{gap:16px}
.g24{gap:24px} .g32{gap:32px} .g40{gap:40px} .g48{gap:48px} .g64{gap:64px}
.grid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.grid3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 20px; }
.grid4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.grid5 { display: grid; grid-template-columns: repeat(5,1fr); gap: 16px; }

.mb8{margin-bottom:8px} .mb12{margin-bottom:12px} .mb16{margin-bottom:16px}
.mb20{margin-bottom:20px} .mb24{margin-bottom:24px} .mb32{margin-bottom:32px} .mb40{margin-bottom:40px}
.mb48{margin-bottom:48px} .mb64{margin-bottom:64px}
.mt16{margin-top:16px} .mt24{margin-top:24px}
.mt8{margin-top:8px} .mt16{margin-top:16px} .mt24{margin-top:24px}
.mt32{margin-top:32px} .mt40{margin-top:40px} .mt48{margin-top:48px} .mt64{margin-top:64px}

hr    { border: none; border-top: 1px solid rgba(255,255,255,.07); }
hr.lt { border-color: #d8e8f0; }

.prod-label {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 0; border-top: 1px solid #d0e2ed; margin-top: 12px;
}
.team-card {
  background: rgba(255,255,255,.04);
  border-radius: 20px; padding: 24px;
  display: flex; flex-direction: column; gap: 20px;
}
.ms { border-top: 2px solid #d8e8f0; padding-top: 24px; }
.ms.on { border-color: var(--blue); }

/* ── FORM ── */
.f-field { display: flex; flex-direction: column; gap: 7px; }
.f-field label {
  font-family: 'Montserrat', sans-serif; font-size: 11px; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase; color: #90b4c8;
}
.f-field input, .f-field select, .f-field textarea {
  border: 1.5px solid #ccdde8; border-radius: 10px; padding: 12px 16px;
  font-family: 'Inter', sans-serif; font-size: 14px;
  background: #f8fbfd; color: var(--navy); outline: none; transition: border-color .2s;
}
.f-field input:focus, .f-field select:focus, .f-field textarea:focus {
  border-color: var(--blue); background: var(--white);
}
.f-field textarea { resize: vertical; }
.fgrid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ── FOOTER ── */
.fl {
  font-family: 'Inter', sans-serif; font-size: 13px; font-weight: 500;
  color: rgba(255,255,255,.3); text-decoration: none;
  display: flex; justify-content: space-between; align-items: center;
  padding-bottom: 13px;
  cursor: pointer; transition: color .2s;
}
.fl:hover { color: var(--sky); }

/* ── TOAST ── */
.toast {
  position: fixed; bottom: 28px; right: 28px;
  background: var(--navy); color: var(--white);
  border: 1px solid var(--sky); border-radius: 12px;
  padding: 14px 22px; font-family: 'Inter', sans-serif;
  font-size: 14px; font-weight: 500; z-index: 9999;
  transform: translateY(80px); opacity: 0;
  transition: all .3s; pointer-events: none;
}
.toast.show { transform: translateY(0); opacity: 1; }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) { .grid5 { grid-template-columns: repeat(3,1fr); } }
@media (max-width: 900px) {
  .grid2,.grid3,.grid4 { grid-template-columns: 1fr; }
  .grid5 { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .why-left { padding: 48px 0; border-right: none; border-bottom: 1px solid var(--gray1); }
  .why-right { padding: 48px 0; }
  .acc-body.open { flex-direction: column; }
  .acc-body { padding-left: 40px; }
  .hero-cards { display: none; }
  .hero-scroll { display: none; }
}
@media (max-width: 640px) {
  nav { padding: 0 20px; }
  .nav-pills { display: none; }
  .pad { padding: 98px 20px; }
  .pads { padding: 86px 20px; }
  .px { padding-left: 20px; padding-right: 20px; }
  .acc-head { padding: 20px; gap: 20px; }
  .acc-body { padding: 0 20px 28px; }
  .fgrid { grid-template-columns: 1fr; }
  .grid5 { grid-template-columns: 1fr; }
  .hero { padding: 32px 20px 0; }
}

/* ══════════════════════════════════════════
   ANIMATION SYSTEM
   — two primitives only:
     .rm  → mask reveal  (clip-path top→bot)
     .ru  → rise up      (translateY + fade)
   — hero elements: CSS keyframes on load
   — all other elements: IntersectionObserver
══════════════════════════════════════════ */

:root {
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --dur:  0.7s;
}

/* scroll reveal & hero entrance handled by GSAP (see index.html) */

/* ── Hover enhancements ── */
.btn-blue:hover,
.btn-sky:hover,
.btn-nav:hover,
.btn-hero-solid:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 24px rgba(0,0,0,.18);
}
.btn-ghost:hover,
.btn-ghost-w:hover {
  transform: scale(1.03);
}
.btn-blue,
.btn-sky,
.btn-nav,
.btn-hero-solid,
.btn-ghost,
.btn-ghost-w,
.btn-hero-outline {
  transition: background .2s, border-color .2s, color .2s,
              transform .3s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              box-shadow .3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.btn-hero-outline:hover { transform: scale(1.03); }

.hero-card-cta-hint {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: var(--white);
  border-radius: 0 0 20px 20px;
  padding: 14px 20px;
  font-family: 'Inter', sans-serif; font-size: 11px; font-weight: 500;
  color: var(--navy); letter-spacing: .4px;
  text-align: left;
  transform: translateY(100%);
  transition: transform 0.45s cubic-bezier(0.16,1,0.3,1);
  z-index: 2;
}
.hero-card:hover .hero-card-cta-hint {
  transform: translateY(0);
}
.hero-card:hover {
  border-color: rgba(40,114,161,.18);
  box-shadow: 0 20px 48px rgba(9,24,38,.22);
}
.hero-card:hover .hero-card-title {
  color: var(--navy);
}
.hero-card:hover .hero-card-markets-lbl {
  color: var(--blue);
}
.hero-card:hover .hero-card-markets {
  color: var(--blue-md);
}

/* ── HERO CAROUSEL ── */
.hero-carousel {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 18px;
  flex-shrink: 0;
}
.hero-carousel-track {
  position: relative;
  width: 340px;
  height: 460px;
}
.hero-carousel-track .hero-card {
  position: absolute;
  top: 0; left: 0;
  width: 100% !important; height: 100% !important;
  margin: 0;
  transition: none; /* GSAP handles animation */
  cursor: pointer;
  flex-shrink: 0;
}
.hero-carousel-controls {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  justify-content: flex-end;
}
.hero-carousel-btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.7);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  flex-shrink: 0;
}
.hero-carousel-btn:hover {
  background: rgba(255,255,255,.14);
  border-color: rgba(255,255,255,.35);
  color: #fff;
}
.hero-carousel-indicator {
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-carousel-cur,
.hero-carousel-total {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px; font-weight: 600;
  color: rgba(255,255,255,.5);
  letter-spacing: 1px;
  min-width: 20px;
}
.hero-carousel-cur { color: rgba(255,255,255,.9); }
.hero-carousel-bar {
  width: 80px; height: 2px;
  background: rgba(255,255,255,.15);
  border-radius: 2px;
  overflow: hidden;
}
.hero-carousel-progress {
  height: 100%;
  background: var(--sky);
  border-radius: 2px;
  transition: width 0.4s ease;
  width: 20%; /* default 1/5 */
}
@media (max-width: 1400px) {
  .hero-carousel-track { width: 290px; height: 400px; }
}
@media (max-width: 1100px) {
  .hero-carousel-track { width: 230px; height: 320px; }
}
@media (max-width: 768px) {
  .hero-carousel { display: none; }
}

.stat-cell {
  transition: background 0.2s;
}
.stat-cell:hover { background: #f0f7fc; }

.team-card {
  transition: transform 0.35s var(--ease),
              box-shadow 0.35s var(--ease),
              border-color 0.2s;
}
.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0,0,0,.14);
  border-color: rgba(255,255,255,.15);
}

.fl {
  transition: color .2s, transform .25s var(--ease);
}
.fl:hover { transform: translateX(5px); }

.acc-head {
  transition: background 0.2s;
}
.s-navy .acc-head:hover,
.s-dark .acc-head:hover { background: rgba(255,255,255,.025); }
.s-white .acc-head:hover,
.s-stone .acc-head:hover { background: rgba(0,0,0,.02); }

/* ══════════════════════════════════════════
   NOISE OVERLAY
══════════════════════════════════════════ */
body::before {
  content: '';
  position: fixed; inset: 0; z-index: 9998; pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

/* ══════════════════════════════════════════
   FEATURES SECTION
══════════════════════════════════════════ */
.features-section {
  background: var(--navy);
  padding: 100px var(--cx);
  /* flex column already from global rule — keep */
}
.features-header {
  margin-bottom: 64px;
}
.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}
@media (max-width: 1100px) {
  .features-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 700px) {
  .features-grid { grid-template-columns: 1fr; }
}
.feat-card {
  border-radius: 32px;
  background: rgba(255,255,255,0.03);
  padding: 32px;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
  overflow: hidden;
}
.feat-card-heading {
  font-family: 'Montserrat', sans-serif;
  font-size: 22px; font-weight: 700;
  color: var(--white);
  letter-spacing: -0.5px;
}
.feat-card-desc {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 8px;
}

/* ── Shuffler ── */
.shuffler-area {
  flex: 1;
  position: relative;
  margin-top: 16px;
  min-height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mini-card {
  position: absolute;
  left: 0; right: 0;
  background: var(--white);
  border-radius: 16px;
  padding: 16px 20px;
  will-change: transform, opacity;
}
.mini-card-product {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px; font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}
.mini-card-volume {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: var(--blue);
}

/* ── Typewriter ── */
.live-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Montserrat', sans-serif;
  font-size: 10px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-top: 8px;
  margin-bottom: 12px;
}
.live-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--blue);
  animation: pulse-live 1.6s ease-in-out infinite;
}
@keyframes pulse-live {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.8); }
}
.typewriter-area {
  flex: 1;
  font-family: 'Courier New', monospace;
  font-size: 12px;
  color: rgba(203,221,233,0.7);
  line-height: 1.7;
  background: rgba(0,0,0,0.25);
  border-radius: 12px;
  padding: 16px;
  min-height: 180px;
  position: relative;
  overflow: hidden;
}
.tw-cursor {
  display: inline-block;
  width: 1px; height: 14px;
  background: var(--sky);
  vertical-align: middle;
  margin-left: 1px;
  animation: blink 1s step-end infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}

/* ── Scheduler ── */
.scheduler-area {
  flex: 1;
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.sched-headers {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 3px;
  margin-bottom: 4px;
}
.sched-header {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px; font-weight: 700;
  color: rgba(255,255,255,0.25);
  text-align: center;
  padding: 4px 0;
}
.sched-row {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 3px;
}
.sched-cell {
  height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  color: rgba(255,255,255,0.2);
  cursor: default;
  transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease, transform 0.15s ease;
}
.sched-cell.highlighted {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
}
.sched-cell.clicked {
  transform: scale(0.92);
}
.sched-confirm {
  margin-top: 8px;
  background: rgba(40,114,161,0.15);
  border: 1px solid rgba(40,114,161,0.3);
  border-radius: 10px;
  padding: 10px;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px; font-weight: 700;
  color: rgba(255,255,255,0.3);
  letter-spacing: 1px;
  transition: background 0.3s, border-color 0.3s, color 0.3s, transform 0.15s;
}
.sched-confirm.active {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
}
.sched-confirm.clicked {
  transform: scale(0.96);
}

/* ══════════════════════════════════════════
   PHILOSOPHY SECTION
══════════════════════════════════════════ */
.philosophy-section {
  background: #060f19;
  padding: 100px var(--cx) 120px;
}
.philo-header {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 72px;
}
.philo-header-left { display: flex; flex-direction: column; justify-content: flex-end; }

/* Process cards */
.proc-cards {
  display: flex;
  gap: 16px;
  height: 460px;
}
.proc-card {
  flex: 1;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: flex 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}
.proc-cards:hover .proc-card { flex: 0.6; }
.proc-cards:hover .proc-card:hover { flex: 2.4; }
.proc-card-photo {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.proc-card:hover .proc-card-photo { opacity: 1; }
.proc-card-glass {
  position: absolute; inset: 0;
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 20px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: background 0.5s ease, border-color 0.5s ease;
}
.proc-card:hover .proc-card-glass {
  background: rgba(5,15,28,0.55);
  border-color: transparent;
}
.proc-card-num {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: clamp(64px, 8vw, 100px);
  color: rgba(255,255,255,0.07);
  line-height: 1;
  letter-spacing: -4px;
  position: absolute;
  bottom: 24px; right: 24px;
  transition: opacity 0.4s ease;
}
.proc-card:hover .proc-card-num { opacity: 0; }
.proc-card-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: clamp(16px, 1.4vw, 20px);
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 12px;
  min-width: 180px;
}
.proc-card-desc {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
  max-width: 320px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.5s ease, opacity 0.4s ease 0.1s;
}
.proc-card:hover .proc-card-desc {
  max-height: 120px;
  opacity: 1;
}
.philosophy-line1 {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  color: rgba(255,255,255,0.35);
  margin-bottom: 24px;
}
.philosophy-line2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: clamp(48px, 7vw, 100px);
  color: var(--white);
  line-height: 0.9;
  letter-spacing: -3px;
}
.philosophy-line2 .philo-word,
.about-manifesto-big .philo-word {
  display: inline-block;
  will-change: transform, opacity, color;
  cursor: default;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              color     0.35s cubic-bezier(0.16, 1, 0.3, 1),
              text-shadow 0.35s ease;
}
.philosophy-line2 .philo-word:hover,
.about-manifesto-big .philo-word:hover {
  transform: scale(1.18) translateY(-4px);
  color: var(--sky);
  text-shadow: 0 0 40px rgba(120, 190, 230, 0.35);
}
.philosophy-line2 .philo-word:hover span,
.about-manifesto-big .philo-word:hover span {
  color: var(--sky) !important;
}

/* ══════════════════════════════════════════
   PROTOCOL SECTION — Sticky Stacking
══════════════════════════════════════════ */
.protocol-section {
  position: relative;
  display: block !important;
  min-height: 0 !important;
  background: var(--navy);
}
.protocol-card {
  min-height: 100vh;
  padding: 80px var(--cx);
  position: sticky;
  top: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  transform-origin: center top;
}
.protocol-card:nth-child(1) { background: var(--navy); border-radius: 0;            z-index: 1; }
.protocol-card:nth-child(2) { background: var(--dark); border-radius: 32px 32px 0 0; z-index: 2; }
.protocol-card:nth-child(3) { background: #0a1f35;     border-radius: 32px 32px 0 0; z-index: 3; }
.protocol-content {
  position: relative; z-index: 2;
  max-width: 560px;
}
.protocol-step-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 120px; font-weight: 900;
  color: rgba(255,255,255,0.06);
  position: absolute;
  bottom: 40px; right: var(--cx);
  line-height: 1;
  user-select: none;
  z-index: 1;
}
.protocol-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: clamp(48px, 6vw, 80px);
  color: var(--white);
  letter-spacing: -2.5px;
  line-height: 1;
  margin-bottom: 24px;
}
.protocol-desc {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: rgba(255,255,255,0.5);
  max-width: 480px;
  line-height: 1.7;
}
.protocol-viz {
  position: absolute;
  right: var(--cx);
  top: 50%;
  transform: translateY(-50%);
  width: clamp(280px, 35vw, 480px);
  height: clamp(280px, 35vw, 480px);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* Concentric circles animation */
.circles-svg circle {
  fill: none;
  stroke: rgba(203,221,233,0.12);
  stroke-width: 1;
}
.circles-svg { animation: spin-slow 18s linear infinite; }
.circles-svg-mid { animation: spin-slow 26s linear infinite reverse; }
@keyframes spin-slow { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

/* EKG path */
.ekg-svg {
  width: 100%; height: 100%;
  overflow: visible;
}
.ekg-path {
  fill: none;
  stroke: var(--sky);
  stroke-width: 2;
  stroke-dasharray: 600;
  stroke-dashoffset: 600;
  animation: ekg-draw 2.4s ease-in-out infinite;
}
@keyframes ekg-draw {
  0%   { stroke-dashoffset: 600; opacity: 1; }
  70%  { stroke-dashoffset: 0;   opacity: 1; }
  90%  { stroke-dashoffset: 0;   opacity: 0.3; }
  100% { stroke-dashoffset: 600; opacity: 1; }
}

/* ══════════════════════════════════════════
   PRODUCTS SECTION (home)
══════════════════════════════════════════ */
.home-products-section {
  background: var(--white);
  padding: 100px var(--cx);
  justify-content: center;
}

/* ══════════════════════════════════════════
   CTA SECTION
══════════════════════════════════════════ */
.cta-section-wrap {
  padding: 0;
  background: var(--blue);
  min-height: 100vh !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  align-items: center;
  overflow: visible !important;
  justify-content: center;
}
.cta-section {
  background: transparent;
  border-radius: 0;
  padding: 80px var(--cx);
  width: 100%;
  text-align: left;
}
.cta-section-v2 {
  width: 100%;
  padding: 80px var(--cx);
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr auto;
  grid-template-areas: "left card" "btns card";
  gap: 32px 48px;
}
.cta-v2-left { display: flex; flex-direction: column; justify-content: flex-end; grid-area: left; }
.cta-v2-left .cta-heading { flex-shrink: 0; }
.cta-v2-btns { grid-area: btns; display: flex; gap: 12px; align-items: center; padding-top: 0; }
.cta-v2-card { grid-area: card; }
.cta-v2-card {
  background: rgba(255,255,255,0.04);
  border-radius: 24px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  height: 100%;
}
.cta-v2-photo {
  flex: 1;
  border-radius: 16px;
  background-size: cover;
  background-position: center;
  min-height: 260px;
}
.cta-v2-card-info { padding: 0 4px 4px; }
.cta-v2-card-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--white);
}
.cta-v2-card-sub {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  margin-top: 4px;
}
.cta-heading {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: clamp(52px, 7vw, 96px);
  color: var(--white);
  letter-spacing: -3px;
  line-height: 0.95;
  margin-bottom: 0;
}
.cta-sub {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  margin-top: 32px;
  margin-bottom: 0;
  max-width: 480px;
}
.cta-btns {
  display: flex; gap: 12px; flex-wrap: wrap;
  margin-bottom: 40px;
}
.cta-status {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Courier New', monospace;
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.5px;
}
.pulse-green {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #22c55e;
  animation: pulse-green 2s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes pulse-green {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(34,197,94,0.4); }
  50%       { opacity: 0.7; box-shadow: 0 0 0 5px rgba(34,197,94,0); }
}
@media (max-width: 768px) {
  .cta-section { padding: 48px 32px; }
  .protocol-viz { display: none; }
}

/* ══════════════════════════════════════════
   FOOTER STATUS ROW
══════════════════════════════════════════ */
.footer-status {
  display: flex; align-items: center; gap: 10px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.04);
}
.footer-status-text {
  font-family: 'Courier New', monospace;
  font-size: 10px;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.2);
  text-transform: uppercase;
}

/* ══════════════════════════════════════════
   MOBILE NAV FIX
══════════════════════════════════════════ */
@media (max-width: 640px) {
  nav {
    min-width: calc(100vw - 24px);
    top: 12px;
    gap: 4px;
  }
  .features-section,
  .philosophy-section,
  .home-products-section {
    padding-left: 20px;
    padding-right: 20px;
  }
  .cta-section-wrap { padding-left: 12px; padding-right: 12px; }
  .protocol-card { padding: 60px 20px; }
}

/* ══════════════════════════════════════════
   PAGE HERO — sub-pages
══════════════════════════════════════════ */
.page-hero {
  background: var(--navy);
  position: relative; overflow: hidden;
  min-height: 100vh !important;
  display: flex !important; flex-direction: column !important;
  justify-content: center !important;
  padding: 120px var(--cx) 96px;
}
.page-hero-canvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  z-index: 0; pointer-events: none; display: block;
}
.page-hero-content { position: relative; z-index: 10; max-width: 900px; }
.page-hero-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: clamp(64px, 11vw, 148px);
  line-height: .88; letter-spacing: -4px;
  color: var(--white);
  margin-top: 16px;
}
.page-hero-sub {
  font-family: 'Inter', sans-serif; font-size: 16px;
  color: rgba(255,255,255,.4); line-height: 1.7;
  max-width: 520px; margin-top: 24px;
}
.page-hero-btns { display: flex; gap: 12px; margin-top: 32px; flex-wrap: wrap; }
.page-hero-stats {
  display: flex; gap: 16px; z-index: 10; flex-wrap: wrap;
  margin-top: 48px;
}
.page-stat-card {
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-radius: 20px;
  padding: 22px 28px; min-width: 140px;
}
.page-stat-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 36px; font-weight: 900; letter-spacing: -2px;
  color: var(--white); line-height: 1;
}
.page-stat-lbl {
  font-family: 'Inter', sans-serif; font-size: 10px;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: rgba(255,255,255,.4); margin-top: 8px;
}
@media (max-width: 1100px) {
  .page-hero { padding-bottom: 80px; }
}
@media (max-width: 640px) {
  .page-hero { padding: 100px 20px 64px; min-height: 70vh; }
  .page-hero-stats { gap: 10px; }
  .page-stat-card { min-width: 120px; padding: 18px 20px; }
  .page-stat-num { font-size: 28px; }
}

/* ══════════════════════════════════════════
   PRODUCT CARDS SECTION
══════════════════════════════════════════ */
.prod-cards-section {
  background: var(--blue);
  padding: 157px var(--cx);
}
.prod-cards-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  align-items: stretch;
}
.prod-cards-grid .prod-card:nth-child(1),
.prod-cards-grid .prod-card:nth-child(2),
.prod-cards-grid .prod-card:nth-child(3) { grid-column: span 2; }
.prod-cards-grid .prod-card:nth-child(4),
.prod-cards-grid .prod-card:nth-child(5) { grid-column: span 3; }

/* Each prod-card inherits the exact hero-card look */
.prod-card {
  border-radius: 20px; overflow: hidden;
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  display: flex; flex-direction: column;
  align-items: flex-start; justify-content: flex-start;
  padding: 20px; gap: 0;
  transform: translateZ(0);
  isolation: isolate;
  position: relative;
  cursor: pointer;
  min-height: 420px;
  transition: box-shadow 0.4s ease;
}
.prod-card::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--white);
  border-radius: inherit;
  opacity: 0;
  transition: opacity 1.1s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
  z-index: 0;
}
.prod-card > * { position: relative; z-index: 1; }
.prod-card:hover::before { opacity: 1; }
.prod-card:hover {
  box-shadow: 0 20px 48px rgba(9,24,38,.3);
}
.prod-card:hover .hero-card-title   { color: var(--navy); }
.prod-card:hover .hero-card-markets-lbl { color: var(--blue); }
.prod-card:hover .hero-card-markets { color: var(--blue-md); }
.prod-card .hero-card-photo {
  flex: 1; width: 100%; border-radius: 12px;
  background-size: cover; background-position: center;
  min-height: 0; margin-top: 16px;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.prod-card:hover .hero-card-photo { transform: scale(1.03); }

/* Hover reveal panel — white panel slides up from bottom */
.prod-card-reveal {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: var(--white);
  border-radius: 0 0 20px 20px;
  padding: 18px 20px 20px;
  transform: translateY(100%);
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 2;
}
.prod-card:hover .prod-card-reveal {
  transform: translateY(0);
}
.prod-card-cas {
  font-family: 'Inter', sans-serif; font-size: 10px; font-weight: 500;
  color: rgba(9,24,38,.4); letter-spacing: 1.2px; text-transform: uppercase;
  margin-bottom: 4px;
}
.prod-card-vol {
  font-family: 'Montserrat', sans-serif; font-size: 13px; font-weight: 700;
  color: var(--navy); margin-bottom: 10px;
}
.prod-card-tags-row { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 10px; }
.prod-tag {
  font-family: 'Inter', sans-serif; font-size: 10px; font-weight: 500;
  background: rgba(9,24,38,.07); color: rgba(9,24,38,.6);
  border-radius: 100px; padding: 3px 10px;
}
.prod-card-hint {
  font-family: 'Inter', sans-serif; font-size: 10px;
  color: var(--navy); letter-spacing: .5px;
}

/* Product Modal */
.prod-modal-overlay {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(9,24,38,.75);
  backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  opacity: 0; pointer-events: none;
  transition: opacity 0.35s ease;
}
.prod-modal-overlay.open {
  opacity: 1; pointer-events: all;
}
.prod-modal {
  /* Two stacked panels: photo on top, content below */
  max-width: 680px; width: 100%;
  position: relative;
  max-height: 90vh;
  display: flex; flex-direction: column;
  gap: 12px;
  transform: translateY(24px) scale(0.97);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.prod-modal-overlay.open .prod-modal {
  transform: translateY(0) scale(1);
}
/* Top panel — photo */
.prod-modal-photo {
  width: 100%; height: 300px; flex-shrink: 0;
  background-size: cover; background-position: center;
  border-radius: 20px;
  overflow: hidden;
}
/* Bottom panel — content (liquid glass) */
.prod-modal-body {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(40px) saturate(200%) brightness(1.1);
  -webkit-backdrop-filter: blur(40px) saturate(200%) brightness(1.1);
  border-top: 1px solid rgba(255,255,255,0.35);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.28),
    inset 0 -1px 0 rgba(0,0,0,0.08),
    inset 1px 0 0 rgba(255,255,255,0.1),
    inset -1px 0 0 rgba(255,255,255,0.1);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.14);
  border-radius: 20px;
  padding: 32px 32px 28px;
  overflow-y: auto;
}
.prod-modal-close {
  position: absolute; top: -52px; right: 0;
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.25);
  color: rgba(255,255,255,.85); cursor: pointer; font-size: 14px;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
  z-index: 10001;
}
.prod-modal-close:hover { background: rgba(255,255,255,.22); color: #fff; }
.prod-modal-num {
  font-family: 'Montserrat', sans-serif; font-size: 10px; font-weight: 700;
  color: rgba(255,255,255,.35); letter-spacing: 2.5px; text-transform: uppercase;
  margin-bottom: 8px;
}
.prod-modal-name {
  font-family: 'Montserrat', sans-serif; font-size: 26px; font-weight: 900;
  color: #fff; letter-spacing: -.5px; line-height: 1.1;
  margin-bottom: 12px;
}
.prod-modal-desc {
  font-family: 'Inter', sans-serif; font-size: 13px; line-height: 1.65;
  color: rgba(255,255,255,.55); margin-bottom: 24px;
  padding-bottom: 24px;
}
.prod-modal-specs {
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 10px;
  margin-bottom: 28px;
}
.prod-modal-spec {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-top: 1px solid rgba(255,255,255,0.22);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.15);
  border-radius: 12px; padding: 14px 16px;
}
.prod-modal-spec-l {
  font-family: 'Inter', sans-serif; font-size: 9px; font-weight: 600;
  color: rgba(255,255,255,.4); letter-spacing: 1.5px; text-transform: uppercase;
  margin-bottom: 6px;
}
.prod-modal-spec-v {
  font-family: 'Montserrat', sans-serif; font-size: 13px; font-weight: 700;
  color: #fff;
  text-shadow: 0 1px 4px rgba(0,0,0,.3);
}
/* Specs accordion toggle — hidden on desktop */
.prod-specs-toggle {
  display: none;
  width: 100%; text-align: left;
  font-family: 'Inter', sans-serif; font-size: 13px; font-weight: 900;
  color: rgba(255,255,255,.9);
  background: none; border: none;
  border-radius: 0; padding: 14px 0;
  cursor: pointer; margin-bottom: 20px; margin-top: 8px;
  align-items: center; justify-content: space-between; gap: 8px;
  transition: color .2s;
  letter-spacing: .04em;
}
.prod-specs-toggle:hover { color: rgba(255,255,255,.85); }
.prod-specs-arrow {
  transition: transform .3s ease;
  flex-shrink: 0;
}
.prod-specs-toggle.open .prod-specs-arrow { transform: rotate(180deg); }

.prod-modal-nav {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 24px;
  justify-content: flex-start;
}
@media (max-width: 1100px) {
  .prod-cards-grid { grid-template-columns: repeat(2, 1fr); }
  .prod-cards-grid .prod-card:nth-child(n) { grid-column: span 1; }
}
@media (max-width: 768px) {
  .prod-cards-grid { grid-template-columns: 1fr; }
  .prod-cards-grid .prod-card:nth-child(n) { grid-column: span 1; }
  .prod-modal { flex-direction: column; }
  .prod-modal-photo { width: 100%; height: 220px; }
}

/* ══════════════════════════════════════════
   LEADERSHIP
══════════════════════════════════════════ */
.leadership-section { padding: 100px 0; }
.leadership-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.leadership-left { display: flex; flex-direction: column; gap: 0; }
.leadership-right { display: flex; justify-content: flex-end; }
.leadership-right .team-card { width: 100%; max-width: 420px; }

/* ══════════════════════════════════════════
   ABOUT — stats strip
══════════════════════════════════════════ */
.about-stats-strip {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--gray1);
  border-radius: 24px; overflow: hidden;
}
.about-stat-cell {
  background: var(--white); padding: 40px 32px;
}
.about-stat-n {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(36px, 4vw, 60px); font-weight: 900;
  letter-spacing: -2px; color: var(--navy); line-height: 1;
}
.about-stat-cell.acc .about-stat-n { color: var(--blue); }
.about-stat-l {
  font-family: 'Inter', sans-serif; font-size: 12px;
  color: var(--charcoal); margin-top: 8px;
}
@media (max-width: 860px) { .about-stats-strip { grid-template-columns: 1fr 1fr; } }

/* ── About — manifesto block ── */
.about-manifesto {
  background: #060f19;
  padding: 100px var(--cx) 120px;
}
.about-manifesto-small {
  font-family: 'Inter', sans-serif; font-size: 16px;
  color: rgba(255,255,255,.3); margin-bottom: 24px;
}
.about-manifesto-big {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: clamp(40px, 6.5vw, 90px);
  color: var(--white); line-height: .9; letter-spacing: -3px;
}
.about-manifesto-big .acc { color: var(--sky); }

/* ══════════════════════════════════════════
   CONTACTS — info cards
══════════════════════════════════════════ */
/* ── Contact Info Strip ── */
.contact-info-strip {
  background: var(--navy);
  padding: 48px var(--cx);
}
.contact-info-strip-inner {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.cis-item {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 28px 24px;
  background: rgba(255,255,255,.12);
  border-radius: 20px;
  transition: background .25s;
}
.cis-item:hover { background: rgba(255,255,255,.2); }
.cis-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  background: rgba(40,114,161,.18);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; color: var(--sky);
}
.cis-lbl {
  font-family: 'Inter', sans-serif; font-size: 10px; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: rgba(255,255,255,.3); margin-bottom: 8px;
}
.cis-val {
  font-family: 'Montserrat', sans-serif; font-size: 13px; font-weight: 700;
  color: var(--white); line-height: 1.5;
  text-decoration: none; display: block;
}
a.cis-val:hover { color: var(--sky); }

/* ── Contact Form Section ── */
.contact-form-wrap {
  background: var(--navy);
  padding: 40px var(--cx) 80px;
}
.contact-form-box {
  padding: 0 0 80px;
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 64px;
  align-items: start;
}
.cfb-left { padding-top: 8px; }
.cfb-heading {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 900; letter-spacing: -2px; line-height: .9;
  color: var(--white); margin-bottom: 20px;
}
.cfb-sub {
  font-family: 'Inter', sans-serif; font-size: 14px;
  color: rgba(255,255,255,.35); line-height: 1.7;
  margin-bottom: 40px;
}
.cfb-info-list { display: flex; flex-direction: column; gap: 20px; }
.cfb-info-item {
  display: flex; align-items: center; gap: 14px;
}
.cfb-info-icon {
  width: 36px; height: 36px; flex-shrink: 0;
  background: rgba(40,114,161,.15);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; color: var(--sky);
}
.cfb-info-item span {
  font-family: 'Inter', sans-serif; font-size: 13px; font-weight: 500;
  color: rgba(255,255,255,.5);
}

/* Right: white form card */
.cfb-right {
  background: var(--white);
  border-radius: 20px;
  padding: 40px;
}
.cfb-form { display: flex; flex-direction: column; gap: 0; }
.cfb-fgrid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.cfb-field {
  border-bottom: 1px solid #e0eaf2;
  padding: 18px 0;
}
.cfb-fgrid .cfb-field:first-child { padding-right: 24px; }
.cfb-fgrid .cfb-field:last-child  { padding-left: 24px; }
.cfb-field input,
.cfb-field select,
.cfb-field textarea {
  width: 100%; border: none; outline: none;
  font-family: 'Inter', sans-serif; font-size: 14px;
  color: var(--navy); background: transparent;
  resize: none;
}
.cfb-field input::placeholder,
.cfb-field textarea::placeholder { color: #a0b8c8; }
.cfb-field select {
  color: var(--navy); cursor: pointer;
  appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23091826' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 4px center;
}
.cfb-field select option:first-child { color: #a0b8c8; }
.cfb-field textarea { min-height: 90px; padding-top: 4px; }
.cfb-submit {
  margin-top: 28px;
  width: 100%; padding: 16px;
  background: var(--navy); color: var(--white);
  font-family: 'Montserrat', sans-serif; font-size: 14px; font-weight: 700;
  border: none; border-radius: 12px; cursor: pointer;
  transition: background .2s, transform .15s;
}
.cfb-submit:hover { background: var(--blue); transform: translateY(-1px); }

/* Custom dropdown */
.cfb-field-select { position: relative; }
.cfb-dropdown { position: relative; width: 100%; }
.cfb-dropdown-trigger {
  display: flex; align-items: center; justify-content: space-between;
  cursor: pointer; padding: 2px 0;
  user-select: none;
}
.cfb-dropdown-trigger span {
  font-family: 'Inter', sans-serif; font-size: 14px;
  color: #a0b8c8;
  transition: color .2s;
}
.cfb-dropdown-trigger.selected span { color: var(--navy); }
.cfb-dropdown-arrow {
  flex-shrink: 0;
  transition: transform .25s cubic-bezier(0.16,1,0.3,1);
}
.cfb-dropdown.open .cfb-dropdown-arrow { transform: rotate(180deg); }
.cfb-dropdown-menu {
  position: absolute; top: calc(100% + 16px); left: -40px; right: -40px;
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 16px 48px rgba(9,24,38,.18), 0 2px 8px rgba(9,24,38,.08);
  overflow: hidden;
  opacity: 0; pointer-events: none;
  transform: translateY(-8px) scale(0.98);
  transition: opacity .22s ease, transform .22s cubic-bezier(0.16,1,0.3,1);
  z-index: 100;
}
.cfb-dropdown.open .cfb-dropdown-menu {
  opacity: 1; pointer-events: all;
  transform: translateY(0) scale(1);
}
.cfb-dropdown-item {
  font-family: 'Inter', sans-serif; font-size: 14px; font-weight: 500;
  color: var(--navy);
  padding: 16px 24px;
  cursor: pointer;
  transition: background .15s, color .15s;
  border-bottom: 1px solid #f0f6fa;
}
.cfb-dropdown-item:last-child { border-bottom: none; }
.cfb-dropdown-item:hover { background: #f0f7fc; color: var(--blue); }
.cfb-dropdown-item.active { background: #e8f3fa; color: var(--blue); font-weight: 600; }

@media (max-width: 900px) {
  .contact-info-strip-inner { grid-template-columns: repeat(2, 1fr); }
  .contact-form-box { grid-template-columns: 1fr; gap: 40px; padding: 36px; }
  .cfb-fgrid { grid-template-columns: 1fr; }
  .cfb-fgrid .cfb-field:first-child { border-right: none; padding-right: 0; }
  .cfb-fgrid .cfb-field:last-child  { padding-left: 0; }
}

/* ── Form improvements ── */
.f-field { display: flex; flex-direction: column; gap: 7px; }
.f-field label {
  font-family: 'Montserrat', sans-serif; font-size: 10px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase; color: var(--charcoal);
}
.f-field input, .f-field select, .f-field textarea {
  font-family: 'Inter', sans-serif; font-size: 14px;
  background: var(--stone); color: var(--navy);
  border: 1.5px solid #d0e2ed; border-radius: 12px;
  padding: 13px 16px; outline: none;
  transition: border-color .2s, box-shadow .2s;
}
.f-field select {
  appearance: none; -webkit-appearance: none;
  padding-right: 40px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23091826' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
}
.f-field input:focus, .f-field select:focus, .f-field textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(40,114,161,.1);
  background: var(--white);
}
.f-field textarea { resize: vertical; }
.fgrid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 640px) { .fgrid { grid-template-columns: 1fr; } }

/* ══════════════════════════════════════════
   NAV BURGER + DROPDOWN
══════════════════════════════════════════ */
.nav-burger {
  display: none;
  flex-direction: column; justify-content: center; align-items: center;
  gap: 5px; width: 40px; height: 40px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12);
  border-radius: 10px; cursor: pointer; padding: 0;
  transition: background .2s;
}
.nav-burger span {
  display: block; width: 18px; height: 1.5px;
  background: rgba(255,255,255,.8); border-radius: 2px;
  transition: transform .3s ease, opacity .3s ease;
}
.nav-burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.nav-dropdown {
  position: fixed; top: 76px; left: 50%;
  width: calc(100% - 24px); max-width: 480px;
  background: transparent;
  border: none; box-shadow: none;
  border-radius: 0; padding: 0;
  display: flex; flex-direction: column; gap: 6px;
  z-index: 8999;
  opacity: 0; pointer-events: none;
  transform: translateX(-50%) translateY(-8px);
  transition: opacity .25s ease, transform .25s ease;
}
.nav-dropdown.open {
  opacity: 1; pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.nav-dd-item {
  display: block; width: 100%;
  font-family: 'Inter', sans-serif; font-size: 15px; font-weight: 500;
  color: rgba(255,255,255,.8); padding: 15px 20px;
  border-radius: 16px; cursor: pointer;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background .18s, color .18s;
  text-decoration: none;
  box-sizing: border-box;
}
.nav-dd-item:hover { background: rgba(255,255,255,.08); color: #fff; }
.nav-dd-item.active { background: rgba(255,255,255,.07); color: #fff; font-weight: 600; }
.nav-dd-cta {
  background: rgba(255,255,255,0.9) !important;
  border-color: rgba(255,255,255,.5) !important;
  color: var(--navy) !important; font-weight: 700;
  text-align: center;
}
.nav-dd-cta:hover { background: #fff !important; }

/* ══════════════════════════════════════════
   RESPONSIVE — TABLET (≤1024px)
══════════════════════════════════════════ */
@media (max-width: 1024px) {
  :root { --cx: 40px; }
  nav { padding: 12px 16px; }
  .nav-pills { display: none; }
  .nav-cta-desktop { display: none; }
  .nav-burger { display: flex; }

  /* Hero */
  .hero { padding: 100px 40px 60px; min-height: auto; flex-direction: column; gap: 40px; }
  .hero-content { max-width: 100%; }
  .hero-cards { display: none; }
  .hero-scroll { display: none; }
  .hero-title { font-size: clamp(52px, 8vw, 90px); }

  /* CTA */
  .cta-section-v2 { grid-template-columns: 1fr; grid-template-rows: auto; grid-template-areas: "left" "card" "btns"; padding: 60px var(--cx); gap: 40px; }
  .cta-v2-card { height: 360px; }
  .cta-v2-left { justify-content: flex-start; }

  /* Process cards */
  .proc-cards { height: auto; flex-direction: column; gap: 16px; }
  .proc-card { flex: none !important; height: 300px; }
  .proc-cards:hover .proc-card { flex: none !important; }
  .philo-header { grid-template-columns: 1fr; gap: 24px; }

  /* Leadership */
  .leadership-inner { grid-template-columns: 1fr; gap: 48px; }
  .leadership-right { justify-content: flex-start; }
  .leadership-right .team-card { max-width: 360px; }

  /* About stats */
  .about-stats-strip { grid-template-columns: repeat(3,1fr); }

  /* Contact form */
  .contact-form-box { grid-template-columns: 1fr; gap: 40px; }

  /* Page hero */
  .page-hero { padding: 110px 40px 80px; }
  .page-hero-title { font-size: clamp(52px, 9vw, 100px); }
  .page-stat-card { min-width: 120px; padding: 18px 20px; }

  /* Modal */
  .prod-modal { flex-direction: column; max-height: 90vh; overflow-y: auto; }
  .prod-modal-photo { width: 100%; height: 260px; }
  .prod-modal-body { padding: 24px; }
  .prod-modal-specs { grid-template-columns: 1fr 1fr; }
}

/* ══════════════════════════════════════════
   RESPONSIVE — MOBILE (≤768px)
══════════════════════════════════════════ */
@media (max-width: 768px) {
  :root { --cx: 20px; }

  /* Hero */
  .hero { padding: 90px 20px 48px; }
  .hero-title { font-size: clamp(44px, 11vw, 72px); letter-spacing: -2px; }
  .hero-desc { font-size: 15px; }
  .hero-btns { flex-direction: column; }
  .hero-btns button { width: 100%; justify-content: center; }

  /* Stats */
  .hero-stats { flex-direction: column; gap: 12px; }
  .stat-cell { min-width: auto; flex: none; }

  /* Features */
  .features-grid { grid-template-columns: 1fr; }

  /* Philosophy */
  .philosophy-section { padding: 64px 20px 80px; }
  .philosophy-line2 { font-size: clamp(36px, 9vw, 60px); letter-spacing: -1.5px; }
  .proc-cards { flex-direction: column; height: auto; }
  .proc-card { flex: none !important; height: 280px; }
  .proc-card-title { font-size: 16px; }

  /* Protocol */
  .protocol-card { padding: 60px 24px; }

  /* CTA */
  .cta-section-wrap { min-height: auto !important; padding: 0; }
  .cta-section-v2 {
    grid-template-columns: 1fr; grid-template-rows: auto;
    grid-template-areas: "left" "card" "btns";
    padding: 40px 20px 48px; gap: 28px;
    background: none; border-radius: 0; margin: 0; width: 100%;
  }
  .cta-v2-card { height: auto; }
  .cta-v2-photo { min-height: 220px; }
  .cta-v2-left { justify-content: flex-start; }
  .cta-heading { font-size: clamp(36px, 9vw, 56px); letter-spacing: -1.5px; }
  .cta-v2-btns { flex-direction: column; }
  .cta-v2-btns button { width: 100%; justify-content: center; }

  /* Page hero */
  .page-hero { padding: 90px 20px 90px; min-height: 85vh !important; }
  .page-hero-title { font-size: clamp(44px, 11vw, 80px); letter-spacing: -2px; }
  .page-hero-stats { gap: 10px; margin-top: 40px; margin-bottom: 16px; }
  .page-stat-card { min-width: 100px; padding: 14px 16px; }
  .page-stat-num { font-size: 26px; }

  /* Prod cards */
  .prod-cards-section { padding: 64px 20px; }
  .prod-cards-grid { grid-template-columns: 1fr !important; }
  .prod-cards-grid .prod-card:nth-child(n) { grid-column: span 1 !important; }
  .prod-card { min-height: 320px; }

  /* About */
  .about-stats-strip { grid-template-columns: 1fr 1fr; gap: 12px; }
  .about-manifesto { padding: 64px 20px 80px; }
  .about-manifesto-big { font-size: clamp(36px, 9vw, 60px); letter-spacing: -1.5px; }
  .leadership-section { padding: 64px 0; }
  .leadership-inner { grid-template-columns: 1fr; gap: 32px; }

  /* Contact */
  .contact-form-wrap { padding: 40px 0 64px; }
  .contact-form-box { grid-template-columns: 1fr; gap: 32px; padding: 0 16px 48px; }
  .cfb-right { padding: 24px; border-radius: 20px; }

  /* Footer */
  .footer-inner { flex-direction: column; gap: 32px; }
  .footer-links { flex-direction: column; gap: 24px; }

  /* Modal */
  .prod-modal-overlay { align-items: flex-end; padding: 0; }
  .prod-modal { width: 100%; max-width: 100%; border-radius: 24px 24px 0 0; flex-direction: column; max-height: 92vh; }
  .prod-modal-close { top: 16px; right: 16px; }
  .prod-modal-photo { width: calc(100% - 32px); height: 220px; border-radius: 16px; margin: 16px 16px 0; }
  .prod-modal-body { width: calc(100% - 32px); margin: 0 16px 16px; padding: 20px; overflow-y: auto; box-sizing: border-box; border-radius: 16px; }
  .prod-modal-nav { justify-content: center; }
  /* Specs accordion */
  .prod-specs-toggle { display: flex; }
  .prod-modal-specs {
    grid-template-columns: 1fr 1fr; gap: 8px;
    max-height: 0; overflow: hidden; margin-bottom: 0;
    transition: max-height .4s cubic-bezier(0.16,1,0.3,1), margin .3s ease;
  }
  .prod-modal-specs.specs-open {
    max-height: 600px;
    margin-bottom: 20px;
    margin-top: 10px;
  }
}

/* ══════════════════════════════════════════
   RESPONSIVE — SMALL MOBILE (≤480px)
══════════════════════════════════════════ */
@media (max-width: 480px) {
  .hero-title { font-size: clamp(38px, 12vw, 56px); }
  .page-hero-title { font-size: clamp(38px, 12vw, 60px); }
  .t-big { font-size: clamp(36px, 10vw, 52px) !important; }
  .about-stats-strip { grid-template-columns: 1fr; }
  .prod-modal-specs { grid-template-columns: 1fr 1fr; }
  .cta-section-v2 { padding: 48px 16px; }
  .page-hero-stats { flex-direction: column; }
  .page-stat-card { min-width: auto; width: 100%; }
}
