:root{
  color-scheme: dark;
  --bg0:#07080b;
  --bg1:#0b0d14;
  --bg2:#0f1320;
  --text:#f3f4f6;
  --muted:#a1a1aa;
  --border:rgba(255,255,255,.10);
  --card:rgba(255,255,255,.04);
  --card2:rgba(255,255,255,.06);
  --shadow: 0 18px 60px rgba(0,0,0,.55);
  --radius: 18px;
  --radius-sm: 12px;
  --container: 1120px;
  --g: 16px;
  --g2: 24px;
  --g3: 40px;
  --g4: 72px;
  --ease: cubic-bezier(.2,.8,.2,1);
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: radial-gradient(1200px 800px at 15% 10%, rgba(var(--accent-rgb), .045), transparent 55%),
              radial-gradient(900px 700px at 85% 20%, rgba(255,255,255, .03), transparent 55%),
              linear-gradient(180deg, var(--bg0), var(--bg1));
  color:var(--text);
  overflow-x:hidden;
  padding-top: 76px;
}

html{
  scrollbar-width: thin;
  scrollbar-color: rgba(var(--accent-rgb), .55) rgba(255,255,255,.04);
}
html::-webkit-scrollbar{ width: 10px; height: 10px; }
html::-webkit-scrollbar-track{
  background: rgba(255,255,255,.03);
}
html::-webkit-scrollbar-thumb{
  background: rgba(var(--accent-rgb), .52);
  border-radius: 999px;
  border: 3px solid transparent;
  background-clip: padding-box;
}
html::-webkit-scrollbar-thumb:hover{ background: rgba(var(--accent-rgb), .66); }
html::-webkit-scrollbar-corner{ background: rgba(255,255,255,.03); }

body::before{
  content:"";
  position:fixed;
  inset:0;
  pointer-events:none;
  background:
    radial-gradient(720px 720px at var(--mx, 50%) var(--my, 20%), rgba(var(--accent-rgb), .16), transparent 62%),
    radial-gradient(240px 240px at var(--mx, 50%) var(--my, 20%), rgba(var(--accent-rgb), .22), transparent 70%);
  mix-blend-mode: screen;
  opacity:.24;
  transition: opacity .3s var(--ease);
}

body::after{
  content:"";
  position:fixed;
  inset:0;
  pointer-events:none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='.35'/%3E%3C/svg%3E");
  opacity: .035;
  mix-blend-mode: overlay;
}

.container{
  width:min(var(--container), calc(100% - 2*var(--g2)));
  margin-inline:auto;
}

.tiny{font-size:12px; line-height:1.5}
.muted{color:var(--muted)}

a{color:inherit; text-decoration:none}
a:hover{color:#fff}

.skip{
  position:absolute;
  left:-999px;
  top:10px;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(7,8,11,.88);
  color:#fff;
  z-index:1000;
}
.skip:focus{ left: 16px; }

.page-transition{
  position:fixed;
  inset:0;
  z-index:9999;
  pointer-events:none;
  background: radial-gradient(1200px 900px at 20% 10%, rgba(var(--accent-rgb), .10), transparent 60%),
              radial-gradient(900px 700px at 80% 20%, rgba(255,255,255, .04), transparent 60%),
              linear-gradient(180deg, rgba(7,8,11, .98), rgba(7,8,11, .98));
  transform: scaleY(0);
  transform-origin: top;
  transition: transform .75s var(--ease);
}
html.js .page-transition{ transform: scaleY(1); }
html.js.is-ready .page-transition{ transform: scaleY(0); }
html.js.is-leaving .page-transition{
  transform: scaleY(1);
  transform-origin: bottom;
}
.no-js .page-transition{ display:none; }

.site-header{
  position:fixed;
  left:0;
  right:0;
  top:0;
  z-index:100;
  display:flex;
  flex-direction:column;
  max-height: 100vh;
  backdrop-filter: blur(14px);
  background: rgba(7,8,11,.42);
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.nav{
  display:grid;
  align-items:center;
  grid-template-columns: auto minmax(0, 1fr) auto auto;
  padding: 14px 0;
  width: min(var(--container), calc(100% - 2*var(--g2)));
  margin-inline:auto;
  gap: var(--g);
  position: relative;
}
.brand{display:flex; align-items:center; gap:12px}
.brand__mark{
  width:44px; height:44px; border-radius: 14px;
  display:grid; place-items:center;
  background: rgba(var(--accent-rgb), .07);
  border: 1px solid rgba(var(--accent-rgb), .18);
  box-shadow: 0 10px 32px rgba(0,0,0,.35);
  color: rgba(var(--accent-rgb), .92);
  transition: transform .2s var(--ease), background .2s var(--ease), border-color .2s var(--ease);
}
.brand:hover .brand__mark{ transform: translateY(-1px); background: rgba(var(--accent-rgb), .09); border-color: rgba(var(--accent-rgb), .24); }
.brand__mark svg{ width: 26px; height: 26px; }
.brand__text{
  font-family: "Fraunces", "Space Grotesk", Inter, serif;
  font-weight:650;
  letter-spacing:-.02em;
}
.nav__links{
  display:flex;
  align-items:center;
  gap: 12px;
  grid-column: 2;
  justify-self: center;
  min-width: 0;
}
.nav__link{
  display:inline-flex;
  align-items:center;
  padding: 9px 10px;
  border-radius: 12px;
  color: rgba(243,244,246,.86);
  transition: background .2s var(--ease), color .2s var(--ease), transform .2s var(--ease);
}
.nav__link:hover{ background: rgba(255,255,255,.05); transform: translateY(-1px); }
.nav__link.is-active{ color:#fff; background: rgba(var(--accent-rgb), .06); border: 1px solid rgba(var(--accent-rgb), .16); }
.nav-services{
  position: relative;
}
.nav-services__trigger{
  border: 0;
  background: transparent;
  font: inherit;
  cursor: pointer;
  gap: 8px;
}
.nav-services__chevron{
  width: 14px;
  height: 14px;
  opacity: .8;
  transition: transform .2s var(--ease), opacity .2s var(--ease);
}
.nav-services__menu{
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translate(-50%, -8px);
  min-width: 460px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.12);
  background: linear-gradient(180deg, rgba(11,13,20,.98), rgba(7,8,11,.96));
  box-shadow: 0 28px 90px rgba(0,0,0,.48);
  padding: 8px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .2s var(--ease), transform .2s var(--ease), visibility .2s var(--ease);
  z-index: 180;
}
.nav-services__item{
  display:flex;
  align-items:center;
  gap: 10px;
  padding: 10px 11px;
  border-radius: 12px;
  color: rgba(243,244,246,.86);
  border: 1px solid transparent;
  transition: background .2s var(--ease), border-color .2s var(--ease), transform .2s var(--ease);
}
.nav-services__item:hover{
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.08);
  transform: translateY(-1px);
}
.nav-services__item.is-active{
  background: rgba(var(--accent-rgb), .10);
  border-color: rgba(var(--accent-rgb), .24);
  color:#fff;
}
.nav-services__icon{
  width: 26px;
  height: 26px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  display:inline-grid;
  place-items:center;
  color: rgba(var(--accent-rgb), .92);
  flex: 0 0 auto;
}
.nav-services__icon svg{
  width: 15px;
  height: 15px;
}
.nav-services.is-open .nav-services__menu{
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}
.nav-services.is-open .nav-services__chevron{
  transform: rotate(180deg);
  opacity: 1;
}
.nav__cta{
  padding: 10px 12px;
  border-radius: 14px;
  font-size: 14px;
  line-height: 1;
  white-space: nowrap;
}
.nav__actions{
  display:flex;
  align-items:center;
  flex-wrap: nowrap;
  gap: 10px;
  grid-column: 3;
  justify-self: end;
  min-width: 0;
  margin-left: 0;
}
.nav__icon-btn{
  width: 42px;
  height: 42px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
  color: #fff;
  display: inline-grid;
  place-items: center;
  transition: transform .2s var(--ease), background .2s var(--ease), border-color .2s var(--ease);
}
.nav__icon-btn:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.20);
}
.nav__icon-btn:focus-visible{
  outline: none;
  border-color: rgba(var(--accent-rgb), .34);
  box-shadow: 0 0 0 4px rgba(var(--accent-rgb), .12);
}
.nav__icon-btn svg{
  width: 18px;
  height: 18px;
}

@media (hover: hover){
  .has-tooltip::after{
    content: attr(data-tooltip);
    position: absolute;
    left: 50%;
    top: calc(100% + 10px);
    transform: translate(-50%, -4px);
    padding: 6px 9px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,.14);
    background: rgba(7,8,11,.92);
    color: #fff;
    font-size: 11px;
    letter-spacing: -.01em;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity .18s var(--ease), transform .18s var(--ease);
    z-index: 200;
  }
  .has-tooltip:hover::after,
  .has-tooltip:focus-visible::after{
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

.nav__toggle{
  display:none;
  appearance:none;
  border:0;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 14px;
  padding: 10px 12px;
  color:#fff;
  grid-column: 4;
}
.nav__toggle-lines{
  display:block;
  width:18px; height:12px;
  position:relative;
}
.nav__toggle-lines::before,
.nav__toggle-lines::after{
  content:"";
  position:absolute;
  left:0;
  width:100%; height:2px;
  background:#fff;
  border-radius:999px;
  transition: transform .2s var(--ease), top .2s var(--ease), opacity .2s var(--ease);
}
.nav__toggle-lines::before{ top:1px; }
.nav__toggle-lines::after{ top:9px; }
.nav__toggle[aria-expanded="true"] .nav__toggle-lines::before{ top:5px; transform: rotate(45deg); }
.nav__toggle[aria-expanded="true"] .nav__toggle-lines::after{ top:5px; transform: rotate(-45deg); }

.nav-drawer{
  border-top: 1px solid rgba(255,255,255,.06);
  background: linear-gradient(180deg, rgba(7,8,11,.90), rgba(7,8,11,.78));
  flex: 1 1 auto;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}
.scroll-indicator{
  height: 3px;
  background: rgba(255,255,255,.06);
  overflow: hidden;
}
.scroll-indicator__bar{
  display:block;
  width: 100%;
  height: 100%;
  transform: scaleX(0);
  transform-origin: left center;
  background: linear-gradient(90deg, rgba(var(--accent-rgb), .68), rgba(var(--accent-rgb), .96));
  box-shadow: 0 0 18px rgba(var(--accent-rgb), .46);
}
.nav-drawer__inner{
  max-width: var(--container);
  margin-inline:auto;
  padding: 12px var(--g2) 20px;
  display:grid;
  gap: 14px;
}
.nav-drawer__details{
  display:block;
}
.nav-drawer__link--summary{
  list-style:none;
  cursor:pointer;
}
.nav-drawer__link--summary::-webkit-details-marker{ display:none; }
.nav-drawer__chevron{
  margin-left:auto;
  width: 16px;
  height: 16px;
  opacity: .85;
  transition: transform .2s var(--ease);
}
.nav-drawer__details[open] .nav-drawer__chevron{
  transform: rotate(180deg);
}
.nav-drawer__submenu{
  margin-top: 8px;
  display:grid;
  gap: 8px;
}

.nav-drawer__group{
  display:grid;
  gap: 8px;
}
.nav-drawer__group-title{
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(243,244,246,.58);
  padding: 0 2px;
}
.nav-drawer__link{
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  display:flex;
  align-items:center;
  gap: 10px;
  color: rgba(243,244,246,.88);
  transition: background .2s var(--ease), border-color .2s var(--ease), transform .2s var(--ease), box-shadow .2s var(--ease);
}
.nav-drawer__link:hover{
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.16);
  transform: translateY(-1px);
}
.nav-drawer__link.is-active{
  background: rgba(var(--accent-rgb), .08);
  border-color: rgba(var(--accent-rgb), .24);
  box-shadow: 0 16px 44px rgba(0,0,0,.34);
}
.nav-drawer__icon{
  width: 28px;
  height: 28px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  display: inline-grid;
  place-items: center;
  color: rgba(var(--accent-rgb), .92);
  flex: 0 0 auto;
}
.nav-drawer__icon svg{
  width: 16px;
  height: 16px;
}

main{display:block}

.hero{
  padding: clamp(56px, 7vw, 96px) 0 46px;
}
.hero__grid{
  display:grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, .8fr);
  gap: var(--g4);
  align-items:center;
}
.hero__grid > *{ min-width: 0; }
.kicker{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.10);
  color: rgba(243,244,246,.86);
  font-size: 13px;
}
.kicker__dot{
  width:8px; height:8px; border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(var(--accent-rgb), .10);
}

.h1{
  margin: 18px 0 12px;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-weight: 700;
  letter-spacing: -0.04em;
  font-size: clamp(40px, 5.8vw, 72px);
  line-height: 1.02;
}
.grad{
  background: linear-gradient(90deg, #fff, rgba(255,255,255,.86), rgba(var(--accent-rgb), .86));
  -webkit-background-clip: text;
  background-clip:text;
  color: transparent;
}
.lead{
  font-size: 18px;
  line-height: 1.65;
  color: rgba(243,244,246,.84);
  max-width: 54ch;
}
.hero__actions{
  display:flex;
  gap: 12px;
  margin-top: 22px;
  flex-wrap:wrap;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  color:#fff;
  font-weight: 600;
  letter-spacing: -.01em;
  transition: transform .2s var(--ease), background .2s var(--ease), border-color .2s var(--ease);
  will-change: transform;
}
.btn:hover{ transform: translateY(-1px); background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.18); }
.btn--primary{
  background: linear-gradient(180deg, rgba(var(--accent-rgb), .96), rgba(var(--accent-rgb), .86));
  border-color: rgba(var(--accent-rgb), .28);
  color: var(--on-accent);
  box-shadow: 0 18px 50px rgba(0,0,0,.35);
}
.btn--primary:hover{ background: linear-gradient(180deg, rgba(var(--accent-rgb), 1), rgba(var(--accent-rgb), .90)); }
.btn--ghost{
  background: transparent;
  border-color: rgba(255,255,255,.14);
}

.hero__panel{
  --px: 50%;
  --py: 18%;
  border-radius: calc(var(--radius) + 6px);
  border: 1px solid transparent;
  background:
    radial-gradient(900px 520px at 15% 20%, rgba(var(--accent-rgb), .055), transparent 62%) padding-box,
    linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02)) padding-box,
    linear-gradient(135deg, rgba(var(--accent-rgb), .24), rgba(255,255,255,.12), rgba(var(--accent-rgb), .12)) border-box;
  box-shadow: var(--shadow);
  padding: 18px;
  position:relative;
  overflow:hidden;
  transform-style: preserve-3d;
}
.hero__panel::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(520px 380px at var(--px) var(--py), rgba(var(--accent-rgb), .18), transparent 62%),
    linear-gradient(120deg, transparent 0%, rgba(255,255,255,.10) 22%, transparent 46%);
  background-size: 100% 100%, 240% 100%;
  background-position: 0 0, -60% 0;
  opacity:.75;
  mix-blend-mode: screen;
  pointer-events:none;
  animation: panelSheen 10s linear infinite;
}
.hero__panel > *{ position:relative; z-index:1; }

@keyframes panelSheen{
  to{ background-position: 0 0, 160% 0; }
}
.hero__panel-inner{
  display:grid;
  gap: 10px;
  transform-style: preserve-3d;
  will-change: transform;
  transition: transform .25s var(--ease);
}
.hero__panel.is-tilting .hero__panel-inner{ transition: none; }
.metric{
  display:flex;
  align-items:baseline;
  justify-content:space-between;
  padding: 14px 14px;
  border-radius: 16px;
  background: rgba(0,0,0,.22);
  border: 1px solid rgba(255,255,255,.08);
}
.metric__label{ color: rgba(243,244,246,.74); font-size: 13px; }
.metric__value{
  font-family: "Space Grotesk", Inter, sans-serif;
  font-weight: 650;
  letter-spacing: -.02em;
  font-size: 18px;
}
.spec-row{
  margin-top: 6px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,.08);
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 12px;
}
.spec{
  display:flex;
  align-items:center;
  gap: 10px;
  color: rgba(243,244,246,.80);
  font-size: 12px;
  letter-spacing:-.01em;
}
.spec__icon{
  width: 32px;
  height: 32px;
  border-radius: 14px;
  border: 1px solid rgba(var(--accent-rgb), .18);
  background: rgba(var(--accent-rgb), .08);
  display:grid;
  place-items:center;
  color: rgba(var(--accent-rgb), .90);
  flex: 0 0 auto;
}
.spec__icon svg{ width: 16px; height: 16px; }

.section{
  padding: 54px 0;
}
.section--tight{
  padding: 32px 0;
}
.section__head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap: var(--g2);
  margin-bottom: 22px;
}
.h2{
  margin:0;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: clamp(26px, 3vw, 38px);
  letter-spacing:-.03em;
}
.section__sub{ margin:0; max-width: 60ch; color: rgba(243,244,246,.78); line-height:1.7; }

.logos{
  display:flex;
  flex-wrap:wrap;
  gap: 10px;
  align-items:center;
}
.logo{
  display:inline-flex;
  align-items:center;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  color: rgba(243,244,246,.78);
  font-family: "Space Grotesk", Inter, sans-serif;
  font-weight: 650;
  letter-spacing: -.02em;
  font-size: 13px;
}

.stat__value{
  font-family: "Space Grotesk", Inter, sans-serif;
  font-weight: 700;
  letter-spacing:-.03em;
  font-size: 34px;
  margin: 0 0 6px;
}

.split{
  display:grid;
  grid-template-columns: .95fr 1.05fr;
  gap: var(--g4);
  align-items:start;
}
.split > *{ min-width: 0; }
.split__sticky{
  position: sticky;
  top: 92px;
  align-self:start;
  padding: 18px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
}
.split__sticky .kicker{ margin-bottom: 12px; }

.cards{
  display:grid;
  gap: 12px;
}
.card{
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.10);
  background: linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.02));
  padding: 18px;
  box-shadow: 0 18px 70px rgba(0,0,0,.35);
  position:relative;
  overflow:hidden;
}
.card::before{
  content:"";
  position:absolute;
  inset:-1px;
  background: radial-gradient(520px 320px at 10% 0%, rgba(var(--accent-rgb), .07), transparent 58%);
  opacity:.7;
  pointer-events:none;
}
.card__title{
  display:flex; align-items:center; justify-content:space-between; gap:12px;
  font-weight: 650;
  font-family: "Space Grotesk", Inter, sans-serif;
  letter-spacing:-.02em;
  margin: 0 0 6px;
}
.card__desc{ margin:0; color: rgba(243,244,246,.80); line-height:1.7; }
.card__meta{ margin-top: 12px; display:flex; flex-wrap:wrap; gap: 8px; }

.service-tile{
  transition: transform .2s var(--ease), background .2s var(--ease), border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.service-tile:hover{
  transform: translateY(-2px);
  border-color: rgba(var(--accent-rgb), .22);
  background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.02));
  box-shadow: 0 22px 80px rgba(0,0,0,.42);
}
.service-tile:focus-visible{
  outline: none;
  border-color: rgba(var(--accent-rgb), .32);
  box-shadow: 0 0 0 4px rgba(var(--accent-rgb), .12), 0 22px 80px rgba(0,0,0,.42);
}
.service-tile__cta{
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,.08);
  display:flex;
  align-items:center;
  justify-content:space-between;
  font-size: 13px;
  color: rgba(243,244,246,.76);
  letter-spacing: -.01em;
}
.service-tile:hover .service-tile__cta{ color:#fff; }
.pill{
  display:inline-flex;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(0,0,0,.22);
  border: 1px solid rgba(255,255,255,.09);
  color: rgba(243,244,246,.82);
  font-size: 12px;
}
.arrow{
  width: 34px; height: 34px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  display:grid; place-items:center;
  flex: 0 0 auto;
}

.marquee{
  margin-top: 18px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.02);
  padding-inline: 16px;
  overflow:hidden;
}
.marquee__track{
  display:flex;
  gap: 0;
  width: max-content;
  padding: 14px 0;
  white-space: nowrap;
  animation: marquee 26s linear infinite;
}
.marquee__item{
  display:inline-flex;
  align-items:center;
  color: rgba(243,244,246,.75);
  font-weight: 600;
  letter-spacing: -.01em;
}
.marquee__item + .marquee__item::before{
  content:"|";
  color: rgba(var(--accent-rgb), .72);
  margin: 0 12px;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.hscroll{
  position:relative;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.02);
  overflow:hidden;
}
.hscroll__track{
  display:flex;
  gap: 16px;
  padding: 18px;
  width: max-content;
}
.case-card{
  display:block;
  width: min(460px, calc(100vw - 70px));
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.10);
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  padding: 18px;
  box-shadow: 0 18px 60px rgba(0,0,0,.35);
  transition: transform .2s var(--ease), background .2s var(--ease), border-color .2s var(--ease);
}
.case-card:hover{
  transform: translateY(-1px);
  background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.02));
  border-color: rgba(255,255,255,.14);
}
.case-card h3{ margin: 0 0 8px; font-family:"Space Grotesk", Inter, sans-serif; letter-spacing:-.02em; }
.case-card p{ margin:0; color: rgba(243,244,246,.78); line-height:1.7; }
.case-card .pill{ margin-top: 12px; }

.grid-3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.grid-2{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.grid-4{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.icon{
  width: 34px;
  height: 34px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  display:inline-grid;
  place-items:center;
  margin-right: 10px;
  color: rgba(var(--accent-rgb), .88);
  flex: 0 0 auto;
}
.icon svg{ width: 18px; height: 18px; }
.title-with-icon{ display:inline-flex; align-items:center; min-width: 0; }

.table-wrap{
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.02);
  overflow:auto;
}
.compare{
  width: 100%;
  border-collapse: collapse;
  min-width: 620px;
}
.compare th,
.compare td{
  padding: 12px 14px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.compare thead th{
  font-size: 13px;
  color: rgba(243,244,246,.78);
  font-family: "Space Grotesk", Inter, sans-serif;
  font-weight: 650;
  letter-spacing: -.02em;
  text-align:left;
}
.compare tbody td{ color: rgba(243,244,246,.82); }
.compare tbody td:nth-child(n+2){
  text-align:center;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-weight: 650;
}
.compare tbody tr:hover{ background: rgba(255,255,255,.03); }
.compare tbody tr:last-child td{ border-bottom: 0; }

.pricing-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.pricing-grid--2{ grid-template-columns: repeat(2, 1fr); }
.pricing-card{
  display:flex;
  flex-direction:column;
  gap: 12px;
  border-radius: calc(var(--radius) + 2px);
  border: 1px solid rgba(255,255,255,.10);
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  padding: 18px;
  box-shadow: 0 18px 70px rgba(0,0,0,.35);
  position:relative;
  overflow:hidden;
  transition: transform .2s var(--ease), border-color .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease);
}
.pricing-card::before{
  content:"";
  position:absolute;
  inset:-1px;
  background: radial-gradient(520px 320px at 10% 0%, rgba(var(--accent-rgb), .07), transparent 58%);
  opacity:.7;
  pointer-events:none;
}
.pricing-card > *{ position:relative; z-index:1; }
.pricing-card:hover{
  transform: translateY(-2px);
  border-color: rgba(var(--accent-rgb), .20);
  box-shadow: 0 26px 90px rgba(0,0,0,.42);
  background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.02));
}
.pricing-card:focus-visible{
  outline:none;
  border-color: rgba(var(--accent-rgb), .34);
  box-shadow: 0 0 0 4px rgba(var(--accent-rgb), .12), 0 26px 90px rgba(0,0,0,.42);
}
.pricing-card__badge{
  position:absolute;
  top: 14px;
  right: 14px;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid rgba(var(--accent-rgb), .22);
  background: rgba(var(--accent-rgb), .08);
  color:#fff;
  font-size: 12px;
  font-weight: 650;
  letter-spacing:-.01em;
}
.pricing-card__name{
  font-family: "Space Grotesk", Inter, sans-serif;
  font-weight: 700;
  letter-spacing:-.03em;
  font-size: 18px;
}
.pricing-card__sub{
  margin-top: 6px;
  color: rgba(243,244,246,.78);
  font-size: 13px;
  line-height: 1.55;
}
.pricing-card__price{
  font-family: "Space Grotesk", Inter, sans-serif;
  font-weight: 750;
  letter-spacing:-.03em;
  font-size: 34px;
  margin-top: 4px;
}
.pricing-card__per{
  font-size: 14px;
  font-weight: 650;
  letter-spacing:-.01em;
  color: rgba(243,244,246,.74);
  margin-left: 6px;
}
.pricing-card__list{ margin-top: 2px; }
.pricing-card__action{
  margin-top: auto;
  padding-top: 6px;
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}
.pricing-card__btn{
  width: 100%;
  justify-content:center;
  white-space: nowrap;
  line-height: 1.2;
  padding: 12px 12px;
}
.pricing-card__btn--secondary{
  opacity:.9;
}
.pricing-card--featured{
  border-color: rgba(var(--accent-rgb), .22);
  background: radial-gradient(900px 520px at 15% 20%, rgba(var(--accent-rgb), .10), transparent 62%),
              linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.02));
}

.quote{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: var(--g4);
  align-items:start;
}
.quote > *{ min-width: 0; }

.booking-panel{
  position:relative;
  overflow:hidden;
}
.booking-panel::before{
  content:"";
  position:absolute;
  inset:-1px;
  background:
    radial-gradient(720px 420px at 10% 0%, rgba(var(--accent-rgb), .10), transparent 62%),
    linear-gradient(120deg, transparent 0%, rgba(255,255,255,.08) 24%, transparent 48%);
  opacity:.65;
  mix-blend-mode: screen;
  pointer-events:none;
  animation: bookingSheen 14s linear infinite;
}
.booking-panel > *{ position:relative; z-index:1; }
@keyframes bookingSheen{
  to{ transform: translateX(18%); }
}

.booking-ui{
  display:grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 12px;
  align-items:start;
}
.booking-cal,
.booking-slots{
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(0,0,0,.18);
  padding: 14px;
}
.booking-cal__head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 10px;
  margin-bottom: 10px;
}
.booking-cal__month{
  font-family: "Space Grotesk", Inter, sans-serif;
  font-weight: 700;
  letter-spacing:-.03em;
  font-size: 14px;
  color:#fff;
}
.booking-cal__nav{
  width: 38px;
  height: 38px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  color: rgba(243,244,246,.92);
  display:grid;
  place-items:center;
  cursor:pointer;
  transition: transform .2s var(--ease), background .2s var(--ease), border-color .2s var(--ease);
}
.booking-cal__nav svg{ width: 18px; height: 18px; }
.booking-cal__nav:hover{ transform: translateY(-1px); background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.14); }
.booking-cal__nav:disabled{ opacity:.45; cursor:not-allowed; transform:none; }

.booking-cal__dows{
  display:grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
  margin-bottom: 6px;
  color: rgba(243,244,246,.62);
  font-size: 11px;
  letter-spacing:.08em;
  text-transform: uppercase;
}
.booking-cal__dows span{ text-align:center; }

.booking-cal__grid{
  display:grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
}
.booking-cal__blank{
  aspect-ratio: 1 / 1;
}
.booking-cal__day{
  aspect-ratio: 1 / 1;
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  color: rgba(243,244,246,.86);
  font-family: "Space Grotesk", Inter, sans-serif;
  font-weight: 650;
  letter-spacing:-.02em;
  cursor:pointer;
  transition: transform .2s var(--ease), background .2s var(--ease), border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.booking-cal__day:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,.05);
  border-color: rgba(255,255,255,.16);
}
.booking-cal__day:focus-visible{
  outline:none;
  border-color: rgba(var(--accent-rgb), .34);
  box-shadow: 0 0 0 4px rgba(var(--accent-rgb), .12);
}
.booking-cal__day:disabled{
  opacity:.26;
  cursor:not-allowed;
  transform:none;
}
.booking-cal__day.is-today{
  border-color: rgba(var(--accent-rgb), .20);
  box-shadow: inset 0 0 0 1px rgba(var(--accent-rgb), .12);
}
.booking-cal__day.is-selected{
  background: rgba(var(--accent-rgb), .10);
  border-color: rgba(var(--accent-rgb), .32);
  color:#fff;
  box-shadow: 0 0 0 4px rgba(var(--accent-rgb), .10), 0 18px 50px rgba(0,0,0,.25);
}
.booking-cal__hint{ margin-top: 10px; }

.booking-slots__head{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap: 12px;
  margin-bottom: 10px;
}
.booking-slots__title{
  font-family: "Space Grotesk", Inter, sans-serif;
  font-weight: 700;
  letter-spacing:-.03em;
  font-size: 14px;
}
.booking-slots__list{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.booking-slot{
  padding: 12px 12px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  color:#fff;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-weight: 650;
  letter-spacing:-.02em;
  cursor:pointer;
  transition: transform .2s var(--ease), background .2s var(--ease), border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.booking-slot:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,.05);
  border-color: rgba(255,255,255,.16);
}
.booking-slot:focus-visible{
  outline:none;
  border-color: rgba(var(--accent-rgb), .34);
  box-shadow: 0 0 0 4px rgba(var(--accent-rgb), .12);
}
.booking-slot.is-selected{
  background: radial-gradient(700px 420px at 20% 10%, rgba(var(--accent-rgb), .18), transparent 70%),
              rgba(var(--accent-rgb), .10);
  border-color: rgba(var(--accent-rgb), .34);
  box-shadow: 0 0 0 4px rgba(var(--accent-rgb), .10), 0 18px 50px rgba(0,0,0,.25);
}
.panel{
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.10);
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  box-shadow: var(--shadow);
  padding: 18px;
}
.preset-banner{
  display:flex;
  align-items:center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 16px;
  border: 1px solid rgba(var(--accent-rgb), .20);
  background: rgba(var(--accent-rgb), .06);
  color: rgba(243,244,246,.88);
  font-size: 13px;
  letter-spacing:-.01em;
  margin-bottom: 12px;
}
.preset-banner__dot{
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(var(--accent-rgb), .10);
  flex: 0 0 auto;
}
.step-title{
  margin: 6px 0 10px;
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(243,244,246,.66);
}
.checklist{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap: 8px;
}
.checklist li{
  position:relative;
  padding-left: 18px;
  color: rgba(243,244,246,.78);
  font-size: 13px;
  line-height: 1.55;
}
.checklist li::before{
  content:"✓";
  position:absolute;
  left:0;
  top:0;
  color: rgba(var(--accent-rgb), .85);
}
.field{
  display:grid;
  gap: 6px;
  margin-bottom: 12px;
}
label{ font-size: 13px; color: rgba(243,244,246,.78); }
input:not([type='checkbox']):not([type='radio']):not([type='range']):not([type='hidden']),
textarea,
select{
  width:100%;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.20);
  color: var(--text);
  outline: none;
}
input[type='checkbox'],
input[type='radio'],
input[type='range']{
  accent-color: var(--accent);
}
input[type='range']{ width: 100%; }
textarea{ min-height: 120px; resize: vertical; }
input:not([type='checkbox']):not([type='radio']):not([type='range']):not([type='hidden']):focus,
textarea:focus,
select:focus{ border-color: rgba(var(--accent-rgb), .45); box-shadow: 0 0 0 4px rgba(var(--accent-rgb), .12); }

.option-grid{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.opt{
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  padding: 12px;
  display:flex;
  gap: 10px;
  align-items:flex-start;
  cursor:pointer;
  transition: transform .2s var(--ease), background .2s var(--ease), border-color .2s var(--ease);
}
.opt:hover{ transform: translateY(-1px); background: rgba(255,255,255,.05); border-color: rgba(255,255,255,.14); }
.opt.is-selected{
  border-color: rgba(var(--accent-rgb), .30);
  background: rgba(var(--accent-rgb), .06);
  box-shadow: 0 18px 60px rgba(0,0,0,.32);
}
.opt.is-selected .opt__title{ color:#fff; }
.opt.is-selected .opt__desc{ color: rgba(243,244,246,.82); }
.opt input{ width:auto; margin-top: 3px; }
.opt__title{ font-weight: 650; font-family:"Space Grotesk", Inter, sans-serif; letter-spacing:-.02em; }
.opt__desc{ font-size: 13px; color: rgba(243,244,246,.76); line-height:1.55; margin-top: 2px; }
.opt__extra{
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(255,255,255,.08);
  display:none;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
}
.opt__extra-label{ font-size: 12px; color: rgba(243,244,246,.74); }
.opt__extra-input{
  width: 92px;
  padding: 10px 10px;
  border-radius: 12px;
}
.opt.is-selected .opt__extra{ display:flex; }

.summary{
  position: sticky;
  top: 92px;
}
.money{
  font-family: "Space Grotesk", Inter, sans-serif;
  font-weight: 700;
  letter-spacing:-.03em;
  font-size: 32px;
}
.summary__row{
  display:flex;
  align-items:baseline;
  justify-content:space-between;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.summary__row:last-child{ border-bottom:0; }

.footer{
  padding: 46px 0 44px;
  border-top: 1px solid rgba(255,255,255,.06);
  background: rgba(7,8,11,.55);
}
.footer__panel{
  border-radius: calc(var(--radius) + 4px);
  border: 1px solid rgba(255,255,255,.10);
  background: radial-gradient(900px 520px at 15% 20%, rgba(var(--accent-rgb), .08), transparent 62%),
              linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.02));
  padding: 18px;
  box-shadow: 0 22px 90px rgba(0,0,0,.42);
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap: var(--g3);
  margin-bottom: 26px;
  position:relative;
  overflow:hidden;
}
.footer__panel > *{ position:relative; z-index:1; }
.footer__panel::before{
  content:"";
  position:absolute;
  inset:-1px;
  background: radial-gradient(700px 520px at 80% 0%, rgba(var(--accent-rgb), .10), transparent 60%);
  opacity:.7;
  pointer-events:none;
  z-index:0;
}
.footer__panel-actions{
  display:flex;
  gap: 12px;
  flex-wrap:wrap;
  justify-content:flex-end;
}
.footer__grid{
  display:grid;
  grid-template-columns: 1.4fr .8fr 1fr;
  gap: var(--g4);
  align-items:start;
}
.footer__grid > *{ min-width: 0; }
.footer__links{
  display:grid;
  gap: 10px;
}
.footer__links a{
  color: rgba(243,244,246,.78);
  padding: 8px 0;
}
.footer__links a:hover{ color:#fff; }
.footer__brand{ display:flex; align-items:center; gap: 12px; margin-bottom: 8px; }
.footer__name{ font-family:"Space Grotesk", Inter, sans-serif; font-weight: 700; letter-spacing:-.03em; }
.footer__tagline{ color: rgba(243,244,246,.76); font-size: 13px; }
.footer__contact-items{ display:grid; gap: 10px; }
.footer__contact-item{ display:flex; align-items:center; gap: 10px; color: rgba(243,244,246,.86); }
.footer__icon{
  width: 32px;
  height: 32px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  display:inline-grid;
  place-items:center;
  color: rgba(var(--accent-rgb), .88);
  flex: 0 0 auto;
}
.footer__icon svg{ width: 16px; height: 16px; }
.footer__bottom{
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.06);
}
.footer__legal{
  margin:0;
  display:flex;
  align-items:baseline;
  flex-wrap:wrap;
  gap: 0;
}
.footer__legal-link{
  display:inline-flex;
  align-items:center;
  color: rgba(243,244,246,.78);
  text-decoration:none;
}
.footer__legal-link::before{
  content:"·";
  margin: 0 8px;
  color: rgba(243,244,246,.58);
}
.footer__legal-link:hover{ color:#fff; }
.footer__legal-link:focus-visible{
  outline:none;
  text-decoration:underline;
  text-underline-offset: 3px;
}

.reveal{ opacity:1; transform:none; }
html.js .reveal{ opacity:0; transform: translateY(18px); }
html.js [data-animate='reveal']{ opacity:0; transform: translateY(18px); }

.process-step{
  padding: 14px 14px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  transition: background .2s var(--ease), border-color .2s var(--ease), transform .2s var(--ease), box-shadow .2s var(--ease);
}
.process-step.is-active{
  border-color: rgba(var(--accent-rgb), .26);
  background: rgba(var(--accent-rgb), .06);
  box-shadow: 0 18px 60px rgba(0,0,0,.35);
  transform: translateY(-1px);
}
.process-step + .process-step{ margin-top: 10px; }

.faq{
  display:grid;
  gap: 10px;
}
.faq details{
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  overflow:hidden;
}
.faq summary{
  cursor:pointer;
  padding: 14px 14px;
  list-style:none;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-weight: 650;
  letter-spacing: -.02em;
}
.faq summary::-webkit-details-marker{ display:none; }
.faq__content{
  padding: 0 14px 14px;
  color: rgba(243,244,246,.78);
  line-height:1.75;
}
.faq details[open]{ border-color: rgba(var(--accent-rgb), .22); background: rgba(var(--accent-rgb), .05); }

.toast{
  position: fixed;
  right: 16px;
  bottom: 16px;
  width: min(360px, calc(100% - 32px));
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(7,8,11,.78);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 60px rgba(0,0,0,.45);
  color: #fff;
  opacity: 0;
  transform: translateY(14px);
  pointer-events: none;
  transition: transform .25s var(--ease), opacity .25s var(--ease), border-color .25s var(--ease);
  z-index: 10001;
}
.toast.is-show{
  opacity: 1;
  transform: translateY(0);
}
.toast.is-error{
  border-color: rgba(255, 107, 107, .45);
}
.toast__title{
  font-family: "Space Grotesk", Inter, sans-serif;
  font-weight: 650;
  letter-spacing: -.02em;
  margin-bottom: 2px;
}
.toast__msg{
  color: rgba(243,244,246,.80);
  font-size: 13px;
  line-height: 1.55;
}

@media (max-width: 980px){
  .nav__links{ display:none; }
  .nav__toggle{ display:inline-flex; }
  .brand__text{ display:none; }
  .nav{ gap: 10px; }
  .nav__actions{ gap: 6px; }
  .nav__toggle{ padding: 9px 10px; border-radius: 12px; }
  .nav__icon-btn{ width: 38px; height: 38px; border-radius: 12px; }
  .nav__cta{ padding: 8px 9px; border-radius: 12px; font-size: 12px; }
  .hero__grid{ grid-template-columns: 1fr; gap: 18px; }
  .split{ grid-template-columns: 1fr; gap: 16px; }
  .split__sticky{ position:relative; top:auto; }
  .quote{ grid-template-columns: 1fr; }
  .booking-ui{ grid-template-columns: 1fr; }
  .booking-slots__list{ grid-template-columns: repeat(2, 1fr); }
  .summary{ position:relative; top:auto; }
  .option-grid{ grid-template-columns: 1fr; }
  .grid-3{ grid-template-columns: 1fr; }
  .grid-2{ grid-template-columns: 1fr; }
  .grid-4{ grid-template-columns: 1fr; }
  .pricing-grid{ grid-template-columns: 1fr; }
  .footer__panel{ flex-direction:column; align-items:flex-start; }
  .footer__panel-actions{ justify-content:flex-start; }
  .footer__grid{ grid-template-columns: 1fr; gap: 18px; }
}

@media (max-width: 620px){
  .quote{ gap: 18px; }
  .panel{ padding: 14px; }
  .summary{ order: 0; }
  textarea{ min-height: 96px; }
  .pricing-card__action{ grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce){
  *{ scroll-behavior:auto !important; }
  body::before{ opacity:.22; }
  .marquee__track{ animation: none; }
  .page-transition{ transition: none; }
  .hero__panel::before{ animation: none; }
  .hero__panel-inner{ transition: none; }
}
