:root {
  --white: #ffffff;
  --grey-50: #f7f8fa;
  --grey-100: #eef0f3;
  --grey-200: #e2e5ea;
  --grey-300: #c9ced6;
  --grey-500: #8b919b;
  --grey-700: #4a4f57;
  --ink: #18191b;
  --blue: #0a6cb6;
  --blue-dark: #075389;
  --shadow: 0 18px 50px rgba(24, 25, 27, 0.12);
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ---------- Navigation ---------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.nav--solid,
.nav.is-scrolled {
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: saturate(180%) blur(14px);
  box-shadow: 0 1px 0 var(--grey-200);
}
.nav__inner {
  max-width: 1320px;
  margin: 0 auto;
  height: 64px;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav__logo { height: 30px; width: auto; }
.nav__links {
  display: flex;
  gap: 30px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
}
.nav__links a { color: var(--ink); opacity: 0.85; transition: opacity 0.2s; }
.nav__links a:hover,
.nav__links a.is-active { opacity: 1; }
.nav__actions { display: flex; align-items: center; gap: 14px; }
.nav__menu {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 28px;
  height: 28px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav__menu span {
  display: block;
  height: 2px;
  width: 22px;
  background: var(--ink);
  transition: transform 0.3s var(--ease), opacity 0.3s;
}
.nav__menu.is-open span:nth-child(1) { transform: translateY(3.5px) rotate(45deg); }
.nav__menu.is-open span:nth-child(2) { transform: translateY(-3.5px) rotate(-45deg); }

.nav__mobile {
  display: none;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(14px);
  border-top: 1px solid var(--grey-200);
  padding: 8px 28px 18px;
}
.nav__mobile a {
  padding: 14px 0;
  font-size: 16px;
  font-weight: 500;
  border-bottom: 1px solid var(--grey-100);
}
.nav__mobile.is-open { display: flex; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 28px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: transform 0.18s var(--ease), background 0.2s, color 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn--solid { background: var(--ink); color: var(--white); }
.btn--solid:hover { background: var(--blue); }
.btn--light { background: rgba(255, 255, 255, 0.9); color: var(--ink); }
.btn--light:hover { background: var(--white); }
.btn--ghost {
  background: rgba(24, 25, 27, 0.06);
  color: var(--ink);
}
.btn--ghost:hover { background: rgba(24, 25, 27, 0.12); }
.btn--ghost-dark {
  background: rgba(255, 255, 255, 0.16);
  color: var(--white);
}
.btn--ghost-dark:hover { background: rgba(255, 255, 255, 0.28); }
.btn--block { width: 100%; }

/* ---------- Hero / Panels ---------- */
.hero,
.panel {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.hero__content { padding-top: 22vh; z-index: 2; }
.hero__title {
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  font-weight: 600;
  letter-spacing: -0.02em;
}
.hero__subtitle {
  margin-top: 12px;
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-weight: 400;
  color: var(--grey-700);
}
.hero__actions,
.panel__actions {
  margin-top: 32px;
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero--home { align-items: center; min-height: 72vh; }
.hero--home .hero__content { padding-top: 0; }
.hero--home {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.45) 32%, rgba(20, 22, 26, 0.18) 70%, rgba(20, 22, 26, 0.42) 100%),
    url("https://images.unsplash.com/photo-1593941707882-a5bba14938c7?w=1920&q=80") center / cover no-repeat;
}
.hero--home::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(70% 50% at 50% 8%, rgba(255, 255, 255, 0.55), transparent 60%);
  pointer-events: none;
}
.hero--network {
  background:
    linear-gradient(180deg, rgba(15, 16, 18, 0.62) 0%, rgba(15, 16, 18, 0.78) 60%, rgba(15, 16, 18, 0.9) 100%),
    url("https://images.unsplash.com/photo-1646753020826-c518face72ad?w=1920&q=80") center / cover no-repeat;
  color: var(--white);
}
.hero--network .hero__subtitle { color: var(--grey-300); }
.hero--products {
  background: linear-gradient(160deg, var(--grey-50) 0%, var(--grey-100) 55%, var(--grey-200) 100%);
}

.hero__scroll {
  position: absolute;
  bottom: 34px;
  left: 50%;
  transform: translateX(-50%);
  width: 22px;
  height: 36px;
  border: 2px solid var(--grey-500);
  border-radius: 14px;
  z-index: 2;
}
.hero__scroll span {
  position: absolute;
  top: 7px;
  left: 50%;
  width: 3px;
  height: 7px;
  margin-left: -1.5px;
  background: var(--grey-500);
  border-radius: 2px;
  animation: scrolldot 1.6s infinite var(--ease);
}
@keyframes scrolldot {
  0% { opacity: 0; transform: translateY(0); }
  40% { opacity: 1; }
  100% { opacity: 0; transform: translateY(10px); }
}

.panel__content { z-index: 2; }
.panel__content--bottom {
  align-self: flex-end;
  padding-bottom: 12vh;
}
.panel__title {
  font-size: clamp(2rem, 4.4vw, 3.2rem);
  font-weight: 600;
  letter-spacing: -0.02em;
}
.panel__subtitle {
  margin-top: 10px;
  font-size: clamp(0.95rem, 1.6vw, 1.15rem);
  color: var(--grey-700);
}

.panel--charging {
  background: linear-gradient(180deg, var(--grey-100) 0%, var(--white) 100%);
}
.panel--charging::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(40% 60% at 50% 30%, rgba(10, 108, 182, 0.08), transparent 70%),
    repeating-linear-gradient(115deg, transparent 0 38px, rgba(24,25,27,0.015) 38px 39px);
}
.panel--network {
  background:
    linear-gradient(180deg, rgba(15, 16, 18, 0.45) 0%, rgba(15, 16, 18, 0.55) 55%, rgba(15, 16, 18, 0.85) 100%),
    url("https://images.unsplash.com/photo-1567409378873-888d6fa7debc?w=1920&q=80") center / cover no-repeat;
  color: var(--white);
}
.panel--network .panel__subtitle { color: var(--grey-300); }
.panel--network::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(50% 50% at 50% 35%, rgba(10, 108, 182, 0.22), transparent 70%),
    radial-gradient(2px 2px at 20% 30%, rgba(255,255,255,0.35), transparent),
    radial-gradient(2px 2px at 70% 50%, rgba(255,255,255,0.25), transparent),
    radial-gradient(2px 2px at 45% 70%, rgba(255,255,255,0.3), transparent),
    radial-gradient(2px 2px at 85% 25%, rgba(255,255,255,0.2), transparent);
}
.panel--business {
  background: linear-gradient(180deg, var(--white) 0%, var(--grey-100) 100%);
}
.panel--business::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(45% 55% at 50% 40%, rgba(10, 108, 182, 0.06), transparent 70%);
}

/* ---------- App section ---------- */
.app {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 130px 28px;
}
.app__title { font-size: clamp(1.8rem, 3.4vw, 2.6rem); font-weight: 600; letter-spacing: -0.02em; }
.app__subtitle { margin-top: 14px; font-size: 1.1rem; color: var(--grey-700); max-width: 420px; }
.app__badges { margin-top: 28px; display: flex; gap: 12px; flex-wrap: wrap; }
.store {
  display: inline-flex;
  align-items: center;
  height: 46px;
  padding: 0 22px;
  border-radius: 10px;
  background: var(--ink);
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  transition: background 0.2s;
}
.store:hover { background: var(--blue); }
.app__soon {
  display: inline-block;
  margin-top: 20px;
  padding: 5px 14px;
  border-radius: 999px;
  background: rgba(10, 108, 182, 0.1);
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.store--soon {
  background: var(--grey-100);
  color: var(--grey-500);
  cursor: default;
  pointer-events: none;
}
.store--soon:hover { background: var(--grey-100); }
.app__visual { display: flex; justify-content: center; }
.app__photo {
  width: 100%;
  max-width: 520px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 22px;
  box-shadow: var(--shadow);
}
.phone {
  width: 240px;
  height: 480px;
  border-radius: 38px;
  background: linear-gradient(160deg, #2a2c30, #131416);
  padding: 12px;
  box-shadow: var(--shadow);
}
.phone__screen {
  position: relative;
  height: 100%;
  border-radius: 28px;
  background: linear-gradient(180deg, var(--grey-50), var(--white));
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.phone__bar {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 6px;
  border-radius: 6px;
  background: var(--grey-300);
}
.phone__ring {
  position: absolute;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 10px solid var(--grey-200);
  border-top-color: var(--blue);
  border-right-color: var(--blue);
  transform: rotate(58deg);
}
.phone__charge { text-align: center; z-index: 2; }
.phone__pct { display: block; font-size: 2.4rem; font-weight: 700; color: var(--ink); }
.phone__status { font-size: 0.8rem; color: var(--grey-500); }

/* ---------- Stats ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--ink);
  color: var(--white);
}
.stat {
  padding: 70px 20px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}
.stat:last-child { border-right: none; }
.stat__num { display: block; font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 700; letter-spacing: -0.02em; }
.stat__label { font-size: 0.85rem; color: var(--grey-300); letter-spacing: 0.04em; }

/* ---------- Generic page sections ---------- */
.page { padding-top: 0; }
.section__title {
  text-align: center;
  font-size: clamp(1.7rem, 3.2vw, 2.4rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 48px;
}
.section__title--light { color: var(--white); }

/* How it works */
.how { max-width: 1180px; margin: 0 auto; padding: 120px 28px; }
.how__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.how__step {
  padding: 40px 34px;
  border: 1px solid var(--grey-200);
  border-radius: 18px;
  background: var(--grey-50);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.how__step:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.how__num { font-size: 0.85rem; font-weight: 700; color: var(--blue); letter-spacing: 0.1em; }
.how__step h3 { margin: 14px 0 10px; font-size: 1.3rem; font-weight: 600; }
.how__step p { color: var(--grey-700); font-size: 0.98rem; }

/* Map */
.map {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, #17181a, #2a2c30);
  color: var(--white);
  overflow: hidden;
  text-align: center;
  padding: 100px 28px;
}
.map__panel { position: relative; z-index: 2; max-width: 560px; }
.map__sub { color: var(--grey-300); margin-bottom: 30px; }
.map__search {
  display: flex;
  gap: 10px;
  background: rgba(255, 255, 255, 0.1);
  padding: 8px;
  border-radius: 999px;
  margin: 0 auto 22px;
  max-width: 460px;
}
.map__search input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: var(--white);
  font-size: 15px;
  padding: 0 18px;
}
.map__search input::placeholder { color: var(--grey-300); }
.map__search .btn--solid { background: var(--blue); }
.map__search .btn--solid:hover { background: var(--white); color: var(--ink); }
.map__legend { display: flex; gap: 24px; justify-content: center; font-size: 0.85rem; color: var(--grey-300); }
.map__legend span { display: inline-flex; align-items: center; gap: 8px; }
.dot { width: 9px; height: 9px; border-radius: 50%; display: inline-block; }
.dot--live { background: #38d39f; box-shadow: 0 0 0 4px rgba(56, 211, 159, 0.18); }
.dot--soon { background: var(--grey-500); }
.map__grid { position: absolute; inset: 0; }
.pin {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 0 rgba(10, 108, 182, 0.5);
  animation: ping 2.6s infinite;
}
.pin--1 { top: 22%; left: 18%; }
.pin--2 { top: 40%; left: 80%; animation-delay: 0.4s; }
.pin--3 { top: 68%; left: 30%; animation-delay: 0.8s; }
.pin--4 { top: 30%; left: 55%; animation-delay: 1.2s; }
.pin--5 { top: 75%; left: 72%; animation-delay: 1.6s; }
.pin--6 { top: 55%; left: 10%; animation-delay: 2s; }
@keyframes ping {
  0% { box-shadow: 0 0 0 0 rgba(10, 108, 182, 0.45); }
  70% { box-shadow: 0 0 0 16px rgba(10, 108, 182, 0); }
  100% { box-shadow: 0 0 0 0 rgba(10, 108, 182, 0); }
}

/* Specs */
.specs { max-width: 1180px; margin: 0 auto; padding: 120px 28px; }
.specs__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.spec {
  text-align: center;
  padding: 50px 18px;
  border-radius: 18px;
  background: var(--grey-50);
  border: 1px solid var(--grey-200);
}
.spec__value { display: block; font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; letter-spacing: -0.03em; color: var(--ink); }
.spec__value small { font-size: 1rem; font-weight: 600; color: var(--grey-500); margin-left: 2px; }
.spec__label { font-size: 0.9rem; color: var(--grey-700); }

/* CTA */
.cta { text-align: center; padding: 130px 28px; background: var(--grey-50); }
.cta__title { font-size: clamp(1.9rem, 4vw, 2.8rem); font-weight: 600; letter-spacing: -0.02em; }
.cta__sub { margin-top: 12px; color: var(--grey-700); }
.cta__actions { margin-top: 30px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- Products ---------- */
.lineup { max-width: 1240px; margin: 0 auto; padding: 120px 28px; }
.lineup__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.product {
  position: relative;
  border: 1px solid var(--grey-200);
  border-radius: 22px;
  overflow: hidden;
  background: var(--white);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.product:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.product--featured { border-color: var(--blue); }
.product__tag {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 3;
  background: var(--blue);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 6px 12px;
  border-radius: 999px;
}
.product__art {
  height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, var(--grey-50), var(--grey-100));
}
.product__device {
  width: 92px;
  height: 150px;
  border-radius: 16px;
  background: linear-gradient(160deg, #ffffff, var(--grey-200));
  border: 1px solid var(--grey-300);
  box-shadow: var(--shadow);
  position: relative;
}
.product__device::after {
  content: "";
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 35%, #2aa0ef, var(--blue));
}
.product__art--pro .product__device::after { box-shadow: 0 0 22px rgba(10, 108, 182, 0.5); }
.product__art--commercial .product__device { width: 110px; height: 168px; }
.product__body { padding: 28px; display: flex; flex-direction: column; flex: 1; }
.product__body h3 { font-size: 1.35rem; font-weight: 600; }
.product__body p { margin: 10px 0 18px; color: var(--grey-700); font-size: 0.95rem; flex: 1; }
.product__price { font-size: 1.3rem; font-weight: 700; margin-bottom: 18px; }

/* Feature */
.feature {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 50px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 120px 28px;
}
.feature__text .section__title { text-align: left; margin-bottom: 18px; }
.feature__text > p { color: var(--grey-700); font-size: 1.05rem; }
.feature__list { list-style: none; margin: 26px 0 30px; }
.feature__list li {
  position: relative;
  padding: 10px 0 10px 30px;
  border-bottom: 1px solid var(--grey-100);
  color: var(--ink);
}
.feature__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--blue);
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='white' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/></svg>") center / 14px no-repeat;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='white' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/></svg>") center / 14px no-repeat;
}
.feature__visual { display: flex; justify-content: center; }
.wallbox {
  position: relative;
  width: 200px;
  height: 300px;
  border-radius: 26px;
  background: linear-gradient(160deg, var(--white), var(--grey-100));
  border: 1px solid var(--grey-200);
  box-shadow: var(--shadow);
}
.wallbox__light {
  position: absolute;
  top: 36px;
  left: 50%;
  transform: translateX(-50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 35%, #2aa0ef, var(--blue));
  box-shadow: 0 0 30px rgba(10, 108, 182, 0.45);
}
.wallbox__cable {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 14px;
  height: 120px;
  background: var(--grey-300);
  border-radius: 8px;
  transform: translateX(-50%) translateY(60px);
}

/* Compare */
.compare { max-width: 1000px; margin: 0 auto; padding: 40px 28px 120px; }
.compare__table { border: 1px solid var(--grey-200); border-radius: 18px; overflow: hidden; }
.compare__row {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  align-items: center;
}
.compare__row span { padding: 16px 20px; font-size: 0.95rem; border-bottom: 1px solid var(--grey-100); }
.compare__row span:first-child { color: var(--grey-700); font-weight: 500; }
.compare__row span:not(:first-child) { text-align: center; }
.compare__row--head span {
  background: var(--grey-50);
  font-weight: 600;
  color: var(--ink);
}
.compare__row:last-child span { border-bottom: none; }

/* ---------- Charging scene ---------- */
.scene { padding: 96px 28px 40px; text-align: center; background: linear-gradient(180deg, var(--white), var(--grey-50)); }
.scene__inner { max-width: 1080px; margin: 0 auto; }
.scene__sub { margin-top: 10px; color: var(--grey-700); font-size: clamp(0.95rem, 1.6vw, 1.12rem); }
.scene__art { width: 100%; height: auto; margin-top: 26px; border-radius: 22px; }

/* ---------- Charger hardware ---------- */
.feature__cta { margin-top: 30px; display: flex; gap: 14px; flex-wrap: wrap; }
.charger-stage {
  position: relative;
  width: 100%;
  max-width: 440px;
  padding: 36px 30px;
  border-radius: 28px;
  background: radial-gradient(70% 60% at 50% 38%, var(--white), var(--grey-100) 100%);
  border: 1px solid var(--grey-200);
  box-shadow: var(--shadow);
  display: flex;
  justify-content: center;
}
.charger-stage::after {
  content: "";
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 62%;
  height: 22px;
  border-radius: 50%;
  background: rgba(24, 25, 27, 0.14);
  filter: blur(12px);
}
.charger-shot {
  position: relative;
  z-index: 2;
  max-height: 460px;
  width: auto;
  filter: drop-shadow(0 26px 34px rgba(24, 25, 27, 0.16));
}
.specs--hardware { padding-top: 0; }
.connectors__label {
  text-align: center;
  margin-top: 54px;
  color: var(--grey-500);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.connectors {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 18px;
}
.connector {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 20px;
  border: 1px solid var(--grey-200);
  border-radius: 999px;
  background: var(--grey-50);
  font-size: 0.92rem;
  font-weight: 600;
}
.connector small { color: var(--grey-500); font-weight: 500; }

/* Hardware page spec table */
.spectable { max-width: 940px; margin: 0 auto; border: 1px solid var(--grey-200); border-radius: 18px; overflow: hidden; }
.spectable__scroll { overflow-x: auto; }
.spectable__group {
  background: var(--ink);
  color: var(--white);
  padding: 13px 22px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.spectable__row { display: grid; grid-template-columns: 1.3fr repeat(5, 1fr); min-width: 720px; }
.spectable__row span {
  padding: 13px 18px;
  font-size: 0.9rem;
  border-bottom: 1px solid var(--grey-100);
  border-right: 1px solid var(--grey-100);
}
.spectable__row span:last-child { border-right: none; }
.spectable__row span:first-child { color: var(--grey-700); font-weight: 500; background: var(--grey-50); }
.spectable__row--head span { background: var(--grey-100); font-weight: 700; color: var(--ink); text-align: center; }
.spectable__row--single { grid-template-columns: 1.3fr 5fr; }
.spectable__row:last-child span { border-bottom: none; }

/* ---------- Footer ---------- */
.footer { background: var(--white); border-top: 1px solid var(--grey-200); }
.footer__grid {
  max-width: 1240px;
  margin: 0 auto;
  padding: 70px 28px 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.footer__col h4 { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--grey-500); margin-bottom: 16px; }
.footer__col a { display: block; padding: 7px 0; color: var(--grey-700); font-size: 0.92rem; transition: color 0.2s; }
.footer__col a:hover { color: var(--ink); }
.footer__bar {
  max-width: 1240px;
  margin: 0 auto;
  padding: 24px 28px;
  border-top: 1px solid var(--grey-100);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: var(--grey-500);
}
.footer__legal { display: flex; gap: 22px; }
.footer__legal a:hover { color: var(--ink); }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .nav__links { display: none; }
  .nav__menu { display: flex; }
  .app { grid-template-columns: 1fr; text-align: center; }
  .app__subtitle { margin-left: auto; margin-right: auto; }
  .app__badges { justify-content: center; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: none; }
  .how__grid,
  .specs__grid,
  .lineup__grid { grid-template-columns: 1fr; }
  .feature { grid-template-columns: 1fr; }
  .feature__text .section__title { text-align: center; }
  .feature__list { max-width: 420px; margin-left: auto; margin-right: auto; }
}
@media (max-width: 560px) {
  .nav__inner { padding: 0 18px; }
  .stats { grid-template-columns: 1fr; }
  .stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .compare__row { grid-template-columns: 1.2fr 1fr 1fr 1fr; }
  .compare__row span { padding: 12px 8px; font-size: 0.78rem; }
  .footer__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__bar { flex-direction: column; gap: 12px; }
  .btn { padding: 0 22px; }
}
