:root {
  color-scheme: dark;
  --base: #101815;
  --base-deep: #08110e;
  --surface: #26332e;
  --surface-2: #31413a;
  --surface-3: #3e5149;
  --stroke: #4a5e55;
  --text: #ffffff;
  --text-soft: #d6ded9;
  --text-muted: #a2ada7;
  --bone: #e6f0ea;
  --sage: #97b1a1;
  --lime: #b7f264;
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.38);
  font-family: "Manrope", "Aptos", "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 12%, rgba(151, 177, 161, 0.22), transparent 32rem),
    radial-gradient(circle at 92% 28%, rgba(183, 242, 100, 0.12), transparent 24rem),
    linear-gradient(180deg, #07100d 0%, var(--base) 42%, #0b1511 100%);
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.36;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, black, transparent 85%);
}
a { color: inherit; text-decoration: none; }
.page-shell { width: min(1160px, calc(100% - 32px)); margin: 0 auto; }
.nav {
  position: sticky;
  top: 16px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 16px auto 54px;
  padding: 12px 14px;
  border: 1px solid rgba(214, 222, 217, 0.16);
  border-radius: 999px;
  background: rgba(16, 24, 21, 0.78);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
  font-weight: 900;
  letter-spacing: -0.04em;
}
.brand img { width: 38px; height: 38px; border-radius: 12px; }
.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  flex-wrap: wrap;
}
.nav-links a,
.pill,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 850;
}
.nav-links a {
  min-height: 42px;
  padding: 0 16px;
  color: var(--text-soft);
  font-size: 0.94rem;
}
.nav-links a:hover {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
}
.pill,
.button.primary {
  background: var(--bone);
  color: var(--base-deep);
}
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.7fr);
  gap: 28px;
  align-items: stretch;
  padding-bottom: 72px;
}
.hero-copy,
.card,
.phone-card,
.legal-card {
  border: 1px solid rgba(151, 177, 161, 0.22);
  background: rgba(38, 51, 46, 0.72);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}
.hero-copy {
  position: relative;
  overflow: hidden;
  min-height: 590px;
  padding: clamp(32px, 6vw, 72px);
  border-radius: 42px;
}
.hero-copy::after {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  left: -110px;
  bottom: -160px;
  border-radius: 50%;
  background: rgba(151, 177, 161, 0.12);
}
.eyebrow {
  margin: 0 0 18px;
  color: var(--lime);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
h1, h2, h3 {
  margin: 0;
  letter-spacing: -0.055em;
  line-height: 0.93;
}
h1 { max-width: 840px; font-size: clamp(4.1rem, 11vw, 9.7rem); }
h2 { font-size: clamp(2.4rem, 6vw, 5.2rem); }
h3 { font-size: clamp(1.55rem, 3vw, 2.5rem); }
.lede {
  position: relative;
  z-index: 1;
  max-width: 650px;
  margin: 30px 0 0;
  color: var(--text-soft);
  font-size: clamp(1.08rem, 2vw, 1.45rem);
  line-height: 1.55;
}
.hero-actions {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 34px;
}
.button {
  min-height: 58px;
  padding: 0 24px;
  border: 1px solid rgba(230, 240, 234, 0.25);
}
.button.secondary { background: rgba(66, 86, 77, 0.68); color: var(--text); }
.nav-links a.pill {
  color: var(--base-deep);
}
.phone-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 590px;
  padding: 24px;
  border-radius: 42px;
}
.app-top {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
}
.app-top img { width: 68px; height: 68px; border-radius: 22px; }
.app-top strong {
  display: block;
  font-size: 1.9rem;
  letter-spacing: -0.07em;
}
.app-top span,
.muted { color: var(--text-muted); }
.mock-screen { display: grid; gap: 14px; margin-top: 38px; }
.mock-button {
  display: grid;
  place-items: center;
  min-height: 96px;
  border-radius: 26px;
  background: var(--bone);
  color: var(--base-deep);
  font-size: 1.7rem;
  font-weight: 950;
  letter-spacing: -0.06em;
}
.settings-card,
.trial-card {
  padding: 26px;
  border: 1px solid rgba(151, 177, 161, 0.28);
  border-radius: 30px;
  background: rgba(16, 24, 21, 0.48);
}
.settings-card div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(214, 222, 217, 0.15);
  color: var(--text-soft);
  font-size: 1.2rem;
}
.settings-card div:last-child { border-bottom: 0; }
.settings-card strong { color: var(--text); }
.trial-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 2rem;
  letter-spacing: -0.06em;
}
.section { padding: 72px 0; }
.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(260px, 0.48fr);
  gap: 28px;
  align-items: end;
  margin-bottom: 28px;
}
.section-head p,
.card p,
.legal-card p,
.legal-card li {
  color: var(--text-soft);
  line-height: 1.65;
}
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.grid.two { grid-template-columns: repeat(2, 1fr); }
.card {
  min-height: 250px;
  padding: 28px;
  border-radius: 30px;
}
.card .number {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 28px;
  border-radius: 50%;
  background: rgba(183, 242, 100, 0.14);
  color: var(--lime);
  font-weight: 950;
}
.legal-layout {
  display: grid;
  grid-template-columns: minmax(220px, 0.33fr) minmax(0, 1fr);
  gap: 22px;
  align-items: start;
  padding-bottom: 72px;
}
.legal-card {
  padding: clamp(24px, 5vw, 56px);
  border-radius: 42px;
}
.legal-card h1 { font-size: clamp(3rem, 8vw, 6.8rem); }
.legal-card h2 { margin-top: 42px; font-size: clamp(1.9rem, 4vw, 3.3rem); }
.legal-card ul,
.legal-card ol { padding-left: 1.25rem; }
.legal-form {
  display: grid;
  gap: 14px;
  margin: 22px 0 28px;
  padding: 20px;
  border: 1px solid rgba(151, 177, 161, 0.22);
  border-radius: 24px;
  background: rgba(16, 24, 21, 0.42);
}
.legal-form label {
  display: grid;
  gap: 8px;
  color: var(--text);
  font-weight: 850;
}
.legal-form label span {
  color: var(--text-muted);
  font-size: 0.86rem;
  font-weight: 700;
}
.legal-form input,
.legal-form textarea {
  width: 100%;
  border: 1px solid rgba(214, 222, 217, 0.18);
  border-radius: 16px;
  background: rgba(8, 17, 14, 0.7);
  color: var(--text);
  font: inherit;
  line-height: 1.45;
}
.legal-form input {
  min-height: 54px;
  padding: 0 16px;
}
.legal-form textarea {
  resize: vertical;
  min-height: 118px;
  padding: 14px 16px;
}
.legal-form input:focus,
.legal-form textarea:focus {
  outline: 2px solid rgba(183, 242, 100, 0.42);
  border-color: rgba(183, 242, 100, 0.52);
}
.checkbox-row {
  grid-template-columns: 22px 1fr;
  align-items: start;
  gap: 12px;
  color: var(--text-soft);
  font-weight: 700;
}
.checkbox-row input {
  width: 18px;
  min-height: 18px;
  margin-top: 4px;
  accent-color: var(--lime);
}
.checkbox-row span {
  color: var(--text-soft);
  font-size: 0.96rem;
  font-weight: 750;
}
.legal-form button {
  width: fit-content;
  min-width: min(100%, 240px);
  cursor: pointer;
}
.legal-form button:disabled {
  cursor: wait;
  opacity: 0.62;
}
.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--text-muted);
  font-weight: 750;
}
.form-status.success { color: var(--lime); }
.form-status.error { color: #ffb3a9; }
.hidden-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}
.side-nav {
  position: sticky;
  top: 104px;
  padding: 18px;
  border: 1px solid rgba(151, 177, 161, 0.18);
  border-radius: 28px;
  background: rgba(16, 24, 21, 0.68);
}
.side-nav a {
  display: block;
  padding: 12px 14px;
  border-radius: 16px;
  color: var(--text-soft);
  font-weight: 800;
}
.side-nav a:hover {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
}
.footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  padding: 42px 0 56px;
  color: var(--text-muted);
  border-top: 1px solid rgba(214, 222, 217, 0.12);
}
.footer-note {
  flex-basis: 100%;
  font-size: 0.82rem;
  line-height: 1.5;
  color: var(--text-muted);
  opacity: 0.9;
}
@media (max-width: 880px) {
  .nav { align-items: flex-start; border-radius: 28px; flex-direction: column; }
  .nav-links { justify-content: flex-start; }
  .hero, .section-head, .legal-layout { grid-template-columns: 1fr; }
  .grid, .grid.two { grid-template-columns: 1fr; }
  .side-nav { position: static; }
}
@media (max-width: 560px) {
  .page-shell { width: min(100% - 20px, 1160px); }
  .hero-copy, .phone-card, .legal-card { border-radius: 28px; }
  .hero-copy { min-height: auto; padding: 30px 22px; }
  .phone-card { min-height: auto; }
}
