:root {
  color-scheme: light;
  --bg: #f7faf9;
  --surface: #ffffff;
  --surface-2: #edf5f3;
  --text: #12201f;
  --muted: #5b6c69;
  --line: #d7e3df;
  --brand: #0f9f9c;
  --brand-strong: #087b7d;
  --accent: #d97706;
  --shadow: 0 20px 60px rgba(15, 23, 42, .12);
  --radius: 8px;
  --container: min(1160px, calc(100% - 40px));
}

[data-theme="dark"] {
  color-scheme: dark;
  --bg: #0d1214;
  --surface: #151c1f;
  --surface-2: #1d292b;
  --text: #eef7f4;
  --muted: #a8bbb6;
  --line: #2b3a3d;
  --brand: #22d3c5;
  --brand-strong: #67e8f9;
  --accent: #f59e0b;
  --shadow: 0 22px 70px rgba(0, 0, 0, .34);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
  letter-spacing: 0;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(130deg, color-mix(in srgb, var(--brand) 13%, transparent), transparent 34%),
    linear-gradient(330deg, color-mix(in srgb, var(--accent) 10%, transparent), transparent 30%);
  pointer-events: none;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -60px;
  z-index: 20;
  padding: 10px 14px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.skip-link:focus {
  top: 12px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: color-mix(in srgb, var(--bg) 84%, transparent);
  border-bottom: 1px solid color-mix(in srgb, var(--line) 72%, transparent);
  backdrop-filter: blur(18px);
}

.nav {
  width: var(--container);
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 188px;
}

.brand img {
  width: 176px;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: .95rem;
  font-weight: 700;
}

.nav-links a {
  padding: 8px 0;
}

.nav-links a:hover {
  color: var(--brand-strong);
}

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

.icon-button {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--text);
  cursor: pointer;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.icon-button:hover {
  transform: translateY(-1px);
  border-color: color-mix(in srgb, var(--brand) 60%, var(--line));
}

.theme-icon {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.hero {
  min-height: calc(100svh - 76px);
  position: relative;
  isolation: isolate;
  display: grid;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, color-mix(in srgb, var(--bg) 95%, transparent) 0%, color-mix(in srgb, var(--bg) 74%, transparent) 38%, color-mix(in srgb, var(--bg) 18%, transparent) 72%),
    linear-gradient(0deg, var(--bg) 0%, transparent 25%);
}

.hero-inner {
  width: var(--container);
  margin: 0 auto;
  padding: 76px 0 96px;
}

.hero-content {
  max-width: 650px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  color: var(--brand-strong);
  font-size: .84rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 30px;
  height: 2px;
  background: var(--accent);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 12ch;
  margin-bottom: 22px;
  font-size: clamp(3rem, 8vw, 6.85rem);
  line-height: .9;
  letter-spacing: 0;
}

.hero-lead {
  max-width: 58ch;
  color: var(--muted);
  font-size: clamp(1rem, 1.8vw, 1.2rem);
}

.hero-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 900;
  line-height: 1.1;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: linear-gradient(135deg, var(--brand), var(--brand-strong));
  color: #062123;
  box-shadow: 0 14px 32px color-mix(in srgb, var(--brand) 24%, transparent);
}

.button-secondary {
  background: color-mix(in srgb, var(--surface) 84%, transparent);
  border-color: var(--line);
  color: var(--text);
}

.button svg {
  width: 18px;
  height: 18px;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 640px;
  margin-top: 48px;
}

.metric {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: color-mix(in srgb, var(--surface) 78%, transparent);
  box-shadow: 0 10px 34px color-mix(in srgb, #000 8%, transparent);
}

.metric strong {
  display: block;
  font-size: 1.45rem;
  line-height: 1.1;
}

.metric span {
  color: var(--muted);
  font-size: .9rem;
}

main {
  overflow: hidden;
}

.section {
  padding: 88px 0;
}

.section-alt {
  background: color-mix(in srgb, var(--surface-2) 74%, transparent);
  border-block: 1px solid var(--line);
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.section-head {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-head.center {
  margin-inline: auto;
  text-align: center;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 1;
  letter-spacing: 0;
}

.section-head p,
.split-copy p,
.product-copy p,
.faq p {
  color: var(--muted);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.product-card,
.feature-card,
.faq,
.quote-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 12px 42px color-mix(in srgb, #000 7%, transparent);
}

.product-card {
  padding: 22px;
  display: grid;
  gap: 18px;
}

.product-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  background: color-mix(in srgb, var(--brand) 16%, var(--surface-2));
  color: var(--brand-strong);
}

.product-icon svg {
  width: 25px;
  height: 25px;
}

.product-card h3 {
  margin-bottom: 8px;
  font-size: 1.25rem;
}

.product-card p {
  color: var(--muted);
  margin-bottom: 0;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.tags span {
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--surface-2);
  color: var(--muted);
  font-size: .82rem;
  font-weight: 800;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 42px;
  align-items: center;
}

.spec-list {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.spec-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--muted);
}

.check {
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: color-mix(in srgb, var(--brand) 18%, var(--surface-2));
  color: var(--brand-strong);
}

.check svg {
  width: 15px;
  height: 15px;
}

.quote-panel {
  position: relative;
  padding: 30px;
}

.quote-panel::before {
  content: "";
  display: block;
  height: 8px;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  border-radius: var(--radius) var(--radius) 0 0;
  background: linear-gradient(90deg, var(--brand), var(--accent));
}

.quote-panel strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.25rem;
}

.quote-panel p {
  color: var(--muted);
}

.quote-panel dl {
  display: grid;
  gap: 14px;
  margin: 24px 0 0;
}

.quote-panel div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.quote-panel dt {
  color: var(--muted);
  font-weight: 800;
}

.quote-panel dd {
  margin: 0;
  font-weight: 900;
  text-align: right;
}

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

.feature-card {
  padding: 20px;
}

.feature-card h3 {
  margin-bottom: 8px;
  font-size: 1.05rem;
}

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

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

.faq {
  padding: 22px;
}

.faq h3 {
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.cta-band {
  padding: 70px 0;
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--brand) 18%, var(--surface)), color-mix(in srgb, var(--accent) 12%, var(--surface)));
  border-block: 1px solid var(--line);
}

.cta-inner {
  width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.cta-inner h2 {
  max-width: 720px;
}

.cta-inner p {
  max-width: 700px;
  color: var(--muted);
}

.site-footer {
  padding: 36px 0;
  background: var(--surface);
  border-top: 1px solid var(--line);
}

.footer-inner {
  width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
  font-size: .92rem;
}

.footer-links {
  display: flex;
  gap: 18px;
  font-weight: 800;
}

@media (max-width: 900px) {
  .nav {
    min-height: 68px;
  }

  .nav-links {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero::after {
    background:
      linear-gradient(90deg, color-mix(in srgb, var(--bg) 96%, transparent) 0%, color-mix(in srgb, var(--bg) 78%, transparent) 60%, color-mix(in srgb, var(--bg) 42%, transparent) 100%),
      linear-gradient(0deg, var(--bg) 0%, transparent 28%);
  }

  .hero-inner {
    padding: 86px 0 78px;
  }

  .hero-metrics,
  .product-grid,
  .feature-grid,
  .faq-grid,
  .split,
  .cta-inner {
    grid-template-columns: 1fr;
  }

  .cta-inner {
    display: grid;
  }

  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  :root {
    --container: min(100% - 28px, 1160px);
  }

  .brand img {
    width: 150px;
  }

  h1 {
    max-width: 10ch;
  }

  .hero-actions,
  .section-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .hero-metrics,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 64px 0;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
