@font-face {
  font-family: "Inter";
  src: url("assets/fonts/Inter-Regular.woff2") format("woff2"),
       url("assets/fonts/Inter-Regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("assets/fonts/Inter-SemiBold.woff2") format("woff2"),
       url("assets/fonts/Inter-SemiBold.ttf") format("truetype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("assets/fonts/Inter-ExtraBold.woff2") format("woff2"),
       url("assets/fonts/Inter-ExtraBold.ttf") format("truetype");
  font-style: normal;
  font-weight: 800 900;
  font-display: swap;
}

:root {
  --sand: #f6f4ec;
  --sand-strong: #ebe6da;
  --surface: #ffffff;
  --ink: #242827;
  --muted: #56605c;
  --reed: #315b42;
  --reed-dark: #173826;
  --blue: #2979ff;
  --blue-dark: #0d5fe8;
  --signal: #f5c84c;
  --line: rgba(36, 40, 39, 0.15);
  --shadow: 0 28px 70px rgba(23, 56, 38, 0.18);
  --content: min(1240px, calc(100% - 48px));
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--sand);
  color: var(--ink);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 12px 18px;
  border-radius: 10px;
  background: var(--reed-dark);
  color: white;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

.container {
  width: var(--content);
  margin-inline: auto;
}

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 20;
  color: var(--ink);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: 96px;
  gap: 36px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 48px;
  font-size: 1.68rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.brand img {
  width: 56px;
  height: 56px;
  border-radius: 15px;
  box-shadow: 0 8px 22px rgba(41, 121, 255, 0.18);
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: clamp(22px, 4vw, 54px);
  font-size: 0.96rem;
  font-weight: 600;
}

.nav-links a,
.footer-links a {
  position: relative;
}

.nav-links a::after,
.footer-links a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after,
.footer-links a:hover::after,
.footer-links a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

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

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 4px;
  border: 1px solid rgba(36, 40, 39, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(12px);
}

.language-switch a {
  display: grid;
  min-width: 44px;
  min-height: 38px;
  place-items: center;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 700;
}

.language-switch a[aria-current="page"] {
  background: var(--surface);
  box-shadow: 0 3px 12px rgba(36, 40, 39, 0.12);
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 25px;
  border: 0;
  border-radius: 14px;
  background: var(--blue);
  color: white;
  cursor: pointer;
  font: inherit;
  font-weight: 700;
  box-shadow: 0 12px 28px rgba(41, 121, 255, 0.23);
  transition: background-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.button:hover {
  background: var(--blue-dark);
  box-shadow: 0 16px 34px rgba(41, 121, 255, 0.29);
  transform: translateY(-2px);
}

.button--small {
  min-height: 44px;
  padding-inline: 18px;
  border-radius: 12px;
  font-size: 0.88rem;
}

.hero {
  position: relative;
  z-index: 2;
  min-height: 660px;
  overflow: visible;
  isolation: isolate;
  background: #ede7da;
}

.hero-background {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-content {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  align-items: center;
  min-height: 660px;
  gap: clamp(24px, 6vw, 92px);
  padding-top: 116px;
}

.hero-copy {
  max-width: 660px;
  align-self: start;
  padding-block: 72px 0;
}

.eyebrow,
.section-kicker {
  margin: 0 0 20px;
  color: var(--reed);
  font-size: 0.79rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 690px;
  margin: 0;
  font-size: clamp(3.3rem, 5vw, 5rem);
  font-weight: 800;
  letter-spacing: -0.066em;
  line-height: 0.98;
}

.hero-lead {
  max-width: 610px;
  margin: 28px 0 0;
  color: #38423e;
  font-size: clamp(1.03rem, 1.6vw, 1.24rem);
  line-height: 1.58;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 34px;
}

.hero-actions .button {
  min-width: 280px;
  min-height: 60px;
  padding-inline: 30px;
  border-radius: 16px;
}

.store-badges {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
}

.store-badges a {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  border-radius: 8px;
  transition: transform 160ms ease;
}

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

.store-badges img {
  width: auto;
  height: 48px;
}

.store-badges img[alt*="Google"] {
  height: 58px;
  margin-inline: -6px;
}

.hero-device {
  z-index: 3;
  width: min(100%, 355px);
  justify-self: end;
  align-self: start;
  margin-bottom: -100px;
}

.phone-shell {
  padding: 9px;
  border-radius: 48px;
  background: #151817;
  box-shadow: var(--shadow);
}

.phone-shell img {
  width: 100%;
  border-radius: 39px;
}

.species-carousel {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.species-track {
  display: flex;
  width: max-content;
  animation: species-scroll 34s linear infinite;
  transform: translate3d(0, 0, 0);
  will-change: transform;
}

.species-group {
  display: flex;
  flex-shrink: 0;
}

.species-item {
  display: grid;
  width: 184px;
  min-height: 132px;
  place-items: center;
  align-content: center;
  gap: 10px;
  border-left: 1px solid var(--line);
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 600;
}

.species-item img {
  width: 98px;
  height: 48px;
  object-fit: contain;
  transition: transform 180ms ease;
}

.species-item:hover img,
.species-item:focus-visible img {
  transform: translateY(-4px) scale(1.04);
}

@keyframes species-scroll {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-50%, 0, 0);
  }
}

.story {
  padding: 24px 0 76px;
  background: var(--sand);
}

.section-heading {
  display: grid;
  max-width: 850px;
  gap: 18px;
  margin-bottom: 78px;
}

.section-heading h2,
.trust-copy h2,
.faq-heading h2,
.final-copy h2 {
  margin: 0;
  font-size: clamp(2.5rem, 5vw, 4.7rem);
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 1.03;
}

.section-heading p,
.trust-copy > p,
.faq-heading p,
.final-copy p {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.72;
}

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

.story-step {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(350px, 1.22fr);
  align-items: center;
  min-height: 690px;
  gap: clamp(52px, 9vw, 138px);
  padding-block: 86px;
  border-bottom: 1px solid var(--line);
}

.story-step:nth-child(even) {
  grid-template-columns: minmax(350px, 1.22fr) minmax(0, 0.78fr);
}

.story-step:nth-child(even) .story-copy {
  order: 2;
}

.story-step:nth-child(even) .story-media {
  order: 1;
}

.step-number {
  display: inline-flex;
  width: 50px;
  height: 50px;
  align-items: center;
  justify-content: center;
  margin-bottom: 26px;
  border: 1px solid var(--reed);
  border-radius: 50%;
  color: var(--reed);
  font-size: 0.9rem;
  font-weight: 800;
}

.story-copy h3 {
  margin: 0;
  font-size: clamp(2rem, 3.6vw, 3.4rem);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 1.04;
}

.story-copy p {
  max-width: 500px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.72;
}

.story-points {
  display: grid;
  gap: 0;
  margin: 28px 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.story-points li {
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  color: var(--reed-dark);
  font-size: 0.93rem;
  font-weight: 600;
}

.story-media {
  position: relative;
  display: grid;
  justify-items: center;
}

.story-phone {
  width: min(100%, 400px);
}

.story-phone--wide {
  width: min(100%, 450px);
}

.story-media::before {
  position: absolute;
  inset: 13% 4% 2%;
  z-index: -1;
  border: 1px solid rgba(49, 91, 66, 0.22);
  border-radius: 48% 52% 47% 53%;
  background: rgba(255, 255, 255, 0.48);
  content: "";
}

.trust {
  padding: 118px 0;
  background: var(--surface);
}

.trust-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  align-items: center;
  gap: clamp(54px, 9vw, 130px);
}

.trust-copy > p {
  margin-top: 24px;
}

.factor-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 38px 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  list-style: none;
}

.factor-list li {
  display: flex;
  min-height: 62px;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--line);
  color: var(--reed-dark);
  font-weight: 700;
}

.factor-list li:nth-child(odd) {
  border-right: 1px solid var(--line);
}

.factor-list li:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.factor-list span {
  color: var(--blue);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}

.trust-media {
  width: min(100%, 430px);
  justify-self: end;
}

.faq {
  padding: 118px 0;
  background: var(--sand);
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(500px, 1.25fr);
  align-items: start;
  gap: clamp(54px, 9vw, 130px);
}

.faq-heading p {
  margin-top: 24px;
}

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

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

.faq-list summary {
  min-height: 82px;
  padding: 26px 42px 26px 0;
  cursor: pointer;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.45;
}

.faq-list details p {
  max-width: 720px;
  margin: -6px 0 28px;
  color: var(--muted);
  line-height: 1.7;
}

.final-cta {
  padding: 78px 0;
  background: var(--reed-dark);
  color: white;
}

.final-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: stretch;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.05);
}

.final-visual {
  position: relative;
  min-height: 510px;
}

.final-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.final-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(42px, 7vw, 88px);
}

.final-copy p {
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.72);
}

.final-copy .button {
  align-self: flex-start;
  margin-top: 30px;
}

.final-copy .store-badges {
  margin-top: 20px;
}

.site-footer {
  padding: 48px 0;
  background: #10281b;
  color: rgba(255, 255, 255, 0.72);
}

.footer-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 36px;
}

.site-footer .brand {
  color: white;
  font-size: 1.12rem;
}

.site-footer .brand img {
  width: 38px;
  height: 38px;
  border-radius: 10px;
}

.copyright {
  margin: 0;
  text-align: center;
  font-size: 0.83rem;
}

.footer-links {
  display: flex;
  gap: 24px;
  font-size: 0.83rem;
}

.mobile-store-cta {
  position: fixed;
  right: 16px;
  bottom: 16px;
  left: 16px;
  z-index: 60;
  display: none;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: var(--blue);
  color: white;
  font-weight: 800;
  box-shadow: 0 18px 50px rgba(13, 57, 37, 0.32);
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.mobile-store-cta.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 620ms ease, transform 620ms ease;
}

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

@media (max-width: 1020px) {
  :root {
    --content: min(100% - 36px, 820px);
  }

  .header-inner {
    grid-template-columns: auto 1fr;
  }

  .nav-links {
    display: none;
  }

  .header-actions {
    justify-self: end;
  }

  .hero {
    min-height: 1080px;
  }

  .hero-background img {
    object-position: 58% center;
    opacity: 0.58;
  }

  .hero-content {
    grid-template-columns: 1fr;
    align-content: start;
    min-height: 1080px;
    gap: 10px;
    padding-top: 120px;
  }

  .hero-copy {
    max-width: 720px;
    padding-block: 46px 12px;
  }

  .hero-device {
    width: min(100%, 360px);
    justify-self: center;
    align-self: end;
    margin-bottom: -64px;
  }

  .story-step,
  .story-step:nth-child(even),
  .trust-grid,
  .faq-grid,
  .final-grid {
    grid-template-columns: 1fr;
  }

  .story-step,
  .story-step:nth-child(even) {
    min-height: 0;
    gap: 54px;
  }

  .story-step:nth-child(even) .story-copy,
  .story-step:nth-child(even) .story-media {
    order: initial;
  }

  .story-media {
    grid-row: auto;
  }

  .trust-media {
    justify-self: center;
  }

  .faq-grid {
    gap: 62px;
  }

  .final-visual {
    min-height: 420px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    justify-items: center;
  }
}

@media (max-width: 660px) {
  :root {
    --content: calc(100% - 32px);
  }

  body {
    padding-bottom: 82px;
  }

  .header-inner {
    min-height: 82px;
    gap: 14px;
  }

  .brand {
    gap: 9px;
    font-size: 1.14rem;
  }

  .brand img {
    width: 42px;
    height: 42px;
    border-radius: 11px;
  }

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

  .language-switch a {
    min-width: 39px;
    min-height: 36px;
  }

  .hero {
    min-height: 1030px;
  }

  .hero-content {
    min-height: 1030px;
    padding-top: 92px;
  }

  .hero-copy {
    padding-top: 44px;
  }

  .eyebrow,
  .section-kicker {
    margin-bottom: 15px;
    font-size: 0.71rem;
  }

  .hero h1 {
    font-size: clamp(3.15rem, 15.2vw, 4.2rem);
    line-height: 0.96;
  }

  .hero-lead {
    margin-top: 22px;
    font-size: 0.98rem;
  }

  .hero-actions {
    margin-top: 25px;
  }

  .hero-actions .button {
    width: 100%;
    min-height: 56px;
  }

  .store-badges {
    flex-wrap: wrap;
    gap: 6px;
  }

  .store-badges img {
    height: 41px;
  }

  .store-badges img[alt*="Google"] {
    height: 50px;
  }

  .hero-device {
    width: min(84vw, 330px);
  }

  .phone-shell {
    padding: 7px;
    border-radius: 38px;
  }

  .phone-shell img {
    border-radius: 31px;
  }

  .species-item {
    width: 148px;
    min-height: 112px;
    font-size: 0.8rem;
  }

  .species-item img {
    width: 82px;
    height: 42px;
  }

  .story,
  .trust,
  .faq {
    padding-block: 86px;
  }

  .story {
    padding-top: 64px;
  }

  .section-heading {
    margin-bottom: 50px;
  }

  .section-heading h2,
  .trust-copy h2,
  .faq-heading h2,
  .final-copy h2 {
    font-size: clamp(2.5rem, 12vw, 3.25rem);
  }

  .story-step,
  .story-step:nth-child(even) {
    gap: 42px;
    padding-block: 64px;
  }

  .story-copy h3 {
    font-size: 2.35rem;
  }

  .story-phone,
  .story-phone--wide {
    width: min(86vw, 360px);
  }

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

  .factor-list li,
  .factor-list li:nth-child(odd),
  .factor-list li:nth-last-child(-n + 2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .factor-list li:last-child {
    border-bottom: 0;
  }

  .faq-list summary {
    min-height: 72px;
    padding-block: 22px;
  }

  .final-cta {
    padding-block: 32px;
  }

  .final-grid {
    border-radius: 22px;
  }

  .final-visual {
    min-height: 300px;
  }

  .final-copy {
    padding: 36px 24px 42px;
  }

  .final-copy .button {
    width: 100%;
  }

  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
  }

  .mobile-store-cta {
    display: flex;
  }
}

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

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

  .species-carousel {
    overflow-x: auto;
    scrollbar-width: thin;
  }

  .species-track {
    animation: none;
  }

  .species-group[aria-hidden="true"] {
    display: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media print {
  .mobile-store-cta,
  .site-header .button {
    display: none !important;
  }
}
