@import url('./assets/brand/prooflink-tokens.css');

:root {
  --ink: var(--pl-color-ink, #142127);
  --ink-soft: var(--pl-color-ink-soft, #30424a);
  --muted: #60717a;
  --line: #d3dde0;
  --line-strong: #aebcc2;
  --paper: var(--pl-color-sand, #f4f2eb);
  --panel: var(--pl-color-panel, #fffdf8);
  --panel-soft: var(--pl-color-panel-soft, #eef1eb);
  --accent: var(--pl-color-brand, #0f6370);
  --accent-strong: var(--pl-color-brand-strong, #0b4650);
  --accent-soft: var(--pl-color-brand-soft, #d8ebe7);
  --signal: var(--pl-color-signal, #b45c36);
  --gold: var(--pl-color-gold, #f1b24a);
  --success: #2d7a52;
  --shadow: 0 28px 72px rgba(20, 33, 39, 0.1);
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --max: 1180px;
  --font-display: var(--pl-font-display, 'Google Sans', ui-sans-serif, system-ui, sans-serif);
  --font-body: var(--pl-font-body, 'Google Sans Text', ui-sans-serif, system-ui, sans-serif);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at top right, rgba(15, 99, 112, 0.12), transparent 32%),
    radial-gradient(circle at top left, rgba(180, 92, 54, 0.08), transparent 24%),
    linear-gradient(180deg, #fbf8f2 0%, var(--paper) 100%);
  color: var(--ink);
  font: 16px/1.6 var(--font-body);
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

.site-nav-wrap {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(10px);
  background: rgba(247, 248, 249, 0.92);
  border-bottom: 1px solid rgba(214, 221, 226, 0.9);
}

.site-nav {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.95rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font: 800 1.25rem/1 var(--font-display);
  letter-spacing: -0.04em;
}

.brand__mark {
  width: 2.25rem;
  height: 2.25rem;
  flex: 0 0 auto;
  filter: drop-shadow(0 10px 18px rgba(11, 28, 33, 0.16));
}

.brand__word {
  display: inline-flex;
}

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

.brand--footer .brand__mark {
  width: 2rem;
  height: 2rem;
}

.nav-toggle {
  display: none;
  appearance: none;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--panel);
  color: var(--ink);
  padding: 0.5rem 0.9rem;
  font: 600 0.9rem/1 var(--font-body);
  cursor: pointer;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.nav-links a {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 600;
}

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

.shell {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.hero {
  padding: 4.75rem 0 2.8rem;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
  align-items: center;
}

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

.hero-panel,
.brand-lab__copy,
.hero-stage-stack {
  min-width: 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 999px;
  padding: 0.45rem 0.9rem;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 1rem 0 1rem;
  font: 800 clamp(2.6rem, 6vw, 4.5rem) / 0.96 var(--font-display);
  letter-spacing: -0.06em;
}

.hero h1 strong {
  color: var(--accent);
  font-weight: 800;
}

.hero-copy p {
  margin: 0 0 1.5rem;
  max-width: 40rem;
  color: var(--muted);
  font-size: 1.07rem;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.8rem 1.15rem;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 700;
  transition:
    transform 0.12s ease,
    background 0.15s ease,
    border-color 0.15s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--accent);
  color: #ffffff;
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--accent-strong);
}

.site-nav .btn-primary {
  min-height: 50px;
  padding: 0.9rem 1.35rem;
  border: 1px solid rgba(16, 59, 73, 0.22);
  background: linear-gradient(135deg, #1a6f88 0%, var(--accent) 55%, var(--accent-strong) 100%);
  box-shadow: 0 12px 24px rgba(16, 59, 73, 0.18);
  color: #ffffff;
  font-weight: 800;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.site-nav .btn-primary:hover,
.site-nav .btn-primary:focus-visible {
  background: linear-gradient(135deg, #2387a3 0%, #1a6f88 50%, var(--accent-strong) 100%);
  box-shadow: 0 14px 28px rgba(16, 59, 73, 0.24);
}

.btn-secondary {
  border: 1px solid var(--line-strong);
  background: var(--panel);
  color: var(--ink);
}

.hero-points {
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.8rem;
}

.hero-metric-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: 1.6rem;
}

.hero-metric {
  display: grid;
  gap: 0.28rem;
  padding: 1rem;
  border-radius: 18px;
  border: 1px solid rgba(15, 99, 112, 0.12);
  background: rgba(255, 253, 248, 0.78);
  box-shadow: 0 12px 28px rgba(20, 33, 39, 0.04);
}

.hero-metric strong {
  font: 800 0.95rem/1.15 var(--font-display);
  letter-spacing: -0.03em;
}

.hero-metric span {
  color: var(--muted);
  font-size: 0.86rem;
}

.hero-points li {
  position: relative;
  padding-left: 1.35rem;
  color: var(--ink-soft);
  font-size: 0.97rem;
}

.hero-points li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.58rem;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--accent);
}

.hero-panel {
  background: linear-gradient(
    160deg,
    rgba(15, 99, 112, 0.96) 0%,
    rgba(11, 70, 80, 0.94) 58%,
    rgba(13, 27, 31, 0.98) 100%
  );
  border: 1px solid rgba(15, 99, 112, 0.2);
  border-radius: 30px;
  box-shadow: 0 30px 80px rgba(11, 28, 33, 0.22);
  padding: 1.2rem;
  color: #eff7f6;
}

.brand-lab {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
  padding: 1.1rem;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.brand-lab__eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 0.38rem 0.72rem;
  border-radius: 999px;
  background: rgba(241, 178, 74, 0.12);
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-lab__copy h3 {
  margin: 0.45rem 0 0.55rem;
  color: #ffffff;
  font: 800 clamp(1.15rem, 2.4vw, 1.55rem) / 1.05 var(--font-display);
  letter-spacing: -0.04em;
}

.brand-lab__copy p {
  margin: 0;
  color: rgba(239, 247, 246, 0.72);
  font-size: 0.92rem;
}

.brand-lab__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1rem;
}

.brand-lab__chips span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0.36rem 0.72rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.09);
  color: rgba(239, 247, 246, 0.9);
  font-size: 0.8rem;
  font-weight: 700;
}

.brand-cosmos {
  position: relative;
  min-height: 20rem;
  border-radius: 24px;
  overflow: hidden;
  perspective: 1200px;
  background:
    radial-gradient(circle at 50% 40%, rgba(143, 212, 220, 0.18), transparent 30%),
    linear-gradient(160deg, rgba(4, 24, 28, 0.96), rgba(16, 56, 66, 0.86));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 24px 56px rgba(0, 0, 0, 0.24);
}

.brand-cosmos__scene {
  position: absolute;
  inset: 0;
  transform-style: preserve-3d;
  transform: rotateX(var(--brand-tilt-x, -10deg)) rotateY(var(--brand-tilt-y, 10deg));
  transition: transform 220ms ease;
  will-change: transform;
}

.brand-cosmos__glow,
.brand-cosmos__plane,
.brand-cosmos__ring,
.brand-cosmos__core,
.brand-cosmos__node {
  position: absolute;
  left: 50%;
  top: 50%;
  transform-style: preserve-3d;
}

.brand-cosmos__glow {
  width: 17rem;
  height: 17rem;
  transform: translate3d(-50%, -50%, 10px);
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(210, 110, 57, 0.18),
    rgba(15, 99, 112, 0.08) 45%,
    transparent 68%
  );
  filter: blur(4px);
}

.brand-cosmos__plane {
  width: 16rem;
  height: 16rem;
  transform: translate3d(-50%, -50%, -12px) rotateX(72deg);
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.02), transparent 64%);
}

.brand-cosmos__ring {
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  animation: brand-spin 18s linear infinite;
}

.brand-cosmos__ring--alpha {
  width: 15rem;
  height: 15rem;
  --brand-z: 4px;
  --brand-x: 72deg;
  --brand-y: 0deg;
  border-color: rgba(143, 212, 220, 0.34);
}

.brand-cosmos__ring--beta {
  width: 12rem;
  height: 12rem;
  --brand-z: 26px;
  --brand-x: 18deg;
  --brand-y: 70deg;
  border-color: rgba(241, 178, 74, 0.34);
  animation-duration: 14s;
}

.brand-cosmos__ring--gamma {
  width: 13.5rem;
  height: 13.5rem;
  --brand-z: 40px;
  --brand-x: 62deg;
  --brand-y: 26deg;
  border-color: rgba(210, 110, 57, 0.3);
  animation-duration: 20s;
  animation-direction: reverse;
}

.brand-cosmos__core {
  width: 9rem;
  padding: 1rem 0.9rem;
  transform: translate3d(-50%, -50%, 58px);
  border-radius: 1.3rem;
  background: linear-gradient(180deg, rgba(255, 250, 242, 0.95), rgba(238, 231, 220, 0.88));
  border: 1px solid rgba(255, 255, 255, 0.34);
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.22);
  text-align: center;
}

.brand-cosmos__core img {
  width: 2.8rem;
  height: 2.8rem;
  display: block;
  margin: 0 auto 0.7rem;
}

.brand-cosmos__core strong {
  display: block;
  color: var(--ink);
  font: 800 1rem/1.05 var(--font-display);
  letter-spacing: -0.03em;
}

.brand-cosmos__core span {
  display: block;
  margin-top: 0.28rem;
  color: var(--ink-soft);
  font-size: 0.75rem;
}

.brand-cosmos__node {
  min-width: 6.6rem;
  padding: 0.75rem 0.78rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

.brand-cosmos__node strong {
  display: block;
  color: #ffffff;
  font: 800 0.82rem/1.05 var(--font-display);
  letter-spacing: -0.02em;
}

.brand-cosmos__node span {
  display: block;
  margin-top: 0.18rem;
  color: rgba(239, 247, 246, 0.74);
  font-size: 0.72rem;
}

.brand-cosmos__node--account {
  transform: translate3d(-145%, -95%, 34px);
}

.brand-cosmos__node--work {
  transform: translate3d(42%, -112%, 42px);
}

.brand-cosmos__node--money {
  transform: translate3d(12%, 52%, 38px);
}

@keyframes brand-spin {
  from {
    transform: translate3d(-50%, -50%, var(--brand-z, 0px)) rotateX(var(--brand-x, 68deg))
      rotateY(var(--brand-y, 0deg)) rotateZ(0deg);
  }
  to {
    transform: translate3d(-50%, -50%, var(--brand-z, 0px)) rotateX(var(--brand-x, 68deg))
      rotateY(var(--brand-y, 0deg)) rotateZ(360deg);
  }
}

.ops-chrome {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.ops-title {
  font: 800 1.02rem/1 var(--font-display);
  letter-spacing: -0.03em;
}

.ops-subtitle {
  color: rgba(239, 247, 246, 0.72);
  font-size: 0.85rem;
}

.ops-indicator {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.42rem 0.75rem;
  border-radius: 999px;
  background: rgba(45, 122, 82, 0.12);
  color: var(--success);
  font-size: 0.8rem;
  font-weight: 700;
}

.screenshot-panel {
  padding: 1rem;
}

.hero-stage {
  position: relative;
  overflow: hidden;
}

.hero-stage::before {
  content: '';
  position: absolute;
  inset: auto -10% -20% auto;
  width: 18rem;
  height: 18rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(180, 92, 54, 0.2), transparent 68%);
  pointer-events: none;
}

.screenshot-stack {
  display: grid;
  gap: 0.85rem;
}

.hero-stage-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(0, 0.82fr);
  gap: 0.95rem;
  align-items: stretch;
}

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

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

.screenshot-card {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  background: var(--panel);
  box-shadow: 0 18px 38px rgba(16, 21, 24, 0.14);
}

.screenshot-card img,
.tour-card img {
  display: block;
  width: 100%;
  object-fit: cover;
  object-position: top center;
  filter: contrast(1.18) saturate(1.12) brightness(0.95);
}

.screenshot-card--wide img {
  height: 24rem;
}

.screenshot-card--feature img {
  height: 32rem;
}

.screenshot-card--supporting img {
  height: 15.1rem;
}

.screenshot-card figcaption {
  display: grid;
  gap: 0.25rem;
  padding: 0.95rem 1rem 1rem;
}

.screenshot-card figcaption strong,
.tour-card__body h3 {
  font: 800 1rem/1.2 var(--font-display);
  letter-spacing: -0.03em;
}

.screenshot-card figcaption span,
.tour-card__body p {
  color: var(--muted);
  font-size: 0.88rem;
}

.hero-proof-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.95rem;
}

.hero-proof-chip {
  display: grid;
  gap: 0.12rem;
  min-width: 10rem;
  padding: 0.85rem 0.95rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-proof-chip strong {
  color: #ffffff;
  font: 800 0.88rem/1.1 var(--font-display);
}

.hero-proof-chip span {
  color: rgba(239, 247, 246, 0.74);
  font-size: 0.82rem;
}

.proof-band {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 1.2rem;
  padding-top: 0.5rem;
}

.proof-band__copy,
.proof-band__stats {
  background: linear-gradient(180deg, rgba(255, 253, 248, 0.94) 0%, rgba(245, 248, 247, 0.92) 100%);
  border: 1px solid rgba(15, 99, 112, 0.1);
  border-radius: 26px;
  padding: 1.65rem;
}

.proof-band__copy h2 {
  margin: 0.45rem 0 0.75rem;
  font: 800 clamp(1.8rem, 3.8vw, 2.55rem) / 1.04 var(--font-display);
  letter-spacing: -0.05em;
}

.proof-band__copy p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.proof-band__stats {
  display: grid;
  gap: 0.9rem;
  background: linear-gradient(180deg, #17353d 0%, #10272d 100%);
  color: #eff7f6;
}

.proof-stat {
  padding: 1rem 1.05rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.proof-stat__label {
  color: #8fd4dc;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.proof-stat__value {
  margin-top: 0.38rem;
  font: 700 1rem/1.45 var(--font-body);
}

.ops-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
}

.ops-card,
.ops-card-wide {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1rem;
}

.ops-card-wide {
  grid-column: 1 / -1;
}

.ops-card-label {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.ops-card-value {
  margin: 0.4rem 0 0.2rem;
  font-size: 1.4rem;
  font-weight: 700;
}

.ops-card-copy {
  color: var(--muted);
  font-size: 0.85rem;
}

.ops-list {
  margin: 0.8rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.6rem;
}

.ops-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.55rem;
  border-bottom: 1px solid var(--line);
  font-size: 0.9rem;
}

.ops-list li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.ops-list span:last-child {
  color: var(--muted);
  font-weight: 600;
}

.section {
  padding: 1.25rem 0 4.75rem;
}

.section-heading {
  margin-bottom: 2rem;
  max-width: 46rem;
}

.section-heading h2 {
  margin: 0.35rem 0 0.65rem;
  font: 800 clamp(1.8rem, 4vw, 2.75rem) / 1.05 var(--font-display);
  letter-spacing: -0.05em;
}

.section-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
}

.ops-capability-grid,
.value-grid,
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.capability-card,
.value-card,
.trust-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1.35rem;
}

.capability-card h3,
.value-card h3,
.trust-card h3 {
  margin: 0 0 0.55rem;
  font: 800 1.02rem/1.2 var(--font-display);
  letter-spacing: -0.03em;
}

.capability-card p,
.value-card p,
.trust-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.value-grid .value-card {
  background: linear-gradient(180deg, #f9fbfc 0%, #eef2f4 100%);
}

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

.tour-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.tour-card img {
  height: 18rem;
  border-bottom: 1px solid var(--line);
}

.tour-card--wide {
  grid-column: 1 / -1;
}

.tour-card--wide img {
  height: 24rem;
}

.tour-card__body {
  padding: 1.1rem 1.15rem 1.2rem;
}

.tour-card__body h3 {
  margin: 0 0 0.45rem;
}

.tour-card__body p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.6;
}

.pricing-shell {
  background: #0f171a;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 28px;
  padding: 2rem;
  color: #f1f4f6;
}

.pricing-shell .section-heading h2,
.pricing-shell .section-heading p {
  color: inherit;
}

.pricing-shell .section-heading p {
  color: rgba(241, 244, 246, 0.72);
}

.pricing-note {
  margin-bottom: 1.5rem;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(241, 244, 246, 0.78);
  font-size: 0.92rem;
}

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

.pricing-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.pricing-card.recommended {
  border-color: rgba(201, 162, 39, 0.5);
  background: linear-gradient(180deg, rgba(22, 79, 99, 0.34) 0%, rgba(255, 255, 255, 0.06) 100%);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
}

.pricing-badge {
  align-self: flex-start;
  padding: 0.38rem 0.7rem;
  border-radius: 999px;
  background: rgba(201, 162, 39, 0.18);
  color: #f5d778;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.pricing-eyebrow {
  color: rgba(241, 244, 246, 0.66);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pricing-title {
  margin: 0;
  font: 800 1.35rem/1.1 var(--font-display);
}

.pricing-best-for {
  margin: 0;
  color: rgba(241, 244, 246, 0.72);
  font-size: 0.92rem;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
}

.pricing-price strong {
  font-size: 2.35rem;
  line-height: 1;
  letter-spacing: -0.05em;
}

.pricing-price span {
  color: rgba(241, 244, 246, 0.72);
  font-size: 0.95rem;
}

.pricing-list,
.pricing-highlights {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.6rem;
}

.pricing-list li,
.pricing-highlights li {
  position: relative;
  padding-left: 1.15rem;
  color: rgba(241, 244, 246, 0.86);
  font-size: 0.9rem;
}

.pricing-list li::before,
.pricing-highlights li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: #7bc2d5;
}

.pricing-flat-fee,
.pricing-website-note {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 0.85rem 0.95rem;
  font-size: 0.88rem;
}

.pricing-flat-fee {
  background: rgba(123, 194, 213, 0.12);
  color: #d8eef3;
}

.pricing-website-note {
  background: rgba(255, 255, 255, 0.03);
  color: rgba(241, 244, 246, 0.74);
}

.pricing-replaces {
  display: grid;
  gap: 0.55rem;
}

.pricing-replaces__label {
  color: rgba(241, 244, 246, 0.64);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pricing-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.pricing-chip {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0.38rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(241, 244, 246, 0.88);
  font-size: 0.82rem;
  font-weight: 600;
}

.pricing-action {
  margin-top: auto;
}

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

.replace-card {
  background: linear-gradient(180deg, #fcfdfe 0%, #f0f4f6 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1.35rem;
}

.replace-card h3 {
  margin: 0 0 0.55rem;
  font: 800 1.02rem/1.2 var(--font-display);
  letter-spacing: -0.03em;
}

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

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

.flow-step {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1.4rem;
}

.flow-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 800;
  margin-bottom: 0.8rem;
}

.flow-step h3 {
  margin: 0 0 0.45rem;
  font: 800 1rem/1.2 var(--font-display);
}

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

.cta-panel {
  margin: 0 0 5rem;
  background: linear-gradient(135deg, #0f171a 0%, #164f63 100%);
  border-radius: 28px;
  padding: 2.3rem;
  color: #ffffff;
}

.cta-panel h2 {
  margin: 0 0 0.8rem;
  font: 800 clamp(1.8rem, 4vw, 2.9rem) / 1.02 var(--font-display);
  letter-spacing: -0.05em;
}

.cta-panel p {
  margin: 0 0 1.4rem;
  max-width: 40rem;
  color: rgba(255, 255, 255, 0.82);
}

.footer {
  padding: 1.4rem 0 2.8rem;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.8rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-links a {
  text-decoration: none;
}

@media (max-width: 980px) {
  .hero,
  .hero-metric-row,
  .brand-lab,
  .hero-stage-grid,
  .proof-band,
  .pricing-grid,
  .ops-capability-grid,
  .value-grid,
  .product-tour-grid,
  .replace-grid,
  .trust-grid,
  .flow-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 3.5rem;
  }

  .screenshot-stack__grid {
    grid-template-columns: 1fr;
  }

  .screenshot-card--feature img,
  .tour-card--wide img {
    height: 24rem;
  }

  .screenshot-card--supporting img {
    height: 16rem;
  }
}

@media (max-width: 760px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 1.5rem 1.3rem;
    background: rgba(247, 248, 249, 0.98);
    border-bottom: 1px solid rgba(214, 221, 226, 0.9);
  }

  .nav-links.open {
    display: flex;
  }

  .site-nav {
    position: relative;
  }

  .hero,
  .section {
    padding-top: 3rem;
  }

  .pricing-shell,
  .cta-panel {
    padding: 1.5rem;
  }

  .proof-band__copy,
  .proof-band__stats {
    padding: 1.3rem;
  }

  .brand-cosmos {
    min-height: 18rem;
  }

  .hero-panel {
    padding: 1rem;
  }
}

@media (max-width: 560px) {
  .shell,
  .site-nav {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .hero h1 {
    font-size: clamp(2.2rem, 13vw, 3.2rem);
  }

  .hero-panel,
  .brand-lab,
  .screenshot-card,
  .tour-card,
  .proof-band__copy,
  .proof-band__stats,
  .pricing-shell,
  .cta-panel {
    border-radius: 18px;
  }

  .hero-metric-row,
  .brand-lab,
  .hero-stage-grid,
  .hero-stage-stack {
    grid-template-columns: 1fr;
  }

  .brand-cosmos {
    min-height: 17rem;
  }

  .brand-cosmos__node--account {
    transform: translate3d(-128%, -90%, 34px);
  }

  .brand-cosmos__node--work {
    transform: translate3d(28%, -110%, 40px);
  }

  .screenshot-card--feature img,
  .screenshot-card--supporting img,
  .tour-card img,
  .tour-card--wide img {
    height: auto;
  }

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

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