:root {
  color-scheme: light;
  --paper: #f4f7f3;
  --paper-strong: #ffffff;
  --ink: #0a1710;
  --muted: #56665d;
  --soft: #8a978f;
  --forest: #0b452f;
  --forest-deep: #062c20;
  --leaf: #238447;
  --mint: #dff4e5;
  --line: #dbe4dd;
  --warm: #d2a84b;
  --shadow: 0 24px 70px rgba(11, 37, 25, 0.14);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--ink);
  letter-spacing: 0;
  background: var(--paper);
}

body,
button,
a {
  -webkit-font-smoothing: antialiased;
}

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

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

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

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 22px 0;
  color: white;
}

.site-header.legal-header {
  position: relative;
  color: var(--ink);
}

.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 19px;
  font-weight: 800;
}

.brand-icon {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.legal-header .brand-icon {
  border-color: var(--line);
  box-shadow: none;
}

.header-nav,
.footer-nav,
.language-switch,
.hero-actions,
.feature-facts,
.legal-links {
  display: flex;
  align-items: center;
}

.header-nav {
  gap: 18px;
}

.header-link {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  font-weight: 700;
}

.header-link:hover,
.header-link:focus-visible {
  color: white;
}

.legal-header .header-link {
  color: var(--muted);
}

.legal-header .header-link:hover,
.legal-header .header-link:focus-visible {
  color: var(--ink);
}

.language-switch {
  gap: 4px;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  background: rgba(3, 20, 13, 0.34);
  backdrop-filter: blur(18px);
}

.legal-header .language-switch {
  border-color: var(--line);
  background: var(--paper-strong);
}

.language-switch a {
  min-width: 42px;
  padding: 8px 10px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 850;
  text-align: center;
}

.legal-header .language-switch a {
  color: var(--muted);
}

.language-switch a.active {
  color: var(--forest-deep);
  background: white;
}

.legal-header .language-switch a.active {
  color: white;
  background: var(--forest);
}

.hero {
  position: relative;
  height: 88svh;
  min-height: 590px;
  max-height: 840px;
  overflow: hidden;
  color: white;
  background-color: var(--forest-deep);
  background-image: url("assets/hero-leaves.png");
  background-position: center;
  background-size: cover;
}

.hero::after {
  position: absolute;
  inset: 0;
  content: "";
  background: rgba(3, 24, 16, 0.46);
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 40px));
  height: 100%;
  margin: 0 auto;
}

.hero-copy {
  position: absolute;
  top: 50%;
  left: 0;
  z-index: 3;
  width: min(650px, 58%);
  transform: translateY(-44%);
}

.eyebrow {
  margin: 0 0 15px;
  color: var(--leaf);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #bde8c8;
}

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

h1,
.display-title {
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 92px;
  font-weight: 700;
  line-height: 0.94;
  letter-spacing: 0;
}

.hero-lead {
  max-width: 590px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 24px;
  font-weight: 600;
  line-height: 1.35;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 800;
  transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

.primary-button {
  color: var(--forest-deep);
  background: white;
}

.secondary-button {
  color: white;
  border-color: rgba(255, 255, 255, 0.38);
  background: rgba(5, 31, 21, 0.35);
  backdrop-filter: blur(16px);
}

.primary-button:hover,
.secondary-button:hover,
.primary-button:focus-visible,
.secondary-button:focus-visible {
  transform: translateY(-2px);
}

.hero-note {
  margin: 15px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  font-weight: 650;
}

.hero-device {
  position: absolute;
  right: 1%;
  bottom: -18%;
  width: min(370px, 34vw);
  padding: 9px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 42px;
  background: #09110d;
  box-shadow: 0 38px 90px rgba(0, 0, 0, 0.44);
  transform: rotate(2deg);
}

.hero-device img {
  width: 100%;
  border-radius: 34px;
}

.content-band {
  padding: 112px 0;
}

.content-band.white {
  background: var(--paper-strong);
}

.content-band.dark {
  color: white;
  background: var(--forest-deep);
}

.section-inner {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.intro-band {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 72px;
  align-items: start;
}

.section-label {
  color: var(--leaf);
  font-size: 14px;
  font-weight: 850;
  text-transform: uppercase;
}

.intro-band h2,
.feature-copy h2,
.impact-copy h2,
.download-copy h2,
.support-copy h2,
.legal-page h1 {
  margin-bottom: 22px;
  font-size: 58px;
  line-height: 1.02;
  letter-spacing: 0;
}

.intro-band p,
.feature-copy p,
.impact-copy p,
.download-copy p,
.support-copy p,
.legal-intro {
  color: var(--muted);
  font-size: 21px;
  font-weight: 560;
  line-height: 1.5;
}

.feature-layout,
.impact-layout {
  display: grid;
  grid-template-columns: 0.94fr 1.06fr;
  gap: 88px;
  align-items: center;
}

.feature-layout.reverse {
  grid-template-columns: 1.06fr 0.94fr;
}

.feature-layout.reverse .feature-media {
  order: 2;
}

.feature-layout.reverse .feature-copy {
  order: 1;
}

.app-shot {
  width: min(100%, 480px);
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  box-shadow: var(--shadow);
  background: var(--forest);
}

.white .app-shot {
  border-color: var(--line);
}

.feature-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-bottom: 26px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  color: #bde8c8;
  font-size: 14px;
  font-weight: 850;
}

.white .feature-number {
  border-color: var(--line);
  color: var(--leaf);
}

.feature-facts {
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.fact {
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
  font-weight: 760;
}

.white .fact {
  border-color: var(--line);
  color: var(--muted);
  background: var(--paper);
}

.impact-layout {
  grid-template-columns: 1.08fr 0.92fr;
}

.impact-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 34px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.impact-list div {
  min-height: 132px;
  padding: 26px 18px 24px 0;
}

.impact-list div + div {
  padding-left: 18px;
  border-left: 1px solid var(--line);
}

.impact-list strong,
.impact-list span {
  display: block;
}

.impact-list strong {
  margin-bottom: 6px;
  font-size: 22px;
}

.impact-list span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.4;
}

.honesty {
  margin-top: 28px;
  padding-left: 18px;
  border-left: 3px solid var(--warm);
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.16);
}

.principle {
  min-height: 260px;
  padding: 34px;
  background: var(--forest-deep);
}

.principle span {
  color: #bde8c8;
  font-size: 13px;
  font-weight: 850;
}

.principle h3 {
  margin: 56px 0 12px;
  font-size: 27px;
}

.principle p {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 16px;
  line-height: 1.5;
}

.closing-band {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
}

.availability {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  background: var(--paper-strong);
  font-size: 15px;
  font-weight: 800;
}

.support-strip {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 50px;
  align-items: center;
  padding: 58px 0;
  border-top: 1px solid var(--line);
}

.support-strip .secondary-button {
  color: var(--forest);
  border-color: var(--line);
  background: var(--paper-strong);
  backdrop-filter: none;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 30px 0 42px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

.footer-nav {
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
}

.footer-nav a:hover,
.footer-nav a:focus-visible,
.legal-section a:hover,
.legal-section a:focus-visible {
  color: var(--leaf);
}

.legal-page {
  width: min(860px, calc(100% - 40px));
  margin: 0 auto;
  padding: 80px 0 100px;
}

.legal-page h1 {
  margin-bottom: 24px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 72px;
}

.legal-intro {
  margin-bottom: 56px;
}

.legal-section {
  padding: 36px 0;
  border-top: 1px solid var(--line);
}

.legal-section h2 {
  margin-bottom: 18px;
  font-size: 28px;
}

.legal-section h3 {
  margin: 26px 0 8px;
  font-size: 19px;
}

.legal-section p,
.legal-section li {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.legal-section ul,
.legal-section ol {
  padding-left: 22px;
}

.legal-links {
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.legal-links a {
  padding: 10px 13px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 750;
  background: var(--paper-strong);
}

.legal-note {
  padding: 16px 18px;
  border: 1px solid #e6d7ad;
  border-radius: 8px;
  color: #67562f;
  background: #fff9e8;
}

.legal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin: -34px 0 54px;
  color: var(--soft);
  font-size: 14px;
  font-weight: 700;
}

.legal-section a {
  color: var(--forest);
  font-weight: 750;
  text-decoration: underline;
  text-decoration-color: rgba(35, 132, 71, 0.35);
  text-underline-offset: 3px;
}

.faq-list {
  display: grid;
  gap: 12px;
  margin-top: 38px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper-strong);
}

.faq-list summary {
  padding: 20px 22px;
  cursor: pointer;
  font-size: 17px;
  font-weight: 820;
}

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

.faq-list details p,
.faq-list details ul {
  margin: 0;
  padding: 20px 22px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.faq-list details ul {
  padding-left: 42px;
}

.contact-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  margin-top: 48px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper-strong);
}

.contact-panel h2,
.contact-panel p {
  margin-bottom: 0;
}

.contact-panel p {
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.5;
}

.contact-panel .primary-button {
  color: white;
  background: var(--forest);
}

/* Home page */
.home-page {
  overflow: hidden;
  background: #f7f8f5;
}

.home-hero {
  position: relative;
  height: 82svh;
  min-height: 620px;
  max-height: 860px;
  color: white;
  background-color: #062c20;
  background-image: url("assets/hero-leaves.png");
  background-position: center;
  background-size: cover;
}

.home-hero::after {
  position: absolute;
  inset: 0;
  content: "";
  background: rgba(2, 20, 13, 0.54);
}

.home-hero-inner,
.story-inner {
  width: min(1160px, calc(100% - 48px));
  margin: 0 auto;
}

.home-hero-inner {
  position: relative;
  z-index: 1;
  height: 100%;
}

.home-hero-copy {
  position: absolute;
  bottom: 12%;
  left: 0;
  width: min(760px, 78%);
}

.home-hero-copy h1 {
  margin-bottom: 20px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(78px, 10vw, 142px);
  line-height: 0.84;
}

.home-hero-copy > p {
  max-width: 700px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 25px;
  font-weight: 600;
  line-height: 1.38;
}

.home-statement {
  padding: 126px 0 132px;
  background: #f7f8f5;
}

.statement-grid {
  display: grid;
  grid-template-columns: 0.42fr 1.15fr 0.72fr;
  gap: 58px;
  align-items: start;
}

.story-kicker {
  margin: 0;
  color: #238447;
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

.statement-grid h2,
.story-copy h2,
.launch-inner h2 {
  margin: 0;
  font-size: clamp(44px, 5vw, 70px);
  line-height: 1.01;
}

.statement-copy,
.story-copy > p:not(.story-kicker),
.launch-inner p:not(.story-kicker) {
  color: #56665d;
  font-size: 19px;
  font-weight: 560;
  line-height: 1.58;
}

.product-story {
  min-height: 830px;
  padding: 110px 0;
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.76fr);
  gap: 110px;
  align-items: center;
}

.story-grid-reverse {
  grid-template-columns: minmax(320px, 0.76fr) minmax(0, 1fr);
}

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

.story-copy .story-kicker {
  margin-bottom: 26px;
}

.story-copy h2 {
  margin-bottom: 28px;
}

.story-chat {
  color: white;
  background: #082f24;
}

.story-chat .story-kicker {
  color: #9bd8a9;
}

.story-chat .story-copy > p:not(.story-kicker) {
  color: rgba(255, 255, 255, 0.7);
}

.story-smart {
  background: #e9eeea;
}

.story-impact {
  background: #f5f1eb;
}

.story-list {
  display: grid;
  gap: 13px;
  margin: 34px 0 0;
  padding: 28px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  list-style: none;
}

.story-list li {
  position: relative;
  padding-left: 25px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 16px;
  font-weight: 720;
}

.story-list li::before {
  position: absolute;
  top: 0.62em;
  left: 1px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  content: "";
  background: #8bd29b;
  transform: translateY(-50%);
}

.screen-view {
  width: min(100%, 420px);
  margin: 0 auto;
}

.screen-view img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 28px 68px rgba(4, 27, 17, 0.2);
}

.story-chat .screen-view img {
  box-shadow: 0 32px 76px rgba(0, 0, 0, 0.3);
}

.route-line {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 16px;
  align-items: center;
  margin-top: 38px;
  padding-top: 24px;
  border-top: 1px solid #cbd5ce;
  color: #56665d;
  font-size: 14px;
  font-weight: 750;
}

.route-line i {
  height: 1px;
  background: #aebbb2;
}

.route-line strong {
  color: #0b452f;
}

.impact-definitions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 40px 0 0;
  border-top: 1px solid #d7d0c7;
  border-bottom: 1px solid #d7d0c7;
}

.impact-definitions div {
  padding: 21px 14px 22px 0;
}

.impact-definitions div + div {
  padding-left: 18px;
  border-left: 1px solid #d7d0c7;
}

.impact-definitions dt {
  color: #0b1710;
  font-size: 18px;
  font-weight: 820;
}

.impact-definitions dd {
  margin: 5px 0 0;
  color: #6d786f;
  font-size: 13px;
  font-weight: 700;
}

.principle-band {
  color: white;
  background: #101512;
}

.principle-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.principle-row p {
  min-height: 180px;
  margin: 0;
  padding: 56px 42px 50px 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 21px;
  font-weight: 680;
  line-height: 1.4;
}

.principle-row p + p {
  padding-left: 42px;
  border-left: 1px solid rgba(255, 255, 255, 0.13);
}

.launch-section {
  padding: 120px 0;
  background: white;
}

.launch-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 80px;
  align-items: end;
}

.launch-inner .story-kicker {
  margin-bottom: 22px;
}

.launch-inner h2 {
  margin-bottom: 22px;
}

.launch-inner p:not(.story-kicker) {
  max-width: 700px;
  margin-bottom: 0;
}

.launch-support {
  display: inline-flex;
  align-items: center;
  min-height: 54px;
  padding: 0 18px;
  border-bottom: 1px solid #0b452f;
  color: #0b452f;
  font-size: 15px;
  font-weight: 820;
}

@media (max-width: 900px) {
  .header-link {
    display: none;
  }

  h1,
  .display-title {
    font-size: 70px;
  }

  .hero-copy {
    top: 46%;
    width: 62%;
  }

  .hero-lead {
    font-size: 20px;
  }

  .hero-device {
    right: -8%;
    width: 360px;
  }

  .intro-band,
  .feature-layout,
  .feature-layout.reverse,
  .impact-layout,
  .closing-band {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .feature-layout.reverse .feature-media,
  .feature-layout.reverse .feature-copy {
    order: initial;
  }

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

  .principle {
    min-height: auto;
  }

  .principle h3 {
    margin-top: 32px;
  }
}

@media (max-width: 640px) {
  .site-header {
    width: min(100% - 28px, 1180px);
    padding-top: 15px;
  }

  .brand {
    font-size: 17px;
  }

  .brand-icon {
    width: 34px;
    height: 34px;
  }

  .hero {
    height: 88svh;
    min-height: 600px;
    max-height: 760px;
    background-position: 61% center;
  }

  .hero-inner,
  .section-inner,
  .site-footer,
  .legal-page {
    width: min(100% - 28px, 1120px);
  }

  .hero-copy {
    top: 33%;
    width: 100%;
    transform: translateY(-42%);
  }

  h1,
  .display-title {
    font-size: 58px;
  }

  .hero-lead {
    max-width: 420px;
    padding-right: 8px;
    font-size: 18px;
  }

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

  .primary-button,
  .secondary-button {
    min-height: 50px;
    padding: 0 17px;
    font-size: 14px;
  }

  .hero-device {
    right: 50%;
    bottom: -43%;
    width: 260px;
    transform: translateX(50%) rotate(1deg);
  }

  .content-band {
    padding: 76px 0;
  }

  .intro-band h2,
  .feature-copy h2,
  .impact-copy h2,
  .download-copy h2,
  .support-copy h2,
  .legal-page h1 {
    font-size: 40px;
  }

  .intro-band p,
  .feature-copy p,
  .impact-copy p,
  .download-copy p,
  .support-copy p,
  .legal-intro {
    font-size: 18px;
  }

  .feature-layout,
  .feature-layout.reverse,
  .impact-layout {
    gap: 38px;
  }

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

  .impact-list div {
    min-height: auto;
    padding: 20px 0;
  }

  .impact-list div + div {
    padding-left: 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .principle {
    padding: 28px 22px;
  }

  .closing-band,
  .support-strip,
  .contact-panel {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .availability,
  .support-strip .secondary-button,
  .contact-panel .primary-button {
    width: 100%;
  }

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

  .footer-nav {
    justify-content: flex-start;
    gap: 14px;
  }

  .legal-page {
    padding-top: 54px;
  }

  .legal-page h1 {
    font-size: 48px;
  }
}

@media (max-width: 900px) {
  .home-hero-copy {
    width: min(680px, 92%);
  }

  .statement-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .statement-copy {
    max-width: 680px;
  }

  .story-grid,
  .story-grid-reverse {
    grid-template-columns: 1fr 0.78fr;
    gap: 54px;
  }

  .launch-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: start;
  }
}

@media (max-width: 680px) {
  .home-hero-inner,
  .story-inner {
    width: min(100% - 28px, 1160px);
  }

  .home-hero {
    height: 78svh;
    min-height: 590px;
    max-height: 760px;
    background-position: 61% center;
  }

  .home-hero-copy {
    bottom: 11%;
    width: 100%;
  }

  .home-hero-copy h1 {
    font-size: 72px;
  }

  .home-hero-copy > p {
    max-width: 480px;
    font-size: 19px;
  }

  .home-statement {
    padding: 82px 0 88px;
  }

  .statement-grid h2,
  .story-copy h2,
  .launch-inner h2 {
    font-size: 42px;
  }

  .statement-copy,
  .story-copy > p:not(.story-kicker),
  .launch-inner p:not(.story-kicker) {
    font-size: 17px;
  }

  .product-story {
    min-height: auto;
    padding: 82px 0;
  }

  .story-grid,
  .story-grid-reverse {
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .story-grid-reverse .story-copy {
    order: -1;
  }

  .screen-view {
    width: min(100%, 350px);
  }

  .impact-definitions {
    grid-template-columns: 1fr;
  }

  .impact-definitions div {
    padding: 16px 0;
  }

  .impact-definitions div + div {
    padding-left: 0;
    border-top: 1px solid #d7d0c7;
    border-left: 0;
  }

  .principle-row {
    grid-template-columns: 1fr;
  }

  .principle-row p {
    min-height: auto;
    padding: 34px 0;
    font-size: 18px;
  }

  .principle-row p + p {
    padding-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.13);
    border-left: 0;
  }

  .launch-section {
    padding: 82px 0;
  }

  .launch-support {
    justify-content: center;
    width: 100%;
    border: 1px solid #cdd8d0;
    border-radius: 8px;
  }
}

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

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

/* Booked-style Verda home page */
.booked-home {
  color-scheme: dark;
  --home-bg: #07100c;
  --home-panel: rgba(255, 255, 255, 0.075);
  --home-panel-strong: rgba(255, 255, 255, 0.12);
  --home-line: rgba(224, 244, 232, 0.14);
  --home-text: #f4f8f5;
  --home-muted: rgba(226, 239, 231, 0.68);
  --home-soft: rgba(226, 239, 231, 0.44);
  --home-green: #58c97a;
  --home-green-deep: #176b3b;
  min-width: 320px;
  color: var(--home-text);
  background:
    radial-gradient(circle at 76% 10%, rgba(45, 145, 82, 0.18), transparent 30%),
    radial-gradient(circle at 12% 76%, rgba(127, 197, 148, 0.08), transparent 26%),
    linear-gradient(180deg, #16251d 0%, #0b1510 42%, var(--home-bg) 100%);
}

.booked-home .site-header {
  position: relative;
  inset: auto;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 18px 0;
  color: var(--home-text);
  background: transparent;
  backdrop-filter: none;
}

.booked-home .brand {
  gap: 10px;
  font-size: 18px;
  font-weight: 850;
}

.booked-home .brand-icon {
  width: 38px;
  height: 38px;
  border: 1px solid var(--home-line);
  border-radius: 11px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.36);
}

.booked-home .language-switch {
  gap: 6px;
  padding: 5px;
  border: 1px solid var(--home-line);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.booked-home .language-switch a {
  min-width: 44px;
  padding: 9px 13px;
  color: var(--home-muted);
  font-size: 14px;
  font-weight: 900;
}

.booked-home .language-switch a:hover,
.booked-home .language-switch a.active {
  color: var(--home-text);
  background: rgba(255, 255, 255, 0.14);
}

.booked-home .hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(320px, 0.74fr);
  gap: 44px;
  align-items: center;
  width: min(1180px, calc(100% - 32px));
  height: auto;
  min-height: calc(100vh - 78px);
  max-height: none;
  margin: 0 auto;
  padding: 62px 0 88px;
  overflow: visible;
  color: var(--home-text);
  background: none;
}

.booked-home .hero::after {
  display: none;
}

.booked-home .hero-copy {
  position: static;
  z-index: auto;
  min-width: 0;
  width: auto;
  max-width: 760px;
  transform: none;
}

.booked-home .eyebrow,
.booked-home .hero .eyebrow {
  margin: 0 0 14px;
  color: var(--home-green);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

.booked-home h1 {
  width: 100%;
  max-width: 800px;
  margin-bottom: 24px;
  color: var(--home-text);
  font-size: clamp(58px, 7.8vw, 104px);
  line-height: 0.94;
  font-weight: 920;
}

.booked-home h2 {
  margin-bottom: 18px;
  color: var(--home-text);
  font-size: clamp(40px, 6vw, 76px);
  line-height: 0.98;
  font-weight: 900;
}

.booked-home h3 {
  margin-bottom: 12px;
  color: var(--home-text);
  font-size: 28px;
  line-height: 1.05;
}

.booked-home .hero-text,
.booked-home .intro > p:last-child,
.booked-home .download > div > p:last-child {
  color: var(--home-muted);
  font-size: clamp(20px, 2.6vw, 30px);
  line-height: 1.25;
  font-weight: 620;
}

.booked-home .hero-actions {
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.booked-home .store-button,
.booked-home .button-secondary {
  min-height: 58px;
  border: 1px solid var(--home-line);
  border-radius: 18px;
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.32);
}

.booked-home .store-button {
  display: inline-grid;
  align-content: center;
  min-width: 192px;
  padding: 9px 22px 11px;
  color: white;
  background: #050706;
}

.booked-home .store-button span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  font-weight: 650;
}

.booked-home .store-button strong {
  display: block;
  font-size: 24px;
  line-height: 1;
}

.booked-home .button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  color: var(--home-text);
  background: rgba(255, 255, 255, 0.1);
  font-weight: 850;
  backdrop-filter: blur(18px);
}

.booked-home .button-secondary:hover,
.booked-home .button-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.16);
}

.booked-home .hero-phone {
  position: relative;
  display: grid;
  align-self: stretch;
  align-items: center;
  justify-items: center;
  padding: 18px 0;
}

.booked-home .hero-phone::before {
  display: none;
}

.booked-home .hero-device-shot {
  position: relative;
  z-index: 1;
  width: min(350px, 82vw);
  margin: 0;
  overflow: hidden;
  border: 5px solid rgba(203, 235, 213, 0.14);
  border-radius: 48px;
  background: #050806;
  box-shadow: 0 44px 110px rgba(0, 0, 0, 0.52), 0 0 0 12px rgba(5, 15, 9, 0.3);
}

.booked-home .hero-device-shot img {
  display: block;
  width: 100%;
  height: auto;
}

.booked-home .phone-shell {
  position: relative;
  width: min(390px, 100%);
  padding: 22px;
  border: 1px solid rgba(224, 244, 232, 0.17);
  border-radius: 48px;
  background: linear-gradient(180deg, #27372e 0%, #111d16 56%, #07100b 100%);
  box-shadow: 0 44px 110px rgba(0, 0, 0, 0.48);
}

.booked-home .phone-top,
.booked-home .screen-card.stats,
.booked-home .screen-card.apps,
.booked-home .download,
.booked-home .site-footer {
  display: flex;
  align-items: center;
}

.booked-home .phone-top {
  justify-content: space-between;
  padding: 5px 10px 26px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 850;
}

.booked-home .phone-top span:last-child {
  width: 54px;
  height: 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
}

.booked-home .screen-card,
.booked-home .feature-card,
.booked-home .download,
.booked-home .steps,
.booked-home .support-teaser {
  border: 1px solid var(--home-line);
  background: var(--home-panel);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.08), 0 26px 80px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(24px);
}

.booked-home .screen-card {
  margin-bottom: 14px;
  padding: 22px;
  border-radius: 30px;
}

.booked-home .screen-card.large {
  min-height: 238px;
}

.booked-home .mode-pill {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  margin-bottom: 24px;
  padding: 0 14px;
  border: 1px solid rgba(94, 210, 126, 0.2);
  border-radius: 999px;
  color: #c8f3d4;
  background: rgba(41, 143, 75, 0.18);
  font-size: 14px;
  font-weight: 850;
}

.booked-home .user-bubble {
  max-width: 88%;
  margin: 0 0 18px auto;
  padding: 13px 16px;
  border-radius: 20px 20px 5px 20px;
  color: white;
  background: var(--home-green-deep);
  font-size: 15px;
  line-height: 1.3;
  font-weight: 720;
}

.booked-home .screen-card p,
.booked-home .screen-card span,
.booked-home .feature-card p,
.booked-home .step-list p {
  color: var(--home-muted);
  line-height: 1.48;
}

.booked-home .screen-card.stats,
.booked-home .screen-card.apps {
  justify-content: space-between;
}

.booked-home .screen-card.stats strong {
  display: block;
  margin-top: 8px;
  color: var(--home-text);
  font-size: 42px;
  line-height: 1;
}

.booked-home .impact-mark {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  color: #bcebc9;
  background: rgba(72, 181, 103, 0.15);
  font-size: 30px;
}

.booked-home .app-icons {
  display: flex;
  gap: 10px;
}

.booked-home .app-icons i {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(190, 235, 204, 0.12);
  border-radius: 11px;
  background: rgba(188, 235, 202, 0.12);
}

.booked-home .section,
.booked-home .feature-grid,
.booked-home .steps,
.booked-home .download,
.booked-home .site-footer {
  width: min(1180px, calc(100% - 32px));
  margin-right: auto;
  margin-left: auto;
}

.booked-home .section {
  padding: 92px 0 34px;
}

.booked-home .intro {
  max-width: 900px;
  margin-left: max(16px, calc((100% - 1180px) / 2));
}

.booked-home .feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding: 26px 0 92px;
}

.booked-home .feature-card {
  overflow: hidden;
  min-height: 390px;
  padding: 26px;
  border-radius: 30px;
}

.booked-home .feature-visual {
  display: grid;
  align-content: center;
  width: 100%;
  height: 168px;
  margin-bottom: 22px;
  padding: 18px;
  border: 1px solid rgba(220, 246, 228, 0.1);
  border-radius: 22px;
  background: rgba(3, 14, 8, 0.42);
}

.booked-home .mini-chat {
  gap: 10px;
}

.booked-home .mini-chat span {
  display: block;
  height: 26px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.12);
}

.booked-home .mini-chat span:nth-child(1) {
  width: 68%;
  margin-left: auto;
  background: rgba(52, 155, 84, 0.62);
}

.booked-home .mini-chat span:nth-child(2) {
  width: 92%;
}

.booked-home .mini-chat span:nth-child(3) {
  width: 72%;
}

.booked-home .mini-route {
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: center;
  color: var(--home-text);
  font-weight: 850;
}

.booked-home .mini-route i {
  height: 2px;
  background: var(--home-green);
}

.booked-home .mini-route strong {
  padding: 10px 12px;
  border-radius: 12px;
  color: #c7f0d2;
  background: rgba(64, 171, 95, 0.15);
}

.booked-home .mini-impact {
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.booked-home .mini-impact div {
  display: grid;
  align-content: center;
  padding: 14px;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.08);
}

.booked-home .mini-impact strong {
  color: var(--home-text);
  font-size: 30px;
}

.booked-home .mini-impact span {
  color: var(--home-muted);
  font-size: 13px;
}

.booked-home .steps {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(320px, 1fr);
  gap: 28px;
  align-items: start;
  padding: 58px 42px;
  border-radius: 38px;
  background: var(--home-panel-strong);
}

.booked-home .step-list {
  display: grid;
  gap: 12px;
}

.booked-home .step-list div {
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
}

.booked-home .step-list span {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 14px;
  border-radius: 50%;
  color: #a6eab8;
  background: rgba(88, 201, 122, 0.12);
  font-size: 13px;
  font-weight: 900;
}

.booked-home .step-list strong {
  display: block;
  margin-bottom: 6px;
  color: var(--home-text);
  font-size: 20px;
}

.booked-home .step-list p {
  margin-bottom: 0;
}

.booked-home .download {
  justify-content: space-between;
  gap: 28px;
  margin-top: 92px;
  margin-bottom: 18px;
  padding: 38px;
  border-radius: 36px;
  background: rgba(35, 119, 61, 0.18);
}

.booked-home .download p {
  max-width: 690px;
}

.booked-home .large-store {
  flex: 0 0 auto;
  min-width: 224px;
  min-height: 72px;
}

.booked-home .support-teaser {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 82px;
  padding: 32px 38px;
  border-radius: 32px;
}

.booked-home .support-teaser p:last-child {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--home-muted);
  font-size: 20px;
  line-height: 1.42;
}

.booked-home .site-footer {
  position: static;
  justify-content: space-between;
  gap: 18px;
  padding: 32px 0 42px;
  color: var(--home-soft);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: transparent;
}

.booked-home .footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.booked-home .site-footer a {
  padding: 10px 12px;
  border-radius: 999px;
}

.booked-home .site-footer a:hover,
.booked-home .site-footer a:focus-visible {
  color: var(--home-text);
  background: var(--home-panel);
}

@media (max-width: 940px) {
  .booked-home .hero,
  .booked-home .steps {
    grid-template-columns: 1fr;
  }

  .booked-home .hero {
    min-height: auto;
    padding-top: 40px;
  }

  .booked-home .hero-copy {
    max-width: 820px;
  }

  .booked-home .hero-phone {
    margin-top: 24px;
  }

  .booked-home .hero-device-shot {
    width: min(350px, 76vw);
  }

  .booked-home .feature-grid {
    grid-template-columns: 1fr;
  }

  .booked-home .feature-card {
    min-height: 340px;
  }

  .booked-home .download,
  .booked-home .support-teaser {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  .booked-home .site-header,
  .booked-home .hero,
  .booked-home .section,
  .booked-home .feature-grid,
  .booked-home .steps,
  .booked-home .download,
  .booked-home .support-teaser,
  .booked-home .site-footer {
    width: min(100% - 24px, 1180px);
  }

  .booked-home .site-header {
    align-items: center;
    flex-direction: row;
  }

  .booked-home h1 {
    font-size: clamp(48px, 17vw, 78px);
  }

  .booked-home h2 {
    font-size: clamp(36px, 12vw, 58px);
  }

  .booked-home .hero-text,
  .booked-home .intro > p:last-child,
  .booked-home .download > div > p:last-child {
    font-size: 19px;
  }

  .booked-home .hero {
    gap: 26px;
    padding-bottom: 58px;
  }

  .booked-home .phone-shell {
    padding: 16px;
    border-radius: 40px;
  }

  .booked-home .hero-device-shot {
    width: min(330px, 84vw);
    border-width: 4px;
    border-radius: 43px;
  }

  .booked-home .screen-card {
    padding: 18px;
    border-radius: 24px;
  }

  .booked-home .screen-card.large {
    min-height: 218px;
  }

  .booked-home .feature-card {
    min-height: auto;
  }

  .booked-home .steps,
  .booked-home .download,
  .booked-home .support-teaser {
    padding: 26px;
    border-radius: 30px;
  }

  .booked-home .store-button,
  .booked-home .button-secondary {
    width: 100%;
  }

  .booked-home .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .booked-home .footer-nav {
    justify-content: flex-start;
  }
}

/* Dark support and legal pages */
.legal-theme {
  color-scheme: dark;
  --legal-text: #f4f8f5;
  --legal-muted: rgba(226, 239, 231, 0.7);
  --legal-soft: rgba(226, 239, 231, 0.48);
  --legal-line: rgba(224, 244, 232, 0.14);
  --legal-panel: rgba(255, 255, 255, 0.065);
  color: var(--legal-text);
  background:
    radial-gradient(circle at 82% 8%, rgba(45, 145, 82, 0.14), transparent 28%),
    linear-gradient(180deg, #14231b 0%, #0a1510 34%, #07100c 100%);
}

.legal-theme .site-header.legal-header {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 22px 0;
  color: var(--legal-text);
  background: transparent;
}

.legal-theme .brand-icon {
  border-color: var(--legal-line);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.legal-theme .header-link,
.legal-theme .legal-header .header-link {
  color: var(--legal-muted);
}

.legal-theme .header-link:hover,
.legal-theme .header-link:focus-visible {
  color: var(--legal-text);
}

.legal-theme .legal-header .language-switch {
  border-color: var(--legal-line);
  background: rgba(255, 255, 255, 0.07);
}

.legal-theme .legal-header .language-switch a {
  color: var(--legal-muted);
}

.legal-theme .legal-header .language-switch a.active {
  color: var(--legal-text);
  background: rgba(255, 255, 255, 0.14);
}

.legal-theme .legal-page {
  color: var(--legal-text);
}

.legal-theme .eyebrow {
  color: #58c97a;
}

.legal-theme .legal-page h1,
.legal-theme .legal-page h2,
.legal-theme .legal-page h3,
.legal-theme .faq-list summary,
.legal-theme .contact-panel h2 {
  color: var(--legal-text);
}

.legal-theme .legal-intro,
.legal-theme .legal-section p,
.legal-theme .legal-section li,
.legal-theme .faq-list details p,
.legal-theme .faq-list details ul,
.legal-theme .contact-panel p {
  color: var(--legal-muted);
}

.legal-theme .legal-meta {
  color: var(--legal-soft);
}

.legal-theme .legal-note {
  border-color: rgba(221, 185, 95, 0.28);
  color: #ead7a8;
  background: rgba(117, 87, 25, 0.18);
}

.legal-theme .legal-section {
  border-color: var(--legal-line);
}

.legal-theme .legal-section a {
  color: #82dda0;
  text-decoration-color: rgba(130, 221, 160, 0.42);
}

.legal-theme .legal-section a:hover,
.legal-theme .legal-section a:focus-visible,
.legal-theme .footer-nav a:hover,
.legal-theme .footer-nav a:focus-visible {
  color: #a6eab8;
}

.legal-theme .faq-list details,
.legal-theme .contact-panel {
  border-color: var(--legal-line);
  background: var(--legal-panel);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.06), 0 22px 60px rgba(0, 0, 0, 0.2);
}

.legal-theme .faq-list details[open] summary {
  border-color: var(--legal-line);
}

.legal-theme .contact-panel .primary-button {
  color: white;
  background: #237a45;
}

.legal-theme .site-footer {
  color: var(--legal-soft);
  border-color: var(--legal-line);
  background: transparent;
}

.legal-theme .footer-nav a {
  color: var(--legal-muted);
}
