/* ----- Tokens (matched to the Figma design) ----- */
:root {
  --green-deep: #485c11;
  --green-soft: #dfecc6;
  --green-mid: #8e9c78;
  --gray-line: #e9e9e9;
  --gray-line-strong: #929292;
  --text-muted: #6f6f6f;
  --text-black: #000;
  --bg: #fff;
  --max: 1240px;
  --gutter: 40px;

  --font-display: 'Heebo', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-sans: 'Heebo', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-utility: 'Heebo', -apple-system, BlinkMacSystemFont, sans-serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

body {
  font-family: var(--font-sans);
  color: var(--text-black);
  background: var(--bg);
  line-height: 1.4;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

.page {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 var(--gutter) 20px;
}

/* Section width container */
.brand-nav,
.hero,
.benefits,
.full-image,
.features-carousel,
.specs,
.testimonial,
.how-it-works,
.cta,
.footer {
  width: 100%;
  max-width: var(--max);
}

/* ----- Buttons ----- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 14px 22px;
  border-radius: 1000px;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: -0.35px;
  cursor: pointer;
  transition: transform 0.15s ease, opacity 0.15s ease;
  white-space: nowrap;
}
.btn:hover { opacity: 0.9; }
.btn:active { transform: translateY(1px); }

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

.btn-secondary {
  background: var(--green-soft);
  color: var(--text-black);
  align-self: flex-start;
}

.arrow {
  display: inline-block;
  margin-inline-start: 4px;
  font-size: 12px;
  transform: translateY(-1px);
}

/* ----- Floating sticky nav ----- */
.sticky-nav {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 27px;
  align-items: center;
  padding: 20px 24px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  z-index: 1000;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: -0.35px;
}
.sticky-nav a { transition: opacity 0.15s ease; }
.sticky-nav a:hover { opacity: 0.6; }

/* ----- Brand nav ----- */
.brand-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 168px;
  padding-top: 28px;
  padding-bottom: 80px;
}
.brand {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 30px;
  letter-spacing: -1.5px;
  line-height: 1.2;
}

/* ----- Hero ----- */
.hero {
  display: flex;
  flex-direction: column;
  gap: 240px;
  overflow: clip;
}
.hero h1 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 120px;
  line-height: 0.9;
  letter-spacing: -2px;
  text-align: center;
}
.hero-text {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  align-items: center;
  text-align: center;
}
.hero-text .muted {
  width: 100%;
  text-align: center;
  font-size: 18px;
}
.hero-image-wrap {
  position: relative;
  width: 100%;
  height: 362px;
  background: var(--green-mid);
  border-radius: 30px;
}
.ipad {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 907px;
  max-width: calc(100% - 60px);
  aspect-ratio: 907 / 644;
  background: #000;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-bottom: none;
  border-radius: 24px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}
.ipad-screen {
  position: absolute;
  inset: 16.5px 18.629px 0 18.629px;
  border-radius: 16px;
  overflow: hidden;
}
.ipad-screen img,
.ipad-screen video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ipad-screen .ipad-video-mobile { display: none; }
@media (max-width: 700px) {
  .ipad-screen .ipad-video-desktop { display: none; }
  .ipad-screen .ipad-video-mobile { display: block; }
}
@media (min-width: 1101px) {
  .ipad { aspect-ratio: 907 / 506; }
}

/* ----- Utilities ----- */
.hidden { display: none !important; }

/* ----- Common type ----- */
.eyebrow {
  font-family: var(--font-utility);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 1.5px;
  color: var(--green-deep);
  margin: 0;
}
.display {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 60px;
  line-height: 0.9;
  letter-spacing: -1.8px;
  color: var(--text-black);
  margin: 0;
}
.muted {
  color: var(--text-muted);
  font-size: 15px;
  letter-spacing: -0.075px;
  margin: 0;
}

/* ----- Logo cloud — integrations strip, after Hero ----- */
.logo-cloud {
  width: 100%;
  max-width: var(--max);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  padding: 50px 0;
}
.logo-cloud__eyebrow {
  width: 100%;
  letter-spacing: -0.075px;
}
.logo-cloud__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px 40px;
  width: 100%;
}
.logo-cloud__slot {
  width: 154px;
  height: 84px;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.logo-cloud__slot img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* ----- Benefits ----- */
.benefits {
  padding-bottom: 120px;
}
.section-headline {
  display: flex;
  flex-direction: column;
  gap: 50px;
  padding-block: 80px 60px;
  padding-inline: 0 400px;
  border-top: 0.5px solid var(--gray-line);
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding-top: 40px;
}
.benefit {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  padding-block: 40px;
  padding-inline: 0 20px;
  border-top: 1px solid var(--gray-line);
  min-width: 0;
}
.benefit .icon { width: 24px; height: 24px; }
.benefit .icon img { width: 100%; height: 100%; object-fit: contain; }
.benefit h3 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 18px;
  line-height: 1;
  letter-spacing: -0.54px;
  color: var(--text-black);
}
.benefit p {
  margin: 0;
  color: var(--text-muted);
  font-size: 15px;
  letter-spacing: -0.075px;
}
.benefits-flip {
  color: var(--green-deep);
  font-weight: 700;
}

/* ----- Full-bleed images ----- */
.full-image {
  border-radius: 30px;
  overflow: hidden;
  margin-bottom: 0;
}
.full-image img,
.full-image video {
  width: 100%;
  height: 620px;
  object-fit: cover;
  display: block;
}
.full-image.landscape {
  margin-bottom: 40px;
}
.full-image.landscape img,
.full-image.landscape video {
  height: auto;
  aspect-ratio: 1120 / 620;
  max-height: 830px;
}

/* ----- Features carousel ----- */
.features-carousel {
  display: flex;
  gap: 20px;
  align-items: stretch;
  padding-top: 80px;
  padding-bottom: 120px;
}
@media (min-width: 1101px) {
  .features-carousel .features-text { padding-top: 20px; }
  .features-carousel .features-image {
    flex: 0 1 565px;
    aspect-ratio: 565 / 673;
    align-self: flex-start;
  }
}
.features-text {
  flex: 1;
  min-width: 0;
}
.features-text {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 60px 0 80px;
  border-top: 1px solid var(--gray-line);
}
.features-title {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding-inline-end: 80px;
}
.numbered-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}
.numbered-list li {
  display: flex;
  gap: 30px;
  align-items: flex-start;
  justify-content: center;
  padding-block: 20px;
  padding-inline: 0 80px;
  border-top: 1px solid var(--gray-line);
  font-size: 15px;
  letter-spacing: -0.075px;
}
.numbered-list li .num {
  font-weight: 700;
  color: var(--text-muted);
  white-space: nowrap;
  flex-shrink: 0;
}
.numbered-list li p { margin: 0; flex: 1; }
.features-image {
  flex: 1;
  min-width: 0;
  border-radius: 30px;
  overflow: hidden;
}
.features-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.features-image video {
  height: 100%;
  width: auto;
  max-width: 100%;
  aspect-ratio: 882 / 1920;
  object-fit: cover;
  display: block;
  margin: 0 auto;
  border-radius: 30px;
}

/* ----- Specs ----- */
.specs {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: stretch;
  padding-bottom: 120px;
  overflow: clip;
}
.specs-header {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
  padding: 80px 240px;
  border-top: 1px solid var(--gray-line-strong);
  text-align: center;
}
.specs-header .display { text-align: center; width: 100%; }
.specs-header .muted { text-align: center; width: 100%; }
.specs-table {
  display: flex;
  align-items: stretch;
  border-radius: 20px;
  overflow-x: auto;
  overflow-y: clip;
}
.specs-table .col {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  min-width: 200px;
}
.specs-table .col-area {
  background: #fff;
  border: 1px solid var(--gray-line);
  border-radius: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}
.specs-table .col-third .cell {
  border-inline-start: 0.5px solid var(--gray-line);
}
.specs-table .col-head {
  height: 96px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 40px 30px;
  border-bottom: 1px solid var(--gray-line-strong);
}
.specs-table .brand-cell {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 25.7px;
  letter-spacing: -2.06px;
  line-height: 1.2;
  color: var(--text-black);
}
.specs-table .competitor {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 22.9px;
  letter-spacing: -1.83px;
  line-height: 1.2;
  color: var(--text-muted);
}
.specs-table .col-third .competitor {
  font-family: var(--font-utility);
  font-size: 21.65px;
  letter-spacing: -1.73px;
}
.specs-table .cell {
  display: flex;
  gap: 8px;
  align-items: center;
  padding: 32px 30px;
  border-bottom: 0.5px solid var(--gray-line);
  font-family: var(--font-utility);
  font-size: 12px;
  letter-spacing: -0.12px;
  white-space: nowrap;
}
.specs-table .cell:last-child {
  border-bottom: none;
}
.specs-table .cell img {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

/* ----- Testimonial ----- */
.testimonial {
  display: flex;
  gap: 20px;
  align-items: stretch;
  padding-bottom: 120px;
  height: 789px;
}
.testimonial-image {
  flex: 1;
  min-width: 0;
  border-radius: 30px;
  overflow: hidden;
}
.testimonial-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.testimonial-quote {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 50px;
  align-items: flex-start;
  justify-content: center;
  padding-inline-start: 50px;
  margin: 0;
  border-top: 1px solid var(--gray-line);
}
.testimonial-quote > p {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 40px;
  line-height: 1;
  letter-spacing: -1.6px;
  color: var(--text-black);
}
.testimonial-quote footer {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}
.quote-name {
  margin: 0;
  font-size: 15px;
  letter-spacing: -0.075px;
  color: var(--text-black);
}
.quote-role {
  margin: 0;
  font-family: var(--font-utility);
  font-size: 12px;
  letter-spacing: -0.12px;
  color: var(--green-deep);
}

/* ----- Manager view (replaces testimonial-quote inner content) ----- */
.testimonial:has(.manager-view) {
  height: auto;
  align-items: stretch;
}
.manager-view {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding-inline-start: 50px;
  padding-top: 30px;
  border-top: 1px solid var(--gray-line);
}
.manager-view-title {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.manager-view-title h2,
.manager-view-title p {
  margin: 0;
}
.manager-view-prelude {
  border-inline-start: 3px solid var(--green-deep);
  background: rgba(72, 92, 17, 0.06);
  border-radius: 8px;
  padding: 14px 18px;
  margin-bottom: 8px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.manager-view-prelude .prelude-eyebrow {
  margin: 0;
  font-family: var(--font-utility);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.2px;
  color: var(--green-deep);
}
.manager-view-prelude p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-black);
}
.manager-view-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}
.manager-view-list li {
  display: flex;
  gap: 30px;
  align-items: flex-start;
  padding-block: 18px;
  border-top: 1px solid var(--gray-line);
  font-size: 15px;
  letter-spacing: -0.075px;
}
.manager-view-list li .num {
  font-weight: 700;
  color: var(--text-muted);
  white-space: nowrap;
  flex-shrink: 0;
}
.manager-view-list li p { margin: 0; flex: 1; }

/* ----- How it works ----- */
.how-it-works {
  display: flex;
  flex-direction: column;
  gap: 80px;
  padding: 80px 0 120px;
  border-top: 1px solid var(--gray-line);
}
.how-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.how-header .display { text-align: center; white-space: nowrap; }
.steps {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  justify-content: center;
}
.step {
  flex: 1;
  min-width: 240px;
  display: flex;
  flex-direction: column;
  gap: 60px;
  align-items: flex-start;
  padding-block: 60px 20px;
  padding-inline: 0 30px;
  border-top: 1px solid var(--gray-line);
}
.step-number {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 80px;
  line-height: 1;
  letter-spacing: -3.2px;
  color: var(--gray-line-strong);
}
.step h3 {
  margin: 0 0 20px;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 18px;
  line-height: 1;
  letter-spacing: -0.54px;
  color: var(--text-black);
}
.step p {
  margin: 0;
  color: var(--text-muted);
  font-size: 15px;
  letter-spacing: -0.075px;
}

/* ----- CTA ----- */
.cta {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
  padding: 120px 300px;
  border-top: 0.5px solid var(--gray-line);
  text-align: center;
}
.cta .display { text-align: center; width: 100%; }
.cta .muted { text-align: center; width: 100%; }
.cta-btn {
  width: 100%;
  justify-content: center;
}

/* ----- Footer ----- */
.footer {
  display: flex;
  flex-direction: column;
  gap: 80px;
  align-items: stretch;
  padding: 40px 0 20px;
  border-top: 1px solid var(--gray-line);
}
.footer-links {
  display: flex;
  gap: 27px;
  align-items: center;
  height: 40px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: -0.35px;
}
.footer-links a:hover { opacity: 0.6; }
.footer-credits {
  display: flex;
  gap: 40px;
  align-items: flex-end;
}
.footer-logo {
  height: 32px;
  width: auto;
  flex-shrink: 0;
}
.footer-brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
  color: var(--green-deep);
  letter-spacing: -0.5px;
  flex-shrink: 0;
}
.brand img             { height: 68px; width: auto; display: block; }
.mobile-menu-brand img { height: 58px; width: auto; display: block; }
.mobile-nav-brand img  { height: 52px; width: auto; display: block; }
.footer-brand img      { height: 52px; width: auto; display: block; }
.footer-meta {
  display: flex;
  gap: 16px;
  align-items: center;
  flex: 1;
  font-family: var(--font-utility);
  font-size: 12px;
  letter-spacing: -0.12px;
  color: var(--green-deep);
}
.footer-rights {
  font-family: var(--font-utility);
  font-size: 12px;
  letter-spacing: -0.12px;
  color: var(--green-deep);
  white-space: nowrap;
}

/* ----- Responsive ----- */
@media (max-width: 1100px) {
  .hero h1 { font-size: 90px; letter-spacing: -4px; }
  .hero { gap: 140px; }
  .display { font-size: 48px; letter-spacing: -1.4px; }
  .section-headline { padding-inline-end: 0; }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .features-carousel { flex-direction: column; }
  .features-image { aspect-ratio: 4 / 3; }
  .testimonial { flex-direction: column; height: auto; }
  .testimonial-image { aspect-ratio: 4 / 3; display: none; }
  .testimonial-quote { padding-inline-start: 0; padding-top: 30px; }
  .testimonial-quote > p { font-size: 28px; letter-spacing: -1px; }
  .manager-view { padding-inline-start: 0; padding-top: 30px; }
  .specs-header { padding: 80px 0; }
  .cta { padding: 80px 0; }
  .how-header { flex-direction: column; gap: 24px; align-items: flex-start; }
  .how-header .display { white-space: normal; }
}

@media (max-width: 700px) {
  html { scroll-padding-top: 80px; }
  .page { padding: 104px 16px 20px; }
  .sticky-nav { gap: 14px; padding: 14px 18px; font-size: 12px; }
  .hero h1 { font-size: 56px; letter-spacing: -2px; }
  .hero { gap: 120px; overflow: visible; }
  .hero-text { gap: 16px; }
  .hero-image-wrap { height: 492px; }
  .logo-cloud { padding: 50px 16px; }
  .logo-cloud__slot { width: 150px; height: 81.818px; }
  .display { font-size: 36px; letter-spacing: -1px; }
  .ipad {
    width: 270px;
    height: 541.824px;
    aspect-ratio: auto;
    max-width: calc(100% - 32px);
    border: 1px solid #929292;
    border-bottom: 1px solid #929292;
    border-radius: 34.662px;
    top: calc(50% - 24.912px);
    box-shadow: 0 -2.342px 11.709px rgba(0, 0, 0, 0.1);
  }
  .ipad-screen {
    inset: 9.03px 9.95px 9.95px 9.95px;
    border-radius: 27.365px;
  }
  .benefits-grid { grid-template-columns: 1fr; }
  .full-image img,
  .full-image video,
  .full-image.landscape img,
  .full-image.landscape video {
    height: auto;
    aspect-ratio: 343 / 600;
  }
  .full-image.landscape video {
    width: 100%;
    aspect-ratio: 1766 / 946;
    max-height: none;
    object-fit: contain;
  }
  .testimonial-image { aspect-ratio: 1 / 1; }
  .features-image { aspect-ratio: 1 / 1; }
  .specs-table { flex-direction: column; }
  .specs-table .col { min-width: 0; }
  .specs-table .col-third .cell { border-inline-start: none; }
  .steps { flex-direction: column; }
  .step { padding-block: 20px 16px; gap: 40px; }
  .benefits { padding-bottom: 100px; }
  .features-carousel { padding-bottom: 80px; }
  .testimonial { padding-bottom: 100px; }
  .how-it-works { padding-bottom: 100px; }
  .footer-credits { flex-wrap: wrap; gap: 20px; }
}
/* ========== MOBILE NAVIGATION ========== */

/* Top bar - hidden by default, shown only on mobile */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 72px;
  background: #fff;
  padding: 0 20px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--gray-line);
  z-index: 1100;
}

.mobile-nav-brand {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--text-black);
  text-decoration: none;
}

.mobile-nav-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
}

.hamburger-line {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-black);
  border-radius: 2px;
}

/* Fullscreen overlay menu - hidden by default */
/* Mobile Menu — Full dropdown (matches Figma exactly) */
.mobile-menu {
  display: none;
  position: fixed;
  inset-block-start: 0;
  inset-inline: 0;
  background: #fff;
  border-radius: 0 0 20px 20px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  z-index: 1200;
  flex-direction: column;
  max-height: 100vh;
  overflow-y: auto;
}

.mobile-menu.is-open {
  display: flex;
}

.mobile-menu-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 20px 20px 58px 20px;
}

.mobile-menu-brand {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 30px;
  line-height: 1.2;
  letter-spacing: -2.4px;
  color: var(--text-black);
}

.mobile-menu-close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  width: 24px;
  height: 24px;
  font-size: 28px;
  line-height: 1;
  color: var(--text-black);
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu-close:hover,
.mobile-menu-close:focus-visible {
  opacity: 0.7;
}

.mobile-menu a:not(.mobile-menu-cta) {
  display: block;
  padding: 30px 20px;
  color: var(--text-black);
  text-decoration: none;
  font-family: var(--font-utility);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -0.35px;
  text-align: start;
  border-block-start: 1px solid var(--gray-line);
}

.mobile-menu a:not(.mobile-menu-cta):hover,
.mobile-menu a:not(.mobile-menu-cta):focus-visible {
  background: rgba(233, 233, 233, 0.5);
}

.mobile-menu .mobile-menu-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  margin: 50px 20px 32px;
  padding: 14px 22px;
  background: var(--green-deep);
  color: #fff;
  border-radius: 1000px;
  font-family: var(--font-utility);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -0.35px;
  text-align: center;
  text-decoration: none;
  border: none;
}

.mobile-menu .mobile-menu-cta:hover,
.mobile-menu .mobile-menu-cta:focus-visible {
  background: #3a4a0d;
}

/* Show mobile-nav, hide desktop nav on mobile */
@media (max-width: 700px) {
  .mobile-nav { display: flex; }
  .sticky-nav { display: none; }
  .brand-nav { display: none; }

  /* Add space at top for the fixed mobile-nav */
  body { padding-top: 64px; }
}

/* ========== ACCESSIBILITY ========== */

/* Skip link - hidden until focused */
.skip-link {
  position: absolute;
  top: -40px;
  right: 0;
  background: var(--green-deep);
  color: #fff;
  padding: 8px 16px;
  z-index: 9999;
  text-decoration: none;
  font-weight: 700;
  transition: top 0.2s;
}

.skip-link:focus {
  top: 0;
  outline: 2px solid #fff;
  outline-offset: 2px;
}

/* Focus indicators - visible only for keyboard users */
*:focus {
  outline: none;
}

*:focus-visible {
  outline: 2px solid var(--green-deep);
  outline-offset: 2px;
  border-radius: 4px;
}

/* Stronger focus on dark backgrounds */
.mobile-menu .mobile-menu-cta:focus-visible {
  outline-color: #fff;
}

/* Respect user motion preferences */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
