:root {
  --paper: #f6f5f1;
  --surface: #fcfcf9;
  --surface-alt: #eef1f8;
  --ink: #171b23;
  --muted: #68707d;
  --line: rgba(23, 27, 35, 0.12);
  --accent: #315ff2;
  --accent-soft: rgba(49, 95, 242, 0.12);
  --hero-wash: rgba(201, 214, 255, 0.38);
  --success: #0f9a75;
  --max-width: 1240px;
  --radius-xl: 2.2rem;
  --radius-lg: 1.5rem;
  --radius-md: 1rem;
  --shadow-soft: 0 18px 55px rgba(19, 24, 34, 0.08);
  --transition: 220ms ease;
  --nav-scroll-offset: 6.5rem;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
  scroll-padding-top: var(--nav-scroll-offset);
}

section[id],
aside[id] {
  scroll-margin-top: var(--nav-scroll-offset);
}

body {
  margin: 0;
  min-width: 320px;
  width: 100%;
  overflow-x: clip;
  background:
    radial-gradient(circle at top right, rgba(49, 95, 242, 0.12), transparent 32rem),
    radial-gradient(circle at 10% 12%, rgba(23, 27, 35, 0.04), transparent 18rem),
    var(--paper);
  color: var(--ink);
  font-family: "Instrument Sans", "Helvetica Neue", sans-serif;
  text-rendering: optimizeLegibility;
}

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

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

body.is-switching [data-i18n] {
  transition: opacity 180ms ease;
  opacity: 0.86;
}

.page-shell {
  width: 100%;
  overflow: clip;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1.15rem 1.5rem;
  backdrop-filter: blur(14px);
  background: linear-gradient(to bottom, rgba(246, 245, 241, 0.92), rgba(246, 245, 241, 0.7));
}

.brandmark {
  display: inline-flex;
  flex-direction: column;
  gap: 0.18rem;
  min-width: 0;
}

.brandmark-word {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.brandmark-note {
  color: var(--muted);
  font-size: 0.76rem;
  font-style: italic;
  max-width: 16rem;
  line-height: 1.25;
}

.site-nav {
  display: inline-flex;
  justify-content: center;
  gap: 1.5rem;
  justify-self: center;
}

.site-nav a {
  color: var(--muted);
  font-size: 0.94rem;
  transition: color var(--transition);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--ink);
}

.header-controls {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.menu-button {
  display: none;
  align-items: center;
  justify-content: center;
  min-height: 2.9rem;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.76);
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}

.menu-button:hover,
.menu-button:focus-visible {
  background: white;
  border-color: rgba(23, 27, 35, 0.18);
}

.language-toggle {
  display: inline-flex;
  gap: 0.35rem;
  padding: 0.28rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.64);
}

.lang-button {
  border: 0;
  background: transparent;
  color: var(--muted);
  min-width: 2.6rem;
  padding: 0.5rem 0.8rem;
  border-radius: 999px;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), transform var(--transition);
}

.lang-button:hover,
.lang-button:focus-visible {
  color: var(--ink);
}

.lang-button.is-active {
  background: var(--ink);
  color: white;
}

.mobile-menu[hidden] {
  display: none !important;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 45;
  display: grid;
  align-items: start;
  justify-items: end;
  padding: 1rem;
}

.mobile-menu-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(12, 17, 27, 0.24);
  cursor: pointer;
}

.mobile-menu-panel {
  position: relative;
  z-index: 1;
  width: min(21rem, calc(100vw - 1rem));
  padding: 1rem;
  border-radius: 1.6rem;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(23, 27, 35, 0.08);
  box-shadow: 0 26px 60px rgba(16, 21, 31, 0.16);
}

.mobile-menu-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.mobile-menu-label {
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.mobile-menu-close {
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
}

.mobile-menu-nav {
  display: grid;
  gap: 0.25rem;
  margin-top: 0.9rem;
}

.mobile-menu-nav a {
  padding: 0.88rem 0.4rem;
  border-top: 1px solid rgba(23, 27, 35, 0.08);
  color: var(--ink);
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 2.4rem;
  align-items: center;
  min-height: clamp(36rem, calc(100svh - 5rem), 49rem);
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 2.9rem 1.5rem 3.4rem;
}

.hero-copy {
  min-width: 0;
  max-width: 33rem;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-eyebrow-marquee {
  position: relative;
  overflow: hidden;
  max-width: min(100%, 33rem);
  padding: 0.15rem 0;
}

.hero-eyebrow-track {
  display: flex;
  width: max-content;
  gap: 0;
  animation: marquee 22s linear infinite;
}

.hero-eyebrow-item {
  position: relative;
  flex: 0 0 auto;
  white-space: nowrap;
  padding-right: 4.2rem;
}

.hero-eyebrow-item::after {
  content: "";
  position: absolute;
  right: 1.8rem;
  top: 50%;
  width: 0.34rem;
  height: 0.34rem;
  border-radius: 999px;
  background: rgba(49, 95, 242, 0.32);
  transform: translateY(-50%);
}

.hero-title,
.section-heading h2,
.contact-copy h2,
.credential-panel h2 {
  margin: 0;
  font-family: "Literata", Georgia, serif;
  font-size: clamp(3.1rem, 7vw, 6.3rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
  max-width: 11ch;
  color: var(--ink);
}

.hero-title {
  font-size: clamp(2.95rem, 6.2vw, 5.55rem);
  max-width: 8.6ch;
}

.hero-body,
.section-lead,
.proof-copy p,
.credential-summary,
.contact-copy p {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

.hero-body {
  max-width: 34rem;
  margin: 1.15rem 0 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.7rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.1rem;
  padding: 0.95rem 1.35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform var(--transition), border-color var(--transition), background var(--transition), color var(--transition);
}

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

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

.button-secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.7);
}

.hero-stage {
  position: relative;
  min-width: 0;
  min-height: 44rem;
  isolation: isolate;
}

.hero-stage::before {
  content: "";
  position: absolute;
  inset: 2.5rem 0 0 7%;
  border-radius: calc(var(--radius-xl) * 1.2);
  background:
    linear-gradient(155deg, rgba(236, 240, 251, 0.98), rgba(248, 246, 241, 0.94) 56%, rgba(235, 239, 250, 0.9)),
    radial-gradient(circle at 20% 24%, rgba(49, 95, 242, 0.14), transparent 18rem),
    radial-gradient(circle at 82% 78%, rgba(23, 27, 35, 0.05), transparent 18rem);
  border: 1px solid rgba(23, 27, 35, 0.08);
  box-shadow: var(--shadow-soft);
}

.hero-stage::after {
  content: "";
  position: absolute;
  inset: auto 3rem 1.5rem auto;
  width: 14rem;
  height: 14rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(49, 95, 242, 0.18), transparent 70%);
  z-index: -1;
}

.hero-stage-surface {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: center;
  min-width: 0;
  min-height: 44rem;
  padding: 3.2rem 0 1.6rem 1.2rem;
  transition: transform 280ms ease;
  will-change: transform;
}

.hero-stage-board {
  position: relative;
  min-width: 0;
  width: min(100%, 34rem);
  margin-left: auto;
}

.hero-stage-window {
  overflow: hidden;
  border-radius: 2rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(241, 245, 251, 0.94));
  border: 1px solid rgba(23, 27, 35, 0.08);
  box-shadow: 0 34px 74px rgba(20, 26, 38, 0.14);
}

.hero-stage-window-top {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.95rem 1.15rem;
  border-bottom: 1px solid rgba(23, 27, 35, 0.08);
  background: rgba(248, 250, 253, 0.9);
}

.hero-stage-dots {
  display: inline-flex;
  gap: 0.35rem;
}

.hero-stage-dots span {
  width: 0.58rem;
  height: 0.58rem;
  border-radius: 50%;
  background: rgba(23, 27, 35, 0.12);
}

.hero-stage-url {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.hero-stage-window-body {
  display: grid;
  gap: 1rem;
  padding: 1.2rem;
}

.hero-stage-sitebar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.hero-stage-site-name {
  font-family: "Literata", Georgia, serif;
  color: var(--ink);
  font-size: 1.65rem;
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.hero-stage-site-links {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 600;
}

.hero-stage-main {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(11.5rem, 0.85fr);
  gap: 1rem;
  align-items: start;
}

.hero-stage-copy-card {
  padding: 1.35rem;
  border-radius: 1.6rem;
  background:
    radial-gradient(circle at top right, rgba(78, 114, 255, 0.12), transparent 12rem),
    linear-gradient(160deg, rgba(247, 248, 252, 0.98), rgba(255, 255, 255, 0.94));
  border: 1px solid rgba(23, 27, 35, 0.07);
}

.hero-stage-kicker {
  display: inline-block;
  color: var(--accent);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-stage-copy-card h3 {
  margin: 0.7rem 0 0;
  color: var(--ink);
  font-size: clamp(2.1rem, 4vw, 2.75rem);
  line-height: 0.96;
  letter-spacing: -0.06em;
  max-width: 8.5ch;
}

.hero-stage-copy-card p {
  margin: 0.85rem 0 0;
  max-width: 19rem;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.6;
}

.hero-stage-actions-preview {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1rem;
}

.hero-stage-action-primary,
.hero-stage-action-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.7rem;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.hero-stage-action-primary {
  background: var(--ink);
  color: white;
}

.hero-stage-action-secondary {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(23, 27, 35, 0.08);
  color: var(--ink);
}

.hero-stage-info-stack {
  display: grid;
  gap: 0.8rem;
}

.hero-stage-info-card {
  padding: 1rem;
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(23, 27, 35, 0.08);
  box-shadow: 0 10px 24px rgba(20, 26, 38, 0.05);
}

.hero-stage-info-card strong {
  display: block;
  color: var(--ink);
  font-size: 0.95rem;
  line-height: 1.35;
}

.hero-stage-info-card p {
  margin: 0.42rem 0 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.55;
}

.hero-stage-mobile {
  position: absolute;
  left: -1.35rem;
  bottom: 1.5rem;
  width: 10.8rem;
  transform: rotate(-6deg);
}

.hero-stage-mobile-shell {
  padding: 0.72rem;
  border-radius: 1.8rem;
  background: rgba(23, 27, 35, 0.97);
  box-shadow: 0 28px 58px rgba(16, 21, 31, 0.2);
}

.hero-stage-mobile-notch {
  width: 3.5rem;
  height: 0.34rem;
  margin: 0 auto 0.7rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
}

.hero-stage-mobile-screen {
  padding: 1rem 0.9rem;
  border-radius: 1.22rem;
  background: linear-gradient(180deg, rgba(248, 250, 253, 0.98), rgba(237, 241, 249, 0.96));
}

.hero-stage-mobile-label {
  display: inline-block;
  color: var(--accent);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-stage-mobile-screen strong {
  display: block;
  margin-top: 0.42rem;
  color: var(--ink);
  font-size: 1.18rem;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.hero-stage-mobile-screen p {
  margin: 0.55rem 0 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.5;
}

.hero-stage-mobile-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.38rem;
  margin-top: 0.85rem;
}

.hero-stage-mobile-pills span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 0.62rem;
  border-radius: 999px;
  background: rgba(23, 27, 35, 0.08);
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 600;
}

.marquee-band {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.62);
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: 0;
  padding: 0.95rem 0;
  color: rgba(23, 27, 35, 0.72);
  font-size: 0.88rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  animation: marquee 22s linear infinite;
}

.marquee-item {
  position: relative;
  flex: 0 0 auto;
  white-space: nowrap;
  padding-right: 4.2rem;
}

.marquee-item::after {
  content: "";
  position: absolute;
  right: 1.8rem;
  top: 50%;
  width: 0.34rem;
  height: 0.34rem;
  border-radius: 999px;
  background: rgba(23, 27, 35, 0.28);
  transform: translateY(-50%);
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.section {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 5rem 1.5rem;
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr);
  gap: 2rem;
  align-items: end;
}

.section-heading {
  min-width: 0;
  max-width: 40rem;
}

.section-heading h2,
.contact-copy h2,
.credential-panel h2 {
  max-width: 12ch;
  font-size: clamp(2.4rem, 4.6vw, 4.4rem);
}

.section-lead {
  margin: 1rem 0 0;
  min-width: 0;
  max-width: 36rem;
}

.benefit-table-wrap {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  touch-action: pan-x;
  border: 1px solid rgba(23, 27, 35, 0.08);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(244, 246, 251, 0.8));
}

.benefit-table-wrap::-webkit-scrollbar,
.plan-table-wrap::-webkit-scrollbar {
  height: 0.6rem;
}

.benefit-table-wrap::-webkit-scrollbar-track,
.plan-table-wrap::-webkit-scrollbar-track {
  background: rgba(23, 27, 35, 0.06);
  border-radius: 999px;
}

.benefit-table-wrap::-webkit-scrollbar-thumb,
.plan-table-wrap::-webkit-scrollbar-thumb {
  background: rgba(57, 73, 106, 0.35);
  border-radius: 999px;
}

.benefit-table {
  width: 100%;
  min-width: 52rem;
  border-collapse: collapse;
  table-layout: fixed;
}

.benefit-col-index {
  width: 4.5rem;
}

.benefit-col-title {
  width: 21rem;
}

.benefit-col-help {
  width: auto;
}

.benefit-table thead th {
  padding: 1rem 1.25rem;
  text-align: left;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(23, 27, 35, 0.08);
  vertical-align: top;
}

.benefit-table thead th:nth-child(2) {
  padding-left: 1.25rem;
}

.benefit-index-head {
  width: auto;
}

.benefit-table tbody tr + tr td,
.benefit-table tbody tr + tr th {
  border-top: 1px solid rgba(23, 27, 35, 0.06);
}

.benefit-table tbody td,
.benefit-table tbody th {
  padding: 1.2rem 1.25rem;
  vertical-align: top;
  text-align: left;
}

.benefit-index {
  width: auto;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.benefit-title {
  width: auto;
  padding-left: 1.25rem;
  padding-right: 1.4rem;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.4;
  white-space: nowrap;
  text-align: left !important;
}

.benefit-help {
  color: var(--muted);
  line-height: 1.65;
  width: auto;
}

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

.benefit-panel,
.plan,
.credential-panel,
.contact-card {
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(23, 27, 35, 0.08);
  border-radius: var(--radius-lg);
}

.benefit-panel {
  grid-column: span 4;
  padding: 1.5rem;
  min-height: 15.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(244, 246, 251, 0.78));
}

.benefit-panel-large {
  grid-column: span 6;
  min-height: 19rem;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.98), rgba(232, 238, 252, 0.86));
}

.panel-index,
.plan-kicker,
.contact-label,
.credential-year {
  display: inline-block;
  margin-bottom: 1rem;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.credential-year {
  letter-spacing: 0.09em;
}

.benefit-panel h3,
.plan h3 {
  margin: 0 0 0.7rem;
  font-size: 1.45rem;
  letter-spacing: -0.04em;
}

.benefit-panel p,
.plan-description,
.plan-list,
.credential-item p,
.contact-card strong {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.credential-link {
  display: flex;
  align-items: center;
  gap: 0.38rem;
  width: fit-content;
  margin-top: 0.18rem;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.5;
  text-decoration: none;
  border-bottom: 1px solid rgba(64, 91, 245, 0.18);
  padding-bottom: 0.08rem;
  transition: color 180ms ease, border-color 180ms ease;
}

.credential-link:hover,
.credential-link:focus-visible {
  color: var(--ink);
  border-color: var(--accent);
}

.credential-link-icon {
  width: 0.88rem;
  height: 0.88rem;
  flex: 0 0 auto;
  opacity: 0.78;
  transform: translateY(-0.02rem);
}

.credential-link:focus-visible {
  outline: 2px solid rgba(64, 91, 245, 0.22);
  outline-offset: 0.22rem;
  border-radius: 0.3rem;
}

.plans .section-heading {
  margin-bottom: 2rem;
}

.plan-cards {
  display: none;
}

.plan-table-wrap {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  touch-action: pan-x;
  border: 1px solid rgba(23, 27, 35, 0.08);
  border-radius: calc(var(--radius-xl) * 0.92);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 42px rgba(17, 24, 39, 0.06);
}

.plan-table {
  width: 100%;
  min-width: 52rem;
  border-collapse: separate;
  border-spacing: 0;
}

.plan-table thead th {
  padding: 1.25rem 1.15rem;
  text-align: left;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(23, 27, 35, 0.08);
  background: rgba(249, 250, 252, 0.96);
}

.plan-table thead th + th {
  text-align: center;
}

.plan-feature-head {
  min-width: 17rem;
}

.plan-column {
  min-width: 11rem;
}

.plan-column-name {
  display: block;
  color: var(--ink);
  font-size: 1.12rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  text-transform: none;
}

.plan-column-note {
  display: block;
  margin-top: 0.28rem;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: normal;
  line-height: 1.45;
  text-transform: none;
}

.plan-table tbody th,
.plan-table tbody td {
  padding: 1rem 1.15rem;
  border-bottom: 1px solid rgba(23, 27, 35, 0.06);
  vertical-align: middle;
}

.plan-table tbody th {
  color: var(--ink);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.45;
  text-align: left;
}

.plan-label-primary {
  display: block;
  color: var(--ink);
  font-weight: 600;
}

.plan-label-detail {
  display: block;
  margin-top: 0.18rem;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.45;
}

.plan-table tbody td {
  text-align: center;
}

.plan-table tbody tr:last-child th,
.plan-table tbody tr:last-child td {
  border-bottom: 0;
}

.plan-cell-manage,
.plan-column-manage {
  background: rgba(67, 102, 255, 0.038);
}

.plan-cell-grow,
.plan-column-grow {
  background: rgba(67, 102, 255, 0.072);
}

.plan-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 8.4rem;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.35;
}

.plan-status.is-included {
  background: rgba(23, 27, 35, 0.96);
  color: white;
}

.plan-status.is-added {
  background: rgba(67, 102, 255, 0.12);
  color: var(--accent);
}

.plan-status.is-muted {
  background: rgba(23, 27, 35, 0.06);
  color: var(--muted);
}

.plan-card {
  padding: 1.4rem 1.2rem 1.25rem;
  border-radius: 1.5rem;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(23, 27, 35, 0.08);
  box-shadow: 0 18px 40px rgba(17, 24, 39, 0.06);
}

.plan-card-featured {
  background: linear-gradient(180deg, rgba(23, 27, 35, 0.98), rgba(31, 39, 54, 0.98));
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 22px 46px rgba(16, 21, 31, 0.16);
}

.plan-card-kicker {
  display: inline-block;
  margin: 0;
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.plan-card h3 {
  margin: 0.55rem 0 0;
  color: var(--ink);
  font-size: 1.5rem;
  letter-spacing: -0.05em;
}

.plan-card-body {
  margin: 0.8rem 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.plan-card-list {
  margin: 1rem 0 0;
  padding-left: 1.1rem;
  display: grid;
  gap: 0.55rem;
  color: var(--muted);
  line-height: 1.6;
}

.plan-card-list .plan-label-primary {
  display: inline;
}

.plan-card-list .plan-label-detail {
  display: block;
  margin-top: 0.08rem;
  font-size: 0.94rem;
}

.plan-card-featured .plan-card-kicker {
  color: rgba(255, 255, 255, 0.64);
}

.plan-card-featured h3,
.plan-card-featured .plan-card-body,
.plan-card-featured .plan-card-list {
  color: white;
}

.plan-card-featured .plan-label-detail {
  color: rgba(255, 255, 255, 0.76);
}

.proof {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.96fr);
  gap: 1rem;
  align-items: start;
}

.proof-copy {
  min-width: 0;
  padding-right: 1rem;
}

.proof-lines {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.proof-actions {
  margin-top: 1.6rem;
}

.proof-lines > div {
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.proof-label {
  display: inline-block;
  margin-bottom: 0.6rem;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.credential-panel {
  min-width: 0;
  padding: 2.3rem 3.4rem 2.3rem 2.1rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(237, 241, 249, 0.9));
}

.credential-intro {
  display: grid;
  grid-template-columns: 9rem minmax(0, 1fr);
  gap: 1.35rem;
  align-items: start;
}

.founder-portrait {
  display: block;
  width: 9rem;
  height: 9rem;
  justify-self: start;
  object-fit: cover;
  border-radius: 1.5rem;
  border: 1px solid rgba(23, 27, 35, 0.08);
  box-shadow: 0 16px 36px rgba(20, 26, 38, 0.1);
  background: rgba(255, 255, 255, 0.7);
}

.credential-copy {
  min-width: 0;
  max-width: 19.25rem;
  padding-right: 1rem;
}

.credential-panel h2 {
  max-width: 15.5rem;
  font-size: clamp(2.7rem, 4.05vw, 4.35rem);
  line-height: 0.975;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.credential-copy .eyebrow {
  margin-bottom: 0.7rem;
}

.credential-summary {
  margin: 1rem 0 0;
  max-width: 18.25rem;
}

.credential-rail {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
  min-width: 0;
  padding-right: 0.75rem;
}

.credential-item {
  padding-top: 1rem;
  border-top: 1px solid rgba(23, 27, 35, 0.09);
}

.contact {
  padding-top: 2.5rem;
  padding-bottom: 6rem;
}

.contact-shell {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(22rem, 1fr);
  gap: 2.3rem;
  width: 100%;
  padding: 2.55rem;
  border-radius: calc(var(--radius-xl) * 1.05);
  background:
    radial-gradient(circle at 88% 16%, rgba(97, 132, 255, 0.38), transparent 16rem),
    radial-gradient(circle at 0% 100%, rgba(255, 255, 255, 0.1), transparent 18rem),
    linear-gradient(180deg, rgba(20, 25, 35, 0.99), rgba(28, 36, 50, 0.98));
  box-shadow: 0 30px 70px rgba(16, 21, 31, 0.18);
}

.contact-shell::before {
  content: "";
  position: absolute;
  inset: 1.1rem;
  border-radius: calc(var(--radius-xl) * 0.9);
  border: 1px solid rgba(255, 255, 255, 0.08);
  pointer-events: none;
  z-index: 0;
}

.contact-shell::after {
  content: "";
  position: absolute;
  right: 2.1rem;
  top: 2rem;
  width: 7.5rem;
  height: 7.5rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0));
  pointer-events: none;
  z-index: 0;
}

.contact-direct {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: center;
  min-width: 0;
  padding-top: 2rem;
  padding-bottom: 4.5rem;
}

.contact-copy {
  position: relative;
  min-width: 0;
  max-width: 24rem;
  display: grid;
  align-content: start;
  gap: 0.8rem;
}

.contact-eyebrow {
  position: absolute;
  left: 0;
  top: 0;
  margin: 0;
  color: white;
  font-size: 1.02rem;
  letter-spacing: 0.08em;
}

.contact-copy .eyebrow,
.contact-copy h2,
.contact-copy p {
  color: white;
}

.contact-copy h2 {
  margin: 0.15rem 0 0;
  max-width: 10ch;
}

.contact-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  max-width: 24rem;
}

.contact-note {
  max-width: 22rem;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.98rem;
}

.contact-fallback {
  position: absolute;
  left: 0;
  bottom: 0;
  margin: 0;
  max-width: 24rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.55;
}

.contact-fallback-link {
  color: white;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  transition:
    color var(--transition),
    border-color var(--transition);
}

.contact-fallback-link:hover,
.contact-fallback-link:focus-visible {
  color: rgba(255, 255, 255, 0.86);
  border-color: rgba(255, 255, 255, 0.34);
}

.contact-form-panel {
  position: relative;
  z-index: 1;
  align-self: stretch;
  height: 100%;
  min-width: 0;
  display: grid;
  grid-template-rows: auto auto auto minmax(0, 1fr);
  align-content: stretch;
  gap: 1rem;
  padding: 1.55rem;
  border-radius: 1.7rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 247, 252, 0.94)),
    linear-gradient(135deg, rgba(67, 102, 255, 0.08), transparent 55%);
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: 0 18px 44px rgba(10, 16, 27, 0.12);
}

.contact-form-panel .eyebrow {
  margin-bottom: 0.15rem;
  color: var(--accent);
}

.contact-form-title {
  margin: 0;
  font-family: "Literata", Georgia, serif;
  font-size: clamp(2rem, 3.6vw, 2.75rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 0.98;
  color: var(--ink);
  max-width: 10ch;
}

.contact-form-body {
  margin: 0;
  max-width: 31rem;
  color: var(--muted);
  line-height: 1.65;
}

.contact-form {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  gap: 1rem;
}

.contact-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem 0.8rem;
  flex: 1 1 auto;
  align-content: space-between;
}

.form-field {
  display: grid;
  gap: 0.42rem;
  min-width: 0;
}

.form-field-wide {
  grid-column: 1 / -1;
}

.form-label {
  color: var(--ink);
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  min-width: 0;
  border: 1px solid rgba(23, 27, 35, 0.1);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  padding: 0.9rem 0.95rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.68);
  transition:
    border-color var(--transition),
    box-shadow var(--transition),
    background var(--transition);
}

.contact-form textarea {
  min-height: 8rem;
  resize: vertical;
}

.contact-form select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(23, 27, 35, 0.72) 50%),
    linear-gradient(135deg, rgba(23, 27, 35, 0.72) 50%, transparent 50%);
  background-position:
    calc(100% - 1.15rem) calc(50% - 0.12rem),
    calc(100% - 0.82rem) calc(50% - 0.12rem);
  background-size: 0.36rem 0.36rem, 0.36rem 0.36rem;
  background-repeat: no-repeat;
  padding-right: 2.4rem;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(104, 112, 125, 0.8);
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: rgba(49, 95, 242, 0.48);
  box-shadow:
    0 0 0 4px rgba(49, 95, 242, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.78);
  background: white;
}

.form-field-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.contact-form-footer {
  display: grid;
  gap: 0.7rem;
  margin-top: auto;
}

.contact-form-submit {
  justify-self: start;
}

.contact-form-submit[disabled] {
  opacity: 0.76;
  cursor: wait;
}

.contact-form-status {
  min-height: 1.5rem;
  margin: 0;
  color: transparent;
  font-size: 0.94rem;
  line-height: 1.5;
}

.contact-form-status.is-visible {
  color: var(--muted);
}

.contact-form-status.is-success {
  color: var(--success);
}

.contact-form-status.is-error {
  color: #bf4b4b;
}

body.menu-open {
  overflow: hidden;
}

.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .site-header {
    grid-template-columns: 1fr auto;
    gap: 1rem;
  }

  .site-nav {
    display: none;
  }

  .menu-button {
    display: inline-flex;
  }

  .hero,
  .intro,
  .proof,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero {
    gap: 2rem;
    padding-top: 1.9rem;
  }

  .hero-stage {
    min-height: auto;
  }

  .hero-stage-surface {
    min-height: 35rem;
    padding: 2.6rem 0.35rem 0.8rem;
  }

  .hero-stage-board {
    width: min(100%, 36rem);
  }

  .hero-stage-main {
    grid-template-columns: 1fr;
  }

  .hero-stage-mobile {
    left: auto;
    right: 0.35rem;
    bottom: -0.35rem;
    transform: none;
    width: 9.6rem;
  }

  .benefit-panel,
  .benefit-panel-large {
    grid-column: span 6;
  }

  .credential-intro {
    grid-template-columns: 1fr;
  }

  .credential-panel {
    width: 100%;
    max-width: 44rem;
    justify-self: start;
  }

  .founder-portrait {
    width: min(100%, 13rem);
    height: min(100%, 13rem);
    max-width: 13rem;
  }

  .credential-copy,
  .credential-rail {
    max-width: none;
    padding-right: 0;
  }

  .contact-shell {
    grid-template-columns: 1fr;
  }

  .plan-table {
    min-width: 48rem;
  }
}

@media (max-width: 900px) {
  .benefit-table-wrap,
  .plan-table-wrap {
    scrollbar-width: thin;
    scrollbar-color: rgba(57, 73, 106, 0.35) rgba(23, 27, 35, 0.06);
  }

  .benefit-table {
    min-width: 46rem;
  }

  .plan-table {
    min-width: 48rem;
  }
}

@media (max-width: 760px) {
  :root {
    --nav-scroll-offset: 5.7rem;
  }

  .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.75rem;
    padding: 1rem;
  }

  .brandmark-word {
    font-size: 1.05rem;
  }

  .brandmark-note {
    max-width: 11rem;
    font-size: 0.68rem;
  }

  .language-toggle {
    padding: 0.22rem;
  }

  .lang-button {
    min-width: 2.25rem;
    padding: 0.42rem 0.62rem;
  }

  .hero,
  .section {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .contact {
    padding-bottom: 4.2rem;
  }

  .hero {
    min-height: auto;
    padding-top: 1.5rem;
    padding-bottom: 2.6rem;
  }

  .hero-copy {
    max-width: 100%;
  }

  .hero-title,
  .section-heading h2,
  .contact-copy h2,
  .credential-panel h2 {
    font-size: clamp(2.15rem, 11.5vw, 3.2rem);
    max-width: 8.5ch;
  }

  .hero-stage {
    display: none;
  }

  .hero-stage-window-body {
    padding: 0.95rem;
  }

  .hero-stage-sitebar {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.55rem;
  }

  .hero-stage-site-links {
    flex-wrap: wrap;
  }

  .hero-stage-copy-card {
    padding: 1.05rem;
  }

  .hero-stage-copy-card h3 {
    font-size: clamp(1.9rem, 8vw, 2.4rem);
  }

  .hero-stage-mobile {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    width: min(100%, 13.5rem);
    margin: 1rem auto 0;
    transform: none;
  }

  .contact-form-grid {
    grid-template-columns: 1fr;
  }

  .form-field-wide {
    grid-column: auto;
  }

  .proof-lines {
    grid-template-columns: 1fr;
  }

  .proof-actions {
    margin-top: 1.2rem;
  }

  .credential-panel {
    padding: 1.7rem 1.35rem;
  }

  .credential-intro {
    gap: 1.15rem;
  }

  .credential-summary,
  .credential-copy,
  .credential-rail {
    max-width: 100%;
    padding-right: 0;
  }

  .marquee-track {
    animation-duration: 28s;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
  }

  .marquee-item {
    padding-right: 2.7rem;
  }

  .marquee-item::after {
    right: 1.25rem;
  }

  .hero-eyebrow-item {
    padding-right: 2.7rem;
  }

  .hero-eyebrow-item::after {
    right: 1.25rem;
  }

  .hero-body,
  .section-lead,
  .proof-copy p,
  .credential-summary,
  .contact-copy p {
    font-size: 1rem;
    line-height: 1.65;
  }
}

@media (max-width: 480px) {
  :root {
    --nav-scroll-offset: 5.35rem;
  }

  .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: start;
    padding: 0.9rem;
  }

  .brandmark {
    max-width: calc(100vw - 6.4rem);
  }

  .brandmark-note {
    max-width: 100%;
  }

  .language-toggle {
    margin-top: 0.05rem;
  }

  .menu-button {
    min-height: 2.7rem;
    padding: 0.62rem 0.9rem;
  }

  .hero,
  .section {
    padding-left: 0.9rem;
    padding-right: 0.9rem;
  }

  .section {
    padding-top: 3.9rem;
    padding-bottom: 3.9rem;
  }

  .hero {
    gap: 1.7rem;
    padding-top: 1.15rem;
  }

  .hero-copy,
  .section-heading,
  .section-lead,
  .hero-body,
  .proof-copy,
  .contact-copy {
    max-width: 100%;
  }

  .eyebrow {
    font-size: 0.74rem;
    letter-spacing: 0.09em;
  }

  .hero-title,
  .section-heading h2,
  .contact-copy h2,
  .credential-panel h2 {
    font-size: clamp(1.95rem, 11.2vw, 2.85rem);
    max-width: 8ch;
  }

  .hero-actions {
    gap: 0.7rem;
  }

  .button {
    min-height: 3rem;
    padding: 0.9rem 1.15rem;
  }

  .hero-stage-window-top {
    gap: 0.6rem;
    padding: 0.8rem 0.95rem;
  }

  .hero-stage-url {
    font-size: 0.72rem;
    letter-spacing: 0.02em;
  }

  .hero-stage-site-links {
    gap: 0.8rem;
    font-size: 0.82rem;
  }

  .hero-stage-window-body {
    padding: 0.85rem;
  }

  .hero-stage-copy-card h3 {
    font-size: clamp(1.45rem, 7.4vw, 1.88rem);
  }

  .hero-stage-copy-card p,
  .hero-stage-info-card p,
  .hero-stage-mobile-screen p {
    font-size: 0.96rem;
  }

  .section-lead,
  .proof-copy p,
  .credential-summary,
  .contact-copy p,
  .hero-body {
    font-size: 0.96rem;
  }

  .hero-stage::before {
    inset: 1.2rem 0 0 0.35rem;
  }

  .hero-stage-copy-card {
    padding: 0.95rem;
  }

  .hero-stage-info-card {
    padding: 0.9rem;
  }

  .marquee-track {
    padding: 0.78rem 0;
    font-size: 0.74rem;
    letter-spacing: 0.08em;
  }

  .marquee-item {
    padding-right: 2.2rem;
  }

  .marquee-item::after {
    right: 0.95rem;
  }

  .hero-eyebrow-item {
    padding-right: 2.2rem;
  }

  .hero-eyebrow-item::after {
    right: 0.95rem;
  }

  .benefit-table {
    min-width: 46rem;
  }

  .plan-table {
    min-width: 48rem;
  }

  .credential-panel {
    padding: 1.45rem 1.05rem;
  }

  .founder-portrait {
    width: min(100%, 10.5rem);
    height: min(100%, 10.5rem);
    max-width: 10.5rem;
  }

  .contact-shell {
    gap: 1.15rem;
    padding: 1.15rem;
  }

  .contact-form-panel {
    gap: 0.85rem;
    padding: 1.1rem;
  }

  .contact-form-title {
    font-size: clamp(1.72rem, 8vw, 2.25rem);
    max-width: 11ch;
  }

  .contact-form input,
  .contact-form textarea,
  .contact-form select {
    padding: 0.85rem 0.9rem;
  }
}

@media (max-width: 360px) {
  :root {
    --nav-scroll-offset: 5rem;
  }

  .site-header {
    padding: 0.8rem 0.75rem;
  }

  .header-controls {
    gap: 0.45rem;
  }

  .brandmark {
    max-width: calc(100vw - 7.2rem);
  }

  .brandmark-note {
    display: none;
  }

  .menu-button {
    min-height: 2.55rem;
    padding: 0.55rem 0.8rem;
    font-size: 0.86rem;
  }

  .language-toggle {
    gap: 0.2rem;
    padding: 0.18rem;
  }

  .lang-button {
    min-width: 2.05rem;
    padding: 0.38rem 0.52rem;
  }

  .hero,
  .section {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  .hero {
    gap: 1.55rem;
    padding-top: 1rem;
    padding-bottom: 2.45rem;
  }

  .hero-title,
  .section-heading h2,
  .contact-copy h2,
  .credential-panel h2 {
    font-size: clamp(1.78rem, 10.6vw, 2.45rem);
    max-width: 8.15ch;
  }

  .hero-body,
  .section-lead,
  .proof-copy p,
  .credential-summary,
  .contact-copy p {
    font-size: 0.93rem;
    line-height: 1.6;
  }

  .hero-actions {
    gap: 0.55rem;
  }

  .button {
    min-height: 2.85rem;
    padding: 0.82rem 1.02rem;
  }

  .hero-stage-surface {
    display: none;
  }

  .hero-stage-window {
    border-radius: 1.55rem;
  }

  .hero-stage-window-top {
    padding: 0.72rem 0.82rem;
  }

  .hero-stage-window-body {
    padding: 0.78rem;
  }

  .hero-stage-copy-card {
    padding: 0.92rem;
    border-radius: 1.25rem;
  }

  .hero-stage-copy-card h3 {
    font-size: clamp(1.32rem, 7vw, 1.7rem);
  }

  .hero-stage-mobile {
    width: min(100%, 12rem);
    margin-top: 0.8rem;
  }

  .marquee-band {
    display: none;
  }

  .contact-shell {
    gap: 1rem;
    padding: 1.05rem;
  }

  .contact-form-panel {
    padding: 1rem;
  }

  .contact-note {
    font-size: 0.92rem;
  }

}

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

  .reveal,
  .reveal.is-visible,
  .button,
  .lang-button,
  .site-nav a {
    transition: none;
    transform: none;
    opacity: 1;
  }

  .marquee-track {
    animation: none;
  }

  .hero-eyebrow-track {
    animation: none;
  }
}
