:root {
  color-scheme: light;
  --bg: #f5f5f7;
  --soft: #fbfbfd;
  --surface: #ffffff;
  --ink: #1c1c1e;
  --body: #6e6e73;
  --muted: #86868b;
  --line: #e5e5ea;
  --brand: #1ed760;
  --brand-strong: #14c95a;
  --mint: #e4fbea;
  --yellow: #ffcc00;
  --yellow-soft: #fff7d6;
  --red: #ff6b6b;
  --red-soft: #ffe7e7;
  --camera: #101828;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

a {
  color: var(--ink);
  text-decoration: none;
}

a:hover {
  color: #0d9f45;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgb(229 229 234 / 72%);
  background: rgb(245 245 247 / 84%);
  backdrop-filter: blur(20px) saturate(180%);
}

.nav {
  max-width: var(--max);
  margin: 0 auto;
  padding: 10px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-weight: 700;
  letter-spacing: 0;
}

.brand-mark {
  width: 30px;
  height: 30px;
  border-radius: 7px;
  display: block;
  object-fit: cover;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 13px;
}

.nav-link {
  color: var(--body);
  font-weight: 500;
}

.language-select {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.language-select select {
  min-height: 32px;
  padding: 0 30px 0 12px;
  border: 1px solid rgb(0 0 0 / 10%);
  border-radius: 999px;
  appearance: none;
  background:
    linear-gradient(45deg, transparent 50%, var(--body) 50%) right 13px center / 5px 5px no-repeat,
    linear-gradient(135deg, var(--body) 50%, transparent 50%) right 8px center / 5px 5px no-repeat,
    rgb(255 255 255 / 72%);
  color: var(--ink);
  font: inherit;
  font-weight: 500;
  cursor: pointer;
}

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

.hero,
.section,
.legal {
  max-width: var(--max);
  margin: 0 auto;
  padding: 78px 24px;
}

.hero {
  min-height: auto;
  padding-top: clamp(44px, 5vw, 64px);
  padding-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-copy {
  max-width: 820px;
}

.eyebrow {
  margin: 0 0 12px;
  color: #18a84f;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.12;
  letter-spacing: 0;
}

h1 {
  max-width: 960px;
  font-size: clamp(44px, 5.6vw, 76px);
  font-weight: 800;
}

h2 {
  font-size: clamp(34px, 4.8vw, 58px);
  font-weight: 800;
}

h3 {
  font-size: 20px;
}

.lead {
  max-width: 660px;
  margin: 20px auto 0;
  color: var(--body);
  font-size: clamp(18px, 1.8vw, 22px);
  line-height: 1.45;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 22px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 20px;
  border: 1px solid var(--brand);
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  font-weight: 700;
}

.button.secondary {
  background: transparent;
  color: #0d9f45;
  border-color: transparent;
}

.button:hover {
  text-decoration: none;
  transform: translateY(-1px);
}

.disclaimer {
  margin-top: 18px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: 14px;
}

.hero-poster {
  margin: 0;
  width: min(100%, 980px);
  aspect-ratio: 1024 / 500;
  border-radius: 28px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 30px 80px rgb(0 0 0 / 12%);
}

.hero-poster img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 34px;
  text-align: center;
}

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

.poster-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin: 0 0 24px;
}

.poster-card {
  margin: 0;
  border: 0;
  border-radius: 24px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 16px 48px rgb(0 0 0 / 8%);
}

.poster-card img {
  display: block;
  width: 100%;
  aspect-ratio: 5 / 8;
  object-fit: cover;
  object-position: center top;
}

.feature {
  padding: 24px 4px;
  border: 0;
  border-top: 1px solid rgb(0 0 0 / 10%);
  background: transparent;
  box-shadow: none;
}

.feature-icon {
  display: inline-block;
  margin-bottom: 16px;
  color: #18a84f;
  font-size: 13px;
  font-weight: 700;
}

.feature p,
.text-list p,
.legal p,
.legal li {
  color: var(--body);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 54px;
  align-items: start;
  border-top: 1px solid var(--line);
}

.text-list {
  display: grid;
  gap: 12px;
}

.text-list p {
  margin: 0;
  padding: 0 0 16px;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
}

.legal {
  max-width: 860px;
  background: var(--surface);
  margin-top: 48px;
  margin-bottom: 48px;
  border-radius: 28px;
}

.legal h1 {
  font-size: clamp(38px, 6vw, 60px);
}

.legal h2 {
  margin-top: 34px;
  margin-bottom: 10px;
  font-size: 24px;
}

.legal h3 {
  margin-top: 22px;
  margin-bottom: 8px;
}

.legal-meta {
  margin: 12px 0 0;
  color: var(--muted);
}

.notice {
  margin: 24px 0;
  padding: 16px 18px;
  border: 1px solid #ffe69a;
  border-radius: 16px;
  background: var(--yellow-soft);
  color: #6d5611;
}

.lang-panel[hidden] {
  display: none;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 28px 24px;
  color: var(--muted);
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

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

  .hero {
    padding-top: 40px;
  }

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

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

@media (max-width: 640px) {
  .nav {
    padding: 10px 16px;
    gap: 12px;
  }

  .nav-actions {
    gap: 12px;
    margin-left: auto;
  }

  .nav-link {
    display: none;
  }

  .language-select select {
    min-height: 30px;
    padding-left: 10px;
    font-size: 12px;
  }

  .hero,
  .section,
  .legal {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero {
    padding-top: 48px;
    padding-bottom: 44px;
    gap: 28px;
  }

  .actions {
    flex-direction: row;
  }

  .button {
    width: auto;
    min-height: 40px;
    padding: 0 16px;
  }

  .poster-card img {
    max-height: 620px;
  }

  .hero-poster {
    aspect-ratio: 1024 / 500;
    border-radius: 22px;
  }

  .poster-grid {
    grid-template-columns: 1fr;
  }
}
