@font-face {
  font-family: Axiforma;
  src: url('/assets/fonts/Axiforma-Regular.otf') format('opentype');
  font-weight: 400;
  font-display: swap;
}
/* Phones see the real phone interface, not an unreadably shrunken desktop screen. */
@media (max-width: 550px) {
  .product-stage .hero-frame {
    width: min(82%, 290px);
    margin-inline: auto;
    border-radius: 22px;
    transform: none;
  }
  .product-stage .hero-frame:hover {
    transform: none;
  }
  .hero-frame .browser-toolbar {
    display: none;
  }
  .hero-frame picture img {
    aspect-ratio: 1 / 2;
    object-fit: contain;
  }
  .product-stage .stage-note {
    right: 0;
    bottom: 26px;
    max-width: 94%;
  }
  .product-stage .orbit {
    width: 88%;
    left: 6%;
    height: 86%;
    top: 5%;
  }
}
@font-face {
  font-family: Axiforma;
  src: url('/assets/fonts/Axiforma-Bold.otf') format('opentype');
  font-weight: 600 900;
  font-display: swap;
}
:root {
  --forest: #082c20;
  --green: #0b6136;
  --lime: #c5ed86;
  --ink: #102e23;
  --muted: #52655b;
  --paper: #fff;
  --cream: #f6f7ef;
  --line: #dce4d9;
  --ease: cubic-bezier(0.2, 0.65, 0.3, 1);
  font-family: Axiforma, system-ui, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  font-synthesis: none;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 112px;
}
body {
  margin: 0;
  min-width: 0;
}
h1,
h2,
h3,
p {
  margin: 0;
}
h1,
h2,
h3 {
  font-weight: 700;
  line-height: 1.17;
  letter-spacing: -0.055em;
}
h2 {
  font-size: clamp(2rem, 3.6vw, 3.3rem);
}
h3 {
  font-size: 1.7rem;
}
p {
  color: var(--muted);
  font-size: 1rem;
}
a {
  color: inherit;
  text-decoration: none;
}
a,
button {
  touch-action: manipulation;
}
button {
  font: inherit;
  cursor: pointer;
}
button,
a,
input,
summary {
  -webkit-tap-highlight-color: transparent;
}
a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid #5c992a;
  outline-offset: 5px;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: none;
}
.svg-library {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}
em {
  font-style: normal;
  color: var(--lime);
}
[hidden] {
  display: none !important;
}
.wrap {
  width: min(1280px, calc(100% - 96px));
  margin-inline: auto;
}
.section {
  padding-block: 100px;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.67rem;
  letter-spacing: 0.16em;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 24px;
}
.eyebrow.light {
  color: #c7dbcb;
}
.status-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  background: var(--lime);
  border-radius: 50%;
  flex: none;
}
.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 100;
  padding: 12px 20px;
  background: #fff;
}
.skip-link:focus {
  top: 12px;
}
.sr-only {
  position: absolute;
  clip: rect(0, 0, 0, 0);
  width: 1px;
  height: 1px;
  overflow: hidden;
  white-space: nowrap;
}
.contact-strip {
  background: var(--cream);
  border-bottom: 1px solid var(--line);
  font-size: 0.7rem;
}
.contact-strip .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 38px;
}
.contact-strip a {
  display: flex;
  align-items: center;
  gap: 12px;
}
.contact-strip svg {
  width: 16px;
  height: 16px;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: #fffffff5;
  backdrop-filter: blur(12px);
  border-bottom: 1px solid #102e2310;
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  min-height: 94px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: none;
}
.brand img {
  width: 37px;
  height: 49px;
  object-fit: contain;
}
.brand strong {
  display: block;
  font-size: 1.65rem;
  letter-spacing: -0.07em;
  line-height: 1.1;
}
.brand small {
  display: block;
  font-size: 0.56rem;
  font-weight: 700;
  margin-top: 7px;
  white-space: nowrap;
}
.nav-wrap nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 0.76rem;
  font-weight: 700;
}
.nav-wrap nav > a:not(.button) {
  min-height: 44px;
  display: flex;
  align-items: center;
  position: relative;
}
.nav-wrap nav > a:not(.button)::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s;
}
.nav-wrap nav > a:hover::after {
  transform: scaleX(1);
}
.menu-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line);
  min-width: 46px;
  min-height: 46px;
  border-radius: 8px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 54px;
  padding: 14px 24px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.4;
  transition:
    background 0.2s,
    box-shadow 0.2s,
    transform 0.2s;
  cursor: pointer;
}
.button svg {
  width: 20px;
  height: 20px;
}
.button:hover {
  transform: translateY(-2px);
}
.button:active {
  transform: translateY(0);
}
.button.lime {
  background: var(--lime);
  color: var(--forest);
}
.button.lime:hover {
  background: #d9ffa4;
  box-shadow: 0 8px 28px #0002;
}
.button.ghost {
  border-color: #91b29e;
  color: #fff;
  background: transparent;
}
.button.ghost:hover {
  background: #ffffff10;
}
.button.outline {
  border-color: var(--line);
  background: #fff;
  color: var(--ink);
}
.button.small {
  min-height: 46px;
  padding: 10px 18px;
}
.button.primary {
  background: var(--green);
  color: #fff;
}
.button.primary:hover {
  background: var(--forest);
}
[aria-disabled='true'] {
  cursor: not-allowed;
}
.button[aria-disabled='true'] {
  background: #e3e9df;
  color: #435348;
  border-color: transparent;
  transform: none;
  box-shadow: none;
}
.actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}
.text-link {
  display: inline-flex;
  gap: 18px;
  align-items: center;
  min-height: 48px;
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--green);
}
.text-link svg {
  transition: transform 0.2s;
}
.text-link:hover svg {
  transform: translateX(4px);
}
.hero {
  background: var(--forest);
  color: #fff;
  position: relative;
  overflow: hidden;
  padding-top: 84px;
}
.hero-grain {
  position: absolute;
  inset: 0;
  background: url('/assets/farmyo-pattern.png') repeat;
  background-size: 460px auto;
  opacity: 0.035;
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 0.94fr 1.06fr;
  gap: 48px;
  align-items: center;
  position: relative;
  min-height: 470px;
}
.hero h1 {
  font-size: clamp(2.9rem, 4.6vw, 4.5rem);
  line-height: 1.12;
  letter-spacing: -0.065em;
}
.hero-copy > p {
  color: #c5d4cb;
  max-width: 480px;
  font-size: 1rem;
  line-height: 1.9;
  margin: 26px 0 30px;
}
.hero-proof {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 23px;
  color: #c1d3c8;
  font-size: 0.65rem;
}
.hero-proof span {
  display: flex;
  align-items: center;
  gap: 7px;
}
.hero-proof svg {
  width: 15px;
  height: 15px;
  color: var(--lime);
}
.product-stage {
  position: relative;
  min-width: 0;
  padding: 32px 0 52px;
  perspective: 1500px;
}
.product-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  margin: 0 0 15px 22px;
  color: #dae9de;
}
.browser-frame {
  display: block;
  overflow: hidden;
  border: 1px solid #fff7;
  border-radius: 12px;
  background: var(--cream);
  box-shadow: 0 28px 65px #0004;
}
.hero-frame {
  position: relative;
  width: 116%;
  transform: rotateY(-9deg) rotateX(3deg);
  transform-origin: left;
  transition: transform 0.6s var(--ease);
}
.hero-frame:hover {
  transform: rotateY(-3deg) rotateX(1deg);
}
.browser-toolbar {
  display: flex;
  align-items: center;
  gap: 5px;
  height: 35px;
  background: #fff;
  border-bottom: 1px solid #dae1d7;
  padding: 0 12px;
  color: #607064;
}
.browser-toolbar i {
  width: 5px;
  height: 5px;
  background: #c3ccc0;
  border-radius: 50%;
}
.browser-toolbar span {
  font-size: 0.48rem;
  flex: 1;
  text-align: center;
}
.browser-toolbar svg {
  width: 12px;
  height: 12px;
}
.browser-frame img {
  width: 100%;
  aspect-ratio: 1.5;
  object-fit: cover;
  object-position: top;
  background: #eef4e7;
}
.orbit {
  position: absolute;
  border: 1px solid #acd77522;
  transform: rotate(-17deg);
  border-radius: 40px;
  width: 110%;
  height: 90%;
  top: -4%;
  left: 9%;
  pointer-events: none;
}
.orbit-two {
  transform: rotate(-29deg);
  left: 14%;
  top: 2%;
  border-color: #acd77515;
}
.stage-note {
  position: absolute;
  bottom: 10px;
  right: -15px;
  background: var(--lime);
  color: var(--forest);
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 20px;
  border-radius: 10px;
  box-shadow: 0 10px 30px #0002;
}
.note-icon {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid #163b2340;
  border-radius: 50%;
}
.stage-note strong {
  font-size: 0.74rem;
  display: block;
}
.stage-note small {
  font-size: 0.64rem;
  display: block;
  margin-top: 3px;
}
.hero-bottom {
  position: relative;
  margin-top: 75px;
  padding: 25px 0;
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: 28px;
  border-top: 1px solid #97ba9f38;
  align-items: center;
  font-size: 0.87rem;
}
.hero-bottom > span {
  font-size: 0.7rem;
  color: #b6c9bb;
}
.hero-bottom > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-left: 1px solid #97ba9f38;
  padding-left: 24px;
}
.hero-bottom b {
  font-size: 18px;
  font-weight: 400;
  color: #9cbd7b;
}
.intro-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 100px;
  align-items: center;
}
.intro h2 {
  font-size: clamp(1.8rem, 3vw, 2.65rem);
  line-height: 1.35;
}
.intro h2 span {
  color: #7d8e75;
}
.intro-grid p {
  line-height: 1.95;
  margin-bottom: 22px;
}
.platform {
  background: var(--cream);
}
.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 48px;
}
.section-heading > p {
  max-width: 390px;
  line-height: 1.9;
}
.section-heading .eyebrow {
  margin-bottom: 20px;
}
.feature-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid #bbcbbb;
  margin-bottom: 42px;
  gap: 20px;
}
.feature-tabs button {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 16px 4px 21px;
  min-height: 62px;
  border: 0;
  border-bottom: 3px solid transparent;
  background: transparent;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
  text-align: left;
}
.feature-tabs button span {
  font-size: 0.65rem;
  font-weight: 400;
}
.feature-tabs button[aria-selected='true'] {
  border-bottom-color: var(--green);
  color: var(--green);
}
.feature-tabs button:hover {
  color: var(--green);
}
.feature-panel {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 64px;
  align-items: center;
}
.feature-copy .eyebrow {
  font-size: 0.61rem;
  margin-bottom: 16px;
}
.feature-copy h3 {
  font-size: 2rem;
  line-height: 1.3;
}
.feature-copy p {
  margin: 18px 0;
  line-height: 1.8;
  font-size: 0.88rem;
}
.feature-copy ul {
  list-style: none;
  margin: 24px 0 12px;
  padding: 0;
}
.feature-copy li {
  position: relative;
  padding: 9px 0 9px 22px;
  font-size: 0.75rem;
}
.feature-copy li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}
.feature-screen {
  min-width: 0;
  border: 1px solid var(--line);
  padding: 14px;
  background: #e8eedf;
  border-radius: 14px;
  box-shadow: 0 16px 35px #112e2210;
}
.screen-kicker {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin: 0 0 12px;
  font-size: 0.52rem;
  color: #52624b;
}
.screen-kicker > span:first-child {
  font-weight: 700;
  letter-spacing: 0.08em;
}
.feature-screen img {
  border: 1px solid #e0e7d9;
  border-radius: 6px;
  width: 100%;
  aspect-ratio: 1.5;
  object-fit: cover;
  object-position: top;
}
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.benefit-grid article {
  padding: 30px 30px 28px;
  border: 1px solid var(--line);
  border-radius: 14px;
}
.benefit-icon {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: #edf4e5;
  color: var(--green);
  flex: none;
}
.benefit-grid h3 {
  font-size: 1.5rem;
  line-height: 1.4;
  margin: 24px 0 16px;
}
.benefit-grid p {
  font-size: 0.86rem;
  line-height: 1.9;
}
.benefit-grid article > span {
  display: block;
  margin-top: 28px;
  font-size: 0.54rem;
  letter-spacing: 0.07em;
  color: #688259;
  font-weight: 700;
}
.demo-section {
  background: var(--forest);
  color: #fff;
  padding: 95px 0;
  position: relative;
}
.demo-grid {
  display: grid;
  grid-template-columns: 1.08fr 1fr;
  gap: 110px;
  align-items: center;
}
.demo-section h2 {
  font-size: clamp(2rem, 3.5vw, 3.25rem);
  line-height: 1.3;
}
.demo-section p {
  color: #c1d3c7;
  margin: 24px 0 28px;
  line-height: 1.85;
  max-width: 490px;
}
.demo-disclaimer {
  display: block;
  color: #adbfaf;
  font-size: 0.66rem;
  margin-top: 24px;
  line-height: 1.8;
}
.tour-roadmap {
  border: 1px solid #97ba9f45;
  border-radius: 16px;
  padding: 28px;
  background: #133a2b;
}
.roadmap-label {
  font-size: 0.6rem;
  color: #b4c6b1;
  letter-spacing: 0.12em;
  font-weight: 700;
}
.tour-roadmap > a {
  display: flex;
  gap: 20px;
  align-items: center;
  padding: 22px 0;
  border-bottom: 1px solid #ffffff18;
  transition: color 0.2s;
}
.tour-roadmap > a:hover {
  color: var(--lime);
}
.tour-roadmap > a > span {
  color: var(--lime);
  font-size: 0.7rem;
}
.tour-roadmap > a > div {
  flex: 1;
  min-width: 0;
  overflow-wrap: anywhere;
}
.tour-roadmap strong {
  display: block;
  font-size: 0.91rem;
}
.tour-roadmap small {
  display: block;
  color: #b9cbbf;
  font-size: 0.67rem;
  margin-top: 6px;
}
.tour-roadmap svg {
  width: 18px;
}
.roadmap-foot {
  font-size: 0.61rem;
  color: #c6d7c7;
  padding-top: 22px;
  display: flex;
  gap: 8px;
  align-items: center;
}
.download-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.apk-panel {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 34px;
}
.apk-top {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  align-items: center;
  margin-bottom: 24px;
}
.apk-top img {
  width: 47px;
  height: 62px;
  object-fit: contain;
}
.pill {
  font-size: 0.54rem;
  letter-spacing: 0.1em;
  color: var(--green);
  padding: 7px 9px;
  border: 1px solid #b5caab;
  border-radius: 5px;
  font-weight: 700;
}
.apk-panel h3 {
  font-size: 1.5rem;
}
.apk-panel > p {
  font-size: 0.85rem;
  margin-top: 15px;
  line-height: 1.8;
}
.apk-panel .button {
  width: 100%;
  margin-top: 25px;
}
.apk-panel .download-meta {
  font-size: 0.7rem;
  margin-top: 16px;
}
.preview-note {
  padding: 12px;
  background: #f6e8c5;
  border: 1px solid #ddc795;
  border-radius: 7px;
  color: #62471b;
}
.apk-panel details {
  font-size: 0.7rem;
  border-top: 1px solid var(--line);
  margin-top: 15px;
}
.apk-panel summary {
  padding: 15px 0;
  font-size: 0.72rem;
}
.apk-panel dl {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 10px;
  margin: 0 0 10px;
}
.apk-panel dd {
  margin: 0;
  overflow-wrap: anywhere;
}
.small-link {
  font-size: 0.73rem;
  margin-top: 9px;
}
.store-panel h3 {
  font-size: 1.8rem;
  line-height: 1.3;
}
.store-panel > p {
  margin: 18px 0 25px;
  line-height: 1.85;
}
.store-badges {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  flex-wrap: wrap;
  margin: 28px 0 36px;
}
.store-badges > div {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.store-badges > div > span:not(.sr-only) {
  font-size: 0.65rem;
  color: var(--muted);
}
.store-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 62px;
  min-width: 168px;
}
.store-badge img {
  height: 56px;
  width: auto;
}
.store-badges > div:nth-child(2) img {
  height: 73px;
}
.store-badge[aria-disabled='true'] {
  cursor: default;
}
.web-option {
  display: flex;
  gap: 15px;
  align-items: center;
  border-top: 1px solid var(--line);
  padding-top: 26px;
}
.web-option strong {
  font-size: 0.8rem;
}
.web-option p {
  font-size: 0.7rem;
  margin-top: 5px;
}
.web-option > a {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  flex: none;
  border: 1px solid var(--line);
  border-radius: 50%;
  margin-left: auto;
}
.update-safety {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding-top: 30px;
  font-size: 0.7rem;
  max-width: 850px;
  line-height: 1.9;
}
.update-safety svg {
  width: 18px;
  height: 18px;
  margin-top: 3px;
}
.downloads .section-heading a {
  text-decoration: underline;
  text-underline-offset: 4px;
}
.faq {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 100px;
  border-top: 1px solid var(--line);
}
.faq .text-link {
  margin-top: 25px;
}
details {
  border-bottom: 1px solid var(--line);
}
summary {
  font-size: 0.91rem;
  font-weight: 700;
  cursor: pointer;
  padding: 22px 32px 22px 0;
  position: relative;
  list-style: none;
}
summary::-webkit-details-marker {
  display: none;
}
summary::after {
  content: '+';
  font-weight: 400;
  position: absolute;
  right: 3px;
  font-size: 1.3rem;
  top: 17px;
  color: var(--green);
}
details[open] > summary::after {
  content: '−';
}
details > p {
  font-size: 0.82rem;
  line-height: 1.9;
  padding: 0 25px 22px 0;
}
details p a {
  text-decoration: underline;
  overflow-wrap: anywhere;
}
.contact-section {
  background: var(--lime);
  padding: 80px 0;
}
.contact-section > .wrap {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 100px;
  align-items: center;
}
.contact-section h2 {
  font-size: clamp(2rem, 3.3vw, 3rem);
}
.contact-section p {
  color: #344e26;
  max-width: 420px;
  margin-top: 25px;
}
.contact-links {
  display: grid;
  gap: 0;
}
.contact-links > a {
  display: grid;
  grid-template-columns: 1fr 28px;
  border-bottom: 1px solid #44672e45;
  padding: 18px 0;
}
.contact-links > a:first-child {
  padding-top: 0;
}
.contact-links > a:last-child {
  border: 0;
  padding-bottom: 0;
}
.contact-links span {
  font-size: 0.53rem;
  letter-spacing: 0.1em;
  grid-column: 1;
  margin-bottom: 6px;
}
.contact-links strong {
  font-size: 1.15rem;
  letter-spacing: -0.025em;
  overflow-wrap: anywhere;
}
.contact-links svg {
  grid-row: 1/3;
  grid-column: 2;
  align-self: center;
  transition: transform 0.2s;
}
.contact-links a:hover svg {
  transform: translateX(4px);
}
footer {
  background: #062218;
  color: #fff;
  padding: 60px 0 22px;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 50px;
  align-items: center;
  padding-bottom: 45px;
}
.footer-top .brand img {
  background: #f2f7e9;
  padding: 3px;
  border-radius: 5px;
}
.footer-top p {
  font-size: 0.82rem;
  line-height: 1.8;
  color: #b1c5b6;
}
.footer-top > div {
  display: flex;
  gap: 30px;
  font-size: 0.74rem;
}
.footer-top > div a {
  min-height: 44px;
  display: flex;
  align-items: center;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  padding-top: 22px;
  border-top: 1px solid #ffffff23;
  font-size: 0.6rem;
  color: #b7c8bc;
}
.footer-bottom > div {
  display: flex;
  gap: 30px;
}
.footer-bottom a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
}
@keyframes enter {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero-copy {
  animation: enter 0.65s var(--ease) both;
}
.product-stage {
  animation: enter 0.8s 0.12s var(--ease) both;
}
.motion-ready .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.6s var(--ease),
    transform 0.6s var(--ease);
}
.motion-ready .reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}
.benefit-grid > .reveal:nth-child(2) {
  transition-delay: 0.07s;
}
.benefit-grid > .reveal:nth-child(3) {
  transition-delay: 0.14s;
}
@media (min-width: 1600px) {
  .hero-frame {
    width: 110%;
  }
  .hero-grid {
    gap: 80px;
  }
}
@media (max-width: 1100px) {
  .wrap {
    width: calc(100% - 64px);
  }
  .nav-wrap nav {
    gap: 22px;
  }
  .hero {
    padding-top: 65px;
  }
  .hero-grid {
    gap: 30px;
  }
  .hero h1 {
    font-size: 3.3rem;
  }
  .hero-proof {
    gap: 10px;
  }
  .hero-bottom {
    gap: 16px;
    font-size: 0.76rem;
  }
  .hero-bottom > div {
    padding-left: 14px;
  }
  .intro-grid,
  .demo-grid,
  .contact-section > .wrap,
  .faq {
    gap: 55px;
  }
  .feature-panel {
    gap: 38px;
    grid-template-columns: 0.85fr 1.15fr;
  }
  .feature-tabs button {
    font-size: 0.78rem;
    gap: 10px;
  }
  .benefit-grid {
    gap: 18px;
  }
  .benefit-grid article {
    padding: 24px;
  }
  .download-layout {
    gap: 42px;
  }
  .stage-note {
    right: -5px;
  }
  .screen-kicker > span:last-child {
    max-width: 150px;
    text-align: right;
  }
  .footer-top > div {
    gap: 20px;
  }
}
@media (max-width: 850px) {
  .wrap {
    width: calc(100% - 48px);
  }
  .section {
    padding-block: 72px;
  }
  .nav-wrap {
    min-height: 80px;
  }
  .menu-toggle {
    display: grid;
    place-items: center;
  }
  .nav-wrap nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    padding: 20px 24px;
    box-shadow: 0 14px 22px #0001;
    gap: 10px;
    align-items: stretch;
  }
  .nav-wrap nav.open {
    display: flex;
    flex-direction: column;
  }
  .nav-wrap nav > a {
    padding-inline: 12px;
    min-height: 48px;
  }
  .contact-strip .wrap {
    min-height: 34px;
  }
  .contact-strip .wrap > span {
    font-size: 0.61rem;
  }
  .contact-strip a {
    gap: 7px;
    font-size: 0.61rem;
  }
  .hero {
    padding-top: 55px;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .hero-copy {
    max-width: 660px;
  }
  .hero h1 {
    font-size: clamp(2.8rem, 7.8vw, 4.5rem);
  }
  .hero-copy > p {
    max-width: 560px;
  }
  .product-stage {
    padding: 24px 0 50px;
    width: 94%;
    max-width: 740px;
    margin-inline: auto;
  }
  .hero-frame {
    width: 100%;
    transform: rotateY(-4deg) rotateX(2deg);
  }
  .product-label {
    margin-left: 0;
  }
  .stage-note {
    right: -15px;
    bottom: 12px;
  }
  .hero-bottom {
    margin-top: 25px;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }
  .hero-bottom > span {
    grid-column: 1/-1;
  }
  .hero-bottom > div:nth-child(2) {
    padding-left: 0;
    border: 0;
  }
  .intro-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .intro-grid > div {
    max-width: 590px;
  }
  .section-heading {
    gap: 28px;
  }
  .section-heading > p {
    font-size: 0.85rem;
  }
  .feature-panel {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .feature-copy {
    max-width: 570px;
  }
  .feature-copy h3 br {
    display: none;
  }
  .feature-copy ul {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
  }
  .feature-screen {
    padding: 14px;
  }
  .screen-kicker > span:last-child {
    max-width: none;
  }
  .benefit-grid {
    grid-template-columns: 1fr;
  }
  .benefit-grid article {
    display: grid;
    grid-template-columns: 58px 1fr 1.2fr;
    gap: 0 24px;
    align-items: center;
  }
  .benefit-grid h3 {
    font-size: 1.3rem;
    margin: 0;
  }
  .benefit-grid p {
    font-size: 0.79rem;
  }
  .benefit-grid article > span {
    grid-column: 2/-1;
    margin-top: 18px;
  }
  .demo-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .demo-section {
    padding-block: 70px;
  }
  .demo-section p {
    max-width: 620px;
  }
  .tour-roadmap {
    max-width: none;
  }
  .download-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .store-panel {
    padding: 0 14px;
  }
  .apk-panel {
    padding: 30px;
  }
  .faq {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .contact-section > .wrap {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .contact-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px 35px;
  }
  .contact-links > a,
  .contact-links > a:first-child,
  .contact-links > a:last-child {
    border-top: 1px solid #44672e45;
    border-bottom: 0;
    padding: 18px 0 0;
  }
  .footer-top {
    flex-wrap: wrap;
    gap: 30px;
  }
  .footer-top > div {
    width: 100%;
  }
  .footer-bottom {
    flex-wrap: wrap;
    gap: 8px;
  }
}
@media (max-width: 550px) {
  html {
    scroll-padding-top: 88px;
  }
  .wrap {
    width: calc(100% - 40px);
  }
  .contact-strip .wrap > span {
    display: none;
  }
  .contact-strip .wrap {
    justify-content: center;
  }
  .contact-strip a {
    font-size: 0.61rem;
    min-height: 33px;
  }
  .nav-wrap {
    min-height: 79px;
    gap: 15px;
  }
  .brand strong {
    font-size: 1.5rem;
  }
  .brand small {
    font-size: 0.48rem;
    white-space: normal;
    max-width: 175px;
  }
  .brand img {
    width: 32px;
    height: 43px;
  }
  .section {
    padding-block: 58px;
  }
  .eyebrow {
    font-size: 0.59rem;
    letter-spacing: 0.11em;
    margin-bottom: 19px;
  }
  .hero {
    padding-top: 45px;
  }
  .hero h1 {
    font-size: clamp(2.75rem, 10.8vw, 3.55rem);
  }
  .hero-copy > p {
    font-size: 0.88rem;
    line-height: 1.9;
    margin: 22px 0 26px;
  }
  .hero .actions {
    gap: 10px;
  }
  .hero .button {
    min-height: 52px;
    font-size: 0.74rem;
    padding: 13px 17px;
    gap: 10px;
  }
  .hero-proof {
    font-size: 0.59rem;
    gap: 10px 14px;
    line-height: 1.8;
  }
  .hero-proof svg {
    width: 13px;
    height: 13px;
  }
  .product-stage {
    width: 100%;
    margin-top: 12px;
    padding-bottom: 42px;
  }
  .product-label {
    font-size: 0.6rem;
  }
  .browser-toolbar {
    height: 26px;
    padding: 0 8px;
  }
  .browser-toolbar span {
    font-size: 0.42rem;
  }
  .browser-toolbar i {
    width: 4px;
    height: 4px;
  }
  .browser-frame {
    border-radius: 8px;
  }
  .hero-frame,
  .hero-frame:hover {
    transform: none;
  }
  .stage-note {
    right: 8px;
    bottom: 8px;
    padding: 11px 14px;
    gap: 10px;
  }
  .stage-note strong {
    font-size: 0.6rem;
  }
  .stage-note small {
    font-size: 0.54rem;
  }
  .note-icon {
    width: 31px;
    height: 31px;
  }
  .note-icon svg {
    width: 17px;
    height: 17px;
  }
  .hero-bottom {
    grid-template-columns: 1fr 1fr;
    padding: 22px 0 24px;
    gap: 17px 25px;
    margin-top: 15px;
  }
  .hero-bottom > div {
    padding-left: 0;
    border: 0;
    font-size: 0.78rem;
  }
  .hero-bottom > span {
    font-size: 0.65rem;
  }
  .intro h2 {
    font-size: 1.78rem;
    letter-spacing: -0.055em;
  }
  .intro h2 br {
    display: none;
  }
  .intro h2 span {
    display: block;
    margin-top: 5px;
  }
  .intro-grid p {
    font-size: 0.88rem;
  }
  .text-link {
    font-size: 0.78rem;
    gap: 12px;
  }
  .section-heading {
    display: block;
    margin-bottom: 32px;
  }
  .section-heading > p,
  .section-heading > .text-link {
    margin-top: 20px;
  }
  .section-heading h2 {
    font-size: 2.2rem;
  }
  .feature-tabs {
    grid-template-columns: 1fr 1fr;
    gap: 0 20px;
    margin-bottom: 30px;
  }
  .feature-tabs button {
    font-size: 0.72rem;
    min-height: 58px;
    padding: 15px 2px;
  }
  .feature-copy h3 {
    font-size: 1.7rem;
  }
  .feature-copy p {
    font-size: 0.87rem;
  }
  .feature-copy li {
    font-size: 0.73rem;
    line-height: 1.8;
  }
  .feature-screen {
    padding: 8px;
    border-radius: 10px;
  }
  .screen-kicker {
    font-size: 0.43rem;
    line-height: 1.5;
    gap: 10px;
    margin: 3px 2px 9px;
  }
  .screen-kicker > span:last-child {
    max-width: 120px;
  }
  .benefit-grid article {
    display: block;
    padding: 27px;
  }
  .benefit-grid h3 {
    font-size: 1.5rem;
    margin: 22px 0 15px;
  }
  .benefit-grid p {
    font-size: 0.87rem;
  }
  .benefit-grid article > span {
    font-size: 0.52rem;
    line-height: 1.8;
    margin-top: 24px;
  }
  .demo-section {
    padding-block: 58px;
  }
  .demo-section h2 {
    font-size: 2.2rem;
  }
  .demo-section p {
    font-size: 0.9rem;
  }
  .tour-roadmap {
    padding: 23px;
  }
  .tour-roadmap > a {
    gap: 15px;
    padding: 21px 0;
  }
  .tour-roadmap strong {
    font-size: 0.79rem;
  }
  .tour-roadmap small {
    font-size: 0.61rem;
    line-height: 1.8;
  }
  .roadmap-foot {
    align-items: flex-start;
    line-height: 1.9;
  }
  .demo-disclaimer {
    font-size: 0.63rem;
    line-height: 1.9;
  }
  .apk-panel {
    padding: 24px;
  }
  .apk-top {
    gap: 12px;
  }
  .pill {
    font-size: 0.47rem;
    letter-spacing: 0.04em;
  }
  .apk-panel h3 {
    font-size: 1.45rem;
  }
  .apk-panel > p {
    font-size: 0.83rem;
  }
  .store-panel {
    padding: 0;
  }
  .store-panel h3 {
    font-size: 1.65rem;
  }
  .store-panel > p {
    font-size: 0.88rem;
  }
  .store-badges {
    gap: 18px;
    justify-content: flex-start;
  }
  .store-badges > div {
    flex: 1;
    min-width: 130px;
  }
  .store-badge {
    min-width: 0;
    max-width: 100%;
    height: 52px;
  }
  .store-badge img {
    height: 45px;
    width: auto;
  }
  .store-badges > div:nth-child(2) img {
    height: 59px;
  }
  .web-option {
    gap: 11px;
  }
  .web-option .benefit-icon {
    width: 40px;
    height: 40px;
  }
  .web-option strong {
    font-size: 0.72rem;
  }
  .web-option p {
    font-size: 0.63rem;
  }
  .web-option > a {
    width: 42px;
    height: 42px;
  }
  .update-safety {
    font-size: 0.65rem;
  }
  .faq h2 {
    font-size: 2rem;
  }
  .faq summary {
    font-size: 0.8rem;
    line-height: 1.7;
    padding-block: 20px;
  }
  .faq details > p {
    font-size: 0.8rem;
  }
  .contact-section {
    padding-block: 55px;
  }
  .contact-section h2 {
    font-size: 2.1rem;
  }
  .contact-section p {
    font-size: 0.88rem;
  }
  .contact-links {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .contact-links strong {
    font-size: 1.18rem;
  }
  .contact-links span {
    font-size: 0.58rem;
  }
  .footer-top p {
    font-size: 0.72rem;
  }
  .footer-top {
    gap: 25px;
  }
  .footer-top > div {
    gap: 28px;
  }
  .footer-top > div a {
    font-size: 0.7rem;
  }
  .footer-bottom {
    font-size: 0.59rem;
    line-height: 1.8;
  }
  .footer-bottom > div {
    gap: 27px;
  }
  footer {
    padding-top: 40px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
  .motion-ready .reveal {
    opacity: 1;
    transform: none;
  }
  .hero-frame {
    transform: none;
  }
  .button:hover {
    transform: none;
  }
}

/* Keep the same composition usable with enlarged system text on small phones. */
.hero-grid > *,
.feature-panel > *,
.contact-section > .wrap > *,
.intro-grid > *,
.download-layout > *,
.demo-grid > * {
  min-width: 0;
}
h1,
h2,
h3 {
  overflow-wrap: anywhere;
}
.contact-links {
  min-width: 0;
}
.contact-links > a {
  grid-template-columns: minmax(0, 1fr) 28px;
  min-width: 0;
}
.brand > span {
  min-width: 0;
}
@media (max-width: 550px) {
  .brand {
    min-width: 0;
    flex-shrink: 1;
  }
  .brand small {
    font-size: 0.75rem;
    line-height: 1.4;
  }
  .hero .button,
  .feature-tabs button {
    font-size: 0.8rem;
  }
  .feature-tabs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .feature-tabs button {
    min-width: 0;
    overflow-wrap: anywhere;
  }
  .feature-copy li,
  .apk-panel .download-meta,
  .web-option p,
  .update-safety,
  .footer-top p {
    font-size: 0.75rem;
  }
  .hero .button {
    max-width: 100%;
  }
  .web-option > div {
    min-width: 0;
  }
}
