:root {
  --brand: #19A794;
  --brand-light: #24D6C1;
  --brand-deep: #0E7A6D;
  --ink: #0B1F2A;
  --ink-soft: #3A5563;
  --mist: #E8F6F4;
  --surface: #F5FBFA;
  --white: #ffffff;
  --line: rgba(11, 31, 42, 0.08);
  --shadow: 0 24px 60px rgba(14, 122, 109, 0.14);
  --radius: 1.25rem;
  --max: 1120px;
  --font-sans: "DM Sans", system-ui, sans-serif;
  --font-display: "Sora", "DM Sans", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink);
  background:
    radial-gradient(1200px 600px at 10% -10%, rgba(36, 214, 193, 0.22), transparent 55%),
    radial-gradient(900px 500px at 100% 0%, rgba(25, 167, 148, 0.18), transparent 50%),
    linear-gradient(180deg, #f7fcfb 0%, #eef7f5 40%, #f5fbfa 100%);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

/* Nav */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(245, 251, 250, 0.82);
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 4.25rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
}

.brand-mark {
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 0.8rem;
  background: linear-gradient(145deg, var(--brand), var(--brand-light));
  display: grid;
  place-items: center;
  box-shadow: 0 10px 24px rgba(25, 167, 148, 0.35);
  flex-shrink: 0;
}

.brand-mark svg {
  width: 1.15rem;
  height: 1.15rem;
  fill: #fff;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 1.5rem;
  color: var(--ink-soft);
  font-size: 0.95rem;
  font-weight: 500;
}

.nav-links a:hover {
  color: var(--brand-deep);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  border: 0;
  border-radius: 999px;
  padding: 0.7rem 1.2rem;
  font: inherit;
  font-weight: 600;
  font-size: 0.92rem;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
}

.btn-ghost:hover {
  background: rgba(25, 167, 148, 0.08);
}

.btn-outline {
  background: var(--white);
  color: var(--ink);
  border: 1px solid var(--line);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--brand), var(--brand-light));
  box-shadow: 0 12px 28px rgba(25, 167, 148, 0.32);
}

.btn-primary:hover {
  box-shadow: 0 16px 34px rgba(25, 167, 148, 0.4);
}

.btn-lg {
  padding: 0.9rem 1.45rem;
  font-size: 1rem;
}

/* Hero — one composition */
.hero {
  position: relative;
  overflow: hidden;
  min-height: min(78vh, 700px);
  display: grid;
  align-items: start;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 28, 36, 0.82) 0%, rgba(7, 28, 36, 0.55) 42%, rgba(7, 28, 36, 0.28) 100%),
    linear-gradient(180deg, rgba(7, 28, 36, 0.25) 0%, rgba(7, 28, 36, 0.55) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 3.25rem 0 3.5rem;
  color: #fff;
  max-width: 36rem;
  animation: rise 0.9s ease both;
}

.hero-brand {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin: 0 0 0.85rem;
}

.hero-tagline {
  margin: 0 0 1.1rem;
  font-size: clamp(1.05rem, 2.2vw, 1.3rem);
  color: rgba(255, 255, 255, 0.88);
  font-weight: 500;
}

.hero-lead {
  margin: 0 0 1.75rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.02rem;
  max-width: 30rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-actions .btn-outline {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.28);
  color: #fff;
  backdrop-filter: blur(8px);
}

.hero-actions .btn-outline:hover {
  background: rgba(255, 255, 255, 0.18);
}

.hero-stores {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.15rem;
}

.store-btn-hero {
  background: rgba(245, 247, 248, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #111;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
}

.store-btn-hero:hover {
  background: #fff;
  transform: translateY(-2px);
}

.store-btn-hero[aria-disabled="true"] {
  opacity: 0.78;
  cursor: default;
  pointer-events: none;
}

/* Sections */
.section {
  padding: 4.5rem 0;
}

.section-head {
  max-width: 36rem;
  margin-bottom: 2rem;
}

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-deep);
  margin-bottom: 0.55rem;
}

.section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.5vw, 2.35rem);
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin: 0 0 0.65rem;
}

.section-head p {
  margin: 0;
  color: var(--ink-soft);
}

/* Country pills */
.pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid var(--line);
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 8px 20px rgba(11, 31, 42, 0.04);
  transition: transform 0.2s ease, border-color 0.2s ease;
  animation: rise 0.7s ease both;
}

.pill:nth-child(2) { animation-delay: 0.05s; }
.pill:nth-child(3) { animation-delay: 0.1s; }
.pill:nth-child(4) { animation-delay: 0.15s; }
.pill:nth-child(5) { animation-delay: 0.2s; }
.pill:nth-child(6) { animation-delay: 0.25s; }
.pill:nth-child(7) { animation-delay: 0.3s; }
.pill:nth-child(8) { animation-delay: 0.35s; }

.pill:hover {
  transform: translateY(-2px);
  border-color: rgba(25, 167, 148, 0.35);
}

.pill-flag {
  font-size: 1.05rem;
  line-height: 1;
}

/* Features */
.feature-split {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.feature-visual {
  border-radius: calc(var(--radius) + 0.35rem);
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
}

.feature-visual img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.feature-list {
  display: grid;
  gap: 1.1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.feature-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
  align-items: start;
}

.feature-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.85rem;
  background: linear-gradient(145deg, var(--mist), #fff);
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  color: var(--brand-deep);
}

.feature-icon svg {
  width: 1.15rem;
  height: 1.15rem;
}

.feature-item h3 {
  margin: 0 0 0.2rem;
  font-size: 1.05rem;
  font-family: var(--font-display);
  letter-spacing: -0.02em;
}

.feature-item p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

/* Steps band */
.band {
  background: linear-gradient(135deg, #0d3d38 0%, #127a6d 48%, #1aa894 100%);
  color: #fff;
  border-radius: 0;
  position: relative;
  overflow: hidden;
}

.band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(600px 300px at 20% 20%, rgba(36, 214, 193, 0.25), transparent 60%),
    radial-gradient(500px 280px at 90% 80%, rgba(255, 255, 255, 0.08), transparent 55%);
  pointer-events: none;
}

.band .container {
  position: relative;
  z-index: 1;
}

.band .eyebrow {
  color: rgba(255, 255, 255, 0.75);
}

.band h2 {
  color: #fff;
}

.band .section-head p {
  color: rgba(255, 255, 255, 0.75);
}

.steps {
  display: grid;
  gap: 1rem;
}

.step {
  padding: 1.25rem 1.35rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(6px);
}

.step-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  color: var(--brand-light);
  margin-bottom: 0.4rem;
}

.step h3 {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
}

.step p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
}

/* Articles */
.articles {
  display: grid;
  gap: 1.15rem;
}

.article {
  padding: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--line);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.article:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.article-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.article-body {
  padding: 1.15rem 1.25rem 1.35rem;
}

.article-meta {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 0.55rem;
}

.article h3 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: -0.02em;
  line-height: 1.3;
}

.article p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.94rem;
}

/* App download */
.app-panel {
  display: grid;
  gap: 1.5rem;
  padding: 2rem;
  border-radius: calc(var(--radius) + 0.4rem);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(232, 246, 244, 0.9)),
    var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.app-stores {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  min-width: 11.5rem;
  padding: 0.75rem 1rem;
  border-radius: 0.9rem;
  background: var(--ink);
  color: #fff;
  opacity: 0.88;
  cursor: default;
}

.store-btn small {
  display: block;
  font-size: 0.68rem;
  opacity: 0.7;
  font-weight: 500;
}

.store-btn strong {
  font-size: 0.95rem;
  font-weight: 700;
}

.store-btn svg {
  width: 1.4rem;
  height: 1.4rem;
  flex-shrink: 0;
}

.coming-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  background: rgba(25, 167, 148, 0.12);
  color: var(--brand-deep);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* CTA footer strip */
.final-cta {
  text-align: center;
  padding: 4rem 0 3rem;
}

.final-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  letter-spacing: -0.03em;
  margin: 0 0 0.65rem;
}

.final-cta p {
  margin: 0 auto 1.5rem;
  max-width: 28rem;
  color: var(--ink-soft);
}

.final-cta .hero-actions {
  justify-content: center;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 1.75rem 0 2.25rem;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.footer-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-links a:hover {
  color: var(--brand-deep);
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (min-width: 720px) {
  .nav-links {
    display: flex;
  }

  .steps {
    grid-template-columns: repeat(3, 1fr);
  }

  .articles {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .feature-split {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3rem;
  }

  .feature-split.reverse {
    grid-template-columns: 0.95fr 1.05fr;
  }

  .feature-split.reverse .feature-copy {
    order: -1;
  }

  .articles {
    grid-template-columns: repeat(4, 1fr);
  }

  .app-panel {
    grid-template-columns: 1.2fr auto;
    align-items: center;
  }

  .hero-content {
    padding: 3.75rem 0 4rem;
  }
}

@media (max-width: 520px) {
  .nav-cta .btn-ghost {
    display: none;
  }

  .hero {
    min-height: 78vh;
  }
}
