:root {
  --bg: #ecf4f1;
  --surface: rgba(255, 255, 255, 0.82);
  --surface-strong: #ffffff;
  --text: #10343a;
  --muted: #54757b;
  --line: rgba(16, 52, 58, 0.12);
  --brand: #0d7f78;
  --brand-deep: #0b5a56;
  --brand-soft: #d7f1ee;
  --accent: #f5b544;
  --shadow: 0 28px 80px rgba(10, 49, 56, 0.12);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Trebuchet MS", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(13, 127, 120, 0.16), transparent 30%),
    radial-gradient(circle at right 20%, rgba(245, 181, 68, 0.2), transparent 24%),
    linear-gradient(180deg, #f6fbfa 0%, var(--bg) 100%);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.shell {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(18px);
  background: rgba(246, 251, 250, 0.82);
  border-bottom: 1px solid rgba(16, 52, 58, 0.06);
}

.site-header .shell,
.site-footer .shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 0;
}

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

.brand img {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  box-shadow: 0 12px 28px rgba(13, 127, 120, 0.24);
}

.nav {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

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

.nav a:hover,
.nav a:focus-visible {
  color: var(--brand-deep);
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  padding: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
}

.lang-button {
  border: 0;
  background: transparent;
  color: var(--muted);
  font-weight: 800;
  font-size: 0.88rem;
  min-width: 46px;
  min-height: 38px;
  border-radius: 999px;
  cursor: pointer;
}

.lang-button.is-active {
  background: linear-gradient(135deg, var(--brand) 0%, #13a99f 100%);
  color: #fff;
  box-shadow: 0 10px 20px rgba(13, 127, 120, 0.2);
}

.hero {
  padding: 14px 0 8px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  gap: 12px;
  align-items: center;
}

.hero-copy,
.hero-visual,
.card,
.legal-card,
.shot {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.75);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero-copy {
  border-radius: var(--radius-xl);
  padding: 18px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--brand-soft);
  color: var(--brand-deep);
  font-weight: 700;
  font-size: 0.84rem;
}

h1 {
  margin: 10px 0 8px;
  font-size: clamp(1.5rem, 3vw, 2.6rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.lead {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.44;
  max-width: 58ch;
}

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

.button,
.button-secondary,
.store-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  min-height: 40px;
  padding: 0 16px;
  font-weight: 800;
  font-size: 0.9rem;
}

.button {
  background: linear-gradient(135deg, var(--brand) 0%, #13a99f 100%);
  color: #fff;
  box-shadow: 0 18px 35px rgba(13, 127, 120, 0.28);
}

.button-secondary {
  color: var(--brand-deep);
  background: #fff;
  border: 1px solid var(--line);
}

.hero-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 10px;
}

.hero-list div {
  padding: 10px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(16, 52, 58, 0.08);
}

.hero-list strong {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 3px;
}

.hero-list span {
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.28;
}

.hero-visual {
  border-radius: 36px;
  padding: 10px;
}

.visual-stack {
  position: relative;
  min-height: 300px;
}

.visual-stack .app-frame {
  position: absolute;
  width: 38%;
  border-radius: 18px;
  overflow: hidden;
  border: 5px solid #0e2427;
  box-shadow: 0 12px 20px rgba(9, 36, 41, 0.16);
}

.visual-stack .app-frame:first-child {
  left: 0;
  top: 0;
  transform: rotate(-5deg);
}

.visual-stack .app-frame:last-child {
  right: 0;
  top: 62px;
  transform: rotate(7deg);
}

.section {
  padding: 10px 0;
}

.section-title {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 10px;
}

.section-title h2 {
  margin: 0;
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  letter-spacing: -0.03em;
}

.section-title p {
  margin: 0;
  max-width: 52ch;
  color: var(--muted);
  line-height: 1.4;
  font-size: 0.84rem;
}

.grid-3,
.grid-2,
.legal-grid,
.shots {
  display: grid;
  gap: 10px;
}

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

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

.card,
.legal-card {
  border-radius: var(--radius-lg);
  padding: 14px;
}

.card h3,
.legal-card h3,
.shot h3 {
  margin: 0 0 8px;
  font-size: 0.9rem;
}

.card p,
.legal-card p,
.muted {
  margin: 0;
  color: var(--muted);
  line-height: 1.38;
  font-size: 0.82rem;
}

.store-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.store-card {
  padding: 14px;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(215,241,238,0.72));
  border: 1px solid rgba(16, 52, 58, 0.08);
  box-shadow: var(--shadow);
}

.store-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.store-pill {
  background: #0c1d20;
  color: #fff;
}

.store-pill.is-muted {
  background: #f2f7f6;
  color: var(--brand-deep);
  border: 1px solid rgba(16, 52, 58, 0.1);
}

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

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

.shot {
  overflow: hidden;
  border-radius: 24px;
  position: relative;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.98), rgba(230,248,246,0.92));
}

.shot-feature {
  grid-column: span 2;
}

.shot-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(9, 53, 57, 0.78);
  color: #f5ffff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.shot-copy {
  padding: 10px 12px 12px;
}

.shot img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  background: linear-gradient(180deg, #f7fbfb, #eaf5f3);
}

.shot-feature img {
  width: 100%;
  height: auto;
}

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

.legal-card strong {
  color: var(--brand-deep);
}

.page-hero {
  padding: 16px 0 8px;
}

.page-hero .shell {
  max-width: 880px;
}

.page-hero-box {
  padding: 16px;
  border-radius: var(--radius-xl);
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.75);
  box-shadow: var(--shadow);
}

.page-hero h1 {
  font-size: clamp(1.35rem, 2.7vw, 2rem);
  margin: 5px 0 7px;
}

.page-meta {
  color: var(--muted);
  font-size: 0.8rem;
}

.legal-page {
  padding: 2px 0 14px;
}

.legal-page .shell {
  max-width: 880px;
}

.legal-stack {
  display: grid;
  gap: 10px;
}

.legal-stack section {
  padding: 12px 14px;
  border-radius: var(--radius-lg);
  background: var(--surface-strong);
  border: 1px solid rgba(16, 52, 58, 0.09);
  box-shadow: 0 20px 50px rgba(10, 49, 56, 0.08);
}

.legal-stack h2 {
  margin: 0 0 8px;
  font-size: 0.94rem;
}

.legal-stack p,
.legal-stack li {
  color: var(--muted);
  line-height: 1.38;
  font-size: 0.82rem;
}

.legal-stack ul,
.legal-stack ol {
  margin: 0;
  padding-left: 20px;
}

.callout {
  padding: 12px;
  border-radius: var(--radius-md);
  background: var(--brand-soft);
  color: var(--brand-deep);
}

.site-footer {
  margin-top: 24px;
  border-top: 1px solid rgba(16, 52, 58, 0.08);
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  color: var(--muted);
}

@media (max-width: 980px) {
  .hero-grid,
  .grid-3,
  .grid-2,
  .legal-grid,
  .store-grid {
    grid-template-columns: 1fr;
  }

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

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

  .shot-feature {
    grid-column: span 2;
  }

  .hero-list {
    grid-template-columns: 1fr;
  }

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

  .visual-stack {
    min-height: 260px;
  }
}

@media (max-width: 720px) {
  .site-header .shell,
  .site-footer .shell {
    align-items: start;
    flex-direction: column;
  }

  .nav-actions {
    width: 100%;
    justify-content: space-between;
  }

  .brand {
    font-size: 1rem;
  }

  .brand img {
    width: 50px;
    height: 50px;
    border-radius: 16px;
  }

  .hero-copy,
  .hero-visual,
  .page-hero-box {
    padding: 14px;
  }

  .visual-stack {
    min-height: 230px;
  }

  .visual-stack .app-frame {
    width: 43%;
  }

  .visual-stack .app-frame:last-child {
    top: 44px;
  }

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

  .premium-shots {
    grid-template-columns: 1fr;
  }

  .shot-feature {
    grid-column: auto;
  }
}
