:root {
  --navy: #08294a;
  --navy-deep: #041c33;
  --navy-soft: #123b60;
  --ink: #111827;
  --muted: #5d6b7d;
  --line: #d8e1eb;
  --surface: #ffffff;
  --surface-soft: #f4f7fb;
  --cyan: #2dc7eb;
  --cyan-dark: #087da0;
  --gold: #d5a84a;
  --coral: #df5656;
  --green: #239877;
  --shadow: 0 24px 64px rgba(6, 35, 61, 0.14);
}

html {
  scroll-padding-top: 100px;
}

body {
  background-color: #0f172a;
  color: #f8fafc;
  margin: 0;
}

.premium-page {
  background: var(--surface);
  color: var(--ink);
  font-family: "Inter", ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  line-height: 1.5;
  letter-spacing: 0;
}

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

.premium-page a {
  color: inherit;
  text-decoration: none;
}

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

.premium-page button,
.premium-page input,
.premium-page select,
.premium-page textarea {
  font: inherit;
}

.premium-page button:focus-visible,
.premium-page a:focus-visible,
.premium-page summary:focus-visible,
.premium-page [tabindex]:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 14px;
  border-radius: 6px;
  background: var(--surface);
  color: var(--navy);
  font-weight: 800;
  transform: translateY(-150%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.premium-page .page-shell {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
}

body > footer .content-shell {
  width: 100%;
  max-width: 80rem;
  margin-right: auto;
  margin-left: auto;
  padding-right: 60px;
  padding-left: 60px;
}

.premium-page .page-section {
  padding: 96px 0;
}

.premium-page .button {
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease, color 160ms ease, box-shadow 160ms ease;
}

.premium-page .button:hover {
  transform: translateY(-2px);
}

.premium-page .button:active {
  transform: translateY(0);
}

.premium-page .button[aria-disabled="true"] {
  cursor: wait;
  opacity: 0.72;
  pointer-events: none;
}

.premium-page .button--primary:hover {
  background: #67daf2;
  box-shadow: 0 12px 32px rgba(45, 199, 235, 0.28);
}

.premium-page .button--primary {
  background: var(--cyan);
  color: var(--navy-deep);
}

.premium-page .button--ghost-light {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(4, 28, 51, 0.32);
  color: #fff;
}

.premium-page .button--ghost-light:hover {
  border-color: #fff;
  background: #fff;
  color: var(--navy);
}

.premium-hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  background: #0f172a;
  color: #fff;
}

.premium-hero__media {
  position: absolute;
  inset: 0;
}

.premium-hero__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.premium-hero__scrim {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
}

.premium-page .premium-hero__content {
  position: relative;
  z-index: 2;
  box-sizing: border-box;
  width: 100%;
  max-width: 80rem;
  margin-right: auto;
  margin-left: auto;
  padding: 156px 60px 72px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.85fr);
  gap: clamp(44px, 6vw, 88px);
  align-items: center;
}

.premium-hero__copy {
  min-width: 0;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--cyan-dark);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow--light {
  color: #86ddf2;
}

.premium-hero h1 {
  max-width: 780px;
  margin: 0;
  color: #fff;
  font-size: 72px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
}

.premium-hero__accent {
  background: linear-gradient(to right, #22d3ee, #60a5fa);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.premium-hero__lede {
  max-width: 512px;
  margin: 24px 0 0;
  color: #d1d5db;
  font-size: 20px;
  font-weight: 300;
  line-height: 1.4;
}

.premium-hero__actions,
.premium-cta__actions {
  margin-top: 34px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.premium-hero__actions .button {
  min-height: 50px;
  padding-right: 24px;
  padding-left: 24px;
  border-radius: 9999px;
  font-weight: 500;
}

.premium-hero__actions .button--primary {
  background: #22d3ee;
  color: #0f172a;
  box-shadow: 0 0 22px rgba(34, 211, 238, 0.22);
}

.premium-hero__actions .button--primary:hover {
  background: #67e8f9;
  color: #0f172a;
}

.premium-hero__actions .button--ghost-light {
  background: rgba(15, 23, 42, 0.65);
}

.upgrade-feedback {
  max-width: 760px;
  margin: 18px 0 0;
  padding: 12px 14px;
  border: 1px solid rgba(223, 86, 86, 0.7);
  border-radius: 6px;
  background: rgba(95, 24, 34, 0.78);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
}

.upgrade-feedback--hero {
  max-width: 620px;
}

.premium-hero-carousel {
  width: min(100%, 500px);
  min-width: 0;
  justify-self: end;
}

.premium-hero-carousel__viewport {
  width: 100%;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(4, 28, 51, 0.82);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.3);
}

.premium-hero-carousel__track {
  display: flex;
  transform: translate3d(0, 0, 0);
  transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.premium-hero-carousel__slide {
  position: relative;
  box-sizing: border-box;
  width: 100%;
  min-width: 100%;
  margin: 0;
  background: rgba(4, 28, 51, 0.96);
}

.premium-hero-carousel__image {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: contain;
}

.premium-intro {
  background: var(--surface);
}

.premium-intro__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 96px;
  align-items: end;
}

.premium-intro h2,
.section-heading h2,
.workflow h2,
.outcomes h2,
.premium-cta h2,
.premium-faq h2 {
  margin: 0;
  color: var(--navy);
  font-size: 46px;
  line-height: 1.12;
  letter-spacing: 0;
}

.premium-intro__layout > p {
  margin: 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.75;
}

.feature-showcase {
  background: var(--surface-soft);
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 48px;
  text-align: center;
}

.section-heading > p:last-child {
  max-width: 640px;
  margin: 20px auto 0;
  color: var(--muted);
  font-size: 17px;
}

.section-heading--left {
  max-width: 680px;
  margin: 0 0 50px;
  text-align: left;
}

.section-heading--left > p:last-child {
  margin-left: 0;
}

.showcase {
  border-radius: 8px;
  background: var(--navy);
  color: #fff;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.showcase__viewport {
  min-height: 606px;
}

.showcase-slide {
  min-height: 606px;
  display: grid;
  grid-template-columns: minmax(340px, 0.92fr) minmax(0, 1.08fr);
}

.showcase-slide[hidden] {
  display: none;
}

.showcase-slide__art {
  margin: 0;
  padding: 24px;
  display: grid;
  place-items: center;
  background: var(--navy-deep);
}

.showcase-slide__art img {
  width: min(100%, 558px);
  height: auto;
  aspect-ratio: 1;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.3);
}

.showcase-slide__copy {
  padding: 64px 68px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.feature-kicker {
  margin: 0 0 16px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.feature-kicker--cyan {
  color: #78dcf3;
}

.feature-kicker--gold {
  color: #f1ce7f;
}

.feature-kicker--coral {
  color: #ff9696;
}

.feature-kicker--green {
  color: #7ce0bf;
}

.showcase-slide h3 {
  margin: 0;
  max-width: 590px;
  color: #fff;
  font-size: 38px;
  line-height: 1.14;
  letter-spacing: 0;
}

.showcase-slide__copy > p:not(.feature-kicker) {
  margin: 22px 0 0;
  color: #c5d4e2;
  font-size: 17px;
  line-height: 1.7;
}

.feature-list {
  margin: 26px 0 0;
  padding: 0;
  display: grid;
  gap: 12px;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding-left: 24px;
  color: #e7f0f7;
  font-size: 15px;
}

.feature-list li::before {
  content: "";
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 9px;
  height: 9px;
  border: 2px solid var(--cyan);
  border-radius: 50%;
}

.button--showcase {
  width: fit-content;
  margin-top: 30px;
  background: var(--cyan);
  color: var(--navy-deep);
  font-weight: 500;
}

.button--showcase:hover {
  background: #67daf2;
  color: var(--navy-deep);
  box-shadow: 0 12px 32px rgba(45, 199, 235, 0.24);
}

.showcase__controls {
  min-height: 72px;
  padding: 12px 20px;
  display: grid;
  grid-template-columns: 42px 1fr 42px;
  align-items: center;
  gap: 18px;
  background: var(--navy-deep);
}

.icon-button {
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: transparent;
  color: #fff;
  cursor: pointer;
  font-size: 20px;
  transition: background-color 160ms ease, color 160ms ease, border-color 160ms ease;
}

.icon-button:hover {
  border-color: var(--cyan);
  background: var(--cyan);
  color: var(--navy-deep);
}

.showcase__dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
}

.showcase__dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #7890a4;
  cursor: pointer;
  transition: width 160ms ease, border-radius 160ms ease, background-color 160ms ease;
}

.showcase__dots button[aria-current="true"] {
  width: 30px;
  border-radius: 6px;
  background: var(--cyan);
}

.workflow {
  background: var(--navy-deep);
  color: #fff;
}

.workflow h2 {
  color: #fff;
}

.workflow .section-heading > p:last-child {
  color: #b9ccdc;
}

.workflow__steps {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  list-style: none;
}

.workflow__steps li {
  min-height: 240px;
  padding: 12px 44px 10px;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.workflow__steps li:first-child {
  padding-left: 0;
  border-left: 0;
}

.step-number {
  color: var(--cyan);
  font-size: 14px;
  font-weight: 900;
}

.workflow__steps h3 {
  margin: 52px 0 12px;
  color: #fff;
  font-size: 26px;
}

.workflow__steps p {
  margin: 0;
  color: #b9ccdc;
  line-height: 1.7;
}

.outcomes {
  background: var(--surface);
}

.outcomes > .page-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: 88px;
  align-items: start;
}

.outcomes__lead {
  position: sticky;
  top: 110px;
}

.outcomes__lead > p:last-child {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.outcomes__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.outcomes__grid article {
  min-height: 250px;
  padding: 34px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.outcomes__grid span {
  color: var(--cyan-dark);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.outcomes__grid h3 {
  margin: 42px 0 12px;
  color: var(--navy);
  font-size: 23px;
  line-height: 1.2;
}

.outcomes__grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.premium-cta {
  position: relative;
  min-height: 610px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy-deep);
  color: #fff;
}

.premium-cta__art,
.premium-cta__scrim {
  position: absolute;
  inset: 0;
}

.premium-cta__art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 34%;
}

.premium-cta__scrim {
  background: rgba(4, 28, 51, 0.9);
}

.premium-cta__content {
  position: relative;
  z-index: 2;
  padding-top: 84px;
  padding-bottom: 84px;
}

.premium-cta h2 {
  max-width: 760px;
  color: #fff;
  font-size: 52px;
}

.premium-cta__content > p:not(.eyebrow):not(.upgrade-feedback) {
  max-width: 720px;
  margin: 24px 0 0;
  color: #d7e4ef;
  font-size: 18px;
  line-height: 1.7;
}

.premium-faq {
  background: var(--surface-soft);
}

.premium-faq__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: 90px;
  align-items: start;
}

.premium-faq__items {
  border-top: 1px solid var(--line);
}

.premium-faq details {
  border-bottom: 1px solid var(--line);
}

.premium-faq summary {
  position: relative;
  padding: 24px 52px 24px 0;
  color: var(--navy);
  cursor: pointer;
  font-size: 18px;
  font-weight: 800;
  list-style: none;
}

.premium-faq summary::-webkit-details-marker {
  display: none;
}

.premium-faq summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 6px;
  width: 30px;
  height: 30px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--cyan-dark);
  transform: translateY(-50%);
}

.premium-faq details[open] summary::after {
  content: "−";
}

.premium-faq details p {
  margin: 0;
  padding: 0 52px 26px 0;
  color: var(--muted);
  line-height: 1.75;
}

@media (max-width: 1024px) {
  body > footer .content-shell {
    padding-right: 24px;
    padding-left: 24px;
  }

  .page-section {
    padding: 78px 0;
  }

  .premium-page .premium-hero__content {
    padding-right: 24px;
    padding-left: 24px;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
    gap: 40px;
  }

  .premium-hero h1 {
    font-size: 60px;
  }

  .premium-intro__layout,
  .outcomes > .page-shell,
  .premium-faq__layout {
    gap: 54px;
  }

  .premium-intro h2,
  .section-heading h2,
  .workflow h2,
  .outcomes h2,
  .premium-faq h2 {
    font-size: 40px;
  }

  .showcase__viewport,
  .showcase-slide {
    min-height: 560px;
  }

  .showcase-slide {
    grid-template-columns: minmax(300px, 0.86fr) minmax(0, 1.14fr);
  }

  .showcase-slide__copy {
    padding: 48px 42px;
  }

  .showcase-slide h3 {
    font-size: 32px;
  }

  .workflow__steps li {
    padding-right: 26px;
    padding-left: 26px;
  }
}

@media (max-width: 820px) {
  .premium-page .premium-hero__content {
    padding-top: 150px;
    padding-bottom: 64px;
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .premium-hero h1 {
    font-size: 48px;
  }

  .premium-hero__lede {
    max-width: 512px;
    font-size: 18px;
    line-height: 1.5;
  }

  .premium-hero-carousel {
    width: min(100%, 440px);
    justify-self: center;
  }

  .premium-intro__layout,
  .outcomes > .page-shell,
  .premium-faq__layout {
    grid-template-columns: 1fr;
  }

  .outcomes__lead {
    position: static;
  }

  .showcase__viewport,
  .showcase-slide {
    min-height: 0;
  }

  .showcase-slide {
    grid-template-columns: 1fr;
  }

  .showcase-slide__art {
    padding: 24px;
  }

  .showcase-slide__art img {
    width: min(100%, 520px);
  }

  .showcase-slide__copy {
    padding: 44px 36px 50px;
  }

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

  .workflow__steps li,
  .workflow__steps li:first-child {
    min-height: 0;
    padding: 28px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    border-left: 0;
  }

  .workflow__steps h3 {
    margin-top: 22px;
  }

  .premium-cta h2 {
    font-size: 44px;
  }
}

@media (max-width: 640px) {
  .premium-page .page-shell {
    width: min(100% - 32px, 1200px);
  }

  body > footer .content-shell {
    padding-right: 16px;
    padding-left: 16px;
  }

  .page-section {
    padding: 64px 0;
  }

  .premium-page .premium-hero__content {
    padding: 132px 16px 48px;
    gap: 36px;
  }

  .premium-hero h1 {
    font-size: clamp(40px, 12vw, 48px);
  }

  .premium-hero__lede {
    margin-top: 24px;
    font-size: 18px;
    line-height: 1.6;
  }

  .premium-hero__actions,
  .premium-cta__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .premium-hero__actions .button,
  .premium-cta__actions .button {
    width: 100%;
  }

  .premium-hero-carousel {
    width: min(100%, 340px);
  }

  .premium-intro h2,
  .section-heading h2,
  .workflow h2,
  .outcomes h2,
  .premium-faq h2 {
    font-size: 34px;
  }

  .premium-intro__layout {
    gap: 30px;
  }

  .premium-intro__layout > p {
    font-size: 17px;
  }

  .section-heading {
    margin-bottom: 34px;
    text-align: left;
  }

  .section-heading > p:last-child {
    margin-left: 0;
  }

  .showcase-slide__art {
    padding: 14px;
  }

  .showcase-slide__copy {
    padding: 34px 24px 40px;
  }

  .showcase-slide h3 {
    font-size: 29px;
  }

  .showcase-slide__copy > p:not(.feature-kicker) {
    font-size: 16px;
  }

  .showcase__controls {
    padding-right: 14px;
    padding-left: 14px;
  }

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

  .outcomes__grid article {
    min-height: 0;
    padding: 28px;
  }

  .outcomes__grid h3 {
    margin-top: 26px;
  }

  .premium-cta {
    min-height: 620px;
  }

  .premium-cta h2 {
    font-size: 38px;
  }

  .premium-cta__content {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .premium-faq__layout {
    gap: 34px;
  }

  .premium-faq summary {
    font-size: 16px;
  }

}

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

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