
:root {
  --ink: #f7f6f1;
  --muted: #aeb5bd;
  --dim: #69717d;
  --void: #080a0f;
  --void-2: #0e1018;
  --card: rgba(18, 21, 31, 0.78);
  --card-solid: #121620;
  --stroke: rgba(255,255,255,.1);
  --red: #ff483f;
  --red-soft: rgba(255,72,63,.18);
  --aqua: #17e7d0;
  --aqua-soft: rgba(23,231,208,.16);
  --gold: #ffbf63;
  --gold-soft: rgba(255,191,99,.15);
  --green: #75e29d;
  --shadow: 0 24px 70px rgba(0,0,0,.38);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --max: min(1180px, calc(100% - 32px));
  --speed: 240ms ease;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 11% 0%, rgba(255,72,63,.13), transparent 25%),
    radial-gradient(circle at 88% 12%, rgba(23,231,208,.12), transparent 25%),
    linear-gradient(135deg, #07080c 0%, #10121a 45%, #07090e 100%);
  line-height: 1.68;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
.shell { width: var(--max); margin-inline: auto; }
.ambient-layer {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.9), rgba(0,0,0,.28));
}
header, main, footer { position: relative; z-index: 1; }

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  transition: background var(--speed), border-color var(--speed), box-shadow var(--speed);
}
.topbar.is-stuck {
  background: rgba(7,9,14,.78);
  border-bottom: 1px solid var(--stroke);
  box-shadow: 0 16px 34px rgba(0,0,0,.22);
}
.topbar__grid {
  min-height: 82px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
}
.identity img { width: 190px; height: auto; }
.site-nav {
  justify-self: center;
  display: flex;
  gap: 8px;
  padding: 8px;
  border: 1px solid var(--stroke);
  border-radius: 999px;
  background: rgba(255,255,255,.035);
}
.site-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  color: #d8dde5;
  font-size: .92rem;
  transition: color var(--speed), background var(--speed), transform var(--speed);
}
.site-nav a:hover {
  color: #fff;
  background: rgba(255,255,255,.07);
  transform: translateY(-1px);
}
.header-button,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: -.01em;
  border: 1px solid transparent;
  transition: transform var(--speed), box-shadow var(--speed), border-color var(--speed), background var(--speed);
}
.header-button,
.btn--primary {
  color: #081015;
  background: linear-gradient(135deg, var(--aqua), var(--gold));
  box-shadow: 0 16px 40px rgba(23,231,208,.16);
}
.btn--ghost {
  color: var(--ink);
  border-color: var(--stroke);
  background: rgba(255,255,255,.045);
}
.header-button:hover,
.btn:hover {
  transform: translateY(-2px);
}
.btn--small { min-height: 40px; padding-inline: 14px; }

.navswitch {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--stroke);
  border-radius: 16px;
  background: rgba(255,255,255,.04);
  padding: 11px;
  cursor: pointer;
}
.navswitch span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  border-radius: 8px;
  background: #fff;
}

section { padding: 46px 0; }
.hero { padding-top: 34px; }
.hero__mesh {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  gap: 32px;
  align-items: center;
}
.microtag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  color: var(--aqua);
  font-size: .78rem;
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.microtag::before {
  content: "";
  width: 32px;
  height: 2px;
  border-radius: 10px;
  background: linear-gradient(90deg, var(--red), var(--aqua));
}
h1, h2, h3 {
  margin: 0 0 16px;
  font-family: "Space Grotesk", Inter, sans-serif;
  line-height: 1.06;
  letter-spacing: -.045em;
}
h1 {
  font-size: clamp(2.6rem, 6vw, 5.9rem);
  max-width: 10.5ch;
}
h2 { font-size: clamp(1.8rem, 3.4vw, 3.1rem); }
h3 { font-size: clamp(1.22rem, 2.2vw, 1.55rem); letter-spacing: -.025em; }
p { margin: 0 0 1rem; color: var(--muted); }
strong { color: var(--ink); }
ul, ol { color: var(--muted); padding-left: 1.2rem; margin: 1rem 0; }
li + li { margin-top: .58rem; }

.intro-copy p { font-size: 1.04rem; }
.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 24px 0 18px;
}
.mini-meter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.mini-meter span {
  color: #dfe5ec;
  padding: 10px 13px;
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(255,72,63,.12), rgba(23,231,208,.1));
  border: 1px solid var(--stroke);
}
.hero__phone-stage { position: relative; }
.image-console,
.content-pod,
.glass-table,
.status-deck,
.final-strip__inner,
.cookiebar {
  border: 1px solid var(--stroke);
  background:
    linear-gradient(145deg, rgba(255,255,255,.07), rgba(255,255,255,.028)),
    rgba(14,17,25,.78);
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px);
}
.image-console {
  border-radius: var(--radius-xl);
  padding: 12px;
  transform: rotate(1.2deg);
}
.image-console figure,
.promo-lab__visual figure,
.device-image figure,
.pros-cons__image figure { margin: 0; }
.image-console img,
.promo-lab__visual img,
.device-image img,
.pros-cons__image img {
  width: 100%;
  border-radius: calc(var(--radius-xl) - 12px);
  object-fit: cover;
}
figure figcaption {
  margin-top: 12px;
  color: #c9d0da;
  font-size: .92rem;
}
.geo-chip {
  position: absolute;
  max-width: 230px;
  padding: 15px 16px;
  border-radius: 22px;
  background: rgba(8,10,15,.82);
  border: 1px solid rgba(255,255,255,.13);
  backdrop-filter: blur(18px);
  box-shadow: 0 16px 40px rgba(0,0,0,.28);
}
.geo-chip b { display: block; color: #fff; }
.geo-chip small { color: var(--muted); }
.geo-chip--one { left: -18px; bottom: 38px; }
.geo-chip--two { right: -12px; top: 34px; }

.section-head {
  max-width: 760px;
  margin-bottom: 22px;
}
.snapshot__grid,
.trustlane__grid,
.promo-lab__grid,
.mobile-zone__grid,
.payments-zone__grid,
.security-score__grid,
.pros-cons__grid,
.responsible__grid,
.fit-grid__layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  align-items: start;
}
.content-pod,
.glass-table,
.status-deck {
  border-radius: var(--radius-xl);
  padding: 24px;
  overflow: hidden;
}
.content-pod--accent {
  background:
    radial-gradient(circle at 92% 8%, var(--aqua-soft), transparent 30%),
    linear-gradient(145deg, rgba(255,255,255,.07), rgba(255,255,255,.028)),
    rgba(14,17,25,.78);
}
.content-pod--warning {
  background:
    radial-gradient(circle at 90% 0%, var(--red-soft), transparent 28%),
    linear-gradient(145deg, rgba(255,255,255,.07), rgba(255,255,255,.028)),
    rgba(14,17,25,.78);
}
.content-pod--wide { min-height: 100%; }
.text-surface > *:first-child { margin-top: 0; }
.text-surface table {
  width: 100%;
  border-collapse: collapse;
  min-width: 620px;
  color: var(--muted);
}
.text-surface th,
.text-surface td {
  padding: 13px 12px;
  border-bottom: 1px solid rgba(255,255,255,.09);
  vertical-align: top;
}
.text-surface th {
  color: var(--ink);
  text-align: left;
  background: rgba(255,255,255,.055);
}
.text-surface tr:last-child td { border-bottom: 0; }
.text-surface h3 { margin-top: 22px; }
.glass-table .text-surface { overflow-x: auto; }

.status-deck {
  display: grid;
  gap: 12px;
  position: sticky;
  top: 98px;
}
.status-card,
.paytoken {
  cursor: pointer;
  text-align: left;
  border: 1px solid var(--stroke);
  background: rgba(255,255,255,.04);
  color: var(--ink);
  border-radius: 18px;
  padding: 16px;
  transition: background var(--speed), border-color var(--speed), transform var(--speed);
}
.status-card span { display: block; color: var(--aqua); font-size: .85rem; margin-bottom: 4px; }
.status-card b { display: block; }
.status-card.is-active,
.status-card:hover,
.paytoken.is-active,
.paytoken:hover {
  transform: translateY(-1px);
  border-color: rgba(23,231,208,.42);
  background: linear-gradient(135deg, rgba(23,231,208,.13), rgba(255,191,99,.09));
}
.status-info {
  color: var(--muted);
  border: 1px dashed rgba(255,255,255,.16);
  border-radius: 18px;
  padding: 16px;
}

.promo-lab__grid { grid-template-columns: .92fr 1.08fr; }
.promo-lab__visual,
.device-image,
.pros-cons__image {
  padding: 12px;
  border-radius: var(--radius-xl);
  background: rgba(255,255,255,.04);
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow);
}
.tabbox {
  border: 1px solid var(--stroke);
  border-radius: var(--radius-xl);
  padding: 12px;
  background: rgba(255,255,255,.035);
}
.tabbox__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 12px;
}
.tablink {
  border: 1px solid var(--stroke);
  border-radius: 999px;
  padding: 12px 18px;
  background: rgba(255,255,255,.04);
  color: var(--ink);
  cursor: pointer;
  font-weight: 800;
}
.tablink.is-active {
  color: #071015;
  background: linear-gradient(135deg, var(--aqua), var(--gold));
}
.tabpanel { display: none; }
.tabpanel.is-active { display: block; }

.payment-rail {
  border-radius: var(--radius-xl);
  border: 1px solid var(--stroke);
  padding: 20px;
  background:
    radial-gradient(circle at 0% 0%, var(--gold-soft), transparent 32%),
    rgba(255,255,255,.035);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.payment-rail p {
  grid-column: 1 / -1;
  margin: 6px 0 0;
}
.paytoken { text-align: center; font-weight: 900; }

.final-verdict__actions,
.final-strip__inner {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.final-verdict__actions { margin-top: 18px; }
.final-strip { padding-bottom: 54px; }
.final-strip__inner {
  align-items: center;
  justify-content: space-between;
  border-radius: var(--radius-xl);
  padding: 28px;
}
.final-strip__inner > div { max-width: 760px; }

.qna-list {
  display: grid;
  gap: 12px;
}
.qna-card {
  border: 1px solid var(--stroke);
  border-radius: 22px;
  background: rgba(255,255,255,.045);
  overflow: hidden;
}
.qna-question {
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--ink);
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  font-weight: 900;
  text-align: left;
}
.qna-question i {
  width: 20px;
  height: 20px;
  position: relative;
  flex: 0 0 20px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.18);
}
.qna-question i::before,
.qna-question i::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 2px;
  border-radius: 5px;
  background: var(--aqua);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.qna-question i::after { transform: translate(-50%, -50%) rotate(90deg); }
.qna-card.is-open .qna-question i::after { opacity: 0; }
.qna-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows var(--speed);
}
.qna-answer > p {
  overflow: hidden;
  padding: 0 20px;
}
.qna-card.is-open .qna-answer { grid-template-rows: 1fr; }
.qna-card.is-open .qna-answer > p { padding-bottom: 18px; }

.footer {
  border-top: 1px solid var(--stroke);
  background: rgba(0,0,0,.18);
  padding: 28px 0 34px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.25fr .7fr 1fr;
  gap: 22px;
  align-items: start;
}
.footer img { margin-bottom: 12px; }
.footer__links a {
  display: block;
  color: #dce3eb;
  margin-bottom: 8px;
}
.footer__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.footer__badges span {
  border-radius: 999px;
  border: 1px solid var(--stroke);
  background: rgba(255,255,255,.045);
  padding: 10px 12px;
  color: var(--ink);
  font-weight: 800;
}

.float-top {
  position: fixed;
  z-index: 40;
  right: 18px;
  bottom: 92px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.15);
  color: #071015;
  background: linear-gradient(135deg, var(--aqua), var(--gold));
  box-shadow: var(--shadow);
  cursor: pointer;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity var(--speed), transform var(--speed);
}
.float-top.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.cookiebar {
  position: fixed;
  z-index: 60;
  right: 18px;
  bottom: 18px;
  width: min(390px, calc(100vw - 36px));
  border-radius: 22px;
  padding: 14px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.cookiebar p { margin: 4px 0 0; font-size: .92rem; }

.revealable {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 760ms ease, transform 760ms ease;
}
.revealable.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.delay-a { transition-delay: 120ms; }

@media (max-width: 1060px) {
  .topbar__grid { grid-template-columns: auto auto; justify-content: space-between; }
  .navswitch { display: block; }
  .header-button { display: none; }
  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 16px;
    width: min(340px, calc(100vw - 32px));
    display: grid;
    border-radius: 24px;
    padding: 12px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity var(--speed), transform var(--speed);
  }
  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  .site-nav a { padding: 10px 14px; }
  .hero__mesh,
  .snapshot__grid,
  .trustlane__grid,
  .promo-lab__grid,
  .mobile-zone__grid,
  .payments-zone__grid,
  .security-score__grid,
  .pros-cons__grid,
  .responsible__grid,
  .fit-grid__layout,
  .footer__grid {
    grid-template-columns: 1fr;
  }
  .status-deck { position: relative; top: auto; }
  .payment-rail { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

@media (max-width: 700px) {
  .shell { width: min(100% - 20px, 1180px); }
  section { padding: 30px 0; }
  .topbar__grid { min-height: 74px; }
  .identity img { width: 162px; }
  .image-console,
  .content-pod,
  .glass-table,
  .status-deck,
  .final-strip__inner { padding: 16px; border-radius: 24px; }
  .hero__actions .btn,
  .final-strip__inner .btn,
  .final-verdict__actions .btn { width: 100%; }
  .geo-chip { position: static; margin-top: 10px; max-width: none; }
  .image-console { transform: none; }
  .text-surface table { min-width: 560px; }
  .payment-rail { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .cookiebar {
    left: 10px;
    right: 10px;
    width: auto;
    flex-direction: column;
    align-items: stretch;
  }
}
