:root {
  --bg: #f4efe6;
  --bg-alt: #fffaf1;
  --card: rgba(255, 255, 255, 0.82);
  --line: #ddd1bd;
  --text: #18212a;
  --muted: #5c6770;
  --brand: #0f8a7b;
  --brand-dark: #1667a6;
  --accent: #f2b84b;
  --shadow: 0 18px 48px rgba(18, 33, 43, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(242, 184, 75, 0.28), transparent 26%),
    radial-gradient(circle at top right, rgba(22, 103, 166, 0.18), transparent 28%),
    linear-gradient(180deg, #f7f2e9 0%, #f2ece1 100%);
  color: var(--text);
  font: 16px/1.55 "Noto Sans", "Segoe UI", sans-serif;
}

a {
  color: var(--brand-dark);
}

code {
  background: rgba(24, 33, 42, 0.08);
  border-radius: 6px;
  padding: 0.1rem 0.35rem;
  font-family: "IBM Plex Mono", "Cascadia Code", monospace;
}

.hero,
.section,
.footer {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  padding: 26px 0 10px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.brand-icon {
  width: 42px;
  height: 42px;
}

.top-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.top-links a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 600;
}

.language-picker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border: 1px solid rgba(221, 209, 189, 0.9);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--muted);
  font-weight: 700;
}

.language-picker select {
  border: none;
  background: transparent;
  color: var(--text);
  font: inherit;
  font-weight: 700;
}

.language-picker select:focus {
  outline: none;
}

.hero-body {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
  padding: 28px 0 56px;
}

.eyebrow {
  margin: 0 0 10px;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand);
}

h1,
h2,
h3 {
  margin: 0 0 12px;
  line-height: 1.1;
  font-family: "Noto Serif", Georgia, serif;
}

h1 {
  font-size: clamp(2.1rem, 3.3vw, 3.6rem);
}

h2 {
  font-size: clamp(1.7rem, 2.6vw, 2.8rem);
}

h3 {
  font-size: 1.2rem;
}

.lead,
.section-header p,
.release-copy,
.card p,
.faq-item p,
.step p,
.footer p {
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 28px 0 18px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition: transform 120ms ease, box-shadow 120ms ease;
}

.button-rich {
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  padding: 12px 20px;
  line-height: 1.1;
}

.button-label {
  display: block;
}

.button-note {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  opacity: 0.88;
}

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

.button-primary {
  background: linear-gradient(135deg, var(--brand-dark), var(--brand));
  color: white;
  box-shadow: var(--shadow);
}

.hero-actions .button-rich.button-secondary {
  background: linear-gradient(135deg, var(--brand-dark), var(--brand));
  color: white;
  border: none;
  box-shadow: var(--shadow);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.74);
  color: var(--text);
  border: 1px solid var(--line);
}

.hero-points {
  margin: 20px 0 0;
  padding-left: 18px;
}

.hero-points li {
  margin-bottom: 8px;
}

.hero-shot img,
.shot-card img {
  width: 100%;
  display: block;
  border-radius: 22px;
  border: 1px solid rgba(24, 33, 42, 0.1);
  box-shadow: var(--shadow);
}

.section {
  padding: 62px 0;
}

.section-alt {
  padding: 62px min(24px, 3vw);
  background: rgba(255, 255, 255, 0.45);
  border: 1px solid rgba(221, 209, 189, 0.7);
  border-radius: 28px;
}

.section-header {
  max-width: 760px;
  margin-bottom: 28px;
}

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

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

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

.card,
.release-card,
.faq-item,
.shot-card,
.step {
  background: var(--card);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(221, 209, 189, 0.7);
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.card,
.faq-item,
.step,
.release-card {
  padding: 22px;
}

.release-card-beta {
  background: linear-gradient(180deg, rgba(15, 138, 123, 0.08), rgba(255, 255, 255, 0.82));
}

.is-hidden {
  display: none;
}

.release-card-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
}

.release-label {
  margin: 0;
  font-weight: 800;
  color: var(--brand);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.82rem;
}

.download-links {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.download-link {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  padding: 14px 16px;
  border-radius: 16px;
  background: white;
  border: 1px solid var(--line);
  text-decoration: none;
  color: var(--text);
}

.download-link span:last-child {
  color: var(--muted);
  font-size: 0.92rem;
}

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

.step-number {
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  border-radius: 50%;
  background: var(--accent);
  color: #3b2800;
  font-weight: 800;
}

.gallery,
.faq {
  display: grid;
  gap: 20px;
}

.shot-card {
  overflow: hidden;
}

.shot-card figcaption {
  padding: 16px 18px 18px;
  color: var(--muted);
}

.footer {
  padding: 34px 0 48px;
  text-align: center;
}

.footer p {
  margin: 8px 0;
}

.footer-meta {
  color: var(--muted);
}

.footer span {
  margin: 0 8px;
  color: var(--muted);
}

@media (max-width: 980px) {
  .hero-body,
  .grid.three,
  .grid.two,
  .release-grid,
  .steps,
  .gallery,
  .faq {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 640px) {
  body {
    font-size: 15px;
  }

  .hero,
  .section,
  .footer {
    width: min(100% - 20px, 1180px);
  }

  .hero-actions,
  .top-links {
    flex-direction: column;
    align-items: stretch;
  }

  .language-picker {
    width: 100%;
    justify-content: space-between;
  }
}
