/* Base tokens */
:root {
  --bg: #05070a;
  --panel: rgba(15, 18, 24, 0.72);
  --panel-strong: rgba(15, 18, 24, 0.92);
  --text: #f1f3f6;
  --muted: #98a0ae;
  --line: rgba(255, 255, 255, 0.08);
  --accent: #8ad8ff;
  --accent-2: #9af2c5;
  --highlight: linear-gradient(120deg, #8ad8ff, #9af2c5);
  --radius: 18px;
  --max-width: 1180px;
  --shadow: 0 25px 80px rgba(0, 0, 0, 0.45);
}

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

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Manrope", "Space Grotesk", system-ui, -apple-system, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.no-scroll {
  overflow: hidden;
}

html {
  overflow-x: hidden;
}

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

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

p {
  margin: 0;
}

h1,
h2,
h3,
h4 {
  margin: 0 0 0.6rem;
  font-family: "Space Grotesk", "Manrope", system-ui, sans-serif;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.bg-grid {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(138, 216, 255, 0.12), transparent 38%),
    radial-gradient(circle at 80% 10%, rgba(154, 242, 197, 0.18), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent),
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.03) 0,
      rgba(255, 255, 255, 0.03) 1px,
      transparent 1px,
      transparent 120px
    ),
    repeating-linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.03) 0,
      rgba(255, 255, 255, 0.03) 1px,
      transparent 1px,
      transparent 120px
    );
  opacity: 0.8;
  pointer-events: none;
  z-index: 0;
}

.top-bar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  padding: 1rem 2.5rem;
  margin: 0 auto;
  max-width: calc(var(--max-width) + 5rem);
  background: rgba(5, 7, 10, 0.72);
  backdrop-filter: blur(14px);
  border: 1px solid var(--line);
  border-top: none;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}

.top-bar.is-scrolled {
  background: rgba(5, 7, 10, 0.9);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.35);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: lowercase;
}

.brand__mark {
  width: clamp(100px, 6vw, 82px);
  height: auto;
  background: transparent;
  border-radius: 0;
  mix-blend-mode: screen;
}

.brand__name {
  font-size: 1.1rem;
}

.nav-links {
  display: flex;
  gap: 1.2rem;
  font-size: 0.95rem;
  color: var(--muted);
}

.nav-links a {
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-links a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

.nav-actions {
  display: none;
  gap: 0.5rem;
  align-items: center;
  min-width: fit-content;
}

.pill {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.65rem 1.2rem;
  background: transparent;
  color: var(--text);
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.pill--primary {
  background: var(--highlight);
  color: #0a0c12;
  border: none;
  box-shadow: 0 10px 40px rgba(138, 216, 255, 0.35);
}

.pill--ghost {
  background: rgba(255, 255, 255, 0.04);
}

.pill--soft {
  background: rgba(138, 216, 255, 0.08);
  border-color: rgba(138, 216, 255, 0.45);
  color: #ccefff;
}

.pill:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

.progress-bar {
  position: fixed;
  inset: 0 0 auto 0;
  height: 3px;
  background: var(--highlight);
  transform-origin: left;
  transform: scaleX(0);
  z-index: 11;
  opacity: 0.8;
}

main {
  position: relative;
  z-index: 1;
}

section {
  padding: 4rem 6vw;
  max-width: 1280px;
  margin: 0 auto;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: center;
  gap: 3rem;
  padding-top: 6rem;
  padding-bottom: 5rem;
}

.halo {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.55;
  z-index: -1;
}

.halo--one {
  background: rgba(138, 216, 255, 0.5);
  top: -10%;
  left: -18%;
}

.halo--two {
  background: rgba(154, 242, 197, 0.35);
  bottom: -20%;
  right: -25%;
}

.hero__content h1 {
  font-size: clamp(2.5rem, 5vw, 3.6rem);
  line-height: 1.05;
  margin-bottom: 1rem;
}

.lede {
  color: var(--muted);
  max-width: 560px;
  margin-bottom: 1.5rem;
}

.cta-row {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.chip-row {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin: 0.5rem 0 1.2rem;
}

.chip {
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  color: #dfe5f0;
  font-size: 0.9rem;
}

.meta {
  display: inline-flex;
  gap: 0.75rem;
  align-items: center;
  color: var(--muted);
  font-size: 0.95rem;
}

.meta .dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--highlight);
  box-shadow: 0 0 18px rgba(138, 216, 255, 0.8);
}

.meta .divider {
  width: 1px;
  height: 16px;
  background: var(--line);
  display: inline-block;
}

.hero__visual {
  position: relative;
  display: grid;
  place-items: center;
  padding: 1.5rem;
  overflow: visible;
  justify-self: center;
}

.hero__image {
  width: min(820px, 94vw);
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center;
  border-radius: calc(var(--radius) + 12px);
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.5),
    0 0 40px rgba(138, 216, 255, 0.35),
    0 0 90px rgba(154, 242, 197, 0.28);
  position: relative;
  z-index: 1;
}

.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(110px);
  opacity: 0.7;
  z-index: 0;
}

.hero__glow--a {
  width: 520px;
  height: 520px;
  background: rgba(138, 216, 255, 0.3);
  top: -10%;
  left: -15%;
}

.hero__glow--b {
  width: 460px;
  height: 460px;
  background: rgba(154, 242, 197, 0.25);
  bottom: -12%;
  right: -10%;
}

.hero__badges {
  display: inline-flex;
  gap: 1rem;
  margin-top: 0.6rem;
  position: relative;
  z-index: 2;
  animation: floaty 9s ease-in-out infinite;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.5rem 0.85rem;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(5, 7, 10, 0.32);
  color: var(--text);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.45);
  min-width: 0;
  backdrop-filter: blur(10px);
  text-decoration: none;
  text-align: center;
  transition:
    box-shadow 0.2s ease,
    transform 0.2s ease,
    padding 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease;
}

.hero__badge--ghost {
  animation-delay: 1.2s;
  background: rgba(255, 255, 255, 0.12);
}

.hero__badge strong {
  display: inline-block;
  margin: 0;
  font-size: 0.96rem;
  font-weight: 700;
}

.hero__badge p {
  margin: 0;
  color: var(--muted);
  font-weight: 500;
  font-size: 0.9rem;
  white-space: nowrap;
}

.bottom-preorder {
  position: fixed;
  left: 50%;
  bottom: 1.1rem;
  transform: translateX(-50%);
  padding: 0.8rem 1.3rem;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: transparent;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.01em;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
  text-decoration: none;
  backdrop-filter: blur(10px) brightness(1.1);
  mix-blend-mode: difference;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease, opacity 0.2s ease;
  z-index: 14;
  overflow: hidden;
}

.bottom-preorder:hover {
  transform: translateX(-50%) translateY(-2px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.4);
  background: rgba(255, 255, 255, 0.08);
}

.bottom-preorder::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.25);
  mix-blend-mode: difference;
  filter: invert(1);
  pointer-events: none;
}

.bottom-preorder.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(8px);
}

@keyframes floaty {
  0% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-14px) rotate(-1.4deg);
  }
  100% {
    transform: translateY(0px) rotate(0deg);
  }
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.85rem;
  color: #c9d8ff;
  margin-bottom: 0.4rem;
}

.story {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  align-items: center;
  gap: 2.5rem;
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.story__copy p {
  color: var(--muted);
}

.story__copy h2 {
  font-size: clamp(2rem, 3.8vw, 2.8rem);
  margin-bottom: 0.9rem;
}

.story__list {
  margin-top: 1.5rem;
  display: grid;
  gap: 1rem;
}

.list-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.8rem;
  align-items: center;
  padding: 0.9rem 1rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
}

.list-item p {
  color: var(--muted);
}

.list-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--highlight);
  box-shadow: 0 0 16px rgba(138, 216, 255, 0.9);
}

.story__video {
  margin: 3.5rem auto 0;
  width: 100%;
  max-width: 460px;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  display: block;
}

.story__video video {
  width: 100%;
  height: 100%;
  display: block;
  background: #000;
  object-fit: cover;
}

.layered {
  position: relative;
}

.layered__card {
  padding: 1rem;
  background: var(--panel-strong);
  border-radius: calc(var(--radius) + 10px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow);
}

.layered__card img {
  border-radius: var(--radius);
}

.spec-badge {
  position: absolute;
  left: -1.5rem;
  top: 10%;
  padding: 0.9rem 1.1rem;
  background: rgba(138, 216, 255, 0.1);
  border: 1px solid rgba(138, 216, 255, 0.35);
  border-radius: 14px;
  color: #d9f5ff;
  box-shadow: var(--shadow);
}

.spec-badge--ghost {
  left: auto;
  right: -1.5rem;
  top: auto;
  bottom: 8%;
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
  color: var(--text);
}

.section-header {
  max-width: 780px;
  margin-bottom: 2rem;
}

.section-header h3 {
  font-size: clamp(1.6rem, 3.2vw, 2.4rem);
  color: #e9edf5;
}

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

.feature-card {
  padding: 1.2rem 1.1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  min-height: 170px;
}

.feature-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 10%, rgba(138, 216, 255, 0.12), transparent 45%);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.feature-card:hover::after {
  opacity: 1;
}

.feature-card p {
  color: var(--muted);
  margin-bottom: 1rem;
}

.feature-icon {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: var(--highlight);
  box-shadow: 0 10px 30px rgba(138, 216, 255, 0.35);
  margin-bottom: 1rem;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(138, 216, 255, 0.16);
  color: #d9f5ff;
  font-weight: 600;
  font-size: 0.9rem;
}

.lineup {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.lineup__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.lineup__card {
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 4px);
  display: grid;
  gap: 0.8rem;
}

.lineup__card--ghost {
  background: rgba(138, 216, 255, 0.05);
  border-color: rgba(138, 216, 255, 0.25);
}

.lineup__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.lineup__card h4 {
  margin: 0;
}

.lineup__card p {
  color: var(--muted);
}

.lineup__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.lineup__meta span {
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-size: 0.9rem;
  color: #dfe5f0;
}

.ads-l {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.ads-l--inline {
  padding: 0;
  margin-bottom: 1.8rem;
}

.ads-l--inline .ads-l__banner {
  padding: 1.4rem 1.2rem;
}

.ads-l__banner {
  display: grid;
  gap: 0.6rem;
  padding: 1.2rem 1rem;
  border-radius: calc(var(--radius) + 4px);
  background: linear-gradient(135deg, rgba(138, 216, 255, 0.18), rgba(154, 242, 197, 0.12));
  border: 1px solid rgba(138, 216, 255, 0.3);
  box-shadow: var(--shadow);
}

.ads-l__banner a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.ads-l__banner a:hover {
  color: #c3e7ff;
  text-decoration-color: currentColor;
}

.ads-l__headline h3 {
  margin: 0;
  font-size: clamp(1.6rem, 3.4vw, 2.2rem);
  line-height: 1.1;
}

.ads-l__note {
  margin-top: 0.2rem;
  color: var(--muted);
}

.ads-l__grid {
  margin-top: 1.4rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.ads-l__card {
  padding: 1.1rem 1rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}

.ads-l__card h4 {
  margin-bottom: 0.4rem;
}

.ads-l__card p {
  color: var(--muted);
}

.comparison {
  padding-top: 2rem;
  padding-bottom: 3rem;
}

.mini {
  padding-top: 2rem;
  padding-bottom: 2.4rem;
}

.mini-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}

.mini-grid + .mini-grid {
  margin-top: 1rem;
}

.mini-card {
  padding: 1.05rem 1rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.28);
}

.mini-card h4 {
  margin-bottom: 0.35rem;
}

.mini-card p {
  color: var(--muted);
}

.compare__table {
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 4px);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: var(--shadow);
  overflow: hidden;
  overflow-x: auto;
}

.compare__hint {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 0.6rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.compare__hint::before {
  content: "↔";
  display: inline-block;
  font-weight: 700;
  color: #d9e8ff;
}

.compare__row {
  display: grid;
  grid-template-columns: 1.15fr repeat(5, 1fr);
  gap: 0.6rem;
  padding: 0.85rem 1rem;
  align-items: start;
  min-width: 920px;
}

.compare__row + .compare__row {
  border-top: 1px solid var(--line);
}

.compare__row--head {
  background: rgba(138, 216, 255, 0.08);
  font-weight: 700;
}

.compare__cell {
  color: var(--muted);
}

.compare__cell--head {
  color: #e9edf5;
  font-weight: 700;
}

.compare__label {
  color: #e9edf5;
  font-weight: 700;
}

.label {
  font-size: 0.95rem;
  color: var(--muted);
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1rem;
}

.gallery__item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  background: #0d1117;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(1.05);
}

.gallery__item.tall {
  grid-row: span 2;
}

.gallery__item.wide {
  grid-column: span 2;
}

.screens__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.1rem;
  align-items: start;
}

.screen-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.9rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  box-shadow: var(--shadow);
  align-items: stretch;
}

.screen-card img {
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #0d1117;
  width: 100%;
  height: auto;
  display: block;
}

.screen-card figcaption {
  color: var(--muted);
  font-size: 0.95rem;
  margin-top: 0.1rem;
}

.screen-card--eink {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.screen-card--eink img {
  height: auto;
  max-height: 260px;
  max-width: 85%;
  width: auto;
  object-fit: contain;
  margin-left: auto;
  margin-right: auto;
}

.menu-toggle {
  display: none;
}

.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(5, 7, 10, 0.9);
  backdrop-filter: blur(14px);
  z-index: 20;
  opacity: 0;
  pointer-events: none;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  transition: opacity 0.3s ease;
}

.menu-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.menu-overlay__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2.5rem 6vw 3rem;
  display: grid;
  gap: 1.5rem;
}

.menu-overlay__close {
  justify-self: end;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--text);
  border-radius: 999px;
  padding: 0.5rem 0.9rem;
  cursor: pointer;
  font-size: 1.1rem;
}

.menu-overlay__grid {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 6px);
  padding: 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.4rem;
  box-shadow: var(--shadow);
}

.menu-overlay__links {
  list-style: none;
  padding: 0;
  margin: 0.6rem 0 0;
  display: grid;
  gap: 0.7rem;
  font-size: 1.1rem;
}

.menu-overlay__links a {
  padding: 0.55rem 0.75rem;
  border-radius: 12px;
  border: 1px solid transparent;
  display: inline-flex;
  width: fit-content;
  background: rgba(255, 255, 255, 0.03);
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.menu-overlay__links a:hover {
  border-color: rgba(138, 216, 255, 0.4);
  transform: translateX(4px);
}

.menu-overlay__lang {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 4px);
  padding: 1rem;
}

.lang-toggle {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 0.6rem;
}

.lang-toggle--inline {
  margin-top: 0;
  margin-left: 0.6rem;
  align-items: center;
}

.lang-toggle--inline .lang-btn {
  padding: 0.45rem 0.85rem;
}

.lang-toggle--inline .lang-btn.is-active {
  background: rgba(255, 255, 255, 0.12);
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.3);
}

.lang-btn {
  padding: 0.5rem 0.9rem;
}

.lang-btn.is-active {
  background: var(--highlight);
  color: #0a0c12;
  border: none;
}

.menu-overlay__meta h3 {
  margin-bottom: 0.5rem;
}

.menu-overlay__meta p {
  color: var(--muted);
  margin-bottom: 0.8rem;
}

.specs {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.specs__band {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 6px);
  padding: 1.4rem 1.2rem;
}

.spec {
  padding: 0.6rem 0.8rem;
  border-radius: 12px;
  background: rgba(5, 7, 10, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.spec strong {
  font-size: 1.2rem;
}

.cta {
  padding-top: 3rem;
  padding-bottom: 4rem;
}

.cta__card {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.4rem;
  padding: 1.6rem;
  background: rgba(15, 18, 24, 0.92);
  border-radius: calc(var(--radius) + 6px);
  border: 1px solid rgba(138, 216, 255, 0.15);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}

.cta__card p {
  color: var(--muted);
}

.cta__form {
  display: grid;
  gap: 0.7rem;
  align-content: start;
}

.cta__form input {
  padding: 0.75rem 0.9rem;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(5, 7, 10, 0.9);
  color: var(--text);
  font-size: 1rem;
}

.cta__form small {
  color: var(--muted);
}

.footer {
  border-top: 1px solid var(--line);
  padding: 1.8rem 6vw 2.4rem;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  text-align: center;
}

.footer__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.footer__brand a {
  display: inline-flex;
}

.footer__note {
  color: var(--muted);
  max-width: 720px;
  margin: 0;
}

.footer__links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  color: var(--muted);
}

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

.section-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.section-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 960px) {
  .top-bar {
    padding: 0.9rem 1.4rem;
    border-radius: 0;
    border-left: none;
    border-right: none;
  }

  .nav-links {
    display: none;
  }

  .lang-toggle--inline {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav-actions {
    display: inline-flex;
  }

  .hero {
    padding-top: 4.5rem;
  }

  .gallery__item.wide {
    grid-column: span 1;
  }
}

@media (max-width: 640px) {
  section {
    padding: 3rem 1.4rem;
  }

  .top-bar {
    position: sticky;
  }

  .halo {
    filter: blur(90px);
  }

  .card-float {
    position: static;
    margin-top: 0.8rem;
  }

  .spec-badge,
  .spec-badge--ghost {
    position: static;
    margin-top: 0.8rem;
  }

  .hero__content h1 {
    font-size: 2.2rem;
  }

  body[data-lang="de"] .hero__content h1 {
    font-size: 2.05rem;
  }

  .hero__visual {
    width: 100%;
  }

  .hero__image {
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
  }

  .bottom-preorder {
    width: calc(100% - 1.8rem);
    left: 50%;
    right: auto;
    bottom: 0.9rem;
    text-align: center;
  }

  .hero__content {
    display: grid;
    gap: 0.9rem;
    justify-items: center;
    text-align: center;
  }

  .hero__content .lede {
    text-align: center;
  }

  body[data-lang="de"] .hero__content .lede {
    font-size: 0.98rem;
    word-break: break-word;
  }

  .cta-row {
    justify-content: center;
  }

  .hero__badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
    gap: 0.75rem;
  }

  .hero__badge {
    flex: 1 1 180px;
    max-width: 280px;
    text-align: center;
    justify-content: center;
  }

  .footer__brand {
    justify-content: center;
    width: 100%;
  }
}
