:root {
  color-scheme: light dark;
  --surface: #fcf7ed;
  --surface-alt: #f7eddc;
  --text-primary: #29212e;
  --text-secondary: #595261;
  --brand-primary: #ff9400;
  --brand-secondary: #ffd966;
  --container: 1040px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: ui-rounded, "SF Pro Rounded", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text-primary);
  background: var(--surface);
  line-height: 1.5;
}

.container {
  width: min(var(--container), calc(100% - 32px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 5;
  background: color-mix(in srgb, var(--surface) 85%, transparent);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(41, 33, 46, 0.08);
}

.nav-wrap {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.brand {
  font-weight: 800;
  color: var(--text-primary);
  text-decoration: none;
}

nav {
  display: flex;
  gap: 16px;
}

nav a {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
}

nav a:hover {
  color: var(--text-primary);
}

.hero {
  display: grid;
  gap: 20px;
  grid-template-columns: 1.4fr 1fr;
  align-items: center;
  padding: clamp(28px, 5vw, 64px) 0 24px;
}

.hero-copy {
  background: linear-gradient(140deg, var(--brand-secondary), var(--brand-primary));
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 20px;
  padding: clamp(24px, 4vw, 40px);
  box-shadow: 0 18px 36px rgba(41, 33, 46, 0.16);
}

.hero-art {
  display: grid;
  place-items: center;
}

.device-mockup {
  width: min(300px, 78%);
  background: #101114;
  border-radius: 40px;
  padding: 10px;
  box-shadow: 0 22px 40px rgba(41, 33, 46, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.device-mockup img {
  display: block;
  width: 100%;
  border-radius: 30px;
}

.eyebrow {
  margin: 0 0 8px;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #2f2536;
}

h1 {
  margin: 0;
  font-size: clamp(2rem, 6vw, 3.4rem);
  line-height: 1.05;
  color: var(--text-primary);
  font-weight: 800;
}

.tagline {
  margin: 14px 0 10px;
  font-size: clamp(1.1rem, 2.6vw, 1.4rem);
  color: var(--text-primary);
  font-weight: 600;
}

.body {
  margin: 0 0 28px;
  max-width: 56ch;
  line-height: 1.55;
  color: #2f2536;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cta {
  display: inline-block;
  background: var(--surface);
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 700;
  border-radius: 14px;
  padding: 12px 18px;
  border: 1px solid rgba(41, 33, 46, 0.12);
}

.cta:hover {
  background: var(--surface-alt);
}

.cta-primary {
  background: #2f2536;
  color: #fff7ef;
  border-color: rgba(255, 255, 255, 0.22);
}

.cta-primary:hover {
  background: #1f1824;
}

.section {
  padding: 26px 0;
}

.section h2 {
  margin: 0 0 14px;
  font-size: clamp(1.3rem, 3vw, 2rem);
}

.grid {
  display: grid;
  gap: 14px;
}

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

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

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

.card {
  background: var(--surface-alt);
  border: 1px solid rgba(41, 33, 46, 0.08);
  border-radius: 20px;
  padding: 16px;
}

.card h3 {
  margin: 0 0 8px;
}

.card p {
  margin: 0;
  color: var(--text-secondary);
}

.shot {
  margin: 0;
  background: var(--surface-alt);
  border: 1px solid rgba(41, 33, 46, 0.08);
  border-radius: 20px;
  padding: 14px;
  text-align: center;
}

.shot img {
  width: 100%;
  max-width: 220px;
  border-radius: 18px;
  box-shadow: 0 10px 24px rgba(41, 33, 46, 0.16);
}

.shot p {
  margin: 10px 0 0;
  color: var(--text-secondary);
  font-weight: 600;
}

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

details {
  background: var(--surface-alt);
  border: 1px solid rgba(41, 33, 46, 0.08);
  border-radius: 14px;
  padding: 12px 14px;
}

summary {
  cursor: pointer;
  font-weight: 700;
}

details p {
  margin: 8px 0 0;
  color: var(--text-secondary);
}

.section-cta {
  text-align: center;
  padding-bottom: 48px;
}

.section-cta p {
  margin: 0 0 14px;
  color: var(--text-secondary);
}

.site-footer {
  border-top: 1px solid rgba(41, 33, 46, 0.08);
  padding: 20px 0 34px;
}

.site-footer p {
  margin: 0;
  color: var(--text-secondary);
}

@media (max-width: 860px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero-art {
    order: -1;
  }

  .device-mockup {
    width: min(260px, 70%);
  }

  .grid.three,
  .grid.five,
  .grid.two {
    grid-template-columns: 1fr;
  }
}

@media (prefers-color-scheme: dark) {
  :root {
    --surface: #1c1a1f;
    --surface-alt: #2e2930;
    --text-primary: #faf5f0;
    --text-secondary: #b8afbf;
    --brand-primary: #ff9e26;
    --brand-secondary: #f2bf59;
  }

  .site-header,
  .site-footer,
  .card,
  .shot,
  details {
    border-color: rgba(255, 255, 255, 0.09);
  }

  .eyebrow {
    color: rgba(250, 245, 240, 0.85);
  }

  .cta {
    border-color: rgba(255, 255, 255, 0.1);
  }

  .cta-primary {
    background: #faf5f0;
    color: #1c1a1f;
  }

  .cta-primary:hover {
    background: #e9ddd1;
  }

  .device-mockup {
    background: #090a0c;
    border-color: rgba(255, 255, 255, 0.2);
  }
}
