:root {
  --orange: #ff9902;
  --orange-dark: #e68500;
  --header-orange: #f6b26b;
  --dark: #111111;
  --body-text: #4b4b4b;
  --page-background: #ffffff;
  --soft-background: #f7f7f7;
  --border: #e8e8e8;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--page-background);
  color: var(--dark);
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 80px;
  background: var(--header-orange);
}

.header-logo-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-decoration: none;
}

.header-logo {
  display: block;
  width: auto;
  height: 60px;
  max-width: 80vw;
}

.page-shell {
  min-height: calc(100vh - 260px);
}

.hero-section {
  padding: 42px 20px 40px;
  background:
    radial-gradient(
      circle at top right,
      rgba(255, 153, 2, 0.09),
      transparent 34%
    ),
    var(--page-background);
}

.content-container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
}

.hero-copy {
  max-width: 940px;
  margin: 0 auto 38px;
  text-align: center;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--orange);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 2px;
}

h1 {
  margin: 0;
  font-size: clamp(38px, 5.5vw, 64px);
  line-height: 1.05;
  letter-spacing: -3px;
}

.video-section {
  text-align: center;
}

.step-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 88px;
  margin: 0 0 10px;
  padding: 7px 15px;
  border-radius: 999px;
  background: rgba(255, 153, 2, 0.12);
  color: var(--orange-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.5px;
}

h2 {
  margin: 0;
  font-size: clamp(25px, 3.5vw, 36px);
  line-height: 1.2;
  letter-spacing: -1.3px;
}

.video-container {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 22px auto 0;
  overflow: hidden;
  border: 7px solid var(--white);
  border-radius: 16px;
  background: #171717;
  box-shadow: var(--shadow);
  aspect-ratio: 16 / 9;
}

.video-container iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-loading,
.video-error {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 30px;
  color: var(--white);
  font-size: 17px;
  text-align: center;
}

.video-error {
  flex-direction: column;
  gap: 10px;
}

.video-error strong {
  font-size: 22px;
}

.cta-section {
  max-width: 1080px;
  margin: 40px auto 0;
  padding: 26px 30px 32px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: var(--soft-background);
  text-align: center;
}

.cta-section h2 {
  margin-bottom: 22px;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 215px;
  min-height: 58px;
  padding: 16px 30px;
  border-radius: 10px;
  background: var(--orange);
  color: var(--white);
  font-size: 17px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(255, 153, 2, 0.28);
  transition:
    transform 160ms ease,
    background 160ms ease,
    box-shadow 160ms ease;
}

.cta-button:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(255, 153, 2, 0.34);
}

.site-footer {
  padding: 30px 20px;
  background: var(--dark);
  color: rgba(255, 255, 255, 0.72);
  text-align: center;
}

.footer-container {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
}

.site-footer a {
  color: var(--white);
  text-decoration: none;
}

.site-footer a:hover {
  text-decoration: underline;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 14px 0;
  font-size: 14px;
}

.site-footer p {
  margin: 0;
  font-size: 13px;
}

@media (max-width: 700px) {
  .site-header {
    height: 65px;
  }

  .header-logo {
    height: 45px;
  }

  .hero-section {
    padding: 32px 16px 34px;
  }

  .hero-copy {
    margin-bottom: 30px;
  }

  .eyebrow {
    margin-bottom: 9px;
    font-size: 11px;
    letter-spacing: 1.5px;
  }

  h1 {
    font-size: clamp(34px, 10vw, 48px);
    letter-spacing: -2px;
  }

  h2 {
    font-size: 25px;
  }

  .video-container {
    margin-top: 18px;
    border-width: 4px;
    border-radius: 12px;
  }

  .cta-section {
    margin-top: 32px;
    padding: 25px 18px 28px;
    border-radius: 16px;
  }

  .cta-section h2 {
    margin-bottom: 20px;
  }

  .cta-button {
    width: 100%;
    max-width: 280px;
  }

  .site-footer {
    padding: 26px 16px;
  }
}
.site-header {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 80px;
  min-height: 80px;
  background-color: #f6b26b;
}

.header-logo-link {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-decoration: none;
}

.header-logo {
  display: block;
  width: auto;
  height: 60px;
  max-width: 85vw;
  object-fit: contain;
}

@media (max-width: 700px) {
  .site-header {
    height: 65px;
    min-height: 65px;
  }

  .header-logo {
    height: 45px;
  }
}