﻿:root {
  --bg: #f6efe2;
  --bg-deep: #201a14;
  --surface: rgba(255, 251, 245, 0.76);
  --surface-strong: #fffdf8;
  --text: #1c1712;
  --muted: #6f665c;
  --line: rgba(51, 37, 22, 0.12);
  --brand: #ecb424;
  --brand-2: #f07d21;
  --ink-light: #fff7ea;
  --ok: #0f9d70;
  --warn: #d18400;
  --shadow: 0 22px 70px rgba(77, 50, 18, 0.12);
  --max: 1180px;
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  overflow-x: clip;
}
body {
  margin: 0;
  font-family: "Manrope", system-ui, sans-serif;
  color: var(--text);
  background: var(--bg);
  padding-top: 82px;
  overflow-x: clip;
  max-width: 100%;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }

.site-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}
.site-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(74, 53, 27, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(74, 53, 27, 0.04) 1px, transparent 1px);
  background-size: 36px 36px;
  opacity: 0.4;
}
.site-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(70px);
  opacity: 0.5;
  animation: drift 12s ease-in-out infinite;
}
.glow-a {
  width: 360px;
  height: 360px;
  left: -70px;
  top: 80px;
  background: rgba(236, 180, 36, 0.26);
}
.glow-b {
  width: 300px;
  height: 300px;
  right: 0;
  top: 220px;
  background: rgba(240, 125, 33, 0.18);
  animation-delay: -4s;
}

.container {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  padding: 14px 0;
  background: transparent;
  border-bottom: none;
}
.nav-frame {
  position: relative;
}
.nav-glass {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 56px;
  padding: 8px 10px 8px 16px;
  border-radius: 999px;
  background: rgba(255, 251, 245, 0.78);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(51, 37, 22, 0.1);
  box-shadow: 0 10px 40px rgba(77, 50, 18, 0.1);
  overflow: visible;
  transition:
    background 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}
.brand { order: 1; }
.nav-lang-picker--mobile { order: 2; }
.nav-menu { order: 3; }
.nav-toggle { order: 4; }

.nav-lang-picker--mobile {
  display: none;
}

@media (min-width: 981px) {
  .nav-lang-picker--mobile {
    display: none !important;
  }

  .nav-lang-picker--desktop {
    display: block;
  }

  .nav-auth {
    flex-wrap: nowrap;
  }
}
.navbar.is-scrolled .nav-glass {
  background: rgba(255, 251, 245, 0.92);
  box-shadow: 0 14px 40px rgba(77, 50, 18, 0.14);
  border-color: rgba(236, 180, 36, 0.22);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 56px;
}
.brand,
.brand-copy,
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-logo {
  width: 44px;
  height: 44px;
  object-fit: contain;
  flex-shrink: 0;
}

.brand-logo-small {
  width: 32px;
  height: 32px;
  object-fit: contain;
  flex-shrink: 0;
}
.brand-copy strong,
.footer-brand strong {
  display: block;
  font-weight: 800;
}
.brand-copy small,
.footer-brand small,
.nav-links,
.form-status,
.hero-proof-inline,
.muted-card,
.section-head p,
.pricing-copy p,
.waitlist-form input,
.waitlist-form textarea,
.metric-tile span,
.stage-panel span,
.proof-stats span,
.ticker-track {
  color: var(--muted);
}
.nav-links {
  display: flex;
  gap: 24px;
  font-weight: 700;
  font-size: 0.95rem;
}
.nav-auth {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.nav-lang-picker {
  position: relative;
  flex-shrink: 0;
}

.nav-lang-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 40px;
  padding: 8px 10px 8px 12px;
  border: 1px solid rgba(51, 37, 22, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
  color: var(--text);
  font-weight: 700;
  font-size: 0.88rem;
  cursor: pointer;
  transition: background 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.nav-lang-trigger:hover,
.nav-lang-trigger[aria-expanded="true"] {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(232, 93, 4, 0.25);
  box-shadow: 0 8px 24px rgba(51, 37, 22, 0.08);
}

.nav-lang-flag {
  font-size: 1.05rem;
  line-height: 1;
}

.nav-lang-label {
  min-width: 1.5em;
  text-align: left;
}

.nav-lang-chevron {
  width: 14px;
  height: 14px;
  color: var(--muted);
  transition: transform 0.18s ease;
}

.nav-lang-trigger[aria-expanded="true"] .nav-lang-chevron {
  transform: rotate(180deg);
}

.nav-lang-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 50;
  min-width: 180px;
  margin: 0;
  padding: 6px;
  list-style: none;
  border: 1px solid rgba(51, 37, 22, 0.1);
  border-radius: 14px;
  background: rgba(255, 252, 247, 0.98);
  box-shadow: 0 16px 40px rgba(51, 37, 22, 0.14);
  backdrop-filter: blur(16px);
}

.nav-lang-option {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 10px 12px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: var(--text);
  font-weight: 700;
  font-size: 0.92rem;
  text-align: left;
  cursor: pointer;
  transition: background 0.16s ease;
}

.nav-lang-option:hover,
.nav-lang-option.is-active {
  background: rgba(232, 93, 4, 0.08);
}

.nav-lang-option.is-active {
  color: var(--accent, #e85d04);
}
.nav-menu {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex: 1;
  gap: 16px;
  min-width: 0;
}
.nav-workspace-cta {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--muted);
  padding: 8px 12px;
  border-radius: 999px;
  transition: color 0.18s ease, background 0.18s ease;
  flex-shrink: 0;
  white-space: nowrap;
}
.nav-workspace-cta:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.5);
}
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.18s ease;
}
.nav-toggle:hover {
  background: rgba(255, 255, 255, 0.85);
}
.nav-toggle-bar {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--text);
  transition: transform 0.22s ease, opacity 0.18s ease;
}
.nav-backdrop {
  display: none;
}
.nav-workspace {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--muted);
  padding: 8px 12px;
  border-radius: 999px;
  transition: color 0.18s ease, background 0.18s ease;
}
.nav-workspace:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.5);
}
.nav-login,
.nav-signup {
  border: 0;
  background: transparent;
  cursor: pointer;
}
.nav-login {
  font-weight: 700;
  color: var(--muted);
  padding: 8px 12px;
}
.nav-signup {
  padding: 10px 16px;
  font-size: 0.92rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-weight: 800;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(77, 50, 18, 0.12);
}
.button-primary {
  border-color: transparent;
  color: #fff;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
}
.button-secondary { background: rgba(255, 255, 255, 0.48); }
.button-light {
  background: #fff;
  color: #6f4809;
  border-color: transparent;
}
.wide { width: 100%; }

.hero,
.section,
.cta-section,
.ticker-band,
.product-stage {
  position: relative;
  z-index: 1;
}
.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(390px, 0.84fr);
  gap: 42px;
  align-items: center;
  padding: 28px 0 4px;
}
.hero-stacked {
  display: block;
  padding: 38px 0 0;
}
.hero-top {
  position: relative;
  max-width: 920px;
  margin: 0 auto 26px;
  text-align: center;
}
.hero-top::before {
  content: "";
  position: absolute;
  inset: -70px -130px -60px;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(112deg, rgba(255, 132, 24, 0.2), rgba(255, 255, 255, 0) 38%),
    linear-gradient(252deg, rgba(100, 126, 255, 0.16), rgba(255, 255, 255, 0) 42%);
  mask-image: radial-gradient(ellipse at center, #000 0 58%, transparent 76%);
}
.hero-ai-badge {
  margin-bottom: 14px;
  text-transform: none;
  letter-spacing: 0;
  color: #f97316;
  background: rgba(255, 247, 237, 0.86);
  border-color: rgba(251, 146, 60, 0.22);
  box-shadow: 0 10px 30px rgba(249, 115, 22, 0.1);
}
.hero-social {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.hero-subhead {
  max-width: 640px;
  margin: 18px auto 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.2rem, 2.4vw, 1.55rem);
  line-height: 1.35;
  letter-spacing: -0.03em;
  color: #3f3428;
}
.hero-title.is-split .hero-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(1.15em) rotateX(42deg);
  filter: blur(10px);
  transform-origin: 50% 100%;
}
.hero-title.is-split .hero-space {
  display: inline-block;
  width: 0.28em;
}
.reveal-stagger.is-visible .hero-title.is-split .hero-word {
  animation: heroWordIn 0.85s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: calc(0.06s + var(--i) * 0.075s);
}
.candidacy-node.is-pulse {
  transform: translateY(-3px) scale(1.03);
  border-color: rgba(240, 125, 33, 0.5);
  box-shadow: 0 16px 36px rgba(240, 125, 33, 0.2);
  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.45s ease,
    border-color 0.45s ease;
}
.candidacy-node.is-pulse .candidacy-icon {
  transform: scale(1.08);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.hero-stacked .hero-lead {
  max-width: 680px;
  margin: 18px auto 28px;
  text-align: center;
}
.hero-stacked .hero-actions {
  justify-content: center;
}
.product-showcase {
  margin: 0 auto;
  max-width: 1180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: translateY(var(--parallax, 0));
  transition: transform 0.12s linear;
}
.showcase-tabs {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin: 0 auto 18px;
  padding: 6px 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(51, 37, 22, 0.07);
  box-shadow:
    0 14px 40px rgba(77, 50, 18, 0.12),
    0 2px 8px rgba(51, 37, 22, 0.05);
  width: fit-content;
  max-width: calc(100% - 8px);
  backdrop-filter: blur(12px);
}
.showcase-tab-divider {
  width: 1px;
  height: 22px;
  margin: 0 2px;
  background: rgba(51, 37, 22, 0.1);
  flex-shrink: 0;
}
.showcase-tabs .showcase-tab {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 0;
  background: transparent;
  box-shadow: none;
  white-space: nowrap;
}
.showcase-tab svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.showcase-tabs .showcase-tab:hover {
  transform: none;
  color: var(--text);
}
.showcase-tabs .showcase-tab.active {
  background: rgba(243, 148, 24, 0.12);
  color: #ea580c;
  font-weight: 700;
}
.showcase-tabs .showcase-tab-export {
  border: 1px solid rgba(183, 134, 40, 0.38);
  background: rgba(255, 251, 240, 0.88);
  color: #8b6914;
  font-weight: 700;
}
.showcase-tabs .showcase-tab-export:hover {
  color: #7a5c10;
  background: rgba(255, 247, 228, 0.96);
}
.showcase-tabs .showcase-tab-export.active {
  background: rgba(243, 148, 24, 0.14);
  border-color: rgba(234, 88, 12, 0.35);
  color: #c2410c;
}
.showcase-progress {
  display: none;
  width: min(320px, 72%);
  height: 3px;
  margin: 0 auto 14px;
  border-radius: 999px;
  background: rgba(51, 37, 22, 0.08);
  overflow: hidden;
}
.showcase-progress-bar {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--brand), var(--brand-2));
  transform-origin: left center;
}
.showcase-frame {
  position: relative;
  width: 100%;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(51, 37, 22, 0.12);
  box-shadow: 0 28px 80px rgba(77, 50, 18, 0.16);
  background: #eceef2;
}
.showcase-shine {
  position: absolute;
  inset: -40%;
  background: conic-gradient(from 0deg, transparent 0 70%, rgba(255, 255, 255, 0.45) 78%, transparent 86%);
  animation: showcaseShine 9s linear infinite;
  pointer-events: none;
  z-index: 2;
  opacity: 0.55;
}
.showcase-frame iframe {
  position: relative;
  z-index: 1;
}
.showcase-tab {
  padding: 10px 16px;
  border-radius: 999px;
  color: #5f584f;
  font-weight: 600;
  font-size: 0.88rem;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.showcase-frame iframe {
  display: block;
  width: 100%;
  height: min(72vh, 720px);
  border: 0;
  background: #eceef2;
  transition:
    opacity 0.35s ease,
    filter 0.35s ease,
    transform 0.35s ease;
}
.showcase-mobile-fallback {
  display: none;
}
.candidacy-board {
  padding: 28px 24px 22px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 251, 245, 0.94), rgba(255, 255, 255, 0.72));
  border: 1px solid rgba(236, 180, 36, 0.2);
  box-shadow: var(--shadow);
}
.candidacy-track {
  display: grid;
  grid-template-columns: repeat(9, minmax(0, 1fr));
  align-items: stretch;
  gap: 0;
}
.candidacy-node {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  min-height: 148px;
  padding: 18px 12px 16px;
  border-radius: 18px;
  border: 1px solid rgba(51, 37, 22, 0.1);
  background: rgba(255, 255, 255, 0.82);
  text-align: center;
}
.candidacy-node strong {
  font-size: 0.98rem;
  line-height: 1.2;
}
.candidacy-step-no {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: rgba(155, 105, 0, 0.55);
}
.candidacy-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(236, 180, 36, 0.12);
  font-size: 1.25rem;
}
.candidacy-hint {
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.4;
  max-width: 12ch;
}
.candidacy-node-active {
  border-color: rgba(236, 180, 36, 0.45);
  background: linear-gradient(180deg, rgba(255, 248, 232, 0.98), rgba(255, 255, 255, 0.9));
  box-shadow: 0 12px 32px rgba(236, 180, 36, 0.14);
}
.candidacy-node-active .candidacy-icon {
  background: rgba(240, 125, 33, 0.16);
}
.candidacy-node-end {
  border-color: rgba(15, 157, 112, 0.32);
  background: linear-gradient(180deg, rgba(232, 250, 242, 0.95), rgba(255, 255, 255, 0.9));
}
.candidacy-node-end .candidacy-icon {
  background: rgba(15, 157, 112, 0.14);
}
.candidacy-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  padding: 0 2px;
}
.candidacy-connector span {
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(236, 180, 36, 0.15), rgba(240, 125, 33, 0.55), rgba(236, 180, 36, 0.15));
  position: relative;
}
.candidacy-connector span::after {
  content: "";
  position: absolute;
  right: -1px;
  top: 50%;
  transform: translateY(-50%);
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 7px solid rgba(240, 125, 33, 0.65);
}
.candidacy-board .product-footnote {
  margin: 22px 0 0;
  padding-top: 18px;
  border-top: 1px solid rgba(51, 37, 22, 0.08);
  max-width: none;
  text-align: center;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.7;
}
.price-plan-plus {
  margin: 0 0 12px;
  color: #9b6900;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.price-cta-note {
  margin: 12px 0 0;
  text-align: center;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 600;
  line-height: 1.45;
}
.pricing-fair-use {
  margin: 16px auto 0;
  max-width: 920px;
  text-align: center;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.45;
}
.hero-badge,
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 250, 242, 0.76);
  border: 1px solid rgba(236, 180, 36, 0.28);
  color: #9b6900;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.badge-dark {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
  color: #fff3d5;
}
.badge-soft {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.18);
  color: #fff8e6;
}

h1, h2, h3 {
  margin: 0;
  font-family: "Sora", sans-serif;
  letter-spacing: -0.04em;
}
h1 {
  margin-top: 18px;
  font-size: clamp(2.15rem, 4.9vw, 3.95rem);
  line-height: 0.94;
}
.hero-title {
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(2.7rem, 6.1vw, 5.15rem);
  line-height: 0.92;
  text-wrap: balance;
}
.hero-title span {
  color: #f97316;
}
.hero-lead,
.section-head p,
.pricing-copy p,
.cta-copy p,
.lead-panel p {
  font-size: 1.06rem;
  line-height: 1.72;
}
.hero-lead {
  max-width: 620px;
  margin: 22px 0 16px;
}
.hero-trust {
  max-width: 620px;
  margin: 0 0 28px;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(15, 157, 112, 0.22);
  background: rgba(15, 157, 112, 0.08);
  color: #0b6f50;
  font-size: 0.96rem;
  font-weight: 700;
  line-height: 1.55;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.hero-proof-inline {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 24px;
  font-weight: 700;
}
.hero-proof-inline span::before {
  content: "•";
  color: #c68b00;
  margin-right: 8px;
}
.hero-proof-pills {
  display: grid;
  grid-template-columns: repeat(4, minmax(150px, 1fr));
  gap: 14px;
  max-width: 860px;
  margin: 28px auto 0;
}
.hero-proof-pills span {
  min-height: 64px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 2px;
  padding: 12px 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(51, 37, 22, 0.07);
  box-shadow: 0 16px 40px rgba(77, 50, 18, 0.08);
  backdrop-filter: blur(14px);
}
.hero-proof-pills strong {
  color: #2f2b26;
  font-size: 0.86rem;
  line-height: 1.15;
}
.hero-proof-pills em {
  color: #68615a;
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 800;
  line-height: 1.1;
}
.hero-preview {
  transform: rotate(1deg);
}
.hero-preview.reveal {
  transform: translateY(42px) scale(0.82) rotate(1deg);
  transform-origin: top center;
}
.hero-preview.reveal.is-visible {
  transform: translateY(28px) scale(0.82) rotate(1deg);
  transform-origin: top center;
}

.preview-window,
.workspace-card,
.stage-panel,
.proof-card,
.pricing-card,
.waitlist-form {
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.preview-window {
  border-radius: 30px;
  overflow: hidden;
}
.live-window {
  position: relative;
}
.live-window::after {
  content: "";
  position: absolute;
  inset: -30% auto auto -20%;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.42), rgba(255,255,255,0));
  animation: shimmer 8s linear infinite;
}
.window-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 15px 18px;
  background: rgba(255, 255, 255, 0.74);
  border-bottom: 1px solid var(--line);
  font-size: 0.86rem;
}
.window-dots { display: flex; gap: 7px; }
.window-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.window-dots span:nth-child(1) { background: #ff8f7d; }
.window-dots span:nth-child(2) { background: #f4c255; }
.window-dots span:nth-child(3) { background: #63c98f; }

.app-layout {
  display: grid;
  grid-template-columns: 88px 1fr;
  min-height: 398px;
}
.app-sidebar {
  padding: 18px 14px;
  border-right: 1px solid var(--line);
  background: rgba(255,255,255,0.42);
}
.sidebar-brand {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #fff;
  font-family: "Sora", sans-serif;
  font-weight: 800;
}
.sidebar-stack {
  display: grid;
  gap: 8px;
}
.sidebar-pill {
  padding: 5px 3px;
  border-radius: 12px;
  font-size: 0.68rem;
  text-align: center;
  font-weight: 700;
  color: #7e705d;
  background: rgba(255,255,255,0.5);
}
.sidebar-pill.active {
  color: #8f5c00;
  background: rgba(236, 180, 36, 0.18);
}
.app-main {
  padding: 10px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 8px;
}
.app-topline,
.split-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.panel-kicker,
.price-plan {
  margin: 0 0 10px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #9b6900;
}
.app-topline h3,
.proof-card h3,
.stage-panel h3 {
  font-size: 1rem;
}
.score-badge {
  padding: 8px 10px;
  border-radius: 16px;
  background: rgba(15, 157, 112, 0.12);
  color: var(--ok);
  font-weight: 800;
}
.workspace-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.82fr;
  gap: 16px;
}
.workspace-card {
  padding: 10px;
  border-radius: 22px;
}
.workspace-card-large {
  grid-row: span 2;
  background: linear-gradient(180deg, rgba(255, 248, 233, 0.98), rgba(255, 241, 209, 0.78));
}
.metric-tile strong,
.stage-panel strong,
.proof-stats strong {
  display: block;
  font-family: "Sora", sans-serif;
}
.diff-row {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 12px;
  align-items: center;
  margin-top: 16px;
}
.diff-label {
  font-size: 0.84rem;
  font-weight: 700;
  color: #7b6853;
}
.diff-lines { display: grid; gap: 10px; }
.line {
  height: 8px;
  border-radius: 999px;
  background: rgba(45, 33, 18, 0.1);
}
.line.l { width: 100%; }
.line.m { width: 75%; }
.line.s { width: 48%; }
.line.accent { background: rgba(240, 125, 33, 0.35); }

.preview-footer {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.tag {
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.64);
  font-size: 0.88rem;
  color: #5f5449;
}
.tag-live { animation: tagBounce 5s ease-in-out infinite; }
.tag-live-2 { animation-delay: -1.4s; }
.tag-live-3 { animation-delay: -2.8s; }
.floating-panel { animation: floatCard 5.6s ease-in-out infinite; }
.floating-panel-2 { animation-delay: -2.2s; }

.ticker-band {
  overflow: hidden;
  margin: 18px 0 10px;
  padding: 12px 0;
  border-top: 1px solid rgba(51, 37, 22, 0.08);
  border-bottom: 1px solid rgba(51, 37, 22, 0.08);
}
.ticker-track {
  display: flex;
  gap: 8px;
  width: max-content;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  animation: ticker 26s linear infinite;
}
.ticker-track span::after {
  content: "•";
  color: #c68b00;
  margin-left: 18px;
}

.product-stage {
  padding: 58px 0 16px;
}
.stage-head {
  max-width: 760px;
  margin-bottom: 28px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.step-card {
  position: relative;
  padding: 28px 26px 30px;
  border-radius: 22px;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.step-card-featured {
  background: linear-gradient(180deg, rgba(255, 251, 245, 0.96), rgba(255, 236, 198, 0.82));
  border-color: rgba(236, 180, 36, 0.28);
}
.step-number {
  position: absolute;
  top: 18px;
  right: 20px;
  font-family: "Sora", sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
  color: rgba(155, 105, 0, 0.45);
  letter-spacing: 0.08em;
}
.step-card h3 {
  margin: 0 0 10px;
  font-size: 1.2rem;
}
.step-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
  font-size: 0.98rem;
}
.mini-proof-icon.tailor {
  background: rgba(240, 125, 33, 0.14);
  color: #d46b12;
}
.mini-proof-icon.compare {
  background: rgba(15, 157, 112, 0.14);
  color: #0f9d70;
}

.flow-preview .preview-footer {
  padding: 14px 18px 18px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.42);
}
.flow-pipeline {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  padding: 22px 24px 10px;
}
.flow-node {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.56);
}
.flow-node-active {
  border-color: rgba(236, 180, 36, 0.42);
  background: linear-gradient(180deg, rgba(255, 248, 232, 0.96), rgba(255, 255, 255, 0.72));
  box-shadow: 0 10px 28px rgba(236, 180, 36, 0.14);
}
.flow-node-end {
  border-color: rgba(15, 157, 112, 0.28);
  background: rgba(15, 157, 112, 0.08);
}
.flow-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.82);
  font-size: 1.2rem;
  flex-shrink: 0;
}
.flow-node-copy {
  display: grid;
  gap: 3px;
}
.flow-node-copy strong {
  font-size: 0.98rem;
}
.flow-node-copy span {
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.45;
}
.flow-connector {
  width: 2px;
  height: 18px;
  margin: 0 auto;
  background: linear-gradient(180deg, rgba(236, 180, 36, 0.5), rgba(240, 125, 33, 0.35));
  position: relative;
}
.flow-connector::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -4px;
  transform: translateX(-50%);
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid rgba(240, 125, 33, 0.55);
}

.trust-band {
  position: relative;
  z-index: 1;
  padding: 8px 0 34px;
}
.trust-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 16px;
  padding: 18px 22px;
  border-radius: 18px;
  border: 1px solid rgba(15, 157, 112, 0.22);
  background: rgba(15, 157, 112, 0.08);
}
.trust-inner strong {
  font-size: 1.02rem;
  color: #0b6f50;
}
.trust-inner span {
  color: #2f6d59;
  font-weight: 600;
  line-height: 1.55;
}

.why-stage {
  position: relative;
  z-index: 1;
  padding: 18px 0 54px;
}

.workspace-benefit-stage {
  position: relative;
  z-index: 1;
  padding: 8px 0 56px;
}
.workspace-benefit-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 28px;
  align-items: center;
}
.workspace-benefit-copy h2 {
  margin: 12px 0 14px;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
  max-width: 14ch;
}
.workspace-benefit-lead {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.65;
  max-width: 44ch;
}
.workspace-benefit-list {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
  display: grid;
  gap: 10px;
}
.workspace-benefit-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--text);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.45;
}
.workspace-benefit-list li::before {
  content: "✓";
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  margin-top: 1px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(15, 157, 112, 0.12);
  color: #0f9d70;
  font-size: 0.78rem;
  font-weight: 800;
}
.workspace-benefit-foot {
  margin: 0;
  padding: 14px 16px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255, 251, 245, 0.96), rgba(255, 248, 232, 0.88));
  border: 1px solid rgba(236, 180, 36, 0.18);
  color: #5f584f;
  font-size: 0.98rem;
  font-weight: 600;
  line-height: 1.55;
  max-width: 44ch;
}
.workspace-benefit-board {
  padding: 18px 16px 16px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 251, 245, 0.92));
  border: 1px solid rgba(51, 37, 22, 0.1);
  box-shadow: 0 24px 60px rgba(77, 50, 18, 0.12);
}
.workspace-benefit-board-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(51, 37, 22, 0.08);
}
.workspace-benefit-board-head strong {
  font-size: 0.92rem;
  letter-spacing: -0.01em;
}
.workspace-benefit-count {
  min-width: 28px;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(243, 148, 24, 0.12);
  color: #c2410c;
  font-size: 0.72rem;
  font-weight: 800;
  text-align: center;
}
.workspace-benefit-apps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
.workspace-benefit-apps li {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border-radius: 16px;
  border: 1px solid rgba(51, 37, 22, 0.08);
  background: rgba(255, 255, 255, 0.88);
}
.workspace-benefit-apps li.is-active {
  border-color: rgba(236, 180, 36, 0.35);
  background: linear-gradient(180deg, rgba(255, 248, 232, 0.98), rgba(255, 255, 255, 0.94));
  box-shadow: 0 10px 28px rgba(236, 180, 36, 0.1);
}
.workspace-benefit-app-avatar {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(236, 180, 36, 0.14);
  color: #9b6900;
  font-size: 0.92rem;
  font-weight: 800;
}
.workspace-benefit-app-body {
  display: grid;
  gap: 2px;
  min-width: 0;
}
.workspace-benefit-app-body strong {
  font-size: 0.92rem;
  line-height: 1.2;
}
.workspace-benefit-app-body > span {
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.35;
}
.workspace-benefit-app-sent {
  color: #0f9d70 !important;
  font-size: 0.72rem !important;
  font-weight: 700;
}
.workspace-benefit-app-status {
  padding: 5px 9px;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 800;
  white-space: nowrap;
}
.workspace-benefit-app-status.is-interview {
  background: rgba(59, 130, 246, 0.12);
  color: #1d4ed8;
}
.workspace-benefit-app-status.is-applied {
  background: rgba(15, 157, 112, 0.12);
  color: #0f9d70;
}
.workspace-benefit-app-status.is-saved {
  background: rgba(51, 37, 22, 0.08);
  color: #5f584f;
}
.workspace-benefit-board-note {
  margin: 14px 0 0;
  padding-top: 12px;
  border-top: 1px solid rgba(51, 37, 22, 0.08);
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.5;
}

.why-head {
  max-width: 820px;
  margin-bottom: 28px;
}
.why-head h2 {
  font-size: clamp(2rem, 4.2vw, 3.4rem);
  line-height: 0.98;
}
.why-showcase {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.why-card {
  padding: 34px 30px;
  border-radius: 24px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: var(--surface-strong);
}
.why-card h3 {
  margin: 14px 0 12px;
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  line-height: 1.08;
}
.why-card p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 46ch;
}
.why-verdict {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.35rem;
  font-weight: 800;
}
.why-card-yes {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(232, 250, 242, 0.9));
  border-color: rgba(15, 157, 112, 0.24);
}
.why-card-yes .why-verdict {
  color: #0f9d70;
  background: rgba(15, 157, 112, 0.14);
}
.why-card-no {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 244, 228, 0.9));
  border-color: rgba(209, 132, 0, 0.24);
}
.why-card-no .why-verdict {
  color: #c97800;
  background: rgba(209, 132, 0, 0.14);
}

.compare-stage {
  padding-top: 20px;
}
.result-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
  align-items: stretch;
}
.result-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px;
  background: linear-gradient(180deg, rgba(255, 251, 245, 0.96), rgba(255, 236, 198, 0.72));
}
.result-kicker {
  margin: 0 0 8px;
  color: #9b6900;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.result-card h3 {
  margin: 0 0 12px;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  line-height: 1.05;
}

.flow-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  min-height: 340px;
}
.flow-col {
  padding: 18px 16px;
  border-right: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.28);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.flow-col:last-child { border-right: 0; }
.flow-col-active {
  background: rgba(255, 248, 232, 0.72);
}
.flow-col-head {
  display: flex;
  align-items: center;
  gap: 10px;
}
.flow-col-head strong {
  font-size: 0.92rem;
}
.flow-step {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.72rem;
  font-weight: 800;
  color: #9b6900;
  background: rgba(236, 180, 36, 0.2);
}
.flow-skeleton {
  display: grid;
  gap: 10px;
  flex: 1;
}
.sk-line {
  height: 10px;
  border-radius: 999px;
  background: rgba(51, 37, 22, 0.08);
}
.sk-title { width: 58%; height: 14px; }
.sk-long { width: 92%; }
.sk-med { width: 74%; }
.sk-short { width: 42%; }
.sk-block {
  margin-top: 8px;
  padding-top: 12px;
  border-top: 1px dashed rgba(51, 37, 22, 0.1);
  display: grid;
  gap: 8px;
}
.flow-chip {
  align-self: flex-start;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  color: #9b6900;
  background: rgba(236, 180, 36, 0.16);
}
.flow-job h3 {
  font-size: 1rem;
  margin-top: 4px;
}
.flow-job .panel-kicker {
  margin: 0;
}
.flow-score {
  align-self: flex-start;
  margin-top: auto;
}
.flow-decisions {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
.flow-decision {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.82rem;
  line-height: 1.45;
  font-weight: 600;
}
.decision-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-top: 5px;
  flex-shrink: 0;
}
.flow-decision.accept .decision-dot { background: var(--ok); }
.flow-decision.skip .decision-dot { background: var(--warn); }
.flow-reason {
  margin-top: auto;
  font-size: 0.76rem;
  line-height: 1.5;
  color: var(--muted);
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.56);
  border: 1px solid var(--line);
}

.disclosure-band {
  position: relative;
  z-index: 1;
  margin: 20px 0 0;
  padding: 0 0 40px;
}
.disclosure-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 26px;
  border-radius: 20px;
  background: linear-gradient(135deg, #2a2118, #3b2d1d);
  color: #fff6e8;
  box-shadow: 0 18px 50px rgba(32, 26, 20, 0.22);
}
.disclosure-inner p {
  margin: 0;
  line-height: 1.6;
  max-width: 720px;
}
.disclosure-inner strong {
  color: #fff;
}
.signal-list.compact {
  margin-top: 12px;
}

.stage-frame {
  display: grid;
  grid-template-columns: 1.35fr repeat(3, 1fr);
  gap: 18px;
  align-items: stretch;
}
.stage-panel {
  padding: 28px;
  border-radius: 22px;
}
.lead-panel {
  background: linear-gradient(180deg, rgba(255, 251, 245, 0.92), rgba(255, 242, 220, 0.78));
}
.mini-proof {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 220px;
  padding: 26px 24px;
}
.mini-proof strong {
  margin-bottom: 6px;
  font-size: 1.15rem;
}
.mini-proof span {
  font-size: 0.95rem;
  line-height: 1.4;
  color: var(--muted);
}
.mini-proof-icon {
  width: 52px;
  height: 52px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 14px;
  background: rgba(236, 180, 36, 0.16);
  color: #9b6900;
}

.mini-proof-icon svg {
  width: 26px;
  height: 26px;
  display: block;
}

.mini-proof-icon.linkedin {
  background: rgba(10, 102, 194, 0.14);
  color: #0a66c2;
}

.mini-proof-icon.interview {
  background: rgba(240, 125, 33, 0.14);
  color: #d46b12;
}

.section { padding: 76px 0; }
.section-head {
  max-width: 760px;
  margin-bottom: 32px;
}
.section-head h2,
.pricing-copy h2,
.cta-copy h2,
.proof-banner h2 {
  margin-top: 14px;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1;
}
.proof-layout {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 8px;
}
.proof-card {
  padding: 24px;
  border-radius: 22px;
}
.proof-card-main {
  background: linear-gradient(180deg, rgba(255, 251, 245, 0.88), rgba(255, 242, 220, 0.82));
}
.signal-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  display: grid;
  gap: 12px;
  color: #5c5147;
}
.signal-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 28px;
}
.ok,
.warn {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  flex-shrink: 0;
}
.ok { background: var(--ok); }
.warn { background: var(--warn); }

.proof-section { padding-top: 0; }
.proof-banner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: end;
  padding: 34px;
  border-radius: 34px;
  background: var(--bg-deep);
  color: var(--ink-light);
  box-shadow: 0 28px 80px rgba(22, 13, 4, 0.22);
}
.proof-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.pricing-section { padding-bottom: 24px; }
.pricing-shell {
  display: flex;
  flex-direction: column;
  gap: 36px;
  padding: 42px 40px 40px;
  border-radius: 34px;
  background: linear-gradient(140deg, #f5a623 0%, #f07d21 48%, #e85d04 100%);
  color: #fff;
  box-shadow: 0 28px 80px rgba(232, 93, 4, 0.28);
}
.pricing-top {
  max-width: 760px;
}
.pricing-shell .pricing-copy h2,
.pricing-shell .pricing-copy .pricing-headline {
  color: #fff;
  font-size: clamp(1.65rem, 4vw, 2.35rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
}
.pricing-shell .pricing-copy .pricing-subtitle {
  margin: 12px 0 0;
  color: #fff;
  font-size: clamp(1.05rem, 2.2vw, 1.25rem);
  font-weight: 700;
  line-height: 1.35;
}
.pricing-shell .pricing-copy .pricing-problem {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.95);
  font-size: 1rem;
  line-height: 1.55;
  font-weight: 600;
}
.pricing-shell .pricing-copy .pricing-footnote {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
  line-height: 1.45;
}
.pricing-shell .pricing-copy p {
  color: rgba(255, 255, 255, 0.9);
}
.pricing-shell .badge-dark {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.32);
  color: #fff;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
}

.pricing-grid-duo {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 820px;
  margin: 0 auto;
}

.price-plus {
  margin: 0 0 10px;
  font-size: 0.88rem;
  font-weight: 700;
  color: #8a5a12;
}

.price-cta-note {
  margin: 10px 0 0;
  text-align: center;
  font-size: 0.82rem;
  color: #6d675e;
}
.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 30px 28px 26px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.94);
  color: var(--text);
  box-shadow: 0 10px 28px rgba(40, 24, 8, 0.08);
}
.pricing-card .button {
  margin-top: auto;
}
.pricing-card-disabled {
  opacity: 0.72;
}
.pricing-card .button.is-disabled,
.pricing-card .button:disabled {
  cursor: not-allowed;
  filter: grayscale(0.25);
  opacity: 0.62;
  box-shadow: none;
  transform: none;
}
.pricing-card-featured {
  padding-top: 34px;
  border: 2px solid rgba(20, 20, 20, 0.9);
  background: linear-gradient(165deg, #ffffff 0%, #fffaf3 52%, #ffeccc 100%);
  box-shadow:
    0 28px 64px rgba(20, 20, 20, 0.14),
    0 10px 28px rgba(232, 93, 4, 0.16);
}
.price-badge {
  position: relative;
  top: auto;
  right: auto;
  align-self: flex-start;
  margin: 0 0 12px;
  padding: 6px 12px;
  border-radius: 999px;
  background: #141414;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.price-line {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 4px 0 22px;
}
.price-line strong {
  font-family: "Sora", sans-serif;
  font-size: 2.75rem;
  line-height: 0.95;
  letter-spacing: -0.03em;
}
.price-tagline {
  margin: -10px 0 22px;
  font-size: 0.94rem;
  font-weight: 700;
  line-height: 1.35;
  color: #6d675e;
}
.pricing-card-featured .price-tagline {
  color: #8a4b0f;
}
.price-list {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 11px;
  color: #4f473d;
}
.price-list li {
  position: relative;
  padding-left: 1.35rem;
  font-size: 0.92rem;
  line-height: 1.45;
}
.price-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.05em;
  color: #0f9d70;
  font-size: 0.82rem;
  font-weight: 800;
}
.pricing-card-featured .price-list li::before {
  color: #c2410c;
}

.nav-link-button {
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
}
.nav-login {
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
}
.auth-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 20px;
}
.auth-modal[hidden] { display: none; }
.auth-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(28, 22, 16, 0.48);
  backdrop-filter: blur(8px);
}
.auth-dialog {
  position: relative;
  z-index: 1;
  width: min(460px, 100%);
  padding: 38px;
  border: 1px solid var(--brand-2);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 28px 90px rgba(40, 29, 19, 0.24);
  font-family: "Manrope", sans-serif;
}
.auth-dialog .section-badge {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #a66100;
  font-size: 0.78rem;
}
.auth-dialog h2 {
  margin: 10px 0 8px;
  font-family: "Manrope", sans-serif;
  font-size: 2rem;
  letter-spacing: 0;
}
.auth-dialog .auth-intro { margin: 0 0 24px; color: var(--muted); }
.auth-close {
  position: absolute;
  top: 14px;
  right: 16px;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: #2d241d;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}
body.modal-open { overflow: hidden; }
.auth-dialog .waitlist-form {
  display: grid;
  gap: 12px;
  padding: 0;
  border: 0;
  background: #fff;
  box-shadow: none;
}
.waitlist-form {
  display: grid;
  gap: 12px;
}
.auth-field { display: grid; gap: 8px; font-weight: 700; }
#auth-confirm-wrap[hidden],
#auth-password-wrap[hidden] { display: none !important; }
.auth-field-head { display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.auth-forgot,
.auth-switch button {
  padding: 0;
  border: 0;
  background: transparent;
  color: #b66a00;
  font-weight: 700;
  cursor: pointer;
}
.auth-forgot { font-size: 0.76rem; font-weight: 600; }
.auth-forgot[hidden] { display: none; }
.auth-switch { margin: 6px 0 0; text-align: center; color: var(--muted); }
.waitlist-form input,
.waitlist-form textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid #d9d3ca;
  outline: 0;
  background: #fff;
  color: #2d241d;
  box-shadow: none;
}
.waitlist-form input:focus {
  border-color: #f29a1a;
  box-shadow: 0 0 0 3px rgba(242, 154, 26, 0.12);
}
.waitlist-form textarea {
  min-height: 120px;
  resize: vertical;
}
.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--muted);
}
.footer { padding: 0 0 30px; }
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  padding-top: 12px;
  color: var(--muted);
  font-size: 0.92rem;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal-delay { transition-delay: 0.12s; }
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger > * {
  opacity: 0;
  transform: translateY(20px);
}
.reveal-stagger.is-visible > *,
.why-stage.is-staggered .why-showcase > * {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal-stagger.is-visible > *:nth-child(1),
.why-stage.is-staggered .why-card:nth-child(1) { transition-delay: 0.05s; }
.reveal-stagger.is-visible > *:nth-child(2),
.why-stage.is-staggered .why-card:nth-child(2) { transition-delay: 0.14s; }
.reveal-stagger.is-visible > *:nth-child(3) { transition-delay: 0.23s; }
.reveal-stagger.is-visible > *:nth-child(4) { transition-delay: 0.32s; }
.reveal-stagger.is-visible > *:nth-child(5) { transition-delay: 0.41s; }

.product-showcase .showcase-frame {
  opacity: 0;
  transform: translateY(28px) scale(0.985);
  transition:
    opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.9s ease;
}
.product-showcase.is-visible .showcase-frame {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.product-showcase.is-visible.is-mounted .showcase-frame {
  animation: showcaseFloat 7s ease-in-out infinite;
}
.showcase-frame.is-switching {
  opacity: 0.55;
  transform: scale(0.992);
}
.showcase-frame iframe.is-switching {
  opacity: 0.35;
  filter: blur(1px);
}

.motion-flow .candidacy-node {
  opacity: 0;
  transform: translateY(18px) scale(0.96);
}
.motion-flow .candidacy-connector span {
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left center;
}
.motion-flow.is-animated .candidacy-node {
  animation: motionNodeIn 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.motion-flow.is-animated .candidacy-connector span {
  animation: motionConnector 0.55s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.motion-flow.is-animated .candidacy-track > :nth-child(1) { animation-delay: 0.04s; }
.motion-flow.is-animated .candidacy-track > :nth-child(2) { animation-delay: 0.16s; }
.motion-flow.is-animated .candidacy-track > :nth-child(3) { animation-delay: 0.28s; }
.motion-flow.is-animated .candidacy-track > :nth-child(4) { animation-delay: 0.4s; }
.motion-flow.is-animated .candidacy-track > :nth-child(5) { animation-delay: 0.52s; }
.motion-flow.is-animated .candidacy-track > :nth-child(6) { animation-delay: 0.64s; }
.motion-flow.is-animated .candidacy-track > :nth-child(7) { animation-delay: 0.76s; }
.motion-flow.is-animated .candidacy-track > :nth-child(8) { animation-delay: 0.88s; }
.motion-flow.is-animated .candidacy-track > :nth-child(9) { animation-delay: 1s; }
.motion-flow.is-animated .candidacy-node-active {
  animation:
    motionNodeIn 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards,
    motionNodeGlow 3.2s ease-in-out 1.1s infinite;
}

.pricing-section.is-staggered .pricing-card {
  animation: motionCardIn 0.75s cubic-bezier(0.22, 1, 0.36, 1) backwards;
}
.pricing-section.is-staggered .pricing-card:nth-child(1) { animation-delay: 0.06s; }
.pricing-section.is-staggered .pricing-card:nth-child(2) { animation-delay: 0.16s; }
.pricing-section.is-staggered .pricing-card:nth-child(3) { animation-delay: 0.26s; }
.pricing-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.pricing-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 48px rgba(77, 50, 18, 0.14);
}
.pricing-card-featured:hover {
  box-shadow:
    0 32px 72px rgba(20, 20, 20, 0.16),
    0 12px 32px rgba(232, 93, 4, 0.18);
}

.why-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.why-stage.is-staggered .why-card:hover {
  transform: translateY(-4px);
}

@keyframes motionNodeIn {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
@keyframes motionConnector {
  to {
    opacity: 1;
    transform: scaleX(1);
  }
}
@keyframes motionNodeGlow {
  0%, 100% { box-shadow: 0 12px 32px rgba(236, 180, 36, 0.14); }
  50% { box-shadow: 0 18px 44px rgba(240, 125, 33, 0.24); }
}
@keyframes showcaseFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-6px) scale(1.002); }
}
@keyframes motionCardIn {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes heroWordIn {
  to {
    opacity: 1;
    transform: translateY(0) rotateX(0);
    filter: blur(0);
  }
}
@keyframes showcaseShine {
  to { transform: rotate(360deg); }
}
@keyframes showcaseProgress {
  from { width: 0; }
  to { width: 100%; }
}

@keyframes drift {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(18px, -12px, 0); }
}
@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@keyframes tagBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}
@keyframes shimmer {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(420px, 260px, 0); }
}
@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .showcase-progress,
  .showcase-shine {
    display: none;
  }
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
  .reveal,
  .reveal-stagger > *,
  .motion-flow .candidacy-node,
  .motion-flow .candidacy-connector span,
  .product-showcase .showcase-frame,
  .pricing-section .pricing-card {
    opacity: 1;
    transform: none;
    filter: none;
  }
  .motion-flow.is-animated .candidacy-node-active {
    box-shadow: 0 12px 32px rgba(236, 180, 36, 0.14);
  }
}

@media (max-width: 980px) {
  .hero,
  .stage-frame,
  .proof-layout,
  .cta-box,
  .proof-banner,
  .workspace-grid,
  .steps-grid,
  .flow-columns,
  .why-showcase,
  .result-layout,
  .workspace-benefit-layout {
    grid-template-columns: 1fr;
  }

  .candidacy-track {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .candidacy-connector {
    display: none;
  }
  .candidacy-node {
    min-height: 0;
    flex-direction: row;
    align-items: center;
    text-align: left;
    gap: 14px;
    padding: 14px 16px;
  }
  .candidacy-hint {
    margin-left: auto;
    max-width: none;
    text-align: right;
  }
  .candidacy-step-no {
    min-width: 28px;
  }

  .flow-col {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .flow-col:last-child { border-bottom: 0; }

  .disclosure-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .app-layout {
    grid-template-columns: 1fr;
  }

  .app-sidebar {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .sidebar-stack {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .proof-stats {
    grid-template-columns: 1fr;
  }

  .pricing-grid,
  .pricing-grid.pricing-grid-duo {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .hero-lead {
    display: none;
  }

  .hero-proof-pills {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 22px;
  }

  .hero-proof-pills span {
    min-height: 58px;
    padding: 10px 12px;
  }
}

@media (max-width: 980px) {
  body { padding-top: 68px; }
  body.nav-open { overflow: hidden; }

  .container {
    width: min(calc(100% - 20px), var(--max));
  }

  .navbar { padding: 10px 0; }

  .nav-glass {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    grid-template-areas: "brand lang toggle";
    align-items: center;
    gap: 8px;
    border-radius: 20px;
    padding: 8px 10px 8px 12px;
  }

  .brand {
    grid-area: brand;
    min-width: 0;
  }

  .nav-lang-picker--mobile {
    grid-area: lang;
  }

  .nav-lang-picker--desktop {
    display: none !important;
  }

  .nav-toggle {
    grid-area: toggle;
    display: inline-flex;
  }

  .brand-copy strong {
    font-size: 0.98rem;
  }

  .brand-logo {
    width: 36px;
    height: 36px;
  }

  .nav-workspace-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 12px;
    font-size: 0.82rem;
    color: var(--text);
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(51, 37, 22, 0.1);
  }

  .navbar.is-menu-open .nav-toggle-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .navbar.is-menu-open .nav-toggle-bar:nth-child(2) {
    opacity: 0;
  }

  .navbar.is-menu-open .nav-toggle-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .nav-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 19;
    background: rgba(28, 22, 16, 0.38);
    backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.22s ease, visibility 0.22s ease;
  }

  .navbar.is-menu-open .nav-backdrop {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav-menu {
    position: fixed;
    top: 72px;
    left: 10px;
    right: 10px;
    z-index: 21;
    flex: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border-radius: 20px;
    background: rgba(255, 251, 245, 0.98);
    border: 1px solid rgba(51, 37, 22, 0.12);
    box-shadow: 0 18px 50px rgba(77, 50, 18, 0.18);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px) scale(0.98);
    transform-origin: top center;
    transition:
      opacity 0.22s ease,
      visibility 0.22s ease,
      transform 0.22s ease;
    pointer-events: none;
  }

  .navbar.is-menu-open .nav-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    pointer-events: auto;
  }

  .nav-links {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: 100%;
    padding: 0;
    font-size: 1rem;
    overflow: visible;
  }

  .nav-links a {
    display: block;
    padding: 13px 12px;
    border-radius: 12px;
    transition: background 0.16s ease;
  }

  .nav-links a:hover {
    background: rgba(232, 93, 4, 0.08);
  }

  .nav-auth {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    width: 100%;
    margin-top: 8px;
    padding-top: 10px;
    border-top: 1px solid rgba(51, 37, 22, 0.1);
  }

  .nav-login {
    display: inline-flex;
    justify-content: center;
    font-size: 0.92rem;
    padding: 12px 14px;
    border-radius: 12px;
  }

  .nav-signup {
    width: 100%;
    padding: 12px 14px;
    font-size: 0.92rem;
    white-space: nowrap;
  }

  .hero,
  .hero-stacked {
    padding-top: 12px;
  }

  .hero-top {
    margin-bottom: 18px;
  }

  .hero-top::before {
    inset: -48px -24px -36px;
  }

  h1 {
    font-size: clamp(2rem, 9vw, 2.65rem);
    line-height: 1.05;
  }

  .hero-title {
    font-size: clamp(2.25rem, 12vw, 3.75rem);
  }

  .hero-subhead {
    font-size: 1.05rem;
    margin-top: 12px;
    line-height: 1.4;
  }

  .hero-lead {
    display: none;
  }

  .hero-proof-pills {
    grid-template-columns: 1fr;
    max-width: 320px;
  }

  .section-head p,
  .pricing-copy p,
  .stage-head p,
  .why-head p {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .hero-stacked .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    margin-top: 4px;
  }

  .hero-stacked .hero-actions .button {
    width: 100%;
  }

  .hero-stacked .hero-actions .button-secondary {
    background: transparent;
    border-color: transparent;
    box-shadow: none;
    font-size: 0.92rem;
    padding: 10px 12px;
  }

  .product-showcase {
    width: 100%;
    max-width: 100%;
    margin-top: 8px;
  }

  .showcase-tabs,
  .showcase-progress,
  .showcase-shine,
  .showcase-frame iframe {
    display: none !important;
  }

  .showcase-frame {
    border-radius: 16px;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(255, 251, 245, 0.98), rgba(255, 241, 214, 0.88));
    box-shadow: 0 16px 40px rgba(77, 50, 18, 0.12);
  }

  .showcase-mobile-fallback {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 16px;
  }

  .showcase-mobile-step {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(51, 37, 22, 0.08);
  }

  .showcase-mobile-no {
    flex-shrink: 0;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: rgba(155, 105, 0, 0.7);
    padding-top: 2px;
  }

  .showcase-mobile-step strong {
    display: block;
    font-size: 0.98rem;
    margin-bottom: 2px;
  }

  .showcase-mobile-step p {
    margin: 0;
    color: var(--muted);
    font-size: 0.88rem;
    line-height: 1.45;
  }

  .section {
    padding: 40px 0;
  }

  .section-head h2,
  .pricing-copy h2,
  .why-head h2,
  .stage-head h2 {
    font-size: clamp(1.55rem, 6.5vw, 2rem);
    line-height: 1.12;
  }

  .section-head {
    margin-bottom: 22px;
  }

  .why-stage {
    padding-bottom: 28px;
  }

  .workspace-benefit-stage {
    padding: 4px 0 34px;
  }

  .workspace-benefit-copy h2 {
    max-width: none;
    font-size: clamp(1.7rem, 7vw, 2.4rem);
  }

  .workspace-benefit-lead,
  .workspace-benefit-foot {
    max-width: none;
  }

  .why-showcase {
    gap: 12px;
  }

  .why-card {
    padding: 18px 16px;
  }

  .why-card h3 {
    font-size: 1.1rem;
  }

  .why-card p {
    font-size: 0.92rem;
  }

  .candidacy-board {
    padding: 16px 12px 14px;
    border-radius: 18px;
  }

  .candidacy-node {
    flex-direction: row;
    align-items: center;
    flex-wrap: nowrap;
    gap: 12px;
    padding: 12px 14px;
    min-height: 0;
    text-align: left;
  }

  .candidacy-step-no {
    display: none;
  }

  .candidacy-icon {
    width: 38px;
    height: 38px;
    font-size: 1.05rem;
    flex-shrink: 0;
  }

  .candidacy-node strong {
    display: block;
    font-size: 0.95rem;
  }

  .candidacy-hint {
    display: none;
  }

  .result-layout .proof-card,
  .result-card {
    padding: 18px 16px;
  }

  .split-head {
    flex-wrap: wrap;
    gap: 10px;
  }

  .signal-list li {
    font-size: 0.92rem;
  }

  .pricing-top {
    margin-bottom: 4px;
  }

  .pricing-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .pricing-grid-duo {
    max-width: none;
    margin: 0;
  }

  .pricing-shell,
  .cta-box,
  .proof-banner {
    padding: 20px 16px;
    border-radius: 22px;
  }

  .pricing-card {
    flex: none;
    width: 100%;
    padding: 20px 18px;
    border-radius: 18px;
  }

  .pricing-card .price-plan {
    font-size: 0.92rem;
  }

  .pricing-card .price-badge {
    position: relative;
    top: auto;
    right: auto;
    margin: 0 0 10px;
    padding: 5px 10px;
    font-size: 0.68rem;
  }

  .pricing-card .price-line {
    margin: 4px 0 18px;
    gap: 6px;
  }

  .pricing-card .price-line strong {
    font-size: 2.15rem;
  }

  .pricing-card .price-line span {
    font-size: 0.88rem;
  }

  .pricing-card .price-tagline {
    margin: -6px 0 16px;
    font-size: 0.86rem;
  }

  .pricing-card .price-plus {
    margin: 0 0 8px;
    font-size: 0.84rem;
  }

  .pricing-card .price-list {
    margin: 0 0 18px;
    gap: 9px;
    font-size: 0.86rem;
  }

  .pricing-card .button {
    padding: 12px 14px;
    font-size: 0.88rem;
  }

  .pricing-card .price-cta-note {
    display: block;
    font-size: 0.78rem;
    margin-top: 8px;
  }

  .disclosure-inner {
    padding: 16px;
    border-radius: 16px;
  }

  .disclosure-inner .button {
    width: 100%;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .auth-dialog {
    padding: 28px 22px;
    border-radius: 18px;
  }

  .auth-dialog h2 {
    font-size: 1.65rem;
  }
}

@media (max-width: 480px) {
  body { padding-top: 62px; }

  .nav-glass {
    padding: 8px 10px 8px 12px;
    border-radius: 16px;
    gap: 6px;
  }

  .nav-menu {
    top: 66px;
    left: 8px;
    right: 8px;
    padding: 10px;
    border-radius: 16px;
  }

  .nav-workspace-cta {
    padding: 8px 10px;
    font-size: 0.78rem;
  }

  .brand-copy {
    display: none;
  }

  h1 {
    font-size: clamp(1.85rem, 8.5vw, 2.15rem);
  }

  .hero-subhead {
    font-size: 0.98rem;
  }

  .showcase-frame iframe {
    display: none !important;
  }

  .section {
    padding: 32px 0;
  }

  .product-stage {
    padding-top: 28px;
  }

  .candidacy-hint {
    display: none;
  }

  .candidacy-node {
    gap: 10px;
  }

  .pricing-shell {
    padding: 16px 14px;
  }

  .pricing-card {
    padding: 18px 16px;
  }

  .pricing-card .price-line strong {
    font-size: 2rem;
  }
}





















