:root {
  --bg: #11110f;
  --panel: #090908;
  --panel-soft: #10100d;
  --line: rgba(255, 255, 255, 0.13);
  --text: #f7f3ea;
  --muted: #b6b0a5;
  --accent: #d8a73a;
  --accent-strong: #e2bd52;
  --accent-soft: rgba(216, 167, 58, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  background:
    radial-gradient(circle at 50% 0%, rgba(216, 167, 58, 0.11), transparent 28rem),
    linear-gradient(180deg, #171714 0%, var(--bg) 100%);
}

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

.page-shell {
  width: min(calc(100vw - 48px), 1040px);
  margin: 0 auto;
  padding: 42px 0 74px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

h1 {
  width: min(100%, 1040px);
  margin: 0 0 26px;
  text-align: center;
  font-size: clamp(3rem, 5vw, 4.8rem);
  line-height: 1.08;
  letter-spacing: 0;
  font-weight: 500;
}

h1 span {
  display: block;
  white-space: nowrap;
}

.video-box,
.content-box {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 7px;
  background:
    radial-gradient(circle at 50% 38%, rgba(216, 167, 58, 0.18), transparent 18rem),
    linear-gradient(145deg, #11100d 0%, var(--panel) 56%, #171209 100%);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
}

.video-box {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 7.6;
  min-height: 430px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  isolation: isolate;
}

.video-box::before,
.content-box::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(circle at center, black, transparent 72%);
  opacity: 0.42;
}

.vsl-box {
  margin-top: 0;
}

.vsl-video {
  border: 1px solid var(--line);
}

.play-button {
  width: 82px;
  height: 82px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 12px rgba(216, 167, 58, 0.11), 0 18px 45px rgba(0, 0, 0, 0.42);
}

.play-button::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  margin: 25px 0 0 32px;
  border-top: 16px solid transparent;
  border-bottom: 16px solid transparent;
  border-left: 23px solid #130f07;
}

.box-label {
  margin-top: 18px;
  color: var(--accent-strong);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.book-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  margin: 14px 0 20px;
  padding: 0 38px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 2px;
  color: #171107;
  background: linear-gradient(180deg, #e8c65f, var(--accent));
  box-shadow: 0 12px 30px rgba(216, 167, 58, 0.18);
  font-weight: 700;
}

.book-button.large {
  min-height: 46px;
  margin: 8px 0 0;
  padding-inline: 28px;
}

.testimonial-row {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 22px;
  width: 100%;
  margin: 8px 0 34px;
}

.testimonial-video {
  width: min(42vw, 330px);
  aspect-ratio: 9 / 16;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--panel-soft);
  box-shadow: 0 24px 65px rgba(0, 0, 0, 0.42);
}

.content-box {
  position: relative;
  aspect-ratio: 16 / 5.9;
  min-height: 380px;
  padding: 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  isolation: isolate;
}

.case-study {
  margin-top: 0;
  min-height: 640px;
  aspect-ratio: auto;
  padding: 48px;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 38px;
  align-items: center;
  text-align: left;
  overflow: visible;
}

.video-examples {
  min-height: auto;
  margin-top: 32px;
  padding: 48px;
  aspect-ratio: auto;
  gap: 26px;
}

.calendly {
  min-height: 780px;
  margin-top: 32px;
  padding-top: 28px;
  justify-content: flex-start;
  gap: 12px;
  overflow: visible;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent-strong);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h2 {
  max-width: 720px;
  margin: 0 0 14px;
  font-size: clamp(2.35rem, 4.2vw, 4.2rem);
  line-height: 1.1;
  letter-spacing: 0;
  font-weight: 700;
}

p {
  max-width: 690px;
  margin: 0;
  color: var(--muted);
  font-size: 1.18rem;
  line-height: 1.58;
}

.case-copy {
  max-width: 410px;
}

.case-copy h2 {
  max-width: 410px;
  font-size: clamp(2.05rem, 3.1vw, 3.15rem);
  line-height: 1.1;
}

.case-copy p:not(.eyebrow) {
  max-width: 410px;
  font-size: clamp(1.08rem, 1.55vw, 1.38rem);
  line-height: 1.42;
}

.case-assets {
  min-width: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  align-items: stretch;
}

.case-assets img {
  width: 100%;
  height: clamp(460px, 43vw, 580px);
  display: block;
  object-fit: cover;
  object-position: top center;
  border: 1px solid rgba(216, 167, 58, 0.28);
  border-radius: 5px;
  background: #070a0d;
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.45);
}

.calendly-inline-widget {
  width: 100%;
  min-height: 690px;
  display: block;
  overflow: visible;
  border: 1px solid rgba(216, 167, 58, 0.26);
  border-radius: 6px;
  background: #f8f8f8;
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.36);
}

.fallback-booking {
  margin: 0;
  display: none;
}

.section-heading {
  max-width: 720px;
  text-align: center;
}

.example-grid {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.example-video {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  border: 1px solid rgba(216, 167, 58, 0.28);
  border-radius: 12px;
  background: var(--panel-soft);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.42);
}

@media (max-width: 520px) {
  .page-shell {
    width: min(calc(100vw - 28px), 360px);
    padding: 34px 0 48px;
  }

  h1 {
    width: 100%;
    font-size: clamp(1.05rem, 4.45vw, 1.55rem);
    line-height: 1.24;
    margin-bottom: 16px;
  }

  .video-box {
    min-height: 220px;
    aspect-ratio: 16 / 8.6;
  }

  .play-button {
    width: 58px;
    height: 58px;
    box-shadow: 0 0 0 9px rgba(216, 167, 58, 0.1), 0 14px 34px rgba(0, 0, 0, 0.4);
  }

  .play-button::after {
    margin: 18px 0 0 23px;
    border-top-width: 11px;
    border-bottom-width: 11px;
    border-left-width: 16px;
  }

  .book-button {
    min-height: 38px;
    margin: 8px 0 13px;
    padding: 0 18px;
    font-size: 0.95rem;
  }

  .testimonial-row {
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin: 10px 0 22px;
  }

  .testimonial-video {
    width: min(100%, 318px);
  }

  .content-box {
    min-height: 220px;
    aspect-ratio: auto;
    padding: 26px 18px;
  }

  .case-study {
    min-height: auto;
    padding: 24px 16px;
    grid-template-columns: 1fr;
    gap: 22px;
    text-align: center;
  }

  .case-copy,
  .case-copy h2,
  .case-copy p:not(.eyebrow) {
    max-width: 100%;
  }

  .case-copy h2 {
    font-size: 1.55rem;
  }

  .case-copy p:not(.eyebrow) {
    font-size: 0.96rem;
  }

  .case-assets {
    width: 100%;
    gap: 8px;
  }

  .case-assets img {
    height: 360px;
    border-radius: 4px;
  }

  .video-examples {
    margin-top: 20px;
    padding: 28px 16px;
    gap: 20px;
  }

  .example-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .example-video {
    width: 100%;
    justify-self: center;
  }

  .calendly {
    width: min(calc(100vw - 28px), 430px);
    min-height: 1260px;
    margin-top: 20px;
    padding: 28px 0 0;
    gap: 18px;
    justify-content: flex-start;
  }

  .calendly-inline-widget {
    display: block;
    width: 100%;
    min-height: 1180px;
    border-radius: 0 0 6px 6px;
  }

  .fallback-booking {
    display: none;
  }

  h2 {
    font-size: 1.35rem;
  }

  p {
    font-size: 0.92rem;
  }
}
