:root{
  --bg: #070A12;
  --bg-2: #0B1020;
  --panel: rgba(255,255,255,.06);
  --panel-2: rgba(255,255,255,.08);
  --stroke: rgba(255,255,255,.12);
  --surface-bg: rgba(255,255,255,.02);
  --surface-border: rgba(255,255,255,.10);
  --divider: rgba(255,255,255,.08);
  --text: rgba(255,255,255,.92);
  --muted: rgba(255,255,255,.65);
  --muted-2: rgba(255,255,255,.48);
  --brand: #7C5CFF;
  --brand-2: #39D2FF;
  --accent-vert: linear-gradient(180deg, rgba(124,92,255,.55), rgba(57,210,255,.45));
  --accent-horz: linear-gradient(90deg, rgba(124,92,255,.8), rgba(57,210,255,.6));
  --accent-soft: linear-gradient(135deg, rgba(124,92,255,.28), rgba(57,210,255,.18));
  --ok: #43F5A2;
  --danger: #FF5C7C;
  --shadow: 0 18px 60px rgba(0,0,0,.55);
  --radius: 18px;
  --radius-2: 22px;
  --max: 1120px;
  --header-h: 56px;
  --hero-gap: clamp(12px, 2.4vw, 18px);
}

*{box-sizing:border-box}
html{
  scroll-padding-top: calc(var(--header-h) + 24px);
  scroll-behavior:smooth;
  background:var(--bg-2);
}
html,body{min-height:100%}
[hidden]{display:none !important}
@media (prefers-reduced-motion: reduce){
  html{scroll-behavior:auto}
}
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(--text);
  background: var(--bg-2);
  overflow-x:hidden;
  position:relative;
  z-index:0;
}
body::before{
  content:"";
  position:fixed;
  inset:0;
  pointer-events:none;
  z-index:-1;
  background:
    radial-gradient(1400px 900px at 12% -10%, rgba(124,92,255,.22), transparent 62%),
    radial-gradient(1300px 850px at 88% 0%, rgba(57,210,255,.14), transparent 64%),
    linear-gradient(180deg, var(--bg), var(--bg-2));
  transform:translateZ(0);
}

a{color:inherit}
.muted{color:var(--muted)}
.mono{font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace}
.container{
  max-width:var(--max);
  margin:0 auto;
  padding:0 22px;
  padding-left:max(clamp(22px, 4vw, 40px), env(safe-area-inset-left));
  padding-right:max(clamp(22px, 4vw, 40px), env(safe-area-inset-right));
}

.skip-link{
  position:absolute;
  left:-9999px;
  top:10px;
  background:#000;
  color:#fff;
  padding:10px 12px;
  border-radius:12px;
  border:1px solid var(--stroke);
  z-index:1000;
}
.skip-link:focus{left:12px}

.site-header{
  position:fixed;
  top:0;
  left:0;
  right:0;
  z-index:1000;
  padding-top: env(safe-area-inset-top);
  -webkit-backdrop-filter:saturate(1.2) blur(16px);
  backdrop-filter:saturate(1.2) blur(16px);
  /* Avoid Safari flicker on refresh with a fully transparent backdrop-filter header. */
  background:rgba(7,10,18,.001);
  border-bottom:0;
  transition:background .18s ease, box-shadow .18s ease;
}
.site-header.is-scrolled{
  background:rgba(7,10,18,.55);
  box-shadow:0 16px 60px rgba(0,0,0,.32), inset 0 -1px 0 rgba(255,255,255,.08);
}
@media (max-width: 859px){
  .site-header .container{
    padding-left:max(clamp(26px, 6vw, 40px), env(safe-area-inset-left));
    padding-right:max(clamp(26px, 6vw, 40px), env(safe-area-inset-right));
  }
}
.header-inner{
  display:flex;
  gap:16px;
  align-items:center;
  justify-content:space-between;
  padding:12px 0;
}
.brand{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:700;
  letter-spacing:.3px;
}
.brand .badge{display:none}
.logo-mark{
  width:26px;
  height:26px;
  flex:0 0 auto;
  display:block;
  background: url("./assets/Farmanix_white.svg") center / contain no-repeat;
}
.site-header .logo-mark{transform:translateY(-1px)}
.brand-text{font-size:15px}
.badge{
  font-size:12px;
  font-weight:650;
  padding:4px 8px;
  border-radius:999px;
  color:rgba(255,255,255,.85);
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.12);
}

.nav{
  display:none;
  gap:14px;
  color:var(--muted);
  font-size:14px;
}
.nav a{text-decoration:none}
.nav a:hover{color:rgba(255,255,255,.92)}

.header-cta{display:flex; gap:10px}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:10px 14px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.06);
  color:rgba(255,255,255,.92);
  text-decoration:none;
  font-weight:650;
  font-size:14px;
  transition:transform .12s ease, background .12s ease, border-color .12s ease;
  cursor:pointer;
}
.btn:hover{transform:translateY(-1px); background:rgba(255,255,255,.08)}
.btn:active{transform:translateY(0)}
.btn-primary{
  border-color:rgba(124,92,255,.55);
  background:linear-gradient(135deg, rgba(124,92,255,.95), rgba(57,210,255,.55));
  box-shadow:0 10px 28px rgba(124,92,255,.25);
}
.btn-primary:hover{background:linear-gradient(135deg, rgba(124,92,255,1), rgba(57,210,255,.65))}
.btn-accent{
  border-color:rgba(124,92,255,.65);
  background:linear-gradient(135deg, rgba(124,92,255,.88), rgba(57,210,255,.44));
  box-shadow:0 12px 30px rgba(124,92,255,.20);
}
.btn-accent:hover{
  background:linear-gradient(135deg, rgba(124,92,255,1), rgba(57,210,255,.56));
  border-color:rgba(124,92,255,.80);
}
.btn-secondary{
  border-color:rgba(255,255,255,.16);
  background:rgba(255,255,255,.06);
}
.header-cta .btn-secondary{
  border-color:rgba(57,210,255,.45);
  background:rgba(57,210,255,.08);
  box-shadow:0 10px 26px rgba(57,210,255,.12);
}
.header-cta .btn-secondary:hover{
  background:rgba(57,210,255,.12);
  border-color:rgba(57,210,255,.60);
}
.btn-ghost{
  background:transparent;
  border-color:rgba(255,255,255,.14);
}
.btn-compact{
  padding:9px 12px;
  font-size:13px;
}

.hero{padding:calc(var(--header-h) + var(--hero-gap)) 0 18px}
.hero-grid{
  display:grid;
  grid-template-columns: 1fr;
  gap:18px;
  align-items:stretch;
}
.hero-actions{
  margin-top:16px;
  display:flex;
  align-items:center;
  gap:12px;
  flex-wrap:wrap;
}
.watch-demo{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 12px;
  border-radius:999px;
  border:1px solid rgba(124,92,255,.48);
  background:rgba(124,92,255,.08);
  color:rgba(255,255,255,.92);
  text-decoration:none;
  font-weight:600;
  letter-spacing:.01em;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  box-shadow: 0 0 0 1px rgba(124,92,255,.12), 0 10px 30px rgba(124,92,255,.12);
}
.watch-demo::before{
  content:"▶";
  font-size:12px;
  opacity:.85;
  transform: translateY(-.5px);
}
.watch-demo::after{
  content:"→";
  opacity:.75;
  transform: translateX(0);
  transition: transform .14s ease, opacity .14s ease;
}
.watch-demo:hover{
  background:rgba(124,92,255,.12);
  border-color:rgba(124,92,255,.70);
}
.watch-demo:hover::after{
  opacity:.9;
  transform: translateX(2px);
}
.watch-demo:focus-visible{
  outline:none;
  box-shadow:0 0 0 3px rgba(124,92,255,.22);
  border-color:rgba(124,92,255,.75);
}
.hero-meta{
  color:rgba(255,255,255,.55);
  font-size:13px;
  line-height:1;
}
.hero-copy h1{
  margin:0;
  font-size:clamp(36px, 4.4vw, 54px);
  line-height:1.08;
  letter-spacing:-.02em;
}
.lead{
  margin:16px 0 0;
  font-size:17px;
  line-height:1.55;
  color:rgba(255,255,255,.82);
}
.callout{
  margin:18px 0 0;
  padding:14px 14px;
  border-radius:var(--radius);
  background:linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.04));
  border:1px solid rgba(255,255,255,.12);
}
.callout-wide{
  margin-top:20px;
}
.callout-title{
  font-size:12px;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:rgba(255,255,255,.7);
  margin-bottom:6px;
}
.callout-body{
  margin:0;
  color:rgba(255,255,255,.78);
  line-height:1.6;
  font-size:15px;
}
.cta-row{
  margin-top:18px;
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}
.trust-row{
  margin-top:16px;
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}
.pill{
  padding:8px 10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.05);
  color:rgba(255,255,255,.78);
  font-size:13px;
}

.hero-panel{
  border-radius:var(--radius-2);
  border:1px solid rgba(255,255,255,.12);
  background:linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.04));
  box-shadow:var(--shadow);
  overflow:hidden;
}
.panel-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:12px 14px;
  border-bottom:1px solid rgba(255,255,255,.10);
  color:rgba(255,255,255,.72);
}
.panel-dots{display:flex; gap:6px}
.panel-dots span{
  width:10px; height:10px; border-radius:999px;
  background:rgba(255,255,255,.14);
}
.panel-dots span:nth-child(1){background:rgba(255,92,124,.6)}
.panel-dots span:nth-child(2){background:rgba(255,205,92,.55)}
.panel-dots span:nth-child(3){background:rgba(67,245,162,.55)}
.panel-title{font-size:13px}
.panel-body{padding:14px}
.preview-placeholder{
  border-radius:16px;
  border:1px dashed rgba(255,255,255,.18);
  background:
    radial-gradient(700px 280px at 20% 20%, rgba(124,92,255,.26), transparent 55%),
    radial-gradient(600px 380px at 80% 70%, rgba(57,210,255,.16), transparent 60%),
    rgba(0,0,0,.18);
  min-height: 310px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  text-align:center;
  padding:18px;
}
.preview-badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:6px 10px;
  border-radius:999px;
  background:rgba(0,0,0,.35);
  border:1px solid rgba(255,255,255,.14);
  color:rgba(255,255,255,.85);
  font-weight:650;
  font-size:12px;
  margin-bottom:10px;
}
.preview-title{
  font-weight:750;
  font-size:18px;
  letter-spacing:-.01em;
}
.preview-sub{
  margin-top:6px;
  color:rgba(255,255,255,.70);
  font-size:13px;
  line-height:1.45;
  max-width: 34ch;
}
.terminal{
  border-radius:16px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(0,0,0,.28);
  padding:14px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size:13px;
  line-height:1.55;
}
.terminal-line{margin:6px 0}
.prompt{color:rgba(57,210,255,.9)}
.ok{color:var(--ok)}
.panel-foot{
  margin-top:12px;
  display:grid;
  grid-template-columns:1fr;
  gap:10px;
}
.mini{
  border-radius:16px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.05);
  padding:10px 12px;
}
.mini-k{font-size:12px; color:rgba(255,255,255,.68); text-transform:uppercase; letter-spacing:.12em}
.mini-v{margin-top:4px; color:rgba(255,255,255,.82); font-size:13px}

main{scroll-margin-top: calc(var(--header-h) + 24px)}
.section{padding:44px 0; scroll-margin-top: calc(var(--header-h) + 24px)}
#updates-panel{scroll-margin-top: calc(var(--header-h) + 24px)}
#connect{scroll-margin-top: calc(var(--header-h) + 24px)}
.section h2{
  margin:0 0 14px;
  font-size:28px;
  letter-spacing:-.02em;
  line-height:1.12;
  font-weight:800;
}
#how h2,
#why h2{margin-bottom:34px}
#why.section{margin-top:32px}
.section-note{
  margin:0 0 16px;
  color:rgba(255,255,255,.78);
  line-height:1.6;
  font-size:16px;
}
.section-head{display:flex; gap:12px; align-items:flex-end; justify-content:space-between; flex-wrap:wrap}

.card{
  border-radius:var(--radius);
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.035);
  padding:16px;
}
.card h3{margin:0 0 8px; font-size:18px; font-weight:700}
.card p{margin:0; color:rgba(255,255,255,.75); line-height:1.55; font-size:14px}
.eyebrow{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:30px;
  height:30px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.14);
  background:var(--accent-soft);
  color:rgba(255,255,255,.9);
  font-weight:700;
}

.steps{
  display:grid;
  grid-template-columns:1fr;
  gap:12px;
}

.grid-2{
  display:grid;
  grid-template-columns:1fr;
  gap:12px;
}

#how .steps{gap:22px; align-items:start}
#how .card{
  border:0;
  background:transparent;
  padding:0;
  display:grid;
  grid-template-columns:34px 1fr;
  column-gap:14px;
  align-items:start;
  align-content:start;
}
#how .card h3{
  grid-column:2;
  margin:0 0 8px;
}
#how .card p{grid-column:2}
#how .card p{margin:0}
#how .card .eyebrow{margin-top:0; transform:translateY(-10px)}

#why .grid-2{gap:18px}
@media (max-width: 859px){
  #why .grid-2{gap:26px}
}
#why .card{
  border:0;
  background:transparent;
  padding:0;
  position:relative;
}
#why .card.why-no-left-accent::before{content:none}
#why .card h3{margin:0 0 8px}
#why .card p{margin:0}

.status-header{margin-bottom:12px}
.status-title{
  font-size:28px;
  color:var(--text);
  font-weight:800;
  letter-spacing:-.02em;
  line-height:1.12;
  margin:0 0 26px;
}
.status-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:0;
  margin-bottom:12px;
  border:1px solid var(--surface-border);
  border-radius:var(--radius);
  background:var(--surface-bg);
  overflow:hidden;
}
.status-accordion{
  margin-top:14px;
  border:0 !important;
  border-top:0 !important;
  border-bottom:0 !important;
  padding:0;
  padding-left:16px;
  box-shadow:none;
  background:transparent;
}
.status-accordion summary{
  cursor:pointer;
  font-weight:650;
  color:rgba(57,210,255,.88);
  list-style:none;
  display:inline-flex;
  align-items:center;
  gap:8px;
  border:0;
  box-shadow:none;
}
.status-accordion summary::marker{content:""}
.status-accordion summary::-webkit-details-marker{display:none}
.status-accordion summary::after{
  content:"→";
  font-size:14px;
  opacity:.7;
  transition:transform .12s ease;
}
.status-accordion[open] summary::after{
  transform:rotate(90deg);
}
.status-accordion-body{
  margin-top:0;
  color:rgba(255,255,255,.78);
  line-height:1.6;
  font-size:14px;
  max-height:0;
  opacity:0;
  transform:translateY(-4px);
  overflow:hidden;
  transition:max-height .7s cubic-bezier(.22,1,.36,1), opacity .55s ease, transform .55s ease, margin-top .55s ease;
  will-change:max-height, opacity, transform;
}
.status-accordion-body p{margin:0 0 10px}
.status-accordion-body p:last-child{margin-bottom:0}
.status-accordion[open] .status-accordion-body{
  margin-top:10px;
  max-height:900px;
  opacity:1;
  transform:translateY(0);
}
.mini-card{
  border:0;
  background:transparent;
  border-radius:0;
  padding:18px;
  position:relative;
}
.status-grid > .mini-card + .mini-card::before{
  content:"";
  position:absolute;
  left:26px;
  right:26px;
  top:0;
  height:1px;
  background:var(--divider);
}
.mini-head{
  display:flex;
  align-items:center;
  gap:8px;
  margin-bottom:14px;
}
.mini-icon{
  width:18px;
  height:18px;
  color:rgba(255,255,255,.6);
}
.mini-title{
  font-weight:700;
  font-size:18px;
}
.mini-list{
  margin:0;
  color:rgba(255,255,255,.75);
  line-height:1.55;
  font-size:14px;
  padding-left:0;
  list-style:none;
}
.mini-list li{
  margin:0;
  padding:8px 0;
  display:flex;
  gap:10px;
  align-items:flex-start;
}
.mini-list li::before{
  content:"";
  width:4px;
  height:4px;
  border-radius:999px;
  background:rgba(255,255,255,.35);
  flex:0 0 auto;
  margin-top:.62em;
}

.demo-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(240px, 1fr));
  gap:12px;
  justify-items:center;
}
.demo-card{
  overflow:hidden;
  width:100%;
  max-width:360px;
}
.demo-media{
  position:relative;
  aspect-ratio: 16 / 10;
  overflow:hidden;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.12);
  background:#000;
}
.demo-thumb{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
  background:#000;
  pointer-events:none;
}
.demo-play{
  position:absolute;
  inset:0;
  border:0;
  background:transparent;
  cursor:pointer;
  z-index:5;
}
.demo-play::before{
  content:"";
  position:absolute;
  left:50%;
  top:50%;
  width:56px;
  height:56px;
  transform:translate(-50%, -50%);
  border-radius:999px;
  background:rgba(0,0,0,.55);
  border:1px solid rgba(255,255,255,.18);
  box-shadow: 0 14px 40px rgba(0,0,0,.35);
}
.demo-play::after{
  content:"";
  position:absolute;
  left:50%;
  top:50%;
  transform:translate(-42%, -50%);
  width:0;
  height:0;
  border-style:solid;
  border-width:10px 0 10px 16px;
  border-color:transparent transparent transparent rgba(255,255,255,.92);
}
.demo-play:hover::before{border-color: rgba(57,210,255,.35)}
.demo-play:focus{outline:none}
.demo-play:focus::before{box-shadow: 0 0 0 3px rgba(57,210,255,.16), 0 14px 40px rgba(0,0,0,.35)}
.demo-meta{margin-top:10px}
.demo-title{
  font-size:15px;
  font-weight:650;
  color:rgba(255,255,255,.92);
  margin:0 0 10px;
}
.demo-line{
  font-size:13px;
  line-height:1.35;
  color:rgba(255,255,255,.65);
  margin:0;
  max-width:38ch;
}

.video-modal{
  position:fixed;
  inset:0;
  z-index:2500;
  display:grid;
  place-items:center;
  padding:18px;
  background:rgba(0,0,0,.72);
}
.video-modal[hidden]{display:none}
.video-modal-card{
  position:relative;
  width:min(980px, 94vw);
  border-radius:18px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(8,10,16,.92);
  box-shadow: 0 24px 90px rgba(0,0,0,.55);
  padding:12px;
}
.video-modal-content{
  width:100%;
  display:block;
  border-radius:14px;
  overflow:hidden;
  background:#000;
  aspect-ratio: 16 / 9;
}
.video-modal-content iframe,
.video-modal-content video{
  width:100%;
  height:100%;
  display:block;
  border:0;
  background:#000;
}
.video-modal-close{
  position:absolute;
  right:10px;
  top:10px;
  width:36px;
  height:36px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.16);
  background:rgba(0,0,0,.45);
  color:rgba(255,255,255,.9);
  font-size:20px;
  line-height:1;
  cursor:pointer;
}
.video-modal-close:hover{border-color: rgba(57,210,255,.35)}
.video-modal-close:focus{outline:none; box-shadow: 0 0 0 3px rgba(57,210,255,.16)}

.choice-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:12px;
  margin-top:12px;
}
.choice-card{
  text-decoration:none;
  cursor:pointer;
  border-radius:var(--radius-2);
  border:1px solid rgba(255,255,255,.12);
  background:
    radial-gradient(900px 500px at 10% 0%, rgba(124,92,255,.30), transparent 60%),
    radial-gradient(700px 500px at 90% 40%, rgba(57,210,255,.20), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,.065), rgba(0,0,0,.18));
  padding:18px;
  display:flex;
  flex-direction:column;
  gap:0;
  box-shadow: 0 16px 55px rgba(0,0,0,.28), inset 0 1px 0 rgba(255,255,255,.06);
  transition: transform .12s ease, border-color .12s ease, background .12s ease;
}
.choice-card[data-role="waitlist"],
.choice-card[data-role="investor"],
.choice-card[data-role="builder"]{
  border-color:rgba(124,92,255,.34);
  box-shadow:
    0 16px 55px rgba(0,0,0,.28),
    0 18px 60px rgba(124,92,255,.20),
    inset 0 1px 0 rgba(255,255,255,.06);
  background:
    radial-gradient(900px 500px at 10% 0%, rgba(124,92,255,.42), transparent 60%),
    radial-gradient(700px 500px at 90% 40%, rgba(57,210,255,.26), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,.07), rgba(0,0,0,.18));
}
.choice-card:focus{
  outline:none;
  border-color: rgba(57,210,255,.55);
  box-shadow: 0 0 0 3px rgba(57,210,255,.16);
}
.choice-card:hover{
  transform: translateY(-2px);
  border-color: rgba(57,210,255,.25);
  background:
    radial-gradient(900px 500px at 10% 0%, rgba(124,92,255,.36), transparent 60%),
    radial-gradient(700px 500px at 90% 40%, rgba(57,210,255,.24), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,.075), rgba(0,0,0,.18));
}
.choice-card[data-role="waitlist"]:hover,
.choice-card[data-role="investor"]:hover,
.choice-card[data-role="builder"]:hover{
  border-color:rgba(124,92,255,.44);
  box-shadow:
    0 18px 60px rgba(0,0,0,.30),
    0 22px 70px rgba(124,92,255,.22),
    inset 0 1px 0 rgba(255,255,255,.06);
}
.choice-kicker{
  font-size:12px;
  letter-spacing:.12em;
  text-transform:uppercase;
  color: rgba(255,255,255,.72);
}
.choice-card[data-role="waitlist"] .choice-kicker{
  color: rgba(57,210,255,.88);
}
.choice-title{
  font-weight:650;
  font-size:22px;
  letter-spacing:-.01em;
  line-height:1.15;
}
.choice-sub{
  color: var(--muted);
  font-size:14px;
  line-height:1.5;
  margin-top:6px;
  max-width: 56ch;
}
.choice-action{
  margin-top:16px;
  display:inline-flex;
  align-items:center;
  gap:10px;
  width:fit-content;
  font-weight:650;
  font-size:14px;
  line-height:1;
  color:rgba(255,255,255,.82);
  padding:0;
  border:0;
  background:transparent;
  border-radius:0;
  text-decoration:none;
  position:relative;
}
.choice-action::before{
  content:"";
  position:absolute;
  left:0;
  right:18px;
  bottom:-6px;
  height:1px;
  background:rgba(124,92,255,.55);
  opacity:0;
  transform:scaleX(.92);
  transform-origin:left;
  transition: opacity .14s ease, transform .14s ease;
}
.choice-action::after{
  content:"→";
  opacity:.75;
  display:inline-block;
  transform:translateX(0);
  transition: transform .14s ease, opacity .14s ease;
}
.choice-action-primary{color:inherit}

.choice-card:hover .choice-action,
.choice-card:focus .choice-action,
.choice-card:focus-visible .choice-action{
  color:rgba(255,255,255,.92);
}
.choice-card:hover .choice-action::before,
.choice-card:focus .choice-action::before,
.choice-card:focus-visible .choice-action::before{
  opacity:1;
  transform:scaleX(1);
}
.contact-fallback{
  margin-top:12px;
  display:flex;
  gap:10px;
  align-items:center;
  justify-content:space-between;
  flex-wrap:wrap;
  padding:12px 14px;
  border-radius:var(--radius);
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
}
.contact-fallback-text{
  display:flex;
  gap:8px;
  align-items:center;
  flex-wrap:wrap;
}
.btn-copy{white-space:nowrap}

.cta-panel{
  border-radius:24px;
  border:1px solid rgba(255,255,255,.12);
  background:
    radial-gradient(900px 500px at 10% 0%, rgba(124,92,255,.28), transparent 55%),
    radial-gradient(700px 500px at 90% 30%, rgba(57,210,255,.16), transparent 60%),
    rgba(255,255,255,.05);
  padding:18px;
  display:grid;
  grid-template-columns:1fr;
  gap:16px;
}
.checklist{margin:12px 0 0; padding:0 0 0 18px; color:rgba(255,255,255,.76)}
.checklist li{margin:8px 0}
.cta-form{display:grid; gap:10px}
.role-pill{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.05);
  color:rgba(255,255,255,.78);
  font-size:13px;
  width:fit-content;
}
.field{display:grid; gap:6px}
.field span{font-size:13px; color:rgba(255,255,255,.78)}
input,
textarea{
  width:100%;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(0,0,0,.22);
  color:rgba(255,255,255,.9);
  outline:none;
}
textarea{
  resize:vertical;
  min-height:140px;
  line-height:1.5;
}
input:focus,
textarea:focus{border-color:rgba(57,210,255,.55); box-shadow:0 0 0 3px rgba(57,210,255,.18)}
.fineprint{margin:0; font-size:12px; color:rgba(255,255,255,.55)}
.success{
  margin:0;
  padding:10px 12px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.06);
  color:rgba(255,255,255,.92);
  font-weight:650;
}

.faq{display:grid; gap:12px}
details summary{
  cursor:pointer;
  font-weight:700;
  color:rgba(255,255,255,.9);
  border:0 !important;
  border-top:0 !important;
  border-bottom:0 !important;
  box-shadow:none !important;
}
details p{margin-top:10px}
details{
  border:0 !important;
  border-top:0 !important;
  border-bottom:0 !important;
  box-shadow:none !important;
  background:transparent;
}

.footer{
  border-top:1px solid rgba(255,255,255,.08);
  -webkit-backdrop-filter:saturate(1.2) blur(16px);
  backdrop-filter:saturate(1.2) blur(16px);
  background:rgba(7,10,18,.55);
  box-shadow:0 -16px 60px rgba(0,0,0,.32);
}
.footer-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding:22px 0;
  padding-bottom:calc(22px + env(safe-area-inset-bottom));
  flex-wrap:wrap;
}
.footer-inner.footer-single{
  justify-content:center;
  text-align:center;
}
.footer-left{
  display:flex;
  align-items:center;
  gap:12px;
  flex-wrap:wrap;
}
.footer-right{display:flex; gap:14px; color:rgba(255,255,255,.65)}
.footer-right a{text-decoration:none}
.footer-right a:hover{color:rgba(255,255,255,.92)}

@media (min-width: 860px){
  .nav{display:flex}
  .header-inner{justify-content:space-between}
  .hero-grid{grid-template-columns: 1.1fr .9fr; gap:18px}
  .hero-grid.hero-grid--single{grid-template-columns: 1fr}
  .panel-foot{grid-template-columns:1fr 1fr 1fr}
  .steps{grid-template-columns:1fr 1fr; gap:14px}
  .grid-2{grid-template-columns:repeat(3, 1fr); gap:14px}
  .demo-grid{grid-template-columns:1fr 1fr 1fr; gap:14px}
  .choice-grid{grid-template-columns:repeat(3, 1fr); gap:14px}
  .cta-panel{grid-template-columns:1fr; gap:14px; padding:22px}
  .status-grid{grid-template-columns:repeat(3, 1fr)}
  #why .card{padding:0 0 0 16px}
  #why .card::before{
    content:"";
    position:absolute;
    left:0;
    top:2px;
    bottom:2px;
    width:2px;
    border-radius:2px;
    background:var(--accent-vert);
    opacity:.55;
  }
  #why .card.why-accent-right{padding-right:16px}
  #why .card.why-accent-right::after{
    content:"";
    position:absolute;
    right:0;
    top:2px;
    bottom:2px;
    width:2px;
    border-radius:2px;
    background:var(--accent-vert);
    opacity:.55;
  }
  .status-grid > .mini-card + .mini-card::before{
    left:0;
    right:auto;
    top:26px;
    bottom:26px;
    width:1px;
    height:auto;
  }
}

@media (prefers-reduced-motion: reduce){
  .btn{transition:none}
  .btn:hover{transform:none}
  .status-accordion-body{
    transition:none;
    transform:none;
  }
}
.status-divider{
  margin:84px 0 72px;
  height:1px;
  background:var(--accent-horz);
  opacity:.6;
  position:relative;
}
.status-divider::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  top:-6px;
  height:12px;
  background:linear-gradient(90deg, rgba(124,92,255,.12), rgba(57,210,255,.10));
  filter:blur(8px);
  opacity:.6;
  pointer-events:none;
}
