:root {
  color-scheme: light;
  --bg: #f6f7fb;
  --bg2: #ffffff;
  --text: #0c1020;
  --muted: #5b6377;
  --surface: rgba(255, 255, 255, 0.72);
  --surface-strong: rgba(255, 255, 255, 0.92);
  --border: rgba(17, 24, 39, 0.12);
  --shadow: 0 20px 60px rgba(10, 14, 25, 0.12);
  --shadow-soft: 0 12px 30px rgba(10, 14, 25, 0.12);
  --ring: rgba(79, 70, 229, 0.35);
  --accent: #4f46e5;
  --accent2: #06b6d4;
  --radius: 18px;
  --radius-sm: 14px;
  --container: 1120px;
  --font: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
}

html[data-theme="dark"] {
  color-scheme: dark;
  --bg: #070a12;
  --bg2: #0a0f1d;
  --text: #edf0ff;
  --muted: #b2b9d0;
  --surface: rgba(15, 21, 36, 0.6);
  --surface-strong: rgba(10, 15, 29, 0.86);
  --border: rgba(229, 231, 235, 0.12);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.55);
  --shadow-soft: 0 18px 40px rgba(0, 0, 0, 0.45);
  --ring: rgba(99, 102, 241, 0.42);
  --accent: #6d74ff;
  --accent2: #22d3ee;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: radial-gradient(1200px 600px at 20% 0%, rgba(79, 70, 229, 0.18), transparent 60%),
    radial-gradient(900px 600px at 90% 20%, rgba(34, 211, 238, 0.14), transparent 55%),
    radial-gradient(800px 500px at 50% 100%, rgba(79, 70, 229, 0.08), transparent 55%),
    linear-gradient(180deg, var(--bg), var(--bg2));
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 22px;
}

.skip {
  position: absolute;
  left: -999px;
  top: 10px;
  background: var(--surface-strong);
  border: 1px solid var(--border);
  padding: 10px 12px;
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
  color: var(--text);
  text-decoration: none;
}

.skip:focus {
  left: 10px;
  outline: 3px solid var(--ring);
  outline-offset: 2px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
  background: rgba(255, 255, 255, 0.55);
  border-bottom: 1px solid rgba(17, 24, 39, 0.06);
}

html[data-theme="dark"] .site-header {
  background: rgba(5, 8, 16, 0.55);
  border-bottom: 1px solid rgba(229, 231, 235, 0.08);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 14px;
  gap: 16px;
}

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

.brand-name {
  font-weight: 650;
  letter-spacing: -0.02em;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 18px;
}

.nav-link {
  color: var(--muted);
  text-decoration: none;
  font-weight: 520;
  font-size: 14px;
}

.nav-link:hover {
  color: var(--text);
}

.nav-actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.icon-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: 0 12px 30px rgba(10, 14, 25, 0.08);
  color: var(--muted);
  cursor: pointer;
}

.icon-button:hover {
  color: var(--text);
  transform: translateY(-1px);
}

.icon-button:focus-visible {
  outline: 3px solid var(--ring);
  outline-offset: 2px;
}

.icon {
  width: 20px;
  height: 20px;
  display: inline-flex;
}

.icon svg {
  width: 20px;
  height: 20px;
}

html[data-theme="dark"] .icon[data-icon="sun"] {
  display: none;
}

html[data-theme="light"] .icon[data-icon="moon"] {
  display: none;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 42px;
  padding: 0 14px;
  border-radius: 14px;
  border: 1px solid transparent;
  font-weight: 620;
  letter-spacing: -0.01em;
  font-size: 14px;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
}

.button--primary {
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #ffffff;
  box-shadow: 0 18px 45px rgba(79, 70, 229, 0.25);
}

.button--primary:hover {
  filter: brightness(1.03);
  transform: translateY(-1px);
}

.button--secondary {
  background: var(--surface);
  border-color: var(--border);
  color: var(--text);
}

.button--secondary:hover {
  box-shadow: var(--shadow-soft);
  transform: translateY(-1px);
}

.button:focus-visible {
  outline: 3px solid var(--ring);
  outline-offset: 2px;
}

.hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  padding-block: 96px 56px;
}

.eyebrow {
  margin: 0 0 10px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 650;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.headline {
  margin: 0 0 12px;
  font-size: clamp(38px, 5vw, 58px);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.lead {
  margin: 0 0 18px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--muted);
  max-width: 52ch;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0 16px;
}

.cta-row--tight {
  margin: 0;
}

.hero-points {
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
  color: var(--muted);
  font-size: 14px;
}

.hero-points li {
  padding-left: 18px;
  position: relative;
}

.hero-points li::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 100px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  position: absolute;
  left: 0;
  top: 7px;
}

.hero-media {
  display: grid;
  gap: 18px;
}

.shot {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.shot--wide {
  max-width: 980px;
  margin: 18px auto 48px;
}

.shot-chrome {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  background: var(--surface-strong);
}

.dot {
  width: 11px;
  height: 11px;
  border-radius: 99px;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.1);
}

.dot--red {
  background: #ff5f57;
}

.dot--yellow {
  background: #febc2e;
}

.dot--green {
  background: #28c840;
}

.shot-body {
  position: relative;
  padding: 0;
}

.shot-img {
  width: 100%;
  height: auto;
  display: block;
  background: rgba(0, 0, 0, 0.03);
  opacity: 0;
  transition: opacity 180ms ease;
}

html[data-theme="dark"] .shot-img {
  background: rgba(255, 255, 255, 0.04);
}

.shot-fallback {
  position: absolute;
  inset: 0;
  border-radius: 0;
  border: 1px dashed rgba(148, 163, 184, 0.6);
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.08), rgba(34, 211, 238, 0.06));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px;
}

[data-shot-loaded="true"] .shot-fallback {
  display: none;
}

[data-shot-loaded="true"] .shot-img {
  opacity: 1;
}

.placeholder {
  width: min(720px, 100%);
  border-radius: 16px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  background: rgba(255, 255, 255, 0.18);
  overflow: hidden;
  box-shadow: 0 22px 60px rgba(10, 14, 25, 0.12);
}

html[data-theme="dark"] .placeholder {
  background: rgba(15, 21, 36, 0.45);
}

.placeholder-top {
  height: 46px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.25);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.26), transparent);
}

.placeholder-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  padding: 18px;
}

.placeholder-col {
  height: 220px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(148, 163, 184, 0.28), rgba(148, 163, 184, 0.08));
}

.placeholder-label {
  padding: 14px 18px 16px;
  font-size: 13px;
  color: var(--muted);
  border-top: 1px solid rgba(148, 163, 184, 0.25);
}

.trust {
  display: grid;
  gap: 12px;
}

.trust-item {
  border-radius: 16px;
  border: 1px solid var(--border);
  background: var(--surface);
  padding: 14px 14px 13px;
}

.trust-kicker {
  font-weight: 700;
  font-size: 13px;
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}

.trust-text {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.section {
  position: relative;
  isolation: isolate;
  padding-block: 96px;
  scroll-margin-top: 84px;
}

.section::before {
  content: "";
  position: absolute;
  inset: 0;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  background: var(--bg2);
  z-index: -1;
  pointer-events: none;
}

.section + .section {
  padding-top: 0;
}

.section-head {
  display: grid;
  gap: 10px;
  margin-bottom: 22px;
}

.section h2 {
  margin: 0;
  font-size: clamp(26px, 3.4vw, 38px);
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.section-lead {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
  max-width: 65ch;
}

.grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-bottom: 48px;
}

.card {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  padding: 18px;
}

.card h3 {
  margin: 12px 0 8px;
  font-size: 16px;
  letter-spacing: -0.02em;
}

.card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
  font-size: 14px;
}

.card-icon {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.12), rgba(34, 211, 238, 0.1));
  border: 1px solid rgba(79, 70, 229, 0.18);
  color: var(--text);
}

.card-icon svg {
  width: 22px;
  height: 22px;
}

.switcher {
  display: flex;
  justify-content: center;
  margin: 18px 0 6px;
}

.segmented {
  display: inline-flex;
  gap: 6px;
  padding: 6px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: var(--surface);
}

.segmented-btn {
  border: 0;
  background: transparent;
  color: var(--muted);
  font: inherit;
  padding: 10px 12px;
  border-radius: 12px;
  cursor: pointer;
  font-weight: 600;
  font-size: 13px;
}

.segmented-btn[aria-selected="true"] {
  color: var(--text);
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 12px 25px rgba(10, 14, 25, 0.12);
}

html[data-theme="dark"] .segmented-btn[aria-selected="true"] {
  background: rgba(10, 15, 29, 0.85);
}

.segmented-btn:focus-visible {
  outline: 3px solid var(--ring);
  outline-offset: 2px;
}

.card--cta {
  display: grid;
  gap: 16px;
  align-items: center;
  padding: 22px;
  margin-bottom: 48px;
}

.footer {
  position: relative;
  isolation: isolate;
  padding: 26px 0 40px;
  color: var(--muted);
  background: var(--bg2);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid rgba(148, 163, 184, 0.22);
  padding-top: 18px;
}

html[data-theme="dark"] .footer-inner {
  border-top-color: rgba(148, 163, 184, 0.14);
}

.footer-brand {
  font-weight: 650;
  color: var(--text);
}

.footer-muted {
  margin-left: 10px;
  font-size: 13px;
}

.footer-link {
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
  font-size: 13px;
}

.footer-link:hover {
  color: var(--text);
}

@media (min-width: 820px) {
  .nav-links {
    display: flex;
  }

  .hero {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: start;
    padding-block: 120px 72px;
  }

  .trust {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .card--cta {
    grid-template-columns: 1fr auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
  }
}
