*, *::before, *::after {
  box-sizing: border-box;
}

:root {
  --bg: #050505;
  --panel: #141414;
  --panel-2: #1f1f24;
  --text: #ffffff;
  --muted: #b8b8b8;
  --soft: #777;
  --line: rgba(255, 255, 255, 0.14);
  --red: #e50914;
  --red-dark: #a30710;
  --purple: #7c3aed;
  --blue: #1d4ed8;
  --radius: 8px;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 50% -10%, rgba(229, 9, 20, 0.34), transparent 34rem),
    radial-gradient(circle at 95% 8%, rgba(124, 58, 237, 0.18), transparent 20rem),
    var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}

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

button,
input,
select {
  font: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(980px, calc(100% - 48px));
  margin: 0 auto;
  padding: 20px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  color: var(--red);
  font-size: clamp(1.75rem, 3vw, 2.62rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.95;
  text-transform: uppercase;
}

.brand-mark {
  display: none;
}

.brand span:last-child {
  display: inline-block;
  transform: scaleX(0.62);
  transform-origin: left center;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.language-picker select {
  min-width: 124px;
  height: 34px;
  padding: 0 30px 0 34px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.55);
  color: var(--text);
}

.language-picker {
  position: relative;
}

.language-picker::before {
  content: "A";
  position: absolute;
  left: 13px;
  top: 50%;
  z-index: 1;
  transform: translateY(-50%);
  color: var(--text);
  font-size: 0.78rem;
  font-weight: 800;
  pointer-events: none;
}

.signin {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  min-height: 34px;
  padding: 0 16px;
  border-radius: 4px;
  background: var(--red);
  color: var(--text);
  font-size: 0.875rem;
  font-weight: 700;
  white-space: nowrap;
}

.hero {
  position: relative;
  min-height: 736px;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
  opacity: 1;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 14%;
  transform: scale(1.03);
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0.37) 42%, rgba(0, 0, 0, 0.64) 78%, #050505 100%),
    radial-gradient(ellipse at 50% 42%, rgba(0, 0, 0, 0.01), rgba(0, 0, 0, 0.58) 76%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.8), transparent 26%, transparent 74%, rgba(0, 0, 0, 0.8));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(640px, calc(100% - 40px));
  margin: 0 auto;
  padding-top: 112px;
  text-align: center;
  transform: translateY(-66px);
}

.hero h1 {
  margin: 0;
  font-size: clamp(2.45rem, 4.5vw, 3.55rem);
  line-height: 1.04;
  letter-spacing: 0;
  font-weight: 900;
}

.price-line {
  margin: 18px 0 28px;
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  font-weight: 700;
}

.email-form p {
  margin: 0 0 16px;
  color: #f2f2f2;
  font-size: 1rem;
  font-weight: 500;
}

.form-row {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.email-field {
  position: relative;
  display: block;
  width: min(370px, 100%);
}

.email-field span {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #b8b8b8;
  pointer-events: none;
}

.email-field input {
  width: 100%;
  height: 58px;
  padding: 18px 16px 6px;
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: 4px;
  background: rgba(18, 18, 18, 0.72);
  color: var(--text);
  outline: none;
}

.email-field input:focus {
  border-color: #fff;
}

.email-field input:focus ~ span,
.email-field input:not(:placeholder-shown) ~ span {
  top: 14px;
  font-size: 0.72rem;
}

.form-row button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 58px;
  padding: 0 28px;
  border: 0;
  border-radius: 4px;
  background: var(--red);
  color: var(--text);
  cursor: pointer;
  font-size: 1.35rem;
  font-weight: 800;
  transition: background 160ms ease, transform 160ms ease;
}

.form-row button:hover {
  background: var(--red-dark);
  transform: translateY(-1px);
}

.form-row svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.curve-divider {
  position: relative;
  z-index: 1;
  height: 84px;
  margin-top: -76px;
  overflow: hidden;
  pointer-events: none;
}

.curve-divider::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 14px;
  width: 130vw;
  height: 138px;
  transform: translateX(-50%);
  border-top: 4px solid transparent;
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  background:
    linear-gradient(var(--bg), var(--bg)) padding-box,
    linear-gradient(90deg, rgba(29, 78, 216, 0.4), #e50914 48%, rgba(124, 58, 237, 0.55)) border-box;
  box-shadow: none;
}

.plan-callout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(884px, calc(100% - 296px));
  margin: 0 auto;
  position: relative;
  z-index: 2;
  padding: 12px 32px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: linear-gradient(90deg, #211356, #211b54 58%, #18205a);
  box-shadow: 0 22px 80px rgba(0, 0, 0, 0.38);
  transform: translateX(50px);
}

.plan-callout::before {
  content: '';
  position: absolute;
  left: -92px;
  top: 50%;
  width: 72px;
  height: 72px;
  transform: translateY(-50%);
  background:
    radial-gradient(circle at 18px 18px, #fff3cf 0 8px, transparent 9px),
    radial-gradient(circle at 35px 12px, #ffe7ae 0 10px, transparent 11px),
    radial-gradient(circle at 52px 20px, #fff6d8 0 8px, transparent 9px),
    linear-gradient(90deg, #f81d2f 0 18%, #fff 18% 34%, #f81d2f 34% 52%, #fff 52% 68%, #f81d2f 68% 100%) 50% 31px / 48px 37px no-repeat;
  border-radius: 18px;
  filter: drop-shadow(0 12px 20px rgba(229, 9, 20, 0.28));
}

.plan-callout h2 {
  margin: 0 0 6px;
  font-size: clamp(1.15rem, 2vw, 1.25rem);
}

.plan-callout p {
  margin: 0;
  color: #d8d8d8;
}

.plan-callout a {
  flex: 0 0 auto;
  padding: 10px 18px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.14);
  font-weight: 800;
}

.content-section,
.final-cta,
.footer {
  width: min(980px, calc(100% - 48px));
  margin: 0 auto;
}

.content-section {
  padding-top: 64px;
}

.content-section + .content-section {
  padding-top: 38px;
}

.section-heading h2 {
  margin: 0 0 18px;
  font-size: clamp(1.35rem, 2vw, 1.7rem);
  font-weight: 900;
}

.section-heading {
  display: block;
}

.trending-shell {
  position: relative;
  overflow: hidden;
}

.trending-shell::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  width: 58px;
  background: linear-gradient(90deg, transparent, var(--bg) 86%);
  pointer-events: none;
}

.trending-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 180px;
  gap: 44px;
  overflow-x: auto;
  width: calc(100% - 20px);
  margin-left: 20px;
  padding: 8px 72px 30px 22px;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
}

.trending-rail::-webkit-scrollbar {
  display: none;
}

.trend-card {
  position: relative;
  aspect-ratio: 5 / 7;
  min-height: 0;
  overflow: visible;
  border-radius: 8px;
  background-image:
    linear-gradient(180deg, transparent 42%, rgba(0, 0, 0, 0.52) 100%),
    var(--poster-image);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.44);
  scroll-snap-align: start;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.trend-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent 28%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.62), transparent 42%);
  pointer-events: none;
}

.trend-card::after {
  content: 'F';
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  color: var(--red);
  font-size: 1.35rem;
  font-weight: 900;
  line-height: 1;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
}

.trend-card:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.55);
}

.trend-card span {
  position: absolute;
  left: -34px;
  bottom: -18px;
  z-index: 4;
  color: #050505;
  font-size: 7.55rem;
  font-weight: 900;
  line-height: 1;
  -webkit-text-stroke: 2px rgba(255, 255, 255, 0.88);
  -webkit-text-fill-color: #050505;
  filter: drop-shadow(0 3px 12px rgba(0, 0, 0, 0.86));
  paint-order: stroke fill;
  pointer-events: none;
}

.trend-10 span {
  left: -66px;
  font-size: 7.1rem;
}

.trend-1 span {
  left: -2px;
}

.trend-card h3 {
  position: absolute;
  left: 46px;
  right: 14px;
  bottom: 36px;
  z-index: 3;
  margin: 0;
  color: #fff;
  font-size: 1.16rem;
  font-weight: 900;
  line-height: 0.94;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.9);
}

.trend-1 { --poster-image: url("assets/trend-01.png"); }
.trend-2 { --poster-image: url("assets/trend-02.png"); }
.trend-3 { --poster-image: url("assets/trend-03.png"); }
.trend-4 { --poster-image: url("assets/trend-04.png"); }
.trend-5 { --poster-image: url("assets/trend-05.png"); }
.trend-6 { --poster-image: url("assets/trend-06.png"); }
.trend-7 { --poster-image: url("assets/trend-07.png"); }
.trend-8 { --poster-image: url("assets/trend-08.png"); }
.trend-9 { --poster-image: url("assets/trend-09.png"); }
.trend-10 { --poster-image: url("assets/trend-10.png"); }

.rail-next {
  position: absolute;
  right: -2px;
  top: 50%;
  z-index: 4;
  display: grid;
  place-items: center;
  width: 32px;
  height: 120px;
  transform: translateY(-50%);
  border: 0;
  border-radius: 10px;
  background: #1d1d1d;
  color: #d5d5d5;
  cursor: pointer;
  font-size: 2.2rem;
  line-height: 1;
}

.rail-next:hover {
  background: #2b2b2b;
  color: #fff;
}

.reason-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.reason-card {
  min-height: 328px;
  padding: 24px 16px;
  border-radius: 14px;
  background: linear-gradient(145deg, #1d234d 0%, #1a1b3d 50%, #21111f 100%);
  position: relative;
  overflow: hidden;
}

.reason-card h3 {
  margin: 0 0 14px;
  font-size: 1.48rem;
  line-height: 1.15;
}

.reason-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.reason-card svg {
  position: absolute;
  right: 22px;
  bottom: 28px;
  width: 64px;
  height: 64px;
  fill: none;
  stroke: #ff6b78;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 18px rgba(229, 9, 20, 0.28));
}

.faq-list {
  display: grid;
  gap: 8px;
}

.content-section.faq-section {
  padding-top: 62px;
}

.faq-list details {
  background: #2d2d2d;
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  padding: 0 24px;
  cursor: pointer;
  list-style: none;
  font-size: clamp(1.05rem, 2vw, 1.45rem);
  font-weight: 500;
}

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

.faq-list summary::after {
  content: '+';
  font-size: 2.2rem;
  font-weight: 300;
}

.faq-list details[open] summary::after {
  transform: rotate(45deg);
}

.faq-list p {
  margin: 0;
  padding: 0 24px 24px;
  border-top: 1px solid #050505;
  color: #e8e8e8;
  font-size: 1.05rem;
  line-height: 1.55;
}

.final-cta {
  padding: 64px 0 24px;
  text-align: center;
}

.final-cta h2 {
  margin: 0 0 18px;
  font-size: 1.35rem;
}

.email-form-compact {
  max-width: 780px;
  margin: 0 auto;
}

.footer {
  padding: 48px 0 72px;
  color: var(--muted);
}

.footer p {
  margin: 0 0 28px;
}

.footer nav {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  font-size: 0.9rem;
  text-decoration: underline;
}

@media (max-width: 920px) {
  .reason-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .form-row {
    align-items: center;
    flex-direction: column;
  }

  .form-row button {
    width: min(240px, 100%);
  }
}

@media (max-width: 680px) {
  .site-header {
    width: calc(100% - 40px);
    padding: 20px 0;
  }

  .brand {
    font-size: 1.35rem;
  }

  .header-actions {
    gap: 8px;
  }

  .language-picker select {
    min-width: 0;
    width: 112px;
    padding-left: 27px;
  }

  .language-picker::before {
    left: 10px;
    font-size: 0.7rem;
  }

  .language-picker {
    display: none;
  }

  .signin {
    padding: 0 12px;
  }

  .hero {
    min-height: 638px;
  }

  .hero-media img {
    object-position: 47% 15%;
    transform: scale(1.12);
  }

  .hero-content {
    width: min(640px, calc(100% - 40px));
    text-align: center;
    padding-top: 110px;
    transform: translateY(-72px);
  }

  .hero h1 {
    font-size: 1.92rem;
  }

  .price-line {
    margin: 14px 0 22px;
    font-size: 1.05rem;
  }

  .email-form p {
    max-width: 326px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1rem;
    line-height: 1.45;
  }

  .email-field {
    width: min(326px, 100%);
  }

  .email-field input {
    height: 50px;
  }

  .form-row button {
    width: auto;
    min-height: 50px;
    padding: 0 18px;
    font-size: 1.1rem;
  }

  .plan-callout {
    align-items: flex-start;
    flex-direction: column;
    width: min(980px, calc(100% - 48px));
    margin-top: 0;
    padding: 22px;
    transform: none;
  }

  .plan-callout::before {
    display: block;
    left: 24px;
    top: -44px;
    width: 64px;
    height: 64px;
    transform: none;
  }

  .section-heading {
    display: block;
  }

  .section-heading h2 {
    margin-bottom: 14px;
  }

  .trending-rail {
    grid-auto-columns: 112px;
    gap: 20px;
    width: 100%;
    margin-left: 0;
    padding-top: 0;
    padding-left: 10px;
    padding-right: 58px;
    padding-bottom: 24px;
    scroll-snap-type: none;
  }

  .trend-card span {
    left: -22px;
    bottom: -10px;
    font-size: 5rem;
  }

  .trend-10 span {
    left: -44px;
    font-size: 4.7rem;
  }

  .trend-1 span {
    left: 0;
  }

  .trend-card::after {
    top: 8px;
    left: 8px;
    font-size: 1.05rem;
  }

  .trend-card h3 {
    left: 28px;
    right: 10px;
    bottom: 26px;
    font-size: 0.78rem;
  }

  .rail-next {
    right: 0;
    display: grid;
    width: 28px;
    height: 118px;
    border-radius: 9px;
    font-size: 2rem;
  }

  .reason-grid,
  .footer nav {
    grid-template-columns: 1fr;
  }

  .reason-card {
    min-height: 210px;
  }
}
