@charset "UTF-8";

:root {
  --bg: #f6efe6;
  --bg-soft: #fff9f2;
  --surface: rgba(255, 252, 246, 0.86);
  --surface-strong: #fffdf9;
  --ink: #1f1b17;
  --muted: #5f564e;
  --line: rgba(79, 60, 41, 0.14);
  --accent: #b5421d;
  --accent-dark: #912f12;
  --accent-soft: rgba(181, 66, 29, 0.12);
  --olive: #2f5445;
  --olive-soft: rgba(47, 84, 69, 0.1);
  --shadow: 0 24px 70px rgba(77, 45, 24, 0.12);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --content: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(181, 66, 29, 0.14), transparent 32%),
    radial-gradient(circle at 85% 12%, rgba(47, 84, 69, 0.14), transparent 22%),
    linear-gradient(180deg, #f9f4ec 0%, #f4ede3 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.35) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.35) 1px, transparent 1px);
  background-size: 26px 26px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.35), transparent 85%);
  pointer-events: none;
  opacity: 0.28;
}

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

main {
  display: block;
}

.site-header,
.section,
.site-footer {
  width: min(calc(100% - 2rem), var(--content));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.2rem;
  margin-top: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 999px;
  background: rgba(255, 250, 244, 0.78);
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 30px rgba(55, 33, 18, 0.08);
}

.brand-lockup {
  display: grid;
  gap: 0.15rem;
}

.brand-kicker,
.eyebrow,
.panel-kicker,
.case-label,
.offer-tag {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--accent);
}

.brand-name {
  font-weight: 700;
  font-size: 0.95rem;
}

.site-nav {
  display: flex;
  gap: 1.25rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.site-nav a:hover,
.text-link:hover {
  color: var(--accent);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 3rem;
  padding: 0.9rem 1.3rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: linear-gradient(135deg, var(--accent) 0%, #d5652f 100%);
  color: #fff9f4;
  box-shadow: 0 18px 34px rgba(181, 66, 29, 0.24);
}

.button-primary:hover {
  background: linear-gradient(135deg, var(--accent-dark) 0%, #c95723 100%);
}

@keyframes heroCtaGlow {
  0%,
  100% {
    box-shadow: 0 18px 34px rgba(181, 66, 29, 0.24);
  }
  50% {
    box-shadow:
      0 22px 42px rgba(181, 66, 29, 0.34),
      0 0 0 6px rgba(213, 101, 47, 0.08);
  }
}

.button-secondary {
  border-color: rgba(47, 84, 69, 0.18);
  background: rgba(255, 255, 255, 0.68);
  color: var(--olive);
}

.hero {
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  gap: 2rem;
  align-items: stretch;
  width: min(100%, 1400px);
  margin: 1.2rem auto 0;
  padding: clamp(2.4rem, 4vw, 4rem);
  min-height: calc(100svh - 8.6rem);
}

.hero-copy,
.hero-panel {
  position: relative;
  border-radius: calc(var(--radius-lg) + 8px);
}

.hero-copy {
  padding: clamp(1.2rem, 2vw, 2rem) 0;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hero h1,
.section-heading h2,
.final-cta h2 {
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.hero h1 {
  max-width: none;
  font-size: clamp(2.8rem, 5.5vw, 4.95rem);
  text-wrap: balance;
}

.hero h1.hero-subtitle {
  font-size: clamp(2.8rem, 5.2vw, 4.9rem);
  line-height: 0.98;
  max-width: none;
  text-wrap: balance;
}

.hero-lead,
.intro-grid p,
.offer-summary,
.case-card p,
.funding-card p,
.advisor-grid p,
.final-cta p,
.panel-note,
.timeline p,
.faq-list p,
.calculator-copy p {
  color: var(--muted);
  line-height: 1.75;
  font-size: 1.03rem;
}

.hero-lead {
  max-width: 58ch;
  margin: 1.4rem 0 1.8rem;
  font-size: 1.1rem;
}

.hero-topnote {
  margin: 0 0 0.9rem;
  color: var(--olive);
  font-weight: 700;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  width: 100%;
}

.hero-actions .button-primary {
  position: relative;
  overflow: hidden;
  width: 100%;
  min-height: 3.6rem;
  padding-inline: 2.1rem;
  font-size: 1.12rem;
  letter-spacing: -0.01em;
  animation: heroCtaGlow 3s ease-in-out infinite;
}

.hero-actions .button-primary::after {
  content: "";
  position: absolute;
  top: 0;
  left: -140%;
  width: 55%;
  height: 100%;
  background: linear-gradient(
    100deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.24) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-20deg);
  pointer-events: none;
  animation: heroCtaShimmer 3s ease-in-out infinite;
}

.hero-intent-links {
  margin: 0.85rem 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  align-items: center;
  font-size: 0.92rem;
  color: var(--muted);
}

.hero-intent-links a {
  color: var(--olive);
  font-weight: 600;
}

.hero-intent-links a:hover {
  color: var(--accent);
}

@keyframes heroCtaShimmer {
  0%,
  72% {
    left: -140%;
  }
  100% {
    left: 165%;
  }
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  padding: 0;
  margin: 2rem 0 0;
  list-style: none;
}

.hero-proof li,
.panel-card,
.offer-card,
.case-card,
.funding-card,
.booking-card,
.fit-grid article,
.advisor-grid article,
.calculator-card {
  border: 1px solid rgba(79, 60, 41, 0.08);
  background: rgba(255, 253, 248, 0.72);
  box-shadow: var(--shadow);
}

.hero-proof li {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 1rem 1.1rem;
  border-radius: var(--radius-md);
  font-size: 0.98rem;
  line-height: 1.55;
}

.hero-proof strong {
  color: var(--ink);
  font-size: 1.45rem;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.hero-proof span {
  color: var(--muted);
}

.hero-panel {
  overflow: hidden;
  padding: 1.5rem;
  background:
    linear-gradient(180deg, rgba(255, 248, 240, 0.9), rgba(254, 251, 245, 0.78)),
    radial-gradient(circle at top, rgba(181, 66, 29, 0.15), transparent 42%);
  border: 1px solid rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.hero-portrait-frame {
  margin: 0 0 1.2rem;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(79, 60, 41, 0.08);
  background: rgba(255, 253, 248, 0.72);
  aspect-ratio: 4 / 2.8;
}

.hero-portrait-link {
  display: block;
}

.hero-portrait-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 34%;
  transform: scale(1.1);
  transform-origin: center 40%;
  display: block;
  transition: transform 180ms ease;
}

.hero-portrait-link:hover .hero-portrait-frame img {
  transform: scale(1.12);
}

.panel-stack {
  display: grid;
  gap: 0.85rem;
  margin-top: 1rem;
}

.panel-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  padding: 1rem 1.05rem;
  border-radius: var(--radius-md);
}

.panel-card span {
  display: inline-grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 800;
}

.panel-card h2,
.offer-card h3,
.case-card h3,
.funding-card h3,
.fit-grid h3,
.advisor-grid h3,
.timeline h3,
.booking-title {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.35;
  font-weight: 800;
}

.panel-card p,
.panel-note,
.offer-card li,
.booking-card li,
.fit-grid li,
.timeline p,
.contact-note {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.panel-note {
  margin-top: 1.1rem;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  width: min(calc(100% - 2rem), var(--content));
  margin: 0 auto;
  padding: 0 0 1rem;
}

.trust-strip p {
  margin: 0;
  padding: 1rem 1.15rem;
  border-top: 1px solid rgba(79, 60, 41, 0.14);
  color: var(--olive);
  font-weight: 600;
}

.visual-proof-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.2rem;
  width: 100%;
}

.visual-proof-cta {
  display: flex;
  justify-content: center;
  margin-top: 1.5rem;
}

.visual-proof-cta .button {
  width: min(640px, 92%);
  min-height: 3.6rem;
}

.visual-card {
  padding: 1.4rem;
  border-radius: calc(var(--radius-lg) - 2px);
  border: 1px solid rgba(79, 60, 41, 0.08);
  background: rgba(255, 253, 248, 0.76);
  box-shadow: var(--shadow);
}

.visual-card h3 {
  margin: 0.35rem 0 0.85rem;
  font-size: 1.25rem;
  line-height: 1.3;
}

.visual-card p {
  margin: 0 0 1rem;
  color: var(--muted);
  line-height: 1.72;
}

.readiness-experience {
  padding-top: 4rem;
}

.experience-grid,
.quiz-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1.4rem;
  align-items: start;
}

.experience-copy,
.chat-demo,
.quiz-shell {
  padding: 1.5rem;
  border-radius: calc(var(--radius-lg) + 6px);
  border: 1px solid rgba(79, 60, 41, 0.08);
  background: rgba(255, 253, 248, 0.72);
  box-shadow: var(--shadow);
}

.experience-copy {
  align-self: stretch;
  background:
    linear-gradient(180deg, rgba(47, 84, 69, 0.05), rgba(255, 253, 248, 0.9)),
    rgba(255, 253, 248, 0.86);
}

.experience-lead {
  margin: 0 0 1rem;
  color: var(--muted);
  line-height: 1.8;
  font-size: 1.08rem;
}

.experience-points {
  margin: 0 0 1.4rem;
  padding-left: 1.15rem;
  color: var(--muted);
  line-height: 1.75;
}

.chat-demo {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(246, 242, 236, 0.92)),
    rgba(255, 253, 248, 0.9);
}

.chat-demo-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}

.chat-demo-title {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: #687287;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.status-dot {
  width: 0.85rem;
  height: 0.85rem;
  border-radius: 999px;
  background: #1f9b7a;
  box-shadow: 0 0 0 6px rgba(31, 155, 122, 0.12);
}

.chat-live-pill {
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  background: rgba(31, 155, 122, 0.1);
  border: 1px solid rgba(31, 155, 122, 0.18);
  color: #2f7c68;
  font-weight: 700;
}

.chat-thread {
  display: grid;
  gap: 1rem;
  padding: 1.4rem 0;
}

.chat-bubble {
  max-width: 78%;
  padding: 1rem 1.15rem;
  border-radius: 20px;
  opacity: 0.2;
  transform: translateY(12px);
  transition: opacity 320ms ease, transform 320ms ease, box-shadow 320ms ease;
}

.chat-bubble p {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.6;
}

.chat-bubble-user {
  margin-left: auto;
  background: #ebf4ff;
  border: 1px solid rgba(100, 145, 201, 0.22);
}

.chat-bubble-bot {
  background: #f1ede7;
  border: 1px solid rgba(116, 100, 80, 0.12);
}

.chat-bubble.is-visible,
.chat-grant-card.is-visible {
  opacity: 1;
  transform: translateY(0);
  box-shadow: 0 10px 24px rgba(52, 42, 32, 0.08);
}

.chat-grant-card {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 1.3rem;
  border-radius: 20px;
  background: rgba(204, 235, 229, 0.78);
  border: 1px solid rgba(36, 134, 116, 0.2);
  opacity: 0.2;
  transform: translateY(12px);
  transition: opacity 320ms ease, transform 320ms ease, box-shadow 320ms ease;
}

.chat-grant-card span,
.quiz-result-label,
.quiz-step-label {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.74rem;
  font-weight: 700;
  color: #2f7c68;
}

.calculator-note {
  margin-top: 0.85rem;
  color: var(--muted);
  line-height: 1.7;
}

.chat-grant-card strong {
  display: block;
  margin-top: 0.35rem;
  font-size: clamp(2rem, 5vw, 3.1rem);
  font-family: "Fraunces", Georgia, serif;
  font-weight: 600;
}

.chat-grant-graph {
  display: flex;
  align-items: end;
  gap: 0.35rem;
  height: 4rem;
}

.chat-grant-graph span {
  width: 0.5rem;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(47, 124, 104, 0.35), #1b7560);
  transform-origin: bottom;
  animation: pulseBars 2.4s ease-in-out infinite;
}

.chat-grant-graph span:nth-child(1) {
  height: 0.8rem;
}

.chat-grant-graph span:nth-child(2) {
  height: 1.4rem;
  animation-delay: 0.12s;
}

.chat-grant-graph span:nth-child(3) {
  height: 1rem;
  animation-delay: 0.24s;
}

.chat-grant-graph span:nth-child(4) {
  height: 2rem;
  animation-delay: 0.36s;
}

.chat-grant-graph span:nth-child(5) {
  height: 2.7rem;
  animation-delay: 0.48s;
}

.quiz-shell {
  margin-top: 1.4rem;
  background:
    linear-gradient(180deg, rgba(181, 66, 29, 0.06), rgba(255, 253, 248, 0.95)),
    rgba(255, 253, 248, 0.95);
}

.readiness-experience .quiz-shell {
  margin-top: 2rem;
}

.quiz-intro {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1.2rem;
  margin-bottom: 1.4rem;
}

.quiz-intro h3 {
  margin: 0.3rem 0 0;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.05;
}

.quiz-progress-meta {
  min-width: 240px;
}

.quiz-progress-meta span {
  display: block;
  margin-bottom: 0.55rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.quiz-progress-bar {
  height: 0.6rem;
  border-radius: 999px;
  background: rgba(79, 60, 41, 0.1);
  overflow: hidden;
}

.quiz-progress-bar span {
  display: block;
  width: 0;
  height: 100%;
  margin: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--accent), #f19052);
  transition: width 280ms ease;
}

.quiz-card,
.quiz-result-card {
  padding: 1.35rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(79, 60, 41, 0.08);
  background: rgba(255, 255, 255, 0.72);
}

.quiz-card h3 {
  margin: 0.45rem 0 1.2rem;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  line-height: 1.12;
}

.quiz-options {
  display: grid;
  gap: 0.8rem;
}

.quiz-option {
  width: 100%;
  text-align: left;
  padding: 1rem 1.05rem;
  border-radius: 18px;
  border: 1px solid rgba(79, 60, 41, 0.12);
  background: rgba(255, 252, 248, 0.95);
  font: inherit;
  color: var(--ink);
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.quiz-option:hover {
  transform: translateY(-1px);
  border-color: rgba(181, 66, 29, 0.34);
  background: rgba(255, 244, 238, 0.96);
}

.quiz-score-shell {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: center;
}

.quiz-score-ring {
  display: grid;
  place-items: center;
  width: 7rem;
  height: 7rem;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.92) 58%, transparent 59%),
    conic-gradient(var(--accent) 0deg, rgba(79, 60, 41, 0.12) 0deg);
  font-weight: 800;
  color: var(--accent);
}

.quiz-score-ring span {
  font-size: 1.2rem;
}

.quiz-result-card h4 {
  margin: 0.3rem 0 0.5rem;
  font-size: 1.35rem;
}

.quiz-result-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.quiz-result-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 1.2rem;
}

.quiz-result-grid article {
  padding: 1rem;
  border-radius: 18px;
  background: rgba(246, 239, 230, 0.66);
}

.quiz-result-grid span {
  display: block;
  color: var(--muted);
  margin-bottom: 0.45rem;
}

.quiz-result-grid strong {
  font-size: 1.25rem;
}

.quiz-usecases {
  margin-top: 1.15rem;
  padding-top: 1.15rem;
  border-top: 1px solid var(--line);
}

.quiz-usecases ul {
  margin: 0.65rem 0 0;
  padding-left: 1.1rem;
  color: var(--muted);
  line-height: 1.72;
}

.quiz-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.25rem;
}

.visual-proof img {
  width: 100%;
  display: block;
  border-radius: 18px;
  margin-bottom: 1rem;
  background: rgba(255, 255, 255, 0.72);
}

.visual-proof .visual-image-photo {
  width: 100%;
  height: 420px;
  display: block;
  object-fit: cover;
  object-position: center 12%;
  border: 1px solid rgba(79, 60, 41, 0.08);
  border-radius: 20px;
}

.visual-image-diagram {
  width: 100%;
  display: block;
  height: auto;
}

.visual-image-link {
  display: block;
  text-decoration: none;
  cursor: zoom-in;
}

.visual-image-diagram-link {
  padding: 0.35rem 0.55rem;
  background: #fff;
  border: 1px solid rgba(79, 60, 41, 0.08);
  border-radius: 20px;
}

.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 1rem;
  background: rgba(23, 18, 14, 0.8);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.image-lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.image-lightbox-img {
  max-width: min(96vw, 1300px);
  max-height: 88vh;
  width: auto;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  background: #fff;
}

.image-lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2.6rem;
  height: 2.6rem;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--ink);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}

.section {
  padding: 5.2rem 0 0;
}

.calculator {
  padding-top: 3.4rem;
}

.search-intent {
  padding-top: 2.4rem;
}

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

.intent-card {
  padding: 1.45rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(79, 60, 41, 0.08);
  background: rgba(255, 253, 248, 0.76);
  box-shadow: var(--shadow);
}

.intent-card h2 {
  margin: 0.35rem 0 0.9rem;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.65rem, 2.5vw, 2.35rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.intent-card p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.section-heading {
  display: grid;
  gap: 0.65rem;
  margin-bottom: 1.7rem;
}

.section-heading h2,
.final-cta h2 {
  max-width: 28ch;
  font-size: clamp(2.3rem, 4vw, 4rem);
  text-wrap: balance;
}

.intro-grid,
.funding-grid,
.fit-grid,
.advisor-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.35rem;
}

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

.offer-card,
.case-card,
.funding-card,
.booking-card,
.fit-grid article,
.advisor-grid article {
  padding: 1.45rem;
  border-radius: var(--radius-lg);
}

.offer-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

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

.fit-card-positive {
  background:
    linear-gradient(180deg, rgba(47, 84, 69, 0.08), rgba(255, 253, 248, 0.92)),
    rgba(255, 253, 248, 0.9);
}

.fit-card-negative {
  background:
    linear-gradient(180deg, rgba(181, 66, 29, 0.08), rgba(255, 253, 248, 0.92)),
    rgba(255, 253, 248, 0.9);
}

.fit-headline {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.fit-symbol {
  font-size: 2rem;
  line-height: 1;
}

.offer-card.featured {
  background:
    linear-gradient(180deg, rgba(181, 66, 29, 0.08), rgba(255, 253, 248, 0.92)),
    rgba(255, 253, 248, 0.9);
}

.offer-card-recommended {
  position: relative;
  transform: none;
  box-shadow: 0 28px 80px rgba(181, 66, 29, 0.16);
}

.offer-corner-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.34rem 0.68rem;
  border-radius: 999px;
  border: 1px solid rgba(181, 66, 29, 0.24);
  background: rgba(181, 66, 29, 0.14);
  color: var(--accent);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.offer-badge {
  display: inline-flex;
  align-items: center;
  margin: 0 0 0.8rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(181, 66, 29, 0.1);
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 700;
}

.offer-icon {
  width: 4.25rem;
  height: 4.25rem;
  margin-bottom: 1rem;
  border-radius: 20px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(79, 60, 41, 0.08);
}

.offer-icon img {
  width: 100%;
  height: 100%;
  display: block;
}

.offer-card ul,
.booking-card ul,
.fit-grid ul {
  padding-left: 1.1rem;
  margin: 1rem 0 1.2rem;
}

.offer-includes {
  margin: 0 0 1.15rem;
  color: var(--muted);
  line-height: 1.68;
  font-size: 0.98rem;
}

.offer-fitline {
  margin: 0.35rem 0 0.75rem;
  color: var(--olive);
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.5;
}

.offer-includes strong {
  color: var(--ink);
}

.offer-card dl {
  display: grid;
  gap: 0.7rem;
  margin: 0 0 1.2rem;
}

.offer-card dl div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 0.7rem;
  border-top: 1px solid var(--line);
}

.offer-card dt {
  color: var(--muted);
}

.offer-card dd {
  margin: 0;
  font-weight: 700;
}

.offer-win dt,
.offer-win dd {
  color: var(--olive);
  font-weight: 800;
}

.offer-win dd {
  font-size: 1.18rem;
  color: #1f9b7a;
}

.offer-own dt,
.offer-own dd {
  color: var(--muted);
}

.offer-bonus {
  margin: 0 0 1.15rem;
  padding: 0.9rem 1rem;
  border-radius: 18px;
  background: rgba(47, 84, 69, 0.08);
  color: var(--olive);
  line-height: 1.6;
}

.offer-bonus strong {
  color: var(--olive);
}

.offer-bonus-placeholder {
  visibility: hidden;
}

.offer-card > .button {
  margin-top: auto;
  min-height: 3.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

@media (min-width: 1081px) {
  .offer-card .offer-fitline {
    min-height: 4.8rem;
  }

  .offer-card ul {
    min-height: 14rem;
  }

  .offer-card .offer-includes {
    min-height: 7.8rem;
  }

  .offer-card .offer-bonus,
  .offer-card .offer-bonus-placeholder {
    min-height: 8.3rem;
  }
}

.case-card.muted {
  background:
    linear-gradient(180deg, rgba(47, 84, 69, 0.08), rgba(255, 253, 248, 0.92)),
    rgba(255, 253, 248, 0.9);
}

.case-quote,
.case-note {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  font-weight: 600;
  color: var(--ink);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.timeline li {
  padding: 1.3rem;
  border-top: 3px solid var(--accent);
  background: rgba(255, 253, 248, 0.68);
}

.funding-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.disclaimer-box {
  display: flex;
  justify-content: center;
  gap: 1rem;
  align-items: center;
  margin-top: 1.2rem;
  width: 100%;
  padding: 1.2rem 1.3rem;
  border-radius: var(--radius-md);
  background: rgba(47, 84, 69, 0.08);
  border: 1px solid rgba(47, 84, 69, 0.12);
}

.text-link {
  font-weight: 700;
  color: var(--olive);
}

.calculator-copy {
  max-width: 54rem;
  margin-bottom: 0.9rem;
}

.calculator-note {
  width: 100%;
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 0.96rem;
}

.calculator-shell {
  display: block;
}

.calculator-card {
  width: 100%;
  margin-left: 0;
  padding: 1.5rem;
  border-radius: calc(var(--radius-lg) + 2px);
}

.calculator-card label {
  display: grid;
  gap: 0.35rem;
  font-weight: 700;
}

.calculator-selection-row {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-wrap: wrap;
}

#investment-value {
  font-size: 2rem;
  color: var(--accent);
}

.calculator-info-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(181, 66, 29, 0.08);
  border: 1px solid rgba(181, 66, 29, 0.14);
  color: var(--accent);
  font-size: 0.86rem;
  font-weight: 700;
  text-decoration: none;
}

.calculator-info-link span {
  display: inline-grid;
  place-items: center;
  width: 1.1rem;
  height: 1.1rem;
  border-radius: 999px;
  background: rgba(181, 66, 29, 0.14);
  font-size: 0.78rem;
  line-height: 1;
}

.calculator-info-link:hover {
  background: rgba(181, 66, 29, 0.12);
}

.calculator-info-link[hidden],
.calculator-jump[hidden] {
  display: none !important;
}

#investment-total {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--muted);
}

input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  margin: 1.4rem 0 1rem;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(181, 66, 29, 0.18), rgba(47, 84, 69, 0.08));
  outline: none;
}

input[type="range"]::-webkit-slider-runnable-track {
  height: 12px;
  border-radius: 999px;
  background: rgba(31, 27, 23, 0.08);
}

input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 28px;
  height: 28px;
  margin-top: -8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent) 0%, #d5652f 100%);
  border: 3px solid #fff9f4;
  box-shadow: 0 10px 22px rgba(181, 66, 29, 0.26);
  cursor: pointer;
}

input[type="range"]::-moz-range-track {
  height: 12px;
  border-radius: 999px;
  background: rgba(31, 27, 23, 0.08);
}

input[type="range"]::-moz-range-thumb {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent) 0%, #d5652f 100%);
  border: 3px solid #fff9f4;
  box-shadow: 0 10px 22px rgba(181, 66, 29, 0.26);
  cursor: pointer;
}

.quick-selects {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
  margin: 1rem 0 1.15rem;
}

.quick-selects button {
  min-height: 4rem;
  border: 1px solid rgba(79, 60, 41, 0.12);
  background: rgba(255, 255, 255, 0.84);
  border-radius: 18px;
  padding: 0.85rem 0.9rem;
  font: inherit;
  font-weight: 800;
  color: var(--ink);
  line-height: 1.2;
  cursor: pointer;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.quick-selects button:hover {
  border-color: rgba(181, 66, 29, 0.26);
  transform: translateY(-1px);
}

.quick-selects button.is-selected {
  border-color: rgba(181, 66, 29, 0.35);
  background: rgba(255, 244, 238, 0.96);
  box-shadow: 0 12px 24px rgba(181, 66, 29, 0.12);
}

.calculator-jump {
  display: inline-flex;
  align-items: center;
  margin: -0.15rem 0 1.2rem;
  color: var(--accent);
  font-weight: 700;
  text-decoration: none;
}

.calculator-jump:hover {
  text-decoration: underline;
}

.calculator-results {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin: 1.3rem 0;
}

.calculator-results div {
  padding: 1rem 1.05rem;
  border-radius: var(--radius-md);
  background: var(--bg-soft);
  border: 1px solid rgba(79, 60, 41, 0.08);
}

.calculator-results span {
  display: block;
  color: var(--muted);
  margin-bottom: 0.5rem;
}

.calculator-results strong {
  font-size: 1.4rem;
  color: rgba(31, 27, 23, 0.5);
}

.calculator-win span {
  color: var(--ink);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.calculator-win strong {
  font-size: 2.45rem;
  color: #1f9b7a;
  line-height: 1;
}

.calculator-own span {
  color: var(--muted);
  font-size: 0.83rem;
}

.calculator-own strong {
  color: rgba(31, 27, 23, 0.45);
  font-size: 1.25rem;
}

.calculator-card .booking-link {
  display: flex;
  width: 100%;
}

.final-cta-shell {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.6rem;
  padding: 2rem;
  border-radius: calc(var(--radius-lg) + 10px);
  background:
    linear-gradient(180deg, rgba(28, 24, 20, 0.96), rgba(45, 34, 26, 0.92)),
    radial-gradient(circle at top right, rgba(229, 111, 68, 0.28), transparent 35%);
  color: #fff7f0;
}

.final-cta-shell .eyebrow,
.final-cta-shell p,
.booking-card li,
.contact-note,
.contact-note a {
  color: rgba(255, 247, 240, 0.8);
}

.booking-card {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.1);
}

.booking-card .button {
  width: 100%;
  margin-top: 0.85rem;
}

.contact-note {
  margin-top: 1rem;
  font-size: 0.95rem;
}

.faq-list {
  display: grid;
  gap: 0.95rem;
}

.faq-list details {
  padding: 1rem 1.15rem;
  border-radius: var(--radius-md);
  background: rgba(255, 253, 248, 0.7);
  border: 1px solid rgba(79, 60, 41, 0.08);
}

.faq-list summary {
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list p {
  margin: 0.75rem 0 0;
}

.faq-list p a {
  color: var(--accent);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.faq-list p a:hover {
  color: var(--accent-dark);
}

.advisor-band {
  width: 100%;
  margin-top: 5.5rem;
  padding: 5rem 0;
  background:
    radial-gradient(circle at top left, rgba(39, 167, 138, 0.12), transparent 28%),
    linear-gradient(180deg, #111a29 0%, #121a28 100%);
}

.advisor-shell {
  width: min(calc(100% - 2rem), var(--content));
  margin-inline: auto;
  display: grid;
  gap: 1rem;
  align-items: start;
}

.advisor-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.advisor-side {
  display: grid;
  gap: 0;
  align-content: start;
}

.advisor-main {
  display: grid;
  gap: 1.5rem;
  align-content: start;
}

.advisor-copy h2 {
  margin: 0.4rem 0 1.2rem;
  color: #f6f4ef;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  line-height: 1.02;
}

.advisor-copy h2 span {
  display: block;
  color: #26b39a;
  font-style: italic;
  font-weight: 600;
}

.advisor-kicker {
  margin: 0;
  color: #7f8aa2;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.8rem;
  font-weight: 700;
}

.advisor-copy p {
  color: rgba(236, 240, 248, 0.72);
  line-height: 1.75;
}

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

.stat-card,
.portrait-frame {
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.16);
}

.stat-card {
  padding: 0.9rem 0.72rem;
  border-radius: 18px;
}

.stat-card strong {
  display: block;
  color: #24b49c;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.8rem, 2.35vw, 2.5rem);
  font-weight: 600;
  line-height: 1;
}

.stat-card span {
  display: block;
  margin-top: 0.3rem;
  color: rgba(236, 240, 248, 0.72);
  font-size: 0.88rem;
  line-height: 1.38;
}

.advisor-visuals {
  display: grid;
  gap: 0;
}

.portrait-frame {
  overflow: hidden;
  min-height: 28rem;
}

.portrait-frame {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01)),
    repeating-linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.05),
      rgba(255, 255, 255, 0.05) 12px,
      rgba(255, 255, 255, 0.02) 12px,
      rgba(255, 255, 255, 0.02) 24px
    );
}

.portrait-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  transform: scale(1.3);
  transform-origin: center 44%;
  display: block;
}

.advisor-action .button {
  width: 100%;
}

.site-footer {
  padding: 2rem 0 5rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(79, 60, 41, 0.08);
  background: rgba(255, 253, 248, 0.72);
  box-shadow: var(--shadow);
}

.footer-block {
  display: grid;
  align-content: start;
  gap: 0.55rem;
}

.footer-label {
  margin: 0;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  font-weight: 700;
}

.footer-note {
  margin: 0;
  line-height: 1.6;
}

.site-footer a {
  color: var(--olive);
  font-weight: 700;
}

.timeline li {
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.timeline li:hover {
  transform: translateY(-4px);
  border-top-color: #d5652f;
  background: rgba(255, 249, 243, 0.96);
  box-shadow: 0 18px 38px rgba(181, 66, 29, 0.12);
}

.mobile-cta {
  display: none;
}

@keyframes pulseBars {
  0%,
  100% {
    transform: scaleY(0.88);
    opacity: 0.85;
  }
  50% {
    transform: scaleY(1.08);
    opacity: 1;
  }
}

@media (max-width: 1080px) {
  .site-nav,
  .desktop-cta {
    display: none;
  }

  .hero,
  .offer-grid,
  .case-grid,
  .funding-grid,
  .timeline,
  .calculator-shell,
  .final-cta-shell,
  .experience-grid,
  .quiz-layout,
  .advisor-top,
  .visual-proof-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-inline: 1rem;
  }

  .hero-proof,
  .trust-strip,
  .intro-grid,
  .intent-grid,
  .fit-grid,
  .advisor-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .advisor-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .offer-corner-badge {
    top: 0.85rem;
    right: 0.85rem;
  }

  .section-heading h2,
  .final-cta h2 {
    max-width: 100%;
  }

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

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

@media (max-width: 720px) {
  body {
    padding-bottom: 4.8rem;
  }

  .site-header {
    width: min(calc(100% - 1rem), var(--content));
    padding-inline: 1rem;
  }

  .hero {
    margin-top: 0.4rem;
    padding-top: 1.4rem;
    gap: 1.3rem;
  }

  .advisor-stats {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: clamp(2.55rem, 14vw, 4rem);
  }

  .hero h1.hero-subtitle {
    font-size: clamp(2.25rem, 10.8vw, 3.3rem);
    line-height: 1.02;
  }

  .visual-proof .visual-image-photo {
    height: clamp(260px, 62vw, 360px);
    object-position: center 16%;
  }

  .section,
  .site-footer {
    width: min(calc(100% - 1rem), var(--content));
  }

  .offer-card,
  .case-card,
  .funding-card,
  .booking-card,
  .fit-grid article,
  .advisor-grid article,
  .calculator-card,
  .panel-card,
  .hero-proof li {
    padding: 1.1rem;
  }

  .calculator-results {
    grid-template-columns: 1fr;
  }

  .chat-bubble {
    max-width: 92%;
  }

  .chat-grant-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .portrait-placeholder {
    min-height: 20rem;
  }

  .hero-portrait-frame {
    aspect-ratio: 16 / 10;
  }

  .mobile-cta {
    position: fixed;
    inset: auto 0 0;
    display: block;
    padding: 0.75rem 1rem 1rem;
    background: linear-gradient(180deg, rgba(246, 239, 230, 0), rgba(246, 239, 230, 0.96) 32%);
    z-index: 12;
  }

  .mobile-cta .button {
    width: 100%;
  }
}
