/*
  Nomad Landing (Symfony 6)
  Clean, SEO-friendly, framework-free CSS
*/

:root{
  --bg: #ffffff;
  --slate-50: #f8fafc;
  --slate-100:#f1f5f9;
  --slate-200:#e2e8f0;
  --slate-300:#cbd5e1;
  --slate-400:#94a3b8;
  --slate-500:#64748b;
  --slate-600:#475569;
  --slate-700:#334155;
  --slate-800:#1f2937;
  --slate-900:#0f172a;

  --orange-400:#fb923c;
  --orange-500:#f97316;
  --orange-600:#ea580c;
  --amber-400:#fbbf24;
  --amber-500:#f59e0b;

  --radius-xl: 24px;
  --radius-2xl: 28px;
  --shadow-lg: 0 20px 45px rgba(15, 23, 42, 0.12);
  --shadow-md: 0 12px 30px rgba(15, 23, 42, 0.10);
  --shadow-xl: 0 28px 70px rgba(15, 23, 42, 0.16);
  --shadow-soft: 0 10px 30px rgba(15, 23, 42, 0.06);
  --shadow-orange: 0 18px 38px rgba(249,115,22,.18);

  --container: 1120px;
  --nav-offset: 92px;
}

*{ box-sizing: border-box; }

html{
  scroll-behavior:smooth;
  font-size: 16px;
  scroll-padding-top: var(--nav-offset);
}

@media (max-width: 820px){
  :root{ --nav-offset: 104px; }
}

body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  color: var(--slate-900);
  background: var(--bg);
  text-rendering: geometricPrecision;
  font-size: 18px;
  line-height: 1.6;
  overflow-x: hidden;
}

img{ max-width:100%; height:auto; display:block; }
a{ color: inherit; text-decoration: none; }
a:hover{ text-decoration: none; }

p{ font-size: 18px; }
small{ font-size: 16px; }

sup{
  font-size: 1em;
  vertical-align: super;
  line-height: 0;
}

.sr-only{
  position:absolute;
  width:1px;
  height:1px;
  padding:0;
  margin:-1px;
  overflow:hidden;
  clip:rect(0,0,0,0);
  white-space:nowrap;
  border:0;
}

.container{
  width: min(var(--container), calc(100% - 48px));
  margin-inline: auto;
}

.page{ min-height: 100vh; }

section[id],
main[id],
div[id]{
  scroll-margin-top: var(--nav-offset);
}

/* ===========================
   REVEAL / SCROLL FX
   =========================== */

.reveal{
  opacity: 0;
  will-change: transform, opacity, filter;
  transition:
    opacity .95s cubic-bezier(.16,1,.3,1),
    transform .95s cubic-bezier(.16,1,.3,1),
    filter .95s cubic-bezier(.16,1,.3,1);
}

.reveal.is-visible{
  opacity: 1;
  filter: blur(0);
}

.reveal--up{
  transform: translate3d(0,42px,0) scale(.985);
  filter: blur(8px);
}
.reveal--up.is-visible{
  transform: translate3d(0,0,0) scale(1);
}

.reveal--left{
  transform: translate3d(-56px,0,0) scale(.985);
  filter: blur(8px);
}
.reveal--left.is-visible{
  transform: translate3d(0,0,0) scale(1);
}

.reveal--right{
  transform: translate3d(56px,0,0) scale(.985);
  filter: blur(8px);
}
.reveal--right.is-visible{
  transform: translate3d(0,0,0) scale(1);
}

.reveal--zoom{
  transform: scale(.92);
  filter: blur(10px);
}
.reveal--zoom.is-visible{
  transform: scale(1);
}

.reveal--lift{
  transform: translate3d(0,60px,0) scale(.96) rotateX(8deg);
  transform-origin: center bottom;
  filter: blur(10px);
}
.reveal--lift.is-visible{
  transform: translate3d(0,0,0) scale(1) rotateX(0);
}

.reveal--blur{
  transform: translate3d(0,26px,0);
  filter: blur(12px);
}
.reveal--blur.is-visible{
  transform: translate3d(0,0,0);
}

.reveal--rotate{
  transform: translate3d(0,34px,0) rotate(1.4deg) scale(.982);
  filter: blur(8px);
}
.reveal--rotate.is-visible{
  transform: translate3d(0,0,0) rotate(0) scale(1);
}

/* ===========================
   FIXED NAV + SCROLL EFFECT
   =========================== */

.nav__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  position: relative;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  position: relative;
  z-index: 2;
}

.brand__logo{
  height:40px;
  width:auto;
  transition: transform .22s ease, filter .22s ease;
}

.brand__name{
  font-weight: 800;
  font-size: 28px;
  color: var(--slate-800);
  letter-spacing: -0.02em;
  transition: transform .18s ease, font-size .18s ease, color .18s ease;
}

.nav--fixed{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 80;
  padding: 24px 0;
  background: rgba(255,255,255,0);
  border-bottom: 1px solid transparent;
  box-shadow: none;
  border-radius: 0;
  backdrop-filter: blur(0);
  -webkit-backdrop-filter: blur(0);
  transform: translateY(0);
  overflow: visible;
  transition:
    top .18s ease,
    left .18s ease,
    right .18s ease,
    padding .18s ease,
    background .22s ease,
    border-color .22s ease,
    box-shadow .22s ease,
    backdrop-filter .22s ease,
    transform .18s ease,
    border-radius .18s ease;
}

.nav--fixed::before,
.nav--fixed::after{
  content:none;
}

.nav--fixed.is-scrolled{
  top: 10px;
  left: 12px;
  right: 12px;
  padding: 12px 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,.88), rgba(255,255,255,.76));
  border: 1px solid rgba(255,255,255,.55);
  border-radius: 22px;
  backdrop-filter: blur(18px) saturate(165%);
  -webkit-backdrop-filter: blur(18px) saturate(165%);
  box-shadow:
    0 18px 42px rgba(15,23,42,.12),
    0 6px 16px rgba(249,115,22,.06),
    inset 0 1px 0 rgba(255,255,255,.84);
  overflow: hidden;
}

.nav--fixed.is-scrolled::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(
      90deg,
      rgba(255,255,255,0) 0%,
      rgba(255,255,255,.30) 18%,
      rgba(255,255,255,.10) 48%,
      rgba(255,255,255,.24) 78%,
      rgba(255,255,255,0) 100%
    );
  pointer-events:none;
  opacity:.72;
}

.nav--fixed.is-scrolled::after{
  content:"";
  position:absolute;
  left: 20px;
  right: 20px;
  top: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(255,255,255,0),
    rgba(255,255,255,.96),
    rgba(255,255,255,0)
  );
  pointer-events:none;
}

.nav--fixed.nav--solid{
  top: 10px;
  left: 12px;
  right: 12px;
  padding: 12px 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,.90), rgba(255,255,255,.78));
  border: 1px solid rgba(255,255,255,.55);
  border-radius: 22px;
  backdrop-filter: blur(18px) saturate(165%);
  -webkit-backdrop-filter: blur(18px) saturate(165%);
  box-shadow:
    0 18px 42px rgba(15,23,42,.12),
    0 6px 16px rgba(249,115,22,.06),
    inset 0 1px 0 rgba(255,255,255,.84);
  overflow: hidden;
}

.nav--fixed.nav--solid::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(
      90deg,
      rgba(255,255,255,0) 0%,
      rgba(255,255,255,.30) 18%,
      rgba(255,255,255,.10) 48%,
      rgba(255,255,255,.24) 78%,
      rgba(255,255,255,0) 100%
    );
  pointer-events:none;
  opacity:.72;
}

.nav--fixed.nav--solid::after{
  content:"";
  position:absolute;
  left: 20px;
  right: 20px;
  top: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(255,255,255,0),
    rgba(255,255,255,.96),
    rgba(255,255,255,0)
  );
  pointer-events:none;
}

.nav--fixed.is-scrolled .brand__logo,
.nav--fixed.nav--solid .brand__logo{
  transform: scale(.92);
  filter: saturate(1.04);
}

.nav--fixed.is-scrolled .brand__name,
.nav--fixed.nav--solid .brand__name{
  font-size: 24px;
}

.nav__links{
  display:flex;
  align-items:center;
  gap: 24px;
  position: relative;
  z-index: 2;
}

.nav__links a{
  position: relative;
  font-size: 16px;
  font-weight: 700;
  color: var(--slate-700);
  padding: 10px 2px;
  transition: color .22s ease, transform .18s ease, opacity .18s ease;
}

.nav__links a::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:4px;
  height:2px;
  border-radius:999px;
  background: linear-gradient(90deg, var(--orange-500), var(--amber-500));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .24s ease;
}

.nav__links a:hover{
  color: var(--slate-900);
  transform: translateY(-1px);
}

.nav__links a:hover::after,
.nav__links a[aria-current="page"]::after{
  transform: scaleX(1);
}

.nav__toggle{
  display:none;
  border: 1px solid rgba(255,255,255,.55);
  background:
    linear-gradient(180deg, rgba(255,255,255,.78), rgba(255,255,255,.56));
  backdrop-filter: blur(10px);
  border-radius: 999px;
  padding: 10px 12px;
  cursor: pointer;
  box-shadow:
    0 8px 20px rgba(15,23,42,.08),
    inset 0 1px 0 rgba(255,255,255,.85);
  position: relative;
  z-index: 2;
}

.nav__bar{
  display:block;
  width:18px;
  height:2px;
  background: var(--slate-800);
  border-radius: 2px;
  transition: transform .2s ease, opacity .2s ease;
}

.nav__bar + .nav__bar{ margin-top:4px; }

/* ===========================
   HERO
   =========================== */

.hero{
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display:flex;
  align-items:center;
  background:
    radial-gradient(circle at 12% 18%, rgba(251,146,60,.10), transparent 30%),
    radial-gradient(circle at 88% 16%, rgba(251,191,36,.10), transparent 24%),
    linear-gradient(135deg, var(--slate-50), #fff 40%, rgba(249,115,22,.10));
}

.hero__bg{
  position:absolute;
  inset:0;
  pointer-events:none;
  will-change: transform;
}

.blob{
  position:absolute;
  border-radius:999px;
  filter: blur(64px);
  opacity: 1;
}

.blob--tr{
  top:80px;
  right:-20px;
  width:420px;
  height:420px;
  background: rgba(251,146,60,.28);
}

.blob--bl{
  bottom:80px;
  left:-40px;
  width:360px;
  height:360px;
  background: rgba(251,191,36,.18);
}

.blob--mid{
  top:50%;
  left:25%;
  width:300px;
  height:300px;
  transform: translate(-50%,-50%);
  background: linear-gradient(135deg, rgba(249,115,22,.20), rgba(251,191,36,.18));
  filter: blur(46px);
}

.gridlines{
  position:absolute;
  inset:0;
  background-image:
    linear-gradient(to right, rgba(128,128,128,.06) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(128,128,128,.06) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,.95), rgba(0,0,0,.62));
}

.hero__content{
  position:relative;
  z-index: 10;
  padding: 152px 0 86px;
}

.hero__grid{
  display:grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
}

.hero__left > *{
  will-change: transform, opacity;
}

.hero__title{
  margin:0 0 16px;
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.05;
  font-size: clamp(44px, 5.2vw, 72px);
}

.hero__title-accent{
  display:block;
  background: linear-gradient(90deg, var(--orange-500), var(--amber-500));
  -webkit-background-clip: text;
  background-clip:text;
  color: transparent;
  filter: drop-shadow(0 10px 18px rgba(249,115,22,.16));
}

.hero__meta{
  margin: 0 0 10px;
  color: var(--slate-600);
  font-size: 16px;
  line-height: 1.55;
}

.hero__lead{
  margin:0 0 30px;
  color: var(--slate-600);
  font-size: 20px;
  line-height: 1.7;
  max-width: 560px;
}

.hero__cta{
  display:flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 34px;
}

/* ===========================
   BUTTONS
   =========================== */

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  border-radius: 999px;
  padding: 14px 22px;
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  border: 1px solid transparent;
  transition:
    transform .18s ease,
    box-shadow .24s ease,
    background .24s ease,
    border-color .24s ease,
    filter .24s ease;
  user-select:none;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.btn::before{
  content:"";
  position:absolute;
  inset:-1px auto -1px -35%;
  width: 32%;
  transform: skewX(-18deg);
  background: linear-gradient(90deg, rgba(255,255,255,0), rgba(255,255,255,.34), rgba(255,255,255,0));
  opacity: 0;
  transition: transform .65s ease, opacity .3s ease;
  pointer-events:none;
  z-index: 0;
}

.btn > *{
  position: relative;
  z-index: 1;
}

.btn:hover::before{
  opacity: 1;
  transform: translateX(430%) skewX(-18deg);
}

.btn:hover{
  transform: translateY(-2px);
}

.btn:active{ transform: translateY(1px); }

.btn--primary{
  background: linear-gradient(90deg, var(--orange-500), var(--amber-500));
  color: white;
  box-shadow:
    0 18px 30px rgba(249,115,22,.25),
    0 6px 12px rgba(251,191,36,.10);
  padding: 18px 28px;
  font-size: 18px;
}

.btn--primary:hover{
  background: linear-gradient(90deg, var(--orange-600), #d97706);
  box-shadow:
    0 24px 42px rgba(249,115,22,.28),
    0 10px 18px rgba(251,191,36,.12);
}

.btn--outline{
  background: rgba(255,255,255,.72);
  border-color: rgba(15,23,42,.12);
  color: var(--slate-900);
  padding: 18px 28px;
  font-size: 18px;
  box-shadow:
    0 10px 24px rgba(15,23,42,.06),
    inset 0 1px 0 rgba(255,255,255,.75);
}

.btn--outline:hover{
  background: rgba(248,250,252,.95);
  box-shadow:
    0 14px 30px rgba(15,23,42,.08),
    inset 0 1px 0 rgba(255,255,255,.85);
}

.btn--dark{
  background: var(--slate-900);
  color: white;
  box-shadow: 0 10px 18px rgba(15,23,42,.20);
}

.btn--dark:hover{
  background: #111827;
  box-shadow: 0 18px 34px rgba(15,23,42,.24);
}

.btn--sm{ padding: 10px 18px; font-size: 16px; }
.btn--block{ width: 100%; }

.icon{ width: 20px; height: 20px; }
.icon--arrow{ width: 22px; height: 22px; }

/* ===========================
   STATS + DISCLAIMER
   =========================== */

.stats{
  display:flex;
  gap: 40px;
  flex-wrap: wrap;
}

.stat{ position: relative; }

.stat__value{
  font-size: 24px;
  font-weight: 900;
  color: var(--slate-900);
}

.stat__label{
  font-size: 16px;
  color: var(--slate-500);
  margin-top: 2px;
}

.hero__disclaimer{
  margin: 18px 0 0;
  max-width: 640px;
  color: var(--slate-500);
  font-size: 16px;
  line-height: 1.55;
}

/* ===========================
   DEVICE
   =========================== */

.device{
  position: relative;
  max-width: 560px;
  margin-inline: auto;
  will-change: transform;
}

.device__glow{
  position:absolute;
  inset:0;
  background: linear-gradient(135deg, rgba(249,115,22,.22), rgba(251,191,36,.18));
  border-radius: var(--radius-2xl);
  filter: blur(44px);
  transform: translateY(2px);
}

.device__card{
  position:relative;
  background:
    linear-gradient(180deg, rgba(255,255,255,.58), rgba(255,255,255,.38));
  border: 1px solid rgba(255,255,255,.68);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  border-radius: var(--radius-2xl);
  padding: 32px;
  box-shadow:
    var(--shadow-lg),
    inset 0 1px 0 rgba(255,255,255,.8);
  overflow: hidden;
}

.device__card::before{
  content:"";
  position:absolute;
  left: 10%;
  right: 10%;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(255,255,255,0), rgba(255,255,255,.92), rgba(255,255,255,0));
}

.device__img{
  filter: drop-shadow(0 30px 40px rgba(15,23,42,.20));
  transform: translateZ(0);
}

.device__orb{
  position:absolute;
  border-radius: 999px;
  filter: blur(30px);
  opacity: .60;
}

.device__orb--tr{
  width: 96px;
  height: 96px;
  top: -20px;
  right:-20px;
  background: linear-gradient(135deg, var(--orange-400), var(--amber-400));
}

.device__orb--bl{
  width: 128px;
  height: 128px;
  bottom: -24px;
  left:-24px;
  background: linear-gradient(135deg, var(--amber-400), var(--orange-400));
  opacity: .52;
}

.mini{
  position:absolute;
  display:flex;
  align-items:center;
  gap: 12px;
  padding: 14px 16px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.84), rgba(255,255,255,.70));
  border: 1px solid rgba(255,255,255,.62);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  border-radius: 18px;
  box-shadow:
    0 18px 40px rgba(15,23,42,.18),
    inset 0 1px 0 rgba(255,255,255,.85);
}

.mini--left{ left: -30px; top: 24%; display:none; }
.mini--right{ right: -30px; bottom: 32%; display:none; }

.mini__icon{
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display:grid;
  place-items:center;
  color:white;
  font-weight: 900;
  box-shadow: 0 10px 18px rgba(15,23,42,.18);
}

.mini__icon--green{ background: linear-gradient(135deg, #4ade80, #10b981); }
.mini__icon--orange{ background: linear-gradient(135deg, var(--orange-400), var(--amber-500)); }

.mini__label{ font-size: 16px; font-weight: 700; color: var(--slate-500); }
.mini__value{ font-size: 24px; font-weight: 900; color: var(--slate-800); }

/* ===========================
   SECTIONS
   =========================== */

.section{
  padding: 96px 0;
  position: relative;
}

.section--white{ background: white; }

.section--soft{
  background:
    linear-gradient(180deg, var(--slate-50), #fff);
}

.section--dark{
  background:
    radial-gradient(circle at 15% 18%, rgba(249,115,22,.12), transparent 24%),
    radial-gradient(circle at 86% 24%, rgba(251,191,36,.08), transparent 18%),
    var(--slate-900);
  color: white;
}

.section--cta{
  background: linear-gradient(135deg, var(--slate-50), rgba(249,115,22,.10));
}

.section__head{
  text-align:center;
  margin-bottom: 56px;
}

.section__head--dark{ margin-bottom: 56px; }

.kicker{
  color: var(--orange-500);
  font-weight: 800;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.kicker--dark{ color: rgba(249,115,22,.9); }

.section__title{
  margin: 14px 0 16px;
  font-size: clamp(32px, 3vw, 48px);
  font-weight: 900;
  letter-spacing: -0.02em;
}

.section__title--dark{ color: white; }

.section__lead{
  margin:0 auto;
  max-width: 720px;
  font-size: 20px;
  line-height: 1.65;
  color: var(--slate-600);
}

.section__lead--dark{ color: rgba(226,232,240,.85); }

/* ===========================
   FEATURE CARDS
   =========================== */

.cards{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.card{
  padding: 32px;
  border-radius: var(--radius-2xl);
  background:
    linear-gradient(180deg, rgba(248,250,252,.88), rgba(255,255,255,.96));
  border: 1px solid rgba(15,23,42,.06);
  transition:
    transform .24s ease,
    box-shadow .24s ease,
    background .24s ease,
    border-color .24s ease;
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
}

.card::before{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(120deg, rgba(255,255,255,0) 15%, rgba(255,255,255,.42) 38%, rgba(255,255,255,0) 62%);
  transform: translateX(-120%);
  transition: transform .8s ease;
  pointer-events:none;
}

.card::after{
  content:"";
  position:absolute;
  left: 20px;
  right: 20px;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(255,255,255,0), rgba(255,255,255,.95), rgba(255,255,255,0));
  pointer-events:none;
}

.card:hover{
  background: white;
  box-shadow: 0 22px 50px rgba(15,23,42,.10);
  transform: translateY(-4px);
  border-color: rgba(249,115,22,.16);
}

.card:hover::before{
  transform: translateX(120%);
}

.card__icon{
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display:grid;
  place-items:center;
  margin-bottom: 18px;
  font-weight: 900;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.75),
    0 10px 20px rgba(15,23,42,.06);
}

.card__icon svg{
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.card__icon--orange{ background: rgba(249,115,22,.12); color:#ea580c; }
.card__icon--blue{ background: rgba(59,130,246,.12); color:#2563eb; }
.card__icon--purple{ background: rgba(168,85,247,.12); color:#7c3aed; }
.card__icon--green{ background: rgba(34,197,94,.12); color:#16a34a; }
.card__icon--amber{ background: rgba(251,191,36,.18); color:#b45309; }
.card__icon--slate{ background: rgba(15,23,42,.08); color: var(--slate-700); }

.card__title{ margin: 0 0 10px; font-size: 20px; font-weight: 800; }
.card__text{ margin: 0; color: var(--slate-600); line-height: 1.7; font-size: 16px; }

/* ===========================
   STEPS
   =========================== */

.steps{ position:relative; }

.steps__line{
  display:none;
  position:absolute;
  top: 50%;
  left:0;
  right:0;
  height: 2px;
  background: linear-gradient(90deg, rgba(249,115,22,.22), rgba(251,191,36,.22), rgba(249,115,22,.22));
  transform: translateY(-50%);
}

.steps{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.step{
  position:relative;
  background:
    linear-gradient(180deg, rgba(255,255,255,.98), rgba(255,255,255,.94));
  border-radius: var(--radius-2xl);
  padding: 32px;
  box-shadow:
    0 14px 26px rgba(15,23,42,.08),
    inset 0 1px 0 rgba(255,255,255,.92);
  border: 1px solid rgba(15,23,42,.06);
  transition:
    transform .24s ease,
    box-shadow .24s ease,
    border-color .24s ease;
  overflow: hidden;
  transform-style: preserve-3d;
}

.step::before{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(120deg, rgba(255,255,255,0) 15%, rgba(255,255,255,.34) 38%, rgba(255,255,255,0) 62%);
  transform: translateX(-120%);
  transition: transform .8s ease;
  pointer-events:none;
}

.step:hover{
  transform: translateY(-4px);
  box-shadow:
    0 24px 50px rgba(15,23,42,.12),
    inset 0 1px 0 rgba(255,255,255,.92);
  border-color: rgba(249,115,22,.16);
}

.step:hover::before{
  transform: translateX(120%);
}

.step__top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-bottom: 18px;
}

.step__badge{
  width: 46px;
  height: 46px;
  border-radius: 16px;
  display:grid;
  place-items:center;
  color: white;
  font-weight: 900;
  background: linear-gradient(135deg, var(--orange-500), var(--amber-500));
  box-shadow: 0 14px 22px rgba(249,115,22,.18);
}

.step__icon{ font-size: 28px; }
.step__title{ margin: 0 0 10px; font-size: 18px; font-weight: 900; }
.step__text{ margin:0; color: var(--slate-600); line-height: 1.7; font-size: 16px; }

/* ===========================
   TESTIMONIALS
   =========================== */

.testimonials{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial{
  background:
    linear-gradient(180deg, rgba(30,41,59,.60), rgba(30,41,59,.48));
  border: 1px solid rgba(148,163,184,.22);
  border-radius: var(--radius-2xl);
  padding: 32px;
  backdrop-filter: blur(10px);
  transition:
    border-color .24s ease,
    transform .24s ease,
    box-shadow .24s ease;
  box-shadow:
    0 16px 34px rgba(2,6,23,.18),
    inset 0 1px 0 rgba(255,255,255,.04);
  transform-style: preserve-3d;
}

.testimonial:hover{
  border-color: rgba(249,115,22,.30);
  transform: translateY(-4px);
  box-shadow:
    0 22px 50px rgba(2,6,23,.24),
    0 4px 12px rgba(249,115,22,.08),
    inset 0 1px 0 rgba(255,255,255,.05);
}

.stars{
  color: rgba(251,191,36,.95);
  letter-spacing: 2px;
  margin-bottom: 14px;
  font-size: 16px;
}

.testimonial__quote{
  margin: 0 0 20px;
  color: rgba(226,232,240,.92);
  line-height: 1.75;
  font-size: 16px;
}

.testimonial__who{
  display:flex;
  align-items:center;
  gap: 12px;
  margin-top: 8px;
}

.avatar{
  width: 56px;
  height: 56px;
  border-radius: 16px;
  object-fit: cover;
  border: 1px solid rgba(255,255,255,.18);
}

.testimonial__name{ font-weight: 900; color: white; }
.testimonial__brand{ font-size: 16px; color: rgba(226,232,240,.75); margin-top: 2px; }

/* ===========================
   PRICING
   =========================== */

.pricing{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.price{
  border-radius: var(--radius-2xl);
  padding: 32px;
  border: 1px solid rgba(15,23,42,.08);
  background:
    linear-gradient(180deg, rgba(255,255,255,.98), rgba(255,255,255,.95));
  box-shadow:
    0 14px 30px rgba(15,23,42,.06),
    inset 0 1px 0 rgba(255,255,255,.88);
  position: relative;
  overflow: hidden;
  transition:
    transform .24s ease,
    box-shadow .24s ease,
    border-color .24s ease;
  transform-style: preserve-3d;
}

.price::before{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(120deg, rgba(255,255,255,0) 15%, rgba(255,255,255,.38) 38%, rgba(255,255,255,0) 62%);
  transform: translateX(-120%);
  transition: transform .8s ease;
  pointer-events:none;
}

.price:hover{
  transform: translateY(-5px);
  box-shadow:
    0 24px 50px rgba(15,23,42,.10),
    inset 0 1px 0 rgba(255,255,255,.9);
  border-color: rgba(249,115,22,.16);
}

.price:hover::before{
  transform: translateX(120%);
}

.price__name{ margin:0 0 6px; font-size: 18px; font-weight: 900; }
.price__desc{ margin:0 0 18px; color: var(--slate-600); line-height: 1.6; font-size: 16px; }

.price__value{
  display:flex;
  align-items: baseline;
  gap: 10px;
  margin: 10px 0 18px;
}

.price__amount{
  font-size: 52px;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.price__period{
  color: var(--slate-500);
  font-weight: 700;
  font-size: 16px;
}

.price__list{
  margin: 0 0 24px;
  padding:0;
  list-style:none;
  display:grid;
  gap: 12px;
}

.price__list li{
  color: var(--slate-600);
  display:flex;
  align-items:flex-start;
  gap: 10px;
  font-size: 16px;
}

.price__list li::before{
  content:"✓";
  color: #ea580c;
  font-weight: 900;
  margin-top: 1px;
}

.price--featured{
  border: 2px solid rgba(249,115,22,.35);
  background: linear-gradient(180deg, rgba(249,115,22,.06), rgba(251,191,36,.05) 45%, #fff);
  box-shadow:
    0 22px 55px rgba(249,115,22,.18),
    inset 0 1px 0 rgba(255,255,255,.86);
  position: relative;
}

.price__badge{
  position:absolute;
  top: -18px;
  left: 28px;
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 900;
  background: linear-gradient(90deg, var(--orange-500), var(--amber-500));
  color: white;
  box-shadow: 0 18px 30px rgba(249,115,22,.25);
}

.fineprint{
  text-align:center;
  margin-top: 28px;
  color: var(--slate-500);
  font-size: 16px;
  line-height: 1.55;
}

.pricing-addon{
  margin-top: 24px;
  display:flex;
  justify-content:center;
}

.price--addon{
  width: min(520px, 100%);
  background: linear-gradient(180deg, rgba(249,115,22,.05), #fff 55%);
  border: 1px dashed rgba(249,115,22,.28);
  box-shadow: 0 14px 30px rgba(15,23,42,.06);
}

/* ===========================
   CTA
   =========================== */

.cta{ text-align:center; }

.cta__pill{
  display:inline-flex;
  align-items:center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(249,115,22,.12);
  color: #c2410c;
  font-weight: 800;
  margin-bottom: 26px;
  font-size: 16px;
  box-shadow:
    0 10px 20px rgba(249,115,22,.10),
    inset 0 1px 0 rgba(255,255,255,.75);
}

.cta__title{
  margin: 0 0 16px;
  font-size: clamp(34px, 4vw, 62px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.cta__accent{
  background: linear-gradient(90deg, var(--orange-500), var(--amber-500));
  -webkit-background-clip:text;
  background-clip:text;
  color: transparent;
}

.cta__lead{
  margin: 0 auto 26px;
  max-width: 760px;
  color: var(--slate-600);
  font-size: 20px;
  line-height: 1.7;
}

.cta__actions{
  display:flex;
  gap: 14px;
  justify-content:center;
  flex-wrap: wrap;
}

.cta__hint{
  margin-top: 16px;
  color: var(--slate-500);
  font-size: 16px;
}

/* ===========================
   FOOTER
   =========================== */

.footer{
  background: var(--slate-900);
  color: white;
  padding: 64px 0 32px;
}

.footer__grid{
  display:grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 36px;
}

.footer__brandline{
  display:flex;
  align-items:center;
  gap: 12px;
  margin-bottom: 10px;
}

.footer__logo{
  height: 40px;
  width:auto;
  filter: brightness(0) invert(1);
}

.footer__name{ font-weight: 900; font-size: 20px; }

.footer__desc{
  margin: 0;
  color: rgba(226,232,240,.75);
  line-height: 1.7;
  font-size: 16px;
}

.footer__title{ margin: 0 0 12px; font-weight: 900; font-size: 16px; }

.footer__links{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap: 10px;
  color: rgba(226,232,240,.72);
  font-size: 16px;
}

.footer__links a:hover{ color: white; }

.footer__bottom{
  padding-top: 22px;
  border-top: 1px solid rgba(148,163,184,.20);
  display:flex;
  justify-content: space-between;
  align-items:center;
  gap: 18px;
  flex-wrap: wrap;
  color: rgba(226,232,240,.65);
  font-size: 16px;
}

.footer__legal{
  display:flex;
  gap: 18px;
  flex-wrap: wrap;
}

.footer__legal a:hover{ color: white; }

/* ===========================
   MODAL
   =========================== */

.modal{
  position: fixed;
  inset: 0;
  background: rgba(2,6,23,.62);
  display: grid;
  place-items: center;
  padding: 18px;
  opacity: 0;
  transition: opacity .15s ease;
  z-index: 100;
}

.modal.is-open{ opacity: 1; }

.modal__panel{
  width: min(860px, 100%);
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(255,255,255,.55);
  backdrop-filter: blur(14px);
  border-radius: var(--radius-2xl);
  box-shadow: 0 30px 80px rgba(0,0,0,.35);
  position: relative;
}

.modal__close{
  position:absolute;
  top: 14px;
  right: 14px;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(15,23,42,.14);
  background: rgba(255,255,255,.75);
  cursor:pointer;
  font-size: 16px;
  font-weight: 900;
}

.modal__body{ padding: 28px; }
.modal__title{ margin:0 0 8px; font-size: 22px; font-weight: 900; }
.modal__text{ margin:0 0 18px; color: var(--slate-600); line-height: 1.7; font-size: 16px; }
.modal__img{ border-radius: 20px; border: 1px solid rgba(15,23,42,.10); background: white; }
.modal__actions{ display:flex; gap: 12px; margin-top: 18px; flex-wrap: wrap; }

/* ===========================
   FAQ
   =========================== */

.faq{
  width: min(860px, 100%);
  margin-inline: auto;
  display: grid;
  gap: 14px;
}

.faq__item{
  background:
    linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,255,255,.84));
  border: 1px solid rgba(15,23,42,.08);
  border-radius: var(--radius-2xl);
  box-shadow:
    0 14px 30px rgba(15,23,42,.06),
    inset 0 1px 0 rgba(255,255,255,.88);
  overflow: hidden;
  transition:
    transform .24s ease,
    box-shadow .24s ease,
    border-color .24s ease;
}

.faq__item:hover{
  transform: translateY(-2px);
  box-shadow:
    0 22px 50px rgba(15,23,42,.10),
    inset 0 1px 0 rgba(255,255,255,.9);
  border-color: rgba(249,115,22,.22);
}

.faq__question{
  list-style: none;
  cursor: pointer;
  padding: 20px 22px;
  font-weight: 900;
  color: var(--slate-900);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 16px;
  line-height: 1.35;
}

.faq__question::-webkit-details-marker{ display:none; }

.faq__chev{
  width: 18px;
  height: 18px;
  border-radius: 999px;
  position: relative;
  flex: 0 0 auto;
  background: rgba(249,115,22,.12);
}

.faq__chev::before,
.faq__chev::after{
  content:"";
  position:absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 2px;
  background: #ea580c;
  border-radius: 2px;
  transform: translate(-50%,-50%);
}

.faq__chev::after{
  transform: translate(-50%,-50%) rotate(90deg);
  transition: transform .18s ease, opacity .18s ease;
}

.faq__item[open] .faq__chev::after{
  opacity: 0;
  transform: translate(-50%,-50%) rotate(90deg) scale(.6);
}

.faq__answer{
  padding: 0 22px 20px;
  color: var(--slate-600);
  line-height: 1.75;
  font-size: 16px;
}

.faq__answer p{ margin: 0; font-size: 16px; }

/* ===========================
   DATE BADGE
   =========================== */

.update-badge{
  display:inline-flex;
  align-items:center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.72), rgba(255,255,255,.56));
  border: 1px solid rgba(255,255,255,.58);
  color: var(--slate-700);
  font-weight: 800;
  font-size: 16px;
  line-height: 1;
  margin: 0 0 18px;
  box-shadow:
    0 10px 24px rgba(15,23,42,.06),
    inset 0 1px 0 rgba(255,255,255,.82);
}

.update-badge__label{
  font-weight: 900;
  color: var(--slate-600);
}

/* ===========================
   SIMPLE PAGES (ABOUT / LEGAL)
   =========================== */

.simple-hero{
  position: relative;
  overflow: hidden;
  padding: 120px 0 44px;
  background:
    radial-gradient(circle at 12% 18%, rgba(251,146,60,.10), transparent 30%),
    linear-gradient(135deg, var(--slate-50), #fff 40%, rgba(249,115,22,.10));
}

.simple-hero--compact{
  padding: 108px 0 34px;
}

.simple-hero__content{
  position: relative;
  z-index: 10;
  padding-top: 18px;
}

.simple-hero__title{
  margin: 10px 0 12px;
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.05;
  font-size: clamp(34px, 4vw, 54px);
}

.simple-hero__lead{
  margin: 0 0 22px;
  max-width: 820px;
  color: var(--slate-600);
  font-size: 20px;
  line-height: 1.7;
}

.simple-hero__actions{
  display:flex;
  flex-wrap: wrap;
  gap: 14px;
}

.prose{
  width: min(900px, 100%);
  margin-inline: auto;
}

.prose h2{
  margin: 34px 0 10px;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.01em;
  color: var(--slate-900);
}

.prose p,
.prose li{
  color: var(--slate-700);
  line-height: 1.85;
  font-size: 18px;
}

.prose ul{
  margin: 12px 0 0;
  padding-left: 20px;
  display: grid;
  gap: 10px;
}

.legal-nav{
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 26px;
}

.about-cta{
  display:flex;
  justify-content:center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 26px;
}

.cards--2{
  grid-template-columns: repeat(2, 1fr);
}

/* ===========================
   TO TOP
   =========================== */

.to-top{
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  z-index: 120;
  background:
    linear-gradient(180deg, rgba(15,23,42,.96), rgba(15,23,42,.88));
  color: #fff;
  font-weight: 900;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,.18);
  box-shadow:
    0 16px 40px rgba(15,23,42,.28),
    inset 0 1px 0 rgba(255,255,255,.15);
  transform: translateY(10px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease, box-shadow .2s ease;
}

.to-top.is-visible{
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.to-top:hover{
  transform: translateY(-2px);
  box-shadow:
    0 22px 44px rgba(15,23,42,.32),
    inset 0 1px 0 rgba(255,255,255,.18);
}

/* ===========================
   DEMO MODAL
   =========================== */

.demo-modal[hidden] { display: none !important; }

.demo-modal{
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  padding: 18px;
}

.demo-modal__overlay{
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.58);
  backdrop-filter: blur(4px);
}

.demo-modal__panel{
  position: relative;
  width: min(640px, 100%);
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 25px 70px rgba(15, 23, 42, 0.22);
  padding: 22px 22px 18px;
}

.demo-modal__close{
  position: absolute;
  top: 10px;
  right: 12px;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.10);
  background: rgba(15, 23, 42, 0.04);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.demo-modal__title{
  margin: 6px 0 6px;
  font-size: 24px;
  line-height: 1.2;
}

.demo-modal__lead{
  margin: 0 0 14px;
  opacity: 0.85;
}

.demo-modal__alert{
  border-radius: 14px;
  padding: 10px 12px;
  margin: 0 0 12px;
  font-size: 16px;
}

.demo-modal__alert--error{
  background: rgba(220, 38, 38, 0.08);
  border: 1px solid rgba(220, 38, 38, 0.18);
}

.demo-modal__alert--success{
  background: rgba(22, 163, 74, 0.08);
  border: 1px solid rgba(22, 163, 74, 0.18);
}

.demo-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 8px 0 14px;
}

.demo-field{
  display: grid;
  gap: 6px;
}

.demo-field--full{
  grid-column: 1 / -1;
}

.demo-field__label{
  font-size: 16px;
  opacity: 0.85;
}

.demo-field__input{
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(15, 23, 42, 0.14);
  padding: 12px 12px;
  font-size: 18px;
  outline: none;
  background: #fff;
}

.demo-field__input:focus{
  border-color: rgba(234, 88, 12, 0.55);
  box-shadow: 0 0 0 4px rgba(234, 88, 12, 0.12);
}

.demo-modal__actions{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 10px;
}

.demo-modal__fine{
  margin: 12px 0 0;
  font-size: 16px;
  opacity: 0.75;
}

body.is-modal-open{
  overflow: hidden;
}

/* ===========================
   HEADER CTA
   =========================== */

.nav__cta{
  display:inline-flex;
  align-items:center;
  gap: 10px;
  padding: 10px 14px 10px 16px;
  border-radius: 999px;
  color: var(--slate-900);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.01em;
  background:
    linear-gradient(180deg, rgba(255,255,255,.96), rgba(248,250,252,.92));
  border: 1px solid rgba(15,23,42,.10);
  box-shadow:
    0 10px 24px rgba(15,23,42,.08),
    inset 0 1px 0 rgba(255,255,255,.95);
  transition:
    transform .22s ease,
    box-shadow .22s ease,
    border-color .22s ease,
    color .22s ease,
    background .22s ease;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.nav__cta::after{
  content:"";
  position:absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(249,115,22,.42), rgba(251,191,36,.30));
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events:none;
  opacity: .7;
}

.nav__cta::before{
  content:"";
  position:absolute;
  inset:-1px auto -1px -35%;
  width: 34%;
  transform: skewX(-18deg);
  background: linear-gradient(90deg, rgba(255,255,255,0), rgba(255,255,255,.58), rgba(255,255,255,0));
  opacity: 0;
  transition: transform .65s ease, opacity .3s ease;
  pointer-events:none;
  z-index: 0;
}

.nav__cta:hover::before{
  opacity: 1;
  transform: translateX(430%) skewX(-18deg);
}

.nav__cta:hover{
  transform: translateY(-2px);
  color: #c2410c;
  border-color: rgba(249,115,22,.22);
  background:
    linear-gradient(180deg, rgba(255,255,255,1), rgba(255,247,237,.96));
  box-shadow:
    0 16px 30px rgba(15,23,42,.10),
    0 6px 14px rgba(249,115,22,.10),
    inset 0 1px 0 rgba(255,255,255,.98);
}

.nav__cta:active{
  transform: translateY(0);
}

.nav__cta-text,
.nav__cta-icon{
  position: relative;
  z-index: 1;
}

.nav__cta-icon{
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  opacity: .9;
}

/* ===========================
   CNC SHOWCASE
   =========================== */

.demo-showcase-section{
  position: relative;
  overflow: hidden;
}

.demo-showcase{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items:center;
}

.demo-showcase__lead{
  max-width: 640px;
}

.demo-showcase__actions{
  display:flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.demo-showcase__preview{
  display:flex;
  justify-content:flex-end;
}

.demo-showcase__card{
  position: relative;
  display:block;
  width: 100%;
  max-width: 560px;
  padding: 18px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.96), rgba(248,250,252,.92));
  border: 1px solid rgba(15,23,42,.08);
  box-shadow:
    0 24px 56px rgba(15,23,42,.10),
    inset 0 1px 0 rgba(255,255,255,.95);
  transition:
    transform .24s ease,
    box-shadow .24s ease,
    border-color .24s ease;
  overflow: hidden;
}

.demo-showcase__card:hover{
  transform: translateY(-4px);
  border-color: rgba(249,115,22,.18);
  box-shadow:
    0 30px 70px rgba(15,23,42,.14),
    0 8px 18px rgba(249,115,22,.08),
    inset 0 1px 0 rgba(255,255,255,.98);
}

.demo-showcase__badge{
  position:absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  display:inline-flex;
  align-items:center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(15,23,42,.86);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(15,23,42,.22);
}

.demo-showcase__img{
  width: 100%;
  height: auto;
  border-radius: 20px;
  border: 1px solid rgba(15,23,42,.08);
  background: #fff;
  box-shadow: 0 16px 34px rgba(15,23,42,.08);
}

/* ===========================
   HERO MINI CARDS
   =========================== */

.mini__value sup{
  font-size: .78em !important;
  line-height: 0;
}

/* ===========================
   RESPONSIVE
   =========================== */

@media (min-width: 1024px){
  .mini--left,
  .mini--right{
    display:flex;
  }

  .steps__line{ display:block; }
}

@media (max-width: 1100px){
  .steps{
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 980px){
  .hero__grid{
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .hero__content{
    padding-top: 126px;
  }

  .cards{
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing{
    grid-template-columns: 1fr;
  }

  .testimonials{
    grid-template-columns: 1fr;
  }

  .footer__grid{
    grid-template-columns: 1fr 1fr;
  }

  .cards--2{
    grid-template-columns: 1fr;
  }

  .demo-showcase{
    grid-template-columns: 1fr;
  }

  .demo-showcase__preview{
    justify-content:flex-start;
  }
}

@media (max-width: 820px){
  .nav--fixed{
    top: 0;
    left: 0;
    right: 0;
    border-radius: 0;
  }

  .nav__toggle{
    display:inline-flex;
  }

  .nav__links{
    position: fixed;
    top: var(--mobile-menu-top, 86px);
    left: 12px;
    right: 12px;
    display: none;
    flex-direction: column;
    gap: 8px;
    padding: 12px;
    background:
      linear-gradient(180deg, rgba(255,255,255,.96), rgba(255,255,255,.90));
    border: 1px solid rgba(255,255,255,.58);
    border-radius: 18px;
    backdrop-filter: blur(16px) saturate(160%);
    -webkit-backdrop-filter: blur(16px) saturate(160%);
    box-shadow:
      0 24px 50px rgba(15,23,42,.15),
      inset 0 1px 0 rgba(255,255,255,.82);
    max-height: calc(100vh - var(--mobile-menu-top, 86px) - 12px);
    overflow-y: auto;
    z-index: 90;
  }

  .nav__links.is-open{
    display:flex;
  }

  .nav__links a{
    width: 100%;
    padding: 12px 10px;
    border-radius: 12px;
    font-size: 16px;
  }

  .nav__links a:hover{
    background: rgba(248,250,252,.82);
  }

  .nav__links .nav__cta{
    width: 100%;
    justify-content: center;
  }

  .nav__cta{
    width: 100%;
    justify-content: center;
    padding: 13px 16px;
    font-size: 16px;
  }
}

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

  .steps{
    grid-template-columns: 1fr;
  }

  .footer__grid{
    grid-template-columns: 1fr;
  }
}

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

  .demo-field--full{
    grid-column: auto;
  }
}

/* ===========================
   REDUCED MOTION
   =========================== */

@media (prefers-reduced-motion: reduce){
  *{
    transition: none !important;
    animation: none !important;
    scroll-behavior: auto !important;
  }

  .reveal{
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }

  .card,
  .step,
  .price,
  .testimonial,
  .device,
  .hero__bg{
    transform: none !important;
  }
}
.seo-content {
  position: absolute;
  left: -9999px;
}