:root {
  color-scheme: dark;
  --bg: #050812;
  --panel: rgba(8, 14, 31, 0.88);
  --panel-strong: rgba(15, 19, 39, 0.96);
  --line: rgba(255, 255, 255, 0.13);
  --text: #fff7eb;
  --muted: #cfd5e8;
  --gold: #ffd36d;
  --orange: #ff6333;
  --red: #f53530;
  --blue: #1f7bd9;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.36);
  --radius: 8px;
  --max-width: 1160px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100%;
  background:
    linear-gradient(90deg, rgba(95, 21, 58, 0.58), transparent 22%, transparent 78%, rgba(17, 75, 132, 0.6)),
    radial-gradient(circle at 18% 8%, rgba(255, 86, 46, 0.28), transparent 28%),
    #050812;
  color: var(--text);
  font-size: 17px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

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

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

button,
input,
summary {
  font: inherit;
}

.backdrop {
  position: fixed;
  inset-block: 0;
  z-index: -1;
  width: 22vw;
  pointer-events: none;
}

.backdrop-left {
  left: 0;
  background: linear-gradient(90deg, rgba(153, 31, 75, 0.42), transparent);
}

.backdrop-right {
  right: 0;
  background: linear-gradient(270deg, rgba(29, 97, 166, 0.44), transparent);
}

.site-shell {
  width: min(calc(100% - 28px), var(--max-width));
  margin: 0 auto;
  padding: 20px 0 44px;
}

.masthead {
  position: sticky;
  top: 12px;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 16px;
  align-items: center;
  min-height: 82px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(8, 15, 33, 0.94);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  gap: 12px;
  flex-shrink: 0;
}

.brand-mark {
  width: 58px;
  height: 58px;
  border-radius: 7px;
  object-fit: cover;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.34);
}

.brand-copy {
  display: grid;
  gap: 0;
}

.brand-copy strong {
  font-size: clamp(1.2rem, 2vw, 1.58rem);
  font-weight: 900;
  line-height: 1.05;
  white-space: nowrap;
}

.brand-copy small {
  color: var(--gold);
  font-size: 0.9rem;
  font-weight: 800;
  white-space: nowrap;
}

.site-nav {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.23);
}

.site-nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 999px;
  color: rgba(255, 247, 235, 0.78);
  font-size: 0.93rem;
  font-weight: 850;
  white-space: nowrap;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  outline: none;
}

.site-nav a[aria-current="page"] {
  box-shadow: inset 0 -3px 0 rgba(255, 84, 48, 0.86);
}

.nav-mobile-item,
.nav-toggle {
  display: none;
}

.site-nav .nav-desktop-item {
  display: inline-flex !important;
}

.site-nav .nav-mobile-item {
  display: none !important;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.lang-switch a {
  min-width: 36px;
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.lang-switch a:hover,
.lang-switch a:focus-visible {
  background: rgba(255, 255, 255, 0.1);
  outline: none;
}

.section {
  margin-top: 22px;
}

.newsletter-landing {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.78fr);
  gap: 22px;
  align-items: stretch;
  padding: clamp(22px, 4vw, 44px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(7, 10, 22, 0.74), rgba(7, 10, 22, 0.94)),
    url("assets/optimized/img/SA701003.jpg") center / cover;
  box-shadow: var(--shadow);
}

.newsletter-landing::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 22px 22px;
  opacity: 0.5;
  pointer-events: none;
}

.newsletter-landing-copy,
.newsletter-landing-form,
.newsletter-reason-card,
.qa-card {
  position: relative;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: clamp(3rem, 8vw, 6.7rem);
  line-height: 0.94;
  font-weight: 1000;
}

h2 {
  margin-bottom: 12px;
  font-size: clamp(1.55rem, 3vw, 2.35rem);
  line-height: 1.08;
  font-weight: 950;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.18rem;
  line-height: 1.18;
}

.lede {
  max-width: 660px;
  color: #f4ebdf;
  font-size: clamp(1.12rem, 2vw, 1.42rem);
  font-weight: 650;
}

.newsletter-prize-card,
.newsletter-form,
.newsletter-reason-card,
.qa-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
}

.newsletter-prize-card {
  display: grid;
  gap: 8px;
  max-width: 660px;
  margin-top: 26px;
  padding: 18px;
}

.newsletter-prize-card span {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.newsletter-prize-card strong {
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  line-height: 1.2;
}

.newsletter-prize-card small,
.newsletter-fineprint,
.newsletter-reason-card p,
.qa-card p {
  color: var(--muted);
}

.newsletter-form {
  align-self: center;
  display: grid;
  gap: 15px;
  padding: clamp(18px, 3vw, 26px);
  background: rgba(7, 10, 24, 0.94);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.25);
}

.newsletter-form-head h2 {
  margin-bottom: 0;
}

.form-field {
  display: grid;
  gap: 8px;
}

.form-field span,
.newsletter-consent {
  color: #f8efe3;
  font-size: 0.96rem;
  font-weight: 800;
}

.form-field input {
  width: 100%;
  min-height: 54px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 7px;
  padding: 0 15px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 1rem;
  outline: none;
}

.form-field input:focus {
  border-color: rgba(255, 211, 109, 0.85);
  box-shadow: 0 0 0 3px rgba(255, 211, 109, 0.18);
}

.newsletter-optional-fields {
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 7px;
  padding: 0;
  background: rgba(255, 255, 255, 0.05);
}

.newsletter-optional-fields summary {
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  cursor: pointer;
  padding: 0 14px;
  color: #fff;
  font-weight: 850;
}

.newsletter-optional-fields summary span {
  color: var(--gold);
  font-size: 0.82rem;
}

.newsletter-optional-fields[open] {
  padding-bottom: 14px;
}

.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 0 14px;
}

.newsletter-consent {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 11px;
  align-items: start;
  color: var(--muted);
  font-weight: 650;
}

.newsletter-consent input {
  width: 20px;
  height: 20px;
  margin-top: 3px;
  accent-color: var(--orange);
}

.newsletter-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.button {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 0 24px;
  cursor: pointer;
  color: #fff;
  font-weight: 950;
  text-align: center;
}

.button-primary {
  background: linear-gradient(135deg, var(--red), #ff7b35);
  box-shadow: 0 16px 34px rgba(245, 53, 48, 0.32);
}

.button-primary:hover,
.button-primary:focus-visible {
  transform: translateY(-1px);
  outline: none;
  box-shadow: 0 20px 42px rgba(245, 53, 48, 0.38);
}

.button-primary:disabled {
  cursor: wait;
  opacity: 0.72;
}

.form-feedback {
  min-height: 1.5em;
  margin-bottom: 0;
  color: var(--muted);
  font-weight: 800;
}

.form-feedback[data-state="success"] {
  color: #91f2b1;
}

.form-feedback[data-state="error"] {
  color: #ffb4a9;
}

.newsletter-next-link {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 211, 109, 0.52);
  border-radius: 999px;
  padding: 0 20px;
  color: #fff;
  background: rgba(255, 211, 109, 0.12);
  font-weight: 950;
}

.newsletter-next-link[hidden] {
  display: none;
}

.newsletter-next-link:hover,
.newsletter-next-link:focus-visible {
  background: rgba(255, 211, 109, 0.22);
  outline: none;
}

.newsletter-fineprint {
  margin-bottom: 0;
  font-size: 0.82rem;
}

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

.newsletter-reason-card {
  overflow: hidden;
  background: var(--panel-strong);
}

.newsletter-reason-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.newsletter-reason-card-poster img {
  object-position: center 30%;
}

.newsletter-reason-card div,
.qa-card {
  padding: 18px;
}

.newsletter-reason-card h2 {
  margin-bottom: 10px;
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
}

.newsletter-reason-card p,
.qa-card p {
  margin-bottom: 0;
}

.newsletter-reason-card-dark {
  background: linear-gradient(145deg, rgba(69, 20, 48, 0.94), rgba(8, 14, 31, 0.96));
}

.newsletter-faq-section {
  padding: 22px 0 0;
}

.section-heading {
  margin-bottom: 16px;
}

.section-heading h2 {
  margin-bottom: 0;
}

.qa-card {
  min-height: 155px;
  background: rgba(8, 14, 31, 0.84);
}

.footer {
  display: grid;
  gap: 18px;
  margin-top: 28px;
  padding: 22px 0 4px;
  color: var(--muted);
}

.footer p {
  margin-bottom: 0;
}

.footer-links,
.footer-link-group,
.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer a,
.social-links a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  padding: 0 14px;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  font-weight: 800;
}

@media (max-width: 980px) {
  .masthead {
    grid-template-columns: 1fr auto auto;
  }

  .nav-toggle {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    padding: 0 17px;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    font-weight: 900;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 12px;
    left: 12px;
    z-index: 30;
    justify-self: stretch;
    display: none;
    flex-direction: column;
    align-items: stretch;
    width: auto;
    min-width: 0;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 10px;
    background: rgba(8, 15, 33, 0.98);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.44);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    justify-content: flex-start;
    border-radius: 7px;
    padding: 0 14px;
    font-size: 1rem;
  }

  .site-nav .nav-desktop-item {
    display: none !important;
  }

  .site-nav .nav-mobile-item {
    display: inline-flex !important;
  }

  .newsletter-landing {
    grid-template-columns: 1fr;
  }

  .newsletter-landing-form {
    align-self: stretch;
  }

  .newsletter-reason-grid,
  .newsletter-faq-grid {
    grid-template-columns: 1fr;
  }

  .newsletter-reason-card {
    display: grid;
    grid-template-columns: 0.88fr 1fr;
  }

  .newsletter-reason-card img {
    height: 100%;
    aspect-ratio: auto;
  }
}

@media (min-width: 981px) {
  .site-nav .nav-desktop-item {
    display: inline-flex !important;
  }

  .site-nav .nav-mobile-item {
    display: none !important;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 16px;
  }

  .site-shell {
    width: min(calc(100% - 18px), var(--max-width));
    padding-top: 9px;
  }

  .masthead {
    top: 8px;
    grid-template-columns: 1fr auto;
    gap: 10px;
    min-height: 74px;
  }

  .site-nav {
    right: 10px;
    left: 10px;
  }

  .brand-mark {
    width: 50px;
    height: 50px;
  }

  .brand-copy strong {
    font-size: 1.16rem;
  }

  .brand-copy small {
    font-size: 0.82rem;
  }

  .lang-switch {
    grid-column: 1 / -1;
    justify-self: start;
    margin-left: 62px;
    margin-top: -8px;
  }

  .newsletter-landing {
    padding: 20px;
  }

  h1 {
    font-size: clamp(2.75rem, 16vw, 4.45rem);
  }

  .field-grid,
  .newsletter-reason-card {
    grid-template-columns: 1fr;
  }

  .newsletter-reason-card img {
    aspect-ratio: 4 / 3;
  }

  .footer-link-group,
  .social-links {
    display: grid;
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
