:root {
  --ink: #171a16;
  --muted: #61665d;
  --paper: #f5f2e9;
  --cream: #ebe4d4;
  --green: #183c2f;
  --lime: #d8f46b;
  --line: rgba(23, 26, 22, 0.14);
  --radius: 28px;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-synthesis: none;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
p { line-height: 1.7; }

.site-header {
  position: relative;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1440px;
  margin: 0 auto;
  padding: 22px 5vw;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--ink);
  font-weight: 750;
  letter-spacing: -0.03em;
  text-decoration: none;
}

.brand img { border-radius: 10px; box-shadow: 0 5px 18px rgba(0,0,0,.12); }
nav { display: flex; align-items: center; gap: clamp(14px, 2.4vw, 34px); }
nav a { color: var(--muted); font-size: 14px; font-weight: 650; text-decoration: none; }
nav a:hover { color: var(--ink); }
.language { border: 1px solid var(--line); border-radius: 999px; padding: 7px 11px; }

.hero {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(520px, 1.15fr);
  align-items: center;
  min-height: 760px;
  max-width: 1440px;
  margin: 0 auto;
  padding: 50px 5vw 90px;
  overflow: hidden;
}

.hero-copy { position: relative; z-index: 3; max-width: 660px; }
.eyebrow, .section-kicker, .platform {
  margin: 0 0 18px;
  color: #4d663d;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

h1, h2, h3 { margin-top: 0; line-height: .98; letter-spacing: -.055em; }
.hero h1 { max-width: 760px; margin-bottom: 28px; font-size: clamp(58px, 6.4vw, 104px); font-weight: 650; }
.lead { max-width: 610px; color: var(--muted); font-size: clamp(18px, 1.65vw, 23px); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ink);
  border-radius: 999px;
  padding: 0 23px;
  font-size: 14px;
  font-weight: 750;
  text-decoration: none;
  transition: transform .2s ease, background .2s ease;
}

.button:hover { transform: translateY(-2px); }
.primary { color: white; background: var(--ink); }
.secondary { background: transparent; }
.trust-list { display: flex; gap: 30px; margin: 30px 0 0; padding: 0; color: var(--muted); font-size: 13px; list-style: none; }
.trust-list li::before { content: "✓"; margin-right: 7px; color: var(--green); font-weight: 900; }

.hero-visual { position: relative; min-height: 610px; }
.hero-visual::before {
  position: absolute;
  width: 680px;
  height: 680px;
  top: -35px;
  left: 8%;
  border-radius: 50%;
  background: var(--lime);
  content: "";
}

.tv-frame {
  position: absolute;
  z-index: 1;
  width: min(760px, 74vw);
  top: 60px;
  left: 5%;
  border: 12px solid #111;
  border-radius: 18px;
  background: #111;
  box-shadow: 0 36px 90px rgba(27, 42, 31, .3);
  transform: rotate(1.8deg);
  overflow: hidden;
}

.tv-frame img,
.wide-shot img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: contain;
}

.phone-frame {
  position: absolute;
  z-index: 2;
  width: 190px;
  right: 0;
  bottom: 0;
  border: 8px solid #171717;
  border-radius: 31px;
  background: #171717;
  box-shadow: 0 28px 70px rgba(0, 0, 0, .3);
  transform: rotate(-5deg);
  overflow: hidden;
}

.phone-frame img,
.phone-shot {
  height: auto;
  aspect-ratio: 462 / 1000;
  object-fit: contain;
}

.marquee { overflow: hidden; border-block: 1px solid var(--line); padding: 18px; white-space: nowrap; }
.marquee div { text-align: center; color: var(--muted); font-size: clamp(14px, 1.6vw, 20px); font-weight: 650; letter-spacing: .06em; }
.marquee span { margin: 0 20px; color: #98a967; }
.section { max-width: 1320px; margin: 0 auto; padding: 120px 5vw; }
.intro { display: grid; grid-template-columns: 1fr 2fr; column-gap: 7vw; }
.intro .section-kicker { padding-top: 8px; }
.intro h2 { margin-bottom: 32px; font-size: clamp(44px, 5.6vw, 80px); font-weight: 600; }
.intro > p:last-child { grid-column: 2; max-width: 800px; color: var(--muted); font-size: 20px; }

.app-grid { display: grid; gap: 28px; padding-top: 20px; }
.app-card { position: relative; min-height: 650px; border-radius: var(--radius); overflow: hidden; }
.app-copy { position: relative; z-index: 2; max-width: 580px; padding: clamp(38px, 5vw, 75px); }
.app-copy h2 { margin-bottom: 25px; font-size: clamp(46px, 5vw, 72px); font-weight: 620; }
.app-copy > p:not(.platform) { color: rgba(255,255,255,.76); font-size: 18px; }
.ios-card { color: white; background: #15392d; }
.ios-card .platform, .tv-card .platform { color: var(--lime); }
.feature-list { display: grid; gap: 10px; margin: 28px 0 34px; padding: 0; color: rgba(255,255,255,.82); list-style: none; }
.feature-list li::before { content: "—"; margin-right: 10px; color: var(--lime); }
.store-button {
  display: inline-grid;
  grid-template-rows: auto auto;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 12px;
  padding: 9px 18px 10px;
  color: white;
  background: #080a09;
  line-height: 1;
  text-decoration: none;
}
.store-small { font-size: 10px; }
.store-name { margin-top: 3px; font-size: 22px; font-weight: 600; letter-spacing: -.02em; }
.phone-shot { position: absolute; z-index: 1; width: 320px; max-width: none; right: 8%; bottom: -170px; border: 10px solid #080a09; border-radius: 42px; box-shadow: 0 24px 70px rgba(0,0,0,.45); transform: rotate(4deg); }
.tv-card { min-height: 720px; color: white; background: #292727; }
.tv-card .app-copy { max-width: 650px; }
.wide-shot { position: absolute; width: 55%; right: -3%; bottom: 8%; border: 10px solid #0d0d0d; border-radius: 18px; box-shadow: 0 30px 80px rgba(0,0,0,.5); transform: rotate(-2deg); overflow: hidden; }

.features { display: grid; grid-template-columns: .9fr 1.1fr; gap: 80px; }
.feature-heading h2 { max-width: 500px; font-size: clamp(48px, 5vw, 70px); font-weight: 600; }
.feature-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border-top: 1px solid var(--line); }
.feature-grid article { min-height: 250px; border-bottom: 1px solid var(--line); padding: 32px 34px 28px 0; }
.feature-grid article:nth-child(odd) { border-right: 1px solid var(--line); }
.feature-grid article:nth-child(even) { padding-left: 34px; }
.feature-grid span { color: #779054; font-size: 12px; font-weight: 800; }
.feature-grid h3 { margin: 36px 0 12px; font-size: 28px; letter-spacing: -.04em; }
.feature-grid p { margin: 0; color: var(--muted); font-size: 15px; }

.guide-callout { display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; margin-bottom: 110px; border-radius: var(--radius); color: white; background: var(--green); }
.guide-callout h2 { max-width: 800px; margin-bottom: 24px; font-size: clamp(44px, 5vw, 72px); font-weight: 600; }
.guide-callout p:not(.section-kicker) { max-width: 700px; color: rgba(255,255,255,.7); }
.guide-callout .section-kicker { color: var(--lime); }
.text-link { flex: 0 0 auto; border-bottom: 1px solid currentColor; padding: 0 0 7px; color: var(--lime); font-weight: 700; text-decoration: none; }

footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 50px;
  border-top: 1px solid var(--line);
  padding: 55px 5vw 28px;
  color: var(--muted);
}
.footer-brand { color: var(--ink); font-size: 20px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 24px; align-items: start; }
.footer-links a { font-size: 14px; text-decoration: none; }
.copyright { grid-column: 1 / -1; margin: 10px 0 0; font-size: 12px; }

.article-shell { max-width: 1120px; margin: 0 auto; padding: 80px 5vw 130px; }
.article { max-width: 820px; margin: 0 auto; }
.article-header { margin-bottom: 50px; }
.article h1 { max-width: 900px; margin-bottom: 30px; font-size: clamp(52px, 7vw, 88px); font-weight: 620; }
.article-deck { color: var(--muted); font-size: 22px; }
.article-meta { color: #888d83; font-size: 13px; }
.article-hero { width: calc(100% + 160px); max-width: none; margin: 0 -80px 70px; border-radius: 22px; }
.article h2 { margin: 65px 0 18px; font-size: 38px; line-height: 1.1; }
.article h3 { font-size: 24px; line-height: 1.2; }
.article p, .article li { color: #454a42; font-family: ui-serif, Georgia, serif; font-size: 18px; line-height: 1.9; }
.article li { margin: 10px 0; }
.comparison { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin: 30px 0; }
.comparison div { border: 1px solid var(--line); border-radius: 16px; padding: 24px; }
.comparison h3 { margin-bottom: 8px; }
.comparison p { margin: 0; font-size: 15px; line-height: 1.65; }
.article-note { margin: 60px 0; border-left: 5px solid var(--lime); padding: 8px 32px 25px; background: #ece8dc; }
.article-note h2 { margin-top: 20px; }
.article-downloads { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 60px; }

@media (max-width: 980px) {
  .hero { grid-template-columns: 1fr; padding-top: 70px; }
  .hero-visual { min-height: 580px; margin-top: 30px; }
  .features { grid-template-columns: 1fr; }
  .wide-shot { width: 56%; right: -7%; }
  .guide-callout { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 720px) {
  .site-header { padding-inline: 20px; }
  nav a:not(.language):not(:first-child) { display: none; }
  .hero { min-height: auto; padding: 50px 20px 65px; }
  .hero h1 { font-size: clamp(52px, 16vw, 75px); }
  .hero-visual { min-height: 390px; }
  .hero-visual::before { width: 420px; height: 420px; left: -20%; }
  .tv-frame { width: 92vw; top: 40px; left: -8%; border-width: 7px; }
  .phone-frame { width: 120px; right: 2%; border-width: 5px; border-radius: 20px; }
  .trust-list { gap: 14px; font-size: 12px; }
  .section { padding: 80px 20px; }
  .intro { display: block; }
  .intro > p:last-child { font-size: 18px; }
  .app-card { min-height: 800px; }
  .app-copy { padding: 42px 28px; }
  .phone-shot { width: 225px; right: 9%; bottom: -95px; }
  .tv-card { min-height: 760px; }
  .wide-shot { width: 92%; right: -10%; bottom: 7%; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-grid article:nth-child(odd) { border-right: 0; }
  .feature-grid article:nth-child(even) { padding-left: 0; }
  .guide-callout { margin: 0 20px 80px; padding: 60px 28px; }
  footer { grid-template-columns: 1fr; padding-inline: 20px; }
  .copyright { grid-column: auto; }
  .article-shell { padding: 55px 20px 90px; }
  .article h1 { font-size: 50px; }
  .article-hero { width: 100%; margin: 0 0 50px; }
  .comparison { grid-template-columns: 1fr; }
}

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