:root {
  --bg: #07111f;
  --bg-2: #0c1b2f;
  --panel: rgba(12, 27, 47, 0.72);
  --panel-strong: rgba(17, 33, 56, 0.92);
  --line: rgba(173, 196, 219, 0.16);
  --text: #eef4fb;
  --muted: rgba(238, 244, 251, 0.76);
  --muted-strong: rgba(238, 244, 251, 0.58);
  --accent: #79f0d0;
  --accent-2: #91b7ff;
  --warm: #f5d5a5;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --max: 1180px;
  --serif: "Fraunces", "Iowan Old Style", Georgia, serif;
  --sans: "Manrope", "Avenir Next", "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(121, 240, 208, 0.14), transparent 35%),
    radial-gradient(circle at top right, rgba(145, 183, 255, 0.16), transparent 32%),
    linear-gradient(180deg, var(--bg) 0%, #071420 52%, #050b14 100%);
  min-height: 100vh;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.55), transparent 70%);
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
p { line-height: 1.7; margin: 0; color: var(--muted); }
h1, h2, h3 {
  margin: 0;
  font-family: var(--serif);
  letter-spacing: -0.03em;
  color: var(--text);
}
h1 { font-size: clamp(2.8rem, 6.1vw, 4.8rem); line-height: 0.94; max-width: 10.5ch; }
h2 { font-size: clamp(2.1rem, 4vw, 3.5rem); line-height: 1.04; }
h3 { font-size: 1.3rem; line-height: 1.15; }
.page { width: min(var(--max), calc(100vw - 40px)); margin: 0 auto; }
.shell { position: relative; z-index: 1; }
.topbar {
  position: sticky; top: 0; z-index: 30; backdrop-filter: blur(18px);
  background: rgba(7, 17, 31, 0.58); border-bottom: 1px solid rgba(173, 196, 219, 0.1);
}
.topbar-inner {
  width: min(var(--max), calc(100vw - 40px)); margin: 0 auto; min-height: 76px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.brand { display: inline-flex; align-items: center; gap: 12px; min-width: 0; }
.brand-mark {
  width: 36px; height: 36px; border-radius: 13px; display: grid; place-items: center;
  background: linear-gradient(135deg, rgba(121, 240, 208, 0.95), rgba(145, 183, 255, 0.92));
  color: #06111f; font-weight: 800; letter-spacing: -0.05em; box-shadow: 0 12px 24px rgba(121, 240, 208, 0.18);
}
.brand-copy { display: grid; gap: 2px; }
.brand-copy strong { font-size: 1rem; letter-spacing: -0.03em; }
.brand-copy span { font-size: 0.82rem; color: var(--muted-strong); }
.nav { display: flex; align-items: center; gap: 22px; }
.nav a { color: var(--muted); font-size: 0.95rem; }
.nav a:hover, .nav a[aria-current="page"] { color: var(--text); }
.nav-toggle {
  display: none; border: 1px solid var(--line); background: rgba(255, 255, 255, 0.04);
  color: var(--text); border-radius: 999px; padding: 10px 14px; font: inherit;
}
.button-row { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.button {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 46px;
  padding: 0 18px; border-radius: 999px; border: 1px solid transparent; font-weight: 700;
  letter-spacing: -0.02em; transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}
.button:hover { transform: translateY(-1px); }
.button-primary { background: linear-gradient(135deg, var(--accent), #c8fff0); color: #06111f; }
.button-secondary { border-color: var(--line); background: rgba(255, 255, 255, 0.03); color: var(--text); }
.hero { padding: 56px 0 34px; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr); gap: 28px; align-items: stretch; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px; margin-bottom: 18px; color: var(--warm);
  font-weight: 700; font-size: 0.92rem; letter-spacing: 0.02em; text-transform: uppercase;
}
.eyebrow::before {
  content: ""; width: 10px; height: 10px; border-radius: 999px; background: var(--accent);
  box-shadow: 0 0 0 6px rgba(121, 240, 208, 0.12);
}
.hero p { font-size: 1.02rem; max-width: 64ch; }
.hero-copy { display: grid; gap: 22px; align-content: start; padding: 30px 0; }
.hero-panel {
  border: 1px solid var(--line); border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 20%),
    radial-gradient(circle at top right, rgba(145, 183, 255, 0.18), transparent 30%),
    rgba(12, 27, 47, 0.8);
  box-shadow: var(--shadow); padding: 24px; display: grid; gap: 18px; min-height: 100%;
}
.hero-panel .panel-surface {
  min-height: 340px; border-radius: 22px; border: 1px solid rgba(173, 196, 219, 0.14);
  background: linear-gradient(180deg, rgba(7, 17, 31, 0.55), rgba(7, 17, 31, 0.82)),
    radial-gradient(circle at top left, rgba(121, 240, 208, 0.22), transparent 26%),
    radial-gradient(circle at bottom right, rgba(145, 183, 255, 0.18), transparent 24%);
  padding: 22px; display: grid; align-content: end; gap: 12px; position: relative; overflow: hidden;
}
.hero-panel .panel-surface::before, .hero-panel .panel-surface::after {
  content: ""; position: absolute; border-radius: 999px; filter: blur(1px);
}
.hero-panel .panel-surface::before { width: 168px; height: 168px; background: rgba(121, 240, 208, 0.12); top: -24px; right: -24px; }
.hero-panel .panel-surface::after { width: 250px; height: 250px; background: rgba(145, 183, 255, 0.1); bottom: -100px; left: -100px; }
.panel-label {
  display: inline-flex; align-items: center; width: fit-content; gap: 8px; border-radius: 999px;
  border: 1px solid rgba(173, 196, 219, 0.12); padding: 8px 12px; color: var(--muted);
  background: rgba(255, 255, 255, 0.03); font-size: 0.9rem;
}
.panel-label strong { color: var(--text); }
.stat-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
.stat {
  border: 1px solid rgba(173, 196, 219, 0.12); border-radius: 18px; background: rgba(255, 255, 255, 0.03);
  padding: 14px; display: grid; gap: 6px;
}
.stat strong { font-size: 1.15rem; color: var(--text); }
.stat span { color: var(--muted-strong); font-size: 0.92rem; }
.section { padding: 28px 0 18px; }
.section-head { display: grid; gap: 12px; max-width: 760px; margin-bottom: 24px; }
.section-head p { font-size: 1.02rem; max-width: 62ch; }
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.card {
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
  box-shadow: var(--shadow); padding: 22px; display: grid; gap: 16px;
}
.card p { max-width: 55ch; }
.icon {
  width: 42px; height: 42px; border-radius: 14px; display: grid; place-items: center;
  background: rgba(121, 240, 208, 0.1); color: var(--accent); font-size: 1.2rem;
}
.list { margin: 0; padding-left: 18px; display: grid; gap: 10px; color: var(--muted); }
.pill-row { display: flex; flex-wrap: wrap; gap: 10px; }
.pill {
  border: 1px solid rgba(173, 196, 219, 0.14); border-radius: 999px; padding: 10px 14px;
  background: rgba(255, 255, 255, 0.03); color: var(--muted); font-size: 0.92rem;
}
.workflow { border-top: 1px solid var(--line); padding-top: 16px; display: grid; gap: 10px; }
.workflow strong { color: var(--text); }
.pricing-grid { align-items: stretch; }
.price { display: grid; gap: 14px; }
.price .amount { font-family: var(--serif); font-size: 2.3rem; letter-spacing: -0.04em; }
.price .amount small { font-family: var(--sans); font-size: 0.98rem; color: var(--muted-strong); }
.price .amount-link a { color: var(--text); text-decoration: none; }
.price .amount-link a:hover { color: var(--accent); }
.price.featured { border-color: rgba(121, 240, 208, 0.34); box-shadow: 0 28px 70px rgba(121, 240, 208, 0.08); }
.tag {
  display: inline-flex; width: fit-content; align-items: center; gap: 8px; padding: 8px 12px; border-radius: 999px;
  background: rgba(121, 240, 208, 0.12); color: var(--accent); border: 1px solid rgba(121, 240, 208, 0.2);
  font-size: 0.88rem; font-weight: 700;
}
.faq { display: grid; gap: 14px; }
.faq-item {
  border: 1px solid var(--line); border-radius: var(--radius-md); background: rgba(255, 255, 255, 0.03); padding: 18px 18px 16px;
}
.faq-item summary { cursor: pointer; font-weight: 700; color: var(--text); list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item p { padding-top: 12px; }
.demo-frame {
  border: 1px solid var(--line); border-radius: 28px; overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)), rgba(12, 27, 47, 0.9);
  box-shadow: var(--shadow);
}
.demo-media {
  position: relative; aspect-ratio: 16 / 9;
  background: radial-gradient(circle at center, rgba(121, 240, 208, 0.1), transparent 34%),
    radial-gradient(circle at top right, rgba(145, 183, 255, 0.16), transparent 30%),
    linear-gradient(135deg, rgba(6, 17, 31, 0.94), rgba(11, 29, 50, 0.96));
  display: grid; place-items: center;
}
.demo-media video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  background: #050b14;
}
.demo-media .demo-placeholder { text-align: center; padding: 24px; max-width: 54ch; display: grid; gap: 14px; }
.play-button {
  width: 76px; height: 76px; border-radius: 999px; border: 1px solid rgba(121, 240, 208, 0.24);
  background: rgba(121, 240, 208, 0.1); display: grid; place-items: center; color: var(--text); font-size: 1.4rem; margin: 0 auto;
}
.demo-video { width: 100%; height: auto; display: block; background: #050b14; }
.demo-support { padding: 22px; }
.subtle { color: var(--muted-strong); font-size: 0.92rem; }
.split { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 18px; }
.footer { padding: 28px 0 50px; margin-top: 30px; }
.footer-inner {
  border-top: 1px solid var(--line); padding-top: 24px; display: flex; flex-wrap: wrap;
  align-items: start; justify-content: space-between; gap: 18px;
}
.footer-links { display: grid; grid-auto-flow: column; gap: 18px; }
.footer-links a { color: var(--muted); }
.footer-links a:hover { color: var(--text); }
.mobile-panel { display: none; }
.page-header { padding: 42px 0 18px; }
.page-header h1 { max-width: 14ch; }
.page-header p { max-width: 66ch; margin-top: 14px; font-size: 1.04rem; }
.center { text-align: center; }
.cta-band {
  margin-top: 26px; padding: 24px; border-radius: 26px; border: 1px solid rgba(121, 240, 208, 0.18);
  background: linear-gradient(135deg, rgba(121, 240, 208, 0.1), rgba(145, 183, 255, 0.08)); display: grid; gap: 14px;
}
.modal { border: none; padding: 0; max-width: min(980px, calc(100vw - 20px)); width: 100%; background: transparent; }
.modal::backdrop { background: rgba(0, 0, 0, 0.72); backdrop-filter: blur(3px); }
.modal-shell {
  border-radius: 24px; overflow: hidden; border: 1px solid rgba(173, 196, 219, 0.18);
  background: #050b14; box-shadow: 0 30px 120px rgba(0, 0, 0, 0.6);
}
.modal-bar {
  display: flex; justify-content: space-between; align-items: center; padding: 14px 16px;
  border-bottom: 1px solid rgba(173, 196, 219, 0.12); color: var(--muted);
}
.modal-close {
  border: 1px solid var(--line); background: rgba(255, 255, 255, 0.04); color: var(--text);
  border-radius: 999px; width: 38px; height: 38px; cursor: pointer;
}
.page-body { display: grid; gap: 26px; }
@media (max-width: 960px) {
  .hero-grid, .grid-3, .grid-2, .split { grid-template-columns: 1fr; }
  .nav { display: none; }
  .nav-toggle { display: inline-flex; }
  .mobile-panel { display: none; border-top: 1px solid rgba(173, 196, 219, 0.12); padding: 16px 0 18px; }
  .mobile-panel[data-open="true"] { display: grid; gap: 12px; }
  .mobile-panel a { color: var(--muted); }
  .hero { padding-top: 30px; }
  h1 { max-width: 11ch; }
  .stat-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .page, .topbar-inner { width: min(var(--max), calc(100vw - 24px)); }
  .topbar-inner { gap: 12px; }
  .brand-copy span { display: none; }
  .button-row { gap: 10px; }
  .button { width: 100%; }
  .hero-panel { padding: 16px; }
  .card, .cta-band, .demo-support { padding: 18px; }
  .footer-links { grid-auto-flow: row; }
}
