:root {
  --bg: #f6f7f2;
  --surface: #ffffff;
  --text: #162019;
  --muted: #4a564d;
  --accent: #0f766e;
  --accent-2: #f59e0b;
  --shadow: 0 18px 45px rgba(13, 24, 17, 0.13);
  --radius-lg: 24px;
  --radius-md: 16px;
}

* {
  box-sizing: border-box;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 15%, rgba(245, 158, 11, 0.22), transparent 40%),
    radial-gradient(circle at 80% 10%, rgba(15, 118, 110, 0.28), transparent 35%),
    linear-gradient(150deg, #fcfcf8 10%, #f2f4eb 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

.bg-shape {
  position: fixed;
  z-index: -1;
  border-radius: 999px;
  filter: blur(8px);
}

.bg-shape-1 {
  width: 220px;
  height: 220px;
  background: rgba(245, 158, 11, 0.23);
  top: -60px;
  right: -60px;
}

.bg-shape-2 {
  width: 280px;
  height: 280px;
  background: rgba(15, 118, 110, 0.2);
  bottom: -120px;
  left: -120px;
}

.topbar {
  width: min(1100px, 92vw);
  margin: 4px auto 0;
  display: flex;
  align-items: center;
  gap: 14px;
}

.section-menu {
  position: sticky;
  top: 8px;
  z-index: 20;
  width: min(1100px, 92vw);
  margin: 8px auto 10px;
  padding: 10px;
  display: flex;
  gap: 4px;
  overflow-x: auto;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(15, 32, 25, 0.08);
  border-radius: 999px;
  backdrop-filter: blur(8px);
}

.section-menu a {
  text-decoration: none;
  color: var(--text);
  font-weight: 700;
  font-size: 0.92rem;
  padding: 8px 9px;
  border-radius: 999px;
  white-space: nowrap;
}

.section-menu a:hover,
.section-menu a:focus-visible {
  background: rgba(15, 118, 110, 0.12);
  outline: none;
}

.logo {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.16);
}

.brand {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

main {
  width: min(1100px, 92vw);
  margin: 0 auto;
  padding-bottom: 50px;
}

.breadcrumb {
  margin: 8px 0 6px;
  color: #64756a;
  font-size: 0.83rem;
}

.breadcrumb a {
  color: inherit;
}

.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 34px;
  align-items: center;
  padding: 2px 0 34px;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  margin-top: -120px;
}

.eyebrow {
  margin: 0;
  display: inline-block;
  background: #ffedd5;
  color: #9a3412;
  font-weight: 700;
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

h1 {
  font-family: "Space Grotesk", sans-serif;
  margin: 14px 0 12px;
  font-size: clamp(2rem, 3.5vw, 3.6rem);
  line-height: 1.08;
}

.subtitle {
  margin: 0;
  max-width: 620px;
  color: var(--muted);
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  line-height: 1.6;
}

.download-area {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

#overview,
#features,
#learn-more,
#download-area {
  scroll-margin-top: 110px;
}

.store-btn {
  text-decoration: none;
  display: inline-flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  gap: 2px;
  padding: 10px 16px;
  border-radius: 12px;
  border: 1px solid #000;
  background: #000;
  color: #fff;
  letter-spacing: 0.01em;
  min-width: 220px;
  min-height: 64px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.store-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.2);
}

.badge-top {
  font-family: "Manrope", sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1.1;
}

.badge-main {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.18rem;
  font-weight: 700;
  line-height: 1.1;
}

.store-btn.appstore .badge-main {
  font-size: 1.14rem;
}

.store-btn.playstore .badge-main {
  font-size: 1.08rem;
}

.store-btn.image-badge {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  min-width: 0;
  min-height: 0;
}

.play-badge-img,
.appstore-badge-img {
  display: block;
  height: 64px;
  width: auto;
}

.hero-visual {
  display: flex;
  justify-content: center;
}

.phone-shot {
  width: min(420px, 82vw);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  transform: rotate(2deg);
}

.trust-badges {
  margin-top: 14px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.trust-badge {
  text-decoration: none;
  color: #115e59;
  background: #dff4f2;
  border: 1px solid #9ad7d0;
  border-radius: 999px;
  padding: 6px 10px;
  font-weight: 700;
  font-size: 0.82rem;
}

.trust-badge:hover,
.trust-badge:focus-visible {
  background: #caece8;
}

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

.feature-card {
  background: rgba(255, 255, 255, 0.88);
  border-radius: var(--radius-md);
  padding: 14px;
  box-shadow: 0 10px 25px rgba(21, 28, 23, 0.08);
  backdrop-filter: blur(6px);
  animation: riseIn 600ms ease both;
}

.feature-card:nth-child(2) {
  animation-delay: 110ms;
}

.feature-card:nth-child(3) {
  animation-delay: 220ms;
}

.feature-card img {
  width: 100%;
  border-radius: 12px;
  display: block;
}

.feature-card h2 {
  margin: 12px 0 8px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.05rem;
  line-height: 1.35;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
  font-size: 0.96rem;
}

.feature-link {
  display: inline-block;
  margin-top: 12px;
  text-decoration: none;
  color: var(--accent);
  font-weight: 700;
}

.feature-link:hover {
  text-decoration: underline;
}

.learn-more-section {
  margin-top: 28px;
  display: grid;
  gap: 16px;
}

.learn-more-toggle {
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(21, 28, 23, 0.12);
  border-radius: var(--radius-md);
  padding: 12px 14px;
}

.learn-more-toggle summary {
  cursor: pointer;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 1rem;
}

.learn-more-links {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.learn-more-links a {
  text-decoration: none;
  color: var(--accent);
  font-weight: 700;
}

.learn-more-links a:hover {
  text-decoration: underline;
}

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

.snippet-card {
  background: rgba(255, 255, 255, 0.88);
  border-radius: var(--radius-md);
  padding: 14px;
  box-shadow: 0 10px 25px rgba(21, 28, 23, 0.08);
}

.snippet-card h2 {
  margin: 0 0 8px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.05rem;
}

.snippet-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.detail-page {
  width: min(860px, 92vw);
  margin: 0 auto;
  padding-bottom: 42px;
}

.detail-panel {
  background: rgba(255, 255, 255, 0.92);
  border-radius: var(--radius-md);
  padding: clamp(18px, 2.2vw, 28px);
  box-shadow: 0 10px 25px rgba(21, 28, 23, 0.08);
  margin-top: 16px;
}

.detail-panel h1,
.detail-panel h2 {
  margin-top: 0;
}

.detail-panel h2 {
  margin-bottom: 8px;
  font-family: "Space Grotesk", sans-serif;
}

.detail-panel p,
.detail-panel li {
  color: var(--muted);
  line-height: 1.6;
}

.detail-panel ul {
  margin-top: 8px;
  padding-left: 18px;
}

.back-link {
  display: inline-block;
  margin-top: 18px;
  text-decoration: none;
  color: var(--accent);
  font-weight: 700;
}

.back-link:hover {
  text-decoration: underline;
}

.cta-panel {
  text-align: center;
}

.cta-panel .download-area {
  justify-content: center;
}

footer {
  width: min(1100px, 92vw);
  margin: 12px auto 24px;
  text-align: center;
}

footer p {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
}

.footer-links {
  margin-top: 8px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-links a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.92rem;
}

.footer-links a:hover {
  text-decoration: underline;
}

.small {
  margin-top: 6px;
  color: var(--muted);
  font-family: "Manrope", sans-serif;
  font-size: 0.9rem;
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 900px) {
  .section-menu {
    top: 6px;
    margin-top: 4px;
  }

  .topbar {
    margin-bottom: 12px;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 20px;
    padding-top: 0;
  }

  .hero-copy {
    margin-top: 0;
  }

  .download-area {
    order: -1;
    margin-top: 14px;
    margin-bottom: 12px;
    justify-content: center;
    align-items: center;
  }

  .store-btn {
    min-width: 236px;
    min-height: 68px;
  }

  .play-badge-img,
  .appstore-badge-img {
    height: 68px;
  }

  .phone-shot {
    transform: rotate(0deg);
    width: min(360px, 86vw);
  }

  .features {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .trust-snippets {
    grid-template-columns: 1fr;
  }
}

.home-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: inherit;
}
