:root {
  color-scheme: dark light;
  --bg: #000000;
  --bg-glow: rgba(100, 210, 255, 0.16);
  --card: #1c1c1e;
  --text: #f5f5f7;
  --text-muted: #98989f;
  --border: rgba(255, 255, 255, 0.13);
  --primary: #64d2ff;
  --primary-strong: #2aa8e8;
  --on-primary: #04151c;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
  --max-width: 720px;
  --page-width: 1080px;
}

@media (prefers-color-scheme: light) {
  :root:not([data-theme='dark']) {
    color-scheme: light;
    --bg: #f2f2f7;
    --bg-glow: rgba(42, 168, 232, 0.12);
    --card: #ffffff;
    --text: #1c1c1e;
    --text-muted: #636366;
    --border: rgba(60, 60, 67, 0.16);
    --primary: #2aa8e8;
    --primary-strong: #1b8cc4;
    --on-primary: #ffffff;
    --shadow: 0 18px 50px rgba(0, 0, 0, 0.08);
  }
}

:root[data-theme='light'] {
  color-scheme: light;
  --bg: #f2f2f7;
  --bg-glow: rgba(42, 168, 232, 0.12);
  --card: #ffffff;
  --text: #1c1c1e;
  --text-muted: #636366;
  --border: rgba(60, 60, 67, 0.16);
  --primary: #2aa8e8;
  --primary-strong: #1b8cc4;
  --on-primary: #ffffff;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.08);
}

:root[data-theme='dark'] {
  color-scheme: dark;
  --bg: #000000;
  --bg-glow: rgba(100, 210, 255, 0.16);
  --card: #1c1c1e;
  --text: #f5f5f7;
  --text-muted: #98989f;
  --border: rgba(255, 255, 255, 0.13);
  --primary: #64d2ff;
  --primary-strong: #2aa8e8;
  --on-primary: #04151c;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
}

.when-dark {
  display: none;
}

:root[data-theme='dark'] .when-light {
  display: none;
}

:root[data-theme='dark'] .when-dark {
  display: block;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme='light']) .when-light {
    display: none;
  }

  :root:not([data-theme='light']) .when-dark {
    display: block;
  }
}

@media (prefers-color-scheme: light) {
  :root:not([data-theme='dark']) .when-dark {
    display: none;
  }

  :root:not([data-theme='dark']) .when-light {
    display: block;
  }
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(1200px 520px at 12% -10%, var(--bg-glow), transparent 58%),
    var(--bg);
  color: var(--text);
  font-family:
    -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.5;
}

body::before {
  background-image: radial-gradient(circle at 1px 1px, color-mix(in srgb, var(--primary) 18%, transparent) 1px, transparent 0);
  background-size: 28px 28px;
  content: '';
  inset: 0;
  pointer-events: none;
  position: fixed;
  z-index: 0;
}

a {
  color: var(--primary);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

img,
svg {
  display: block;
  max-width: 100%;
}

.site-shell {
  margin: 0 auto;
  max-width: var(--page-width);
  min-height: 100vh;
  padding: 24px 20px 48px;
  position: relative;
  z-index: 1;
}

.site-header {
  align-items: center;
  display: flex;
  gap: 14px;
  justify-content: space-between;
  margin: 0 auto 40px;
  max-width: var(--page-width);
}

.brand {
  align-items: center;
  color: inherit;
  display: inline-flex;
  gap: 12px;
  text-decoration: none;
}

.brand:hover {
  text-decoration: none;
}

.brand-mark {
  color: var(--primary);
  height: 44px;
  width: 44px;
}

.brand-name {
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.site-nav {
  align-items: center;
  display: flex;
  gap: 18px;
}

.site-nav a {
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 600;
}

.site-nav a[aria-current='page'] {
  color: var(--text);
}

.theme-toggle {
  align-items: center;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--text-muted);
  cursor: pointer;
  display: inline-flex;
  height: 38px;
  justify-content: center;
  padding: 0;
  width: 38px;
}

.theme-toggle:hover {
  color: var(--text);
}

.theme-toggle svg {
  height: 18px;
  width: 18px;
}

.hero {
  margin: 0 auto;
  max-width: var(--page-width);
  padding: 12px 0 28px;
}

.hero-card,
.content-card,
.policy-card {
  background: color-mix(in srgb, var(--card) 88%, transparent);
  border: 1px solid var(--border);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.hero-card {
  display: grid;
  gap: 28px;
  padding: 36px 28px;
}

@media (min-width: 768px) {
  .hero-card {
    align-items: center;
    grid-template-columns: 88px 1fr;
    padding: 44px 40px;
  }
}

.hero-card-split {
  overflow: hidden;
}

@media (min-width: 768px) {
  .hero-card-split {
    grid-template-columns: 1fr 300px;
    padding: 44px 40px 0;
  }
}

.hero-kicker {
  align-items: center;
  color: var(--primary);
  display: inline-flex;
  font-size: 0.78rem;
  font-weight: 700;
  gap: 10px;
  letter-spacing: 0.14em;
  margin: 0 0 14px;
  text-transform: uppercase;
}

.motif {
  display: grid;
  gap: 3px;
  grid-template-columns: repeat(2, 5px);
}

.motif span {
  background: currentColor;
  border-radius: 999px;
  height: 5px;
  width: 5px;
}

.hero-note {
  color: var(--text-muted);
  font-size: 0.88rem;
  margin: 16px 0 0;
}

.hero-shot {
  display: flex;
  justify-content: center;
}

.hero-shot img {
  border: 1px solid var(--border);
  border-radius: 32px 32px 0 0;
  box-shadow: 0 0 0 1px color-mix(in srgb, var(--primary) 18%, transparent), var(--shadow);
  margin-bottom: -1px;
  max-width: 280px;
  width: 100%;
}

@media (max-width: 767px) {
  .hero-card-split {
    padding-bottom: 0;
  }
}

.hero-copy h1 {
  font-size: clamp(2.1rem, 5vw, 3.35rem);
  letter-spacing: -0.06em;
  line-height: 1.02;
  margin: 0 0 12px;
}

.hero-copy p {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin: 0 0 22px;
  max-width: 42rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  font-size: 0.95rem;
  font-weight: 700;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  text-decoration: none;
}

.button:hover {
  text-decoration: none;
}

.button-primary {
  background: var(--primary);
  color: var(--on-primary);
}

.button-primary:hover {
  background: var(--primary-strong);
  color: var(--on-primary);
}

.button-secondary {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
}

.section {
  margin: 56px auto 0;
  max-width: var(--page-width);
}

.section-eyebrow {
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  margin: 0 0 8px;
  text-transform: uppercase;
}

.section-title {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  letter-spacing: -0.04em;
  line-height: 1.15;
  margin: 0 0 24px;
}

.steps {
  counter-reset: step;
  display: grid;
  gap: 16px;
  list-style: none;
  margin: 0;
  padding: 0;
}

@media (min-width: 768px) {
  .steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.step-card {
  background: color-mix(in srgb, var(--card) 88%, transparent);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 22px;
}

.step-number {
  align-items: center;
  background: var(--primary);
  border-radius: 999px;
  color: var(--on-primary);
  display: inline-flex;
  font-size: 0.9rem;
  font-weight: 700;
  height: 30px;
  justify-content: center;
  margin-bottom: 12px;
  width: 30px;
}

.step-card h3 {
  font-size: 1.02rem;
  letter-spacing: -0.02em;
  margin: 0 0 8px;
}

.step-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin: 0;
}

.step-card strong {
  color: var(--text);
}

.screens {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (min-width: 768px) {
  .screens {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.screen-card {
  background: color-mix(in srgb, var(--card) 88%, transparent);
  border: 1px solid var(--border);
  border-radius: 22px;
  margin: 0;
  overflow: hidden;
  padding: 14px 14px 0;
}

.screen-card img {
  border: 1px solid var(--border);
  border-bottom: none;
  border-radius: 18px 18px 0 0;
  width: 100%;
}

.screen-card figcaption {
  color: var(--text-muted);
  font-size: 0.88rem;
  font-weight: 600;
  padding: 12px 4px;
  text-align: center;
}

.feature-grid {
  display: grid;
  gap: 16px;
  margin: 0 auto;
  max-width: var(--page-width);
}

@media (min-width: 768px) {
  .feature-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.feature-card {
  background: color-mix(in srgb, var(--card) 88%, transparent);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 22px;
}

.feature-card h2,
.feature-card h3 {
  font-size: 1rem;
  letter-spacing: -0.02em;
  margin: 0 0 8px;
}

.feature-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin: 0;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  background: color-mix(in srgb, var(--card) 88%, transparent);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 4px 20px;
}

.faq-item summary {
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  padding: 16px 0;
}

.faq-item summary::marker {
  color: var(--primary);
}

.faq-item p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin: 0 0 16px;
}

.cta-card {
  align-items: center;
  background: color-mix(in srgb, var(--card) 88%, transparent);
  border: 1px solid var(--border);
  border-radius: 28px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  padding: 44px 28px;
  text-align: center;
}

.cta-card h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  letter-spacing: -0.04em;
  margin: 18px 0 8px;
}

.cta-card p {
  color: var(--text-muted);
  margin: 0 0 22px;
  max-width: 34rem;
}

.cta-actions {
  justify-content: center;
}

.policy-layout {
  margin: 0 auto;
  max-width: var(--max-width);
}

.policy-card {
  padding: 32px 24px;
}

@media (min-width: 768px) {
  .policy-card {
    padding: 40px 44px;
  }
}

.policy-card h1 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin: 0 0 8px;
}

.policy-meta {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin: 0 0 28px;
}

.policy-card h2 {
  font-size: 1.1rem;
  letter-spacing: -0.02em;
  margin: 28px 0 10px;
}

.policy-card p,
.policy-card li {
  color: var(--text);
  font-size: 0.98rem;
  margin: 0 0 12px;
}

.policy-card ul {
  margin: 0 0 12px;
  padding-left: 1.2rem;
}

.site-footer {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 40px auto 0;
  max-width: var(--page-width);
  text-align: center;
}

.site-legal-links {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  font-size: 0.78rem;
  gap: 0.45rem 0.55rem;
  justify-content: center;
  margin-top: 14px;
}

.site-legal-links a {
  color: var(--text-muted);
  text-decoration: none;
}

.site-legal-links a:hover {
  color: var(--text);
  text-decoration: underline;
}

.contact-card h2 {
  font-size: 1.1rem;
  margin: 28px 0 10px;
}

.contact-direct p,
.contact-form-intro {
  color: var(--text-muted);
  font-size: 0.98rem;
  margin: 0 0 18px;
}

.contact-form {
  display: grid;
  gap: 16px;
  margin-top: 8px;
}

.contact-honey {
  height: 1px;
  left: -10000px;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  width: 1px;
}

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

.contact-field span {
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 600;
}

.contact-field input,
.contact-field textarea {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  color: var(--text);
  font: inherit;
  padding: 12px 14px;
  width: 100%;
}

.contact-field input:focus,
.contact-field textarea:focus {
  border-color: var(--primary);
  outline: 2px solid color-mix(in srgb, var(--primary) 28%, transparent);
  outline-offset: 1px;
}

.contact-field textarea {
  min-height: 160px;
  resize: vertical;
}

.contact-submit {
  border: none;
  cursor: pointer;
  justify-self: start;
  margin-top: 4px;
  min-width: 160px;
}

.contact-submit:disabled {
  cursor: wait;
  opacity: 0.72;
}

.contact-status {
  border-radius: 14px;
  font-size: 0.95rem;
  font-weight: 600;
  margin: 0 0 16px;
  padding: 12px 14px;
}

.contact-status-success {
  background: color-mix(in srgb, var(--primary) 14%, transparent);
  border: 1px solid color-mix(in srgb, var(--primary) 35%, transparent);
  color: var(--primary);
}

.contact-status-error {
  background: color-mix(in srgb, #ff536b 12%, transparent);
  border: 1px solid color-mix(in srgb, #ff536b 35%, transparent);
  color: #ff7a86;
}

:root[data-theme='light'] .contact-status-error {
  color: #d32f49;
}

@media (prefers-color-scheme: light) {
  :root:not([data-theme='dark']) .contact-status-error {
    color: #d32f49;
  }
}

@media (max-width: 720px) {
  .site-nav {
    flex-wrap: wrap;
    gap: 10px 14px;
    justify-content: flex-end;
  }
}
