:root {
  --svb-orange: #ed680d;
  --svb-orange-2: #ee721c;
  --svb-orange-soft: #fde3d2;
  --svb-green: #60ad0e;
  --svb-green-dark: #449507;
  --svb-charcoal: #2d2d2d;
  --svb-gray: #4d4d4d;
  --svb-border: #a99589;
  --svb-white: #ffffff;
  --page-width: 1052px;
  --shadow-soft: 0 3px 7px rgba(64, 45, 35, 0.2);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #ffffff;
  color: var(--svb-gray);
  font-family: Tahoma, Geneva, Verdana, sans-serif;
  font-size: 15px;
  line-height: 1.5;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

a:focus-visible {
  outline: 3px solid #1769aa;
  outline-offset: 3px;
}

.skipLink {
  position: fixed;
  left: 12px;
  top: 10px;
  z-index: 100;
  transform: translateY(-160%);
  border-radius: 5px;
  background: var(--svb-charcoal);
  color: white;
  padding: 9px 14px;
  transition: transform 160ms ease;
}

.skipLink:focus {
  transform: translateY(0);
}

.siteShell {
  width: min(calc(100% - 16px), var(--page-width));
  margin: 8px auto 24px;
}

.legacyHeader {
  display: flex;
  min-height: 53px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 4px 5px 34px;
}

.brandLink {
  display: inline-flex;
}

.brandLogo {
  width: 283px;
  height: auto;
}

.loginButton,
.button {
  display: inline-flex;
  min-height: 39px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(45, 45, 45, 0.22);
  border-radius: 8px;
  font-weight: 700;
  line-height: 1.15;
  text-align: center;
  text-decoration: none;
}

.loginButton {
  border-color: #72a430;
  background: linear-gradient(180deg, #bdea61 0%, #75be0d 48%, #4c9905 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    0 2px 5px rgba(45, 74, 9, 0.24);
  color: white;
  font-size: 12px;
  padding: 0 16px;
  text-shadow: 0 1px 1px rgba(33, 69, 0, 0.9);
}

.loginButton:hover,
.button:hover {
  filter: saturate(1.06) brightness(1.02);
}

.orangeNav {
  display: grid;
  grid-template-columns: repeat(4, auto);
  justify-content: start;
  min-height: 28px;
  overflow: hidden;
  border: 1px solid #df7a28;
  border-radius: 6px;
  background: linear-gradient(180deg, #ffc682 0%, #f49b43 44%, #ed680d 100%);
  box-shadow: var(--shadow-soft);
}

.orangeNav a {
  position: relative;
  display: flex;
  min-height: 28px;
  align-items: center;
  color: white;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 4px 22px;
  text-decoration: none;
  text-shadow: 0 1px 1px rgba(114, 51, 2, 0.7);
  white-space: nowrap;
}

.orangeNav a + a::before {
  position: absolute;
  left: 0;
  top: 7px;
  bottom: 7px;
  width: 1px;
  background: rgba(255, 255, 255, 0.58);
  content: "";
}

.migrationPanel {
  margin-top: 14px;
  overflow: hidden;
  border: 1px solid #927a70;
  border-radius: 12px;
  background: white;
  box-shadow: 0 2px 5px rgba(55, 42, 35, 0.28);
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: 285px;
  overflow: hidden;
  background: #fff9f5;
}

.hero::before {
  position: absolute;
  z-index: -2;
  inset: 0 0 auto;
  height: 185px;
  background-image: var(--legacy-hero-image);
  background-position: center top;
  background-repeat: no-repeat;
  background-size: var(--page-width) auto;
  content: "";
}

.hero::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.18) 0%,
    rgba(255, 255, 255, 0.83) 40%,
    rgba(255, 255, 255, 0.97) 100%
  );
  content: "";
}

.heroContent {
  width: 67%;
  margin-left: auto;
  padding: 31px 42px 28px;
}

.statusLabel,
.sectionEyebrow,
.cardKicker,
.plansHeading > p {
  color: var(--svb-orange);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.statusLabel {
  margin: 0 0 5px;
}

.hero h1 {
  max-width: 650px;
  margin: 0;
  color: var(--svb-charcoal);
  font-size: clamp(2.15rem, 4.7vw, 3rem);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.heroIntro {
  max-width: 650px;
  margin: 13px 0 0;
  font-size: 16px;
  line-height: 1.5;
}

.heroActions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px 11px;
  margin-top: 20px;
}

.button {
  min-height: 41px;
  padding: 10px 18px;
}

.buttonPrimary {
  border-color: #66a40d;
  background: linear-gradient(180deg, #a9e63d 0%, #73c10a 52%, #4f9e05 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    0 3px 6px rgba(69, 124, 6, 0.22);
  color: white;
  text-shadow: 0 1px 1px rgba(36, 83, 0, 0.78);
}

.buttonSecondary {
  border-color: #bd8a66;
  background: linear-gradient(180deg, #ffffff 0%, #fff5ec 100%);
  box-shadow: 0 2px 4px rgba(94, 66, 48, 0.1);
  color: #813805;
}

.legacySignupLink,
.textLink,
.cardLink {
  color: #773508;
  font-weight: 700;
  text-underline-offset: 3px;
}

.legacySignupLink,
.textLink {
  font-size: 12px;
}

.rolloutNotice {
  margin: 0;
  border-top: 1px solid #eea46e;
  border-bottom: 1px solid #e2a171;
  background: linear-gradient(180deg, #fff0e4, #fde0ca);
  color: #653818;
  font-size: 12px;
  padding: 8px 18px;
  text-align: center;
}

.videoPanel {
  padding: 26px 28px 28px;
}

.sectionHeading {
  max-width: 720px;
}

.sectionEyebrow {
  margin: 0 0 4px;
}

.sectionHeading h2,
.plansHeading h2,
.quickActions h2 {
  margin: 0;
  color: var(--svb-charcoal);
  line-height: 1.18;
}

.sectionHeading h2 {
  font-size: clamp(1.65rem, 3.2vw, 2.15rem);
}

.sectionHeading > p:last-child {
  margin: 7px 0 0;
}

.videoGrid {
  display: grid;
  grid-template-columns: minmax(0, 1.58fr) minmax(235px, 0.72fr);
  gap: 20px;
  align-items: start;
  margin-top: 18px;
}

.videoFrame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border: 4px solid white;
  border-radius: 7px;
  background: var(--svb-charcoal);
  box-shadow:
    0 0 0 1px #b38261,
    0 5px 14px rgba(56, 37, 26, 0.18);
}

.videoFrame iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
  border: 0;
}

.stepsCard {
  border-left: 1px solid #dec7b7;
  padding: 4px 0 4px 20px;
}

.stepsCard h3 {
  margin: 0;
  color: var(--svb-charcoal);
  font-size: 17px;
}

.stepsCard ol {
  display: grid;
  gap: 9px;
  margin: 13px 0 16px;
  padding: 0;
  counter-reset: migration-step;
  list-style: none;
}

.stepsCard li {
  position: relative;
  min-height: 25px;
  padding-left: 32px;
  font-size: 12px;
  line-height: 1.4;
}

.stepsCard li::before {
  position: absolute;
  left: 0;
  top: -2px;
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border: 1px solid #dfa474;
  border-radius: 50%;
  background: var(--svb-orange-soft);
  color: #873703;
  content: counter(migration-step);
  counter-increment: migration-step;
  font-size: 11px;
  font-weight: 700;
}

.pathsSection {
  border-top: 1px solid #df8e51;
  border-bottom: 1px solid #d99b6f;
  background: linear-gradient(180deg, #ffd0a9 0%, #ffe2cb 100%);
  padding: 19px 16px 17px;
}

.plansHeading {
  margin: 0 0 13px 5px;
}

.plansHeading > p {
  margin: 0 0 1px;
  color: #944007;
}

.plansHeading h2 {
  font-size: 22px;
  font-weight: 400;
}

.pathGrid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.pathCard {
  position: relative;
  display: flex;
  min-height: 205px;
  flex-direction: column;
  border: 1px solid #d1c5bd;
  border-radius: 7px;
  background: white;
  box-shadow: 0 3px 6px rgba(70, 49, 35, 0.2);
  padding: 17px 18px 16px;
}

.pathCardFeatured {
  border-color: var(--svb-orange);
}

.recommendedFlag {
  position: absolute;
  right: 11px;
  top: -10px;
  border: 1px solid #5a9908;
  border-radius: 999px;
  background: linear-gradient(180deg, #98dd2f, #58a405);
  color: white;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 4px 8px;
  text-transform: uppercase;
}

.cardKicker {
  margin: 0 0 5px;
  color: #816b5f;
  font-size: 9px;
}

.pathCard h3 {
  margin: 0;
  color: var(--svb-charcoal);
  font-size: 20px;
  line-height: 1.15;
}

.pathCard > p:not(.cardKicker) {
  margin: 10px 0 13px;
  font-size: 12px;
}

.cardLink {
  margin-top: auto;
  font-size: 12px;
}

.supportNote {
  margin: 14px 0 0;
  color: #654b3c;
  font-size: 11px;
  text-align: center;
}

.supportNote a {
  color: #773508;
  font-weight: 700;
}

.quickActions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  background: #ffffff;
}

.quickActions article {
  display: flex;
  min-height: 165px;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 20px 24px 22px;
  text-align: center;
}

.quickActions article + article {
  border-left: 1px solid #d8c7bb;
}

.quickActions h2 {
  font-size: 21px;
}

.quickActions p {
  margin: 7px 0 15px;
  font-size: 12px;
}

.quickActions .button,
.quickActions .textLink {
  margin-top: auto;
}

.siteFooter {
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 20px;
  border: 1px solid #d5d5d3;
  border-radius: 6px;
  background: linear-gradient(180deg, #fafafa 0%, #e7e7e7 50%, #f9f9f9 100%);
  color: #4b4b4b;
  font-size: 10px;
  padding: 10px 14px;
}

.siteFooter nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 5px 13px;
}

.siteFooter a {
  text-underline-offset: 2px;
}

.isHidden,
[hidden] {
  display: none !important;
}

@media (max-width: 820px) {
  .heroContent {
    width: 75%;
    padding-right: 28px;
  }

  .videoGrid {
    grid-template-columns: 1fr;
  }

  .stepsCard {
    border-top: 1px solid #dec7b7;
    border-left: 0;
    padding: 17px 0 0;
  }
}

@media (max-width: 700px) {
  body {
    font-size: 14px;
  }

  .siteShell {
    width: calc(100% - 12px);
    margin-top: 5px;
  }

  .legacyHeader {
    min-height: 53px;
    gap: 10px;
    padding: 3px 2px 6px 8px;
  }

  .brandLogo {
    width: min(220px, 63vw);
  }

  .loginButton {
    min-height: 38px;
    font-size: 11px;
    padding: 0 14px;
  }

  .orangeNav {
    width: 100%;
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .orangeNav a {
    min-width: 0;
    justify-content: center;
    font-size: 10px;
    letter-spacing: 0;
    padding: 7px 3px;
    text-align: center;
    white-space: normal;
  }

  .migrationPanel {
    margin-top: 10px;
    border-radius: 9px;
  }

  .hero {
    min-height: 0;
  }

  .hero::before {
    opacity: 0.4;
  }

  .hero::after {
    background: rgba(255, 255, 255, 0.9);
  }

  .heroContent {
    width: 100%;
    padding: 25px 20px 24px;
    text-align: center;
  }

  .statusLabel {
    margin-bottom: 4px;
    font-size: 10px;
  }

  .hero h1 {
    font-size: clamp(2rem, 9vw, 2.55rem);
    line-height: 1.07;
  }

  .heroIntro {
    margin-top: 11px;
    font-size: 14px;
  }

  .heroActions {
    align-items: stretch;
    flex-direction: column;
    gap: 8px;
    margin-top: 17px;
  }

  .heroActions .button,
  .heroActions .legacySignupLink {
    width: 100%;
  }

  .button {
    min-height: 44px;
  }

  .rolloutNotice {
    font-size: 11px;
    padding: 7px 12px;
  }

  .videoPanel {
    padding: 19px 12px 20px;
  }

  .sectionHeading {
    text-align: center;
  }

  .sectionHeading h2 {
    font-size: 23px;
  }

  .sectionHeading > p:last-child {
    font-size: 13px;
  }

  .videoGrid {
    gap: 17px;
    margin-top: 15px;
  }

  .stepsCard {
    padding: 15px 5px 0;
  }

  .stepsCard ol {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pathsSection {
    padding: 18px 9px 15px;
  }

  .plansHeading {
    margin: 0 0 13px;
    text-align: center;
  }

  .plansHeading h2 {
    font-size: 22px;
  }

  .pathGrid {
    grid-template-columns: 1fr;
    gap: 11px;
  }

  .pathCard {
    min-height: 0;
    padding: 15px 16px 14px;
  }

  .pathCard h3 {
    font-size: 19px;
  }

  .pathCard > p:not(.cardKicker) {
    margin: 7px 0 10px;
  }

  .quickActions {
    grid-template-columns: 1fr;
  }

  .quickActions article {
    min-height: 0;
    padding: 17px 20px 18px;
  }

  .quickActions article + article {
    border-top: 1px solid #d8c7bb;
    border-left: 0;
  }

  .quickActions p {
    margin-bottom: 11px;
  }

  .quickActions .button,
  .quickActions .textLink {
    margin-top: 0;
  }

  .siteFooter {
    flex-direction: column;
    gap: 7px;
    padding: 10px;
    text-align: center;
  }

  .siteFooter nav {
    justify-content: center;
  }
}

@media (max-width: 380px) {
  .brandLogo {
    width: 198px;
  }

  .loginButton {
    padding-inline: 11px;
  }

  .stepsCard ol {
    grid-template-columns: 1fr;
  }
}

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

@media print {
  .orangeNav {
    display: none;
  }

  .siteShell {
    width: 100%;
  }
}
