@font-face {
  font-family: "Knewave Local";
  src: url("assets/fonts/knewave-v15.ttf") format("truetype");
  font-display: swap;
}

:root {
  --orange: #ffab40;
  --orange-deep: #e7891d;
  --peach: #febc78;
  --peach-soft: #fff3e6;
  --green: #209755;
  --green-dark: #12663a;
  --green-soft: #e8f5ed;
  --ink: #202327;
  --ink-soft: #535a60;
  --ink-muted: #747b80;
  --surface: #ffffff;
  --surface-warm: #fffaf4;
  --line: rgba(32, 35, 39, 0.13);
  --line-strong: rgba(32, 35, 39, 0.24);
  --shadow-card: 0 18px 48px rgba(78, 48, 22, 0.1);
  --shadow-small: 0 8px 22px rgba(54, 36, 19, 0.09);
  --radius-sm: 10px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --font-title: "Knewave Local", "Trebuchet MS", sans-serif;
  --font-body: "Nunito Sans", "Avenir Next", "Segoe UI", sans-serif;
  --container: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--surface-warm);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
summary {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--green);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 1000;
  padding: 10px 16px;
  color: #fff;
  background: var(--green-dark);
  border-radius: var(--radius-sm);
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(var(--container), calc(100% - 48px));
  margin-inline: auto;
}

.section {
  position: relative;
  padding-block: 112px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--green-dark);
  font-size: 0.79rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 32px;
  height: 3px;
  background: var(--orange);
  content: "";
}

.eyebrow-light {
  color: #fff5e9;
}

.eyebrow-light::before {
  background: var(--orange);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: var(--font-title);
  font-weight: 400;
  letter-spacing: 0.01em;
}

h1 {
  margin-bottom: 28px;
  font-size: clamp(3.2rem, 6vw, 5.8rem);
  line-height: 1.16;
}

h1 > span {
  display: block;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(2.35rem, 4vw, 4rem);
  line-height: 1.16;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.3rem;
  line-height: 1.25;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 64px;
}

.section-heading > p:last-child {
  max-width: 630px;
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.heading-centered {
  margin-inline: auto;
  text-align: center;
}

.heading-centered .eyebrow {
  justify-content: center;
}

.heading-centered > p:last-child {
  margin-inline: auto;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: var(--radius-md);
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

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

.button-primary {
  color: #fff;
  background: var(--green);
}

.button-primary:hover {
  background: var(--green-dark);
}

.button-secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.7);
  border-color: var(--line-strong);
}

.button-secondary:hover {
  background: #fff;
  border-color: var(--ink-soft);
}

.button-small {
  min-height: 42px;
  padding: 9px 16px;
  border-radius: 10px;
  font-size: 0.92rem;
}

.button-on-dark {
  color: var(--green-dark);
  background: #fff7ec;
}

.button-on-dark:hover {
  background: var(--orange);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--green-dark);
  font-weight: 900;
}

.text-link:hover {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 78px;
  background: rgba(255, 250, 244, 0.97);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.header-inner {
  display: flex;
  width: min(1240px, calc(100% - 36px));
  height: 100%;
  align-items: center;
  gap: 28px;
  margin-inline: auto;
}

.brand-link {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 9px;
  font-family: var(--font-title);
  font-size: 1.28rem;
  line-height: 1;
}

.brand-link img {
  width: 42px;
  height: 34px;
  object-fit: contain;
}

.primary-navigation {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-left: auto;
}

.primary-navigation a {
  position: relative;
  color: var(--ink-soft);
  font-size: 0.91rem;
  font-weight: 800;
  white-space: nowrap;
}

.primary-navigation a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 3px;
  background: var(--orange);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

.primary-navigation a:hover,
.primary-navigation a[aria-current="true"] {
  color: var(--ink);
}

.primary-navigation a:hover::after,
.primary-navigation a[aria-current="true"]::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--ink-muted);
  font-size: 0.78rem;
  font-weight: 900;
}

.language-switcher button {
  padding: 4px;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}

.language-switcher button[aria-pressed="true"] {
  color: var(--green-dark);
  text-decoration: underline;
  text-decoration-color: var(--orange);
  text-decoration-thickness: 3px;
  text-underline-offset: 4px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin-block: 4px;
  background: var(--ink);
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* Hero */
.hero {
  overflow: hidden;
  padding-top: 88px;
  padding-bottom: 0;
  background: var(--peach-soft);
  border-bottom: 1px solid rgba(231, 137, 29, 0.22);
}

.hero-pattern {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 52%;
  background-image: linear-gradient(90deg, var(--peach-soft), rgba(255, 243, 230, 0.18) 58%), url("search_background.png");
  background-position: left center, center;
  background-size: cover, cover;
  opacity: 0.18;
  filter: saturate(0.74);
  pointer-events: none;
}

.hero-layout {
  display: grid;
  min-height: 690px;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.82fr);
  align-items: center;
  gap: 72px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding-bottom: 62px;
}

.title-accent {
  color: var(--green-dark);
}

.hero-description {
  max-width: 660px;
  margin-bottom: 32px;
  color: var(--ink-soft);
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  font-weight: 700;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-product {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 650px;
  place-items: center;
  padding-top: 18px;
}

.phone-frame {
  position: relative;
  width: min(318px, 76vw);
  padding: 13px;
  background: #1e2023;
  border: 3px solid #111315;
  border-radius: 42px;
  box-shadow: 24px 30px 0 rgba(32, 151, 85, 0.15), var(--shadow-card);
  transform: rotate(2.2deg);
}

.phone-speaker {
  position: absolute;
  top: 22px;
  left: 50%;
  z-index: 3;
  width: 58px;
  height: 7px;
  background: #2b2e31;
  border-radius: 999px;
  transform: translateX(-50%);
}

.app-screenshot {
  display: block;
  width: 100%;
  height: auto;
}

.app-screenshot-phone {
  border-radius: 30px;
}

.product-sticker {
  position: absolute;
  z-index: 4;
  display: flex;
  width: 185px;
  align-items: center;
  gap: 10px;
  padding: 10px 13px;
  background: #fff;
  border: 1px solid rgba(32, 35, 39, 0.12);
  border-radius: 14px;
  box-shadow: var(--shadow-small);
  font-size: 0.85rem;
  font-weight: 900;
  line-height: 1.25;
}

.product-sticker img {
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
}

.product-sticker-top {
  top: 100px;
  left: -18px;
  transform: rotate(-4deg);
}

.product-sticker-bottom {
  right: -24px;
  bottom: 120px;
  transform: rotate(3.5deg);
}

/* Benefits */
.benefits {
  background: #fff;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.benefit-card {
  position: relative;
  min-height: 330px;
  padding: 30px 26px 28px;
  overflow: hidden;
  background: var(--surface-warm);
  border: 1px solid var(--line);
  border-top: 5px solid var(--orange);
  border-radius: var(--radius-md);
}

.benefit-card:nth-child(even) {
  border-top-color: var(--green);
}

.benefit-card > img {
  width: 72px;
  height: 72px;
  margin-bottom: 28px;
}

.benefit-card h3 {
  font-size: 1.22rem;
}

.benefit-card > p:last-child {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 0.94rem;
}

.benefit-number {
  position: absolute;
  top: 20px;
  right: 22px;
  color: rgba(32, 35, 39, 0.18);
  font-family: var(--font-title);
  font-size: 1.3rem;
}

/* Feature stories */
.feature-stories {
  background: var(--surface-warm);
}

.feature-story {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: clamp(48px, 7vw, 100px);
  padding-block: 80px;
  border-top: 1px solid var(--line);
}

.feature-story:last-child {
  padding-bottom: 0;
}

.story-copy {
  max-width: 530px;
}

.story-copy h3 {
  margin-bottom: 20px;
  font-family: var(--font-title);
  font-size: clamp(2rem, 3.6vw, 3.2rem);
  font-weight: 400;
  line-height: 1.18;
}

.story-copy > p:not(.story-index) {
  color: var(--ink-soft);
}

.story-index {
  margin-bottom: 14px;
  color: var(--orange-deep);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.feature-list {
  display: grid;
  gap: 10px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding-left: 28px;
  color: var(--ink-soft);
  font-weight: 700;
}

.feature-list li::before {
  position: absolute;
  top: 0.55em;
  left: 3px;
  width: 11px;
  height: 6px;
  border-bottom: 3px solid var(--green);
  border-left: 3px solid var(--green);
  content: "";
  transform: rotate(-45deg);
}

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

.story-visual {
  position: relative;
}

.visual-tall {
  width: min(380px, 100%);
  justify-self: center;
  padding: 18px;
  background: var(--peach);
  border-radius: var(--radius-xl) 8px var(--radius-xl) 8px;
}

.visual-wide {
  width: min(380px, 100%);
  justify-self: center;
  padding: 18px;
  background: var(--green-soft);
  border: 1px solid rgba(32, 151, 85, 0.18);
  border-radius: 8px var(--radius-xl) 8px var(--radius-xl);
}

.story-screenshot {
  border-radius: calc(var(--radius-lg) - 4px);
  box-shadow: 0 18px 40px rgba(32, 35, 39, 0.18);
}

.compact-chips span {
  padding: 7px 12px;
  color: var(--green-dark);
  background: #fff;
  border: 1px solid rgba(32, 151, 85, 0.18);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
}

.compact-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 26px;
}

.visual-feed {
  width: min(380px, 100%);
  justify-self: center;
  padding: 18px;
  background: var(--orange);
  border-radius: 8px var(--radius-xl) var(--radius-xl) 8px;
}

.visual-profile {
  width: min(380px, 100%);
  justify-self: center;
  padding: 18px;
  background: #262a2e;
  border-radius: var(--radius-xl) var(--radius-xl) 8px 8px;
  box-shadow: 14px 14px 0 var(--orange);
}

/* Community */
.community-section {
  overflow: hidden;
  color: #fff;
  background: var(--green-dark);
}

.community-section::after {
  position: absolute;
  right: -80px;
  bottom: -90px;
  width: 360px;
  height: 360px;
  border: 52px solid rgba(255, 171, 64, 0.13);
  border-radius: 50%;
  content: "";
}

.community-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1fr);
  align-items: center;
  gap: 80px;
}

.community-art {
  position: relative;
  z-index: 1;
  align-self: end;
}

.community-art img {
  width: 100%;
  max-height: 610px;
  object-fit: contain;
  object-position: bottom;
}

.community-copy {
  position: relative;
  z-index: 2;
  max-width: 650px;
}

.community-copy h2 {
  color: #fff;
}

.community-copy > p:not(.eyebrow) {
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.06rem;
}

/* Product numbers */
.stats-section {
  background: var(--surface-warm);
}

.stats-panel {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1.48fr);
  overflow: hidden;
  background: var(--ink);
  border: 1px solid rgba(32, 35, 39, 0.16);
  border-radius: var(--radius-xl);
  box-shadow: 0 26px 64px rgba(43, 31, 21, 0.17);
}

.stats-intro {
  position: relative;
  padding: clamp(42px, 5vw, 64px);
  background: var(--green-dark);
}

.stats-intro::after {
  position: absolute;
  right: -36px;
  bottom: -54px;
  width: 150px;
  height: 150px;
  border: 30px solid rgba(255, 171, 64, 0.22);
  border-radius: 50%;
  content: "";
}

.stats-intro .eyebrow {
  color: #fff5e9;
}

.stats-intro h2 {
  max-width: 10ch;
  margin-bottom: 22px;
  color: #fff;
  font-size: clamp(2.5rem, 4vw, 3.8rem);
}

.stats-intro > p:last-child {
  max-width: 42ch;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1rem;
}

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

.stat-card {
  display: flex;
  min-height: 380px;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: clamp(30px, 3vw, 40px);
}

.stat-card + .stat-card {
  border-left: 1px solid rgba(255, 255, 255, 0.13);
}

.stat-value {
  display: block;
  margin-bottom: 20px;
  color: var(--orange);
  font-family: var(--font-body);
  font-size: clamp(3.6rem, 4.5vw, 4.8rem);
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 1;
  white-space: nowrap;
}

.stat-label {
  max-width: 19ch;
  margin: 0 0 10px;
  color: #fff;
  font-size: 1.03rem;
  font-weight: 900;
  line-height: 1.35;
}

/* FAQ */
.faq-section {
  background: var(--peach-soft);
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.65fr 1fr;
  align-items: start;
  gap: 90px;
}

.faq-heading {
  position: sticky;
  top: 116px;
  margin-bottom: 0;
}

.faq-list {
  border-top: 1px solid var(--line-strong);
}

.faq-list details {
  border-bottom: 1px solid var(--line-strong);
}

.faq-list summary {
  position: relative;
  padding: 26px 52px 26px 0;
  font-size: 1.05rem;
  font-weight: 900;
  line-height: 1.4;
  list-style: none;
  cursor: pointer;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::before,
.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 8px;
  width: 18px;
  height: 2px;
  background: var(--green-dark);
  content: "";
  transition: transform 160ms ease;
}

.faq-list summary::after {
  transform: rotate(90deg);
}

.faq-list details[open] summary::after {
  transform: rotate(0);
}

.faq-list details p {
  max-width: 680px;
  margin-bottom: 26px;
  padding-right: 40px;
  color: var(--ink-soft);
}

/* Download */
.download-section {
  background: #fff;
}

.download-card {
  position: relative;
  display: grid;
  min-height: 450px;
  grid-template-columns: minmax(0, 1fr) 300px;
  align-items: center;
  gap: 50px;
  overflow: hidden;
  padding: 66px 76px;
  color: #fff;
  background: var(--green-dark);
  border-radius: var(--radius-xl);
}

.download-card::before {
  position: absolute;
  top: -120px;
  right: 170px;
  width: 320px;
  height: 320px;
  border: 46px solid rgba(255, 171, 64, 0.14);
  border-radius: 50%;
  content: "";
}

.download-copy {
  position: relative;
  z-index: 2;
  max-width: 690px;
}

.download-copy h2 {
  color: #fff;
}

.download-copy > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.8);
}

.store-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 30px;
}

.store-badges a {
  display: flex;
  width: 205px;
  aspect-ratio: 270 / 80;
  align-items: center;
  justify-content: center;
  border-radius: 11px;
  transition: transform 160ms ease;
}

.store-badges a:hover {
  transform: translateY(-3px);
}

.store-badges img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.download-logo {
  position: relative;
  z-index: 2;
  width: 280px;
  filter: drop-shadow(0 18px 24px rgba(0, 0, 0, 0.18));
  transform: rotate(7deg);
}

/* Footer */
.site-footer {
  color: rgba(255, 255, 255, 0.72);
  background: #202327;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: 56px;
  padding-block: 76px 60px;
}

.footer-brand .brand-link {
  color: #fff;
}

.footer-brand > p {
  max-width: 300px;
  margin: 18px 0 0;
  font-size: 0.93rem;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-column h2 {
  margin-bottom: 7px;
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-column a {
  width: fit-content;
  font-size: 0.9rem;
}

.footer-column a:hover,
.footer-bottom a:hover {
  color: var(--orange);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-block: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.83rem;
}

.footer-bottom p {
  margin: 0;
}

@media (max-width: 1080px) {
  .primary-navigation {
    gap: 15px;
  }

  .primary-navigation a {
    font-size: 0.82rem;
  }

  .hero-layout {
    grid-template-columns: minmax(0, 1fr) minmax(330px, 0.78fr);
    gap: 36px;
  }

  .product-sticker-top {
    left: -6px;
  }

  .product-sticker-bottom {
    right: -4px;
  }

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

  .benefit-card {
    min-height: 285px;
  }
}

@media (max-width: 920px) {
  .site-header {
    height: 70px;
  }

  .header-inner {
    width: min(100% - 28px, 1240px);
  }

  .menu-toggle {
    display: block;
    order: 3;
    margin-left: 2px;
  }

  .primary-navigation {
    position: fixed;
    top: 70px;
    right: 0;
    left: 0;
    display: grid;
    align-content: start;
    gap: 0;
    max-height: calc(100dvh - 70px);
    padding: 18px 24px 28px;
    overflow-y: auto;
    background: var(--surface-warm);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-small);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-16px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .primary-navigation.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .primary-navigation a {
    padding: 14px 2px;
    border-bottom: 1px solid var(--line);
    font-size: 1rem;
  }

  .primary-navigation a::after {
    display: none;
  }

  .header-actions {
    margin-left: auto;
  }

  .hero {
    padding-top: 70px;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .hero-copy {
    max-width: 760px;
    padding-bottom: 30px;
    text-align: center;
  }

  .hero-copy .eyebrow {
    justify-content: center;
  }

  .hero-description {
    margin-inline: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-product {
    min-height: 620px;
  }

  .product-sticker-top {
    left: calc(50% - 270px);
  }

  .product-sticker-bottom {
    right: calc(50% - 280px);
  }

  .hero-pattern {
    top: 42%;
    width: 100%;
    opacity: 0.13;
  }

  .feature-story {
    gap: 46px;
  }

  .community-layout,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .community-layout {
    gap: 40px;
  }

  .community-art {
    width: min(560px, 100%);
    justify-self: center;
    order: 2;
  }

  .community-copy {
    text-align: center;
  }

  .community-copy .eyebrow {
    justify-content: center;
  }

  .stats-panel {
    grid-template-columns: 1fr;
  }

  .stats-intro {
    text-align: center;
  }

  .stats-intro .eyebrow {
    justify-content: center;
  }

  .stats-intro h2,
  .stats-intro > p:last-child {
    margin-inline: auto;
  }

  .faq-layout {
    gap: 35px;
  }

  .faq-heading {
    position: static;
  }

  .download-card {
    grid-template-columns: 1fr 220px;
    padding: 54px;
  }

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

@media (max-width: 720px) {
  html {
    scroll-padding-top: 82px;
  }

  body {
    font-size: 16px;
  }

  .container {
    width: min(100% - 32px, var(--container));
  }

  .section {
    padding-block: 78px;
  }

  .brand-link span {
    font-size: 1rem;
  }

  .header-actions .button {
    display: none;
  }

  .header-actions {
    gap: 8px;
  }

  h1 {
    font-size: clamp(2.9rem, 14vw, 4.5rem);
  }

  h2 {
    font-size: clamp(2.15rem, 10vw, 3.2rem);
  }

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

  .stat-card {
    min-height: 250px;
  }

  .stat-card + .stat-card {
    border-top: 1px solid rgba(255, 255, 255, 0.13);
    border-left: 0;
  }

  .hero {
    padding-top: 56px;
  }

  .hero-product {
    min-height: 570px;
  }

  .phone-frame {
    width: 268px;
    box-shadow: 14px 18px 0 rgba(32, 151, 85, 0.15), var(--shadow-card);
  }

  .product-sticker {
    width: 155px;
    padding: 8px 9px;
    font-size: 0.72rem;
  }

  .product-sticker img {
    width: 38px;
    height: 38px;
  }

  .product-sticker-top {
    top: 86px;
    left: 0;
  }

  .product-sticker-bottom {
    right: 0;
    bottom: 92px;
  }

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

  .benefit-card {
    min-height: 0;
  }

  .feature-story {
    grid-template-columns: 1fr;
    gap: 38px;
    padding-block: 64px;
  }

  .feature-story .story-copy,
  .feature-story .story-visual {
    width: 100%;
    max-width: 560px;
    justify-self: center;
  }

  .story-collection .story-copy,
  .story-feed .story-copy {
    order: 1;
  }

  .story-collection .story-visual,
  .story-feed .story-visual {
    order: 2;
  }

  .story-progress .story-copy,
  .story-profile .story-copy {
    order: 1;
  }

  .story-progress .story-visual,
  .story-profile .story-visual {
    order: 2;
  }

  .visual-tall,
  .visual-wide,
  .visual-feed,
  .visual-profile {
    padding: 16px;
  }

  .community-section {
    padding-bottom: 0;
  }

  .community-art img {
    max-height: 490px;
  }

  .download-section {
    padding-block: 64px;
  }

  .download-card {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 42px 26px;
    text-align: center;
  }

  .download-copy .eyebrow,
  .store-badges {
    justify-content: center;
  }

  .download-logo {
    width: 150px;
    justify-self: center;
    order: -1;
  }

  .footer-main {
    grid-template-columns: 1.2fr 1fr;
    gap: 42px 28px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

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

@media (max-width: 480px) {
  .container {
    width: min(100% - 24px, var(--container));
  }

  .header-inner {
    width: calc(100% - 20px);
    gap: 10px;
  }

  .brand-link {
    gap: 5px;
  }

  .brand-link img {
    width: 34px;
  }

  .language-switcher {
    font-size: 0.71rem;
  }

  .hero-actions {
    display: grid;
    width: 100%;
  }

  .hero-actions .button {
    width: 100%;
  }

  .product-sticker {
    display: none;
  }

  .hero-product {
    min-height: 535px;
  }

  .phone-frame {
    width: 250px;
  }

  .stat-card {
    min-height: 225px;
    padding: 32px 26px;
  }

  .stat-value {
    font-size: clamp(3.15rem, 15vw, 4.15rem);
  }

  .store-badges {
    display: grid;
  }

  .store-badges a {
    width: min(220px, 76vw);
  }

  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-brand {
    grid-column: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
