:root{
  --bg:#070a13;
  --text:rgba(255,255,255,.88);
  --muted:rgba(255,255,255,.62);
  --muted2:rgba(255,255,255,.46);
  --stroke:rgba(255,255,255,.12);
  --shadow: 0 20px 70px rgba(0,0,0,.55);

  --g1:#4dd7ff;
  --g2:#7c5cff;
  --g3:#ff8bd4;
  --g4:#ffd07a;

  --radius:22px;
  --radius2:28px;
  --max:1160px;

  --sans: "League Spartan", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  --display: "League Spartan", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;

  --headerH: 74px;
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  background:var(--bg);
  color:var(--text);
  font-family:var(--sans);
  line-height:1.55;
  overflow-x:hidden;
}
a{ color:inherit; text-decoration:none; }
img{ max-width:100%; height:auto; display:block; }
.container{ width:min(var(--max), calc(100% - 48px)); margin:0 auto; }

.bg{ position:fixed; inset:0; z-index:-3; overflow:hidden; }
.bg__vignette{
  position:absolute; inset:-15%;
  background:
    radial-gradient(900px 520px at 50% 10%, rgba(255,255,255,.08), transparent 62%),
    linear-gradient(to bottom, rgba(7,10,19,.98), rgba(7,10,19,.88) 55%, rgba(7,10,19,.96));
}
.bg__glow{
  position:absolute; inset:0;
  background:
    radial-gradient(520px 260px at 50% 62%, rgba(90,120,255,.10), transparent 65%),
    radial-gradient(820px 340px at 50% 100%, rgba(77,215,255,.10), transparent 70%);
  opacity:.55;
}
.bg__grid{
  position:absolute; inset:0;
  background-image:
    linear-gradient(to right, rgba(120,170,255,.08) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(120,170,255,.08) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(900px 520px at 50% 92%, rgba(0,0,0,1), transparent 70%);
  opacity:.10;
}
.bg__horizon{
  position:absolute; left:-10%; right:-10%; bottom:-520px; height:980px;
  background:
    radial-gradient(1200px 520px at 50% 0%, rgba(70,160,255,.55), transparent 72%),
    radial-gradient(1100px 520px at 45% 0%, rgba(120,90,255,.34), transparent 74%),
    radial-gradient(1200px 560px at 55% 0%, rgba(255,139,212,.18), transparent 78%),
    linear-gradient(to top, rgba(10,18,38,.70), rgba(7,10,19,0) 62%);
  opacity:.62;
  filter: blur(10px);
}
.bg__noise{
  position:absolute; inset:0;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='.35'/%3E%3C/svg%3E");
  opacity:.045;
  mix-blend-mode: overlay;
}

/* Top nav */
.top{
  position:sticky;
  top:0;
  z-index:50;
  padding:18px 0;
  backdrop-filter: blur(14px);
}
.top::before{
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(to bottom, rgba(7,10,19,.74), rgba(7,10,19,.42));
  border-bottom: 1px solid rgba(255,255,255,.06);
  z-index:-1;
}
.top__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
}

.brand{
  display:flex;
  align-items:center;
  gap:10px;
  padding:10px 12px;
  border-radius:999px;
}

.brand__logo{
  width:64px;
  height:64px;
  object-fit:contain;
  display:block;
  filter: drop-shadow(0 8px 22px rgba(77,215,255,.18));
}

.brand__name{
  font-weight:700;
  letter-spacing:.01em;
  font-size:1.2rem;
  line-height:1;
}

.pill{
  display:flex;
  gap:8px;
  padding:10px 12px;
  border-radius:999px;
  border:1px solid var(--stroke);
  background: rgba(10,18,38,.38);
  box-shadow: 0 10px 40px rgba(0,0,0,.35);
  transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease, background .35s ease;
}
.pill:hover{
  transform: translateY(-1px);
  border-color: rgba(255,255,255,.16);
  box-shadow: 0 14px 44px rgba(0,0,0,.38);
}
.pill__link{
  font-size:14px;
  font-weight:600;
  color:var(--muted);
  padding:8px 12px;
  border-radius:999px;
  transition: color .25s ease, background .25s ease, transform .25s ease;
}
.pill__link:hover{
  color:var(--text);
  background: rgba(255,255,255,.07);
  transform: translateY(-1px);
}
.pill__link--icon span{ opacity:.8; }

.cta{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:12px 16px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.10);
  background: radial-gradient(120% 120% at 20% 10%, rgba(77,215,255,.22), rgba(124,92,255,.20) 40%, rgba(255,139,212,.16) 70%, rgba(255,208,122,.12) 100%);
  box-shadow: 0 18px 50px rgba(0,0,0,.45);
  transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease, filter .28s ease;
  font-weight:700;
}
.cta:hover{
  transform: translateY(-2px);
  border-color: rgba(255,255,255,.18);
  box-shadow: 0 22px 58px rgba(0,0,0,.48);
  filter: brightness(1.05);
}
.cta__arrow{
  opacity:.9;
  transition: transform .25s ease;
}
.cta:hover .cta__arrow{
  transform: translateX(2px);
}
.cta--mini{ padding:10px 14px; font-size:14px; }

.mobile-nav-toggle,
.mobile-nav{
  display:none;
}

/* Hero */
.hero{
  min-height: calc(100svh - var(--headerH));
  display:flex;
  align-items:center;
  justify-content:center;
  padding: 56px 0 46px;
}
.hero__inner{ text-align:center; max-width:980px; }
.kicker{
  margin:0 auto 22px;
  font-size:12px;
  font-weight:600;
  letter-spacing:.22em;
  color:rgba(255,255,255,.52);
  text-transform:uppercase;
}
.hero__title{
  margin:0 auto 14px;
  font-family:var(--display);
  font-weight:800;
  letter-spacing:-.04em;
  font-size: clamp(52px, 7vw, 98px);
  line-height:.92;
  text-transform:none;
}
.hero__title--italic{
  font-style:normal;
  font-weight:700;
}
.hero__sub{
  margin: 0 auto 22px;
  max-width:720px;
  font-size:16px;
  font-weight:500;
  color:var(--muted);
  line-height:1.5;
}
.hero__actions{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:16px;
  flex-wrap:wrap;
}

/* Sections */
.section{ padding: 110px 0; position:relative; }
.section--compact{ padding: 90px 0; }
.section--footer{ padding: 110px 0 80px; }
.section::before{
  content:"";
  position:absolute;
  left:0; right:0;
  top:-110px;
  height:140px;
  background: linear-gradient(to bottom,
    rgba(7,10,19,0),
    rgba(7,10,19,.78),
    rgba(7,10,19,0)
  );
  pointer-events:none;
  opacity:.50;
}
.section__head{ text-align:center; max-width:800px; margin:0 auto 28px; }
.section__title{
  margin:0 0 10px;
  font-family: var(--display);
  font-weight:800;
  letter-spacing:-.035em;
  font-size: clamp(34px, 4vw, 56px);
  line-height:.95;
  text-transform:uppercase;
}
.section__desc{
  margin:0;
  color: var(--muted);
  font-weight:500;
}
.muted{ color: var(--muted2); }

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 12px 14px;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing:.01em;
  border:1px solid rgba(255,255,255,.12);
  transition: transform .24s ease, border-color .24s ease, box-shadow .24s ease, filter .24s ease;
  user-select:none;
}
.btn:hover{
  transform: translateY(-2px);
  border-color: rgba(255,255,255,.20);
  box-shadow: 0 16px 38px rgba(0,0,0,.24);
  filter: brightness(1.03);
}
.btn--grad{
  background: linear-gradient(135deg, rgba(77,215,255,.95), rgba(124,92,255,.92), rgba(255,139,212,.82), rgba(255,208,122,.72));
  color: rgba(0,0,0,.86);
}
.btn--ghost{ background: rgba(255,255,255,.06); color: var(--text); }
.btn--full{ width:100%; }

.cards{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap:22px;
  margin-top: 22px;
}

.card{
  position:relative;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(10,18,38,.66), rgba(9,14,30,.54));
  border:1px solid rgba(255,255,255,.10);
  box-shadow: 0 22px 70px rgba(0,0,0,.48);
  padding: 20px 20px 18px;
  overflow:hidden;
  transition: transform .32s ease, border-color .32s ease, box-shadow .32s ease;
}
.card::before{
  content:"";
  position:absolute; inset:-2px;
  background:
    radial-gradient(900px 260px at 28% 0%, rgba(77,215,255,.16), transparent 58%),
    radial-gradient(900px 260px at 86% 10%, rgba(124,92,255,.16), transparent 62%),
    radial-gradient(900px 260px at 50% 100%, rgba(255,139,212,.10), transparent 62%);
  opacity: .9;
  pointer-events:none;
  transition: opacity .35s ease, transform .35s ease;
}
.card::after{
  content:"";
  position:absolute; inset:0;
  border-radius: 28px;
  border:1px solid rgba(255,255,255,.07);
  pointer-events:none;
  mask-image: radial-gradient(120% 100% at 18% 0%, #000 40%, transparent 75%);
}
.card > *{ position:relative; }
.card:hover{
  transform: translateY(-6px);
  border-color: rgba(255,255,255,.16);
  box-shadow: 0 28px 78px rgba(0,0,0,.54);
}
.card:hover::before{
  opacity: 1;
  transform: scale(1.02);
}

.card__head{
  display:grid;
  grid-template-columns: 44px 1fr;
  gap:12px;
  align-items:start;
  margin-bottom: 12px;
}
.card__icon{
  width:40px; height:40px;
  display:grid; place-items:center;
  border-radius: 14px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 12px 40px rgba(0,0,0,.35);
  font-size:18px;
  transition: transform .28s ease, box-shadow .28s ease, background .28s ease;
}
.card:hover .card__icon{
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 18px 42px rgba(0,0,0,.42);
  background: rgba(255,255,255,.08);
}
.card__title{
  margin:0;
  font-size:24px;
  font-weight:800;
  letter-spacing:-.03em;
  line-height:.95;
  text-transform:uppercase;
}
.card__subtitle{
  margin:8px 0 0;
  color:var(--muted);
  font-size:14px;
  font-weight:500;
  max-width: 48ch;
}

.card__tags{
  grid-column: 1 / -1;
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  margin-top: 10px;
}

.chip{
  padding:6px 10px;
  border-radius:999px;
  font-size:12px;
  font-weight:700;
  color: rgba(255,255,255,.66);
  border:1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.18);
  text-transform:uppercase;
  transition: transform .24s ease, border-color .24s ease, background .24s ease;
}
.card:hover .chip{
  transform: translateY(-1px);
  border-color: rgba(255,255,255,.14);
  background: rgba(255,255,255,.04);
}

.list{
  list-style:none;
  padding:0;
  margin: 0 0 14px;
  display:grid;
  gap:10px;
}
.list li{
  position:relative;
  padding-left: 20px;
  color: rgba(255,255,255,.78);
  font-size: 14px;
  font-weight:500;
}
.list li::before{
  content:"";
  position:absolute;
  left:0;
  top: .68em;
  width:8px; height:8px;
  border-radius:999px;
  background: linear-gradient(135deg, var(--g1), var(--g2));
  box-shadow: 0 0 0 4px rgba(77,215,255,.12);
  transform: translateY(-50%);
}

.badges{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin: 10px 0 14px;
}
.badge{
  padding:8px 12px;
  border-radius:999px;
  font-size:12px;
  font-weight:700;
  color: rgba(255,255,255,.70);
  border:1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.18);
  transition: transform .24s ease, border-color .24s ease, background .24s ease;
}
.card:hover .badge{
  transform: translateY(-1px);
  border-color: rgba(255,255,255,.14);
  background: rgba(255,255,255,.04);
}

.steps{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}
.step{
  padding: 18px;
  border-radius: var(--radius);
  border:1px solid rgba(255,255,255,.10);
  background: rgba(10,18,38,.34);
  box-shadow: 0 18px 50px rgba(0,0,0,.25);
  display:flex;
  gap:14px;
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease, background .3s ease;
}
.step:hover{
  transform: translateY(-4px);
  border-color: rgba(255,255,255,.15);
  box-shadow: 0 24px 58px rgba(0,0,0,.30);
  background: rgba(10,18,38,.42);
}
.step__num{
  font-family: var(--display);
  font-size: 24px;
  font-weight:800;
  opacity: .9;
  background: linear-gradient(135deg, rgba(77,215,255,.22), rgba(124,92,255,.22));
  border:1px solid rgba(255,255,255,.10);
  width:56px;
  height:56px;
  border-radius: 16px;
  display:grid;
  place-items:center;
  transition: transform .28s ease, box-shadow .28s ease;
}
.step:hover .step__num{
  transform: scale(1.05);
  box-shadow: 0 10px 28px rgba(0,0,0,.24);
}
.step h3{
  margin:0 0 6px;
  font-size:22px;
  font-weight:800;
  letter-spacing:-.03em;
  line-height:.95;
  text-transform:uppercase;
}
.step p{
  margin:0;
  color: var(--muted);
  font-size: 14px;
  font-weight:500;
}

.about{
  display:grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 420px);
  gap: 72px;
  align-items:center;
  margin-top: 10px;
  padding: 30px 0;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
}

.about__content{
  max-width: 560px;
}

.about__eyebrow{
  display:inline-block;
  margin-bottom: 22px;
  color: rgba(255,255,255,.68);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.about__title{
  margin: 0 0 28px;
  color: #ffffff;
  font-size: clamp(44px, 6vw, 74px);
  line-height: .98;
  letter-spacing: -0.04em;
  font-weight: 700;
  max-width: 620px;
}

.about__text{
  margin: 0;
  color: rgba(255,255,255,.72);
  font-size: 18px;
  line-height: 1.85;
  max-width: 560px;
}

.about__visual{
  position: relative;
  width: 100%;
  max-width: 420px;
  justify-self: end;
  overflow: hidden;
  border-radius: 0;
  border: none;
  background: transparent;
  box-shadow: none;
  min-height: 0;
  transition: transform .45s cubic-bezier(.2,.8,.2,1), filter .35s ease;
}
.about__visual:hover{
  transform: translateY(-4px);
  filter: brightness(1.04);
}

.about__visual::before{
  display:none;
}

.about__visual img{
  width:100%;
  aspect-ratio: 3 / 4;
  height:auto;
  min-height:0;
  object-fit:cover;
  object-position:center;
  display:block;
  transition: transform .65s cubic-bezier(.2,.8,.2,1);
}
.about__visual:hover img{
  transform: scale(1.025);
}

.contact{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items:stretch;
  border-radius: calc(var(--radius2) + 4px);
  border:1px solid rgba(255,255,255,.10);
  background: linear-gradient(180deg, rgba(10,18,38,.58), rgba(9,14,30,.48));
  box-shadow: var(--shadow);
  padding: 22px;
  overflow:hidden;
  position:relative;
}
.contact::before{
  content:"";
  position:absolute; inset:-2px;
  background: radial-gradient(900px 260px at 25% 0%, rgba(77,215,255,.16), transparent 60%),
              radial-gradient(900px 260px at 90% 0%, rgba(124,92,255,.16), transparent 62%),
              radial-gradient(900px 260px at 50% 100%, rgba(255,139,212,.10), transparent 65%);
  opacity:.85;
  pointer-events:none;
}
.contact > *{ position:relative; }

.contact__title{
  margin:0 0 10px;
  font-family: var(--display);
  font-weight:800;
  font-size: clamp(38px, 5vw, 64px);
  letter-spacing:-.04em;
  line-height:.92;
  text-transform:uppercase;
}
.contact__desc{
  margin:0 0 14px;
  color: var(--muted);
  font-weight:500;
}
.contact__actions{
  display:flex;
  align-items:center;
  gap:14px;
  flex-wrap:wrap;
  margin: 18px 0 8px;
}

.contact-icon{
  width:58px;
  height:58px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  box-shadow: 0 14px 34px rgba(0,0,0,.28);
  transition:.25s ease;
  color:rgba(255,255,255,.92);
}

.contact-icon svg{
  width:26px;
  height:26px;
  fill:currentColor;
  display:block;
  transition: transform .25s ease;
}

.contact-icon:hover{
  transform: translateY(-2px);
  border-color: rgba(255,255,255,.20);
  background: linear-gradient(135deg, rgba(77,215,255,.20), rgba(124,92,255,.22), rgba(255,139,212,.18));
  color:#ffffff;
}
.contact-icon:hover svg{
  transform: scale(1.06);
}

.form{
  border-radius: var(--radius2);
  border:1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.14);
  padding: 16px;
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.form:hover{
  transform: translateY(-2px);
  border-color: rgba(255,255,255,.14);
  box-shadow: 0 20px 48px rgba(0,0,0,.22);
}
.form__row{ display:grid; gap:6px; margin-bottom: 12px; }
label{
  font-size: 12px;
  font-weight:700;
  color: var(--muted2);
  text-transform:uppercase;
}
input, select, textarea{
  width:100%;
  border-radius: 14px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(10,18,38,.50);
  color: var(--text);
  padding: 13px 12px;
  outline:none;
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease, background .18s ease;
  font-family: var(--sans);
  font-size:15px;
  font-weight:500;
}
textarea{ resize: vertical; }
input:hover, select:hover, textarea:hover{
  background: rgba(10,18,38,.58);
}
input:focus, select:focus, textarea:focus{
  border-color: rgba(77,215,255,.42);
  box-shadow: 0 0 0 4px rgba(77,215,255,.12);
  transform: translateY(-1px);
}
.form__note{
  margin: 10px 2px 0;
  color: var(--muted2);
  font-size: 12px;
  font-weight:500;
}

.footer{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:12px;
  margin-top: 20px;
  color: rgba(255,255,255,.58);
  font-size: 13px;
  font-weight:600;
}
.footer__link{
  color: rgba(255,255,255,.70);
  transition: color .22s ease, opacity .22s ease;
}
.footer__link:hover{ color: rgba(255,255,255,.92); }
.footer__sep{ opacity:.5; }

.reveal{
  opacity:0;
  transform: translate3d(0, 22px, 0) scale(.985);
  filter: blur(8px);
  transition:
    opacity .9s cubic-bezier(.2,.8,.2,1),
    transform .9s cubic-bezier(.2,.8,.2,1),
    filter .9s cubic-bezier(.2,.8,.2,1);
  will-change: transform, opacity, filter;
}

.reveal[data-reveal="left"]{
  transform: translate3d(-46px, 0, 0) scale(.985);
}

.reveal[data-reveal="right"]{
  transform: translate3d(46px, 0, 0) scale(.985);
}

.reveal[data-reveal="up"]{
  transform: translate3d(0, 34px, 0) scale(.985);
}

.reveal[data-reveal="zoom"]{
  transform: scale(.94);
}

.reveal.is-visible{
  opacity:1;
  transform: translate3d(0,0,0) scale(1);
  filter: blur(0);
}

.cards .card.reveal:nth-child(1){ transition-delay: .04s; }
.cards .card.reveal:nth-child(2){ transition-delay: .10s; }
.cards .card.reveal:nth-child(3){ transition-delay: .16s; }
.cards .card.reveal:nth-child(4){ transition-delay: .22s; }
.cards .card.reveal:nth-child(5){ transition-delay: .28s; }
.cards .card.reveal:nth-child(6){ transition-delay: .34s; }

.steps .step.reveal:nth-child(1){ transition-delay: .04s; }
.steps .step.reveal:nth-child(2){ transition-delay: .10s; }
.steps .step.reveal:nth-child(3){ transition-delay: .16s; }
.steps .step.reveal:nth-child(4){ transition-delay: .22s; }

.hero .reveal:nth-child(1){ transition-delay: .02s; }
.hero .reveal:nth-child(2){ transition-delay: .10s; }
.hero .reveal:nth-child(3){ transition-delay: .18s; }
.hero .reveal:nth-child(4){ transition-delay: .26s; }

@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  *,
  *::before,
  *::after{
    animation:none !important;
    transition:none !important;
  }
  .reveal,
  .reveal[data-reveal="left"],
  .reveal[data-reveal="right"],
  .reveal[data-reveal="up"],
  .reveal[data-reveal="zoom"]{
    opacity:1 !important;
    transform:none !important;
    filter:none !important;
  }
}

@media (max-width: 980px){
  .pill{ display:none; }
  .cta--mini{ display:none; }

  .mobile-nav-toggle{
    display:inline-flex;
    width:46px;
    height:46px;
    border:1px solid rgba(255,255,255,.10);
    background: rgba(10,18,38,.38);
    border-radius:14px;
    align-items:center;
    justify-content:center;
    flex-direction:column;
    gap:5px;
    cursor:pointer;
    box-shadow: 0 10px 40px rgba(0,0,0,.35);
    padding:0;
    transition: transform .25s ease, border-color .25s ease, background .25s ease;
  }

  .mobile-nav-toggle:hover{
    transform: translateY(-1px);
    border-color: rgba(255,255,255,.14);
    background: rgba(10,18,38,.48);
  }

  .mobile-nav-toggle span{
    display:block;
    width:18px;
    height:2px;
    background: rgba(255,255,255,.88);
    border-radius:999px;
    transition:.25s ease;
  }

  .mobile-nav-toggle.is-open span:nth-child(1){
    transform: translateY(7px) rotate(45deg);
  }
  .mobile-nav-toggle.is-open span:nth-child(2){
    opacity:0;
  }
  .mobile-nav-toggle.is-open span:nth-child(3){
    transform: translateY(-7px) rotate(-45deg);
  }

  .mobile-nav{
    display:block;
    max-height:0;
    overflow:hidden;
    transition:max-height .3s ease;
  }

  .mobile-nav.is-open{
    max-height:320px;
  }

  .mobile-nav__panel{
    display:grid;
    gap:10px;
    padding:14px;
    margin-top:12px;
    border-radius:22px;
    border:1px solid rgba(255,255,255,.10);
    background: rgba(10,18,38,.58);
    box-shadow: 0 10px 40px rgba(0,0,0,.35);
    backdrop-filter: blur(14px);
  }

  .mobile-nav__link{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:13px 14px;
    border-radius:16px;
    border:1px solid rgba(255,255,255,.08);
    background: rgba(255,255,255,.03);
    color:var(--text);
    font-weight:700;
    text-transform:uppercase;
    transition: transform .22s ease, border-color .22s ease, background .22s ease;
  }

  .mobile-nav__link:hover{
    transform: translateY(-1px);
    border-color: rgba(255,255,255,.14);
    background: rgba(255,255,255,.05);
  }

  .mobile-nav__link::after{
    content:"→";
    opacity:.75;
  }

  .hero{ min-height: calc(100svh - var(--headerH)); padding: 50px 0 40px; }
  .hero__title{
    font-size: clamp(42px, 12vw, 62px);
    line-height:.94;
  }
  .section__title{
    font-size: clamp(30px, 9vw, 42px);
  }
  .contact__title{
    font-size: clamp(30px, 10vw, 44px);
    line-height:.94;
  }
  .contact-icon{
    width:54px;
    height:54px;
    border-radius:16px;
  }
  .contact-icon svg{
    width:24px;
    height:24px;
  }
  .about{
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 18px 0;
  }

  .about__content{
    max-width: 100%;
  }

  .about__title{
    font-size: clamp(34px, 10vw, 52px);
    line-height: 1.02;
    margin-bottom: 22px;
  }

  .about__text{
    font-size: 16px;
    line-height: 1.75;
    margin-bottom: 0;
  }

  .about__visual{
    max-width: 100%;
    justify-self: stretch;
  }

  .about__visual img{
    width: 100%;
    aspect-ratio: 4 / 5;
    min-height: 0;
  }

  .cards{ grid-template-columns: 1fr; }
  .steps{ grid-template-columns: 1fr; }
  .contact{ grid-template-columns: 1fr; }

  .cards .card.reveal:nth-child(1),
  .cards .card.reveal:nth-child(2),
  .cards .card.reveal:nth-child(3),
  .cards .card.reveal:nth-child(4),
  .cards .card.reveal:nth-child(5),
  .cards .card.reveal:nth-child(6),
  .steps .step.reveal:nth-child(1),
  .steps .step.reveal:nth-child(2),
  .steps .step.reveal:nth-child(3),
  .steps .step.reveal:nth-child(4){
    transition-delay: 0s;
  }
}

html{
  scroll-padding-top: calc(var(--headerH) + 26px);
}

#servicios,
#proceso,
#about,
#contacto{
  scroll-margin-top: calc(var(--headerH) + 26px);
}

#servicios{ padding-bottom: 130px; }
#proceso{ padding: 120px 0; }
#about{ padding: 120px 0; }
#contacto{ padding-top: 130px; }

/* palabra dinámica hero */

.hero-dynamic{
  display:inline-block;
  min-width: 0;
  margin-left: .04em;
  vertical-align: baseline;
}

.hero-dynamic__word{
  display:inline-block;
  background: linear-gradient(135deg, #4dd7ff 0%, #7c5cff 55%, #4dd7ff 100%);
  background-size: 100% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  text-shadow: none;
  will-change: transform, opacity;
}

.hero-dynamic__word.is-entering{
  animation: heroWordIn .55s cubic-bezier(.2,.8,.2,1) both;
}

.hero-dynamic__word.is-leaving{
  animation: heroWordOut .38s cubic-bezier(.4,0,.2,1) both;
}

@keyframes heroWordIn{
  0%{
    opacity:0;
    transform: translateY(18px);
    filter: blur(8px);
  }
  100%{
    opacity:1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes heroWordOut{
  0%{
    opacity:1;
    transform: translateY(0);
    filter: blur(0);
  }
  100%{
    opacity:0;
    transform: translateY(-14px);
    filter: blur(8px);
  }
}