@font-face {
  font-family: "DM Sans";
  src: url(../fonts/dmsans-latin.woff2) format("woff2");
  font-weight: 100 1000;
  font-display: swap;
}
@font-face {
  font-family: "Space Grotesk";
  src: url(../fonts/spacegrotesk-latin.woff2) format("woff2");
  font-weight: 300 700;
  font-display: swap;
}
:root {
  color-scheme: light;
  --bg: #f7f8f2;
  --surface: #fff;
  --surface-soft: #eff1e9;
  --ink: #171b20;
  --muted: #596159;
  --line: #d8ddd3;
  --lavender: #b6a4fa;
  --lime: #c1f491;
  --accent: #6851a8;
  --lavender-soft: #eee8fc;
  --lime-soft: #eaf4df;
  --button-ink: #171b20;
  --header: rgba(247, 248, 242, 0.94);
  --shadow: 0 24px 64px -24px rgba(36, 44, 25, 0.18);
  --error: #a52d39;
  --success: #2d672b;
  --ff-head: "Space Grotesk", sans-serif;
  --ff-body: "DM Sans", sans-serif;
}
:root[data-theme="dark"] {
  color-scheme: dark;
  --bg: #090b11;
  --surface: #131720;
  --surface-soft: #181d25;
  --ink: #f0f2eb;
  --muted: #a9b0b3;
  --line: #303640;
  --accent: #c4b3ff;
  --lavender-soft: #29223f;
  --lime-soft: #26351e;
  --header: rgba(9, 11, 17, 0.94);
  --shadow: 0 24px 64px -24px rgba(0, 0, 0, 0.6);
  --error: #ffadb6;
  --success: #c1f491;
}
* {
  box-sizing: border-box;
}
body,
h1,
h2,
h3,
p,
ul,
ol {
  margin: 0;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 104px;
}
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--ff-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
button,
input,
textarea,
select {
  font: inherit;
}
button,
a,
input,
textarea {
  -webkit-tap-highlight-color: transparent;
}
button {
  cursor: pointer;
}
a {
  color: inherit;
  text-decoration: none;
}
img,
svg {
  display: block;
  max-width: 100%;
}
button {
  color: inherit;
}
button:disabled {
  cursor: wait;
  opacity: 0.65;
}
button:focus-visible,
a:focus-visible,
summary:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 5px;
}
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
[hidden] {
  display: none !important;
}
::selection {
  background: var(--lavender);
  color: #171b20;
}
.container {
  width: min(1280px, calc(100% - 96px));
  margin-inline: auto;
}
.section {
  padding-block: 104px;
}
h1,
h2,
h3 {
  font-family: var(--ff-head);
  font-weight: 500;
}
h2 {
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.12;
  letter-spacing: -0.055em;
}
h3 {
  font-size: 23px;
  letter-spacing: -0.035em;
  line-height: 1.3;
}
.eyebrow {
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 650;
  margin-bottom: 24px;
}
.accent-text {
  color: var(--accent);
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  min-height: 54px;
  padding: 16px 24px;
  border-radius: 12px;
  border: 1px solid transparent;
  font-weight: 650;
  font-size: 15px;
  line-height: 1.4;
  transition:
    background 0.18s,
    border-color 0.18s,
    box-shadow 0.18s;
}
.btn-primary {
  background: var(--lime);
  color: var(--button-ink);
  border-color: var(--lime);
}
.btn-primary:hover {
  background: #b1e580;
  border-color: #b1e580;
  box-shadow: 0 4px 16px #87b75722;
}
.btn-outline {
  border-color: var(--line);
  background: transparent;
}
.btn-outline:hover {
  background: var(--surface-soft);
  border-color: var(--muted);
}
.btn-small {
  min-height: 46px;
  padding: 10px 17px;
  gap: 18px;
  font-size: 14px;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  min-height: 44px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 5px;
  text-decoration-color: var(--line);
}
.text-link:hover {
  text-decoration: underline;
  text-underline-offset: 5px;
}
.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 100;
  padding: 12px 20px;
  background: var(--lime);
  color: #171b20;
  transform: translateY(-150%);
}
.skip-link:focus {
  transform: translateY(0);
}
.site-header,
body > header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--header);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
  gap: 28px;
}
.logo {
  display: inline-block;
  flex-shrink: 0;
}
.logo img {
  width: 155px;
  height: auto;
}
.logo-dark {
  display: none;
}
:root[data-theme="dark"] .logo-light {
  display: none;
}
:root[data-theme="dark"] .logo-dark {
  display: block;
}
.desktop-nav {
  display: flex;
  gap: 33px;
  margin-left: auto;
  margin-right: 30px;
}
.desktop-nav a,
.login-link {
  font-size: 14px;
  font-weight: 550;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}
.desktop-nav a:hover,
.login-link:hover {
  color: var(--accent);
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 22px;
}
.theme-toggle,
.mobile-toggle,
.icon-button {
  height: 44px;
  width: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.theme-toggle svg {
  width: 19px;
  height: 19px;
}
.theme-toggle:hover,
.icon-button:hover {
  background: var(--surface-soft);
}
.sun-icon {
  display: none;
}
:root[data-theme="dark"] .moon-icon {
  display: none;
}
:root[data-theme="dark"] .sun-icon {
  display: block;
}
.mobile-toggle {
  display: none;
}
.mobile-menu {
  position: fixed;
  z-index: 101;
  inset: 0 0 0 auto;
  margin: 0;
  width: min(380px, 90vw);
  height: 100vh;
  height: 100dvh;
  max-height: none;
  border: 0;
  border-left: 1px solid var(--line);
  background: var(--bg);
  color: var(--ink);
  padding: 24px;
  overflow-y: auto;
}
.mobile-menu:not([open]) {
  display: none;
}
.mobile-menu[open] {
  display: block;
}
.mobile-menu::backdrop {
  background: #0008;
}
body.menu-fallback-open::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 100;
  background: #0008;
}
.menu-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
.icon-button {
  font-size: 27px;
}
.mobile-menu nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.mobile-menu nav a {
  padding: 13px 8px;
  font-size: 18px;
}
.mobile-menu nav .btn {
  margin-top: 16px;
  font-size: 15px;
}
body.menu-open {
  overflow: hidden;
}
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 56px;
  padding-block: 64px 64px;
}
.hero-copy .eyebrow {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 11px;
  letter-spacing: 0.08em;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 99px;
  width: fit-content;
  padding: 8px 12px;
}
h1 {
  font-size: clamp(52px, 5.5vw, 78px);
  line-height: 1.07;
  letter-spacing: -0.065em;
}
.highlight {
  position: relative;
  display: inline-block;
  isolation: isolate;
  white-space: nowrap;
}
.highlight:after {
  content: "";
  position: absolute;
  left: 0;
  right: -4px;
  bottom: 4px;
  height: 26%;
  background: var(--lavender);
  opacity: 0.72;
  z-index: -1;
  transform: rotate(-1.4deg);
}
:root[data-theme="dark"] .highlight:after {
  opacity: 0.4;
}
.hero-description {
  font-size: 18px;
  line-height: 1.75;
  max-width: 465px;
  margin-top: 28px;
  color: var(--muted);
}
.hero-ctas {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: min(100%, 360px);
  gap: 12px;
  margin-top: 32px;
}
.hero-ctas .btn {
  min-height: 56px;
  padding: 16px 20px;
  font-size: 15px;
  line-height: 1.4;
  text-align: center;
}
.hero-ctas .btn-outline {
  background: var(--surface);
  border-color: color-mix(in srgb, var(--muted) 75%, var(--surface));
  font-weight: 600;
  transition:
    border-color 0.18s,
    box-shadow 0.18s;
}
.hero-ctas .btn-outline:hover {
  background: var(--surface-soft);
  border-color: var(--muted);
}
.cta-note {
  font-size: 12px;
  color: var(--muted);
  margin-top: 17px;
  line-height: 1.8;
  max-width: 410px;
}
.hero-visual {
  position: relative;
  padding: 12px 0 0;
  min-width: 0;
  isolation: isolate;
}
.visual-orbit {
  position: absolute;
  border: 1px solid var(--line);
  border-radius: 50%;
  z-index: -1;
  pointer-events: none;
}
.orbit-one {
  width: 90%;
  aspect-ratio: 1;
  top: -12px;
  left: -16px;
}
.orbit-two {
  width: 72%;
  aspect-ratio: 0.72;
  top: -24px;
  left: 48px;
  transform: rotate(42deg);
}
.context-pill {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  width: max-content;
  max-width: 94%;
  margin: 0 0 -8px 24px;
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
  box-shadow: 0 6px 24px #171b200a;
  transform: rotate(-3deg);
  font-size: 12px;
  line-height: 1.7;
  color: var(--muted);
}
.context-pill strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}
.context-check {
  margin-left: 14px;
  border: 1px solid var(--line);
  border-radius: 50%;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  color: var(--success);
  font-size: 13px;
}
.opportunity-preview {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.preview-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  padding: 26px 24px 18px;
  font-size: 12px;
  font-weight: 600;
}
.preview-toolbar > span {
  display: flex;
  align-items: center;
  gap: 8px;
}
.status-dot {
  height: 7px;
  width: 7px;
  background: var(--success);
  border-radius: 50%;
  display: inline-block;
}
.preview-toolbar > svg {
  color: var(--accent);
}
.preview-company {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  padding: 24px;
}
.company-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--lavender-soft);
  font-family: var(--ff-head);
  font-weight: 600;
  font-size: 31px;
  letter-spacing: -0.09em;
  border-color: transparent;
  flex-shrink: 0;
}
.preview-company h2 {
  font-size: 24px;
  letter-spacing: -0.045em;
  line-height: 1.2;
}
.preview-company p {
  font-size: 12px;
  color: var(--muted);
  margin-top: 4px;
}
.fit-pill {
  margin-left: auto;
  background: var(--lime-soft);
  color: var(--success);
  font-size: 11px;
  border-radius: 20px;
  padding: 6px 10px;
  font-weight: 600;
  white-space: nowrap;
}
.preview-tabs {
  display: flex;
  gap: 4px;
  margin-inline: 24px;
  padding: 4px;
  background: var(--surface-soft);
  border-radius: 10px;
}
.preview-tabs button {
  border: 0;
  background: transparent;
  flex: 1;
  font-size: 12px;
  padding: 8px 3px;
  border-radius: 7px;
  color: var(--muted);
  min-height: 44px;
  white-space: nowrap;
}
.preview-tabs button[aria-selected="true"] {
  background: var(--surface);
  color: var(--ink);
  box-shadow: 0 1px 4px #0000000d;
  font-weight: 600;
}
.preview-panels {
  display: grid;
}
.preview-panels > .preview-panel {
  grid-area: 1 / 1;
}
/* Invisible panels reserve only the space their content needs. */
.preview-panels > .preview-panel[hidden] {
  display: block !important;
  visibility: hidden;
}
.preview-panel {
  padding: 24px;
}
.panel-kicker {
  display: block;
  font-size: 11px;
  letter-spacing: 0.08em;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 13px;
}
.preview-panel h3 {
  font-size: 32px;
  line-height: 1.14;
  letter-spacing: -0.045em;
  text-wrap: wrap;
}
.preview-panel > p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
  margin-top: 13px;
  max-width: none;
}
.signal-source {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: 20px;
  font-size: 12px;
  line-height: 1.65;
}
.signal-source small {
  display: block;
  font-size: 11px;
  color: var(--muted);
}
.source-icon {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  width: 29px;
  height: 29px;
  border-radius: 6px;
  background: var(--lavender-soft);
  color: var(--accent);
  font-size: 17px;
}
.preview-footer {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  background: var(--lime-soft);
  border-top: 1px solid var(--line);
  padding: 16px 24px;
  font-size: 12px;
}
.illustration-caption {
  text-align: center;
  font-size: 12px;
  color: var(--muted);
  margin-top: 16px;
}
.audience-strip {
  display: flex;
  align-items: center;
  gap: 48px;
  border-block: 1px solid var(--line);
  padding-block: 28px;
}
.audience-strip > p {
  font-size: 11px;
  line-height: 1.6;
  letter-spacing: 0.11em;
  color: var(--muted);
}
.audience-strip > div {
  display: flex;
  justify-content: space-between;
  flex: 1;
  gap: 20px;
}
.audience-strip span {
  font-family: var(--ff-head);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.035em;
}
.section-heading {
  max-width: none;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  column-gap: 80px;
  align-items: end;
}
.section-heading > p:last-child {
  max-width: 430px;
  margin-top: 0;
  color: var(--muted);
  font-size: 17px;
  padding-bottom: 4px;
}
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.benefit {
  border-top: none;
  padding-top: 28px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--surface);
  padding: 28px;
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.benefit-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin-bottom: 28px;
}
.benefit-icon svg {
  width: 24px;
  height: 24px;
}
.lavender-icon {
  background: var(--lavender-soft);
  color: var(--accent);
}
.lime-icon {
  background: var(--lime-soft);
  color: var(--success);
}
.neutral-icon {
  background: var(--surface-soft);
}
.benefit p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
  margin-top: 16px;
  max-width: none;
}
.benefit-label {
  display: block;
  margin-top: 24px;
  letter-spacing: 0.12em;
  font-size: 11px;
  color: var(--muted);
  font-weight: 600;
}
.how-section {
  background: var(--surface-soft);
  border-block: 1px solid var(--line);
}
.how-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  padding-block: 80px;
  align-items: center;
}
.how-intro > p:not(.eyebrow) {
  color: var(--muted);
  max-width: 390px;
  margin-top: 23px;
  font-size: 17px;
}
.how-intro > .text-link {
  margin-top: 18px;
}
.steps {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 16px;
}
.steps li {
  display: flex;
  gap: 20px;
  padding-block: 28px;
  border-bottom: 1px solid var(--line);
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface);
}
.steps li:first-child {
  padding-top: 24px;
}
.steps li:last-child {
  border: 1px solid var(--line);
  padding-bottom: 24px;
}
.step-number {
  font-size: 14px;
  font-family: var(--ff-head);
  color: var(--accent);
  padding-top: 0;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  background: var(--lavender-soft);
  border-radius: 50%;
}
.steps p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
  margin-top: 10px;
  max-width: none;
}
.pricing-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  margin-bottom: 48px;
}
.pricing-aside {
  text-align: right;
}
.pricing-aside p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.8;
}
.currency-switch {
  display: inline-flex;
  border: 1px solid var(--line);
  padding: 4px;
  border-radius: 12px;
  margin-top: 18px;
  gap: 3px;
  background: var(--surface);
}
.currency-switch button {
  border: 0;
  background: transparent;
  padding: 8px 15px;
  font-size: 13px;
  border-radius: 8px;
  min-height: 44px;
}
.currency-switch button[aria-pressed="true"] {
  background: var(--lavender-soft);
  color: var(--accent);
  font-weight: 650;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.price-card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--surface);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
}
.price-card.featured {
  border-color: var(--lavender);
  background: var(--lavender-soft);
  box-shadow: 0 0 0 3px var(--lavender-soft);
}
.plan-label {
  position: absolute;
  top: -14px;
  left: 24px;
  background: var(--lavender);
  color: #171b20;
  font-size: 10px;
  letter-spacing: 0.1em;
  font-weight: 650;
  border-radius: 6px;
  padding: 6px 12px;
}
.plan-name {
  font-family: var(--ff-head);
  font-size: 26px;
  letter-spacing: -0.035em;
}
.plan-description {
  font-size: 14px;
  color: var(--muted);
  margin-top: 5px;
  min-height: 46px;
}
.price {
  font-family: var(--ff-head);
  font-size: 52px;
  line-height: 1.3;
  letter-spacing: -0.055em;
  margin-top: 20px;
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
  font-variant-numeric: tabular-nums;
}
.price small {
  font-family: var(--ff-body);
  font-size: 14px;
  letter-spacing: 0;
  color: var(--muted);
  white-space: nowrap;
}
.credit-allowance {
  font-size: 14px;
  color: var(--muted);
  margin-top: 7px;
}
.price-card .btn {
  width: 100%;
  margin-top: 26px;
  justify-content: center;
  font-size: 15px;
}
.price-card ul {
  list-style: none;
  padding: 23px 0 0;
  margin-top: 25px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.price-card li {
  display: flex;
  gap: 10px;
  font-size: 15px;
  line-height: 1.6;
}
.price-card li:before {
  content: "✓";
  color: var(--success);
  flex-shrink: 0;
}
.pricing-note {
  text-align: center;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.9;
  margin: 28px auto 0;
  max-width: 940px;
}
.faq-section {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  padding-top: 0;
}
.faq-section > div > p:last-child {
  font-size: 16px;
  color: var(--muted);
  margin-top: 24px;
}
.faq-list {
  border-top: 0;
  display: grid;
  gap: 12px;
  align-content: start;
}
details {
  border-bottom: none;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding-inline: 24px;
  background: var(--surface);
}
summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  list-style: none;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  padding: 20px 0;
}
summary::-webkit-details-marker {
  display: none;
}
summary > span {
  font-size: 22px;
  font-weight: 400;
  line-height: 1;
}
details[open] summary > span {
  transform: rotate(45deg);
}
details > p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--muted);
  padding: 0 24px 24px 0;
}
.contact-section {
  background: transparent;
  border-block: 0;
  padding-bottom: 40px;
}
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  padding-block: 80px;
  padding: 64px;
  background: var(--lavender-soft);
  border: 1px solid var(--line);
  border-radius: 28px;
  align-items: center;
}
.contact-copy {
  position: relative;
}
.contact-copy h2 {
  font-size: clamp(48px, 5vw, 68px);
  letter-spacing: -0.06em;
}
.contact-copy > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
  max-width: 350px;
  margin-top: 25px;
}
.contact-copy > .text-link {
  margin-top: 18px;
}
.contact-form {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 32px;
  min-width: 0;
}
.form-intro {
  margin-bottom: 22px;
}
.form-intro h3 {
  font-size: 26px;
}
.form-intro p {
  font-size: 14px;
  color: var(--muted);
  margin-top: 7px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 15px;
  min-width: 0;
}
.field label {
  font-size: 13px;
  font-weight: 600;
}
.field label span {
  font-weight: 400;
  color: var(--muted);
}
.field input,
.field select,
.field textarea {
  width: 100%;
  min-width: 0;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px 14px;
  color: var(--ink);
  font-size: 16px;
  min-height: 48px;
}
.field textarea {
  resize: vertical;
  max-height: 300px;
}
.field input::placeholder,
.field textarea::placeholder {
  color: var(--muted);
  opacity: 1;
}
.field .invalid {
  border-color: var(--error);
}
.field-error {
  font-size: 12px;
  color: var(--error);
  line-height: 1.5;
}
.field-error:empty {
  display: none;
}
.contact-form > .btn {
  width: 100%;
  justify-content: space-between;
}
.form-privacy {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.8;
  margin-top: 14px;
}
.form-privacy a {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.form-status {
  font-size: 14px;
  margin-top: 14px;
  line-height: 1.7;
}
.form-status:empty {
  display: none;
}
.form-status.error {
  color: var(--error);
}
.form-status.success {
  color: var(--success);
}
.honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}
.site-footer {
  padding-block: 47px 20px;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  padding-bottom: 35px;
}
.footer-top p {
  font-size: 14px;
  color: var(--muted);
  margin-top: 17px;
}
.footer-top nav {
  display: flex;
  align-items: flex-start;
  gap: 30px;
}
.footer-top nav a {
  font-size: 14px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--line);
  padding-top: 17px;
  font-size: 12px;
  color: var(--muted);
}
.footer-bottom .links {
  display: flex;
  align-items: center;
  gap: 23px;
}
.footer-bottom a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}
.footer-theme {
  border: 0;
  background: transparent;
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 0;
}
.footer-theme:hover,
.footer-top a:hover,
.footer-bottom a:hover {
  color: var(--accent);
}
/* Shared reading pages use the same theme and brand tokens. */
body > header:not(.site-header) .header-inner {
  width: min(1280px, calc(100% - 80px));
  margin: auto;
}
.reading-page {
  max-width: 830px;
  margin: auto;
  padding: 65px 28px 90px;
}
.reading-page h1 {
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.12;
  margin-bottom: 24px;
}
.reading-page h2 {
  font-size: 25px;
  letter-spacing: -0.03em;
  margin: 38px 0 16px;
}
.reading-page p,
.reading-page li {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.85;
}
.reading-page p {
  margin: 16px 0;
}
.reading-page ol,
.reading-page ul {
  padding-left: 24px;
}
.reading-page a:not(.btn) {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 4px;
}
.reading-page .guide-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  border-block: 1px solid var(--line);
  margin: 24px 0;
  padding: 18px 0;
}
.reading-page .guide-nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
.reading-page .btn {
  margin-top: 16px;
}
.btn-dark {
  background: var(--lime);
  color: #171b20;
}
.review-notice,
.review-note {
  border: 1px solid var(--line);
  border-left: 3px solid var(--accent);
  padding: 15px 20px;
  border-radius: 8px;
  background: var(--surface);
}
.reading-page table {
  border-collapse: collapse;
  width: 100%;
  font-size: 13px;
}
.reading-page td,
.reading-page th {
  border: 1px solid var(--line);
  padding: 10px;
  text-align: left;
  overflow-wrap: anywhere;
}
.reading-page th {
  background: var(--surface-soft);
}
body > footer:not(.site-footer) {
  width: min(1280px, calc(100% - 80px));
  margin: 0 auto;
  padding-bottom: 20px;
}
.reading-header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}
/* Editorial hierarchy and compact product illustrations. */
.eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

.section-heading .eyebrow {
  grid-column: 1 / -1;
}
.benefit h3 {
  font-size: 24px;
}
.benefit-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 148px;
  flex-shrink: 0;
  border-radius: 14px;
  margin-top: 28px;
  background: var(--surface-soft);
}
.benefit-label {
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.fit-visual {
  background: var(--lavender-soft);
}
.fit-circle {
  display: grid;
  place-content: center;
  width: 100px;
  height: 100px;
  border: 1px solid var(--accent);
  border-radius: 50%;
  color: var(--accent);
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
}
.fit-circle + .fit-circle {
  margin-left: -12px;
  background: var(--surface);
}
.moment-visual {
  background: var(--lime-soft);
  flex-direction: column;
  align-items: stretch;
  padding: 24px;
  gap: 10px;
}
.moment-visual > span {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 9px;
  padding: 9px 12px;
  font-size: 13px;
}
.moment-visual i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--success);
  flex-shrink: 0;
}
.message-visual {
  gap: 16px;
  font-family: var(--ff-head);
  font-size: 20px;
  line-height: 1.4;
}
.message-visual strong {
  color: var(--accent);
  font-weight: 500;
}
.message-avatar {
  display: grid;
  place-items: center;
  border-radius: 14px;
  width: 56px;
  height: 56px;
  font-family: var(--ff-body);
  font-size: 14px;
  background: var(--lavender);
  color: var(--button-ink);
}
.business-note {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  max-width: 390px;
}
.business-note-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
  color: var(--accent);
}
.business-note-icon svg {
  width: 24px;
  height: 24px;
}
.business-note strong {
  font-size: 14px;
  font-weight: 600;
}
.business-note p {
  font-size: 14px;
  color: var(--muted);
  margin-top: 2px;
}
.steps h3 {
  font-size: 22px;
}
.faq-list details[open] {
  background: var(--surface-soft);
}
.faq-list summary > span {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--surface-soft);
  color: var(--accent);
}
.btn:active {
  transform: translateY(1px);
}
.contact-form fieldset > .btn {
  justify-content: center;
}
h2 {
  text-wrap: balance;
}
@media (max-width: 1150px) {
  .container {
    width: calc(100% - 64px);
  }
  .hero {
    gap: 32px;
  }
  .hero-visual {
    padding: 12px 0 0;
  }
  .desktop-nav {
    gap: 20px;
    margin-right: 0;
  }
  .header-actions {
    gap: 16px;
  }
  .section-heading {
    gap: 24px 48px;
  }
  .section-heading .eyebrow {
    margin-bottom: 0;
  }
  .benefit {
    padding: 24px;
  }
  .moment-visual {
    padding: 16px;
  }
  .how-inner,
  .faq-section {
    gap: 48px;
  }
  .price-card {
    padding: 32px 24px;
  }
  .contact-inner {
    padding: 48px;
    gap: 40px;
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .contact-form {
    padding: 28px;
  }
  .audience-strip {
    gap: 32px;
  }
}
@media (max-width: 1050px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }
  .hero-copy .eyebrow {
    margin-inline: auto;
  }
  .hero-ctas {
    margin-inline: auto;
  }
  h1 {
    font-size: 76px;
  }
  .hero-description {
    margin-inline: auto;
    max-width: 530px;
  }
  .cta-note {
    margin-inline: auto;
    max-width: none;
  }
  .hero-visual {
    width: 100%;
    max-width: 580px;
    margin-inline: auto;
    text-align: left;
    padding: 12px 0 0;
  }
}
@media (max-width: 950px) {
  .desktop-nav {
    display: none;
  }
  .mobile-toggle {
    display: inline-flex;
  }
  .header-actions {
    margin-left: auto;
  }
  .section {
    padding-block: 80px;
  }
  .section-heading {
    display: block;
  }
  .section-heading .eyebrow {
    margin-bottom: 24px;
  }
  .section-heading > p:last-child {
    margin-top: 24px;
    max-width: 540px;
  }
  .benefit-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .benefit {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 40px;
    padding: 32px;
  }
  .benefit-icon {
    margin-bottom: 20px;
    grid-column: 1;
  }
  .benefit h3,
  .benefit p {
    grid-column: 1;
  }
  .benefit-visual {
    grid-column: 2;
    grid-row: 1 / 4;
    height: 100%;
    min-height: 180px;
    margin-top: 0;
  }
  .benefit-label {
    grid-column: 1 / -1;
  }
  .how-inner,
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .how-intro > p:not(.eyebrow) {
    max-width: 550px;
  }
  .business-note {
    margin-top: 24px;
  }
  .pricing-heading {
    align-items: flex-start;
    gap: 32px;
  }
  .pricing-aside {
    max-width: 280px;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .price-card {
    padding: 32px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 40px;
  }
  .price-card .plan-name,
  .price-card .plan-description,
  .price-card .price,
  .credit-allowance {
    grid-column: 1;
  }
  .plan-description {
    min-height: 0;
  }
  .price-card ul {
    grid-column: 2;
    grid-row: 1 / 6;
    border-top: 0;
    padding: 0 0 0 24px;
    margin: 0;
    border-left: 1px solid var(--line);
    justify-content: center;
  }
  .price-card .btn {
    grid-column: 1;
  }
  .price-card li {
    font-size: 16px;
  }
  .faq-section {
    gap: 32px;
    grid-template-columns: 1fr;
    padding-top: 0;
  }
  .contact-copy > p:not(.eyebrow) {
    max-width: 510px;
  }
  .form-row {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .audience-strip {
    display: block;
    text-align: center;
  }
  .audience-strip > p {
    margin-bottom: 20px;
  }
  .audience-strip > p br {
    display: none;
  }
  .footer-top {
    gap: 28px;
  }
  .footer-top nav {
    gap: 18px;
    flex-wrap: wrap;
    justify-content: flex-end;
  }
}
@media (max-width: 700px) {
  .container {
    width: calc(100% - 40px);
  }
  .section {
    padding-block: 64px;
  }
  .header-inner {
    min-height: 72px;
    gap: 12px;
  }
  .logo img {
    width: 124px;
  }
  .header-actions {
    gap: 8px;
  }
  .header-cta,
  .login-link {
    display: none;
  }
  .hero {
    padding-block: 40px 48px;
    gap: 40px;
  }
  h1 {
    font-size: clamp(42px, 10.9vw, 66px);
    line-height: 1.1;
  }
  .hero-copy .eyebrow {
    font-size: 10px;
    letter-spacing: 0.04em;
    gap: 8px;
    padding: 8px 10px;
    margin-bottom: 24px;
  }
  .hero-description {
    font-size: 17px;
    line-height: 1.7;
    margin-top: 24px;
  }
  .hero-ctas {
    margin-top: 24px;
    grid-template-columns: 1fr;
  }
  .cta-note {
    max-width: 310px;
    font-size: 12px;
    margin-top: 12px;
  }
  .hero-visual {
    max-width: 500px;
    padding: 12px 0 0;
  }

  .context-pill {
    font-size: 11px;
    padding: 10px 12px;
    margin: 0 0 -6px 16px;
    max-width: calc(100% - 24px);
  }
  .context-pill strong {
    font-size: 13px;
  }
  .context-check {
    margin-left: 8px;
  }
  .preview-toolbar {
    padding: 26px 16px 18px;
  }
  .preview-company {
    padding: 20px 16px;
    gap: 10px;
  }
  .preview-company p {
    font-size: 11px;
  }
  .fit-pill {
    font-size: 11px;
  }
  .preview-tabs {
    margin-inline: 12px;
    gap: 2px;
  }
  .preview-tabs button {
    font-size: 11px;
  }
  .preview-panel {
    padding: 24px 16px;
  }
  .preview-panel h3 {
    font-size: 30px;
  }
  .preview-panel > p {
    font-size: 14px;
  }
  .panel-kicker {
    font-size: 10px;
  }
  .preview-footer {
    font-size: 12px;
    padding: 16px;
  }
  .illustration-caption {
    font-size: 11px;
    line-height: 1.7;
  }
  .audience-strip {
    padding-block: 24px;
  }
  .audience-strip > p {
    font-size: 10px;
  }
  .audience-strip > div {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .audience-strip span {
    font-size: 16px;
  }
  h2,
  .section-heading h2 {
    font-size: 36px;
  }
  .section-heading > p:last-child {
    font-size: 16px;
  }
  .benefit-grid {
    margin-top: 32px;
  }
  .benefit {
    display: flex;
    padding: 24px;
  }
  .benefit-icon {
    margin-bottom: 24px;
  }
  .benefit h3 {
    font-size: 24px;
  }
  .benefit p {
    font-size: 16px;
  }
  .benefit-visual {
    margin-top: 24px;
    height: 148px;
    min-height: 0;
  }
  .benefit-label {
    margin-top: 24px;
    font-size: 11px;
  }
  .how-inner {
    padding-block: 64px;
    gap: 32px;
  }
  .how-intro > p:not(.eyebrow) {
    font-size: 16px;
  }
  .steps li,
  .steps li:first-child,
  .steps li:last-child {
    padding: 24px 20px;
    gap: 16px;
  }
  .step-number {
    width: 32px;
    height: 32px;
    font-size: 12px;
  }
  .steps h3 {
    font-size: 22px;
  }
  .steps p {
    font-size: 16px;
  }
  .pricing-heading {
    display: block;
    margin-bottom: 40px;
  }
  .pricing-aside {
    text-align: left;
    max-width: none;
    margin-top: 24px;
  }
  .pricing-aside p {
    font-size: 14px;
  }
  .price-card {
    display: flex;
    padding: 28px;
  }
  .price-card ul {
    border-left: 0;
    border-top: 1px solid var(--line);
    padding: 24px 0 0;
    margin-top: 24px;
  }
  .price {
    font-size: 50px;
  }
  .pricing-note {
    text-align: left;
    font-size: 12px;
    margin-top: 24px;
  }
  .faq-section {
    padding-top: 0;
  }
  details {
    padding-inline: 20px;
  }
  summary {
    font-size: 16px;
  }
  details > p {
    padding-right: 0;
    font-size: 16px;
  }
  .contact-section {
    padding-bottom: 8px;
  }
  .contact-inner {
    padding: 32px 20px;
    border-radius: 20px;
    gap: 32px;
  }
  .contact-copy h2 {
    font-size: 48px;
  }
  .contact-copy > p:not(.eyebrow) {
    font-size: 16px;
  }
  .contact-form {
    padding: 24px 20px;
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .form-intro h3 {
    font-size: 24px;
  }
  .field label {
    font-size: 13px;
  }
  .form-privacy {
    font-size: 12px;
  }
  .site-footer {
    padding-block: 40px 20px;
  }
  .footer-top {
    display: block;
    padding-bottom: 24px;
  }
  .footer-top nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px 20px;
    margin-top: 24px;
  }
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    padding-top: 20px;
  }
  .footer-bottom .links {
    gap: 24px;
  }
  body > header:not(.site-header) .header-inner {
    width: calc(100% - 40px);
    gap: 12px;
  }
  .reading-header-actions {
    gap: 8px;
  }
  .reading-header-actions .btn {
    font-size: 11px;
    padding: 10px 12px;
    gap: 8px;
  }
  .reading-page {
    padding: 45px 20px 65px;
  }
  .reading-page table {
    font-size: 11px;
  }
  .reading-page td,
  .reading-page th {
    padding: 6px;
  }
  body > footer:not(.site-footer) {
    width: calc(100% - 40px);
  }
}
@media (max-width: 700px) {
  .visual-orbit {
    display: none;
  }
}
@media (max-width: 480px) {
  .preview-company {
    grid-template-columns: 44px minmax(0, 1fr);
  }
  .company-mark {
    width: 44px;
    height: 44px;
  }
  .fit-pill {
    grid-column: 2;
    justify-self: start;
    margin-left: 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}

/* Progressive enhancement: no inert toggles or accidental native form submits. */
html:not(.theme-ready) [data-theme-toggle] {
  display: none;
}
.contact-form fieldset {
  border: 0;
  padding: 0;
  margin: 0;
  min-width: 0;
}
.contact-form fieldset > .btn {
  width: 100%;
  justify-content: center;
}
#formFallback {
  font-size: 12px;
  margin-top: 16px;
}
#formFallback a {
  text-decoration: underline;
}
.no-script-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding-block: 15px;
}
.no-script-nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
