:root {
  --bg: #f4f2ed;
  --surface: #fefefe;
  --ink: #182028;
  --muted: #4d5a67;
  --line: #ccd3db;
  --brand: #0b6a70;
  --brand-dark: #094c50;
  --accent: #dca24a;
  --radius: 16px;
  --shadow: 0 18px 50px rgba(7, 32, 42, 0.13);
  --header-offset: 7rem;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

html {
  scroll-padding-top: var(--header-offset);
}

section[id],
footer[id] {
  scroll-margin-top: var(--header-offset);
}

body {
  font-family: Manrope, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
}

.site-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 12% 12%, rgba(220, 162, 74, 0.24), transparent 45%),
    radial-gradient(circle at 88% 24%, rgba(11, 106, 112, 0.22), transparent 50%),
    linear-gradient(180deg, #faf8f4 0%, #eef2f6 100%);
}

.container {
  width: min(1120px, calc(100% - 2.2rem));
  margin-inline: auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(10px);
  background: rgba(244, 242, 237, 0.86);
  border-bottom: 1px solid rgba(24, 32, 40, 0.08);
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: var(--header-offset);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
  color: inherit;
  text-decoration: none;
}

.brand-logo {
  inline-size: 13.2rem;
  block-size: 4rem;
  object-fit: contain;
}

.nav {
  display: flex;
  gap: 1.2rem;
}

.lang-switch {
  display: inline-flex;
  gap: 0.35rem;
  padding: 0.2rem;
  border: 1px solid rgba(9, 76, 80, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.75);
}

.lang-btn {
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 0.35rem 0.58rem;
  cursor: pointer;
}

.lang-btn.is-active {
  background: var(--brand);
  color: #fff;
}

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

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

.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.6rem;
  padding: 4.5rem 0 3.2rem;
}

.kicker {
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-size: 0.78rem;
  color: var(--brand);
  font-weight: 800;
  margin: 0 0 0.7rem;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: Outfit, Manrope, sans-serif;
}

h1 {
  font-size: clamp(2.1rem, 4.8vw, 3.3rem);
  line-height: 1.05;
  margin-bottom: 1rem;
}

h2 {
  font-size: clamp(1.5rem, 3.3vw, 2.3rem);
  margin-bottom: 0.8rem;
}

.hero p {
  color: var(--muted);
  max-width: 60ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  padding: 0.75rem 1.2rem;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--brand);
  color: #fff;
}

.btn-primary:hover {
  background: var(--brand-dark);
}

.btn-ghost {
  border-color: var(--line);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.78);
}

.btn-ghost:hover {
  border-color: #a7b1bb;
}

.hero-panel {
  padding: 1.4rem;
  border: 1px solid rgba(10, 33, 46, 0.12);
  border-radius: var(--radius);
  background: linear-gradient(145deg, #ffffff 0%, #f4f7f9 100%);
  box-shadow: var(--shadow);
}

.hero-panel h2 {
  margin-bottom: 0.9rem;
}

.hero-panel ul {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--muted);
  display: grid;
  gap: 0.55rem;
}

.section {
  padding: 1rem 0 3.2rem;
}

.section-head {
  max-width: 70ch;
  margin-bottom: 1.2rem;
}

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

.card {
  border: 1px solid rgba(12, 40, 56, 0.11);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
  padding: 1.1rem;
}

.card h3 {
  margin-bottom: 0.45rem;
}

.card p,
.about-text {
  margin: 0;
  color: var(--muted);
}

.app-strip {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1rem;
  border: 1px solid rgba(10, 44, 51, 0.14);
  border-radius: var(--radius);
  padding: 1.2rem;
  background: linear-gradient(150deg, #fefdf9 0%, #f1f8fa 100%);
}

.store-links {
  display: grid;
  gap: 0.8rem;
  align-content: center;
  justify-items: start;
}

.store-link {
  display: inline-block;
  text-decoration: none;
  border-radius: 10px;
}

.store-badge {
  display: block;
  width: 190px;
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 12px 24px rgba(6, 33, 46, 0.14));
  transition: transform 0.2s ease;
}

.store-link:hover .store-badge {
  transform: translateY(-2px);
}

.app-shots {
  margin-top: 1rem;
  padding: 1rem;
  border: 1px solid rgba(10, 44, 51, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
}

.app-shots-head {
  margin-bottom: 0.8rem;
}

.app-shots-head h3 {
  font-size: clamp(1.2rem, 2.4vw, 1.6rem);
}

.app-shots-head p {
  margin: 0;
  color: var(--muted);
}

.shots-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.shot-card {
  margin: 0;
}

.shot-image {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 260px;
  max-height: 420px;
  object-fit: cover;
  object-position: top;
  border-radius: 14px;
  border: 1px solid rgba(9, 76, 80, 0.22);
  box-shadow: 0 12px 26px rgba(7, 32, 42, 0.12);
}

.footer {
  margin-top: 1.6rem;
  padding: 2.2rem 0 1.2rem;
  background: #111d28;
  color: #ebeff2;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.footer h3 {
  margin-bottom: 0.5rem;
  font-size: 1.05rem;
}

.footer p {
  margin: 0.2rem 0;
  color: #d0d8df;
}

.footer a {
  color: #dce9f6;
}

.legal {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  margin-top: 1rem;
  padding-top: 0.8rem;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 960px) {
  :root {
    --header-offset: 6.25rem;
  }

  .hero,
  .app-strip {
    grid-template-columns: 1fr;
  }

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

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

  .nav {
    gap: 0.8rem;
    font-size: 0.95rem;
  }

  .lang-switch {
    margin-left: 0.6rem;
  }
}

@media (max-width: 640px) {
  :root {
    --header-offset: 5rem;
  }

  .topbar-inner {
    min-height: var(--header-offset);
  }

  .nav {
    display: none;
  }

  .lang-switch {
    margin-left: auto;
  }

  .hero {
    padding-top: 3rem;
  }

  .cards,
  .shots-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
}
