@layer reset, base, components, layout, utilities;

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

  html {
    -webkit-text-size-adjust: 100%;
  }

  body,
  h1,
  h2,
  h3,
  p,
  ol,
  ul,
  figure {
    margin: 0;
  }

  ol,
  ul {
    padding: 0;
  }

  button,
  input,
  textarea,
  select {
    font: inherit;
  }

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

@layer base {
  :root {
    color-scheme: dark;
    --ink-950: #080d12;
    --ink-900: #0a0f15;
    --ink-850: #0e151c;
    --ink-800: #111922;
    --ink-750: #17222c;
    --line-dark: #2b3944;
    --line-light: #c7d0c9;
    --paper: #eef2ee;
    --paper-strong: #f7f9f6;
    --paper-muted: #dfe7e0;
    --text-on-dark: #eef4ef;
    --muted-on-dark: #a8b6ad;
    --text-on-light: #152019;
    --muted-on-light: #506058;
    --accent: #84d07e;
    --accent-strong: #9dde97;
    --accent-dark: #294d2f;
    --amber: #e3b55d;
    --danger: #e68a7c;
    --focus: #f1c66f;
    --header-height: 4.5rem;
    --content-width: 76rem;
    --gutter: clamp(1.1rem, 3.4vw, 2.25rem);
    --radius-sm: 0.25rem;
    --radius-md: 0.5rem;
    --shadow-focus: 0 0 0 0.2rem var(--ink-900), 0 0 0 0.38rem var(--focus);
    font-family: "Aptos", "Segoe UI Variable Text", "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    font-synthesis: none;
  }

  html {
    background: var(--ink-950);
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-height) + 1.5rem);
  }

  body {
    min-width: 20rem;
    min-height: 100vh;
    background: var(--paper);
    color: var(--text-on-light);
    font-size: 1rem;
    line-height: 1.6;
    text-rendering: optimizeLegibility;
  }

  body.nav-open {
    overflow: hidden;
  }

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

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

  :focus-visible {
    outline: none;
    box-shadow: var(--shadow-focus);
  }

  ::selection {
    background: var(--accent);
    color: var(--ink-950);
  }

  h1,
  h2,
  h3 {
    font-weight: 680;
    letter-spacing: -0.035em;
    line-height: 1.08;
    text-wrap: balance;
  }

  p,
  li,
  h1,
  h2,
  h3,
  a {
    overflow-wrap: break-word;
    hyphens: auto;
  }

  code,
  .mono {
    font-family: "Cascadia Code", "SFMono-Regular", Consolas, "Liberation Mono", monospace;
    font-variant-ligatures: none;
  }

  [hidden] {
    display: none !important;
  }
}

@layer components {
  .skip-link {
    position: fixed;
    z-index: 1000;
    top: 0.75rem;
    left: 0.75rem;
    padding: 0.65rem 0.85rem;
    transform: translateY(-160%);
    border: 2px solid var(--ink-950);
    background: var(--accent);
    color: var(--ink-950);
    font-weight: 750;
    text-decoration: none;
    transition: transform 140ms ease;
  }

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

  .section-shell {
    width: min(100% - (var(--gutter) * 2), var(--content-width));
    margin-inline: auto;
  }

  .icon {
    width: 1.2rem;
    height: 1.2rem;
    flex: 0 0 auto;
    fill: none;
    stroke: currentColor;
    stroke-linecap: square;
    stroke-linejoin: miter;
    stroke-width: 1.8;
  }

  .eyebrow,
  .section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    color: var(--accent);
    font-size: 0.76rem;
    font-weight: 780;
    letter-spacing: 0.12em;
    line-height: 1.3;
    text-transform: uppercase;
  }

  .eyebrow::before,
  .section-kicker::before {
    width: 0.55rem;
    height: 0.55rem;
    background: currentColor;
    content: "";
  }

  .section-kicker.dark {
    color: var(--accent-dark);
  }

  .button {
    display: inline-flex;
    min-height: 3rem;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    border: 1px solid transparent;
    border-radius: var(--radius-sm);
    padding: 0.72rem 1.05rem;
    font-size: 0.96rem;
    font-weight: 730;
    line-height: 1.25;
    text-align: center;
    text-decoration: none;
    transition: background-color 150ms ease, border-color 150ms ease, color 150ms ease, transform 150ms ease;
  }

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

  .button:active {
    transform: translateY(0);
  }

  .button:disabled,
  .button[aria-disabled="true"] {
    cursor: not-allowed;
    opacity: 0.45;
    transform: none;
  }

  .button-primary {
    background: var(--accent);
    color: var(--ink-950);
  }

  .button-primary:hover {
    background: var(--accent-strong);
  }

  .button-secondary {
    border-color: var(--line-dark);
    background: transparent;
    color: var(--text-on-dark);
  }

  .button-secondary:hover {
    border-color: var(--muted-on-dark);
    background: var(--ink-800);
  }

  .button-dark {
    background: var(--ink-950);
    color: var(--text-on-dark);
  }

  .button-dark:hover {
    background: var(--ink-750);
  }

  .text-link {
    display: inline-flex;
    min-height: 2.75rem;
    align-items: center;
    gap: 0.45rem;
    font-weight: 700;
    text-decoration: underline;
  }

  .brand {
    display: inline-flex;
    min-width: 0;
    align-items: center;
    gap: 0.7rem;
    border-radius: var(--radius-sm);
    color: var(--text-on-dark);
    font-weight: 760;
    letter-spacing: -0.025em;
    line-height: 1;
    text-decoration: none;
  }

  .brand img {
    width: 2.1rem;
    height: 2.1rem;
    flex: 0 0 auto;
  }

  .brand-domain {
    color: var(--muted-on-dark);
    font-weight: 620;
  }
}

@layer layout {
  .site-header {
    position: sticky;
    z-index: 100;
    top: 0;
    min-height: var(--header-height);
    border-bottom: 1px solid var(--line-dark);
    background: var(--ink-850);
    color: var(--text-on-dark);
  }

  .header-inner {
    display: flex;
    min-height: var(--header-height);
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
  }

  .desktop-nav,
  .desktop-actions {
    display: none;
  }

  .nav-toggle {
    display: grid;
    width: 2.85rem;
    height: 2.85rem;
    flex: 0 0 auto;
    place-items: center;
    border: 1px solid var(--line-dark);
    border-radius: var(--radius-sm);
    background: var(--ink-800);
    color: var(--text-on-dark);
    cursor: pointer;
  }

  .mobile-menu {
    position: fixed;
    z-index: 99;
    inset: var(--header-height) 0 0;
    overflow-y: auto;
    border-top: 1px solid var(--line-dark);
    background: var(--ink-900);
    color: var(--text-on-dark);
    opacity: 0;
    transform: translateY(-0.5rem);
    transition: opacity 150ms ease, transform 150ms ease;
  }

  .mobile-menu.is-open {
    opacity: 1;
    transform: translateY(0);
  }

  .mobile-menu-inner {
    display: flex;
    min-height: 100%;
    flex-direction: column;
    gap: 1.5rem;
    padding-block: 1.5rem 2rem;
  }

  .mobile-nav {
    display: grid;
    border-top: 1px solid var(--line-dark);
  }

  .mobile-nav a {
    display: flex;
    min-height: 3.6rem;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    border-bottom: 1px solid var(--line-dark);
    font-size: 1.12rem;
    font-weight: 680;
    text-decoration: none;
  }

  .mobile-nav a[aria-current="location"] {
    color: var(--accent);
  }

  .mobile-menu-actions {
    display: grid;
    gap: 0.7rem;
  }

  .locale-switch {
    display: inline-flex;
    min-height: 2.75rem;
    align-items: center;
    gap: 0.4rem;
    color: var(--muted-on-dark);
    font-size: 0.82rem;
    font-weight: 760;
    letter-spacing: 0.08em;
  }

  .locale-switch a {
    display: inline-grid;
    min-width: 2.25rem;
    min-height: 2.25rem;
    place-items: center;
    border-radius: var(--radius-sm);
    text-decoration: none;
  }

  .locale-switch a[aria-current="page"] {
    background: var(--accent);
    color: var(--ink-950);
  }

  html.no-js .nav-toggle {
    display: none;
  }

  html.no-js .mobile-menu[hidden] {
    position: static;
    display: block !important;
    opacity: 1;
    transform: none;
  }

  .hero {
    position: relative;
    isolation: isolate;
    overflow: clip;
    border-bottom: 1px solid var(--line-dark);
    background: var(--ink-900);
    color: var(--text-on-dark);
  }

  .hero::before {
    position: absolute;
    z-index: -1;
    inset: 0;
    background-image:
      linear-gradient(to right, rgb(255 255 255 / 0.035) 1px, transparent 1px),
      linear-gradient(to bottom, rgb(255 255 255 / 0.035) 1px, transparent 1px);
    background-size: 4.5rem 4.5rem;
    content: "";
    mask-image: linear-gradient(to bottom, black, transparent 95%);
  }

  .hero-layout {
    display: grid;
    gap: 3rem;
    padding-block: clamp(4.5rem, 9vw, 7.5rem) clamp(3.5rem, 7vw, 6rem);
  }

  .hero-copy {
    min-width: 0;
  }

  .hero h1 {
    max-width: 15ch;
    margin-top: 1.25rem;
    font-size: clamp(2.55rem, 10.5vw, 4.7rem);
    letter-spacing: -0.055em;
  }

  .hero h1 span {
    color: var(--accent);
  }

  .hero-lead {
    max-width: 41rem;
    margin-top: 1.5rem;
    color: var(--muted-on-dark);
    font-size: clamp(1.05rem, 2.4vw, 1.2rem);
    line-height: 1.65;
  }

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

  .hero-note {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem 1.25rem;
    margin-top: 1.3rem;
    color: var(--muted-on-dark);
    font-size: 0.9rem;
  }

  .hero-note span {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
  }

  .hero-note .icon {
    width: 1rem;
    height: 1rem;
    color: var(--accent);
  }

  .setup-board {
    position: relative;
    min-width: 0;
    align-self: center;
    border: 1px solid var(--line-dark);
    border-top: 0.28rem solid var(--accent);
    border-radius: var(--radius-sm);
    background: var(--ink-850);
  }

  .setup-board::after {
    position: absolute;
    right: -1px;
    bottom: -1px;
    width: 2.2rem;
    height: 2.2rem;
    border-right: 0.6rem solid var(--paper);
    border-bottom: 0.6rem solid var(--paper);
    content: "";
  }

  .board-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    border-bottom: 1px solid var(--line-dark);
    padding: 1.1rem 1.2rem;
  }

  .board-label {
    color: var(--muted-on-dark);
    font-size: 0.68rem;
    font-weight: 760;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  .board-title {
    margin-top: 0.2rem;
    color: var(--text-on-dark);
    font-size: 1rem;
    font-weight: 700;
  }

  .status {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: var(--accent);
    font-size: 0.76rem;
    font-weight: 740;
    white-space: nowrap;
  }

  .status::before {
    width: 0.5rem;
    height: 0.5rem;
    background: currentColor;
    content: "";
  }

  .setup-list {
    list-style: none;
  }

  .setup-row {
    display: grid;
    grid-template-columns: 2.45rem minmax(0, 1fr);
    gap: 0.9rem;
    border-bottom: 1px solid var(--line-dark);
    padding: 1.15rem 1.2rem;
  }

  .setup-number {
    display: grid;
    width: 2.35rem;
    height: 2.35rem;
    place-items: center;
    border: 1px solid var(--line-dark);
    color: var(--accent);
    font-size: 0.76rem;
    font-weight: 800;
  }

  .setup-row strong {
    display: block;
    color: var(--text-on-dark);
    line-height: 1.35;
  }

  .setup-row p {
    margin-top: 0.2rem;
    color: var(--muted-on-dark);
    font-size: 0.86rem;
    line-height: 1.5;
  }

  .address-example {
    display: block;
    margin-top: 0.4rem;
    color: var(--accent-strong);
    font-size: clamp(0.74rem, 3vw, 0.88rem);
    overflow-wrap: anywhere;
  }

  .board-footer {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding: 1rem 1.2rem 1.2rem;
    color: var(--muted-on-dark);
    font-size: 0.82rem;
  }

  .board-footer .icon {
    color: var(--amber);
  }

  .trust-strip {
    border-bottom: 1px solid var(--line-light);
    background: var(--paper-strong);
  }

  .trust-list {
    display: grid;
    list-style: none;
  }

  .trust-item {
    display: grid;
    min-width: 0;
    grid-template-columns: 2.25rem minmax(0, 1fr);
    gap: 0.8rem;
    border-bottom: 1px solid var(--line-light);
    padding-block: 1.15rem;
  }

  .trust-item:last-child {
    border-bottom: 0;
  }

  .trust-icon {
    display: grid;
    width: 2.25rem;
    height: 2.25rem;
    place-items: center;
    border: 1px solid var(--line-light);
    background: var(--paper);
    color: var(--accent-dark);
  }

  .trust-icon .icon {
    width: 1.05rem;
    height: 1.05rem;
  }

  .trust-item strong {
    display: block;
    color: var(--text-on-light);
    font-size: 0.93rem;
    line-height: 1.35;
  }

  .trust-item span {
    color: var(--muted-on-light);
    font-size: 0.82rem;
  }

  .content-section {
    padding-block: clamp(4.5rem, 9vw, 7.5rem);
  }

  .section-heading {
    max-width: 49rem;
  }

  .section-heading h2 {
    margin-top: 1rem;
    font-size: clamp(2.15rem, 6.5vw, 3.8rem);
  }

  .section-heading p {
    max-width: 42rem;
    margin-top: 1.15rem;
    color: var(--muted-on-light);
    font-size: 1.05rem;
  }

  .benefits {
    background: var(--paper);
  }

  .benefits-layout {
    display: grid;
    gap: 3.5rem;
    margin-top: 3.25rem;
  }

  .feature-list {
    border-top: 1px solid var(--line-light);
    list-style: none;
  }

  .feature-item {
    display: grid;
    min-width: 0;
    grid-template-columns: 2.6rem minmax(0, 1fr);
    gap: 1rem;
    border-bottom: 1px solid var(--line-light);
    padding-block: 1.45rem;
  }

  .feature-index {
    color: var(--accent-dark);
    font-family: "Cascadia Code", Consolas, monospace;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
  }

  .feature-item h3 {
    font-size: 1.22rem;
    letter-spacing: -0.02em;
  }

  .feature-item p {
    margin-top: 0.45rem;
    color: var(--muted-on-light);
  }

  .system-map {
    align-self: start;
    border: 1px solid var(--line-dark);
    border-top: 0.28rem solid var(--amber);
    background: var(--ink-850);
    color: var(--text-on-dark);
  }

  .system-map-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    border-bottom: 1px solid var(--line-dark);
    padding: 1rem 1.15rem;
  }

  .system-map-header span:first-child {
    font-size: 0.74rem;
    font-weight: 780;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

  .system-map-header .mono {
    color: var(--muted-on-dark);
    font-size: 0.7rem;
  }

  .map-flow {
    display: grid;
    gap: 0.65rem;
    padding: 1.3rem 1.15rem;
  }

  .map-stage {
    display: grid;
    grid-template-columns: 2.3rem minmax(0, 1fr);
    gap: 0.8rem;
    border: 1px solid var(--line-dark);
    padding: 0.9rem;
  }

  .map-stage .icon {
    width: 1.35rem;
    height: 1.35rem;
    margin-top: 0.1rem;
    color: var(--accent);
  }

  .map-stage strong {
    display: block;
    font-size: 0.92rem;
  }

  .map-stage small {
    display: block;
    margin-top: 0.2rem;
    color: var(--muted-on-dark);
    font-size: 0.76rem;
    line-height: 1.45;
  }

  .map-connector {
    width: 1px;
    height: 1rem;
    margin-left: 1.15rem;
    background: var(--accent);
  }

  .map-notes {
    display: grid;
    border-top: 1px solid var(--line-dark);
  }

  .map-note {
    display: grid;
    grid-template-columns: 1.5rem minmax(0, 1fr);
    gap: 0.7rem;
    padding: 1rem 1.15rem;
  }

  .map-note + .map-note {
    border-top: 1px solid var(--line-dark);
  }

  .map-note .icon {
    color: var(--amber);
  }

  .map-note strong {
    display: block;
    font-size: 0.86rem;
  }

  .map-note span {
    display: block;
    color: var(--muted-on-dark);
    font-size: 0.76rem;
  }

  .how-it-works {
    border-block: 1px solid var(--line-dark);
    background: var(--ink-800);
    color: var(--text-on-dark);
  }

  .how-it-works .section-heading p {
    color: var(--muted-on-dark);
  }

  .steps {
    display: grid;
    margin-top: 3rem;
    border-top: 1px solid var(--line-dark);
    list-style: none;
  }

  .step {
    position: relative;
    display: grid;
    min-width: 0;
    grid-template-columns: 3.2rem minmax(0, 1fr);
    gap: 1rem;
    border-bottom: 1px solid var(--line-dark);
    padding-block: 1.55rem;
  }

  .step-number {
    color: var(--accent);
    font-family: "Cascadia Code", Consolas, monospace;
    font-size: 0.84rem;
    font-weight: 800;
    letter-spacing: 0.08em;
  }

  .step h3 {
    font-size: 1.35rem;
  }

  .step p {
    margin-top: 0.55rem;
    color: var(--muted-on-dark);
  }

  .steps-action {
    margin-top: 2rem;
  }

  .free-plan {
    border-bottom: 1px solid var(--line-light);
    background: #dfe9df;
  }

  .plan-layout {
    display: grid;
    gap: 3rem;
  }

  .plan-copy h2 {
    margin-top: 1rem;
    font-size: clamp(2.15rem, 6.5vw, 3.8rem);
  }

  .plan-copy > p {
    max-width: 38rem;
    margin-top: 1.2rem;
    color: var(--muted-on-light);
    font-size: 1.05rem;
  }

  .plan-principle {
    margin-top: 2rem;
    border-left: 0.3rem solid var(--accent-dark);
    padding-left: 1rem;
  }

  .plan-principle strong {
    display: block;
  }

  .plan-principle span {
    display: block;
    margin-top: 0.25rem;
    color: var(--muted-on-light);
  }

  .plan-card {
    align-self: start;
    border: 1px solid var(--line-dark);
    border-top: 0.3rem solid var(--accent);
    background: var(--ink-850);
    color: var(--text-on-dark);
  }

  .plan-card-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    border-bottom: 1px solid var(--line-dark);
    padding: 1.3rem;
  }

  .plan-name {
    color: var(--muted-on-dark);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  .plan-tier {
    margin-top: 0.25rem;
    font-size: 1.2rem;
    font-weight: 730;
  }

  .plan-price {
    color: var(--accent);
    font-size: 2.1rem;
    font-weight: 750;
    letter-spacing: -0.04em;
    line-height: 1;
  }

  .plan-price small {
    display: block;
    margin-top: 0.35rem;
    color: var(--muted-on-dark);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0;
  }

  .plan-features {
    display: grid;
    list-style: none;
  }

  .plan-features li {
    display: grid;
    grid-template-columns: 1.25rem minmax(0, 1fr);
    gap: 0.75rem;
    border-bottom: 1px solid var(--line-dark);
    padding: 0.85rem 1.3rem;
    color: var(--muted-on-dark);
    font-size: 0.9rem;
  }

  .plan-features .icon {
    width: 1rem;
    height: 1rem;
    margin-top: 0.2rem;
    color: var(--accent);
  }

  .plan-card-action {
    padding: 1.3rem;
  }

  .plan-card-action .button {
    width: 100%;
  }

  .plan-disclaimer {
    margin-top: 0.8rem;
    color: var(--muted-on-dark);
    font-size: 0.75rem;
    text-align: center;
  }

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

  .faq-layout {
    display: grid;
    gap: 3rem;
  }

  .faq-intro h2 {
    margin-top: 1rem;
    font-size: clamp(2.15rem, 6.5vw, 3.8rem);
  }

  .faq-intro p {
    margin-top: 1rem;
    color: var(--muted-on-light);
  }

  .faq-support {
    margin-top: 1.1rem;
  }

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

  .faq-item {
    border-bottom: 1px solid var(--line-light);
  }

  .faq-item h3 {
    font-size: inherit;
  }

  .faq-button {
    display: grid;
    width: 100%;
    min-height: 4.5rem;
    grid-template-columns: minmax(0, 1fr) 2.4rem;
    align-items: center;
    gap: 1rem;
    border: 0;
    border-radius: 0;
    padding: 1rem 0;
    background: transparent;
    color: var(--text-on-light);
    cursor: pointer;
    font-weight: 700;
    text-align: left;
  }

  .faq-button:hover {
    color: var(--accent-dark);
  }

  .faq-toggle-icon {
    display: grid;
    width: 2.35rem;
    height: 2.35rem;
    place-items: center;
    border: 1px solid var(--line-light);
    color: var(--accent-dark);
    transition: background-color 150ms ease, transform 180ms ease;
  }

  .faq-button[aria-expanded="true"] .faq-toggle-icon {
    transform: rotate(180deg);
    background: var(--paper-muted);
  }

  .faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    visibility: hidden;
    opacity: 0;
    transition: grid-template-rows 180ms ease, opacity 150ms ease, visibility 180ms;
  }

  .faq-answer-inner {
    overflow: hidden;
  }

  .faq-answer p {
    max-width: 46rem;
    padding: 0 3rem 1.4rem 0;
    color: var(--muted-on-light);
  }

  .faq-item[data-open] .faq-answer,
  html.no-js .faq-answer {
    grid-template-rows: 1fr;
    visibility: visible;
    opacity: 1;
  }

  html.no-js .faq-button {
    cursor: default;
  }

  html.no-js .faq-toggle-icon {
    display: none;
  }

  .closing-cta {
    border-bottom: 1px solid var(--accent-dark);
    background: var(--accent);
    color: var(--ink-950);
  }

  .cta-layout {
    display: grid;
    gap: 2rem;
    align-items: end;
    padding-block: clamp(3.5rem, 7vw, 5rem);
  }

  .cta-copy h2 {
    max-width: 18ch;
    font-size: clamp(2rem, 5.5vw, 3.5rem);
  }

  .cta-copy p {
    max-width: 40rem;
    margin-top: 0.9rem;
    color: #29432c;
  }

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

  .cta-actions .text-link {
    color: var(--ink-950);
  }

  .site-footer {
    background: var(--ink-950);
    color: var(--text-on-dark);
  }

  .footer-main {
    display: grid;
    gap: 2.5rem;
    padding-block: 3.5rem 2.5rem;
  }

  .footer-intro p {
    max-width: 27rem;
    margin-top: 1.1rem;
    color: var(--muted-on-dark);
    font-size: 0.94rem;
  }

  .footer-nav-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-column h2 {
    color: var(--muted-on-dark);
    font-size: 0.71rem;
    font-weight: 780;
    letter-spacing: 0.11em;
    text-transform: uppercase;
  }

  .footer-column ul {
    display: grid;
    gap: 0.3rem;
    margin-top: 0.9rem;
    list-style: none;
  }

  .footer-column a {
    display: inline-flex;
    min-height: 2.6rem;
    align-items: center;
    gap: 0.35rem;
    color: var(--text-on-dark);
    font-size: 0.9rem;
    text-decoration: none;
  }

  .footer-column a:hover {
    color: var(--accent);
    text-decoration: underline;
  }

  .footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    border-top: 1px solid var(--line-dark);
    padding-block: 1.3rem;
    color: var(--muted-on-dark);
    font-size: 0.8rem;
  }

  .legal-hero {
    border-bottom: 1px solid var(--line-dark);
    background: var(--ink-900);
    color: var(--text-on-dark);
  }

  .legal-hero-inner {
    padding-block: clamp(3.5rem, 7vw, 5.5rem);
  }

  .legal-hero h1 {
    margin-top: 1rem;
    font-size: clamp(2.6rem, 8vw, 4.8rem);
  }

  .legal-hero p {
    max-width: 42rem;
    margin-top: 1rem;
    color: var(--muted-on-dark);
  }

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

  .legal-layout {
    display: grid;
    gap: 2.5rem;
    padding-block: clamp(3rem, 7vw, 5.5rem);
  }

  .legal-aside {
    align-self: start;
    border-left: 0.28rem solid var(--accent-dark);
    padding-left: 1rem;
    color: var(--muted-on-light);
    font-size: 0.85rem;
  }

  .legal-aside strong {
    display: block;
    color: var(--text-on-light);
  }

  .legal-document {
    min-width: 0;
  }

  .legal-document section + section {
    margin-top: 2.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid var(--line-light);
  }

  .legal-document h2 {
    font-size: clamp(1.45rem, 4vw, 2rem);
    letter-spacing: -0.025em;
  }

  .legal-document h3 {
    margin-top: 1.25rem;
    font-size: 1.08rem;
    letter-spacing: -0.015em;
  }

  .legal-document p,
  .legal-document ul {
    margin-top: 0.85rem;
    color: #3f4f46;
  }

  .legal-document ul {
    padding-left: 1.25rem;
  }

  .legal-document address {
    margin-top: 0.85rem;
    font-style: normal;
  }

  .legal-document a {
    display: inline-block;
    min-height: 1.5rem;
    color: #275c2f;
    font-weight: 650;
    line-height: 1.5rem;
  }

  .legal-date {
    margin-top: 2.5rem;
    border-top: 1px solid var(--line-light);
    padding-top: 1.25rem;
    color: var(--muted-on-light);
    font-size: 0.85rem;
  }

  .not-found {
    display: grid;
    min-height: calc(100vh - var(--header-height));
    place-items: center;
    background: var(--ink-900);
    color: var(--text-on-dark);
  }

  .not-found-inner {
    padding-block: 4rem;
  }

  .not-found-code {
    color: var(--accent);
    font-family: "Cascadia Code", Consolas, monospace;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.12em;
  }

  .not-found h1 {
    max-width: 14ch;
    margin-top: 1rem;
    font-size: clamp(2.8rem, 9vw, 5rem);
  }

  .not-found p {
    max-width: 38rem;
    margin-top: 1rem;
    color: var(--muted-on-dark);
  }

  .not-found-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.7rem;
  }
}

@layer utilities {
  .sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    clip-path: inset(50%);
    white-space: nowrap;
  }
}

@media (min-width: 37.5rem) {
  .trust-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust-item:nth-child(odd) {
    padding-right: 1rem;
    border-right: 1px solid var(--line-light);
  }

  .trust-item:nth-child(even) {
    padding-left: 1rem;
  }

  .trust-item:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .map-notes {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .map-note + .map-note {
    border-top: 0;
    border-left: 1px solid var(--line-dark);
  }

  .footer-bottom {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

@media (min-width: 48rem) {
  .hero-actions .button {
    min-height: 3.25rem;
    padding-inline: 1.25rem;
  }

  .steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-bottom: 1px solid var(--line-dark);
  }

  .step {
    display: block;
    border-right: 1px solid var(--line-dark);
    border-bottom: 0;
    padding: 1.6rem;
  }

  .step:first-child {
    padding-left: 0;
  }

  .step:last-child {
    border-right: 0;
    padding-right: 0;
  }

  .step h3 {
    margin-top: 3rem;
  }

  .plan-layout,
  .faq-layout,
  .cta-layout,
  .legal-layout {
    grid-template-columns: minmax(0, 0.9fr) minmax(20rem, 1.1fr);
  }

  .faq-intro,
  .legal-aside {
    position: sticky;
    top: calc(var(--header-height) + 2rem);
  }

  .cta-layout {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .footer-main {
    grid-template-columns: minmax(14rem, 1.2fr) minmax(24rem, 1.8fr);
  }

  .footer-nav-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 60rem) {
  .hero-layout {
    grid-template-columns: minmax(0, 1.08fr) minmax(24rem, 0.92fr);
    align-items: center;
    gap: clamp(3rem, 6vw, 6rem);
  }

  .hero h1 {
    font-size: clamp(3.9rem, 5.5vw, 5rem);
  }

  .benefits-layout {
    grid-template-columns: minmax(0, 1fr) minmax(25rem, 0.84fr);
    gap: clamp(3rem, 7vw, 6rem);
  }
}

@media (min-width: 65rem) {
  .desktop-nav,
  .desktop-actions {
    display: flex;
    align-items: center;
  }

  .desktop-nav {
    gap: clamp(0.8rem, 1.6vw, 1.65rem);
    margin-left: auto;
  }

  .desktop-nav a {
    position: relative;
    display: inline-flex;
    min-height: 2.75rem;
    align-items: center;
    color: var(--muted-on-dark);
    font-size: 0.86rem;
    font-weight: 660;
    text-decoration: none;
    white-space: nowrap;
  }

  .desktop-nav a::after {
    position: absolute;
    right: 0;
    bottom: 0.15rem;
    left: 0;
    height: 0.15rem;
    background: var(--accent);
    content: "";
    opacity: 0;
    transform: scaleX(0.4);
    transition: opacity 140ms ease, transform 140ms ease;
  }

  .desktop-nav a:hover,
  .desktop-nav a[aria-current="location"] {
    color: var(--text-on-dark);
  }

  .desktop-nav a:hover::after,
  .desktop-nav a[aria-current="location"]::after {
    opacity: 1;
    transform: scaleX(1);
  }

  .desktop-actions {
    gap: 0.8rem;
  }

  .desktop-actions .button {
    min-height: 2.75rem;
    padding: 0.6rem 0.85rem;
    font-size: 0.84rem;
  }

  .nav-toggle,
  .mobile-menu,
  html.no-js .mobile-menu[hidden] {
    display: none !important;
  }

  .trust-list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .trust-item,
  .trust-item:nth-child(odd),
  .trust-item:nth-child(even) {
    border-right: 1px solid var(--line-light);
    border-bottom: 0;
    padding: 1.25rem 1rem;
  }

  .trust-item:first-child {
    padding-left: 0;
  }

  .trust-item:last-child {
    border-right: 0;
    padding-right: 0;
  }

  .plan-layout {
    grid-template-columns: minmax(0, 1fr) minmax(25rem, 0.72fr);
    gap: clamp(4rem, 9vw, 8rem);
  }

  .faq-layout {
    grid-template-columns: minmax(17rem, 0.65fr) minmax(0, 1.35fr);
    gap: clamp(4rem, 9vw, 8rem);
  }

  .legal-layout {
    grid-template-columns: 13rem minmax(0, 47rem);
    justify-content: center;
    gap: clamp(3rem, 7vw, 6rem);
  }
}

@media (max-width: 28rem) {
  .brand {
    gap: 0.55rem;
    font-size: 0.9rem;
  }

  .brand img {
    width: 1.9rem;
    height: 1.9rem;
  }

  .hero-actions,
  .cta-actions,
  .not-found-actions {
    display: grid;
  }

  .hero-actions .button,
  .cta-actions .button,
  .not-found-actions .button {
    width: 100%;
  }

  .board-header,
  .plan-card-header {
    display: grid;
  }

  .status {
    white-space: normal;
  }

  .footer-nav-grid {
    grid-template-columns: 1fr;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media print {
  .site-header,
  .site-footer,
  .closing-cta,
  .skip-link {
    display: none !important;
  }

  body,
  .legal-content {
    background: white;
    color: black;
  }

  .legal-layout {
    display: block;
    width: 100%;
  }

  .legal-aside {
    margin-bottom: 2rem;
  }
}
