:root {
  --ink: #0f0c09;
  --muted: #655b53;
  --paper: #f6f0e7;
  --paper-deep: #ecdfcf;
  --paper-soft: #fffaf3;
  --card: #fffaf2;
  --line: #d8cdbd;
  --line-soft: rgba(54, 39, 28, 0.12);
  --accent: #f46a3d;
  --accent-dark: #c84e2c;
  --accent-soft: #f6d7c9;
  --dark: #14110f;
  --dark-card: #1f1a17;
  --light: #fffdf8;
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --shadow: 0 24px 70px rgba(33, 20, 10, 0.12);
  --shadow-soft: 0 18px 42px rgba(33, 20, 10, 0.08);
  --shadow-strong: 0 32px 90px rgba(20, 12, 6, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 0% 0%, rgba(244, 106, 61, 0.14), transparent 24%),
    radial-gradient(circle at 88% 8%, rgba(44, 54, 79, 0.08), transparent 22%),
    linear-gradient(180deg, #f8f3eb 0%, #f3ede3 44%, #f7f2ea 100%);
  line-height: 1.4;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}

::selection {
  background: rgba(244, 106, 61, 0.24);
}

h1,
.section-title,
.sticky-note h3,
.price-card h3,
.booking-header h2,
.problem-card h3,
.deliverable h3,
.segment h3,
.faq h3,
.step h3 {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 700;
}

h1,
.section-title,
.price-card h3,
.booking-header h2 {
  text-wrap: balance;
}

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

.container {
  width: min(1140px, calc(100% - 40px));
  margin: 0 auto;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(248, 243, 235, 0.76);
  backdrop-filter: blur(20px) saturate(1.1);
  border-bottom: 1px solid rgba(11, 11, 11, 0.06);
  box-shadow: 0 10px 30px rgba(18, 13, 9, 0.04);
}

.nav-inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 780;
  letter-spacing: -0.035em;
  font-size: 18px;
}

.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: linear-gradient(135deg, #211914, #0f0c09);
  color: var(--paper);
  display: grid;
  place-items: center;
  font-weight: 900;
  letter-spacing: -0.08em;
  box-shadow: 0 12px 24px rgba(15, 12, 9, 0.18);
}

.nav-links {
  display: flex;
  gap: 22px;
  align-items: center;
  color: #4b4138;
  font-size: 14px;
  font-weight: 700;
}

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

.nav-cta {
  padding: 11px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, #14110f, #2a211b);
  color: var(--paper);
  font-weight: 800;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 16px 34px rgba(15, 12, 9, 0.16);
}

.hero {
  padding: 94px 0 84px;
  overflow: hidden;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(244, 106, 61, 0.24), rgba(244, 106, 61, 0.02) 60%, transparent 72%);
  right: -160px;
  top: -80px;
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  width: 440px;
  height: 440px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.48), transparent 68%);
  left: -140px;
  top: 120px;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 56px;
  align-items: center;
  position: relative;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(11, 11, 11, 0.1);
  background: rgba(255, 253, 248, 0.82);
  border-radius: 999px;
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 800;
  color: #40362d;
  margin-bottom: 18px;
  box-shadow: 0 12px 24px rgba(45, 33, 25, 0.05);
}

.dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 999px;
  box-shadow: 0 0 0 5px rgba(244, 106, 61, 0.12);
}

h1 {
  margin: 0;
  font-size: clamp(56px, 8vw, 96px);
  line-height: 0.94;
  letter-spacing: -0.04em;
  max-width: 780px;
}

.hero-copy {
  margin: 24px 0 0;
  font-size: 20px;
  color: #352d26;
  max-width: 620px;
  line-height: 1.7;
}

.hero-actions {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 15px 22px;
  font-weight: 850;
  border: 1px solid var(--ink);
  font-size: 14px;
  letter-spacing: -0.01em;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 32px rgba(15, 12, 9, 0.12);
}

.btn-primary {
  background: linear-gradient(135deg, #17130f, #2d241e);
  color: var(--paper);
  box-shadow: 0 16px 38px rgba(18, 13, 9, 0.16);
  border-color: #17130f;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.62);
  color: var(--ink);
  border-color: rgba(11, 11, 11, 0.12);
}

.micro-proof {
  margin-top: 22px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
}

.micro-proof span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(11, 11, 11, 0.08);
  box-shadow: 0 10px 24px rgba(43, 29, 18, 0.05);
}

.micro-proof span::before {
  content: "✓";
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--ink);
  display: inline-grid;
  place-items: center;
  font-size: 12px;
}

.hero-panel {
  position: relative;
}

.hero-showcase {
  position: relative;
  padding: 18px;
  border-radius: 36px;
  background:
    radial-gradient(circle at 12% 10%, rgba(10, 102, 194, 0.18), transparent 28%),
    radial-gradient(circle at 86% 14%, rgba(244, 106, 61, 0.2), transparent 24%),
    linear-gradient(180deg, #17120f, #0d0a08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-strong);
  overflow: hidden;
}

.hero-showcase-chip {
  position: absolute;
  top: 22px;
  left: 22px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  color: #eef5ff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-showcase-main {
  display: block;
  width: 100%;
  height: auto;
  min-height: 540px;
  object-fit: cover;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-showcase-metrics {
  position: absolute;
  left: 28px;
  bottom: 118px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-showcase-metrics span {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
  color: #f5ede4;
  font-size: 12px;
  font-weight: 800;
}

.hero-showcase-note {
  position: absolute;
  right: 28px;
  bottom: 28px;
  width: min(360px, calc(100% - 56px));
  padding: 20px 22px;
  border-radius: 24px;
  background: rgba(255, 250, 242, 0.92);
  border: 1px solid rgba(11, 11, 11, 0.08);
  box-shadow: 0 20px 44px rgba(12, 9, 7, 0.16);
}

.hero-showcase-note strong {
  display: block;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.hero-showcase-note p {
  margin: 10px 0 0;
  color: #5a5047;
  line-height: 1.6;
}

.panel-shell {
  background: linear-gradient(180deg, #221b16, #0f0c09);
  border-radius: 34px;
  padding: 16px;
  box-shadow: var(--shadow-strong);
  transform: rotate(0.8deg);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.panel {
  min-height: 560px;
  background:
    radial-gradient(circle at 80% 14%, rgba(244, 106, 61, 0.18), transparent 24%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 45%),
    var(--dark);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  color: var(--light);
  padding: 24px;
  position: relative;
  overflow: hidden;
}

.panel-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 26px;
}

.panel-title {
  font-weight: 850;
  letter-spacing: -0.04em;
}

.recording-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 11px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  font-size: 12px;
  color: #ddd;
  font-weight: 800;
}

.recording-dot {
  width: 9px;
  height: 9px;
  background: var(--accent);
  border-radius: 999px;
}

.video-card {
  background: linear-gradient(180deg, rgba(50, 45, 42, 0.95), rgba(27, 25, 23, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  padding: 18px;
  min-height: 260px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.video-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 75% 18%, rgba(244, 106, 61, 0.35), transparent 25%),
    radial-gradient(circle at 25% 80%, rgba(255, 255, 255, 0.1), transparent 30%);
  pointer-events: none;
}

.avatar-row {
  display: flex;
  align-items: center;
  gap: 13px;
  position: relative;
}

.avatar {
  width: 62px;
  height: 62px;
  border-radius: 19px;
  background: linear-gradient(135deg, #fff7ea, #c9bda9);
  display: grid;
  place-items: center;
  color: var(--ink);
  font-weight: 900;
  font-size: 22px;
}

.avatar-copy strong {
  display: block;
  color: #fff;
}

.avatar-copy span {
  display: block;
  color: #bcbcbc;
  font-size: 13px;
  margin-top: 3px;
}

.wave {
  height: 76px;
  margin: 18px 0;
  display: flex;
  align-items: center;
  gap: 5px;
  position: relative;
}

.wave i {
  width: 7px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  display: block;
}

.wave i:nth-child(1) { height: 24px; }
.wave i:nth-child(2) { height: 40px; }
.wave i:nth-child(3) { height: 56px; background: var(--accent); }
.wave i:nth-child(4) { height: 36px; }
.wave i:nth-child(5) { height: 66px; }
.wave i:nth-child(6) { height: 48px; background: var(--accent); }
.wave i:nth-child(7) { height: 28px; }
.wave i:nth-child(8) { height: 54px; }
.wave i:nth-child(9) { height: 44px; }
.wave i:nth-child(10) { height: 62px; }
.wave i:nth-child(11) { height: 34px; background: var(--accent); }
.wave i:nth-child(12) { height: 52px; }
.wave i:nth-child(13) { height: 24px; }
.wave i:nth-child(14) { height: 44px; }

.quote-box {
  position: relative;
  background: rgba(0, 0, 0, 0.24);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 14px;
  color: #f1f1f1;
  font-size: 13px;
  line-height: 1.6;
}

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

.asset {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
  border-radius: 18px;
  padding: 15px;
}

.asset b {
  display: block;
  font-size: 24px;
  letter-spacing: -0.06em;
}

.asset span {
  color: #bdbdbd;
  font-size: 12px;
  font-weight: 700;
}

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

.section-kicker {
  color: var(--accent-dark);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 950;
  margin-bottom: 12px;
}

.section-title {
  margin: 0;
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1.03;
  letter-spacing: -0.045em;
  max-width: 780px;
}

.section-lede {
  margin: 18px 0 0;
  font-size: 18px;
  color: #4a4038;
  max-width: 700px;
  line-height: 1.7;
}

.dark-section {
  background:
    radial-gradient(circle at top left, rgba(244, 106, 61, 0.14), transparent 18%),
    linear-gradient(180deg, #15110e, #0d0a08);
  color: var(--light);
}

.dark-section .section-lede {
  color: #d1c5b9;
}

.growth-section {
  padding-top: 10px;
}

.growth-grid {
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  gap: 28px;
  align-items: center;
}

.growth-visual {
  position: relative;
  padding: 18px;
  border-radius: 36px;
  background:
    radial-gradient(circle at 14% 10%, rgba(10, 102, 194, 0.18), transparent 26%),
    radial-gradient(circle at 92% 86%, rgba(244, 106, 61, 0.14), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.76), rgba(255, 250, 242, 0.96));
  border: 1px solid rgba(11, 11, 11, 0.08);
  box-shadow: var(--shadow);
}

.growth-visual img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 26px;
}

.growth-stack {
  position: relative;
  padding-bottom: 120px;
}

.growth-screen {
  width: min(90%, 640px);
  margin-left: auto;
  box-shadow: 0 24px 54px rgba(14, 19, 24, 0.18);
}

.growth-proof-card {
  position: absolute;
  left: 0;
  bottom: 18px;
  width: min(56%, 440px);
  border-radius: 26px;
  box-shadow: 0 28px 58px rgba(14, 19, 24, 0.18);
}

.growth-floating-stat {
  position: absolute;
  right: 18px;
  bottom: 0;
  display: grid;
  gap: 6px;
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(255, 250, 242, 0.94);
  border: 1px solid rgba(11, 11, 11, 0.08);
  box-shadow: 0 18px 38px rgba(22, 16, 11, 0.12);
}

.growth-floating-stat span {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #0a66c2;
}

.growth-floating-stat strong {
  font-size: 22px;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.growth-copy .section-title {
  max-width: 11ch;
}

.growth-copy .section-lede {
  max-width: 600px;
}

.growth-points {
  margin-top: 28px;
  display: grid;
  gap: 14px;
}

.growth-point {
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(11, 11, 11, 0.08);
  padding: 20px 22px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.growth-point-label {
  display: inline-flex;
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #0a66c2;
}

.growth-point strong {
  display: block;
  font-size: 20px;
  line-height: 1.25;
  letter-spacing: -0.025em;
}

.growth-point p {
  margin: 10px 0 0;
  color: #5a5047;
  line-height: 1.65;
}

.problem-section,
.pricing-section,
.faq-section {
  isolation: isolate;
}

.problem-section > .container,
.pricing-section > .container,
.faq-section > .container {
  position: relative;
  z-index: 1;
}

.problem-section::before,
.pricing-section::before,
.faq-section::before {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.problem-section::before {
  width: 420px;
  height: 420px;
  left: -140px;
  top: 60px;
  background: radial-gradient(circle, rgba(244, 106, 61, 0.1), transparent 68%);
}

.deliverables-section {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 250, 242, 0.7));
}

.pricing-section::before {
  width: min(980px, 88vw);
  height: 520px;
  left: 50%;
  top: 130px;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(244, 106, 61, 0.09), transparent 68%);
}

.faq-section::before {
  width: 520px;
  height: 520px;
  right: -180px;
  top: 120px;
  background: radial-gradient(circle, rgba(244, 106, 61, 0.08), transparent 70%);
}

.problem-grid {
  margin-top: 34px;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 24px;
  align-items: stretch;
}

.problem-card {
  border: 1px solid rgba(11, 11, 11, 0.1);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.76), rgba(255, 250, 240, 0.92));
  border-radius: var(--radius-xl);
  padding: 26px;
  box-shadow: var(--shadow-soft);
}

.problem-card h3 {
  margin: 0 0 10px;
  font-size: 25px;
  letter-spacing: -0.025em;
}

.problem-card p {
  margin: 0;
  color: #4f463f;
  line-height: 1.65;
}

.problem-card p + p {
  margin-top: 12px;
}

.sticky-note {
  background: linear-gradient(140deg, #f8b08f, #f46a3d);
  color: var(--ink);
  border-radius: var(--radius-xl);
  padding: 34px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 285px;
  transform: rotate(-0.8deg);
  box-shadow: var(--shadow-strong);
}

.sticky-note h3 {
  margin: 0;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 0.99;
  letter-spacing: -0.045em;
}

.sticky-note p {
  margin: 22px 0 0;
  font-weight: 750;
  max-width: 520px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 36px;
}

.step {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 21px;
  min-height: 230px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.step-num {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: rgba(244, 106, 61, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: grid;
  place-items: center;
  font-weight: 900;
  margin-bottom: 18px;
  color: #fff4eb;
}

.step h3 {
  margin: 0 0 10px;
  letter-spacing: -0.025em;
  font-size: 21px;
}

.step p {
  margin: 0;
  color: #c4c4c4;
  font-size: 14px;
}

.deliverables-grid {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 17px;
}

.deliverable {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 250, 242, 0.92));
  border: 1px solid rgba(11, 11, 11, 0.1);
  border-radius: var(--radius-lg);
  padding: 22px;
  min-height: 210px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.deliverable::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, rgba(244, 106, 61, 0.85), rgba(244, 106, 61, 0.18));
}

.deliverable .tag {
  display: inline-flex;
  padding: 7px 10px;
  border-radius: 999px;
  background: #f1e3d5;
  font-size: 12px;
  font-weight: 850;
  color: #4a3a30;
  margin-bottom: 24px;
}

.deliverable h3 {
  margin: 0 0 9px;
  font-size: 24px;
  letter-spacing: -0.03em;
}

.deliverable p {
  color: #544a41;
  margin: 0;
  line-height: 1.65;
}

.sample {
  margin-top: 38px;
  background: rgba(255, 253, 248, 0.86);
  border: 1px solid rgba(11, 11, 11, 0.08);
  border-radius: 32px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.sample-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(135deg, #191410, #2c221b);
  color: var(--light);
}

.sample-head b {
  letter-spacing: -0.025em;
  font-family: "Fraunces", Georgia, serif;
}

.sample-head span {
  color: #d7cabc;
  font-size: 13px;
  font-weight: 700;
}

.sample-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.sample-post {
  padding: 26px;
  border-right: 1px solid rgba(11, 11, 11, 0.1);
}

.sample-post p {
  font-size: 19px;
  margin: 0 0 18px;
  letter-spacing: -0.015em;
  color: #2d261f;
  line-height: 1.7;
}

.sample-post small {
  color: #7c6d62;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.sample-clips {
  padding: 26px;
  display: grid;
  gap: 12px;
  background: linear-gradient(180deg, #f4ede4, #eee4d8);
}

.clip-row {
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 14px;
  align-items: center;
  background: rgba(255, 253, 248, 0.9);
  border: 1px solid rgba(11, 11, 11, 0.08);
  border-radius: 18px;
  padding: 10px;
  box-shadow: 0 10px 22px rgba(30, 20, 13, 0.05);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.clip-thumb {
  height: 78px;
  border-radius: 14px;
  background:
    radial-gradient(circle at 72% 24%, rgba(244, 106, 61, 0.38), transparent 28%),
    linear-gradient(160deg, #261b15, #0f0c09);
  position: relative;
  overflow: hidden;
}

.clip-thumb::after {
  content: "▶";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--paper);
  font-size: 18px;
}

.clip-row b {
  display: block;
  letter-spacing: -0.025em;
}

.clip-row span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-top: 36px;
  align-items: stretch;
}

.pricing-shared {
  margin-top: 28px;
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(255, 254, 250, 0.76);
  border: 1px solid rgba(11, 11, 11, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  box-shadow: var(--shadow-soft);
}

.pricing-shared-label {
  flex: 0 0 auto;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-dark);
}

.pricing-shared-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.pricing-shared-list span {
  display: inline-flex;
  align-items: center;
  padding: 8px 11px;
  border-radius: 999px;
  background: #f5eade;
  color: #40352c;
  font-size: 12px;
  font-weight: 800;
}

.price-card {
  border-radius: 30px;
  padding: 28px;
  background: linear-gradient(180deg, rgba(255, 253, 248, 0.98), rgba(249, 241, 231, 0.96));
  border: 1px solid rgba(11, 11, 11, 0.1);
  display: flex;
  flex-direction: column;
  min-height: 640px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.price-card.featured {
  background:
    radial-gradient(circle at 85% 12%, rgba(244, 106, 61, 0.24), transparent 26%),
    linear-gradient(180deg, #17120f, #0d0a08);
  color: var(--light);
  transform: translateY(-8px);
  box-shadow: var(--shadow-strong);
}

.price-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 5px;
  background: linear-gradient(90deg, rgba(244, 106, 61, 0.95), rgba(244, 106, 61, 0.2));
}

.featured::before {
  background: linear-gradient(90deg, rgba(244, 106, 61, 1), rgba(255, 249, 238, 0.22));
}

.featured-badge {
  position: absolute;
  top: 24px;
  right: 24px;
  padding: 8px 11px;
  border-radius: 999px;
  background: linear-gradient(135deg, #f8b08f, #f46a3d);
  color: #23160f;
  font-size: 12px;
  font-weight: 950;
  box-shadow: 0 12px 24px rgba(244, 106, 61, 0.24);
}

.plan-eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin: 10px 0 18px;
  padding: 8px 11px;
  border-radius: 999px;
  background: rgba(11, 11, 11, 0.06);
  color: #363636;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.featured .plan-eyebrow {
  background: rgba(255, 255, 255, 0.08);
  color: #f0e7d8;
}

.price-card h3 {
  margin: 0;
  font-size: 38px;
  letter-spacing: -0.045em;
}

.plan-purpose {
  margin: 14px 0 0;
  font-size: 16px;
  line-height: 1.5;
  max-width: 36ch;
}

.price {
  margin: 20px 0 14px;
  font-size: 48px;
  letter-spacing: -0.08em;
  font-weight: 950;
}

.price span {
  font-size: 16px;
  letter-spacing: -0.02em;
  color: var(--muted);
}

.featured .price span {
  color: #bfbfbf;
}

.price-card p {
  margin: 0;
  color: #51473f;
}

.featured p {
  color: #cfcfcf;
}

.plan-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.plan-meta span {
  display: inline-flex;
  align-items: center;
  padding: 8px 11px;
  border-radius: 999px;
  background: rgba(11, 11, 11, 0.06);
  color: #363636;
  font-size: 12px;
  font-weight: 850;
}

.featured .plan-meta span {
  background: rgba(255, 255, 255, 0.08);
  color: #eee2d2;
}

.plan-fit {
  padding: 16px 0 16px;
  border-top: 1px solid rgba(11, 11, 11, 0.1);
  border-bottom: 1px solid rgba(11, 11, 11, 0.1);
}

.featured .plan-fit {
  border-color: rgba(255, 255, 255, 0.12);
}

.plan-fit strong {
  display: block;
  margin-bottom: 8px;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.plan-fit p {
  line-height: 1.55;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 22px 0 28px;
  display: grid;
  gap: 10px;
}

.feature-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-weight: 700;
}

.feature-list li::before {
  content: "✓";
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: #e8decc;
  display: grid;
  place-items: center;
  font-size: 13px;
  color: var(--ink);
  margin-top: 1px;
}

.featured .feature-list li::before {
  background: var(--accent);
}

.price-card .btn {
  margin-top: auto;
  width: 100%;
}

.featured .btn {
  background: var(--paper);
  color: var(--ink);
  border-color: var(--paper);
}

.segment-grid {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.segment {
  padding: 21px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: var(--radius-lg);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.segment h3 {
  margin: 0 0 8px;
  font-size: 22px;
  letter-spacing: -0.03em;
}

.segment p {
  margin: 0;
  color: #c8c8c8;
  font-size: 14px;
}

.faq-grid {
  margin-top: 35px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.faq {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 249, 240, 0.94));
  border: 1px solid rgba(11, 11, 11, 0.08);
  border-radius: var(--radius-lg);
  padding: 23px;
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.faq::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, rgba(244, 106, 61, 0.75), rgba(244, 106, 61, 0.12));
}

.faq h3 {
  margin: 0 0 9px;
  font-size: 20px;
  letter-spacing: -0.02em;
}

.faq p {
  margin: 0;
  color: #4b4b4b;
}

.final-cta {
  padding: 54px 0 88px;
}

.booking-shell {
  display: grid;
  gap: 28px;
}

.booking-header {
  border-radius: 36px;
  background:
    radial-gradient(circle at 10% 10%, rgba(244, 106, 61, 0.18), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.85), rgba(255, 250, 240, 0.98)),
    var(--light);
  border: 1px solid rgba(11, 11, 11, 0.08);
  box-shadow: var(--shadow);
  padding: 42px 46px;
}

.booking-header-row {
  margin-top: 16px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: end;
}

.booking-copy {
  max-width: 760px;
}

.booking-topline {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 9px 13px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent-dark);
  background: rgba(244, 106, 61, 0.1);
}

.booking-header h2 {
  margin: 0;
  font-size: clamp(34px, 4.6vw, 54px);
  line-height: 1.04;
  letter-spacing: -0.03em;
  max-width: 760px;
}

.booking-header p {
  margin: 16px 0 0;
  color: #3f3a35;
  font-size: 17px;
  line-height: 1.65;
  max-width: 620px;
}

.booking-direct-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: end;
  color: #5a4b3f;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(11, 11, 11, 0.08);
  box-shadow: 0 12px 24px rgba(32, 20, 12, 0.06);
}

.booking-direct-link::after {
  content: "->";
  font-size: 13px;
}

.booking-stage {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
}

.booking-aside {
  border-radius: 32px;
  background:
    radial-gradient(circle at 20% 0%, rgba(244, 106, 61, 0.24), transparent 30%),
    var(--ink);
  color: var(--light);
  padding: 30px 28px;
  box-shadow: var(--shadow-strong);
}

.booking-aside-label {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #f3c6b5;
}

.booking-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: grid;
  gap: 0;
}

.booking-list li {
  padding: 16px 0;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 700;
}

.booking-list li + li {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.booking-aside-note {
  margin: 18px 0 0;
  color: #cdc1b4;
  font-size: 13px;
  line-height: 1.6;
}

.booking-embed-card {
  border-radius: 36px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 250, 240, 0.96)),
    var(--light);
  border: 1px solid rgba(11, 11, 11, 0.08);
  box-shadow: var(--shadow);
  padding: 18px;
}

.booking-embed-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding: 2px 8px 14px;
  color: #383838;
}

.booking-embed-head b {
  display: inline-block;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #6a655d;
}

.booking-embed-head span {
  color: #827b72;
  font-size: 13px;
}

@media (hover: hover) {
  .growth-point:hover,
  .step:hover,
  .deliverable:hover,
  .clip-row:hover,
  .faq:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 42px rgba(33, 20, 10, 0.12);
  }

  .price-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 54px rgba(28, 18, 10, 0.14);
  }

  .price-card.featured:hover {
    transform: translateY(-10px);
    box-shadow: 0 36px 70px rgba(18, 12, 8, 0.22);
  }

  .segment:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.18);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.04));
  }

  .booking-direct-link:hover {
    transform: translateY(-2px);
  }
}

.booking-embed-frame {
  border-radius: 28px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(11, 11, 11, 0.08);
  min-height: 760px;
}

#my-cal-inline-30min {
  width: 100%;
  min-height: 760px;
  overflow: auto;
}

footer {
  padding: 34px 0 46px;
  color: #6a655d;
  border-top: 1px solid rgba(11, 11, 11, 0.1);
  font-size: 14px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 250, 242, 0.8));
}

.footer-inner {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  text-align: center;
}

@media (max-width: 980px) {
  .hero-grid,
  .growth-grid,
  .problem-grid,
  .sample-body,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .steps,
  .deliverables-grid,
  .segment-grid,
  .faq-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .sample-post {
    border-right: none;
    border-bottom: 1px solid rgba(11, 11, 11, 0.1);
  }

  .hero-showcase-main {
    min-height: 0;
  }

  .hero-showcase-metrics {
    left: 20px;
    bottom: 100px;
  }

  .hero-showcase-note {
    right: 20px;
    bottom: 20px;
  }

  .growth-stack {
    padding-bottom: 100px;
  }

  .growth-copy .section-title,
  .growth-copy .section-lede {
    max-width: none;
  }

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

  .pricing-shared-list {
    justify-content: flex-start;
  }

  .price-card {
    min-height: auto;
  }

  .price-card.featured {
    transform: none;
  }

  .booking-header,
  .booking-aside,
  .booking-embed-card {
    align-items: start;
  }

  .booking-header-row,
  .booking-stage {
    grid-template-columns: 1fr;
  }

  .booking-direct-link {
    justify-self: start;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 28px, 1140px);
  }

  .nav-inner {
    min-height: 66px;
  }

  .nav-links {
    display: none;
  }

  .brand {
    font-size: 16px;
  }

  .brand-mark {
    width: 30px;
    height: 30px;
    font-size: 15px;
  }

  .hero {
    padding: 44px 0 56px;
  }

  h1 {
    font-size: clamp(48px, 17vw, 72px);
  }

  .eyebrow {
    gap: 8px;
    padding: 8px 12px;
    font-size: 12px;
    line-height: 1.3;
  }

  .hero-copy {
    font-size: 18px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .micro-proof {
    gap: 10px;
  }

  .micro-proof span {
    width: 100%;
  }

  .panel-shell {
    padding: 12px;
    border-radius: 28px;
    transform: none;
  }

  .hero-showcase {
    padding: 14px;
    border-radius: 28px;
  }

  .hero-showcase-chip {
    top: 18px;
    left: 18px;
  }

  .hero-showcase-metrics {
    position: static;
    margin-top: 14px;
  }

  .hero-showcase-note {
    position: static;
    width: 100%;
    margin-top: 14px;
  }

  .panel {
    min-height: auto;
    padding: 18px;
    border-radius: 20px;
  }

  .panel-top {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 18px;
  }

  .video-card {
    min-height: auto;
    padding: 16px;
  }

  .wave {
    height: 62px;
    gap: 4px;
  }

  .wave i {
    width: 5px;
  }

  .asset-grid {
    gap: 10px;
  }

  .asset {
    padding: 13px;
  }

  .section-title {
    line-height: 1.04;
  }

  .section-lede {
    font-size: 16px;
    line-height: 1.6;
  }

  .problem-card h3 {
    font-size: 22px;
  }

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

  .sample-post,
  .sample-clips {
    padding: 22px;
  }

  .sample-post p {
    font-size: 17px;
  }

  .growth-point strong {
    font-size: 18px;
  }

  .growth-stack {
    padding-bottom: 0;
    display: grid;
    gap: 14px;
  }

  .growth-screen,
  .growth-proof-card {
    position: static;
    width: 100%;
  }

  .growth-floating-stat {
    position: static;
    width: 100%;
  }

  .clip-row {
    grid-template-columns: 64px 1fr;
    gap: 12px;
  }

  .clip-thumb {
    height: 64px;
  }

  .pricing-shared {
    padding: 16px;
  }

  .price-card {
    padding: 24px;
    border-radius: 24px;
  }

  .featured-badge {
    top: 18px;
    right: 18px;
  }

  .price-card h3 {
    font-size: 34px;
  }

  .price {
    font-size: 42px;
  }

  .faq {
    padding: 20px;
  }

  .faq h3 {
    font-size: 18px;
  }

  .booking-header h2 {
    font-size: clamp(32px, 11vw, 42px);
  }

  .steps,
  .deliverables-grid,
  .segment-grid,
  .faq-grid,
  .asset-grid {
    grid-template-columns: 1fr;
  }

  .sticky-note,
  .booking-header,
  .booking-aside,
  .booking-embed-card {
    padding: 28px;
  }

  section {
    padding: 52px 0;
  }

  .booking-embed-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .booking-embed-frame,
  #my-cal-inline-30min {
    min-height: 680px;
  }
}

@media (max-width: 480px) {
  .container {
    width: min(100% - 22px, 1140px);
  }

  .hero {
    padding-top: 34px;
  }

  h1 {
    font-size: clamp(40px, 15vw, 56px);
  }

  .hero-copy,
  .section-lede,
  .booking-header p {
    font-size: 15px;
  }

  .btn {
    width: 100%;
    padding: 15px 18px;
  }

  .booking-direct-link {
    width: 100%;
    justify-content: center;
    white-space: normal;
  }

  .sticky-note,
  .problem-card,
  .step,
  .deliverable,
  .growth-point,
  .segment,
  .faq,
  .price-card,
  .booking-header,
  .booking-aside,
  .booking-embed-card {
    padding: 20px;
    border-radius: 20px;
  }

  .booking-list li {
    font-size: 15px;
  }

  .sample-head,
  .sample-post,
  .sample-clips {
    padding: 18px;
  }

  .price-card h3 {
    font-size: 30px;
  }

  .featured-badge {
    position: static;
    margin-bottom: 14px;
  }

  .pricing-shared-list span,
  .plan-meta span {
    width: 100%;
    justify-content: center;
  }

  .booking-embed-frame,
  #my-cal-inline-30min {
    min-height: 620px;
  }

  footer {
    padding: 28px 0 36px;
  }
}

@media (max-width: 390px) {
  .container {
    width: min(100% - 18px, 1140px);
  }

  .nav-inner {
    min-height: 62px;
  }

  .hero {
    padding: 28px 0 44px;
  }

  h1 {
    font-size: clamp(34px, 14vw, 46px);
    line-height: 1;
  }

  .eyebrow {
    width: 100%;
    justify-content: flex-start;
    padding: 8px 10px;
    font-size: 11px;
  }

  .hero-copy,
  .section-lede,
  .booking-header p,
  .problem-card p,
  .growth-point p,
  .deliverable p,
  .faq p,
  .plan-purpose,
  .plan-fit p {
    font-size: 14px;
    line-height: 1.55;
  }

  .btn {
    padding: 14px 16px;
    font-size: 14px;
  }

  .panel-shell {
    padding: 10px;
    border-radius: 24px;
  }

  .panel,
  .video-card {
    padding: 14px;
  }

  .avatar {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    font-size: 18px;
  }

  .asset b {
    font-size: 20px;
  }

  .sticky-note h3,
  .section-title,
  .booking-header h2 {
    font-size: clamp(28px, 10.5vw, 36px);
    line-height: 1.03;
  }

  .problem-card h3,
  .deliverable h3,
  .segment h3,
  .faq h3,
  .step h3 {
    font-size: 18px;
  }

  .sample-post p {
    font-size: 15px;
  }

  .price-card h3 {
    font-size: 27px;
  }

  .price {
    font-size: 36px;
  }

  .plan-meta,
  .pricing-shared-list {
    gap: 8px;
  }

  .plan-meta span,
  .pricing-shared-list span {
    font-size: 12px;
  }

  .booking-list li {
    font-size: 14px;
    padding: 14px 0;
  }

  .booking-embed-head {
    padding: 0 4px 12px;
  }

  .booking-embed-frame,
  #my-cal-inline-30min {
    min-height: 560px;
  }

  section {
    padding: 44px 0;
  }

  footer {
    padding: 24px 0 30px;
    font-size: 13px;
  }
}
