:root {
  --deep-purple: #16002e;
  --lime: #94bf30;
  --studio-black: #050407;
  --purple-black: #0b0017;
  --panel: #12071f;
  --panel-light: #1b0d2d;
  --soft-white: #f5f2fa;
  --lavender: #b7a9c8;
  --muted: #7c718a;
  --hairline: rgba(255, 255, 255, 0.1);
  --hairline-strong: rgba(255, 255, 255, 0.18);
  --lime-glow: rgba(148, 191, 48, 0.35);
  --purple-glow: rgba(113, 42, 205, 0.28);
  --ease-out-heavy: cubic-bezier(0.32, 0.72, 0, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--studio-black);
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--soft-white);
  background:
    radial-gradient(circle at 20% 0%, rgba(84, 18, 143, 0.28), transparent 34rem),
    radial-gradient(circle at 80% 8%, rgba(148, 191, 48, 0.12), transparent 28rem),
    linear-gradient(180deg, #050407 0%, #090011 36%, #050407 100%);
  font-family: "Geist", "Plus Jakarta Sans", "Avenir Next", system-ui, sans-serif;
  overflow-x: hidden;
}

body::selection {
  color: #10001f;
  background: var(--lime);
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button:focus-visible,
a:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--lime);
  outline-offset: 4px;
}

.grain {
  position: fixed;
  inset: 0;
  z-index: 8;
  pointer-events: none;
  opacity: 0.045;
  background-image:
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 3px 3px;
  mix-blend-mode: screen;
}

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

.signal-line {
  position: absolute;
  width: 48rem;
  height: 11rem;
  border-top: 2px solid rgba(148, 191, 48, 0.35);
  border-radius: 50%;
  opacity: 0.55;
  transform: rotate(-7deg);
}

.signal-one {
  top: 8rem;
  left: -9rem;
  border-color: rgba(148, 191, 48, 0.33);
}

.signal-two {
  top: 6rem;
  left: -12rem;
  border-color: rgba(111, 46, 194, 0.42);
  transform: rotate(-10deg);
}

.brand-mark,
.primary-cta,
.proof-strip,
.hero-actions,
.calendar-head {
  display: flex;
  align-items: center;
}

.brand-mark {
  gap: 10px;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0;
}

.brand-glyph {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  color: #0f0619;
  background: var(--lime);
  font-family: "Geist Mono", "IBM Plex Mono", monospace;
  font-size: 0.66rem;
  text-transform: uppercase;
  box-shadow: 0 0 34px rgba(148, 191, 48, 0.42);
}

.section {
  width: min(1220px, calc(100% - 48px));
  margin: 0 auto;
  padding: 84px 0;
}

.hero {
  display: grid;
  width: min(1280px, calc(100% - 32px));
  min-height: auto;
  padding-top: 24px;
  padding-bottom: 28px;
  place-items: center;
}

.proof-section {
  padding-top: 44px;
}

.hero-shell {
  width: 100%;
  padding: 44px 64px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 44px;
  background:
    linear-gradient(135deg, rgba(22, 0, 46, 0.9), rgba(5, 4, 7, 0.78)),
    radial-gradient(circle at 70% 10%, rgba(148, 191, 48, 0.14), transparent 26rem);
  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, 0.12),
    0 44px 130px rgba(0, 0, 0, 0.38);
}

.hero-copy {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  gap: 8px;
  margin: 0 0 20px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: var(--lavender);
  background: rgba(255, 255, 255, 0.045);
  font-family: "Geist Mono", "IBM Plex Mono", monospace;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: "Clash Display", "Satoshi", "Neue Montreal", system-ui, sans-serif;
  letter-spacing: 0;
}

h1 {
  max-width: 980px;
  margin: 0 auto 18px;
  font-size: 6.35rem;
  font-weight: 760;
  line-height: 0.94;
}

h2 {
  margin-bottom: 20px;
  font-size: 5.2rem;
  font-weight: 740;
  line-height: 0.94;
}

h3 {
  color: var(--soft-white);
  font-size: 1.12rem;
  line-height: 1.18;
}

p {
  color: var(--lavender);
  font-size: 1rem;
  line-height: 1.7;
}

.lime-swipe {
  position: relative;
  display: inline-block;
  color: #081005;
  padding: 0 0.14em;
  font-style: italic;
  transform: rotate(-2deg);
}

.lime-swipe::before {
  position: absolute;
  inset: 0.11em -0.02em 0.03em;
  z-index: -1;
  border-radius: 0.08em;
  background: var(--lime);
  box-shadow: 0 0 44px rgba(148, 191, 48, 0.34);
  content: "";
}

.hero-subhead {
  max-width: 720px;
  margin: 0 auto 24px;
  font-size: 1.08rem;
}

.double-bezel {
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025)),
    rgba(22, 0, 46, 0.42);
  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, 0.12),
    0 34px 120px rgba(0, 0, 0, 0.28);
}

.bezel-core {
  border-radius: 26px;
  background: linear-gradient(145deg, rgba(18, 7, 31, 0.96), rgba(5, 4, 7, 0.98));
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.12);
}

.vsl-frame {
  max-width: 820px;
  margin: 0 auto;
}

.video-core {
  position: relative;
  display: grid;
  aspect-ratio: 16 / 9;
  min-height: 0;
  overflow: hidden;
  place-items: center;
  background:
    radial-gradient(circle at 50% 35%, rgba(148, 191, 48, 0.18), transparent 18rem),
    linear-gradient(135deg, #18042c, #060407 68%);
}

.video-core iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.hero-actions {
  justify-content: center;
  gap: 18px;
  margin-top: 22px;
  text-align: left;
}

.hero-actions p,
.section-cta p {
  max-width: 340px;
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.45;
}

.primary-cta {
  width: fit-content;
  gap: 14px;
  min-height: 58px;
  padding: 9px 9px 9px 24px;
  border-radius: 999px;
  color: #0d0615;
  background: var(--lime);
  box-shadow:
    0 14px 46px rgba(148, 191, 48, 0.28),
    inset 0 1px 1px rgba(255, 255, 255, 0.32);
  font-weight: 860;
  transition:
    transform 700ms var(--ease-out-heavy),
    box-shadow 700ms var(--ease-out-heavy);
}

.cta-icon {
  display: grid;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(10, 6, 18, 0.13);
  font-size: 1rem;
  place-items: center;
  transition:
    transform 700ms var(--ease-out-heavy),
    background 700ms var(--ease-out-heavy);
}

.magnetic:hover {
  transform: translateY(-2px);
  box-shadow:
    0 18px 62px rgba(148, 191, 48, 0.36),
    inset 0 1px 1px rgba(255, 255, 255, 0.34);
}

.magnetic:hover .cta-icon {
  background: rgba(10, 6, 18, 0.2);
  transform: translate(4px, -1px) scale(1.05);
}

.magnetic:active {
  transform: scale(0.98);
}

.proof-strip {
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 22px;
}

.proof-strip span {
  padding: 9px 13px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  color: var(--lavender);
  background: rgba(255, 255, 255, 0.045);
  font-family: "Geist Mono", "IBM Plex Mono", monospace;
  font-size: 0.72rem;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 30px;
}

.section-heading > .eyebrow {
  display: block;
  padding: 0;
  border: 0;
  border-radius: 0;
  color: var(--soft-white);
  background: transparent;
  font-family: "Clash Display", "Satoshi", "Neue Montreal", system-ui, sans-serif;
  font-size: 3.65rem;
  font-weight: 760;
  line-height: 1;
  text-transform: none;
}

.hero .section-heading > .eyebrow,
.hero-copy > .eyebrow {
  display: inline-flex;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: var(--lavender);
  background: rgba(255, 255, 255, 0.045);
  font-family: "Geist Mono", "IBM Plex Mono", monospace;
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.section-heading.centered {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading.centered .eyebrow {
  margin-right: auto;
  margin-left: auto;
}

.case-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.7fr);
  align-items: stretch;
  gap: 22px;
}

.result-card:nth-child(3),
.result-card:nth-child(4) {
  grid-column: span 2;
}

.result-core {
  display: grid;
  height: 100%;
  overflow: hidden;
  background: #f8f8f8;
  place-items: center;
}

.result-core img {
  display: block;
  width: 100%;
  height: auto;
}

.result-card:nth-child(2) .result-core {
  background: #f8f8f8;
}

.result-card:nth-child(1) .result-core,
.result-card:nth-child(2) .result-core {
  height: 420px;
}

.result-card:nth-child(1) .result-core img,
.result-card:nth-child(2) .result-core img {
  height: 100%;
  object-fit: contain;
}

.result-card {
  transition:
    transform 800ms var(--ease-out-heavy),
    border-color 800ms var(--ease-out-heavy),
    box-shadow 800ms var(--ease-out-heavy);
}

.result-card:hover {
  border-color: rgba(148, 191, 48, 0.42);
  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, 0.12),
    0 28px 100px rgba(148, 191, 48, 0.12);
  transform: translateY(-6px);
}

.section-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 34px;
}

.testimonial-section,
.system-section,
.faq-section {
  width: min(1120px, calc(100% - 48px));
}

.evidence-vault {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  grid-template-areas:
    "shot1 tweet"
    "shot2 tweet"
    "small1 small2";
  gap: 18px;
}

.message-card {
  min-height: 200px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 28px;
  background:
    radial-gradient(circle at 18% 0%, rgba(148, 191, 48, 0.12), transparent 18rem),
    linear-gradient(145deg, rgba(18, 7, 31, 0.9), rgba(5, 4, 7, 0.96));
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.12);
}

.message-card:nth-child(1) {
  grid-area: tweet;
}

.message-card:nth-child(2) {
  grid-area: shot1;
}

.message-card:nth-child(3) {
  grid-area: shot2;
}

.message-card:nth-child(4) {
  grid-area: small1;
}

.message-card:nth-child(5) {
  grid-area: small2;
}

.message-card p {
  margin-bottom: 26px;
  color: var(--soft-white);
  font-family: "Clash Display", "Satoshi", system-ui, sans-serif;
  font-size: 2.05rem;
  line-height: 1.08;
  letter-spacing: 0;
}

.message-card:not(.tweet-card) p {
  font-size: 1.25rem;
}

.message-card small {
  color: var(--muted);
}

.tweet-card {
  display: grid;
  align-content: center;
  min-height: 430px;
  gap: 18px;
  transition:
    transform 800ms var(--ease-out-heavy),
    border-color 800ms var(--ease-out-heavy),
    box-shadow 800ms var(--ease-out-heavy);
}

.tweet-card:hover {
  border-color: rgba(148, 191, 48, 0.42);
  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, 0.12),
    0 28px 100px rgba(148, 191, 48, 0.12);
  transform: translateY(-6px);
}

.tweet-card .twitter-tweet {
  width: 100% !important;
  margin: 0 auto !important;
}

.image-message {
  display: grid;
  min-height: 0;
  padding: 12px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025)),
    rgba(18, 7, 31, 0.9);
  place-items: center;
}

.image-message img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 18px;
}

.compact-message img {
  max-height: 130px;
  object-fit: contain;
}

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

.video-card {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 26px;
  background: rgba(18, 7, 31, 0.9);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.12);
  transition:
    transform 800ms var(--ease-out-heavy),
    border-color 800ms var(--ease-out-heavy),
    box-shadow 800ms var(--ease-out-heavy);
}

.video-card:hover {
  border-color: rgba(148, 191, 48, 0.42);
  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, 0.12),
    0 28px 100px rgba(148, 191, 48, 0.12);
  transform: translateY(-8px);
}

.video-card iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.system-section {
  padding-right: 24px;
  padding-left: 24px;
  border-radius: 42px;
  background:
    radial-gradient(circle at 50% 20%, rgba(148, 191, 48, 0.1), transparent 30rem),
    linear-gradient(180deg, rgba(22, 0, 46, 0.52), rgba(5, 4, 7, 0.22));
}

.system-map {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding: 10px;
}

.loop-line {
  position: absolute;
  inset: 50% 8%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(148, 191, 48, 0.28), transparent);
  box-shadow: 0 0 30px rgba(148, 191, 48, 0.24);
}

.system-module {
  position: relative;
  min-height: 240px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 28px;
  background:
    radial-gradient(circle at 90% 12%, rgba(148, 191, 48, 0.08), transparent 14rem),
    rgba(18, 7, 31, 0.9);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.12);
  transition:
    transform 800ms var(--ease-out-heavy),
    border-color 800ms var(--ease-out-heavy);
}

.module-icon {
  display: grid;
  width: 46px;
  height: 46px;
  margin-bottom: 22px;
  border: 1px solid rgba(148, 191, 48, 0.34);
  border-radius: 15px;
  color: var(--lime);
  background: rgba(148, 191, 48, 0.08);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.1);
  place-items: center;
}

.module-icon svg {
  width: 27px;
  height: 27px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.65;
}

.system-module:nth-of-type(1)::after,
.system-module:nth-of-type(2)::after,
.system-module:nth-of-type(4)::after,
.system-module:nth-of-type(5)::after {
  position: absolute;
  top: 50%;
  right: -31px;
  z-index: 2;
  display: grid;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(148, 191, 48, 0.35);
  border-radius: 50%;
  color: var(--lime);
  background: #090011;
  box-shadow: 0 0 30px rgba(148, 191, 48, 0.22);
  content: "→";
  font-family: "Geist Mono", "IBM Plex Mono", monospace;
  place-items: center;
  transform: translateY(-50%);
}

.system-module:hover {
  border-color: rgba(148, 191, 48, 0.4);
  transform: translateY(-8px);
}

.system-module span {
  display: inline-flex;
  margin-bottom: 24px;
  color: var(--lime);
  font-family: "Geist Mono", "IBM Plex Mono", monospace;
  font-size: 0.78rem;
}

.system-module h3 {
  margin-bottom: 10px;
}

.system-module p {
  margin-bottom: 0;
  font-size: 0.92rem;
}

.system-footer {
  max-width: 640px;
  margin: 24px auto 0;
  color: var(--soft-white);
  text-align: center;
}

.process-section {
  width: min(1160px, calc(100% - 48px));
}

.handoff-rail {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.handoff-rail::before {
  position: absolute;
  top: 50%;
  right: 12%;
  left: 12%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(148, 191, 48, 0.5), transparent);
  content: "";
}

.handoff-rail article {
  position: relative;
  min-height: 300px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  background: linear-gradient(145deg, rgba(18, 7, 31, 0.88), rgba(5, 4, 7, 0.96));
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.12);
}

.step-icon {
  display: grid;
  width: 58px;
  height: 58px;
  margin-bottom: 22px;
  border: 1px solid rgba(148, 191, 48, 0.34);
  border-radius: 18px;
  color: var(--lime);
  background: rgba(148, 191, 48, 0.08);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.1);
  place-items: center;
}

.step-icon svg {
  width: 32px;
  height: 32px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.65;
}

.handoff-rail .studio-step {
  border-color: rgba(148, 191, 48, 0.36);
  background:
    radial-gradient(circle at 50% 0%, rgba(148, 191, 48, 0.18), transparent 18rem),
    linear-gradient(145deg, rgba(22, 0, 46, 0.96), rgba(5, 4, 7, 0.96));
  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, 0.14),
    0 28px 90px rgba(148, 191, 48, 0.12);
}

.handoff-rail span {
  display: inline-flex;
  margin-bottom: 54px;
  padding: 7px 10px;
  border-radius: 999px;
  color: #0d0615;
  background: var(--lime);
  font-family: "Geist Mono", "IBM Plex Mono", monospace;
  font-size: 0.7rem;
  font-weight: 900;
  text-transform: uppercase;
}

.handoff-rail p {
  margin-bottom: 0;
  font-size: 0.94rem;
}

.calendly-section {
  width: min(1220px, calc(100% - 48px));
}

.booking-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 32px;
  align-items: start;
}

.booking-copy {
  position: sticky;
  top: 128px;
}

.trust-list {
  display: grid;
  gap: 14px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.trust-list li {
  position: relative;
  padding: 16px 16px 16px 46px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  color: var(--lavender);
  background: rgba(255, 255, 255, 0.04);
}

.trust-list li::before {
  position: absolute;
  top: 18px;
  left: 18px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 24px rgba(148, 191, 48, 0.35);
  content: "";
}

.calendar-core {
  min-height: 660px;
  padding: 22px;
}

.calendar-head {
  justify-content: space-between;
  margin-bottom: 18px;
}

.calendar-head span {
  color: var(--lime);
  font-family: "Geist Mono", "IBM Plex Mono", monospace;
  font-size: 0.72rem;
  text-transform: uppercase;
}

.calendar-head p {
  margin: 0;
  color: var(--soft-white);
  font-weight: 800;
}

.calendly-inline-widget {
  min-width: 320px;
  height: 680px;
  overflow: hidden;
  border-radius: 22px;
  background: #ffffff;
}

.faq-list {
  display: grid;
  max-width: 860px;
  gap: 12px;
  margin: 0 auto;
}

details {
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.045);
  transition:
    border-color 700ms var(--ease-out-heavy),
    background 700ms var(--ease-out-heavy);
}

details[open] {
  border-color: rgba(148, 191, 48, 0.32);
  background: rgba(18, 7, 31, 0.84);
}

summary {
  position: relative;
  padding: 22px 58px 22px 22px;
  cursor: pointer;
  color: var(--soft-white);
  font-weight: 800;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  position: absolute;
  top: 50%;
  right: 22px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  color: #0d0615;
  background: var(--lime);
  content: "+";
  display: grid;
  font-size: 1rem;
  line-height: 1;
  place-items: center;
  transform: translateY(-50%);
}

details[open] summary::after {
  content: "−";
}

details p {
  max-width: 720px;
  margin: -4px 22px 22px;
  font-size: 0.96rem;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1220px, calc(100% - 48px));
  margin: 0 auto;
  padding: 42px 0 58px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer p {
  max-width: 420px;
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  text-align: right;
}

.reveal {
  opacity: 1;
  transform: none;
  transition: none;
}

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 920px) {
  .section,
  .hero,
  .testimonial-section,
  .system-section,
  .process-section,
  .calendly-section {
    width: min(100% - 32px, 760px);
    padding: 64px 0;
  }

  .hero {
    min-height: auto;
    padding-top: 36px;
    padding-bottom: 26px;
  }

  .proof-section {
    padding-top: 36px;
  }

  .hero-shell {
    border-radius: 32px;
    padding: 44px;
  }

  h1 {
    font-size: 5rem;
  }

  h2 {
    font-size: 4rem;
  }

  .video-core {
    min-height: 0;
  }

  .hero-actions,
  .section-cta {
    flex-direction: column;
    text-align: center;
  }

  .hero-actions p,
  .section-cta p {
    max-width: 460px;
  }

  .case-grid,
  .evidence-vault,
  .portfolio-grid,
  .system-map,
  .handoff-rail,
  .booking-grid {
    grid-template-columns: 1fr;
    grid-template-areas: none;
  }

  .message-card:nth-child(n) {
    grid-area: auto;
  }

  .result-card:nth-child(3),
  .result-card:nth-child(4) {
    grid-column: span 1;
  }

  .result-card:nth-child(1) .result-core,
  .result-card:nth-child(2) .result-core {
    height: auto;
  }

  .result-card:nth-child(1) .result-core img,
  .result-card:nth-child(2) .result-core img {
    height: auto;
  }

  .video-card {
    min-height: 360px;
  }

  .loop-line,
  .handoff-rail::before {
    display: none;
  }

  .system-module::after {
    display: none !important;
  }

  .handoff-rail span {
    margin-bottom: 44px;
  }

  .booking-copy {
    position: static;
  }
}

@media (max-width: 620px) {
  .brand-mark span:last-child {
    display: none;
  }

  .section,
  .hero,
  .testimonial-section,
  .system-section,
  .process-section,
  .calendly-section {
    width: min(100% - 24px, 560px);
    padding: 52px 0;
  }

  .hero {
    padding-top: 24px;
    padding-bottom: 22px;
  }

  .proof-section {
    padding-top: 30px;
  }

  .hero-shell {
    padding: 24px 16px;
  }

  h1 {
    font-size: 3rem;
    line-height: 0.95;
  }

  h2 {
    font-size: 2.7rem;
    line-height: 1;
  }

  .eyebrow {
    font-size: 0.58rem;
    letter-spacing: 0;
  }

  .primary-cta {
    justify-content: space-between;
    width: 100%;
    max-width: 320px;
  }

  .video-core {
    min-height: 0;
  }

  .section-heading > .eyebrow {
    font-size: 2.55rem;
  }

  .calendar-core {
    min-height: auto;
  }

  .message-card p {
    font-size: 1.32rem;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
    width: calc(100% - 32px);
  }

  .site-footer .brand-mark span:last-child {
    display: inline;
  }

  .site-footer p {
    text-align: left;
  }
}
