* { box-sizing: border-box; }

body.start-video-body {
  min-height: 100vh;
  margin: 0;
  background: #ffffff;
}

.start-video-shell {
  min-height: 100vh;
  background: #ffffff;
}

/* Minimal conversion-focused header */
.start-video-shell .start-logo-header {
  width: 100%;
  background: #06152f;
  border: 0;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.16);
}

.start-logo-only {
  width: min(100% - 32px, 1240px);
  min-height: 86px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.start-logo-only a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.start-logo-only img {
  display: block;
  width: min(300px, 68vw);
  height: auto;
  filter: drop-shadow(0 3px 8px rgba(0,0,0,0.22));
}

.start-video-main {
  padding: 30px 18px 46px;
  background: #ffffff;
}

.start-video-card {
  width: min(100%, 1000px);
  margin: 0 auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: #ffffff;
  box-shadow: none;
  text-align: center;
}

.start-video-heading {
  max-width: 930px;
  margin: 0 auto 20px;
}

.start-video-card h1 {
  max-width: 920px;
  margin: 0 auto;
  color: #071f4c;
  font-size: clamp(34px, 4.45vw, 56px);
  line-height: 1.04;
  letter-spacing: -0.042em;
}

.start-video-hook {
  max-width: 850px;
  margin: 13px auto 0;
  color: #173b70;
  font-size: clamp(20px, 2.15vw, 28px);
  font-weight: 800;
  line-height: 1.25;
}

.start-video-hook strong {
  color: #c88b00;
  font-weight: 950;
}

.start-video-prompt {
  margin: 9px 0 0;
  color: #5a6577;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
}

.start-video-frame-wrap {
  max-width: 860px;
  margin: 0 auto;
  padding: 6px;
  border-radius: 15px;
  background: linear-gradient(135deg, #071f4c 0%, #123f82 100%);
  box-shadow: 0 15px 34px rgba(7, 31, 76, 0.22);
}

.start-video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 10px;
  background: #000;
}

.start-video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Compact timer directly beneath video */
.start-unlock-card {
  position: relative;
  max-width: 860px;
  margin: 14px auto 0;
  padding: 14px 18px 18px;
  border: 1px solid #ead8a8;
  border-radius: 12px;
  background: #fffaf0;
  display: grid;
  grid-template-columns: minmax(0,1fr) auto;
  align-items: center;
  gap: 8px 18px;
  text-align: left;
}

.start-unlock-card.is-complete {
  display: none;
}

.start-unlock-copy {
  min-width: 0;
}

.start-unlock-label {
  margin: 0;
  color: #102d62;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.35;
}

.start-unlock-note {
  margin: 3px 0 0;
  color: #69778b;
  font-size: 12px;
  line-height: 1.35;
}

.start-countdown-wrap {
  min-width: 112px;
  text-align: center;
}

.start-countdown-caption {
  display: block;
  margin-bottom: 2px;
  color: #8a1a1a;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .11em;
}

.start-countdown {
  margin: 0;
  color: #d51920;
  font-size: clamp(34px, 4vw, 48px);
  font-weight: 950;
  line-height: .95;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.045em;
}

.start-progress {
  grid-column: 1 / -1;
  height: 7px;
  overflow: hidden;
  border-radius: 999px;
  background: #e3e6eb;
  box-shadow: inset 0 1px 2px rgba(10, 43, 100, 0.10);
}

.start-progress span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #d51920 0%, #f04444 100%);
  transition: width .2s linear;
}

/* The form replaces the timer rather than pushing it farther down */
.start-email-reveal {
  max-width: 860px;
  margin: 14px auto 0;
  padding: 24px 26px 20px;
  border: 2px solid #173f8f;
  border-top: 6px solid #d8a20a;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 16px 36px rgba(7, 31, 76, 0.14);
  animation: revealForm .38s ease both;
}

@keyframes revealForm {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.start-email-badge {
  display: inline-block;
  margin: 0 0 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: #fff3c8;
  color: #7a5700;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
}

.start-email-reveal h2 {
  max-width: 720px;
  margin: 0 auto;
  color: #071f4c;
  font-size: clamp(27px, 3.5vw, 40px);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.start-email-copy {
  margin: 9px auto 16px;
  color: #50647f;
  font-size: 15px;
  line-height: 1.45;
}

.start-email-form {
  max-width: 760px;
  margin: 0 auto;
  text-align: left;
}

.start-email-form label {
  display: block;
  margin: 0 0 6px;
  color: #0b2d67;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.start-email-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, auto);
  gap: 10px;
}

.start-email-row input {
  min-width: 0;
  min-height: 58px;
  border: 2px solid #aebfd7;
  border-radius: 9px;
  padding: 0 17px;
  color: #173b70;
  background: #fff;
  font: 700 16px/1 Arial, Helvetica, sans-serif;
  outline: 0;
}

.start-email-row input::placeholder {
  color: #77859a;
}

.start-email-row input:focus {
  border-color: #1a6bd2;
  box-shadow: 0 0 0 4px rgba(26, 107, 210, .14);
}

.start-email-row button {
  min-height: 58px;
  border: 0;
  border-radius: 9px;
  padding: 0 24px;
  background: linear-gradient(180deg, #ffe13a 0%, #ffc000 64%, #e99d00 100%);
  color: #082659;
  box-shadow: 0 4px 0 #b87800, 0 8px 16px rgba(102, 65, 0, .16);
  font: 950 15px/1.1 Arial, Helvetica, sans-serif;
  white-space: nowrap;
  cursor: pointer;
}

.start-email-row button:hover {
  filter: brightness(1.03);
}

.start-email-row button:active {
  transform: translateY(3px);
  box-shadow: 0 1px 0 #b87800;
}

.start-email-row button:disabled {
  opacity: .7;
  cursor: wait;
}

.start-form-benefits {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 20px;
  margin: 14px 0 0;
  color: #345372;
  font-size: 12px;
  font-weight: 800;
}

.start-form-benefits span {
  white-space: nowrap;
}

.start-privacy {
  margin: 9px 0 0;
  color: #53677f;
  font-size: 11px;
  font-weight: 700;
}

.start-form-message {
  min-height: 0;
  margin-top: 8px;
  color: #173b70;
  font-size: 13px;
  font-weight: 800;
}

.start-form-message:empty { display: none; }
.start-form-message.success { color: #177038; }
.start-form-message.error { color: #b42318; }

.start-income-disclaimer {
  max-width: 760px;
  margin: 16px auto 0;
  padding-top: 14px;
  border-top: 1px solid #e0e6ee;
  color: #6a7788;
  font-size: 10.5px;
  line-height: 1.55;
  text-align: left;
}

.start-income-disclaimer a {
  color: #164f9e;
  font-weight: 800;
}

.start-video-shell .site-footer {
  margin-top: 0;
}

@media (max-width: 760px) {
  .start-logo-only {
    min-height: 72px;
  }

  .start-logo-only img {
    width: min(245px, 76vw);
  }

  .start-video-main {
    padding: 20px 10px 32px;
  }

  .start-video-heading {
    margin-bottom: 15px;
  }

  .start-video-card h1 {
    font-size: clamp(29px, 9.3vw, 42px);
    line-height: 1.03;
  }

  .start-video-hook {
    margin-top: 10px;
    font-size: 20px;
    line-height: 1.28;
  }

  .start-video-prompt {
    margin-top: 7px;
    font-size: 13px;
  }

  .start-video-frame-wrap {
    padding: 4px;
    border-radius: 10px;
  }

  .start-video-frame {
    border-radius: 7px;
  }

  .start-unlock-card {
    margin-top: 10px;
    padding: 12px 12px 15px;
    grid-template-columns: minmax(0,1fr) auto;
    gap: 7px 10px;
    border-radius: 10px;
  }

  .start-unlock-label {
    font-size: 13px;
  }

  .start-unlock-note {
    font-size: 10.5px;
  }

  .start-countdown-wrap {
    min-width: 88px;
  }

  .start-countdown {
    font-size: 34px;
  }

  .start-countdown-caption {
    font-size: 8px;
  }

  .start-email-reveal {
    margin-top: 10px;
    padding: 20px 12px 17px;
    border-radius: 12px;
  }

  .start-email-reveal h2 {
    font-size: clamp(25px, 7.8vw, 34px);
  }

  .start-email-copy {
    font-size: 14px;
  }

  .start-email-row {
    grid-template-columns: 1fr;
  }

  .start-email-row input,
  .start-email-row button {
    min-height: 58px;
  }

  .start-email-row button {
    font-size: 15px;
    white-space: normal;
  }

  .start-form-benefits {
    gap: 6px 12px;
    font-size: 11px;
  }

  .start-income-disclaimer {
    font-size: 10px;
  }
}

@media (max-width: 430px) {
  .start-video-main {
    padding-left: 8px;
    padding-right: 8px;
  }

  .start-video-card h1 {
    font-size: 30px;
  }

  .start-unlock-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .start-countdown-wrap {
    grid-row: 1;
  }

  .start-unlock-copy {
    grid-row: 2;
  }

  .start-progress {
    grid-row: 3;
  }
}

/* Final88: autoplay preview, click-to-unmute overlay, simple 20-second countdown */
.start-video-heading {
  max-width: 980px;
  margin-bottom: 18px;
}

.start-video-card h1 {
  max-width: 970px;
  font-size: clamp(32px, 4.15vw, 54px);
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.start-video-prompt {
  margin-top: 12px;
  color: #4d5d73;
  font-size: 16px;
  font-weight: 800;
}

.start-video-frame {
  isolation: isolate;
}

.start-video-play-overlay {
  position: absolute;
  inset: 0;
  z-index: 4;
  width: 100%;
  height: 100%;
  border: 0;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  background: rgba(2, 10, 26, 0.48);
  color: #ffffff;
  cursor: pointer;
  transition: opacity .22s ease, visibility .22s ease, background .22s ease;
}

.start-video-play-overlay:hover {
  background: rgba(2, 10, 26, 0.38);
}

.start-video-play-overlay.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.start-video-play-icon {
  width: 86px;
  height: 86px;
  flex: 0 0 86px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  padding-left: 7px;
  background: #d71920;
  box-shadow: 0 10px 30px rgba(0,0,0,.34), inset 0 0 0 5px rgba(255,255,255,.18);
  font-size: 38px;
  line-height: 1;
}

.start-video-play-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  text-shadow: 0 2px 8px rgba(0,0,0,.7);
}

.start-video-play-copy strong {
  font-size: clamp(22px, 3vw, 38px);
  line-height: 1;
  letter-spacing: .01em;
}

.start-video-play-copy small {
  margin-top: 8px;
  font-size: clamp(15px, 1.6vw, 20px);
  font-weight: 800;
}

.start-unlock-card {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 860px;
  margin-top: 12px;
  padding: 4px 0 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  text-align: center;
}

.start-countdown {
  color: #d71920;
  font-size: clamp(38px, 5vw, 58px);
  font-weight: 950;
  line-height: 1;
  letter-spacing: -0.04em;
  text-shadow: none;
}

@media (max-width: 640px) {
  .start-video-card h1 {
    font-size: clamp(29px, 9vw, 42px);
  }

  .start-video-prompt {
    font-size: 14px;
  }

  .start-video-play-overlay {
    flex-direction: column;
    gap: 12px;
    padding: 14px;
  }

  .start-video-play-icon {
    width: 66px;
    height: 66px;
    flex-basis: 66px;
    font-size: 29px;
  }

  .start-video-play-copy {
    align-items: center;
    text-align: center;
  }

  .start-video-play-copy strong {
    font-size: 22px;
  }

  .start-video-play-copy small {
    margin-top: 5px;
    font-size: 14px;
  }
}


/* Final89: keep header in normal flow and prevent headline clipping */
.start-video-shell .start-logo-header {
  position: relative !important;
  inset: auto !important;
  z-index: 20;
}

.start-video-main {
  padding-top: 24px;
}

.start-video-heading {
  max-width: 1040px;
  margin: 0 auto 16px;
  padding: 0 12px;
}

.start-video-card h1 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  max-width: 1040px;
  margin: 0 auto;
  font-size: clamp(30px, 3.35vw, 48px);
  line-height: 1.04;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.start-video-title-label {
  display: block;
  margin-bottom: 3px;
  color: #c89108;
  font-size: .54em;
  line-height: 1.1;
  font-weight: 950;
  letter-spacing: .08em;
}

.start-video-title-main,
.start-video-title-finish {
  display: block;
}

.start-video-title-finish {
  font-size: .88em;
}

.start-video-prompt {
  max-width: 820px;
  margin: 10px auto 0;
  font-size: clamp(14px, 1.35vw, 17px);
  line-height: 1.35;
}

@media (max-width: 640px) {
  .start-logo-only {
    min-height: 72px;
  }

  .start-video-main {
    padding-top: 20px;
  }

  .start-video-heading {
    padding: 0 2px;
    margin-bottom: 14px;
  }

  .start-video-card h1 {
    font-size: clamp(27px, 8.4vw, 38px);
    line-height: 1.06;
    letter-spacing: -0.03em;
  }

  .start-video-title-label {
    font-size: .52em;
  }

  .start-video-title-finish {
    font-size: .86em;
  }
}


/* Final90: cleaner sound prompt and improved viewing */
.start-video-main {
  padding-top: 22px;
  padding-bottom: 40px;
}

.start-video-card {
  width: min(100%, 960px);
}

.start-video-heading {
  max-width: 980px;
  margin: 0 auto 14px;
}

.start-video-card h1 {
  max-width: 980px;
  gap: 4px;
  font-size: clamp(29px, 3.2vw, 46px);
  line-height: 1.03;
}

.start-video-title-label {
  margin-bottom: 4px;
  font-size: .52em;
}

.start-video-title-main {
  max-width: 16ch;
}

.start-video-title-finish {
  max-width: 18ch;
  font-size: .84em;
}

.start-video-prompt {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 12px auto 0;
  padding: 10px 18px;
  border-radius: 999px;
  background: #f3f6fb;
  border: 1px solid rgba(7, 31, 76, 0.09);
  color: #183764;
  font-size: clamp(14px, 1.3vw, 17px);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: .01em;
  box-shadow: 0 3px 10px rgba(7, 31, 76, 0.05);
}

.start-sound-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  line-height: 1;
  filter: saturate(1.1);
}

.start-video-frame-wrap {
  max-width: 840px;
  margin-top: 4px;
}

.start-unlock-card {
  margin-top: 10px;
}

.start-countdown {
  font-size: clamp(40px, 4.9vw, 56px);
}

@media (max-width: 640px) {
  .start-video-main {
    padding-top: 18px;
    padding-bottom: 30px;
  }

  .start-video-heading {
    margin-bottom: 12px;
  }

  .start-video-card h1 {
    font-size: clamp(26px, 8vw, 36px);
    gap: 3px;
  }

  .start-video-prompt {
    gap: 8px;
    margin-top: 10px;
    padding: 8px 12px;
    font-size: 14px;
  }

  .start-sound-icon {
    font-size: 16px;
  }

  .start-video-frame-wrap {
    max-width: 100%;
  }

  .start-countdown {
    font-size: clamp(36px, 10vw, 48px);
  }
}


/* Final91: stronger headline, no sound prompt */
.start-video-heading {
  margin-bottom: 18px;
}

.start-video-card h1 {
  max-width: 1040px;
  font-size: clamp(32px, 3.65vw, 52px);
  line-height: 1.02;
  gap: 5px;
}

.start-video-title-label {
  font-size: .54em;
}

.start-video-title-main {
  max-width: 17ch;
}

.start-video-title-finish {
  max-width: 19ch;
  font-size: .88em;
}

.start-video-frame-wrap {
  margin-top: 0;
}

@media (max-width: 640px) {
  .start-video-heading {
    margin-bottom: 14px;
  }

  .start-video-card h1 {
    font-size: clamp(28px, 8.6vw, 39px);
    line-height: 1.04;
  }

  .start-video-title-main {
    max-width: 18ch;
  }

  .start-video-title-finish {
    max-width: 20ch;
  }
}


/* Final92: bold two-line headline and clearer play action */
.start-video-heading {
  max-width: 1080px;
  margin: 0 auto 18px;
  padding: 0 10px;
}

.start-video-card h1 {
  max-width: 1080px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin: 0 auto;
  font-size: clamp(34px, 3.75vw, 56px);
  line-height: 1.02;
  font-weight: 950;
  letter-spacing: -0.045em;
  text-align: center;
  text-wrap: balance;
}

.start-video-title-label {
  display: none;
}

.start-video-title-main,
.start-video-title-finish {
  display: block;
  max-width: none;
  font-size: 1em;
  font-weight: 950;
}

.start-video-title-main {
  color: #071f4c;
}

.start-video-title-finish {
  color: #c89108;
  font-size: .88em;
  letter-spacing: -0.035em;
}

.start-video-frame-wrap {
  max-width: 860px;
}

.start-video-play-overlay {
  flex-direction: column;
  gap: 14px;
  background: rgba(1, 9, 24, 0.56);
}

.start-video-play-overlay:hover {
  background: rgba(1, 9, 24, 0.46);
}

.start-video-play-icon {
  width: 94px;
  height: 94px;
  flex: 0 0 94px;
  padding-left: 8px;
  border: 4px solid rgba(255,255,255,.82);
  box-shadow: 0 12px 32px rgba(0,0,0,.38);
  font-size: 42px;
}

.start-video-play-copy {
  align-items: center;
  text-align: center;
}

.start-video-play-copy strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 230px;
  padding: 13px 22px;
  border-radius: 999px;
  background: rgba(255,255,255,.96);
  color: #071f4c;
  box-shadow: 0 8px 22px rgba(0,0,0,.24);
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 950;
  line-height: 1;
  letter-spacing: .02em;
  text-shadow: none;
}

.start-video-play-copy small {
  display: none;
}

@media (max-width: 640px) {
  .start-video-heading {
    margin-bottom: 14px;
    padding: 0 2px;
  }

  .start-video-card h1 {
    gap: 5px;
    font-size: clamp(29px, 8.8vw, 41px);
    line-height: 1.04;
    letter-spacing: -0.035em;
  }

  .start-video-title-finish {
    font-size: .86em;
  }

  .start-video-play-icon {
    width: 72px;
    height: 72px;
    flex-basis: 72px;
    font-size: 31px;
  }

  .start-video-play-copy strong {
    min-width: 190px;
    padding: 11px 18px;
    font-size: 18px;
  }
}


/* Final93: larger, lighter headline for easier reading */
.start-video-heading {
  max-width: 1120px;
  margin-bottom: 16px;
}

.start-video-card h1 {
  max-width: 1120px;
  gap: 7px;
  font-size: clamp(37px, 4vw, 60px);
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: -0.025em;
}

.start-video-title-main,
.start-video-title-finish {
  font-weight: 700;
}

.start-video-title-main {
  max-width: 19ch;
}

.start-video-title-finish {
  max-width: 20ch;
  font-size: .9em;
  letter-spacing: -0.02em;
}

@media (max-width: 760px) {
  .start-video-card h1 {
    font-size: clamp(31px, 9vw, 44px);
    line-height: 1.06;
    letter-spacing: -0.02em;
  }

  .start-video-title-main {
    max-width: 18ch;
  }

  .start-video-title-finish {
    max-width: 20ch;
    font-size: .88em;
  }
}


/* Final94: wider high-impact headline for cold traffic */
.start-video-card {
  width: min(100%, 1220px);
}

.start-video-heading {
  width: min(100%, 1220px);
  max-width: 1220px;
  margin: 0 auto 18px;
  padding: 0 12px;
}

.start-video-card h1 {
  width: 100%;
  max-width: 1220px;
  gap: 8px;
  font-size: clamp(42px, 4.55vw, 68px);
  line-height: .98;
  font-weight: 800;
  letter-spacing: -0.032em;
  text-align: center;
}

.start-video-title-main,
.start-video-title-finish {
  width: 100%;
  max-width: none;
  font-weight: 800;
  white-space: nowrap;
}

.start-video-title-main {
  color: #071f4c;
}

.start-video-title-finish {
  color: #c89108;
  font-size: .88em;
  letter-spacing: -0.025em;
}

.start-video-frame-wrap {
  max-width: 900px;
}

@media (max-width: 1080px) {
  .start-video-card h1 {
    font-size: clamp(38px, 5.2vw, 56px);
  }

  .start-video-title-main,
  .start-video-title-finish {
    white-space: normal;
    text-wrap: balance;
  }
}

@media (max-width: 760px) {
  .start-video-heading {
    margin-bottom: 14px;
    padding: 0 2px;
  }

  .start-video-card h1 {
    gap: 6px;
    font-size: clamp(32px, 9.4vw, 47px);
    line-height: 1.01;
    letter-spacing: -0.025em;
  }

  .start-video-title-main {
    max-width: 17ch;
  }

  .start-video-title-finish {
    max-width: 19ch;
    font-size: .9em;
  }
}

@media (max-width: 430px) {
  .start-video-card h1 {
    font-size: clamp(30px, 9.8vw, 40px);
  }
}


/* Final95: centered regular-weight headline */
.start-video-heading {
  width: min(100%, 1240px);
  max-width: 1240px;
  margin: 0 auto 18px;
  padding: 0 16px;
  text-align: center;
}

.start-video-card h1 {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #071f4c;
  font-size: clamp(44px, 4.7vw, 70px);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.025em;
  text-align: center;
}

.start-video-title-main,
.start-video-title-finish {
  display: block;
  width: 100%;
  max-width: none;
  margin: 0 auto;
  font-weight: 400;
  text-align: center;
  white-space: normal;
  text-wrap: balance;
}

.start-video-title-main {
  color: #071f4c;
}

.start-video-title-finish {
  color: #c89108;
  font-size: .9em;
  letter-spacing: -0.02em;
}

@media (max-width: 760px) {
  .start-video-heading {
    margin-bottom: 14px;
    padding: 0 4px;
  }

  .start-video-card h1 {
    gap: 7px;
    font-size: clamp(32px, 9vw, 46px);
    line-height: 1.04;
    letter-spacing: -0.018em;
  }

  .start-video-title-finish {
    font-size: .9em;
  }
}


/* Final96: final readability treatment for cold traffic */
.start-video-heading {
  width: min(100%, 1120px);
  max-width: 1120px;
  margin: 0 auto 18px;
  padding: 0 18px;
  text-align: center;
}

.start-video-card h1 {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  font-size: clamp(43px, 4.45vw, 64px);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.025em;
  text-align: center;
  text-wrap: balance;
}

.start-video-title-main,
.start-video-title-finish {
  display: block;
  width: 100%;
  margin: 0 auto;
  font-weight: 500;
  text-align: center;
  white-space: normal;
  text-wrap: balance;
}

.start-video-title-main {
  max-width: 23ch;
  color: #071f4c;
}

.start-video-title-finish {
  max-width: 18ch;
  color: #c89108;
  font-size: .88em;
  letter-spacing: -0.018em;
}

.start-video-frame-wrap {
  margin-top: 2px;
}

@media (max-width: 760px) {
  .start-video-heading {
    margin-bottom: 14px;
    padding: 0 6px;
  }

  .start-video-card h1 {
    gap: 5px;
    font-size: clamp(31px, 8.8vw, 44px);
    line-height: 1.08;
    letter-spacing: -0.018em;
  }

  .start-video-title-main {
    max-width: 18ch;
  }

  .start-video-title-finish {
    max-width: 16ch;
    font-size: .9em;
  }
}


/* Final100: keep second headline line on one row on desktop */
.start-video-title-finish {
  max-width: none;
  width: auto;
  white-space: nowrap;
  text-wrap: nowrap;
  font-size: 0.78em;
  line-height: 1.02;
}

@media (max-width: 760px) {
  .start-video-title-finish {
    width: 100%;
    max-width: 16ch;
    white-space: normal;
    text-wrap: balance;
    font-size: 0.9em;
  }
}


/* Final102: upgraded video cover copy and gold play icon */
.start-video-play-overlay {
  gap: 16px;
  background: rgba(2, 10, 26, 0.52);
}

.start-video-play-overlay:hover {
  background: rgba(2, 10, 26, 0.42);
}

.start-video-play-icon {
  background: linear-gradient(180deg, #f4c53a 0%, #e3a90a 100%);
  color: #082659;
  box-shadow: 0 10px 30px rgba(0,0,0,.34), inset 0 0 0 4px rgba(255,255,255,.2);
}

.start-video-play-copy {
  align-items: center;
  text-align: center;
}

.start-video-play-copy strong {
  font-size: clamp(23px, 3.1vw, 40px);
  letter-spacing: .015em;
}

.start-video-play-copy small {
  margin-top: 10px;
  display: block;
  color: #ffffff;
  font-size: clamp(15px, 1.45vw, 20px);
  font-weight: 800;
  letter-spacing: .01em;
}

@media (max-width: 640px) {
  .start-video-play-overlay {
    gap: 10px;
  }
  .start-video-play-copy strong {
    font-size: 20px;
  }
  .start-video-play-copy small {
    font-size: 13px;
    margin-top: 6px;
  }
}


/* Final105: speaker icons on both sides of sound prompt */
.start-video-play-copy small {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.start-sound-inline {
  font-size: 1.05em;
  line-height: 1;
}

@media (max-width: 640px) {
  .start-video-play-copy small {
    gap: 8px;
  }
}


/* Final106: fixed gold speaker icons */
.start-sound-inline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.15em;
  height: 1.15em;
  line-height: 1;
}

.start-sound-icon-svg {
  width: 100%;
  height: 100%;
  display: block;
  fill: #f4c53a;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.35));
}
