:root {
  --red: #d71920;
  --red-deep: #9b111e;
  --red-dark: #701018;
  --white: #ffffff;
  --white-soft: rgba(255, 255, 255, 0.82);
  --white-muted: rgba(255, 255, 255, 0.66);
  --line: rgba(255, 255, 255, 0.26);
  --panel: rgba(111, 10, 18, 0.2);
  --shadow: 0 24px 60px rgba(83, 0, 8, 0.27);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-pill: 999px;
  --content-max: 1120px;
  --font-body: var(--mrc-font-en), Arial, sans-serif;
  --font-display: var(--mrc-font-en), Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

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

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  color: var(--white);
  background: var(--red);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

button,
a {
  font: inherit;
}

button {
  cursor: pointer;
}

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

:focus-visible {
  outline: 3px solid var(--white);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 30;
  top: 12px;
  left: 12px;
  padding: 11px 15px;
  transform: translateY(-180%);
  border-radius: var(--radius-sm);
  color: var(--red-deep);
  background: var(--white);
  font-weight: 800;
  transition: transform 180ms ease;
}

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

.page-shell {
  display: flex;
  min-height: 100svh;
  flex-direction: column;
}

.hero-stage {
  position: relative;
  z-index: 0;
  display: flex;
  min-height: calc(100svh - 100px);
  flex: 1;
  flex-direction: column;
  isolation: isolate;
  overflow: hidden;
  background: var(--red);
}

.hero-backdrop,
.hero-backdrop::before,
.hero-backdrop::after {
  position: absolute;
  inset: 0;
}

.hero-backdrop {
  z-index: -2;
  overflow: hidden;
  pointer-events: none;
}

.hero-backdrop::before {
  z-index: 2;
  content: "";
  background:
    linear-gradient(90deg, rgba(125, 8, 18, 0.14) 0%, rgba(215, 25, 32, 0.12) 38%, rgba(96, 4, 13, 0.18) 100%),
    linear-gradient(180deg, rgba(109, 4, 14, 0.17) 0%, transparent 36%, rgba(109, 4, 14, 0.2) 100%);
}

.hero-backdrop::after {
  z-index: 3;
  content: "";
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.22) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.22) 1px, transparent 1px);
  background-size: clamp(66px, 8vw, 122px) clamp(66px, 8vw, 122px);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.75) 22%, transparent 68%);
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.75) 22%, transparent 68%);
}

.background-image {
  position: absolute;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.background-image--mobile {
  display: none;
}

.flag-graphic {
  position: absolute;
  z-index: 1;
  top: 50%;
  right: -40vw;
  width: min(1080px, 91vw);
  max-width: none;
  height: auto;
  transform: translateY(-50%);
  mix-blend-mode: screen;
  opacity: 0.57;
  filter: saturate(0) brightness(2.5) contrast(0.85);
}

.hero-header {
  display: grid;
  width: min(100% - 36px, var(--content-max));
  min-height: 76px;
  margin: 0 auto;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.wordmark,
.footer-wordmark {
  display: inline-flex;
  align-items: baseline;
  width: max-content;
  font-family: var(--font-display);
  font-size: 1.42rem;
  font-weight: 900;
  letter-spacing: -0.08em;
  line-height: 1;
}

.wordmark-number {
  letter-spacing: -0.11em;
}

.header-tag {
  padding: 7px 12px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: var(--radius-pill);
  color: var(--white-soft);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.age-marker {
  justify-self: end;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 900;
}

.hero {
  position: relative;
  display: grid;
  width: min(100% - 36px, var(--content-max));
  flex: 1;
  margin: 0 auto;
  grid-template-columns: minmax(78px, 1fr) minmax(0, 820px) minmax(78px, 1fr);
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 4;
  display: flex;
  padding: clamp(34px, 6vh, 66px) 0 clamp(46px, 7vh, 82px);
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.offer-label {
  display: inline-flex;
  margin: 0 0 clamp(16px, 2.2vw, 25px);
  align-items: center;
  gap: 9px;
  color: var(--white-soft);
  font-size: clamp(0.75rem, 1.3vw, 0.88rem);
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.offer-label span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.16);
}

.offer-label b {
  font-weight: 600;
  opacity: 0.65;
}

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

h1 {
  display: flex;
  width: 100%;
  margin-bottom: clamp(22px, 3vw, 31px);
  flex-direction: column;
  align-items: center;
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 900;
  letter-spacing: -0.07em;
  line-height: 0.82;
}

.headline-intro,
.headline-outro {
  display: block;
  font-size: clamp(1.34rem, 3.2vw, 2.65rem);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 1.02;
}

.headline-intro {
  align-self: flex-start;
  margin-left: clamp(5%, 11vw, 105px);
}

.headline-outro {
  align-self: flex-end;
  margin-right: clamp(7%, 10vw, 90px);
}

.headline-product {
  display: block;
  margin: clamp(3px, 0.8vw, 9px) 0;
  color: var(--white);
  font-size: clamp(5.55rem, 16.2vw, 12.6rem);
  font-weight: 900;
  letter-spacing: -0.105em;
  line-height: 0.75;
  text-shadow:
    4px 5px 0 rgba(125, 3, 13, 0.23),
    0 0 38px rgba(255, 255, 255, 0.12);
}

.hero-lead {
  width: min(100%, 574px);
  margin-bottom: 0;
  color: var(--white);
  font-size: clamp(1rem, 1.65vw, 1.18rem);
  font-weight: 500;
  letter-spacing: -0.014em;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  margin-top: clamp(24px, 3.6vw, 34px);
  flex-wrap: wrap;
  justify-content: center;
  gap: 13px 20px;
}

.primary-cta {
  position: relative;
  display: inline-flex;
  min-width: min(100%, 266px);
  min-height: 54px;
  padding: 5px 6px 5px 23px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  overflow: visible;
  border: 1px solid var(--white);
  border-radius: var(--radius-pill);
  color: var(--red-deep);
  background: var(--white);
  box-shadow: 0 10px 23px rgba(101, 2, 11, 0.28);
  font-size: 0.95rem;
  font-weight: 900;
  letter-spacing: -0.01em;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.primary-cta::before {
  position: absolute;
  z-index: -1;
  inset: -8px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: inherit;
  content: "";
  opacity: 0.42;
  animation: cta-halo 2.8s ease-in-out infinite;
}

.cta-icon {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--red);
  font-size: 1.38rem;
  line-height: 1;
  transition: transform 180ms ease, background-color 180ms ease;
}

.primary-cta:hover {
  transform: translateY(-3px) scale(1.018);
  background: #fff8f8;
  box-shadow: 0 15px 30px rgba(92, 0, 9, 0.35);
}

.primary-cta:hover .cta-icon {
  transform: translateX(4px);
  background: var(--red-deep);
}

.primary-cta:active {
  transform: translateY(0) scale(0.99);
}

.how-button {
  min-height: 46px;
  padding: 10px 6px;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 0;
  color: var(--white);
  background: transparent;
  font-size: 0.9rem;
  font-weight: 800;
  transition: color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.how-button:hover {
  border-color: var(--white);
  color: #fff3f3;
  transform: translateY(-2px);
}

.side-module {
  position: relative;
  z-index: 4;
  display: flex;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.side-module--left {
  width: max-content;
  align-items: center;
  gap: 9px;
  transform: rotate(-90deg) translateX(-28px);
  transform-origin: left center;
}

.side-module__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.13);
}

.side-module--right {
  justify-self: end;
  width: 1px;
  height: 105px;
  align-items: center;
  flex-direction: column;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.44);
}

.side-module--right span {
  transform: rotate(90deg) translateY(-18px);
}

.side-module--right i {
  width: 7px;
  height: 7px;
  margin-bottom: -3px;
  border-radius: 50%;
  background: var(--white);
}

.site-footer {
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  background: var(--red-deep);
}

.footer-inner {
  display: flex;
  width: min(100% - 36px, var(--content-max));
  min-height: 100px;
  margin: 0 auto;
  align-items: center;
  justify-content: center;
  gap: 10px 21px;
  flex-wrap: wrap;
  text-align: center;
}

.footer-wordmark {
  font-size: 1.1rem;
}

.footer-inner p,
.support-link {
  margin: 0;
  color: var(--white-muted);
  font-size: 0.76rem;
  line-height: 1.45;
}

.support-link {
  color: var(--white-soft);
  font-weight: 700;
  overflow-wrap: anywhere;
  transition: color 180ms ease;
}

.support-link:hover {
  color: var(--white);
}

.how-dialog {
  width: min(calc(100% - 36px), 470px);
  padding: clamp(29px, 5vw, 43px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: var(--radius-md);
  color: var(--white);
  background: var(--red-deep);
  box-shadow: var(--shadow);
}

.how-dialog::backdrop {
  background: rgba(65, 0, 7, 0.7);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}

.how-dialog[open] {
  animation: dialog-in 200ms ease-out;
}

.dialog-close {
  position: absolute;
  top: 10px;
  right: 12px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: var(--white);
  background: transparent;
  font-size: 1.75rem;
  line-height: 1;
  transition: background-color 180ms ease, transform 180ms ease;
}

.dialog-close:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: rotate(90deg);
}

.dialog-kicker {
  margin-bottom: 8px;
  color: var(--white-muted);
  font-size: 0.71rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.how-dialog h2 {
  margin-bottom: 13px;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 5vw, 2.2rem);
  letter-spacing: -0.05em;
}

.how-dialog p:not(.dialog-kicker) {
  margin-bottom: 24px;
  color: var(--white-soft);
  line-height: 1.58;
}

.dialog-action {
  min-height: 44px;
  padding: 10px 20px;
  border: 1px solid var(--white);
  border-radius: var(--radius-pill);
  color: var(--red-deep);
  background: var(--white);
  font-weight: 900;
  transition: transform 180ms ease, background-color 180ms ease;
}

.dialog-action:hover {
  transform: translateY(-2px);
  background: #fff2f2;
}

@keyframes cta-halo {
  0%,
  100% {
    transform: scale(0.98);
    opacity: 0.18;
  }

  50% {
    transform: scale(1.045);
    opacity: 0.52;
  }
}

@keyframes dialog-in {
  from {
    opacity: 0;
    transform: translateY(10px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 767px) {
  .hero-stage {
    min-height: calc(100svh - 128px);
  }

  .background-image--desktop {
    display: none;
  }

  .background-image--mobile {
    display: block;
    object-position: center top;
  }

  .hero-backdrop::after {
    opacity: 0.13;
    -webkit-mask-image: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.75) 30%, transparent 84%);
    mask-image: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.75) 30%, transparent 84%);
  }

  .flag-graphic {
    top: 53%;
    right: -72vw;
    width: 154vw;
    opacity: 0.42;
  }

  .hero-header {
    width: min(100% - 28px, var(--content-max));
    min-height: 63px;
  }

  .header-tag {
    padding: 6px 8px;
    font-size: 0.57rem;
    letter-spacing: 0.06em;
  }

  .age-marker {
    width: 30px;
    height: 30px;
    font-size: 0.65rem;
  }

  .hero {
    width: min(100% - 28px, var(--content-max));
    grid-template-columns: 1fr;
  }

  .hero-content {
    padding: 34px 0 43px;
  }

  .headline-intro {
    align-self: center;
    margin-left: 0;
  }

  .headline-outro {
    align-self: center;
    margin-right: 0;
  }

  .headline-product {
    font-size: clamp(5.35rem, 25vw, 7.5rem);
  }

  .hero-lead {
    max-width: 470px;
    font-size: 1rem;
    line-height: 1.5;
  }

  .hero-actions {
    width: 100%;
    margin-top: 25px;
    flex-direction: column;
    align-items: center;
    gap: 11px;
  }

  .primary-cta {
    width: min(100%, 350px);
  }

  .side-module {
    display: none;
  }

  .footer-inner {
    width: min(100% - 28px, var(--content-max));
    min-height: 128px;
    padding: 17px 0;
    flex-direction: column;
    gap: 6px;
  }
}

@media (min-width: 768px) and (max-width: 980px) {
  .hero {
    grid-template-columns: 94px minmax(0, 1fr) 94px;
  }

  .headline-product {
    font-size: clamp(7.6rem, 18.5vw, 10rem);
  }
}

@media (min-width: 1200px) {
  .hero-stage {
    min-height: calc(100svh - 86px);
  }

  .footer-inner {
    min-height: 86px;
  }

  .flag-graphic {
    right: -27vw;
    width: min(970px, 65vw);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .primary-cta::before {
    animation: none;
  }
}