:root {
  --bg: #0b0f14;
  --bg-soft: #151922;
  --panel: #11161d;
  --panel-2: #11161d;
  --text: #f5f5f5;
  --muted: #b8c0cc;
  --muted-soft: #8892a0;
  --line: rgba(225, 29, 72, 0.2);
  --blue: #e11d48;
  --gold: #e11d48;
  --max: 1140px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  position: relative;
  font-family: "Manrope", sans-serif;
  color: var(--muted);
  background: linear-gradient(180deg, #0b0f14 0%, #151922 100%);
  line-height: 1.62;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.04;
  mix-blend-mode: soft-light;
  background-image: radial-gradient(rgba(255, 255, 255, 0.95) 0.5px, transparent 0.5px);
  background-size: 3px 3px;
}

.ambient-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}

.container {
  position: relative;
  z-index: 1;
  width: min(92%, var(--max));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 14px;
  z-index: 20;
  width: min(92%, 1140px);
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: 40px;
  backdrop-filter: blur(10px);
  background: rgba(11, 15, 20, 0.74);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
}

.brand {
  font-family: "Space Grotesk", sans-serif;
  text-decoration: none;
  color: var(--text);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  font-weight: 700;
}

.nav-links {
  display: flex;
  gap: 18px;
}

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

section {
  position: relative;
  padding: 74px 0;
}

section + section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 4%;
  right: 4%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(225, 29, 72, 0.12), transparent);
}

.hero {
  padding-top: 120px;
}

.hero::before {
  content: "";
  position: absolute;
  width: min(920px, 92vw);
  height: 500px;
  left: 50%;
  top: 38px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(225, 29, 72, 0.08) 0%, transparent 72%);
  filter: blur(34px);
  pointer-events: none;
}

.hero-grid {
  display: block;
  max-width: 900px;
}

.audience-pill {
  width: fit-content;
  margin: 0 auto 18px;
  border-radius: 999px;
  border: 1px solid rgba(225, 29, 72, 0.3);
  padding: 9px 14px;
  background: rgba(225, 29, 72, 0.12);
  color: #ffd7df;
  font-weight: 700;
  font-size: 0.95rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.74rem;
  color: var(--muted-soft);
  font-weight: 700;
  margin-bottom: 10px;
}

h1,
h2,
h3 {
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: -0.02em;
  color: var(--text);
  font-weight: 700;
}

h1 {
  font-size: clamp(2rem, 4.9vw, 4rem);
  line-height: 1.07;
  max-width: 840px;
  font-weight: 800;
}

h2 {
  font-size: clamp(1.7rem, 3.4vw, 2.8rem);
  line-height: 1.14;
  font-weight: 800;
}

h3 {
  font-size: 1.24rem;
}

.subcopy {
  color: var(--muted);
  margin-top: 16px;
  max-width: 760px;
  font-size: clamp(1rem, 1.2vw, 1.1rem);
}

.hero-actions {
  margin-top: 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 10px;
  padding: 12px 20px;
  border: 1px solid rgba(225, 29, 72, 0.6);
  background-color: #e11d48;
  background-image: none;
  color: #ffffff;
  font-weight: 800;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  -webkit-tap-highlight-color: transparent;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
  transition:
    background-color 0.18s ease,
    color 0.18s ease,
    border-color 0.18s ease,
    box-shadow 0.18s ease,
    transform 0.18s ease;
}

.btn:link,
.btn:visited {
  color: #ffffff;
  text-decoration: none;
}

.btn:hover {
  transform: translateY(-2px) scale(1.02);
  background-color: #fb7185;
  border-color: rgba(225, 29, 72, 0.75);
  box-shadow: 0 10px 40px rgba(225, 29, 72, 0.35);
}

.btn:active {
  background-color: #fb7185;
  transform: translateY(-1px);
  border-color: rgba(225, 29, 72, 0.75);
  box-shadow: 0 8px 28px rgba(225, 29, 72, 0.28);
}

.btn:focus {
  outline: none;
}

.btn:focus-visible {
  outline: none;
  background-color: #e11d48;
  box-shadow:
    0 0 0 2px rgba(11, 15, 20, 0.9),
    0 0 0 4px rgba(225, 29, 72, 0.6),
    0 8px 26px rgba(225, 29, 72, 0.26);
}

.btn-sm {
  padding: 9px 14px;
  font-size: 0.85rem;
}

.btn-gold {
  border-color: rgba(225, 29, 72, 0.6);
  background-color: #e11d48;
  background-image: none;
  color: #ffffff;
}

.btn-ghost {
  background: transparent;
  border: 1px solid rgba(225, 29, 72, 0.8);
  color: #e11d48;
  box-shadow: none;
}

.btn-ghost:hover {
  background: rgba(225, 29, 72, 0.1);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
}

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

.comparison-col {
  border: 1px solid rgba(225, 29, 72, 0.18);
  border-radius: 14px;
  padding: 18px;
  background: #11161d;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.comparison-col:hover {
  transform: translateY(-6px);
  border-color: rgba(225, 29, 72, 0.45);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.comparison-col.primary {
  border-color: rgba(225, 29, 72, 0.3);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 10px 26px rgba(225, 29, 72, 0.12);
}

.comparison-col.primary .check {
  color: #fb7185;
  text-shadow: 0 0 10px rgba(225, 29, 72, 0.22);
}

.comparison-col.secondary {
  opacity: 0.88;
  border-color: rgba(225, 29, 72, 0.14);
}

.comparison-col.secondary .comparison-title,
.comparison-col.secondary li {
  color: #a8b0bc;
}

.comparison-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.comparison-col ul {
  list-style: none;
  display: grid;
  gap: 10px;
  color: #c0c7d1;
}

.comparison-col li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.check {
  color: #e11d48;
  font-weight: 700;
}

.xmark {
  color: #ff6a6a;
  font-weight: 700;
}

.process-grid,
.case-grid,
.pricing-grid {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

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

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

.process-card,
.case-card,
.price-card {
  border: 1px solid rgba(225, 29, 72, 0.18);
  border-radius: 12px;
  padding: 30px 24px 24px;
  background: linear-gradient(180deg, var(--panel-2), var(--panel));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
  display: flex;
  flex-direction: column;
  min-height: 100%;
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.process-card:hover,
.case-card:hover,
.price-card:hover {
  transform: translateY(-6px);
  border-color: rgba(225, 29, 72, 0.45);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.case-name {
  margin-top: 16px;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.18rem, 2vw, 1.45rem);
  color: var(--text);
  font-weight: 700;
}

.case-meta {
  margin-top: 8px;
  color: var(--muted-soft);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
  font-weight: 700;
}

.case-followers {
  margin-top: 10px;
  color: #e11d48;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 1rem;
}

.case-result {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 600;
}

.case-media {
  --case-media-focus: 50% 18%;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(225, 29, 72, 0.2);
  background: #0f1115;
  aspect-ratio: 16 / 10;
  min-height: 0;
}

.case-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 15, 20, 0) 45%, rgba(11, 15, 20, 0.24) 100%);
  pointer-events: none;
}

.case-media.is-missing::before {
  content: attr(data-initials);
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #f5f5f5;
  font-size: 1.45rem;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  letter-spacing: 0.04em;
  z-index: 2;
}

.case-media.is-missing::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 22%, rgba(225, 29, 72, 0.2), transparent 42%),
    linear-gradient(160deg, #11161d, #1a1f28);
}

.case-media.is-missing {
  border-color: rgba(225, 29, 72, 0.28);
}

.case-media.is-missing img {
  display: none;
}

.case-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--case-media-focus);
  filter: none;
  transition: transform 0.24s ease, filter 0.24s ease;
}

.case-card:hover .case-media {
  border-color: rgba(225, 29, 72, 0.45);
  box-shadow: 0 0 0 1px rgba(225, 29, 72, 0.2), 0 16px 36px rgba(225, 29, 72, 0.16);
}

.case-card:hover .case-media img {
  transform: scale(1.03);
  filter: none;
}

.case-card .btn {
  margin-top: 18px;
}

.process-card p {
  color: var(--muted);
  margin-top: 8px;
}

.faq {
  padding-top: 52px;
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 28px;
  align-items: start;
}

.faq-intro {
  position: sticky;
  top: 98px;
}

.faq-subcopy {
  margin-top: 12px;
  color: var(--muted);
  max-width: 440px;
  font-size: 1.04rem;
}

.faq-intro .btn {
  margin-top: 18px;
}

.faq-accordion {
  display: grid;
  gap: 12px;
}

.faq-item {
  border: 1px solid rgba(225, 29, 72, 0.18);
  border-radius: 14px;
  background: #11161d;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
  overflow: hidden;
  transition: border-color 0.24s ease, box-shadow 0.24s ease, background 0.24s ease, transform 0.24s ease;
}

.faq-item:hover,
.faq-item.active {
  transform: translateY(-6px);
  border-color: rgba(225, 29, 72, 0.45);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  background: #171c24;
}

.faq-trigger {
  width: 100%;
  background: transparent;
  border: 0;
  color: var(--text);
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  text-align: left;
  padding: 18px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  cursor: pointer;
}

.faq-icon {
  font-size: 1.35rem;
  line-height: 1;
  color: #c8ced7;
  transition: transform 0.22s ease, color 0.22s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  color: #e11d48;
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 18px;
}

.faq-content p,
.faq-content li {
  color: var(--muted);
}

.faq-content p + p {
  margin-top: 8px;
}

.faq-content ul {
  list-style: none;
  margin-top: 8px;
  display: grid;
  gap: 6px;
}

.faq-content ul li {
  position: relative;
  padding-left: 12px;
}

.faq-content ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.63em;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #e11d48;
}

.faq-item.active .faq-content {
  padding-bottom: 16px;
}


.results h2 {
  text-align: center;
}

.results-subcopy {
  margin: 10px auto 0;
  max-width: 820px;
  color: var(--muted);
  text-align: center;
  font-size: 1.03rem;
}

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

.result-card {
  border: 1px solid rgba(225, 29, 72, 0.18);
  border-radius: 18px;
  padding: 22px 20px;
  background: #11161d;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
  text-align: center;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.35s ease, transform 0.35s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.result-card:hover {
  transform: translateY(-6px);
  border-color: rgba(225, 29, 72, 0.45);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.result-icon {
  width: 54px;
  height: 54px;
  margin: 0 auto;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: rgba(245, 245, 245, 0.9);
  border: 1px solid rgba(225, 29, 72, 0.25);
  background: rgba(225, 29, 72, 0.1);
}

.result-icon svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.result-num {
  margin-top: 16px;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.2rem, 3.4vw, 3.3rem);
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.03em;
  color: #e11d48;
  text-shadow: 0 0 14px rgba(225, 29, 72, 0.18);
}

.result-title {
  margin-top: 10px;
  color: var(--text);
  font-weight: 700;
  font-size: 1.05rem;
}

.result-note {
  margin-top: 8px;
  color: var(--muted-soft);
  font-size: 0.92rem;
}

.step {
  color: #e11d48 !important;
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  margin-top: 0 !important;
}

.price-card .tier {
  color: var(--muted-soft);
  text-transform: uppercase;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
}

.price-badge-row {
  height: 44px;
  display: flex;
  align-items: flex-start;
}

.tier-label {
  display: inline-block;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(225, 29, 72, 0.14);
  border: 1px solid rgba(225, 29, 72, 0.32);
  color: #ffd4dc;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0;
}

.tier-label-placeholder {
  visibility: hidden;
}

.clip-capacity {
  margin-top: 10px;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.15rem, 3.6vw, 3.1rem);
  line-height: 1.02;
  font-weight: 700;
  color: var(--text);
}

.clip-capacity span {
  font-size: 1.04rem;
  color: var(--muted);
  font-weight: 500;
}

.tier-desc {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.96rem;
  min-height: 2.8em;
}

.price-features {
  margin-top: 16px;
  list-style: none;
  display: grid;
  gap: 12px;
  color: #c0c7d1;
  font-size: 0.98rem;
  font-weight: 500;
}

.price-features li {
  position: relative;
  padding-left: 14px;
}

.price-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.66em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #e11d48;
}

.tier-limit {
  margin-top: 16px;
  color: var(--muted-soft);
  font-size: 0.86rem;
}

.price {
  margin-top: auto;
  padding-top: 16px;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.55rem, 2.3vw, 2rem);
  line-height: 1.06;
  font-weight: 700;
}

.price span {
  font-size: 0.96rem;
  color: var(--muted);
  font-weight: 500;
}

.btn-card {
  margin-top: 14px;
  width: 100%;
  text-align: center;
}

.featured {
  border-color: rgba(225, 29, 72, 0.35);
  box-shadow: 0 0 0 1px rgba(225, 29, 72, 0.14) inset, 0 12px 30px rgba(0, 0, 0, 0.4);
}

.starter {
  border-color: rgba(225, 29, 72, 0.2);
  box-shadow: none;
  background: linear-gradient(180deg, rgba(17, 22, 29, 0.96), rgba(17, 22, 29, 0.84));
}

.premium {
  border-color: rgba(225, 29, 72, 0.26);
  box-shadow: 0 0 0 1px rgba(225, 29, 72, 0.12) inset;
}

.pricing h2,
.pricing-subline,
.pricing-meta,
.guarantee,
.badge-row {
  text-align: center;
}

.pricing-subline {
  margin-top: 8px;
  color: var(--muted-soft);
  font-size: 0.98rem;
}

.guarantee-strip {
  margin: 18px auto 12px;
  max-width: 860px;
  border: 1px solid rgba(225, 29, 72, 0.32);
  border-radius: 12px;
  background: rgba(225, 29, 72, 0.06);
  padding: 14px 16px;
  text-align: center;
}

.guarantee-title {
  font-family: "Space Grotesk", sans-serif;
  color: var(--text);
  font-size: 1rem;
  font-weight: 700;
}

.guarantee-copy {
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.95rem;
}

.scarcity-line {
  margin-top: 12px;
  text-align: center;
  color: var(--muted-soft);
  font-size: 0.87rem;
  letter-spacing: 0.02em;
}

.badge-row {
  margin-top: 16px;
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.badge-row span {
  padding: 7px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #c0c7d1;
  font-size: 0.86rem;
}


.cta {
  position: relative;
  overflow: hidden;
  padding: 150px 0 170px;
  background:
    radial-gradient(circle at 50% -10%, rgba(225, 29, 72, 0.08), transparent 46%),
    linear-gradient(180deg, #0b0f14 0%, #151922 100%);
}

.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.09) 0.65px, transparent 0.65px);
  background-size: 3px 3px;
  opacity: 0.08;
  pointer-events: none;
}

.cta-glow {
  position: absolute;
  left: 50%;
  bottom: -90px;
  transform: translateX(-50%);
  width: min(820px, 88vw);
  height: 290px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(225, 29, 72, 0.16) 0%, rgba(225, 29, 72, 0.08) 38%, transparent 72%);
  filter: blur(22px);
  opacity: 0.6;
  pointer-events: none;
}

.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 980px;
  text-align: center;
}

.cta-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 26px;
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.cta-kicker span {
  width: clamp(40px, 9vw, 94px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(225, 29, 72, 0.75), transparent);
}

.cta h2 {
  margin: 0 auto;
  max-width: 980px;
  font-size: clamp(2.3rem, 6.1vw, 4.8rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.cta-subtext {
  margin: 22px auto 38px;
  max-width: 760px;
  color: #c0c7d1;
  font-size: clamp(1rem, 1.45vw, 1.32rem);
  line-height: 1.55;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-cta-primary {
  padding: 16px 34px;
  border-color: #e11d48;
  background: #e11d48;
  color: #ffffff;
  font-size: 1rem;
  letter-spacing: 0.02em;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
  transition: transform 0.24s ease, background 0.24s ease, box-shadow 0.24s ease;
}

.btn-cta-primary:hover {
  transform: translateY(-2px) scale(1.02);
  background: #fb7185;
  box-shadow: 0 10px 40px rgba(225, 29, 72, 0.35);
}

.btn-cta-outline {
  padding: 14px 30px;
  border-radius: 999px;
  border: 1px solid rgba(225, 29, 72, 0.8);
  background: transparent;
  color: #e11d48;
  font-size: 0.98rem;
  letter-spacing: 0.02em;
  transition: transform 0.24s ease, background 0.24s ease, border-color 0.24s ease;
}

.btn-cta-outline:hover {
  transform: translateY(-2px);
  border-color: #e11d48;
  background: rgba(225, 29, 72, 0.1);
  box-shadow: none;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 24px 0 34px;
}

.booking-page {
  padding-top: 120px;
}

.booking-title {
  margin-top: 8px;
  font-size: clamp(2rem, 4.1vw, 3rem);
}

.booking-frame {
  margin-top: 18px;
  border: 1px solid rgba(225, 29, 72, 0.22);
  border-radius: 14px;
  background: #11161d;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
  overflow: hidden;
}

.booking-frame .calendly-inline-widget {
  width: 100%;
  min-width: 320px;
  height: 820px;
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  color: #c0c7d1;
  font-size: 0.9rem;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.36s ease, transform 0.36s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.hero h1,
.hero .subcopy,
.hero .hero-actions {
  opacity: 0;
  transform: translateY(12px);
}

.hero.is-visible h1 {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.hero.is-visible .subcopy {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.hero.is-visible .hero-actions {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.results-grid::before {
  content: "";
  grid-column: 1 / -1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(225, 29, 72, 0.45), transparent);
  margin-bottom: 8px;
}

.results.is-visible .result-card {
  opacity: 1;
  transform: translateY(0);
}

.results.is-visible .result-card:nth-child(1) {
  transition-delay: 0.06s;
}

.results.is-visible .result-card:nth-child(2) {
  transition-delay: 0.16s;
}

.results.is-visible .result-card:nth-child(3) {
  transition-delay: 0.26s;
}

.results.is-visible .result-card:nth-child(4) {
  transition-delay: 0.36s;
}

.comparison-col,
.process-card,
.case-card,
.price-card {
  opacity: 0;
  transform: translateY(12px);
}

.problem.is-visible .comparison-col,
.process.is-visible .process-card,
.case-studies.is-visible .case-card,
.pricing.is-visible .price-card {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.34s ease, transform 0.34s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.problem.is-visible .comparison-col:nth-child(2),
.process.is-visible .process-card:nth-child(2),
.case-studies.is-visible .case-card:nth-child(2),
.pricing.is-visible .price-card:nth-child(2) {
  transition-delay: 0.1s;
}

.process.is-visible .process-card:nth-child(3),
.case-studies.is-visible .case-card:nth-child(3),
.pricing.is-visible .price-card:nth-child(3) {
  transition-delay: 0.2s;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
  align-items: center;
}

.about-copy {
  margin-top: 12px;
  color: var(--muted);
  max-width: 700px;
}

.founder-placeholder {
  min-height: 220px;
  border-radius: 14px;
  border: 1px solid rgba(225, 29, 72, 0.22);
  background: #11161d;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  display: grid;
  place-items: center;
  color: var(--muted-soft);
  font-size: 0.92rem;
}

.case-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease;
}

.case-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.case-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 8, 12, 0.8);
  backdrop-filter: blur(2px);
}

.case-modal__panel {
  position: relative;
  width: min(1100px, 92vw);
  max-height: 85vh;
  overflow: auto;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(15, 17, 21, 0.97);
  box-shadow: 0 22px 56px rgba(0, 0, 0, 0.48);
  padding: 20px 22px 22px;
  transform: scale(0.96) translateY(8px);
  transition: transform 0.28s ease;
}

.case-modal.is-open .case-modal__panel {
  transform: scale(1) translateY(0);
}

.case-modal__close {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.02);
  color: #f5f5f5;
  font-size: 1.45rem;
  cursor: pointer;
}

.case-modal__kicker {
  color: var(--muted-soft);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.72rem;
  font-weight: 700;
}

.case-modal__timeline {
  margin-top: 6px;
  color: var(--muted);
}

.case-modal__descriptor {
  margin-top: 8px;
  color: var(--muted);
}

.case-modal__note {
  margin-top: 10px;
  color: #cdd3dd;
  font-size: 0.92rem;
  line-height: 1.45;
}

.case-modal__head-metrics {
  margin-top: 12px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.case-modal__head-metrics span {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  color: #f5f5f5;
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.case-modal__compare {
  margin-top: 10px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.case-modal__compare--single {
  grid-template-columns: 1fr;
}

.compare-col {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.02);
  border-radius: 12px;
  padding: 10px 10px 12px;
  display: grid;
  justify-items: center;
}

.metric-label {
  color: var(--muted-soft);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.metric-value {
  margin-top: 10px;
  color: #fb7185;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
}

.case-modal__media {
  margin-top: 18px;
  display: grid;
  gap: 18px;
}

.case-modal__section-title {
  color: #f0f3f8;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  font-weight: 700;
  text-transform: uppercase;
}

.media-group .case-modal__compare {
  margin-top: 10px;
}

.shot-box {
  width: min(100%, 300px);
  aspect-ratio: 9 / 16;
  min-height: 190px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  background:
    radial-gradient(circle at 50% 20%, rgba(255, 255, 255, 0.1), transparent 62%),
    linear-gradient(180deg, #1a1f28, #12161d);
  color: var(--muted-soft);
  display: grid;
  place-items: center;
  font-size: 0.82rem;
  overflow: hidden;
  padding: 8px;
}

.shot-box.is-fallback::before {
  content: "Screenshot";
  color: var(--muted-soft);
  font-size: 0.78rem;
  letter-spacing: 0.02em;
}

.shot-box img {
  width: 100%;
  height: 100%;
  min-height: 170px;
  object-fit: contain;
  border-radius: 11px;
  cursor: zoom-in;
}

.shot-box--empty {
  padding: 18px;
  text-align: center;
  color: var(--muted-soft);
  font-size: 0.8rem;
}

.case-modal__empty {
  margin-top: 10px;
  color: var(--muted-soft);
  font-size: 0.85rem;
}

.case-results-block {
  margin-top: 18px;
}

.case-results-feature-grid {
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 10px;
}

.case-results-feature-item {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.02);
  border-radius: 12px;
  padding: 12px 12px 11px;
  box-shadow: inset 0 0 0 1px rgba(225, 29, 72, 0.08);
}

.case-results-support-grid {
  margin-top: 10px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.case-results-support-item {
  border: 1px solid rgba(255, 255, 255, 0.11);
  background: rgba(255, 255, 255, 0.02);
  border-radius: 999px;
  padding: 6px 10px;
  color: var(--muted-soft);
  font-size: 0.76rem;
}

.case-results-claim {
  color: #fb7185;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 1.28rem;
  line-height: 1.2;
}

.case-results-sub {
  margin-top: 4px;
  color: var(--muted-soft);
  font-size: 0.78rem;
  line-height: 1.35;
}

.case-modal__cta {
  margin-top: 18px;
  width: 100%;
  text-align: center;
}

body.modal-open {
  overflow: hidden;
}

.shot-lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  background: rgba(7, 10, 14, 0.86);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

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

.shot-lightbox img {
  max-width: min(1100px, 94vw);
  max-height: 90vh;
  border-radius: 12px;
  border: 1px solid rgba(225, 29, 72, 0.3);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
  object-fit: contain;
}

.shot-lightbox__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(225, 29, 72, 0.5);
  background: rgba(11, 15, 20, 0.8);
  color: #f5f5f5;
  font-size: 1.4rem;
  cursor: pointer;
}

@media (max-width: 980px) {
  .hero-grid,
  .comparison-grid,
  .process-grid,
  .case-grid,
  .about-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

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

  .faq-intro {
    position: static;
  }

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

  .nav-links {
    display: none;
  }
}

@media (max-width: 620px) {
  .hero {
    padding-top: 98px;
  }

  .site-header {
    top: 8px;
    width: 95%;
  }

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

  .case-modal__panel {
    width: 90vw;
    max-height: 88vh;
  }

  .case-modal__compare {
    grid-template-columns: 1fr;
  }

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

  .footer-wrap {
    flex-direction: column;
  }

  .cta {
    padding: 110px 0 124px;
  }

  .cta-subtext {
    max-width: 95%;
  }

  .cta-actions {
    flex-direction: column;
    align-items: center;
  }

  .btn-cta-primary,
  .btn-cta-outline {
    width: min(100%, 360px);
    text-align: center;
  }

  .booking-page {
    padding-top: 104px;
  }

  .booking-frame .calendly-inline-widget {
    height: 780px;
  }
}
