@font-face {
  font-family: Axiforma;
  src: url('/website/assets/fonts/Axiforma-Regular.otf') format('opentype');
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: Axiforma;
  src: url('/website/assets/fonts/Axiforma-Bold.otf') format('opentype');
  font-weight: 600 900;
  font-display: swap;
}
:root {
  color-scheme: light;
  --green: #0b6136;
  --green-hover: #084c2b;
  --ink: #102e21;
  --muted: #53675a;
  --cream: #f7f9ef;
  --surface: #fff;
  --soft: #edf3e5;
  --line: #d9e3d4;
  --lime: #c0ed80;
  --forest: #092f21;
  --on-forest: #d0ddce;
  --ring: #4b7d19;
  --radius: 22px;
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
  font-family:
    Axiforma,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    sans-serif;
  font-synthesis: none;
  line-height: 1.65;
  color: var(--ink);
  background: var(--surface);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}
body {
  margin: 0;
}
h1,
h2,
h3,
p,
figure {
  margin: 0;
}
h1,
h2,
h3 {
  overflow-wrap: anywhere;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
  color: inherit;
  cursor: pointer;
}
svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: none;
  vertical-align: middle;
}
img {
  max-width: 100%;
  display: block;
}
button,
a {
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}
button:focus-visible,
a:focus-visible,
summary:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid var(--ring);
  outline-offset: 5px;
}
a,
button {
  transition:
    color 0.2s,
    background 0.2s,
    border-color 0.2s,
    transform 0.25s var(--ease);
}
[hidden] {
  display: none !important;
}
.svg-defs {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.wrap {
  width: min(1240px, calc(100% - 48px));
  margin-inline: auto;
  min-width: 0;
}
.section {
  padding-block: 104px;
}
.skip-link {
  position: fixed;
  top: 8px;
  left: 12px;
  z-index: 100;
  padding: 12px 20px;
  background: var(--surface);
  transform: translateY(-160%);
  border: 2px solid var(--green);
  border-radius: 8px;
}
.skip-link:focus {
  transform: none;
}
.eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  font-weight: 700;
  color: var(--green);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.seed-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  flex: none;
}
.icon-well {
  display: inline-grid;
  place-items: center;
  width: 50px;
  height: 50px;
  background: var(--soft);
  color: var(--green);
  border-radius: 14px;
  flex: none;
}
h2 {
  font-size: clamp(1.95rem, 3.6vw, 3rem);
  line-height: 1.23;
  letter-spacing: -0.045em;
  font-weight: 700;
}
h3 {
  line-height: 1.3;
  letter-spacing: -0.035em;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 54px;
  padding: 14px 22px;
  font-size: 0.88rem;
  font-weight: 700;
  border: 1px solid transparent;
  border-radius: 10px;
  line-height: 1.5;
  text-align: center;
}
.button svg {
  width: 19px;
  height: 19px;
}
.button.primary {
  background: var(--green);
  color: var(--surface);
}
.button.primary:hover {
  background: var(--green-hover);
  transform: translateY(-2px);
}
.button.secondary {
  background: var(--surface);
  border-color: var(--line);
  color: var(--ink);
}
.button.secondary:hover {
  background: var(--soft);
  border-color: var(--green);
}
.button:active {
  transform: scale(0.98);
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 48px;
  color: var(--green);
  font-size: 0.875rem;
  font-weight: 700;
}
.text-link svg {
  width: 18px;
  height: 18px;
  transition: transform 0.2s;
}
.text-link:hover svg {
  transform: translateX(4px);
}
/* A single, predictable header on every screen size. */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}
.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 98px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 1 auto;
  min-width: 0;
  max-width: 100%;
}
.brand > span:last-child {
  min-width: 0;
}
.crest {
  position: relative;
  width: 45px;
  height: 63px;
  overflow: hidden;
  display: block;
  flex: none;
}
.crest img {
  position: absolute;
  width: 68px;
  height: auto;
  max-width: none;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.brand strong {
  display: block;
  font-size: 1.85rem;
  letter-spacing: -0.065em;
  line-height: 1.25;
}
.brand small {
  display: block;
  font-size: 0.59rem;
  font-weight: 700;
  margin-top: 2px;
  letter-spacing: -0.025em;
}
.desktop-nav,
.nav-actions {
  display: flex;
  align-items: center;
  gap: 28px;
}
.desktop-nav a {
  font-size: 0.8rem;
  font-weight: 700;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
}
.desktop-nav a:hover {
  color: var(--green);
}
.login-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 10px 18px;
  border: 1px solid var(--line);
  border-radius: 9px;
  font-weight: 700;
  font-size: 0.8rem;
}
.login-link svg {
  width: 17px;
  height: 17px;
}
.login-link:hover {
  background: var(--soft);
}
.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  background: var(--surface);
  width: 44px;
  height: 44px;
  border-radius: 9px;
}
.mobile-nav {
  padding-block: 12px 20px;
}
.mobile-nav a {
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 10px 12px;
  font-size: 0.9rem;
  border-radius: 8px;
}
.mobile-nav a:hover {
  background: var(--soft);
}
/* Dimensional product photography, rendered in CSS to keep the page lightweight. */
.hero {
  background: var(--cream);
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 20px;
  align-items: center;
  padding-block: 88px 70px;
}
.hero-copy {
  z-index: 2;
  position: relative;
  min-width: 0;
}
.hero h1 {
  font-size: clamp(2.7rem, 4.65vw, 4.1rem);
  line-height: 1.13;
  letter-spacing: -0.063em;
  margin-bottom: 26px;
}
.hero h1 span {
  color: var(--green);
}
.intro {
  max-width: 475px;
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.85;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}
.hero-actions .button {
  padding-inline: 18px;
}
.hero-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin-top: 22px;
  font-size: 0.72rem;
  color: var(--muted);
}
.hero-notes span {
  display: flex;
  align-items: center;
  gap: 6px;
}
.hero-notes svg {
  width: 17px;
  height: 17px;
  color: var(--green);
}
.hero-art {
  position: relative;
  isolation: isolate;
  min-width: 0;
  padding: 70px 0 68px;
  perspective: 1400px;
}
.orbit {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  pointer-events: none;
}
.orbit-one {
  width: 88%;
  aspect-ratio: 1;
  left: 14%;
  top: 0;
  background: #e3efcf;
}
.orbit-two {
  width: 102%;
  aspect-ratio: 1;
  left: 7%;
  top: -10%;
  border: 1px solid #cedebb;
}
.device-stage {
  position: relative;
  transform: rotateY(-11deg) rotateX(6deg) rotateZ(2deg);
  transition: transform 0.4s var(--ease);
}
.hero-art:hover .device-stage {
  transform: rotateY(-5deg) rotateX(3deg) rotateZ(0);
}
.desktop-device {
  position: relative;
  border: 8px solid #163629;
  border-radius: 17px;
  overflow: hidden;
  background: var(--surface);
  box-shadow:
    12px 22px 0 -8px #233b2c,
    24px 38px 55px -18px #153e2945;
}
.device-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 29px;
  padding: 5px 10px;
  background: var(--surface);
  font-size: 9px;
  color: var(--muted);
}
.device-toolbar svg {
  width: 10px;
  height: 10px;
  margin-right: 3px;
}
.window-dots {
  display: flex;
  gap: 4px;
}
.window-dots i {
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #ced8ca;
}
.dashboard-image {
  width: 100%;
  height: auto;
}
.device-base {
  position: relative;
  width: 108%;
  height: 14px;
  margin-left: -4%;
  background: linear-gradient(#adc0ac, #6c8370);
  border-radius: 2px 2px 50% 50%;
  box-shadow: 10px 14px 15px -4px #234e2426;
}
.device-base:before {
  content: '';
  position: absolute;
  width: 17%;
  height: 4px;
  background: #5e7964;
  left: 41.5%;
  top: 0;
  border-radius: 0 0 6px 6px;
}
.art-note {
  position: absolute;
  z-index: 3;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: 0 12px 35px #173c2210;
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px;
}
.art-note strong {
  display: block;
  font-size: 0.78rem;
}
.art-note small {
  font-size: 0.64rem;
  color: var(--muted);
}
.note-production {
  top: 3%;
  left: 1%;
  transform: rotate(-3deg);
}
.note-production .icon-well {
  width: 38px;
  height: 38px;
  border-radius: 10px;
}
.note-production .icon-well svg {
  width: 20px;
  height: 20px;
}
.note-mobile {
  bottom: 10%;
  right: 0;
  transform: rotate(3deg);
  font-size: 0.68rem;
}
.note-mobile > svg {
  width: 24px;
  height: 24px;
  color: var(--green);
}
.preview-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 0.6rem;
  color: var(--muted);
}
.hero-bottom {
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-block: 24px;
  color: var(--muted);
  font-size: 0.76rem;
}
.hero-bottom > div {
  display: flex;
  flex-wrap: wrap;
  min-width: 0;
  gap: 32px;
  font-weight: 700;
  color: var(--ink);
}
.hero-bottom > a {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
}
.hero-bottom > a:hover {
  background: var(--surface);
}
.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 44px;
}
.section-heading > p {
  max-width: 360px;
  color: var(--muted);
  font-size: 0.95rem;
}
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px;
}
.benefit {
  padding: 4px 30px 0 0;
}
.benefit + .benefit {
  border-left: 1px solid var(--line);
  padding-left: 32px;
}
.benefit .icon-well {
  margin-bottom: 24px;
}
.benefit h3 {
  font-size: 1.12rem;
  margin-bottom: 12px;
}
.benefit p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.85;
}
.module-section {
  padding-block: 78px;
  background: var(--cream);
}
.module-section .section-heading {
  align-items: center;
}
.switch {
  display: inline-flex;
  max-width: 100%;
  align-items: center;
  gap: 4px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
  padding: 5px;
}
.switch button {
  background: transparent;
  border: 0;
  padding: 11px 22px;
  min-height: 46px;
  font-weight: 700;
  font-size: 0.84rem;
  border-radius: 8px;
  min-width: 100px;
}
.switch button[aria-selected='true'],
.switch button[aria-pressed='true'] {
  background: var(--green);
  color: var(--surface);
}
.switch button:hover:not([aria-selected='true']):not([aria-pressed='true']) {
  background: var(--soft);
}
.module-panel {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  align-items: center;
  gap: 52px;
}
.module-number {
  display: block;
  font-size: 0.68rem;
  color: var(--muted);
  letter-spacing: 0.1em;
  font-weight: 700;
  margin-bottom: 18px;
}
.module-copy h3 {
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  line-height: 1.4;
  letter-spacing: -0.045em;
}
.module-copy > p {
  color: var(--muted);
  font-size: 0.9rem;
  margin-top: 16px;
  max-width: 440px;
}
.check-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 18px;
  display: grid;
  gap: 12px;
  font-size: 0.82rem;
}
.check-list li {
  position: relative;
  padding-left: 26px;
}
.check-list li:before {
  content: '';
  position: absolute;
  width: 6px;
  height: 11px;
  left: 4px;
  top: 3px;
  border-right: 2px solid var(--green);
  border-bottom: 2px solid var(--green);
  transform: rotate(42deg);
}
.module-visual {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface);
  box-shadow: 0 16px 40px #24451d0e;
}
.module-visual img {
  width: 100%;
  height: auto;
}
.mini-toolbar {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 14px 18px;
  font-size: 0.7rem;
  font-weight: 700;
  border-bottom: 1px solid var(--line);
}
.mini-toolbar .seed-dot {
  width: 6px;
  height: 6px;
}
.connected {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 72px;
}
.connected-intro > p:not(.eyebrow) {
  color: var(--muted);
  margin-top: 22px;
  font-size: 0.95rem;
  max-width: 360px;
}
.connected-intro .text-link {
  margin-top: 16px;
}
.connected-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 36px 32px;
}
.connected-grid article > svg {
  color: var(--green);
  width: 27px;
  height: 27px;
  margin-bottom: 18px;
}
.connected-grid h3 {
  font-size: 1rem;
  margin-bottom: 10px;
}
.connected-grid p {
  color: var(--muted);
  font-size: 0.83rem;
  line-height: 1.8;
}
.pricing-section {
  background: var(--soft);
  padding-block: 90px;
}
.pricing-heading {
  text-align: center;
  margin-bottom: 52px;
}
.pricing-heading .eyebrow {
  justify-content: center;
}
.pricing-heading > p:not(.eyebrow) {
  color: var(--muted);
  margin: 18px 0 28px;
}
.billing-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}
.saving-note {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--green);
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}
.price-card {
  position: relative;
  min-width: 0;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
}
.price-card.featured {
  border: 2px solid var(--green);
  box-shadow: 0 10px 28px #1742270d;
  padding: 29px 25px;
}
.recommended {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green);
  color: var(--surface);
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.62rem;
  letter-spacing: 0.07em;
  font-weight: 700;
  white-space: nowrap;
}
.plan-top {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 23px;
}
.plan-symbol {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  background: var(--soft);
  border-radius: 10px;
  color: var(--green);
}
.plan-symbol svg {
  width: 21px;
  height: 21px;
}
.plan-label {
  font-size: 0.61rem;
  letter-spacing: 0.09em;
  font-weight: 700;
  color: var(--muted);
}
.price-card h3 {
  font-size: 1.5rem;
  margin-bottom: 9px;
}
.plan-description {
  color: var(--muted);
  font-size: 0.79rem;
  min-height: 50px;
}
.price {
  margin-top: 24px;
  line-height: 1.3;
  display: flex;
  align-items: baseline;
  gap: 6px;
  flex-wrap: wrap;
  font-variant-numeric: tabular-nums;
}
.price .currency {
  font-size: 0.72rem;
  font-weight: 700;
}
.price strong {
  font-size: 2.1rem;
  letter-spacing: -0.055em;
}
.price .period {
  font-size: 0.75rem;
  color: var(--muted);
  width: 100%;
  margin-top: 2px;
}
.price-scope {
  font-size: 0.66rem;
  color: var(--muted);
  margin-top: 8px;
  min-height: 38px;
}
.plan-cta {
  width: 100%;
  margin: 16px 0 24px;
  min-height: 50px;
}
.plan-cta svg {
  margin-left: auto;
}
.capacity {
  border-block: 1px solid var(--line);
  padding: 20px 0;
  display: grid;
  gap: 7px;
  font-size: 0.77rem;
  min-height: 126px;
}
.capacity span {
  color: var(--muted);
}
.list-label {
  font-size: 0.73rem;
  font-weight: 700;
  margin-top: 24px;
}
.price-card .check-list {
  font-size: 0.75rem;
  margin-top: 16px;
}
.pricing-footnote {
  max-width: 800px;
  margin: 30px auto 0;
  text-align: center;
  font-size: 0.74rem;
  color: var(--muted);
  line-height: 1.9;
}
.pricing-footnote a {
  text-decoration: underline;
  text-underline-offset: 3px;
  color: var(--green);
  font-weight: 700;
}
.downloads {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 90px;
  align-items: center;
}
.mobile-showcase {
  position: relative;
  display: grid;
  place-items: center;
  min-width: 0;
  padding: 20px 0 35px;
  perspective: 1200px;
}
.phone-orbit {
  position: absolute;
  z-index: -1;
  width: 100%;
  max-width: 420px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--soft);
  border: 18px solid var(--cream);
}
.phone-frame {
  position: relative;
  width: 230px;
  border: 7px solid var(--ink);
  border-radius: 32px;
  overflow: hidden;
  background: var(--surface);
  transform: rotateY(10deg) rotateZ(-4deg);
  box-shadow:
    10px 5px 0 -3px #809889,
    20px 25px 30px #14372320;
}
.phone-frame img {
  width: 100%;
  height: auto;
  aspect-ratio: 390/844;
  object-fit: cover;
  object-position: top;
}
.phone-speaker {
  position: absolute;
  z-index: 1;
  top: 5px;
  left: 38%;
  width: 24%;
  height: 9px;
  border-radius: 8px;
  background: var(--ink);
}
.mobile-caption {
  position: absolute;
  bottom: 26px;
  right: 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
  padding: 15px 18px;
  font-size: 0.75rem;
  font-weight: 700;
  box-shadow: 0 10px 25px #19482013;
  transform: rotate(2deg);
}
.mobile-caption svg {
  width: 18px;
  height: 18px;
  color: var(--green);
  margin-right: 8px;
}
.download-copy > p:not(.eyebrow) {
  color: var(--muted);
  margin-top: 20px;
  max-width: 530px;
  font-size: 0.95rem;
}
.download-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}
.download-copy > p.download-help {
  font-size: 0.68rem;
  margin-top: 12px;
}
.platform-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  margin-top: 24px;
  font-size: 0.72rem;
  color: var(--muted);
}
.platform-notes span {
  display: flex;
  gap: 8px;
  align-items: center;
}
.platform-notes svg {
  width: 17px;
  height: 17px;
  color: var(--green);
}
.store-note {
  border-top: 1px solid var(--line);
  margin-top: 28px;
  padding-top: 22px;
  font-size: 0.75rem;
  max-width: 540px;
}
.store-note p {
  color: var(--muted);
  margin-top: 6px;
  line-height: 1.8;
}
.store-note a {
  color: var(--green);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.about-section {
  background: var(--forest);
  color: var(--surface);
  position: relative;
  overflow: hidden;
  padding-block: 84px;
}
.about-section:before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: url('/website/assets/farmyo-pattern.png') repeat;
  background-size: 460px auto;
  opacity: 0.035;
}
.about-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: 90px;
  align-items: center;
}
.about-copy,
.about-art {
  min-width: 0;
  overflow-wrap: anywhere;
}
.eyebrow.light {
  color: var(--lime);
}
.about-copy > p:not(.eyebrow) {
  color: var(--on-forest);
  font-size: 0.9rem;
  line-height: 1.9;
  margin-top: 22px;
  max-width: 535px;
}
.light-link {
  color: var(--lime);
  margin-top: 22px;
}
.about-art {
  border: 1px solid #45604b;
  border-radius: 24px;
  padding: 44px 38px;
  transform: rotate(2deg);
  background: #123b2a;
  box-shadow: 10px 10px 0 -2px #204631;
}
.coregrid-sign {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  font-size: 1.35rem;
  line-height: 1.2;
  letter-spacing: -0.04em;
}
.coregrid-sign strong {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  font-weight: 400;
  margin-top: 9px;
}
.coregrid-icon {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px;
  width: 46px;
  height: 46px;
  transform: rotate(-8deg);
}
.coregrid-icon i {
  background: var(--lime);
  border-radius: 3px;
}
.coregrid-icon i:last-child {
  background: transparent;
  border: 1px solid var(--lime);
}
.about-art > p {
  font-size: 1.8rem;
  margin-top: 46px;
  letter-spacing: -0.04em;
  line-height: 1.45;
  color: var(--on-forest);
}
.about-art > p strong {
  color: var(--lime);
}
.about-location {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 0.73rem;
  margin-top: 36px;
  color: var(--on-forest);
}
.about-location svg {
  width: 18px;
  height: 18px;
}
.faq-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 80px;
}
.faq-section > div > p:not(.eyebrow) {
  margin-top: 22px;
  color: var(--muted);
  font-size: 0.9rem;
}
.faq-list details {
  border-bottom: 1px solid var(--line);
  padding: 6px 0;
}
.faq-list details:first-child {
  border-top: 1px solid var(--line);
}
.faq-list summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  gap: 20px;
  justify-content: space-between;
  align-items: center;
  min-height: 72px;
  padding: 16px 0;
  font-size: 0.86rem;
  font-weight: 700;
}
.faq-list summary::-webkit-details-marker {
  display: none;
}
.faq-list summary svg {
  width: 20px;
  height: 20px;
  color: var(--green);
  transition: transform 0.2s;
}
.faq-list details[open] summary svg {
  transform: rotate(45deg);
}
.faq-list details > p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.85;
  padding-bottom: 20px;
}
.faq-list details > .text-link {
  margin-bottom: 12px;
}
.contact-section {
  padding-block: 82px;
  background: var(--cream);
  border-top: 1px solid var(--line);
}
.contact-heading {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 50px;
}
.contact-heading .eyebrow {
  justify-content: center;
}
.contact-heading > p:not(.eyebrow) {
  max-width: 535px;
  margin: 22px auto 28px;
  color: var(--muted);
  font-size: 0.95rem;
}
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  max-width: 1000px;
  margin: auto;
}
.contact-grid > a,
.contact-location {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
  min-height: 96px;
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
}
.contact-grid > a:hover {
  border-color: var(--green);
  transform: translateY(-2px);
}
.contact-grid a > svg {
  width: 20px;
  height: 20px;
  margin-left: auto;
}
.contact-grid small {
  display: block;
  font-size: 0.59rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 3px;
}
.contact-grid strong {
  display: block;
  font-size: 0.87rem;
  overflow-wrap: anywhere;
}
.contact-grid a > span:nth-child(2),
.contact-location > span:nth-child(2) {
  min-width: 0;
}
.site-footer {
  padding-block: 42px 24px;
}
.footer-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  padding-bottom: 32px;
}
.footer-main nav {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}
.footer-main nav a {
  display: flex;
  align-items: center;
  min-height: 44px;
  font-size: 0.8rem;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  border-top: 1px solid var(--line);
  padding-top: 22px;
  font-size: 0.65rem;
  color: var(--muted);
}
.footer-bottom > div {
  display: flex;
  gap: 22px;
}
.footer-bottom a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}
.footer-bottom svg {
  width: 16px;
  height: 16px;
  margin-left: 8px;
}
.footer-bottom a:hover,
.footer-main nav a:hover {
  color: var(--green);
}
/* Search landing pages share Farm Yo's public-site design system. */
.seo-header {
  position: relative;
  z-index: 2;
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}
.seo-head {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-block: 12px;
}
.seo-nav,
.seo-footer-inner > nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 8px 20px;
}
.seo-nav a:not(.button),
.seo-footer-inner > nav a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  font-size: 0.82rem;
  font-weight: 600;
}
.seo-nav a:not(.button):hover,
.seo-footer-inner > nav a:hover {
  color: var(--green);
}
.seo-breadcrumb {
  padding-block: 17px;
}
.seo-breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-size: 0.76rem;
}
.seo-breadcrumb li + li::before {
  content: '/';
  margin-right: 10px;
  color: #91a193;
}
.seo-breadcrumb a:hover {
  color: var(--green);
  text-decoration: underline;
}
.seo-page {
  background: var(--surface);
}
.seo-hero {
  padding-block: clamp(56px, 8vw, 100px);
  background:
    radial-gradient(ellipse at 88% 12%, rgba(192, 237, 128, 0.3), transparent 36%),
    linear-gradient(135deg, var(--cream), #fff 68%);
}
.seo-hero-inner {
  max-width: 1080px;
}
.seo-hero h1 {
  max-width: 1000px;
  margin-top: 14px;
  font-size: clamp(2.25rem, 5vw, 4.2rem);
  line-height: 1.13;
  letter-spacing: -0.045em;
}
.seo-lede {
  max-width: 820px;
  margin-top: 20px;
  color: var(--muted);
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  line-height: 1.8;
}
.seo-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}
.seo-note {
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.78rem;
}
.seo-product-image {
  max-width: 980px;
  margin: 52px auto 0;
  padding: 10px;
  overflow: hidden;
  border: 1px solid rgba(16, 46, 33, 0.08);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 24px 64px rgba(16, 46, 33, 0.12);
}
.seo-product-image img {
  width: 100%;
  height: auto;
  border-radius: calc(var(--radius) - 8px);
}
.seo-product-image figcaption {
  padding: 10px 12px 4px;
  color: var(--muted);
  font-size: 0.74rem;
}
.seo-section {
  padding-block: clamp(56px, 7vw, 88px);
}
.seo-section-heading {
  max-width: 850px;
  margin-bottom: 34px;
}
.seo-section-heading h2,
.seo-band h2,
.seo-cta h2 {
  margin-top: 10px;
  font-size: clamp(1.8rem, 3.4vw, 2.8rem);
  line-height: 1.22;
  letter-spacing: -0.035em;
}
.seo-section-heading > p:not(.eyebrow) {
  margin-top: 14px;
  color: var(--muted);
  line-height: 1.85;
}
.seo-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.seo-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
  padding: clamp(22px, 3vw, 32px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--cream);
}
.seo-card h3 {
  font-size: 1.15rem;
  line-height: 1.35;
}
.seo-card p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.8;
}
.seo-card .text-link {
  margin-top: auto;
  padding-top: 20px;
  line-height: 1.55;
}
.seo-band {
  padding-block: clamp(48px, 6vw, 72px);
  background: var(--forest);
  color: var(--surface);
}
.seo-band-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
  align-items: center;
  gap: clamp(26px, 6vw, 80px);
}
.seo-band .eyebrow {
  color: var(--lime);
}
.seo-band-inner > p {
  color: var(--on-forest);
  line-height: 1.9;
}
.seo-faq {
  max-width: 940px;
}
.seo-faq-list details {
  border-bottom: 1px solid var(--line);
  padding: 6px 0;
}
.seo-faq-list details:first-child {
  border-top: 1px solid var(--line);
}
.seo-faq-list summary {
  min-height: 56px;
  display: flex;
  align-items: center;
  cursor: pointer;
  font-weight: 700;
}
.seo-faq-list details > p {
  padding: 0 0 18px;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.85;
}
.seo-faq-list details > .text-link {
  margin-bottom: 18px;
}
.seo-cta {
  padding-block: clamp(48px, 6vw, 76px);
  background: var(--soft);
}
.seo-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.seo-cta h2 {
  max-width: 620px;
}
.seo-cta .seo-actions {
  flex: 0 0 auto;
  margin-top: 0;
}
.seo-footer {
  padding-block: 28px;
  border-top: 1px solid var(--line);
  background: var(--surface);
}
.seo-footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.seo-footer-inner > nav {
  gap: 4px 18px;
}
@media (max-width: 900px) {
  .seo-head {
    align-items: flex-start;
    flex-direction: column;
  }
  .seo-nav {
    justify-content: flex-start;
  }
  .seo-cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }
  .seo-cta .seo-actions {
    margin-top: 0;
  }
}
@media (max-width: 680px) {
  .seo-card-grid,
  .seo-band-inner {
    grid-template-columns: 1fr;
  }
  .seo-nav {
    gap: 4px 10px;
  }
  .seo-nav .button {
    min-height: 44px;
  }
  .seo-footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
  .seo-footer-inner > nav {
    justify-content: flex-start;
  }
  .seo-product-image {
    margin-top: 34px;
    padding: 6px;
  }
}
/* Content is visible by default; animation is an optional enhancement. */
.reveal.is-waiting {
  opacity: 0;
  transform: translateY(16px);
}
.reveal {
  transition:
    opacity 0.4s var(--ease),
    transform 0.4s var(--ease);
}
.hero-copy,
.hero-art {
  animation: arrive 0.4s var(--ease) both;
}
.hero-art {
  animation-delay: 0.1s;
}
@keyframes arrive {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (min-width: 1440px) {
  .hero-grid {
    grid-template-columns: 1fr 1.32fr;
    gap: 40px;
  }
  .hero-art {
    margin-right: -20px;
  }
  .hero h1 {
    font-size: 4.35rem;
  }
}
@media (max-width: 1090px) {
  .desktop-nav {
    gap: 20px;
  }
  .hero-grid {
    grid-template-columns: 1fr 1.12fr;
    padding-block: 65px 50px;
    gap: 12px;
  }
  .hero h1 {
    font-size: 3.15rem;
  }
  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }
  .hero-actions .button {
    min-width: 210px;
  }
  .hero-art {
    padding-top: 65px;
  }
  .note-production {
    top: 5%;
  }
  .art-note {
    padding: 10px;
    gap: 8px;
  }
  .note-production strong {
    font-size: 0.68rem;
  }
  .note-production small {
    font-size: 0.59rem;
  }
  .hero-bottom > div {
    gap: 20px;
  }
  .module-panel {
    gap: 30px;
  }
  .connected {
    gap: 40px;
  }
  .price-card {
    padding: 26px 20px;
  }
  .price-card.featured {
    padding: 25px 19px;
  }
  .price strong {
    font-size: 1.9rem;
  }
  .downloads {
    gap: 50px;
  }
  .about-grid {
    gap: 50px;
  }
  .faq-section {
    gap: 50px;
  }
}
@media (max-width: 850px) {
  html {
    scroll-padding-top: 90px;
  }
  .nav-row {
    min-height: 84px;
    gap: 16px;
  }
  .desktop-nav {
    display: none;
  }
  .menu-toggle {
    display: flex;
  }
  .nav-actions {
    gap: 10px;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    padding-top: 55px;
    gap: 28px;
  }
  .hero-copy {
    max-width: 630px;
  }
  .hero h1 {
    font-size: clamp(2.8rem, 7.6vw, 4.2rem);
  }
  .hero h1 br:nth-child(2) {
    display: none;
  }
  .hero h1 span {
    display: block;
  }
  .intro {
    max-width: 560px;
  }
  .hero-actions {
    flex-direction: row;
    align-items: stretch;
  }
  .hero-actions .button {
    min-width: 0;
  }
  .hero-art {
    width: 88%;
    max-width: 650px;
    margin: auto;
    padding-block: 55px 60px;
  }
  .orbit-one {
    width: 75%;
    left: 16%;
  }
  .orbit-two {
    width: 88%;
    left: 10%;
  }
  .hero-bottom {
    flex-wrap: wrap;
    gap: 12px;
  }
  .hero-bottom > p {
    width: 100%;
  }
  .hero-bottom > div {
    gap: 28px;
  }
  .hero-bottom > a {
    margin-left: auto;
  }
  .section {
    padding-block: 72px;
  }
  .section-heading {
    align-items: flex-start;
    gap: 24px;
    flex-direction: column;
    margin-bottom: 32px;
  }
  .section-heading > p {
    max-width: 560px;
  }
  .benefit-grid {
    gap: 20px;
  }
  .benefit {
    padding-right: 0;
  }
  .benefit + .benefit {
    padding-left: 20px;
  }
  .benefit h3 {
    font-size: 1rem;
  }
  .benefit p {
    font-size: 0.8rem;
  }
  .module-section {
    padding-block: 64px;
  }
  .module-section .section-heading {
    align-items: flex-start;
  }
  .module-panel {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .module-copy {
    max-width: 600px;
  }
  .module-copy > p {
    max-width: none;
  }
  .module-copy h3 {
    font-size: 1.85rem;
  }
  .module-visual {
    max-width: 720px;
    width: 100%;
  }
  .module-copy .check-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .connected {
    grid-template-columns: 1fr;
    gap: 38px;
  }
  .connected-intro > p:not(.eyebrow) {
    max-width: 580px;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 560px;
    margin-inline: auto;
  }
  .price-card,
  .price-card.featured {
    padding: 30px;
  }
  .price-card .price {
    margin-top: 20px;
  }
  .price strong {
    font-size: 2.35rem;
  }
  .price .period {
    width: auto;
  }
  .price-scope {
    min-height: 0;
  }
  .plan-description {
    min-height: 0;
  }
  .plan-top {
    margin-bottom: 16px;
  }
  .capacity {
    min-height: 0;
  }
  .pricing-section {
    padding-block: 65px;
  }
  .downloads {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .download-copy {
    grid-row: 1;
    max-width: 640px;
  }
  .mobile-showcase {
    width: 100%;
    max-width: 430px;
    margin: auto;
    padding-top: 30px;
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }
  .about-art {
    max-width: 500px;
    width: 94%;
    margin: auto;
  }
  .about-copy > p:not(.eyebrow) {
    max-width: 640px;
  }
  .faq-section {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .contact-grid {
    gap: 12px;
  }
  .contact-grid > a,
  .contact-location {
    padding: 18px 16px;
    gap: 12px;
  }
  .contact-grid .icon-well {
    width: 40px;
    height: 40px;
    border-radius: 11px;
  }
  .contact-grid strong {
    font-size: 0.78rem;
  }
  .contact-grid a > svg {
    width: 16px;
    height: 16px;
  }
  .footer-main {
    flex-wrap: wrap;
  }
  .footer-bottom {
    flex-wrap: wrap;
    gap: 4px 20px;
  }
  .footer-bottom > p {
    width: 100%;
  }
}
@media (max-width: 540px) {
  .wrap {
    width: calc(100% - 36px);
  }
  .nav-row {
    min-height: 80px;
    gap: 8px;
    flex-wrap: wrap;
    padding-block: 10px;
  }
  .brand {
    gap: 6px;
  }
  .crest {
    width: 33px;
    height: 51px;
  }
  .crest img {
    width: 53px;
  }
  .brand strong {
    font-size: 1.5rem;
  }
  .brand small {
    font-size: 0.47rem;
    margin-top: 1px;
  }
  .nav-actions {
    gap: 6px;
    margin-left: auto;
  }
  .login-link {
    font-size: 0.72rem;
    padding: 8px 11px;
    gap: 5px;
    min-height: 44px;
  }
  .login-link svg {
    display: none;
  }
  .menu-toggle {
    width: 44px;
    min-width: 44px;
  }
  .hero-grid {
    padding-block: 38px 36px;
    gap: 26px;
  }
  .hero h1 {
    font-size: clamp(2.5rem, 10.5vw, 3.45rem);
    letter-spacing: -0.065em;
    margin-bottom: 20px;
  }
  .hero .eyebrow {
    font-size: 0.58rem;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
  }
  .hero .intro {
    font-size: 0.91rem;
    line-height: 1.8;
  }
  .hero-actions {
    gap: 10px;
    margin-top: 24px;
    display: grid;
    grid-template-columns: 1fr;
  }
  .hero-actions .button {
    width: 100%;
    min-height: 52px;
  }
  .hero-notes {
    font-size: 0.67rem;
    margin-top: 18px;
    gap: 10px 16px;
  }
  .hero-art {
    width: 100%;
    padding-block: 44px 50px;
  }
  .desktop-device {
    border-width: 5px;
    border-radius: 12px;
  }
  .device-toolbar {
    min-height: 20px;
    padding-block: 3px;
    font-size: 7px;
  }
  .device-toolbar svg {
    width: 8px;
    height: 8px;
  }
  .device-base {
    height: 9px;
    width: 103%;
    margin-left: -1.5%;
  }
  .note-production {
    padding: 9px;
    top: 0;
    left: 3%;
    border-radius: 10px;
    gap: 8px;
  }
  .note-production .icon-well {
    width: 30px;
    height: 30px;
    border-radius: 8px;
  }
  .note-production strong {
    font-size: 0.58rem;
  }
  .note-production small {
    font-size: 0.49rem;
    display: block;
  }
  .note-mobile {
    bottom: 8%;
    padding: 10px;
    border-radius: 10px;
    right: 0;
    font-size: 0.56rem;
    gap: 7px;
  }
  .note-mobile strong {
    font-size: 0.62rem;
  }
  .note-mobile > svg {
    width: 19px;
    height: 19px;
  }
  .preview-caption {
    font-size: 0.5rem;
    bottom: 0;
  }
  .hero-bottom {
    padding-block: 16px;
  }
  .hero-bottom > p {
    font-size: 0.69rem;
  }
  .hero-bottom > div {
    gap: 18px;
    font-size: 0.72rem;
  }
  .hero-bottom > a {
    width: 44px;
    height: 44px;
    border: 0;
  }
  .hero-bottom > a svg {
    width: 18px;
    height: 18px;
  }
  .section {
    padding-block: 58px;
  }
  h2 {
    font-size: 2rem;
    letter-spacing: -0.05em;
  }
  .eyebrow {
    font-size: 0.63rem;
    margin-bottom: 16px;
  }
  .section-heading {
    gap: 20px;
  }
  .section-heading > p {
    font-size: 0.9rem;
  }
  .benefit-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .benefit,
  .benefit + .benefit {
    padding: 0;
    border: 0;
    display: grid;
    grid-template-columns: 46px 1fr;
    gap: 6px 16px;
  }
  .benefit .icon-well {
    grid-row: 1/3;
    width: 46px;
    height: 46px;
    margin: 0;
  }
  .benefit h3 {
    font-size: 1rem;
    align-self: center;
    margin: 0;
  }
  .benefit p {
    font-size: 0.86rem;
    grid-column: 2;
  }
  .module-section {
    padding-block: 56px;
  }
  .module-copy h3 {
    font-size: 1.65rem;
  }
  .module-copy .check-list {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .module-panel {
    gap: 24px;
  }
  .module-visual {
    border-radius: 10px;
  }
  .mini-toolbar {
    padding: 11px 12px;
    font-size: 0.65rem;
  }
  .module-copy .text-link {
    font-size: 0.78rem;
  }
  .connected-grid {
    gap: 26px;
    grid-template-columns: 1fr 1fr;
  }
  .connected-grid h3 {
    font-size: 0.93rem;
  }
  .connected-grid p {
    font-size: 0.79rem;
  }
  .connected-grid article > svg {
    margin-bottom: 14px;
  }
  .pricing-heading {
    margin-bottom: 42px;
  }
  .pricing-heading > p:not(.eyebrow) {
    font-size: 0.88rem;
  }
  .billing-row {
    gap: 12px;
    flex-direction: column;
  }
  .switch button {
    min-width: 0;
    padding-inline: 14px;
  }
  .saving-note {
    font-size: 0.68rem;
  }
  .price-card,
  .price-card.featured {
    padding: 26px 24px;
  }
  .price strong {
    font-size: clamp(1.25rem, 10vw, 2.15rem);
  }
  .plan-label {
    font-size: 0.6rem;
  }
  .plan-description {
    font-size: 0.86rem;
  }
  .price-scope {
    font-size: 0.72rem;
  }
  .capacity {
    font-size: 0.83rem;
  }
  .price-card .check-list {
    font-size: 0.82rem;
    gap: 13px;
  }
  .pricing-footnote {
    text-align: left;
    font-size: 0.72rem;
  }
  .download-copy > p:not(.eyebrow) {
    font-size: 0.9rem;
  }
  .download-actions {
    display: grid;
    grid-template-columns: 1fr;
  }
  .platform-notes {
    gap: 12px;
    font-size: 0.69rem;
  }
  .mobile-showcase {
    max-width: 350px;
  }
  .phone-frame {
    width: 215px;
  }
  .mobile-caption {
    font-size: 0.69rem;
    right: 4px;
  }
  .about-section {
    padding-block: 58px;
  }
  .about-art {
    padding: 32px 28px;
  }
  .about-art > p {
    font-size: 1.6rem;
    margin-top: 36px;
  }
  .about-location {
    margin-top: 28px;
  }
  .about-copy > p:not(.eyebrow) {
    font-size: 0.88rem;
  }
  .faq-list summary {
    font-size: 0.82rem;
    gap: 15px;
  }
  .faq-list details > p {
    font-size: 0.82rem;
  }
  .contact-section {
    padding-block: 58px;
  }
  .contact-heading > p:not(.eyebrow) {
    font-size: 0.88rem;
  }
  .contact-heading .button {
    font-size: 0.76rem;
    padding-inline: 14px;
    gap: 8px;
    width: 100%;
  }
  .contact-heading .button svg {
    width: 17px;
    height: 17px;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .contact-grid strong {
    font-size: 0.9rem;
  }
  .contact-grid small {
    font-size: 0.57rem;
  }
  .contact-grid > a,
  .contact-location {
    min-height: 88px;
    padding: 18px;
    gap: 14px;
  }
  .contact-grid .icon-well {
    width: 44px;
    height: 44px;
  }
  .footer-main nav {
    width: 100%;
    justify-content: space-between;
    gap: 10px;
  }
  .footer-main nav a {
    font-size: 0.76rem;
  }
  .footer-bottom {
    font-size: 0.62rem;
  }
  .footer-bottom > div {
    gap: 16px;
  }
  .footer-bottom > a {
    margin-left: auto;
  }
  .site-footer .brand strong {
    font-size: 1.85rem;
  }
  .site-footer .brand small {
    font-size: 0.59rem;
  }
  .site-footer .crest {
    width: 45px;
    height: 63px;
  }
  .site-footer .crest img {
    width: 68px;
  }
}
@media (max-width: 359px) {
  .wrap {
    width: calc(100% - 28px);
  }
  .brand strong {
    font-size: 1.3rem;
  }
  .brand small {
    font-size: 0.4rem;
  }
  .crest {
    width: 29px;
  }
  .nav-actions {
    gap: 5px;
  }
  .login-link {
    font-size: 0.69rem;
    padding-inline: 8px;
  }
  .hero h1 {
    font-size: 2.35rem;
  }
  .hero-bottom > div {
    gap: 13px;
  }
  .connected-grid {
    grid-template-columns: 1fr;
  }
  .price-card,
  .price-card.featured {
    padding: 24px 20px;
  }
  .price .period {
    width: 100%;
  }
  .contact-heading .button {
    font-size: 0.71rem;
  }
  .contact-heading .button > svg:last-child {
    display: none;
  }
  .contact-grid strong {
    font-size: 0.81rem;
  }
  .contact-grid > a,
  .contact-location {
    padding: 16px 13px;
  }
  .hero-art .note-production small {
    display: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
  }
  .reveal.is-waiting {
    opacity: 1;
    transform: none;
  }
  .device-stage,
  .hero-art:hover .device-stage {
    transform: none;
  }
  .phone-frame,
  .about-art,
  .art-note,
  .mobile-caption {
    transform: none;
  }
}
@media print {
  .site-header,
  .hero-art,
  .hero-actions,
  .module-visual,
  .mobile-showcase,
  .site-footer,
  .svg-defs {
    display: none;
  }
  .section,
  .pricing-section,
  .module-section,
  .about-section,
  .contact-section {
    padding-block: 24px;
  }
  .pricing-grid {
    display: block;
  }
  .price-card {
    break-inside: avoid;
    margin-bottom: 16px;
  }
  .reveal.is-waiting {
    opacity: 1;
    transform: none;
  }
  .about-section {
    color: var(--ink);
    background: var(--surface);
  }
  .about-copy > p:not(.eyebrow) {
    color: var(--muted);
  }
}
