:root {
  --bg: #05060a;
  --bg-alt: #0b0d12;
  --text: #f5f7ff;
  --muted: #a3a8c2;
  --text-main: #f5f7ff;
  --text-soft: #cbd5e1;
  --accent: #7c3aed;
  --accent-alt: #14b8a6;
  --accent-soft: rgba(124, 58, 237, 0.15);
  --border: #1f2433;
  --card-bg: #0f1118;
  --radius-sm: 6px;
  --radius-md: 8px;
  --radius-lg: 14px;
  --shadow-soft: 0 25px 60px rgba(0, 0, 0, 0.45);
  --focus-ring: 0 0 0 3px rgba(20, 184, 166, 0.35);
  --font-main: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  background: radial-gradient(circle at top, #111827 0, #020617 45%, #000 100%);
  color: var(--text);
  font-family: var(--font-main);
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
}

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

a {
  color: inherit;
}


/* v0.5.1 – native select dropdown readability polish
   Some browsers render open <option> lists with a light native background.
   Keep the closed select dark, but force option text/background to be readable. */
.contact-form select option,
.readiness-form select option {
  color: #0f172a;
  background: #ffffff;
}

.contact-form select option:checked,
.readiness-form select option:checked {
  color: #ffffff;
  background: #4c1d95;
}

.contact-form select option[disabled],
.readiness-form select option[disabled] {
  color: #64748b;
}

/* HEADER */
.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 26px 40px;
  border-bottom: 1px solid var(--border);
  background: rgba(2, 6, 23, 0.94);
  backdrop-filter: blur(16px);
  position: sticky;
  top: 0;
  z-index: 20;
  gap: 24px;
}

.logo {
  display: inline-flex;
  align-items: center;
  background: transparent;
  border: 0;
  color: var(--text);
  cursor: pointer;
  padding: 0;
  text-align: left;
  flex: 0 0 auto;
}

.logo:focus-visible,
.nav-toggle:focus-visible,
.tab-btn:focus-visible,
.lang-btn:focus-visible,
.btn-primary:focus-visible,
.btn-secondary:focus-visible,
.btn-ghost:focus-visible,
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  box-shadow: var(--focus-ring);
}

.logo-image {
  width: clamp(162px, 17vw, 198px);
  height: auto;
  max-height: 58px;
  object-fit: contain;
  flex: 0 0 auto;
  display: block;
}

.main-nav {
  display: flex;
  gap: 24px;
  align-items: center;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text);
  border-radius: 999px;
}

.tab-btn {
  background: none;
  border: none;
  color: var(--muted);
  cursor: pointer;
  font-size: 1rem;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: color 160ms ease, border-color 160ms ease;
}

.tab-btn.active {
  color: var(--accent);
  border-color: var(--accent);
}

.tab-btn:hover {
  color: var(--text);
}

.lang-switch {
  display: flex;
  gap: 6px;
  color: var(--muted);
  align-items: center;
}

.lang-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--muted);
  font-size: 0.9rem;
  border-radius: var(--radius-md);
  padding: 4px 6px;
  transition: color 160ms ease, background 160ms ease;
}

.lang-btn.lang-active {
  color: var(--accent);
}

.lang-btn:hover {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
}

/* MAIN */
main {
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 20px 100px;
}

/* HERO */
.hero {
  padding: 60px 50px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #1e1b4b, #0f172a);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(148, 163, 184, 0.25);
  margin-bottom: 80px;
}

.hero h1 {
  font-size: 2.6rem;
  margin: 0 0 16px;
}

.hero-text {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 720px;
  margin-bottom: 26px;
}

.hero-note {
  font-size: 0.95rem;
  color: var(--muted);
  max-width: 720px;
  margin-top: 10px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 26px;
}

.btn-primary,
.btn-secondary,
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  padding: 11px 20px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  min-height: 44px;
  text-decoration: none;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

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

.btn-secondary {
  background: var(--accent-soft);
  color: var(--accent);
}

.btn-ghost {
  background: transparent;
  color: var(--muted);
  border: 1px solid rgba(148, 163, 184, 0.4);
}

.btn-primary:hover,
.btn-secondary:hover,
.btn-ghost:hover {
  transform: translateY(-1px);
}

.btn-primary:hover {
  background: #6d28d9;
}

.btn-secondary:hover {
  background: rgba(20, 184, 166, 0.14);
  color: #5eead4;
}

.btn-ghost:hover {
  color: var(--text);
  border-color: rgba(20, 184, 166, 0.55);
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag {
  background: rgba(255, 255, 255, 0.08);
  padding: 6px 12px;
  border-radius: var(--radius-md);
  font-size: 0.85rem;
}

/* SECTIONS */
.section-block {
  margin-bottom: 90px;
}

.section-block h2 {
  font-size: 1.9rem;
  margin-bottom: 12px;
}

.section-block p {
  color: var(--muted);
  margin-bottom: 20px;
}

/* CARDS & GRIDS */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 26px;
}

.card {
  background: var(--card-bg);
  padding: 26px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  transition: border-color 160ms ease, transform 160ms ease, background 160ms ease;
}

.card:hover,
.timeline-item:hover {
  border-color: rgba(20, 184, 166, 0.4);
  transform: translateY(-2px);
}

.card h3 {
  margin-top: 0;
  margin-bottom: 10px;
}

.card p {
  margin-bottom: 10px;
}

.meta {
  font-size: 0.85rem;
  color: var(--muted);
}

/* LISTS */
.bullet-list {
  padding-left: 18px;
  color: var(--muted);
}

.bullet-list li {
  margin-bottom: 4px;
}

/* TIMELINE */
.timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.timeline-item {
  background: var(--card-bg);
  padding: 22px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  transition: border-color 160ms ease, transform 160ms ease;
}

/* TWO-COL */
.two-col {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 30px;
}

/* FAQ */
.faq-list {
  list-style: none;
  padding-left: 0;
  color: var(--muted);
}

.faq-list li {
  margin-bottom: 10px;
}

/* CONTACT */
.contact-email a {
  color: var(--accent);
  text-decoration: none;
}

.contact-email a:hover {
  color: #5eead4;
  text-decoration: underline;
}

.contact-panel {
  background: rgba(15, 17, 24, 0.65);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px;
}

.contact-form {
  margin-top: 24px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--text);
  font-weight: 600;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: #090b12;
  color: var(--text);
  padding: 12px 14px;
}

.contact-form textarea {
  resize: vertical;
  min-height: 140px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #6f7894;
}

.full-width {
  grid-column: 1 / -1;
}

.checkbox-row {
  display: flex !important;
  grid-template-columns: none;
  flex-direction: row;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  font-weight: 500;
}

.checkbox-row input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex: 0 0 auto;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 22px 0 14px;
}

.contact-status {
  color: #5eead4;
  margin-top: 12px;
}


/* v0.2.10 – premium section breathing polish */
.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.trust-item {
  padding: 18px 18px 20px;
  border: 1px solid rgba(124, 58, 237, 0.30);
  background: rgba(15, 17, 24, 0.72);
  border-radius: var(--radius-md);
  color: var(--muted);
  font-size: 0.92rem;
  min-height: 96px;
}

.trust-item strong {
  display: block;
  color: var(--text);
  margin-bottom: 8px;
}

.premium-panel {
  padding: 34px 32px 36px;
  border: 1px solid rgba(20, 184, 166, 0.22);
  background: linear-gradient(135deg, rgba(20,184,166,0.08), rgba(124,58,237,0.08));
  border-radius: var(--radius-lg);
}

.premium-panel h2 {
  margin-top: 0;
}

.premium-panel .section-lead {
  max-width: 860px;
}

.outcome-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.outcome-pill {
  padding: 12px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  color: var(--text);
  border: 1px solid rgba(255,255,255,0.08);
  font-size: 0.94rem;
}

.final-cta {
  text-align: center;
  border: 1px solid rgba(124,58,237,0.32);
  background: radial-gradient(circle at top, rgba(124,58,237,0.20), rgba(15,17,24,0.70));
}

.final-cta .hero-actions {
  justify-content: center;
}

/* SECTION CTA */
.section-cta {
  margin-top: 20px;
}

/* FOOTER */
.site-footer {
  padding: 30px 40px;
  border-top: 1px solid var(--border);
  color: var(--muted);
  background: #020617;
  font-size: 0.9rem;
}


.site-version {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 12px;
  padding: 5px 10px;
  border: 1px solid rgba(20, 184, 166, 0.26);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(20, 184, 166, 0.08);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}

/* TABS */
.tab-section {
  display: none !important;
}

.tab-section.active {
  display: block !important;
}

/* RESPONSIVE */
@media (max-width: 800px) {
  .site-header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 16px;
    padding: 18px 20px;
  }


  .logo-image {
    width: clamp(132px, 48vw, 160px);
    max-height: 50px;
  }

  .nav-toggle {
    display: inline-flex;
    justify-self: end;
  }

  .main-nav {
    display: none;
    grid-column: 1 / -1;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding-top: 14px;
    border-top: 1px solid var(--border);
  }

  .main-nav.is-open {
    display: flex;
  }

  .tab-btn {
    width: 100%;
    text-align: left;
    padding: 12px 0;
  }

  .premium-panel {
    padding: 28px 22px 30px;
  }

  .trust-strip,
  .outcome-list {
    grid-template-columns: 1fr;
  }

  .trust-strip {
    gap: 14px;
  }

  .trust-item {
    min-height: auto;
  }

  .lang-switch {
    grid-column: 1 / -1;
  }

  .hero {
    padding: 40px 24px;
    margin-bottom: 56px;
  }

  .hero h1 {
    font-size: 2.1rem;
  }

  .two-col {
    grid-template-columns: 1fr;
  }

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

  .contact-panel {
    padding: 22px;
  }

  .hero-actions .btn-primary,
  .hero-actions .btn-secondary,
  .hero-actions .btn-ghost,
  .form-actions .btn-primary,
  .form-actions .btn-secondary {
    width: 100%;
  }
}

/* v0.2.5 – contact notes and glossary */
.field-note {
  display: block;
  margin-top: 0.45rem;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.45;
}

.glossary-block .cards {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.glossary-card h3 {
  color: var(--accent-light);
  letter-spacing: 0.01em;
}

.glossary-card p {
  font-size: 0.95rem;
}


/* v0.2.6 – clearer process and safer contact wording */
/* v0.2.7 – logo asset polish and home-logo scroll-to-top */
.section-lead {
  max-width: 760px;
  color: var(--muted);
  margin-top: -2px;
  margin-bottom: 24px;
}

.process-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.process-card {
  position: relative;
  overflow: hidden;
}

.step-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-bottom: 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-alt));
  color: #fff;
  font-weight: 700;
  box-shadow: 0 12px 30px rgba(20, 184, 166, 0.18);
}


/* v0.3.0 – differentiation, proof and conversion polish */
.difference-panel {
  border-color: rgba(124, 58, 237, 0.26);
  background: linear-gradient(135deg, rgba(124,58,237,0.11), rgba(20,184,166,0.05));
}

.difference-grid,
.proof-grid {
  margin-top: 22px;
}

.featured-card {
  border-color: rgba(124, 58, 237, 0.45);
  background: linear-gradient(145deg, rgba(124,58,237,0.16), rgba(15,17,24,0.88));
}

.proof-panel .section-lead {
  max-width: 820px;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  color: #c4b5fd;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid rgba(196,181,253,0.45);
}

.card-link:hover,
.card-link:focus-visible {
  color: #ffffff;
  border-bottom-color: rgba(255,255,255,0.8);
}


/* v0.3.1 conversion and proof polish */
.hero-proof {
  margin: 1.05rem 0 1.15rem;
  color: var(--text-soft);
  font-weight: 700;
  max-width: 760px;
  line-height: 1.55;
}

.hero-proof + .hero-actions {
  margin-top: 0;
}
.conversion-panel {
  border: 1px solid rgba(125, 84, 255, 0.22);
  background: linear-gradient(135deg, rgba(9, 22, 42, 0.74), rgba(20, 16, 48, 0.64));
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2.35rem);
}
.compact-cards .card {
  min-height: 0;
}
.offer-panel {
  padding: clamp(1.5rem, 3vw, 2.5rem);
}
.package-grid {
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}
.package-card {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.package-card .meta:first-child {
  align-self: flex-start;
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  background: rgba(120, 70, 255, 0.13);
  border: 1px solid rgba(120, 70, 255, 0.25);
}
.case-card {
  grid-column: span 2;
}
.case-breakdown {
  display: grid;
  gap: 0.6rem;
  margin: 1rem 0;
}
.case-breakdown div {
  display: grid;
  gap: 0.2rem;
  padding: 0.8rem 0.9rem;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  background: rgba(255,255,255,0.035);
}
.case-breakdown strong {
  color: var(--text-main);
  font-size: 0.9rem;
}
.case-breakdown span {
  color: var(--text-soft);
  line-height: 1.5;
}
@media (max-width: 760px) {
  .case-card {
    grid-column: span 1;
  }
  .conversion-panel,
  .offer-panel {
    padding: 1.15rem;
  }
}


/* v0.4.0 premium comparison and tab-scroll polish */
.comparison-panel {
  border-color: rgba(20, 184, 166, 0.26);
  background: linear-gradient(135deg, rgba(20,184,166,0.075), rgba(124,58,237,0.085));
}

.comparison-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.comparison-card {
  position: relative;
  min-height: 100%;
}

.comparison-card.is-highlight {
  border-color: rgba(20, 184, 166, 0.48);
  background: linear-gradient(145deg, rgba(20,184,166,0.14), rgba(124,58,237,0.12));
  box-shadow: 0 18px 50px rgba(20, 184, 166, 0.08);
}

.comparison-label {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 0.85rem;
  padding: 0.28rem 0.62rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.045);
  color: #c4b5fd;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.comparison-card.is-highlight .comparison-label {
  color: #99f6e4;
  border-color: rgba(20,184,166,0.28);
  background: rgba(20,184,166,0.08);
}

@media (max-width: 960px) {
  .comparison-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .comparison-grid {
    grid-template-columns: 1fr;
  }
}

/* v0.4.1 curated lab and proof layer */
.curated-grid {
  align-items: stretch;
}

.proof-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.proof-card h3,
.proof-card p {
  margin-bottom: 0;
}

.status-badge {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 5px 10px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  border: 1px solid rgba(148, 163, 184, 0.26);
  background: rgba(255, 255, 255, 0.06);
  color: var(--muted);
}

.status-public {
  border-color: rgba(20, 184, 166, 0.5);
  color: #5eead4;
  background: rgba(20, 184, 166, 0.10);
}

.status-internal {
  border-color: rgba(167, 139, 250, 0.55);
  color: #c4b5fd;
  background: rgba(124, 58, 237, 0.13);
}

.status-prototype {
  border-color: rgba(59, 130, 246, 0.5);
  color: #93c5fd;
  background: rgba(59, 130, 246, 0.12);
}

.status-explore {
  border-color: rgba(245, 158, 11, 0.45);
  color: #fcd34d;
  background: rgba(245, 158, 11, 0.10);
}

.proof-note {
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid rgba(148, 163, 184, 0.14);
  font-size: 0.92rem;
}

.proof-note strong {
  color: var(--text);
  margin-right: 4px;
}

.curated-lab-panel {
  border: 1px solid rgba(20, 184, 166, 0.18);
  border-radius: var(--radius-lg);
  padding: 34px;
  background: linear-gradient(135deg, rgba(20, 184, 166, 0.06), rgba(124, 58, 237, 0.05));
}

.lab-curation-note {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

@media (max-width: 720px) {
  .curated-lab-panel {
    padding: 24px;
  }

  .proof-note {
    font-size: 0.9rem;
  }
}


/* v0.5.0 – trust method, readiness check and privacy baseline */
.readiness-panel,
.privacy-panel {
  border-color: rgba(20, 184, 166, 0.24);
  background: linear-gradient(135deg, rgba(20, 184, 166, 0.075), rgba(15, 23, 42, 0.70));
}

.readiness-form {
  display: grid;
  gap: 22px;
}

.readiness-grid,
.privacy-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.readiness-form label {
  display: grid;
  gap: 8px;
  color: var(--text);
  font-weight: 700;
}

.readiness-form select {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  padding: 12px 14px;
  font: inherit;
}

.readiness-form select:focus {
  outline: 2px solid rgba(20, 184, 166, 0.45);
  border-color: rgba(20, 184, 166, 0.6);
}

.readiness-actions {
  margin-top: 0;
}

.readiness-result {
  border: 1px solid rgba(20, 184, 166, 0.34);
  border-radius: var(--radius-md);
  background: rgba(20, 184, 166, 0.08);
  padding: clamp(1rem, 2.4vw, 1.5rem);
}

.readiness-result h3 {
  margin: 0 0 0.5rem;
}

.readiness-result p {
  margin-bottom: 1rem;
}

.package-outcomes {
  margin-top: 0.2rem;
  margin-bottom: 0.5rem;
}

.privacy-note {
  margin-top: 20px;
  margin-bottom: 0;
}

@media (max-width: 760px) {
  .readiness-grid,
  .privacy-grid {
    grid-template-columns: 1fr;
  }
}

/* v0.5.2 – idea check to contact flow */
.readiness-next {
  margin: 1rem 0 1.1rem;
  padding: 1rem;
  border: 1px solid rgba(124, 58, 237, 0.28);
  border-radius: var(--radius-md);
  background: rgba(15, 23, 42, 0.35);
}

.readiness-next strong {
  display: block;
  margin-bottom: 0.55rem;
}

.readiness-next ul {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--muted);
}

.readiness-next li + li {
  margin-top: 0.35rem;
}

.readiness-result-actions {
  gap: 0.85rem;
  flex-wrap: wrap;
}

.readiness-status {
  margin-top: 0.85rem;
}


/* v0.6.0 – AI-ready local automation and richer idea brief */
.ai-automation-panel {
  border-color: rgba(124, 58, 237, 0.28);
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.08), rgba(15, 23, 42, 0.72));
}

.automation-cards .card {
  min-height: 100%;
}

.result-topline {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 0.65rem;
}

.signal-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(20, 184, 166, 0.35);
  border-radius: 999px;
  background: rgba(20, 184, 166, 0.12);
  color: #a7f3d0;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  padding: 0.35rem 0.65rem;
  white-space: nowrap;
}

.readiness-why,
.readiness-considerations,
.readiness-brief {
  margin: 1rem 0 1.1rem;
  padding: 1rem;
  border: 1px solid rgba(124, 58, 237, 0.25);
  border-radius: var(--radius-md);
  background: rgba(2, 6, 23, 0.28);
}

.readiness-why strong,
.readiness-considerations strong,
.readiness-brief strong {
  display: block;
  margin-bottom: 0.55rem;
}

.readiness-why p {
  margin: 0;
  color: var(--text-soft);
}

.readiness-considerations ul {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--muted);
}

.readiness-considerations li + li {
  margin-top: 0.35rem;
}

.readiness-brief-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.65rem;
}

.readiness-brief-head span {
  color: #a78bfa;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.readiness-brief textarea {
  width: 100%;
  resize: vertical;
  min-height: 9rem;
  border: 1px solid rgba(148, 163, 184, 0.28);
  border-radius: var(--radius-sm);
  background: rgba(15, 23, 42, 0.65);
  color: var(--text-soft);
  padding: 0.85rem;
  line-height: 1.5;
}

@media (max-width: 640px) {
  .result-topline,
  .readiness-brief-head {
    align-items: flex-start;
    flex-direction: column;
  }
}


/* v0.6.1 contact form action polish */
.contact-actions {
  align-items: center;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.muted-action {
  opacity: 0.82;
}

.muted-action:hover,
.muted-action:focus-visible {
  opacity: 1;
}

@media (max-width: 620px) {
  .contact-actions .btn-primary,
  .contact-actions .btn-secondary {
    width: 100%;
    justify-content: center;
  }
}

/* v0.7.0 – offer router and smart package cards */
.readiness-offer {
  margin: 1rem 0 1.1rem;
  padding: 1rem;
  border: 1px solid rgba(20, 184, 166, 0.28);
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(20, 184, 166, 0.10), rgba(2, 6, 23, 0.30));
}

.readiness-offer h4 {
  margin: 0.55rem 0 0.35rem;
  color: var(--text-main);
  font-size: 1.05rem;
}

.readiness-offer p {
  margin-bottom: 0.85rem;
}

.package-card {
  position: relative;
}

.package-match-badge {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  border-radius: 999px;
  border: 1px solid rgba(20, 184, 166, 0.42);
  background: rgba(20, 184, 166, 0.14);
  color: #a7f3d0;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  padding: 0.28rem 0.58rem;
  box-shadow: 0 0 0 1px rgba(20, 184, 166, 0.06);
}

.package-card.is-recommended {
  border-color: rgba(20, 184, 166, 0.54);
  box-shadow: 0 20px 55px rgba(20, 184, 166, 0.10), 0 0 0 1px rgba(20, 184, 166, 0.12) inset;
}

.package-card.is-recommended::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: radial-gradient(circle at top right, rgba(20, 184, 166, 0.14), transparent 36%);
}

.package-fit {
  margin-top: 0.2rem;
  padding: 0.75rem 0.85rem;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--text-soft);
  line-height: 1.55;
}

.package-contact {
  margin-top: auto;
  width: fit-content;
}

@media (max-width: 760px) {
  .package-match-badge {
    position: static;
    align-self: flex-start;
    margin-bottom: 0.15rem;
  }
  .package-contact {
    width: 100%;
  }
}


/* v0.8.0 – Premium proof navigation and case proof layer */
.proof-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin: 1.4rem 0 0.7rem;
}

.proof-filter-btn {
  border: 1px solid rgba(148, 163, 184, 0.28);
  background: rgba(15, 23, 42, 0.78);
  color: var(--text-soft);
  padding: 0.65rem 0.95rem;
  border-radius: 999px;
  cursor: pointer;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.proof-filter-btn:hover,
.proof-filter-btn:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(20, 184, 166, 0.65);
  color: var(--text);
  outline: none;
}

.proof-filter-btn.is-active {
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.95), rgba(20, 184, 166, 0.78));
  color: #ffffff;
  border-color: transparent;
}

.proof-filter-status {
  margin-top: 0.35rem;
}

.proof-card.is-hidden {
  display: none;
}

.proof-matrix-panel,
.case-proof-panel {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.88), rgba(3, 7, 18, 0.94));
  border: 1px solid rgba(148, 163, 184, 0.16);
}

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

.proof-matrix-card,
.case-proof-card {
  position: relative;
  overflow: hidden;
}

.matrix-label {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-bottom: 0.85rem;
  padding: 0.32rem 0.65rem;
  border-radius: 999px;
  font-size: 0.78rem;
  color: #a7f3d0;
  background: rgba(20, 184, 166, 0.12);
  border: 1px solid rgba(20, 184, 166, 0.22);
}

.case-facts {
  display: grid;
  gap: 0.85rem;
  margin: 1rem 0 0;
}

.case-facts div {
  padding: 0.85rem;
  border-radius: var(--radius-md);
  background: rgba(2, 6, 23, 0.35);
  border: 1px solid rgba(148, 163, 184, 0.12);
}

.case-facts dt {
  margin: 0 0 0.28rem;
  color: var(--accent-alt);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.case-facts dd {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.55;
}

@media (max-width: 760px) {
  .proof-matrix-grid,
  .case-proof-grid {
    grid-template-columns: 1fr;
  }

  .proof-filter {
    gap: 0.55rem;
  }

  .proof-filter-btn {
    flex: 1 1 44%;
    padding: 0.6rem 0.7rem;
  }
}


/* v0.9.0 – Client journey and trust layer */
.journey-panel {
  position: relative;
  overflow: hidden;
}

.journey-panel::before {
  content: "";
  position: absolute;
  inset: 24px 24px auto auto;
  width: 160px;
  height: 160px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(88, 166, 255, 0.16), transparent 68%);
  pointer-events: none;
}

.journey-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.journey-step {
  min-height: 100%;
  position: relative;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  margin-bottom: 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  color: var(--accent);
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}

.assurance-panel {
  margin-top: 2rem;
}

.assurance-strip .trust-item {
  border-color: rgba(255, 255, 255, 0.12);
}

.contact-after-panel .cards {
  margin-top: 1.4rem;
}

.contact-after-panel .card h3 {
  margin-bottom: 0.45rem;
}

@media (max-width: 980px) {
  .journey-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .journey-steps {
    grid-template-columns: 1fr;
  }

  .journey-panel::before {
    width: 120px;
    height: 120px;
    opacity: 0.75;
  }
}


/* v1.0.0 – Smart start console and launch baseline polish */
.smart-start-panel {
  position: relative;
  overflow: hidden;
  border-color: rgba(124, 58, 237, 0.34);
  background:
    radial-gradient(circle at 15% 0%, rgba(124, 58, 237, 0.16), transparent 38%),
    linear-gradient(135deg, rgba(15, 23, 42, 0.82), rgba(2, 6, 23, 0.72));
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  margin-bottom: 0.7rem;
  border: 1px solid rgba(20, 184, 166, 0.35);
  border-radius: 999px;
  background: rgba(20, 184, 166, 0.10);
  color: #99f6e4;
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 0.7rem;
}

.start-path-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.6rem;
}

.start-path-card {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  min-height: 100%;
}

.start-path-card p {
  flex: 1;
}

.path-number {
  color: #a78bfa;
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.launch-trust-strip {
  margin-top: 1.35rem;
}

@media (max-width: 1040px) {
  .start-path-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .start-path-grid {
    grid-template-columns: 1fr;
  }

  .start-path-card .btn-primary,
  .start-path-card .btn-secondary,
  .start-path-card .btn-ghost {
    width: 100%;
  }
}

/* v1.1.0 – local lead brief export polish */
.readiness-result-actions {
  gap: 0.7rem;
}

.readiness-result-actions .btn-secondary,
.readiness-result-actions .btn-primary {
  white-space: nowrap;
}

@media (max-width: 720px) {
  .readiness-result-actions .btn-secondary,
  .readiness-result-actions .btn-primary {
    width: 100%;
  }
}

/* v1.2.0 – Smart local brief modes */
.brief-mode-panel {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 0.25rem 0 0.65rem;
}

.brief-mode-btn {
  min-height: 2.35rem;
  padding-inline: 0.85rem;
}

.brief-mode-btn.is-active {
  border-color: rgba(20, 184, 166, 0.6);
  background: linear-gradient(135deg, rgba(20, 184, 166, 0.22), rgba(124, 58, 237, 0.18));
  color: #ffffff;
  box-shadow: 0 12px 35px rgba(20, 184, 166, 0.12);
}

[data-readiness-brief-mode-note] {
  margin: 0 0 0.65rem;
  color: var(--text-soft);
}

@media (max-width: 640px) {
  .brief-mode-panel .btn-secondary {
    flex: 1 1 100%;
    justify-content: center;
  }
}

/* v1.3.0 – Guided decision path + proof match */
.guided-path-panel {
  position: relative;
  overflow: hidden;
}

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

.decision-step {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg, 22px);
  background: rgba(255, 255, 255, 0.045);
  padding: 1.15rem;
  min-height: 170px;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 999px;
  background: rgba(111, 231, 255, 0.14);
  color: var(--accent, #6fe7ff);
  font-weight: 800;
  font-size: 0.82rem;
  margin-bottom: 0.75rem;
}

.readiness-proof {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: var(--radius-md, 18px);
  background: rgba(111, 231, 255, 0.07);
  border: 1px solid rgba(111, 231, 255, 0.18);
}

.readiness-proof h4 {
  margin: 0.55rem 0 0.35rem;
}

.readiness-proof p {
  margin-bottom: 0.85rem;
}

@media (max-width: 980px) {
  .decision-flow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .decision-flow {
    grid-template-columns: 1fr;
  }
  .decision-step {
    min-height: auto;
  }
}


/* v1.4.0 – Client + Solo Builder Workbench */
.solo-workbench-panel {
  position: relative;
  overflow: hidden;
}

.solo-workbench-panel::after {
  content: "";
  position: absolute;
  inset: auto -10% -45% 45%;
  height: 260px;
  background: radial-gradient(circle, rgba(51, 184, 255, 0.14), transparent 68%);
  pointer-events: none;
}

.workbench-cards .card {
  position: relative;
  z-index: 1;
}

.readiness-workbench {
  margin-top: 1rem;
  padding: 1rem;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.045);
}

.readiness-workbench strong {
  display: block;
  margin-bottom: 0.35rem;
}

.readiness-workbench p {
  margin: 0 0 0.75rem;
  color: var(--text-muted);
}

.readiness-workbench ul {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--text-muted);
}

.brief-mode-btn[data-brief-mode="operator"] {
  border-color: rgba(51, 184, 255, 0.34);
}



.solo-workbench-panel .status-internal {
  border-color: rgba(245, 158, 11, 0.38);
}

/* v1.6.0 – Backend readiness + Mini Project Card */
.readiness-project-card {
  margin-top: 1rem;
  padding: 1rem;
  border: 1px solid rgba(125, 211, 252, 0.18);
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.08), rgba(255, 255, 255, 0.035));
}

.readiness-project-card > strong {
  display: block;
  margin-bottom: 0.75rem;
}

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

.project-card-grid div {
  padding: 0.85rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.project-card-grid span {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.project-card-grid p {
  margin: 0;
  font-weight: 700;
  color: var(--text-main);
}

.backend-ready-panel {
  position: relative;
  overflow: hidden;
}

.backend-ready-panel::before {
  content: "";
  position: absolute;
  inset: -25% 55% auto -20%;
  height: 260px;
  background: radial-gradient(circle, rgba(34, 197, 94, 0.12), transparent 68%);
  pointer-events: none;
}

.backend-ready-grid .card {
  position: relative;
  z-index: 1;
}

.brief-mode-btn[data-brief-mode="project"] {
  border-color: rgba(125, 211, 252, 0.35);
}

@media (max-width: 980px) {
  .project-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .project-card-grid {
    grid-template-columns: 1fr;
  }
}


/* v1.8 backend decision readiness */
.backend-decision-panel {
  border-color: rgba(45, 212, 191, 0.34);
}
.backend-decision-grid .card {
  min-height: 100%;
}


/* v1.8.1 AI-era positioning + frictionless growth */
.ai-era-panel {
  border-color: rgba(14, 165, 233, 0.34);
  background: radial-gradient(circle at top left, rgba(14,165,233,0.12), transparent 36%), linear-gradient(135deg, rgba(20,184,166,0.08), rgba(124,58,237,0.08));
}
.ai-era-grid .card {
  min-height: 100%;
}


/* Backend contact form safety */
.honeypot-field {
  position: absolute !important;
  left: -10000px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.contact-status.status-success {
  color: #2ee59d;
}

.contact-status.status-error {
  color: #ff8a8a;
}

.contact-status.status-pending {
  color: #c7d2fe;
}


/* v1.9.9 – Conversion polish / mobile trust */
.mobile-conversion-strip {
  margin-top: 1rem;
  border-color: rgba(45, 212, 191, 0.28);
}

.conversion-hero-actions .btn-primary {
  min-width: 170px;
}

.pre-submit-panel {
  border-color: rgba(167, 139, 250, 0.30);
  background: radial-gradient(circle at top right, rgba(167,139,250,0.10), transparent 34%), linear-gradient(135deg, rgba(14,165,233,0.06), rgba(255,255,255,0.035));
}

.pre-submit-grid .card {
  min-height: 100%;
}

@media (max-width: 640px) {
  .conversion-hero-actions {
    gap: 0.65rem;
  }
  .conversion-hero-actions .btn-primary,
  .conversion-hero-actions .btn-secondary,
  .conversion-hero-actions .btn-ghost {
    width: 100%;
    justify-content: center;
  }
  .mobile-conversion-strip .trust-item {
    padding: 0.85rem;
  }
}


/* v1.9.11 – First reply microcopy / reply promise */
.reply-promise-panel {
  position: relative;
}

.reply-promise-grid .card {
  min-height: 100%;
}

@media (max-width: 720px) {
  .reply-promise-grid {
    gap: 14px;
  }
}


/* v1.9.11 – Booking CTA / calendar-light handoff */
.booking-handoff-panel {
  border-color: rgba(45, 212, 191, 0.32);
  background: radial-gradient(circle at top left, rgba(45, 212, 191, 0.11), transparent 36%), linear-gradient(135deg, rgba(255,255,255,0.05), rgba(14,165,233,0.05));
}

.booking-handoff-grid .card {
  min-height: 100%;
}

@media (max-width: 720px) {
  .booking-handoff-grid {
    gap: 14px;
  }
}


/* v1.9.12 – Pre-call brief / meeting prep pack */
.pre-call-brief-panel {
  border-color: rgba(56, 189, 248, 0.2);
}
.pre-call-brief-grid .card {
  min-height: 100%;
}


/* v1.9.13 – Offer readiness / mini proposal handoff */
.offer-readiness-panel {
  position: relative;
}
.offer-readiness-grid .card {
  min-height: 100%;
}

/* v1.9.28 first 10 leads sales sprint */
.first-ten-leads-panel, .first-ten-offer-panel, .sales-sprint-panel { position: relative; overflow: hidden; }
.first-ten-leads-panel::after, .first-ten-offer-panel::after, .sales-sprint-panel::after { content: ""; position:absolute; inset:auto -80px -80px auto; width:180px; height:180px; border-radius:999px; background:rgba(46,229,157,.08); pointer-events:none; }

/* v1.9.28 first paid pilot readiness */
.first-paid-pilot-panel, .founder-sales-panel, .pilot-readiness-panel { position: relative; overflow: hidden; }
.first-paid-pilot-panel::after, .founder-sales-panel::after, .pilot-readiness-panel::after { content: ""; position:absolute; inset:auto -90px -90px auto; width:190px; height:190px; border-radius:999px; background:rgba(167,139,250,.10); pointer-events:none; }

/* v1.9.28 pilot close system */
.pilot-close-system-panel, .pilot-close-offer-panel, .close-readiness-panel { position: relative; overflow: hidden; }
.pilot-close-system-panel::after, .pilot-close-offer-panel::after, .close-readiness-panel::after { content: ""; position:absolute; inset:auto -100px -100px auto; width:210px; height:210px; border-radius:999px; background:rgba(45,212,191,.10); pointer-events:none; }


/* v1.9.44 – public case study / Maltstory portfolio system */
.flagship-case{border-color:rgba(20,184,166,.55);box-shadow:0 18px 45px rgba(20,184,166,.08)}
.case-meta-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:18px;margin:22px 0}
.case-study-columns{align-items:stretch}
.case-breakdown-extended{margin-top:16px}
.maltstory-case-panel .card-link{display:inline-flex;margin-top:14px}
@media(max-width:900px){.case-meta-grid{grid-template-columns:1fr}}
