:root {
  --paper: #f8f6ef;
  --paper-deep: #f0ede3;
  --surface: #fffdf8;
  --ink: #17382f;
  --text: #334d45;
  --muted: #64736e;
  --line: #d9d7ce;
  --line-strong: #b9c0b9;
  --green: #1f5c4a;
  --green-dark: #174638;
  --green-soft: #e7f0eb;
  --sage: #96ab9f;
  --ochre: #a56b24;
  --ochre-soft: #f5ead8;
  --blue-soft: #e9f0f2;
  --focus: #d98319;
  --max: 75rem;
  --shadow: 0 1.5rem 4rem rgba(25, 56, 47, 0.09);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 5.5rem;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--paper);
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN", "Yu Gothic", "YuGothic", "Noto Sans JP", sans-serif;
  font-size: 1rem;
  line-height: 1.8;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  z-index: -1;
  inset: 0;
  background-image: radial-gradient(rgba(31, 92, 74, 0.045) 0.65px, transparent 0.65px);
  background-size: 9px 9px;
  content: "";
  pointer-events: none;
}

a {
  color: inherit;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

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

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

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

h1,
h2,
h3 {
  color: var(--ink);
  line-height: 1.35;
  letter-spacing: -0.025em;
}

h2 {
  margin-bottom: 1.25rem;
  font-size: clamp(2rem, 4.2vw, 3.55rem);
  font-weight: 700;
}

.heading-line {
  display: block;
  white-space: nowrap;
}

h3 {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
}

.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;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.7rem 1rem;
  color: white;
  background: var(--green-dark);
  transform: translateY(-160%);
}

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

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  border-bottom: 1px solid rgba(217, 215, 206, 0.85);
  background: rgba(248, 246, 239, 0.93);
  backdrop-filter: blur(14px);
}

.header-inner,
.section-inner,
.hero-inner,
.status-strip-inner,
.footer-inner,
.footer-bottom {
  width: min(calc(100% - 2rem), var(--max));
  margin-inline: auto;
}

.header-inner {
  position: relative;
  display: flex;
  min-height: 4.75rem;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--ink);
  font-size: 1.34rem;
  font-weight: 750;
  letter-spacing: 0.02em;
  text-decoration: none;
}

.brand-mark {
  width: 2.2rem;
  height: 2.2rem;
  color: var(--green);
  flex: 0 0 auto;
}

.brand-reading {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 1.45rem;
}

.primary-nav a {
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 650;
  text-decoration: none;
}

.primary-nav a:not(.nav-cta):hover {
  color: var(--green);
}

.primary-nav .nav-cta {
  padding: 0.58rem 1rem;
  color: white;
  background: var(--green);
  border: 1px solid var(--green);
}

.primary-nav .nav-cta:hover {
  background: var(--green-dark);
}

.menu-button {
  display: none;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0.65rem;
  border: 1px solid var(--line-strong);
  color: var(--ink);
  background: transparent;
}

.menu-button span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 2px;
  margin: 4px 0;
  background: currentColor;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(4.5rem, 9vw, 8.3rem) 0 clamp(4.75rem, 8vw, 7.25rem);
}

.hero::after {
  position: absolute;
  z-index: -1;
  top: -17rem;
  right: -18rem;
  width: 42rem;
  height: 42rem;
  border: 1px solid rgba(31, 92, 74, 0.09);
  border-radius: 50%;
  box-shadow: 0 0 0 7rem rgba(31, 92, 74, 0.025), 0 0 0 14rem rgba(31, 92, 74, 0.018);
  content: "";
}

.hero-inner {
  display: grid;
  align-items: center;
  gap: clamp(3rem, 6vw, 6.5rem);
  grid-template-columns: minmax(0, 1fr) minmax(23rem, 0.78fr);
}

.eyebrow,
.section-kicker {
  color: var(--green);
  font-size: 0.76rem;
  font-weight: 750;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
  letter-spacing: 0.08em;
}

.eyebrow-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px var(--green-soft);
}

.hero h1 {
  max-width: 11em;
  margin-bottom: 1.5rem;
  font-size: clamp(2.7rem, 5vw, 4rem);
  font-weight: 720;
  letter-spacing: -0.055em;
  line-height: 1.17;
  text-wrap: balance;
}

.hero h1 span {
  display: block;
  white-space: nowrap;
}

.hero-lead {
  max-width: 34rem;
  margin-bottom: 2rem;
  color: var(--text);
  font-size: clamp(1.05rem, 1.7vw, 1.3rem);
  line-height: 1.9;
  text-wrap: balance;
}

h2,
h3,
.account-access p,
.section-heading > p:not(.section-kicker),
.section-intro,
.final-cta-inner > p,
.footer-inner > div > p {
  line-break: strict;
  text-wrap: balance;
  word-break: normal;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.button {
  display: inline-flex;
  min-height: 3.3rem;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.35rem;
  border: 1px solid transparent;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  transition: background-color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: white;
  background: var(--green);
  border-color: var(--green);
}

.button-primary:hover {
  background: var(--green-dark);
}

.button-secondary {
  color: var(--green-dark);
  border-color: var(--line-strong);
  background: rgba(255, 253, 248, 0.35);
}

.button-secondary:hover {
  border-color: var(--green);
  background: var(--surface);
}

.account-access {
  display: grid;
  max-width: 34rem;
  align-items: center;
  gap: 0.9rem;
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  grid-template-columns: auto minmax(0, 1fr);
}

.account-access-icons {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.google-account-icon,
.line-account-icon {
  display: block;
  width: 2.15rem;
  height: 2.15rem;
  flex: 0 0 2.15rem;
}

.google-account-icon {
  object-fit: contain;
}

.line-account-icon {
  object-fit: contain;
}

.account-access p {
  display: grid;
  margin: 0;
  gap: 0.18rem;
}

.account-access strong {
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 720;
  letter-spacing: 0.02em;
}

.account-access p span {
  color: var(--muted);
  font-size: 0.75rem;
  line-height: 1.65;
}

.handover-visual {
  position: relative;
  padding: 1.5rem;
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.handover-visual::before {
  position: absolute;
  z-index: -1;
  inset: 1.25rem -1.25rem -1.25rem 1.25rem;
  border: 1px solid rgba(31, 92, 74, 0.15);
  content: "";
}

.visual-heading,
.next-year,
.feature-title-row,
.integration-name,
.roadmap-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.visual-heading {
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-size: 0.96rem;
  font-weight: 750;
}

.visual-status {
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 700;
}

.visual-records {
  display: grid;
  gap: 0.62rem;
  padding: 1rem 0;
}

.record {
  display: flex;
  min-height: 3.8rem;
  align-items: center;
  gap: 0.85rem;
  padding: 0.7rem 0.85rem;
  border-left: 2px solid var(--sage);
  background: var(--paper);
}

.record-event {
  display: grid;
  grid-template-columns: auto 1fr;
}

.record-event small {
  grid-column: 2;
}

.record-label {
  grid-row: 1 / span 2;
  padding: 0.35rem 0.45rem;
  color: white;
  background: var(--green);
  font-size: 0.64rem;
  font-weight: 700;
}

.record strong,
.record small {
  display: block;
}

.record strong {
  color: var(--ink);
  font-size: 0.82rem;
  line-height: 1.35;
}

.record small {
  margin-top: 0.15rem;
  color: var(--muted);
  font-size: 0.69rem;
  line-height: 1.35;
}

.check {
  display: grid;
  width: 1.55rem;
  height: 1.55rem;
  place-items: center;
  color: white;
  background: var(--green);
  border-radius: 50%;
  font-size: 0.72rem;
  font-weight: 800;
}

.document-icon {
  position: relative;
  width: 1.35rem;
  height: 1.65rem;
  border: 1.5px solid var(--green);
  background: var(--surface);
}

.document-icon::after {
  position: absolute;
  right: -1px;
  bottom: 0.3rem;
  left: 0.27rem;
  height: 1px;
  background: var(--green);
  box-shadow: 0 -0.3rem 0 var(--green);
  content: "";
}

.record-note {
  border-left-color: var(--ochre);
  background: var(--ochre-soft);
}

.quote {
  align-self: flex-start;
  color: var(--ochre);
  font-family: Georgia, serif;
  font-size: 2rem;
  line-height: 1;
}

.visual-bridge {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 0.75rem;
}

.visual-bridge span {
  height: 1px;
  background: var(--line);
}

.visual-bridge p {
  margin: 0;
  color: var(--muted);
  font-size: 0.68rem;
  line-height: 1.45;
  text-align: center;
}

.next-year {
  margin-top: 0.95rem;
  padding: 0.9rem 1rem;
  color: white;
  background: var(--green-dark);
}

.next-year span,
.next-year strong {
  display: block;
}

.next-year span {
  color: #bdd3c8;
  font-size: 0.65rem;
}

.next-year strong {
  margin-top: 0.15rem;
  font-size: 0.78rem;
}

.next-year svg {
  width: 1.75rem;
  flex: 0 0 auto;
}

.status-strip {
  color: white;
  background: var(--green-dark);
}

.status-strip-inner {
  display: grid;
  grid-template-columns: minmax(18rem, 0.75fr) minmax(0, 1fr);
  align-items: center;
  gap: 4rem;
  padding-block: 2rem;
}

.status-title h2 {
  margin: 0.65rem 0 0;
  color: white;
  font-size: 1.35rem;
  letter-spacing: 0;
}

.status-strip-inner > p {
  margin: 0;
  color: #d8e5df;
  font-size: 0.91rem;
  line-height: 1.8;
}

.status-pill {
  display: inline-flex;
  width: max-content;
  align-items: center;
  padding: 0.25rem 0.52rem;
  border: 1px solid transparent;
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.04em;
  line-height: 1.4;
  white-space: nowrap;
}

.status-pill-live {
  color: #1c5d49;
  border-color: #b6d1c3;
  background: #e8f3ed;
}

.status-strip .status-pill-live {
  color: white;
  border-color: rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.1);
}

.status-pill-soon {
  color: #87551c;
  border-color: #dec295;
  background: #f8ecd9;
}

.status-pill-partial {
  color: #426171;
  border-color: #bed0d8;
  background: var(--blue-soft);
}

.status-pill-hypothesis {
  color: #7a4f1d;
  border-color: #cfac79;
  background: var(--ochre-soft);
}

.section {
  padding: clamp(5rem, 9vw, 8.5rem) 0;
}

.section-heading {
  margin-bottom: 3.5rem;
}

.section-heading > p:not(.section-kicker),
.section-intro {
  max-width: 39rem;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.section-kicker {
  margin-bottom: 1rem;
}

.heading-centered {
  max-width: 47rem;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.heading-centered > p:not(.section-kicker) {
  margin-inline: auto;
}

.heading-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.63fr);
  align-items: end;
  gap: 4rem;
}

.heading-split h2 {
  margin-bottom: 0;
}

.audience-section {
  background: var(--surface);
}

.audience-matrix {
  display: grid;
  border-top: 1px solid var(--line-strong);
  border-right: 1px solid var(--line-strong);
  grid-template-columns: repeat(3, 1fr);
}

.audience-group {
  min-height: 10rem;
  padding: clamp(1.5rem, 3vw, 2.4rem);
  border-bottom: 1px solid var(--line-strong);
  border-left: 1px solid var(--line-strong);
  background: var(--paper);
}

.audience-group span {
  display: block;
  margin-bottom: 1rem;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.audience-group strong {
  color: var(--ink);
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  line-height: 1.7;
}

.problems-section {
  background: var(--paper-deep);
}

.problems-layout {
  display: grid;
  align-items: start;
  gap: clamp(3rem, 9vw, 8rem);
  grid-template-columns: 0.72fr 1fr;
}

.sticky-heading {
  position: sticky;
  top: 8rem;
  margin-bottom: 0;
}

.problem-list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.problem-list li {
  display: grid;
  padding: 1.8rem 0;
  border-top: 1px solid var(--line-strong);
  gap: 1.25rem;
  grid-template-columns: 2rem 1fr;
}

.problem-list li:last-child {
  border-bottom: 1px solid var(--line-strong);
}

.problem-number {
  color: var(--green);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.76rem;
  font-weight: 700;
}

.problem-list h3 {
  margin-bottom: 0.4rem;
}

.problem-list p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.features-section {
  background: var(--surface);
}

.feature-groups {
  border-top: 1px solid var(--line-strong);
}

.feature-group {
  display: grid;
  padding: 2.2rem 0;
  border-bottom: 1px solid var(--line-strong);
  gap: 2rem;
  grid-template-columns: 4.5rem 1fr;
}

.feature-index {
  color: var(--sage);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 1.1rem;
}

.feature-title-row {
  margin-bottom: 0.7rem;
}

.feature-title-row h3 {
  margin: 0;
  font-size: 1.55rem;
}

.feature-content > p {
  max-width: 50rem;
  margin-bottom: 1rem;
  color: var(--muted);
}

.inline-features {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
  gap: 0.5rem 1.1rem;
  list-style: none;
}

.inline-features li {
  position: relative;
  padding-left: 0.85rem;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 650;
}

.inline-features li::before {
  position: absolute;
  top: 0.66rem;
  left: 0;
  width: 0.3rem;
  height: 0.3rem;
  background: var(--green);
  border-radius: 50%;
  content: "";
}

.status-definition {
  max-width: 52rem;
  margin: 1.5rem 0 0 auto;
  color: var(--muted);
  font-size: 0.78rem;
  text-align: right;
}

.product-preview-section {
  overflow: hidden;
  background: var(--paper-deep);
}

.product-preview-heading {
  margin-bottom: 3rem;
}

.product-shots {
  display: grid;
  align-items: start;
  gap: 2rem;
  grid-template-columns: 1fr 1fr;
}

.product-shot {
  margin: 0;
  border: 1px solid var(--line-strong);
  background: var(--surface);
  box-shadow: 0 1rem 3rem rgba(25, 56, 47, 0.08);
}

.shot-window {
  display: flex;
  min-height: 2.5rem;
  align-items: center;
  padding: 0.7rem 0.9rem;
  border-bottom: 1px solid var(--line);
  gap: 0.35rem;
}

.shot-window span {
  width: 0.48rem;
  height: 0.48rem;
  background: var(--line-strong);
  border-radius: 50%;
}

.shot-window span:first-child {
  background: #b77a50;
}

.product-shot > img {
  display: block;
  width: 100%;
  height: auto;
  border-bottom: 1px solid var(--line);
}

.product-shot figcaption {
  display: grid;
  padding: 1.25rem 1.4rem 1.4rem;
  gap: 0.8rem;
  grid-template-columns: 1.7rem 1fr;
}

.product-shot figcaption > span {
  color: var(--green);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.7rem;
  font-weight: 700;
}

.product-shot figcaption strong {
  color: var(--ink);
  font-size: 1rem;
}

.product-shot figcaption p {
  margin: 0.25rem 0 0;
  color: var(--muted);
  font-size: 0.8rem;
}

.product-data-note {
  margin: 1.15rem 0 0;
  color: var(--muted);
  font-size: 0.75rem;
  text-align: right;
}

.handover-section {
  color: #dce8e3;
  background: var(--green-dark);
}

.handover-layout {
  display: grid;
  align-items: center;
  gap: clamp(3rem, 9vw, 8rem);
  grid-template-columns: 0.9fr 1fr;
}

.handover-section h2,
.handover-section h3 {
  color: white;
}

.handover-section .section-kicker {
  color: #9fc4b3;
}

.handover-section .section-intro {
  color: #c8d9d1;
}

.handover-status {
  display: grid;
  margin-top: 2.2rem;
  gap: 1.3rem;
}

.handover-status > div {
  padding-left: 1rem;
  border-left: 1px solid #608277;
}

.handover-status p {
  margin: 0.6rem 0 0;
  color: #d2dfd9;
  font-size: 0.88rem;
}

.year-flow {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
}

.year-column {
  padding: 1.4rem;
  border: 1px solid #517569;
  background: rgba(255, 255, 255, 0.035);
}

.year-column-next {
  border-color: #83a99a;
  background: rgba(255, 255, 255, 0.075);
}

.year-label {
  display: block;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid #517569;
  color: #b7d0c4;
  font-size: 0.76rem;
  font-weight: 700;
}

.year-column ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.year-column li {
  display: grid;
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(121, 155, 142, 0.3);
  color: white;
  font-size: 0.78rem;
  gap: 0.55rem;
  grid-template-columns: 1.5rem 1fr;
  line-height: 1.55;
}

.year-column li:last-child {
  border-bottom: 0;
}

.year-column li span {
  color: #8eb5a4;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.66rem;
}

.flow-arrow {
  display: flex;
  width: 2.5rem;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
}

.flow-arrow span {
  width: 1px;
  height: 2rem;
  background: #709384;
}

.flow-arrow b {
  color: #bdd2c8;
  font-size: 0.7rem;
  font-weight: 600;
  writing-mode: vertical-rl;
}

.integrations-section {
  background: var(--paper);
}

.integrations-heading {
  margin-bottom: 3.8rem;
}

.integration-grid {
  display: grid;
  border: 1px solid var(--line-strong);
  background: var(--surface);
  grid-template-columns: 1fr 1fr;
}

.integration-block {
  padding: clamp(2rem, 5vw, 3.5rem);
}

.integration-block + .integration-block {
  border-left: 1px solid var(--line-strong);
}

.integration-name {
  justify-content: flex-start;
  margin-bottom: 1.25rem;
}

.integration-name h3 {
  margin: 0;
  font-size: 1.4rem;
}

.google-product-icon {
  display: block;
  width: 2.4rem;
  height: 2.4rem;
  flex: 0 0 auto;
  object-fit: contain;
}

.integration-block > p {
  min-height: 5.4rem;
  color: var(--muted);
}

.integration-flow {
  display: flex;
  align-items: center;
  margin: 1.5rem 0;
  gap: 0.65rem;
}

.integration-flow span {
  padding: 0.5rem 0.65rem;
  color: var(--ink);
  background: var(--paper-deep);
  font-size: 0.72rem;
  font-weight: 650;
}

.integration-flow i {
  color: var(--sage);
  font-style: normal;
}

.integration-note {
  margin: 1.25rem 0 0;
  color: var(--muted);
  font-size: 0.78rem;
  text-align: center;
}

.roadmap-section {
  background: var(--surface);
}

.roadmap-layout {
  display: grid;
  align-items: start;
  gap: clamp(3rem, 9vw, 8rem);
  grid-template-columns: 0.65fr 1.1fr;
}

.roadmap-heading {
  margin: 0;
}

.roadmap-items {
  border-top: 1px solid var(--line-strong);
}

.roadmap-item {
  padding: 2.2rem 0;
  border-bottom: 1px solid var(--line-strong);
}

.roadmap-meta > span:first-child {
  color: var(--green);
  font-size: 0.75rem;
  font-weight: 750;
  letter-spacing: 0.08em;
}

.roadmap-item h3 {
  max-width: 31rem;
  margin: 0.85rem 0;
}

.roadmap-item p {
  color: var(--muted);
}

.roadmap-item small {
  display: block;
  padding-left: 0.85rem;
  border-left: 2px solid var(--ochre);
  color: #716657;
  font-size: 0.76rem;
  line-height: 1.7;
}

.pricing-section {
  background: var(--paper-deep);
}

.pricing-intro p {
  margin: 0.75rem 0 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.pricing-table-wrap {
  overflow-x: auto;
  border-top: 2px solid var(--ink);
  background: var(--surface);
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 46rem;
}

.pricing-table th,
.pricing-table td {
  padding: 1.3rem 1.5rem;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: middle;
}

.pricing-table thead th {
  color: var(--muted);
  background: #f4f1e9;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.pricing-table tbody th {
  width: 27%;
  color: var(--ink);
  font-size: 0.88rem;
}

.pricing-table tbody td {
  color: var(--muted);
  font-size: 0.86rem;
}

.pricing-table tbody td:nth-child(2) {
  width: 32%;
  color: var(--text);
}

.pricing-table strong {
  color: var(--ink);
  font-size: 1.08rem;
}

.pricing-detail {
  display: block;
  max-width: 28rem;
  color: var(--muted);
  font-size: 0.75rem;
  line-height: 1.65;
}

.pricing-highlight th,
.pricing-highlight td {
  background: var(--green-soft);
}

.pricing-notes {
  display: grid;
  margin-top: 1.5rem;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
  grid-template-columns: 0.7fr 1fr 1.2fr;
}

.pricing-notes p {
  padding: 1rem 1.2rem;
  margin: 0;
}

.pricing-notes p + p {
  border-left: 1px solid var(--line-strong);
}

.pricing-notes strong,
.pricing-notes span {
  display: block;
}

.pricing-notes strong {
  color: var(--ink);
  font-size: 0.76rem;
}

.pricing-notes span {
  margin-top: 0.2rem;
  color: var(--muted);
  font-size: 0.78rem;
}

.steps-section {
  background: var(--surface);
}

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

.steps-list li {
  padding: 2rem 1.6rem;
}

.steps-list li + li {
  border-left: 1px solid var(--line-strong);
}

.steps-list > li > span {
  display: grid;
  width: 2rem;
  height: 2rem;
  margin-bottom: 2rem;
  place-items: center;
  color: white;
  background: var(--green);
  border-radius: 50%;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.72rem;
}

.steps-list h3 {
  margin-bottom: 0.6rem;
  font-size: 1.05rem;
}

.steps-list p {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.faq-section {
  background: var(--paper);
}

.faq-layout {
  display: grid;
  align-items: start;
  gap: clamp(3rem, 9vw, 8rem);
  grid-template-columns: 0.55fr 1fr;
}

.faq-heading {
  position: sticky;
  top: 8rem;
  margin: 0;
}

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

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

.faq-list summary {
  position: relative;
  padding: 1.55rem 3rem 1.55rem 0;
  color: var(--ink);
  cursor: pointer;
  font-size: 1rem;
  font-weight: 700;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span,
.faq-list summary span::after {
  position: absolute;
  background: var(--green);
  content: "";
}

.faq-list summary span {
  top: 50%;
  right: 0.3rem;
  width: 1rem;
  height: 1px;
}

.faq-list summary span::after {
  top: -0.5rem;
  left: 0.48rem;
  width: 1px;
  height: 1rem;
  transition: transform 140ms ease;
}

.faq-list details[open] summary span::after {
  transform: rotate(90deg);
}

.faq-list details p {
  max-width: 44rem;
  padding: 0 3rem 1.5rem 0;
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.final-cta {
  padding: clamp(5.5rem, 10vw, 9rem) 0;
  color: white;
  background: var(--green-dark);
  text-align: center;
}

.final-cta-inner {
  width: min(calc(100% - 2rem), 49rem);
  margin-inline: auto;
}

.final-cta .section-kicker {
  color: #9fc4b3;
}

.final-cta h2 {
  color: white;
}

.final-cta-inner > p:not(.section-kicker) {
  color: #d3e0da;
  font-size: 1.03rem;
}

.final-cta .button {
  margin-top: 2rem;
}

.button-light {
  color: var(--green-dark);
  background: white;
}

.button-light:hover {
  background: var(--paper);
}

.site-footer {
  padding: 4rem 0 1.3rem;
  background: #102e26;
}

.footer-inner {
  display: grid;
  padding-bottom: 3rem;
  border-bottom: 1px solid #345047;
  grid-template-columns: 1fr auto;
  gap: 3rem;
}

.footer-brand {
  color: white;
  font-size: 1.65rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.footer-inner > div > p {
  margin: 1.1rem 0 0;
  color: #9fb3ab;
  font-size: 0.82rem;
}

.footer-nav {
  display: grid;
  align-content: start;
  gap: 0.55rem 2.2rem;
  grid-auto-flow: column;
  grid-template-rows: repeat(3, auto);
}

.footer-nav a {
  color: #c5d3cd;
  font-size: 0.78rem;
  text-decoration: none;
}

.footer-nav a:hover {
  color: white;
}

.footer-bottom {
  display: flex;
  padding-top: 1.25rem;
  justify-content: space-between;
  gap: 1rem;
  color: #758f84;
  font-size: 0.7rem;
}

.footer-bottom p {
  margin: 0;
}

@media (max-width: 64rem) {
  .hero-inner {
    gap: 3rem;
    grid-template-columns: 1.1fr 0.9fr;
  }

  .year-flow {
    gap: 0.6rem;
  }

  .year-column {
    padding: 1rem;
  }

  .pricing-table th,
  .pricing-table td {
    padding-inline: 1rem;
  }

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

  .steps-list li:nth-child(3) {
    border-top: 1px solid var(--line-strong);
    border-left: 0;
  }

  .steps-list li:nth-child(4) {
    border-top: 1px solid var(--line-strong);
  }
}

@media (max-width: 48rem) {
  .heading-line {
    white-space: normal;
  }

  html {
    scroll-padding-top: 4.5rem;
  }

  .header-inner,
  .section-inner,
  .hero-inner,
  .status-strip-inner,
  .footer-inner,
  .footer-bottom {
    width: min(calc(100% - 1.5rem), var(--max));
  }

  .header-inner {
    min-height: 4.25rem;
  }

  .menu-button {
    display: block;
  }

  .primary-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: -0.75rem;
    left: -0.75rem;
    display: grid;
    padding: 0.75rem;
    border-bottom: 1px solid var(--line);
    background: var(--surface);
    box-shadow: 0 1rem 2rem rgba(25, 56, 47, 0.1);
    gap: 0;
  }

  .primary-nav[hidden] {
    display: none;
  }

  .primary-nav a {
    padding: 0.75rem;
    border-bottom: 1px solid var(--line);
  }

  .primary-nav a:nth-last-child(2) {
    border-bottom: 0;
  }

  .primary-nav .nav-cta {
    margin-top: 0.5rem;
    text-align: center;
  }

  .hero {
    padding-top: 3.5rem;
  }

  .hero-inner,
  .status-strip-inner,
  .problems-layout,
  .heading-split,
  .handover-layout,
  .integration-grid,
  .roadmap-layout,
  .faq-layout,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    max-width: none;
    font-size: clamp(2rem, 8.8vw, 3.6rem);
  }

  .handover-visual {
    width: calc(100% - 1rem);
    margin-right: 1rem;
  }

  .status-strip-inner {
    gap: 1rem;
  }

  .status-title h2 {
    font-size: 1.15rem;
  }

  .section {
    padding-block: 5rem;
  }

  .section-heading {
    margin-bottom: 2.5rem;
  }

  .heading-split {
    align-items: start;
    gap: 1.25rem;
  }

  .audience-matrix {
    grid-template-columns: 1fr 1fr;
  }

  .sticky-heading,
  .faq-heading {
    position: static;
  }

  .feature-group {
    gap: 0.5rem;
    grid-template-columns: 1fr;
  }

  .feature-title-row {
    align-items: flex-start;
  }

  .feature-title-row h3 {
    font-size: 1.3rem;
  }

  .status-definition {
    text-align: left;
  }

  .product-shots {
    grid-template-columns: 1fr;
  }

  .product-data-note {
    text-align: left;
  }

  .handover-layout {
    gap: 3rem;
  }

  .integration-block + .integration-block {
    border-top: 1px solid var(--line-strong);
    border-left: 0;
  }

  .integration-block > p {
    min-height: auto;
  }

  .pricing-notes {
    grid-template-columns: 1fr;
  }

  .pricing-notes p + p {
    border-top: 1px solid var(--line-strong);
    border-left: 0;
  }

  .footer-nav {
    grid-auto-flow: row;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .footer-bottom {
    flex-direction: column;
  }

}

@media (max-width: 32rem) {
  .brand-reading {
    display: none;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .year-flow {
    grid-template-columns: 1fr;
  }

  .flow-arrow {
    width: 100%;
    flex-direction: row;
    justify-content: center;
  }

  .flow-arrow span {
    width: 3rem;
    height: 1px;
  }

  .flow-arrow b {
    writing-mode: horizontal-tb;
  }

  .integration-flow {
    align-items: stretch;
    flex-direction: column;
  }

  .integration-flow i {
    height: 1rem;
    line-height: 1;
    text-align: center;
    transform: rotate(90deg);
  }

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

  .steps-list li + li,
  .steps-list li:nth-child(3) {
    border-top: 1px solid var(--line-strong);
    border-left: 0;
  }

  .steps-list > li > span {
    margin-bottom: 1rem;
  }

  .faq-list summary {
    font-size: 0.94rem;
  }

  .audience-matrix {
    grid-template-columns: 1fr;
  }

}

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

@media print {
  .site-header,
  .hero-actions,
  .final-cta,
  .site-footer {
    display: none;
  }

  body {
    background: white;
  }

  .section,
  .hero {
    padding: 2rem 0;
  }
}
