:root {
  --bg: #061012;
  --bg-deep: #03090b;
  --panel: rgba(9, 19, 22, 0.82);
  --line: rgba(255, 255, 255, 0.12);
  --line-strong: rgba(255, 255, 255, 0.2);
  --text: #f5f7f8;
  --muted: #a7b1b7;
  --soft: #d7dcdf;
  --pink: #f02263;
  --pink-hot: #ff2f74;
  --cyan: #42d8ef;
  --gold: #eec66a;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--bg-deep);
  font-family: Inter, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  letter-spacing: 0;
  overflow-x: hidden;
}

body.modal-open {
  overflow: hidden;
}

body::selection {
  color: #fff;
  background: var(--pink);
}

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

img,
svg {
  display: block;
}

svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.page-frame {
  width: min(calc(100% - 128px), 1314px);
  margin: 0 auto;
}

.center {
  text-align: center;
}

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 20;
  padding-top: 36px;
}

.header-inner {
  width: min(calc(100% - 128px), 1314px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 236px 1fr 136px;
  align-items: center;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  min-width: 0;
  color: #fff;
}

.speed-mark {
  position: relative;
  width: 74px;
  height: 32px;
  transform: skewX(-18deg);
}

.speed-mark span {
  position: absolute;
  left: 0;
  height: 7px;
  background: currentColor;
  border-radius: 1px;
}

.speed-mark span:nth-child(1) {
  top: 3px;
  width: 73px;
}

.speed-mark span:nth-child(2) {
  top: 13px;
  width: 56px;
  left: 8px;
}

.speed-mark span:nth-child(3) {
  top: 23px;
  width: 39px;
  left: 17px;
}

.brand-copy {
  display: grid;
  line-height: 0.92;
  font-weight: 900;
}

.brand-forza {
  font-size: 20px;
}

.brand-horizon {
  font-size: 17px;
}

.brand-horizon b {
  color: var(--pink-hot);
  font-size: 26px;
}

.main-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 34px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 700;
}

.main-nav a {
  transition: color 180ms ease;
}

.main-nav a:hover,
.main-nav a.is-active {
  color: var(--pink-hot);
}

.small {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 45px;
  padding: 0 22px;
  background: var(--pink);
  color: #fff;
  border-radius: 2px;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: 0 16px 32px rgba(240, 34, 99, 0.22);
}

.hero {
  position: relative;
  min-height: 1015px;
  overflow: hidden;
  isolation: isolate;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  z-index: -3;
  background-image: url("assets/steam-15.jpg");
  background-position: center center;
  background-size: cover;
  transform: scale(1.045);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero::before {
  z-index: -2;
  background:
    radial-gradient(circle at 71% 31%, rgba(255, 183, 93, 0.22), transparent 26%),
    linear-gradient(90deg, rgba(3, 8, 10, 0.91) 0%, rgba(3, 8, 10, 0.72) 24%, rgba(3, 8, 10, 0.18) 58%, rgba(3, 8, 10, 0.24) 100%);
}

.hero::after {
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(4, 8, 10, 0.72) 0%, transparent 20%, transparent 73%, #061012 100%),
    linear-gradient(0deg, rgba(240, 34, 99, 0.18) 0%, transparent 21%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 286px;
}

.eyebrow {
  margin: 0 0 25px;
  color: var(--pink-hot);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  max-width: 570px;
  font-size: clamp(52px, 5.1vw, 74px);
  line-height: 1.04;
  font-weight: 900;
  text-shadow: 0 5px 24px rgba(0, 0, 0, 0.32);
}

.hero h1 span {
  color: var(--pink-hot);
}

.hero-lead {
  max-width: 430px;
  margin: 28px 0 34px;
  color: var(--soft);
  font-size: 17px;
  line-height: 1.63;
  font-weight: 500;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  min-width: 182px;
  height: 55px;
  padding: 0 24px;
  border-radius: 2px;
  border: 1px solid transparent;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

.button svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
  stroke-width: 0;
}

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

.button.primary {
  background: var(--pink);
  color: #fff;
  box-shadow: 0 18px 36px rgba(240, 34, 99, 0.24);
}

.button.ghost {
  color: #fff;
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(10px);
}

.button.outline {
  min-width: 202px;
  color: #fff;
  background: rgba(2, 9, 11, 0.38);
  border-color: rgba(255, 255, 255, 0.72);
}

.button.outline:hover,
.button.ghost:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.button.slim {
  min-width: 214px;
  height: 48px;
  padding: 0 22px;
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 43px;
  z-index: 4;
  width: 23px;
  height: 39px;
  border: 2px solid rgba(255, 255, 255, 0.74);
  border-radius: 14px;
  transform: translateX(-50%);
}

.scroll-cue span {
  position: absolute;
  top: 8px;
  left: 50%;
  width: 4px;
  height: 8px;
  background: var(--pink-hot);
  border-radius: 2px;
  transform: translateX(-50%);
}

.features {
  min-height: 704px;
  padding: 64px 0 54px;
  background:
    radial-gradient(circle at 50% -20%, rgba(66, 216, 239, 0.08), transparent 38%),
    linear-gradient(180deg, #071114 0%, #050c0e 100%);
}

.features h2,
.world-band h2,
.cars h2,
.gallery h2,
.preorder-band h2 {
  margin: 0;
  font-size: clamp(36px, 3.1vw, 48px);
  line-height: 1.08;
  font-weight: 900;
}

.section-copy {
  max-width: 590px;
  margin: 25px auto 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 25px;
  margin-top: 44px;
}

.feature-card {
  position: relative;
  min-height: 382px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--line);
  border-radius: 2px;
  text-align: left;
}

.feature-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.04);
  pointer-events: none;
}

.feature-card img {
  width: 100%;
  height: 152px;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.02);
}

.feature-body {
  padding: 27px 30px 28px;
}

.feature-body .icon {
  width: 36px;
  height: 36px;
  color: var(--pink-hot);
  margin-bottom: 25px;
}

.feature-body h3 {
  margin: 0 0 13px;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 900;
}

.feature-body p {
  margin: 0;
  color: var(--soft);
  font-size: 14px;
  line-height: 1.58;
}

.world-band {
  position: relative;
  height: 665px;
  overflow: hidden;
  isolation: isolate;
  background: #081417;
}

.world-band > img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: saturate(1.03) contrast(1.02);
}

.world-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(2, 9, 11, 0.94) 0%, rgba(2, 9, 11, 0.78) 28%, rgba(2, 9, 11, 0.16) 62%, rgba(2, 9, 11, 0.02) 100%),
    linear-gradient(180deg, rgba(6, 16, 18, 0.18) 0%, rgba(6, 16, 18, 0.2) 72%, #061012 100%);
}

.world-content {
  padding-top: 98px;
}

.world-content p:not(.eyebrow) {
  max-width: 490px;
  margin: 28px 0 32px;
  color: var(--soft);
  font-size: 15px;
  line-height: 1.66;
}

.world-content .button {
  margin-bottom: 72px;
}

.world-content .button svg {
  fill: none;
  stroke-width: 2;
}

.stats {
  display: flex;
  align-items: flex-start;
  gap: 56px;
}

.stats div {
  display: grid;
  gap: 6px;
}

.stats strong {
  color: var(--pink-hot);
  font-size: 36px;
  line-height: 1;
  font-weight: 900;
}

.stats span {
  color: #d7dcdf;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.cars {
  position: relative;
  min-height: 690px;
  padding: 61px 0 70px;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(66, 216, 239, 0.07), transparent 46%),
    #061012;
  overflow: hidden;
}

.cars::before,
.gallery::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 50% -8%, rgba(255, 255, 255, 0.07), transparent 31%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent 22%);
}

.section-head {
  position: relative;
  z-index: 2;
}

.section-head .eyebrow {
  margin-bottom: 19px;
}

.car-row {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 5px;
  margin: 47px 0 53px;
  scroll-behavior: smooth;
}

.car-card {
  position: relative;
  height: 302px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: #111;
}

.car-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 35%, rgba(0, 0, 0, 0.82) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.2), transparent 40%);
}

.car-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.06);
  transform: scale(1.02);
}

.car-card div {
  position: absolute;
  left: 31px;
  right: 22px;
  bottom: 25px;
  z-index: 2;
}

.car-card h3 {
  margin: 0 0 10px;
  font-size: 20px;
  line-height: 1.08;
  font-weight: 900;
}

.car-card p {
  margin: 0;
  color: var(--pink-hot);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.slider-arrow {
  position: absolute;
  z-index: 5;
  top: 318px;
  width: 42px;
  height: 48px;
  display: grid;
  place-items: center;
  padding: 0;
  color: rgba(255, 255, 255, 0.62);
  background: transparent;
  border: 0;
  cursor: pointer;
}

.slider-arrow svg {
  width: 32px;
  height: 32px;
}

.slider-arrow:hover {
  color: #fff;
}

.slider-arrow.left {
  left: 26px;
}

.slider-arrow.right {
  right: 26px;
}

.gallery {
  position: relative;
  min-height: 505px;
  padding: 54px 0 48px;
  background: #061012;
  overflow: hidden;
}

.gallery-strip {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 4px;
  width: 100%;
  margin-top: 37px;
}

.gallery-strip img {
  width: 100%;
  height: 238px;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.03);
}

.preorder-band {
  position: relative;
  height: 375px;
  overflow: hidden;
  isolation: isolate;
  background: #090d0f;
}

.preorder-band > img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 58%;
  filter: saturate(1.05) contrast(1.04);
}

.preorder-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(5, 10, 12, 0.96) 0%, rgba(5, 10, 12, 0.82) 34%, rgba(5, 10, 12, 0.15) 67%, rgba(5, 10, 12, 0.35) 100%),
    linear-gradient(180deg, rgba(5, 10, 12, 0.1), rgba(5, 10, 12, 0.35));
}

.preorder-content {
  padding-top: 65px;
}

.preorder-content .eyebrow {
  margin-bottom: 22px;
}

.preorder-content p:not(.eyebrow) {
  max-width: 456px;
  margin: 24px 0 29px;
  color: var(--soft);
  font-size: 15px;
  line-height: 1.65;
}

.seo-section {
  position: relative;
  padding: 70px 0 72px;
  background:
    radial-gradient(circle at 78% 14%, rgba(66, 216, 239, 0.09), transparent 32%),
    radial-gradient(circle at 20% 80%, rgba(240, 34, 99, 0.1), transparent 29%),
    #050b0d;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.seo-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(460px, 1fr);
  gap: 56px;
  align-items: start;
}

.seo-copy h2 {
  max-width: 690px;
  margin: 14px 0 21px;
  color: #fff;
  font-size: 42px;
  line-height: 1.12;
  font-weight: 900;
}

.seo-copy p:not(.eyebrow),
.seo-faq p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  line-height: 1.7;
}

.seo-copy p:not(.eyebrow) {
  max-width: 650px;
}

.seo-faq {
  display: grid;
  gap: 12px;
}

.seo-faq article {
  min-height: 118px;
  padding: 23px 25px 22px;
  background: rgba(9, 18, 21, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.17);
}

.seo-faq h3 {
  margin: 0 0 10px;
  color: #fff;
  font-size: 18px;
  line-height: 1.3;
  font-weight: 900;
}

.site-footer {
  min-height: 220px;
  padding: 39px 0 25px;
  background:
    radial-gradient(circle at 14% 0%, rgba(66, 216, 239, 0.06), transparent 35%),
    #050b0d;
  color: rgba(255, 255, 255, 0.82);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.footer-grid {
  display: grid;
  grid-template-columns: 340px 1fr 230px;
  gap: 70px;
  align-items: start;
}

.footer-logo {
  transform: scale(0.9);
  transform-origin: left top;
}

.footer-brand p {
  margin: 31px 0 0;
  color: rgba(255, 255, 255, 0.42);
  font-size: 12px;
}

.socials {
  display: flex;
  gap: 25px;
  margin-top: 26px;
}

.socials a {
  color: rgba(255, 255, 255, 0.56);
}

.socials a:hover {
  color: #fff;
}

.socials svg {
  width: 18px;
  height: 18px;
}

.socials svg path:first-child,
.socials svg rect,
.socials svg circle {
  stroke-width: 2;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 46px;
}

.footer-links div {
  display: grid;
  gap: 10px;
}

.footer-links h3 {
  margin: 0 0 7px;
  color: #fff;
  font-size: 14px;
  font-weight: 900;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  transition: color 160ms ease;
}

.footer-links a:hover,
.footer-bottom a:hover {
  color: #fff;
}

.rating-box {
  justify-self: end;
  width: 199px;
  min-height: 82px;
  display: grid;
  grid-template-columns: 62px 1fr;
  grid-template-rows: 1fr auto;
  background: #fff;
  color: #101010;
  border: 3px solid #fff;
}

.rating-box strong {
  grid-row: 1 / 3;
  display: grid;
  place-items: center;
  border-right: 3px solid #101010;
  font-size: 32px;
  font-weight: 900;
}

.rating-box span {
  padding: 9px 8px 6px;
  font-size: 10px;
  line-height: 1.2;
  font-weight: 800;
}

.rating-box small {
  padding: 5px 8px 4px;
  border-top: 3px solid #101010;
  font-size: 10px;
  font-weight: 900;
}

.footer-bottom {
  display: flex;
  justify-content: center;
  gap: 80px;
  margin-top: 25px;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.42);
  font-size: 11px;
}

.download-modal[hidden] {
  display: none;
}

.download-modal [hidden] {
  display: none !important;
}

.download-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 24px;
}

.download-scrim {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 48%, rgba(45, 61, 68, 0.38), transparent 38%),
    rgba(0, 0, 0, 0.76);
  backdrop-filter: blur(10px);
}

.download-dialog {
  position: relative;
  z-index: 1;
  width: min(94vw, 986px);
  height: min(92vh, 640px);
  min-height: 600px;
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  overflow: hidden;
  background:
    radial-gradient(circle at 55% 43%, rgba(255, 255, 255, 0.055), transparent 24%),
    linear-gradient(135deg, rgba(18, 30, 35, 0.98), rgba(3, 9, 12, 0.98) 55%, rgba(4, 12, 15, 0.98));
  border: 2px solid rgba(255, 255, 255, 0.16);
  border-radius: 22px;
  box-shadow:
    0 34px 90px rgba(0, 0, 0, 0.66),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.download-dialog::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 76% 52%, rgba(240, 34, 99, 0.06), transparent 28%),
    linear-gradient(90deg, transparent 45%, rgba(0, 0, 0, 0.32) 49%, transparent 58%);
}

.modal-close {
  position: absolute;
  top: 32px;
  right: 27px;
  z-index: 4;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  padding: 0;
  color: rgba(255, 255, 255, 0.82);
  background: transparent;
  border: 0;
  cursor: pointer;
}

.modal-close span {
  position: absolute;
  width: 26px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
}

.modal-close span:first-child {
  transform: rotate(45deg);
}

.modal-close span:last-child {
  transform: rotate(-45deg);
}

.modal-close:hover {
  color: #fff;
}

.modal-close:focus {
  outline: none;
}

.modal-close:focus-visible {
  color: #fff;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.45);
}

.modal-media {
  position: relative;
  z-index: 1;
  min-height: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 34px 45px 23px;
  background:
    radial-gradient(circle at 24% 62%, rgba(255, 47, 116, 0.24), transparent 18%),
    radial-gradient(circle at 92% 12%, rgba(123, 44, 255, 0.24), transparent 24%),
    radial-gradient(circle at 28% 15%, rgba(40, 93, 255, 0.21), transparent 28%),
    linear-gradient(155deg, #080d25 0%, #0b1028 42%, #16071f 100%);
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.modal-media::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.modal-media::before {
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.09), transparent 30%),
    linear-gradient(90deg, transparent 0%, rgba(5, 11, 13, 0.36) 100%),
    repeating-linear-gradient(56deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 36px);
}

.vpn-brand,
.modal-media h3,
.vpn-points,
.vpn-rabbit,
.vpn-button,
.vpn-trial {
  position: relative;
  z-index: 1;
}

.vpn-brand {
  display: flex;
  align-items: center;
  gap: 13px;
  color: #fff;
  font-size: 27px;
  line-height: 1;
  font-weight: 900;
}

.vpn-logo {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--pink-hot);
  background: #fff;
  border-radius: 50%;
  font-size: 25px;
  font-weight: 900;
  box-shadow: 0 0 28px rgba(255, 47, 116, 0.26);
}

.modal-media h3 {
  margin: 34px 0 20px;
  color: #fff;
  font-size: 34px;
  line-height: 1.12;
  font-weight: 900;
  text-transform: uppercase;
}

.modal-media h3 strong {
  color: var(--pink-hot);
  font-weight: 900;
}

.vpn-points {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
  line-height: 1.24;
  font-weight: 700;
  list-style: none;
}

.vpn-points li {
  position: relative;
  padding-left: 34px;
}

.vpn-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1px;
  width: 20px;
  height: 20px;
  border: 2px solid var(--pink-hot);
  border-radius: 50%;
  box-shadow: 0 0 14px rgba(255, 47, 116, 0.2);
}

.vpn-points li::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 7px;
  width: 8px;
  height: 4px;
  border-left: 2px solid var(--pink-hot);
  border-bottom: 2px solid var(--pink-hot);
  transform: rotate(-45deg);
}

.vpn-rabbit {
  position: absolute;
  left: 50%;
  bottom: 143px;
  width: 198px;
  height: 142px;
  margin: 0;
  transform: translateX(-50%);
  filter: drop-shadow(0 16px 36px rgba(255, 47, 116, 0.25));
}

.vpn-rabbit .ear {
  position: absolute;
  top: 2px;
  width: 43px;
  height: 92px;
  background: linear-gradient(#fff, #d3d8e8);
  border-radius: 50% 50% 45% 45%;
  border: 5px solid rgba(126, 96, 255, 0.36);
}

.vpn-rabbit .ear::after {
  content: "";
  position: absolute;
  inset: 18px 12px;
  background: linear-gradient(#ff8bc0, #8b54ff);
  border-radius: inherit;
  opacity: 0.8;
}

.vpn-rabbit .ear.left {
  left: 43px;
  transform: rotate(-20deg);
}

.vpn-rabbit .ear.right {
  right: 43px;
  transform: rotate(20deg);
}

.vpn-rabbit .head {
  position: absolute;
  left: 50%;
  top: 62px;
  width: 126px;
  height: 99px;
  background:
    radial-gradient(circle at 42% 66%, #ff9ec8 0 5px, transparent 6px),
    radial-gradient(circle at 58% 66%, #ff9ec8 0 5px, transparent 6px),
    linear-gradient(#f8fbff, #bfc7dc);
  border-radius: 52% 52% 44% 44%;
  transform: translateX(-50%);
}

.vpn-rabbit .head::before,
.vpn-rabbit .head::after {
  content: "";
  position: absolute;
  top: 50px;
  width: 36px;
  height: 18px;
  border-top: 2px solid rgba(255, 255, 255, 0.55);
}

.vpn-rabbit .head::before {
  left: 17px;
  transform: rotate(8deg);
}

.vpn-rabbit .head::after {
  right: 17px;
  transform: rotate(-8deg);
}

.vpn-rabbit .glasses {
  position: absolute;
  left: 50%;
  top: 92px;
  width: 86px;
  height: 31px;
  border-radius: 9px;
  background:
    linear-gradient(90deg, #111827 0 43%, transparent 43% 57%, #111827 57% 100%),
    radial-gradient(circle at 25% 36%, rgba(255, 47, 116, 0.86), transparent 28%),
    radial-gradient(circle at 78% 36%, rgba(137, 92, 255, 0.86), transparent 28%);
  transform: translateX(-50%);
}

.vpn-rabbit .glasses::before {
  content: "";
  position: absolute;
  top: 14px;
  left: 43px;
  width: 14px;
  height: 4px;
  background: #111827;
}

.vpn-rabbit .body {
  position: absolute;
  left: 50%;
  bottom: -42px;
  width: 164px;
  height: 80px;
  background: linear-gradient(#111827, #070a13);
  border-radius: 45% 45% 14% 14%;
  transform: translateX(-50%);
}

.vpn-rabbit .body::before {
  content: "BUNNY";
  position: absolute;
  top: 26px;
  left: 50%;
  color: #fff;
  font-size: 18px;
  font-weight: 900;
  transform: translateX(-50%);
}

.vpn-button {
  position: absolute;
  left: 45px;
  right: 45px;
  bottom: 43px;
  z-index: 2;
  width: auto;
  min-width: 0;
  height: 54px;
  margin-top: 0;
  font-size: 12px;
}

.vpn-button svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke-width: 3;
}

.vpn-trial {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 18px;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  line-height: 1;
  text-align: center;
  font-weight: 700;
}

.modal-panel {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 0;
  height: 100%;
  flex-direction: column;
  align-items: center;
  padding: 58px 74px 34px 42px;
  text-align: left;
}

.modal-panel h2 {
  align-self: stretch;
  margin: 0;
  color: #fff;
  font-size: 35px;
  line-height: 1.04;
  font-weight: 900;
  text-transform: uppercase;
}

.modal-panel h2 span,
.modal-panel h2 strong {
  display: block;
}

.modal-panel h2 strong {
  color: var(--pink-hot);
}

.modal-panel > p:not(.timer-note):not(.download-fallback) {
  align-self: stretch;
  margin: 20px 0 24px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 19px;
  line-height: 1.52;
  font-weight: 700;
}

.timer-ring {
  --progress: 1;
  --ring-size: 190px;
  position: relative;
  width: var(--ring-size);
  height: var(--ring-size);
  flex: 0 0 var(--ring-size);
  display: grid;
  place-items: center;
  margin: 0 auto 24px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.08) 0 45%, transparent 47%),
    conic-gradient(var(--pink-hot) calc(var(--progress) * 1turn), rgba(240, 34, 99, 0.24) 0);
  box-shadow:
    0 0 36px rgba(240, 34, 99, 0.12),
    inset 0 0 38px rgba(255, 255, 255, 0.04);
}

.timer-ring::before {
  content: "";
  position: absolute;
  inset: 9px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 48% 45%, rgba(255, 255, 255, 0.09), transparent 42%),
    #071116;
  box-shadow: inset 0 0 28px rgba(0, 0, 0, 0.42);
}

.timer-core {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  color: #fff;
  text-align: center;
}

.timer-core strong {
  font-size: 66px;
  line-height: 0.94;
  font-weight: 900;
  text-shadow: 0 10px 22px rgba(0, 0, 0, 0.42);
}

.timer-core span {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
  line-height: 1;
  font-weight: 900;
}

.timer-check {
  display: none;
  width: 82px;
  height: 82px;
  color: var(--pink-hot);
  stroke-width: 5;
}

.timer-note {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  margin: 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 15px;
  line-height: 1.38;
  font-weight: 700;
}

.timer-note svg {
  width: 23px;
  height: 23px;
  flex: 0 0 auto;
  color: rgba(255, 255, 255, 0.56);
}

.modal-download-button {
  width: 310px;
  margin-top: 3px;
  flex-shrink: 0;
}

.download-fallback {
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 16px;
  line-height: 1.46;
  font-weight: 700;
  text-align: center;
}

.download-dialog.is-ready {
  grid-template-columns: 1fr;
  width: min(92vw, 728px);
  height: min(92vh, 870px);
  min-height: 650px;
}

.download-dialog.is-ready::before {
  background:
    radial-gradient(circle at 50% 50%, rgba(240, 34, 99, 0.08), transparent 32%),
    radial-gradient(circle at 50% 8%, rgba(255, 255, 255, 0.055), transparent 34%);
}

.download-dialog.is-ready .modal-media {
  display: none;
}

.download-dialog.is-ready .modal-panel {
  min-height: 0;
  height: 100%;
  padding: clamp(48px, 7vh, 86px) 58px clamp(42px, 6vh, 62px);
  text-align: center;
}

.download-dialog.is-ready .modal-panel h2 {
  text-align: center;
  font-size: clamp(38px, 4.6vw, 48px);
}

.download-dialog.is-ready .modal-panel h2 span {
  display: none;
}

.download-dialog.is-ready .modal-panel > p:not(.timer-note):not(.download-fallback) {
  margin: clamp(22px, 3.4vh, 36px) 0 clamp(30px, 5.6vh, 62px);
  text-align: center;
  font-size: clamp(25px, 2.6vw, 31px);
  line-height: 1.38;
}

.download-dialog.is-ready .timer-ring {
  --ring-size: clamp(150px, 19vh, 174px);
  margin-bottom: clamp(30px, 5.5vh, 62px);
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.04) 0 46%, transparent 48%),
    conic-gradient(var(--pink-hot) 1turn, rgba(240, 34, 99, 0.24) 0);
}

.download-dialog.is-ready .timer-ring::before {
  inset: 6px;
}

.download-dialog.is-ready .timer-core strong,
.download-dialog.is-ready .timer-core span {
  display: none;
}

.download-dialog.is-ready .timer-check {
  display: block;
  width: clamp(86px, 11vh, 104px);
  height: clamp(86px, 11vh, 104px);
}

.download-dialog.is-ready .timer-note {
  display: none;
}

.download-dialog.is-ready .modal-download-button {
  width: 100%;
  max-width: 620px;
  height: clamp(72px, 10vh, 110px);
  font-size: clamp(20px, 2.2vw, 25px);
}

.download-dialog.is-ready .download-fallback {
  margin-top: clamp(28px, 5vh, 52px);
  font-size: clamp(23px, 2.4vw, 30px);
  line-height: 1.42;
}

.download-dialog.is-ready .modal-close {
  top: clamp(28px, 6vh, 64px);
  right: clamp(28px, 6vh, 56px);
  width: 66px;
  height: 66px;
  border: 2px solid rgba(255, 255, 255, 0.72);
}

.download-dialog.is-ready .modal-close span {
  width: 39px;
  height: 4px;
}

@media (max-width: 1180px) {
  .page-frame,
  .header-inner {
    width: min(calc(100% - 64px), 1060px);
  }

  .header-inner {
    grid-template-columns: 218px 1fr 128px;
  }

  .main-nav {
    gap: 18px;
    font-size: 12px;
  }

  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .seo-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(390px, 1fr);
    gap: 36px;
  }

  .seo-copy h2 {
    font-size: 36px;
  }

  .features {
    min-height: auto;
  }

  .car-row {
    overflow-x: auto;
    grid-auto-flow: column;
    grid-auto-columns: minmax(280px, 1fr);
    grid-template-columns: none;
    scrollbar-width: none;
  }

  .car-row::-webkit-scrollbar {
    display: none;
  }
}

@media (max-width: 860px) {
  .page-frame,
  .header-inner {
    width: min(calc(100% - 40px), 720px);
  }

  .site-header {
    padding-top: 22px;
  }

  .header-inner {
    grid-template-columns: 1fr auto;
    gap: 20px;
  }

  .main-nav {
    display: none;
  }

  .brand-forza {
    font-size: 17px;
  }

  .brand-horizon {
    font-size: 15px;
  }

  .speed-mark {
    width: 58px;
    height: 27px;
  }

  .speed-mark span:nth-child(1) {
    width: 58px;
  }

  .speed-mark span:nth-child(2) {
    width: 45px;
  }

  .speed-mark span:nth-child(3) {
    width: 32px;
  }

  .hero {
    min-height: 780px;
  }

  .hero-backdrop {
    background-position: 62% center;
  }

  .hero-content {
    padding-top: 188px;
  }

  .hero h1 {
    max-width: 430px;
    font-size: 50px;
  }

  .hero-lead {
    font-size: 15px;
  }

  .feature-grid,
  .seo-grid,
  .footer-grid,
  .footer-links {
    grid-template-columns: 1fr;
  }

  .world-band {
    height: auto;
    min-height: 680px;
  }

  .world-content {
    padding-top: 78px;
    padding-bottom: 70px;
  }

  .world-overlay,
  .preorder-overlay {
    background: linear-gradient(90deg, rgba(2, 9, 11, 0.94), rgba(2, 9, 11, 0.54));
  }

  .stats {
    gap: 28px;
    flex-wrap: wrap;
  }

  .gallery-strip {
    grid-template-columns: repeat(5, minmax(225px, 1fr));
    overflow-x: auto;
    scrollbar-width: none;
  }

  .gallery-strip::-webkit-scrollbar {
    display: none;
  }

  .preorder-band {
    height: auto;
    min-height: 470px;
  }

  .preorder-content {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .seo-section {
    padding: 55px 0 58px;
  }

  .seo-copy h2 {
    max-width: none;
    font-size: 31px;
  }

  .seo-copy p:not(.eyebrow) {
    max-width: none;
  }

  .footer-grid {
    gap: 32px;
  }

  .rating-box {
    justify-self: start;
  }

  .footer-bottom {
    justify-content: flex-start;
    gap: 20px;
    flex-wrap: wrap;
  }

  .download-dialog {
    grid-template-columns: 1fr;
    width: min(92vw, 365px);
    height: auto;
    min-height: 405px;
  }

  .download-dialog.is-ready {
    width: min(92vw, 365px);
    height: auto;
    min-height: 405px;
  }

  .download-dialog::before {
    background:
      radial-gradient(circle at 50% 50%, rgba(240, 34, 99, 0.08), transparent 32%),
      radial-gradient(circle at 50% 8%, rgba(255, 255, 255, 0.055), transparent 34%);
  }

  .modal-media {
    display: none;
  }

  .modal-panel {
    min-height: 405px;
    padding: 49px 44px 38px;
    text-align: center;
  }

  .modal-panel h2 {
    text-align: center;
    font-size: 23px;
  }

  .modal-panel > p:not(.timer-note):not(.download-fallback) {
    margin: 18px 0 25px;
    text-align: center;
    font-size: 13px;
  }

  .timer-ring {
    --ring-size: 154px;
    margin-bottom: 29px;
  }

  .timer-core strong {
    font-size: 45px;
  }

  .timer-core span {
    margin-top: 8px;
    font-size: 14px;
  }

  .timer-note {
    display: none;
  }

  .modal-download-button {
    width: 100%;
  }

  .download-dialog.is-ready .modal-panel {
    min-height: 405px;
    height: auto;
    padding: 48px 44px 38px;
  }

  .download-dialog.is-ready .modal-panel h2 {
    font-size: 22px;
  }

  .download-dialog.is-ready .modal-panel > p:not(.timer-note):not(.download-fallback) {
    margin: 17px 0 28px;
    font-size: 14px;
    line-height: 1.45;
  }

  .download-dialog.is-ready .timer-ring {
    --ring-size: 86px;
    margin-bottom: 27px;
  }

  .download-dialog.is-ready .timer-check {
    width: 82px;
    height: 82px;
  }

  .download-dialog.is-ready .modal-download-button {
    height: 55px;
    font-size: 11px;
  }

  .download-dialog.is-ready .download-fallback {
    margin-top: 24px;
    font-size: 16px;
  }

  .download-dialog.is-ready .modal-close {
    top: 13px;
    right: 12px;
    width: 34px;
    height: 34px;
    border: 0;
  }

  .download-dialog.is-ready .modal-close span {
    width: 26px;
    height: 2px;
  }
}

@media (max-width: 560px) {
  .page-frame,
  .header-inner {
    width: min(calc(100% - 28px), 420px);
  }

  .small {
    height: 40px;
    padding: 0 14px;
  }

  .hero h1 {
    font-size: 42px;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .button {
    min-width: 0;
  }

  .feature-body {
    padding: 24px;
  }

  .seo-copy h2 {
    font-size: 27px;
  }

  .seo-copy p:not(.eyebrow),
  .seo-faq p {
    font-size: 14px;
  }

  .seo-faq article {
    padding: 20px;
  }

  .seo-faq h3 {
    font-size: 16px;
  }

  .stats {
    display: grid;
  }

  .slider-arrow {
    display: none;
  }

  .car-card {
    height: 284px;
  }

  .gallery-strip img {
    height: 210px;
  }

  .download-modal {
    padding: 12px;
  }

  .download-dialog,
  .download-dialog.is-ready {
    width: min(100%, 340px);
  }

  .modal-close {
    top: 13px;
    right: 12px;
  }

  .modal-panel,
  .download-dialog.is-ready .modal-panel {
    padding: 44px 31px 34px;
  }

  .download-dialog.is-ready .modal-download-button {
    height: 48px;
  }
}
