:root {
  --bg: #fff;
  --bg-2: #f5f5f7;
  --ink: #1d1d1f;
  --ink-2: #424245;
  --ink-3: #6e6e73;
  --ink-soft: #86868b;
  --line-soft: #e8e8ed;
  --accent: #06f;
  --accent-hover: #0052cc;
  --pad: clamp(20px, 5vw, 56px);
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #000;
    --bg-2: #161617;
    --ink: #f5f5f7;
    --ink-2: #d2d2d7;
    --ink-3: #a1a1a6;
    --ink-soft: #6e6e73;
    --line-soft: #1d1d1f;
    --accent: #2997ff;
    --accent-hover: #47a6ff;
  }
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body { background: var(--bg); color: var(--ink); font-family: Inter, -apple-system, BlinkMacSystemFont, system-ui, sans-serif; font-size: 17px; line-height: 1.5; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; font-feature-settings: "ss01", "cv11"; }
a { color: inherit; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 var(--pad); }
.nav { position: sticky; top: 0; z-index: 50; backdrop-filter: saturate(180%) blur(20px); background: color-mix(in oklch, var(--bg) 80%, transparent); border-bottom: 1px solid var(--line-soft); }
.nav-inner { display: flex; align-items: center; gap: 32px; padding: 14px var(--pad); max-width: 1280px; margin: 0 auto; }
.nav-logo { display: flex; align-items: center; gap: 9px; font-weight: 700; font-size: 17px; letter-spacing: -0.02em; }
.logo-mark { display: inline-flex; flex: none; }
.logo-mark img { height: 24px; width: auto; display: block; }
.foot-top .logo-mark img { height: 22px; }
.nav-spacer { flex: 1; }
.nav-links { display: flex; gap: 28px; font-size: 14px; }
.nav-links a { color: var(--ink-2); text-decoration: none; font-weight: 400; }
.nav-links a:hover { color: var(--ink); }
h1, h2, h3 { margin: 0; letter-spacing: -0.025em; font-weight: 700; }
.hero-eyebrow { font-size: 19px; color: var(--accent); font-weight: 500; letter-spacing: -0.01em; margin-bottom: 6px; }
.display-1 { font-size: clamp(48px, 8vw, 92px); line-height: 1.04; letter-spacing: -0.035em; font-weight: 700; }
.display-3 { font-size: clamp(28px, 3.6vw, 44px); line-height: 1.08; letter-spacing: -0.03em; font-weight: 700; }
.lead { font-size: clamp(20px, 1.8vw, 23px); line-height: 1.35; color: var(--ink-2); font-weight: 400; letter-spacing: -0.015em; }
.btn { display: inline-flex; align-items: center; gap: 6px; padding: 12px 22px; border-radius: 999px; font-size: 17px; font-weight: 500; text-decoration: none; line-height: 1; cursor: pointer; border: 0; font-family: inherit; transition: background 0.15s; }
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-hover); }
.btn-link { color: var(--accent); font-size: 17px; text-decoration: none; font-weight: 500; }
.btn-link:hover { text-decoration: underline; }
.btn-link::after { content: " ›"; margin-left: 2px; }
.hero { padding: clamp(56px, 9vw, 116px) 0 clamp(24px, 5vw, 56px); text-align: center; }
.hero .lead { max-width: 660px; margin: 24px auto 0; }
.hero .actions { display: flex; gap: 24px; justify-content: center; align-items: center; margin-top: 28px; flex-wrap: wrap; }
.hero-photo { margin-top: clamp(40px, 6vw, 72px); position: relative; aspect-ratio: 16/9; border-radius: 24px; overflow: hidden; background: var(--bg-2); }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.section { padding: clamp(56px, 8vw, 104px) 0 0; }
.section-head { text-align: center; max-width: 760px; margin: 0 auto clamp(28px, 4vw, 44px); }
.section-head .eyebrow { color: var(--ink-3); font-weight: 500; font-size: 16px; margin-bottom: 10px; }
.products { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.product { border-radius: 28px; background: var(--bg-2); overflow: hidden; display: flex; flex-direction: column; text-align: left; text-decoration: none; color: inherit; border: 1px solid var(--line-soft); transition: transform 0.18s ease, box-shadow 0.18s ease; }
.product:hover { transform: translateY(-4px); box-shadow: 0 24px 60px -22px rgba(0, 0, 0, 0.28); }
.product-body { padding: clamp(32px, 4vw, 48px) clamp(28px, 4vw, 48px) 32px; flex: 1; }
.product .eyebrow { color: var(--ink-3); font-weight: 500; font-size: 15px; margin-bottom: 10px; }
.product h3 { font-size: clamp(26px, 3vw, 38px); line-height: 1.12; min-height: 2.24em; }
.product p { color: var(--ink-2); font-size: 16px; line-height: 1.5; margin: 12px 0 18px; max-width: 32ch; }
.product .go { color: var(--accent); font-weight: 500; font-size: 16px; }
.product .go::after { content: " ›"; margin-left: 2px; }
.product-art { margin: 4px clamp(28px, 4vw, 48px) clamp(28px, 4vw, 40px); border-radius: 16px; background: var(--bg); border: 1px solid var(--line-soft); display: grid; place-items: center; padding: 14px 24px; }
.product-art svg { width: 100%; max-width: 300px; height: auto; display: block; }
.channel { margin-top: clamp(28px, 4vw, 44px); text-align: center; }
.channel p { max-width: 640px; margin: 0 auto; font-size: 16px; line-height: 1.5; color: var(--ink-3); }
.channel a { color: var(--accent); text-decoration: none; font-weight: 500; }
.channel a:hover { text-decoration: underline; }
.channel .soon { color: var(--ink-soft); }
footer { margin-top: clamp(64px, 9vw, 120px); background: var(--bg-2); padding: 44px 0 32px; font-size: 13px; color: var(--ink-3); }
.foot-top { display: flex; align-items: center; gap: 10px; color: var(--ink); font-size: 15px; font-weight: 700; letter-spacing: -0.01em; }
.foot-links { display: flex; gap: 24px; flex-wrap: wrap; margin-top: 16px; }
.foot-links a { color: var(--ink-3); text-decoration: none; }
.foot-links a:hover { color: var(--ink); }
.foot-bot { margin-top: 16px; padding-top: 18px; border-top: 1px solid var(--line-soft); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; color: var(--ink-soft); }

@media (max-width: 880px) {
  .products { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .product h3 { min-height: 0; }
}
