/* ============================================================
   RAGIONEX - Monochrome Context Engine
   Pure black canvas. Live request map. Editorial typography.
   ============================================================ */

:root{
  --bg:           #000000;
  --bg-elev:      #0a0a0a;
  --bg-elev-2:    #111111;
  --line:         #1a1a1a;
  --line-strong:  #262626;
  --text:         #ffffff;
  --text-mute:    #a8a8a8;
  --text-dim:     #6b6b6b;
  --text-fade:    #3d3d3d;
  --accent:       #FFC300;

  --serif: "Fraunces", "Times New Roman", serif;
  --sans:  "Instrument Sans", system-ui, sans-serif;
  --mono:  "JetBrains Mono", ui-monospace, "SFMono-Regular", monospace;

  --maxw: 1320px;
  --pad:  clamp(20px, 4vw, 56px);

  --ease: cubic-bezier(.2,.7,.2,1);
  --ease-out: cubic-bezier(.16,1,.3,1);
}

*{ box-sizing: border-box; }
html, body{ margin:0; padding:0; background: var(--bg); color: var(--text); }
html{ scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body{
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  font-feature-settings: "ss01", "cv11";
}
img, svg, canvas{ display:block; max-width:100%; }
a{ color: inherit; text-decoration: none; }
button{ font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

::selection{ background:#fff; color:#000; }

/* Subtle global film grain - gives the black depth */
body::before{
  content:"";
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 999;
  opacity: .035;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 .9 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

/* ----------  LAYOUT PRIMITIVES  ---------- */
.wrap{
  max-width: min(var(--maxw), 80vw);
  margin: 0 auto;
  padding-inline: var(--pad);
  position: relative;
}

.eyebrow{
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--text-dim);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before{
  content:"";
  width: 22px;
  height: 1px;
  background: var(--text-fade);
}

/* ----------  NAVIGATION  ---------- */
.nav{
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 22px var(--pad);
  padding-top: max(22px, env(safe-area-inset-top));
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: backdrop-filter .3s var(--ease), background .3s var(--ease), border-color .3s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.scrolled{
  background: rgba(0,0,0,.88);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom-color: var(--line);
}
.nav__logo{
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -.02em;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.nav__logo::before{
  content:"";
  width: 9px; height: 9px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 1px #fff, 0 0 14px rgba(255,255,255,.55);
  animation: pulse 2.4s var(--ease) infinite;
}
@keyframes pulse{
  0%,100%{ box-shadow: 0 0 0 1px #fff, 0 0 14px rgba(255,255,255,.55); }
  50%   { box-shadow: 0 0 0 1px #fff, 0 0 22px rgba(255,255,255,.95); }
}

.nav__links{
  display: flex;
  gap: 38px;
  font-family: var(--sans);
  font-size: 14px;
  color: var(--text-mute);
}
.nav__links a{
  position: relative;
  padding: 6px 0;
  transition: color .25s var(--ease);
}
.nav__links a:hover{ color: #fff; }
.nav__links a::after{
  content:"";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: #fff;
  transition: width .35s var(--ease);
}
.nav__links a:hover::after{ width: 100%; }

.btn{
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 11px 22px;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: .005em;
  border: 1px solid transparent;
  transition: transform .3s var(--ease), background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease);
  white-space: nowrap;
}
.btn--filled{
  background: #fff;
  color: #000;
}
.btn--filled:hover{ transform: translateY(-1px); background: #ededed; }
.btn--ghost{
  border-color: var(--line-strong);
  color: var(--text);
}
.btn--ghost:hover{ border-color: #fff; background: rgba(255,255,255,.04); }
.btn .arr{
  display: inline-block;
  transition: transform .3s var(--ease);
}
.btn:hover .arr{ transform: translateX(3px); }

/* ----------  HERO  ---------- */
.hero{
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  padding-top: 130px;
  padding-bottom: 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  isolation: isolate;
}
@media (max-height: 700px){
  .hero{ min-height: auto; }
}

/* World map canvas/svg sits behind everything */
.map-stage{
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.map-stage::before{
  /* radial fade so map looks centered, edges drift to black */
  content:"";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 55%, transparent 0%, transparent 38%, rgba(0,0,0,.55) 70%, #000 100%);
  pointer-events: none;
  z-index: 2;
}
.map-stage::after{
  /* top fade for nav legibility */
  content:"";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, #000 0%, transparent 18%, transparent 75%, #000 100%);
  pointer-events: none;
  z-index: 2;
}
#world-canvas, #arcs-canvas{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
#world-canvas{ z-index: 0; }
#arcs-canvas{ z-index: 1; }

/* Star field */
.stars{
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    radial-gradient(1px 1px at 12% 18%, rgba(255,255,255,.45), transparent 50%),
    radial-gradient(1px 1px at 88% 32%, rgba(255,255,255,.35), transparent 50%),
    radial-gradient(1px 1px at 24% 78%, rgba(255,255,255,.4),  transparent 50%),
    radial-gradient(1px 1px at 67% 88%, rgba(255,255,255,.3),  transparent 50%),
    radial-gradient(1px 1px at 48% 8%,  rgba(255,255,255,.35), transparent 50%),
    radial-gradient(1px 1px at 4% 52%,  rgba(255,255,255,.25), transparent 50%),
    radial-gradient(1px 1px at 96% 64%, rgba(255,255,255,.3),  transparent 50%);
}

.hero__inner{
  position: relative;
  z-index: 5;
  text-align: center;
  padding-top: 30px;
}

.badge{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 16px 7px 12px;
  border: 1px solid var(--line-strong);
  background: rgba(255,255,255,.025);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin-bottom: 38px;
  animation: fadeUp .9s var(--ease-out) .1s both;
  white-space: nowrap;
}
.badge .dot{
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 8px rgba(255,255,255,.9);
  animation: pulse 1.8s ease-in-out infinite;
}
.badge .sep{ color: var(--text-fade); }

.h1{
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(44px, 7.4vw, 108px);
  line-height: .96;
  letter-spacing: -.035em;
  margin: 0 auto 28px;
  max-width: 14ch;
  font-feature-settings: "ss01";
  font-variation-settings: "opsz" 144;
}
.h1 em{
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
}

.h1 .word{
  display: inline-block;
  opacity: 0;
  transform: translateY(40px);
  animation: revealWord 1s var(--ease-out) forwards;
  animation-play-state: paused;
}
.h1 .word:nth-child(1){ animation-delay: .15s; }
.h1 .word:nth-child(2){ animation-delay: .25s; }
.h1 .word:nth-child(3){ animation-delay: .35s; }
.h1 .word:nth-child(4){ animation-delay: .45s; }
.h1 .word:nth-child(5){ animation-delay: .55s; }
.h1 .word:nth-child(6){ animation-delay: .65s; }

@keyframes revealWord{
  to{ opacity: 1; transform: translateY(0); }
}
@keyframes fadeUp{
  from{ opacity: 0; transform: translateY(20px); }
  to  { opacity: 1; transform: translateY(0); }
}

.sub{
  font-size: clamp(15px, 1.4vw, 18px);
  color: var(--text-mute);
  margin: 0 auto 44px;
  line-height: 1.55;
  animation: fadeUp 1s var(--ease-out) .9s both;
}
.sub .em{ color: #e6e6e6; font-style: italic; font-family: var(--serif); }

.cta-row{
  display: inline-flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  animation: fadeUp 1s var(--ease-out) 1.05s both;
}

/* Live ticker beneath CTAs */
.ticker{
  margin-top: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--text-dim);
  letter-spacing: .08em;
  text-transform: uppercase;
  animation: fadeUp 1s var(--ease-out) 1.25s both;
}
.ticker .live{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
}
.ticker .live::before{
  content:"";
  width: 6px; height: 6px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 0 10px #fff;
  animation: pulse 1.4s infinite;
}
.ticker .req{
  font-variant-numeric: tabular-nums;
  color: var(--text);
}
.ticker .sep{ color: var(--text-fade); }

/* corner labels (data-viz feel) */
.corner{
  position: absolute;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-dim);
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 8px;
}
.corner .tick{ width: 14px; height: 1px; background: var(--text-fade); }
.corner--tl{ top: 110px; left: var(--pad); }
.corner--tr{ top: 110px; right: var(--pad); flex-direction: row-reverse; }
.corner--bl{ bottom: 24px; left: var(--pad); }
.corner--br{ bottom: 24px; right: var(--pad); flex-direction: row-reverse; }
@media (max-width: 760px){ .corner{ display: none; } }

/* ----------  SECTION SHELL  ---------- */
section{ position: relative; }
.section{ padding: 100px 0; }

.section__head{
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-bottom: 64px;
}
.section__head h2{
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(34px, 4.4vw, 56px);
  line-height: 1.04;
  letter-spacing: -.025em;
  margin: 0;
}
.section__head h2 em{ font-style: italic; color: var(--accent); }
.section__head p{
  color: var(--text-mute);
  font-size: 16px;
  margin: 0;
}

/* divider line - now as section modifier */
.has-divider{
  position: relative;
}
.has-divider::after{
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--line-strong), transparent);
}

/* ----------  PRODUCTS  ---------- */
.products{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media (max-width: 900px){ .products{ grid-template-columns: 1fr; } }

.product{
  position: relative;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255,255,255,.025), rgba(255,255,255,0) 60%),
    var(--bg-elev);
  border-radius: 6px;
  padding: 36px 36px 28px;
  overflow: hidden;
  transition: border-color .4s var(--ease), transform .4s var(--ease);
}
.product:hover{ border-color: var(--line-strong); }
.product::before{
  /* corner crosshair marks */
  content:"";
  position: absolute;
  top: 12px; left: 12px;
  width: 8px; height: 8px;
  border-top: 1px solid var(--text-fade);
  border-left: 1px solid var(--text-fade);
}
.product::after{
  content:"";
  position: absolute;
  bottom: 12px; right: 12px;
  width: 8px; height: 8px;
  border-bottom: 1px solid var(--text-fade);
  border-right: 1px solid var(--text-fade);
}
.product__num{
  font-family: var(--mono);
  font-size: 11px;
  color: var(--text-dim);
  letter-spacing: .15em;
  text-transform: uppercase;
  margin-bottom: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.product__num .stat{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text-mute);
}
.product__num .stat::before{
  content:"";
  width: 5px; height: 5px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 8px #fff;
  animation: pulse 1.8s infinite;
}
.product__title{
  font-family: var(--serif);
  font-size: clamp(30px, 3vw, 38px);
  line-height: 1.05;
  font-weight: 400;
  letter-spacing: -.02em;
  margin: 0 0 14px;
}
.product__title em{ font-style: italic; color: var(--accent); }
.product__desc{
  color: var(--text-mute);
  font-size: 15px;
  margin: 0 0 28px;
  line-height: 1.6;
}

.code{
  background: #050505;
  border: 1px solid var(--line);
  border-radius: 4px;
  font-family: var(--mono);
  font-size: 12.5px;
  line-height: 1.65;
  margin: 0 0 18px;
  overflow: hidden;
}
.code__head{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 14px;
  border-bottom: 1px solid var(--line);
  background: #0a0a0a;
  color: var(--text-dim);
  font-size: 10.5px;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.code__head .dots{
  display: inline-flex;
  gap: 5px;
}
.code__head .dots i{
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--text-fade);
}
.code pre{
  margin: 0;
  padding: 16px 18px;
  white-space: pre;
  overflow-x: auto;
}
.code .k{ color: #b8b8b8; }
.code .s{ color: #ffffff; }
.code .c{ color: #555; font-style: italic; }
.code .p{ color: #777; }
.code .n{ color: #d4d4d4; }
.code .resp{ color: #888; }
.code .ok{ color: #fff; font-weight: 500; }

.product__foot{
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 12px;
  font-family: var(--mono);
  color: var(--text-dim);
  letter-spacing: .06em;
  text-transform: uppercase;
}
.product__foot a{
  color: var(--text);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.product__foot a:hover .arr{ transform: translateX(3px); }
.product__foot a .arr{ transition: transform .3s var(--ease); }

/* ----------  HOW IT WORKS  ---------- */
.steps{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--line);
}
@media (max-width: 900px){ .steps{ grid-template-columns: 1fr; } }
.step{
  padding: 48px 32px;
  border-right: 1px solid var(--line);
  position: relative;
}
.step:last-child{ border-right: 0; }
@media (max-width: 900px){
  .step{ border-right: 0; border-bottom: 1px solid var(--line); }
  .step:last-child{ border-bottom: 0; }
}
.step__num{
  font-family: var(--mono);
  font-size: 11px;
  color: var(--text-dim);
  letter-spacing: .18em;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.step__num span{
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  font-size: 10px;
  color: var(--text);
}
.step__title{
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
  line-height: 1.1;
  margin: 0 0 12px;
  letter-spacing: -.02em;
}
.step__title em{ font-style: italic; color: var(--accent); }
.step__desc{
  color: var(--text-mute);
  font-size: 14.5px;
  margin: 0;
  line-height: 1.6;
}
.step__icon{
  width: 28px; height: 28px;
  margin-bottom: 22px;
  color: #fff;
  opacity: .75;
}

/* ----------  DIFFERENTIATORS  ---------- */
.diff-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
@media (max-width: 900px){ .diff-grid{ grid-template-columns: 1fr; } }
.diff{
  background: var(--bg);
  padding: 48px 36px;
  position: relative;
  transition: background .4s var(--ease);
  text-align: center;
}
.diff:hover{ background: #050505; }
.diff__big{
  font-family: var(--serif);
  font-size: clamp(80px, 9vw, 140px);
  font-weight: 300;
  line-height: .85;
  letter-spacing: -.04em;
  margin-bottom: 30px;
  color: #fff;
  font-feature-settings: "ss01", "lnum";
}
.diff__big .slash{ color: var(--text-fade); margin: 0 .04em; }
.diff__big sup{
  font-size: .35em;
  font-weight: 400;
  color: var(--text-mute);
  vertical-align: super;
  margin-left: .1em;
}
.diff__title{
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  font-weight: 400;
  margin: 0 0 10px;
  color: var(--accent);
}
.diff__desc{
  color: var(--text-mute);
  font-size: 14px;
  margin: 0 auto;
  line-height: 1.55;
}

/* ----------  CTA  ---------- */
.cta-section{
  text-align: center;
  padding: 100px 0;
  position: relative;
}
.cta-section::before{
  content:"";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 60% at 50% 50%, rgba(255,255,255,.04), transparent 60%);
  pointer-events: none;
}
.cta-section h2{
  font-family: var(--serif);
  font-size: clamp(40px, 6vw, 84px);
  line-height: 1;
  font-weight: 400;
  letter-spacing: -.03em;
  margin: 0 auto 22px;
  position: relative;
}
.cta-section h2 em{ font-style: italic; color: var(--accent); }
.cta-section p{
  color: var(--text-mute);
  font-size: 17px;
  margin: 0 auto 38px;
  position: relative;
}
.cta-section .cta-row{ position: relative; }

.waitlist{
  margin-top: 36px;
  display: inline-flex;
  align-items: center;
  gap: 0;
  padding: 6px 6px 6px 22px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(255,255,255,.025);
  backdrop-filter: blur(8px);
  position: relative;
  max-width: 440px;
  width: 100%;
}
.waitlist input{
  flex: 1;
  background: transparent;
  border: 0;
  outline: 0;
  color: #fff;
  font-family: var(--sans);
  font-size: 14px;
  padding: 10px 8px;
  min-width: 0;
}
.waitlist input::placeholder{ color: var(--text-dim); }
.waitlist button{
  background: #fff;
  color: #000;
  border-radius: 999px;
  padding: 10px 20px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  transition: background .25s var(--ease);
  white-space: nowrap;
}
.waitlist button:hover{ background: #ededed; }

/* ----------  FOOTER  ---------- */
footer{
  border-top: 1px solid var(--line);
  padding: 56px 0 40px;
  font-size: 13px;
  color: var(--text-dim);
}
.foot__top{
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 56px;
}
@media (max-width: 760px){ .foot__top{ grid-template-columns: 1fr 1fr; } }
.foot__brand .nav__logo{ font-size: 24px; }
.foot__brand p{
  margin: 18px 0 0;
  max-width: 36ch;
  color: var(--text-mute);
  font-size: 14px;
  line-height: 1.55;
}
.foot__col h4{
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin: 0 0 18px;
  font-weight: 500;
}
.foot__col ul{
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.foot__col a{
  color: var(--text-mute);
  transition: color .25s var(--ease);
}
.foot__col a:hover{ color: #fff; }

.foot__bot{
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-fade);
  flex-wrap: wrap;
  gap: 14px;
}

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

/* ----------  MOBILE MENU  ---------- */
.nav__burger{
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  padding: 0;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 101;
}
.nav__burger span{
  display: block;
  width: 22px;
  height: 1.5px;
  background: #fff;
  border-radius: 2px;
  transition: transform .3s var(--ease), opacity .2s var(--ease);
  transform-origin: center;
}
.nav__burger.active span:nth-child(1){
  transform: translateY(6.5px) rotate(45deg);
}
.nav__burger.active span:nth-child(2){
  opacity: 0;
}
.nav__burger.active span:nth-child(3){
  transform: translateY(-6.5px) rotate(-45deg);
}

.mobile-menu{
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(0,0,0,.92);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s var(--ease), visibility .35s var(--ease);
}
.mobile-menu.open{
  opacity: 1;
  visibility: visible;
}
.mobile-menu__inner{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  text-align: center;
}
.mobile-menu__inner a{
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
  letter-spacing: -.02em;
  color: var(--text-mute);
  transition: color .25s var(--ease), transform .25s var(--ease);
  opacity: 0;
  transform: translateY(20px);
}
.mobile-menu.open .mobile-menu__inner a{
  opacity: 1;
  transform: translateY(0);
}
.mobile-menu.open .mobile-menu__inner a:nth-child(1){ transition-delay: .05s; }
.mobile-menu.open .mobile-menu__inner a:nth-child(2){ transition-delay: .1s; }
.mobile-menu.open .mobile-menu__inner a:nth-child(3){ transition-delay: .15s; }
.mobile-menu.open .mobile-menu__inner a:nth-child(4){ transition-delay: .2s; }
.mobile-menu.open .mobile-menu__inner a:nth-child(5){ transition-delay: .25s; }
.mobile-menu.open .mobile-menu__inner a:nth-child(6){ transition-delay: .3s; }
.mobile-menu__inner a:hover{
  color: #fff;
  transform: scale(1.05);
}
.mobile-menu__inner .btn{
  margin-top: 16px;
  font-family: var(--sans);
  font-size: 14px;
}

/* ----------  RESPONSIVE TWEAKS  ---------- */
@media (max-width: 760px){
  .wrap{ max-width: min(var(--maxw), 90vw); }
  .nav__burger{ display: flex; }
  .nav__links{ display: none; }
  .hero{ padding-top: 90px; padding-bottom: 40px; }
  .hero__inner{ padding-top: 0; }
  .badge{ font-size: 10px; padding: 6px 14px 6px 10px; margin-bottom: 22px; }
  .sub{ font-size: 14px; margin-bottom: 28px; }
  .ticker{ flex-wrap: wrap; gap: 14px; margin-top: 32px; }
  .product{ padding: 28px 22px 22px; }
  .step{ padding: 36px 24px; }
  .diff{ padding: 36px 26px; }
}
