:root {
  --color-white: #ffffff;
  --color-heading: #061b31;
  --color-brand-dark: #1c1e54;
  --color-deep: #0d253d;
  --color-purple: #533afd;
  --color-purple-hover: #4434d4;
  --color-purple-soft: #d6d9fc;
  --color-ruby: #ea2261;
  --color-magenta: #f96bee;
  --color-body: #64748d;
  --color-label: #273951;
  --color-border: #e5edf5;
  --color-success: #15be53;
  --shadow-stripe: rgba(50, 50, 93, 0.25) 0 30px 45px -30px, rgba(0, 0, 0, 0.1) 0 18px 36px -18px;
  --shadow-soft: rgba(23, 23, 23, 0.08) 0 15px 35px 0;
  --font-sans: "Sohne", "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-mono: "Source Code Pro", "SFMono-Regular", Consolas, monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 72px;
}

body {
  margin: 0;
  background: var(--color-white);
  color: var(--color-heading);
  font-family: var(--font-sans);
  font-feature-settings: "ss01";
  font-weight: 300;
}

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

.hero {
  position: relative;
  display: grid;
  min-height: 620px;
  height: 88svh;
  max-height: 820px;
  overflow: hidden;
  isolation: isolate;
  background: var(--color-brand-dark);
}

.hero__backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -3;
}

.hero__scrim {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(6, 27, 49, 0.92) 0%, rgba(13, 37, 61, 0.82) 34%, rgba(28, 30, 84, 0.36) 68%, rgba(28, 30, 84, 0.28) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.42), rgba(0, 0, 0, 0.08));
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin: 0;
  padding: 14px max(20px, calc((100vw - 1120px) / 2));
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(6, 18, 35, 0.88);
  color: var(--color-white);
  backdrop-filter: blur(18px) saturate(1.08);
}

.brand,
.nav-links,
.header-cta {
  display: inline-flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-size: 16px;
  font-weight: 400;
}

.brand__mark {
  width: 28px;
  height: 28px;
  object-fit: contain;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.26));
}

.nav-links {
  gap: 26px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 400;
}

.nav-links a:hover,
.header-cta:hover {
  color: var(--color-white);
}

.header-cta {
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 4px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-weight: 400;
  backdrop-filter: blur(12px);
}

.hero__content {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  align-self: center;
  padding-bottom: 72px;
}

.eyebrow {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
}

.eyebrow--dark {
  color: var(--color-purple);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 690px;
  margin-bottom: 22px;
  color: var(--color-white);
  font-size: 56px;
  font-weight: 300;
  line-height: 1.04;
  letter-spacing: 0;
}

.hero__copy {
  max-width: 610px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 18px;
  line-height: 1.52;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero__beta-note {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 13px;
  line-height: 1.4;
}

.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 18px;
  border-radius: 4px;
  border: 1px solid transparent;
  font-family: inherit;
  font-size: 15px;
  font-weight: 400;
  line-height: 1;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

a:focus-visible {
  outline: 3px solid #29c1d5;
  outline-offset: 4px;
}

.button--primary {
  background: var(--color-purple);
  color: var(--color-white);
  box-shadow: rgba(83, 58, 253, 0.32) 0 18px 36px -18px;
}

.button--primary:hover {
  background: var(--color-purple-hover);
}

.button--secondary {
  border-color: var(--color-purple-soft);
  background: rgba(255, 255, 255, 0.92);
  color: var(--color-purple);
}

.button--secondary:hover {
  border-color: var(--color-purple);
  background: var(--color-white);
}

.button--full {
  width: 100%;
}

.button:disabled {
  cursor: not-allowed;
  opacity: 0.62;
}

.button:disabled:hover {
  transform: none;
}

.capture-window {
  position: absolute;
  right: clamp(20px, 8vw, 110px);
  bottom: clamp(38px, 8vh, 92px);
  z-index: 1;
  width: min(620px, 49vw);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.48);
  color: var(--color-white);
  box-shadow: rgba(0, 0, 0, 0.24) 0 24px 54px -28px;
  backdrop-filter: blur(22px) saturate(1.08);
}

.capture-window__controls {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
  padding: 8px 10px 0;
}

.capture-window__toolbar,
.capture-window__languages,
.capture-window__toggles,
.capture-window__buttons {
  display: flex;
  align-items: center;
}

.capture-window__toolbar {
  min-width: 0;
  gap: 7px;
  padding: 3px 7px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 7px;
  background: rgba(9, 12, 30, 0.78);
  box-shadow: rgba(0, 0, 0, 0.16) 0 10px 24px -18px;
}

.capture-window__languages,
.capture-window__toggles {
  gap: 5px;
}

.capture-window__select {
  display: inline-flex;
  min-height: 22px;
  align-items: center;
  gap: 6px;
  padding: 0 7px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.84);
  font-family: var(--font-sans);
  font-size: 9px;
  white-space: nowrap;
}

.capture-window__select span,
.capture-window__direction {
  color: #8f82ff;
}

.capture-window__direction,
.capture-window__toggles {
  font-family: var(--font-mono);
  font-size: 8px;
  font-weight: 500;
  text-transform: uppercase;
  white-space: nowrap;
}

.capture-window__divider {
  width: 1px;
  height: 16px;
  background: rgba(255, 255, 255, 0.1);
}

.capture-window__toggles {
  color: rgba(255, 255, 255, 0.72);
}

.capture-window__toggle {
  position: relative;
  width: 24px;
  height: 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.34);
}

.capture-window__toggle::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-white);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.capture-window__toggle--active {
  border-color: rgba(123, 117, 255, 0.72);
  background: #635bff;
}

.capture-window__toggle--active::after {
  transform: translateX(10px);
}

.capture-window__buttons {
  flex: 0 0 auto;
  gap: 5px;
}

.capture-window__icon {
  display: inline-flex;
  width: 24px;
  height: 24px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  background: rgba(9, 12, 30, 0.78);
  color: rgba(255, 255, 255, 0.78);
  font-size: 11px;
  line-height: 1;
}

.capture-window__icon--close {
  color: rgba(255, 255, 255, 0.62);
}

.capture-window__subtitles {
  display: flex;
  min-height: 94px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 22px 26px 18px;
  text-align: center;
}

.capture-window__translated {
  margin-bottom: 5px;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.25;
  text-shadow:
    -1px -1px 0 #000,
    1px -1px 0 #000,
    -1px 1px 0 #000,
    1px 1px 0 #000,
    0 2px 6px rgba(0, 0, 0, 0.9);
}

.capture-window__original {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.35;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.86);
}

.section {
  padding: 82px 0;
  background: var(--color-white);
}

.section--intro {
  padding-top: 68px;
}

.section__inner {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: start;
}

h2 {
  color: var(--color-heading);
  font-size: 36px;
  font-weight: 300;
  line-height: 1.12;
  letter-spacing: 0;
}

.section-copy {
  color: var(--color-body);
  font-size: 17px;
  line-height: 1.62;
}

.section-copy--center {
  max-width: 700px;
  margin-right: auto;
  margin-left: auto;
}

.section-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-purple);
  font-size: 15px;
  font-weight: 400;
}

.section-link:hover {
  color: var(--color-purple-hover);
}

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

.steps-grid {
  width: 100%;
  margin: 0 auto;
  grid-template-columns: 1fr;
  gap: 24px;
}

.compare-card,
.step-card,
.mode-card,
.pricing-card {
  border: 1px solid var(--color-border);
  border-radius: 6px;
  background: var(--color-white);
  box-shadow: var(--shadow-soft);
}

.compare-card {
  min-height: 250px;
  padding: 28px;
}

.compare-card--active {
  border: 2px solid var(--color-purple);
  background: var(--color-white);
  box-shadow:
    rgba(50, 50, 93, 0.2) 0 30px 45px -30px,
    rgba(83, 58, 253, 0.18) 0 18px 36px -20px;
}

.compare-card--active .compare-card__label {
  border-color: var(--color-purple);
  background: var(--color-purple);
  color: var(--color-white);
}

.compare-card__label,
.pricing-card__label,
.mode-card__badge {
  display: inline-flex;
  margin-bottom: 22px;
  padding: 4px 7px;
  border: 1px solid #f6f9fc;
  border-radius: 4px;
  color: var(--color-label);
  font-size: 11px;
  font-weight: 400;
  line-height: 1;
}

.compare-card h3,
.step-card h3,
.feature-card h3,
.mode-card h3,
.pricing-card h3 {
  margin-bottom: 12px;
  color: var(--color-heading);
  font-size: 23px;
  font-weight: 300;
  line-height: 1.14;
  letter-spacing: 0;
}

.compare-card p,
.step-card p,
.mode-card p,
.pricing-card p {
  margin-bottom: 0;
  color: var(--color-body);
  font-size: 15px;
  line-height: 1.56;
}

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

.section-heading--left {
  margin: 0;
  text-align: left;
}

.section--work {
  background: #f6f9fc;
}

.step-card {
  display: grid;
  min-height: 0;
  grid-template-columns: minmax(0, 1.55fr) minmax(280px, 0.85fr);
  overflow: hidden;
  padding: 0;
}

.step-card--reverse {
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.55fr);
}

.step-card--reverse .step-card__media {
  order: 2;
}

.step-card--reverse .step-card__content {
  order: 1;
}

.step-card__media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #0b0e29;
}

.step-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.step-card--account .step-card__media img {
  object-position: center top;
}

.step-card__content {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: 42px;
}

.step-card__number {
  display: block;
  margin-bottom: 28px;
  color: var(--color-purple);
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
}

.step-card h3 {
  margin-bottom: 14px;
  font-size: 27px;
}

.step-card p {
  font-size: 16px;
  line-height: 1.62;
}

.section--contact {
  background: #f6f9fc;
  text-align: center;
}

.contact__inner {
  max-width: 680px;
}

.section--contact h2 {
  margin-bottom: 16px;
}

.section--contact .section-copy {
  margin-bottom: 10px;
}

.contact__email {
  color: var(--color-purple);
  font-size: 19px;
  font-weight: 400;
}

.contact__email:hover {
  color: var(--color-purple-hover);
}

.section--dark {
  background: var(--color-brand-dark);
}

.section-heading--dark h2 {
  color: var(--color-white);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(196px, 1fr));
  gap: 14px;
}

.feature-card {
  min-height: 226px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
}

.feature-card h3 {
  color: var(--color-white);
}

.feature-card p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 15px;
  line-height: 1.55;
}

.mode-layout {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 48px;
  align-items: start;
}

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

.mode-card {
  min-height: 388px;
  padding: 30px;
}

.mode-card--accent {
  border-color: var(--color-purple-soft);
  box-shadow: var(--shadow-stripe);
}

.mode-card ul {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.mode-card li {
  position: relative;
  padding-left: 20px;
  color: var(--color-label);
  font-size: 14px;
  line-height: 1.42;
}

.mode-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.52em;
  width: 7px;
  height: 7px;
  border-radius: 2px;
  background: var(--color-success);
}

.section--pricing {
  background: #f6f9fc;
}

.pricing-card {
  min-height: 250px;
  padding: 30px;
}

.pricing-card--featured {
  border-color: var(--color-purple-soft);
  box-shadow: var(--shadow-stripe);
}

.pricing-card .pricing-card__price {
  margin-bottom: 18px;
  color: var(--color-heading);
  font-size: 36px;
  font-weight: 300;
  line-height: 1;
}

.pricing-card .pricing-card__duration {
  margin-bottom: 12px;
  color: var(--color-heading);
  font-size: 17px;
  font-weight: 400;
}

.pricing-card .pricing-card__note {
  min-height: 48px;
  margin-bottom: 0;
}

.final-cta {
  padding: 90px 0;
  background:
    radial-gradient(circle at top left, rgba(249, 107, 238, 0.16), transparent 34%),
    linear-gradient(135deg, var(--color-deep), var(--color-brand-dark));
  color: var(--color-white);
  text-align: center;
}

.final-cta__inner {
  width: min(760px, calc(100% - 40px));
  margin: 0 auto;
}

.final-cta h2 {
  margin-bottom: 18px;
  color: var(--color-white);
  font-size: 42px;
}

.final-cta p:not(.eyebrow) {
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 17px;
  line-height: 1.56;
}

.download-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 240px));
  justify-content: center;
  gap: 16px;
}

.download-option {
  display: grid;
  gap: 9px;
}

.download-option__status {
  color: rgba(255, 255, 255, 0.58);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
}

.download-option__nudge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 400;
}

.download-option__nudge:hover {
  color: var(--color-white);
}

.section--mac-nudge {
  text-align: center;
}

.mac-nudge__inner {
  max-width: 700px;
}

.section--mac-nudge h2 {
  margin-bottom: 16px;
}

.section--mac-nudge .section-copy {
  margin-bottom: 26px;
}

.mac-nudge__feedback {
  min-height: 24px;
  margin: 14px 0 0;
  color: var(--color-body);
  font-size: 14px;
  line-height: 1.5;
}

.mac-nudge__feedback[data-state="success"] {
  color: var(--color-heading);
}

.mac-nudge__feedback[data-state="error"] {
  color: #b33a3a;
}

.mac-nudge__button--received:disabled {
  opacity: 1;
  background: #2f8f6b;
  box-shadow: none;
}

.site-footer {
  background: var(--color-white);
  border-top: 1px solid var(--color-border);
}

.site-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 28px 0;
  color: var(--color-body);
  font-size: 13px;
}

.site-footer__brand,
.site-footer__links {
  display: flex;
  align-items: center;
  gap: 18px;
}

.site-footer__brand span:first-child {
  color: var(--color-heading);
  font-weight: 400;
}

.site-footer__links {
  flex-wrap: wrap;
  justify-content: flex-end;
}

.site-footer__links a:hover {
  color: var(--color-purple);
}

.error-page {
  display: grid;
  min-height: 100svh;
  place-items: center;
  padding: 40px 20px;
  background:
    linear-gradient(90deg, rgba(6, 27, 49, 0.94), rgba(28, 30, 84, 0.72)),
    url("assets/prismasub-hero-player.png") center / cover no-repeat;
  color: var(--color-white);
}

.error-page__inner {
  width: min(640px, 100%);
  text-align: center;
}

.error-page .brand {
  justify-content: center;
  margin-bottom: 46px;
}

.error-page h1 {
  margin-right: auto;
  margin-left: auto;
}

.error-page p {
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 17px;
  line-height: 1.56;
}

@media (max-width: 940px) {
  .hero {
    min-height: 680px;
    height: 90svh;
  }

  .nav-links {
    gap: 16px;
    font-size: 12px;
  }

  .header-cta {
    display: none;
  }

  h1 {
    max-width: 620px;
    font-size: 44px;
  }

  h2 {
    font-size: 31px;
  }

  .hero__copy {
    font-size: 17px;
  }

  .capture-window {
    right: 20px;
    bottom: 28px;
    width: min(620px, calc(100% - 40px));
  }

  .intro-grid,
  .mode-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .comparison-grid,
  .steps-grid,
  .pricing-grid,
  .feature-grid,
  .mode-cards {
    grid-template-columns: 1fr;
  }

  .compare-card,
  .step-card,
  .feature-card,
  .mode-card,
  .pricing-card {
    min-height: auto;
  }

  .step-card__number {
    margin-bottom: 22px;
  }

  .step-card,
  .step-card--reverse {
    grid-template-columns: 1fr;
  }

  .step-card--reverse .step-card__media,
  .step-card--reverse .step-card__content {
    order: initial;
  }
}

@media (max-width: 620px) {
  .hero {
    display: block;
    height: auto;
    min-height: 96svh;
    max-height: none;
    padding-bottom: 28px;
  }

  .hero__content,
  .section__inner,
  .site-footer__inner,
  .final-cta__inner {
    width: min(100% - 28px, 1120px);
  }

  .site-header {
    padding: 12px 14px;
  }

  .brand {
    gap: 0;
  }

  .brand span {
    display: none;
  }

  .nav-links {
    gap: 12px;
    font-size: 11px;
  }

  h1 {
    font-size: 36px;
    line-height: 1.08;
  }

  h2,
  .final-cta h2 {
    font-size: 28px;
  }

  .section {
    padding: 58px 0;
  }

  .hero__content {
    padding-top: clamp(64px, 12svh, 100px);
    padding-bottom: 0;
  }

  .hero__actions,
  .button {
    width: 100%;
  }

  .download-options {
    grid-template-columns: 1fr;
  }

  .capture-window {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(100% - 40px, 620px);
    margin: 40px auto 0;
  }

  .capture-window__controls {
    flex-wrap: wrap;
  }

  .capture-window__toolbar {
    flex: 1 1 100%;
    flex-wrap: wrap;
  }

  .capture-window__divider {
    display: none;
  }

  .capture-window__toggles {
    width: 100%;
  }

  .capture-window__buttons {
    position: absolute;
    top: 8px;
    right: 10px;
  }

  .capture-window__languages {
    padding-right: 60px;
  }

  .capture-window__translated {
    font-size: 20px;
  }

  .compare-card,
  .feature-card,
  .mode-card,
  .pricing-card {
    padding: 22px;
  }

  .step-card__content {
    padding: 26px 24px 30px;
  }

  .step-card h3 {
    font-size: 24px;
  }

  .site-footer__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-footer__brand {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .site-footer__links {
    justify-content: flex-start;
  }
}

@media (max-height: 680px) and (min-width: 941px) {
  .hero {
    min-height: 560px;
    height: 86svh;
  }

  h1 {
    font-size: 48px;
  }

  .hero__content {
    padding-bottom: 54px;
  }
}

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

  .button {
    transition: none;
  }

  .button:hover {
    transform: none;
  }
}
