/* Upgrade Battle design system — dark green SaaS */

@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
  --ut-bg: #0a1210;
  --ut-bg-elevated: #0f1a16;
  --ut-bg-card: #142420;
  --ut-bg-card-hover: #1a2e28;
  --ut-border: rgba(255, 255, 255, 0.07);
  --ut-border-accent: rgba(74, 222, 128, 0.32);
  --ut-accent: #4ade80;
  --ut-accent-hover: #22c55e;
  --ut-accent-deep: #16a34a;
  --ut-accent-muted: rgba(74, 222, 128, 0.12);
  --ut-glow: rgba(34, 197, 94, 0.18);
  --ut-text: #ecfdf5;
  --ut-text-muted: #a7b8b0;
  --ut-text-dim: #6b7f76;
  --ut-radius: 12px;
  --ut-radius-lg: 16px;
  --ut-header-h: 72px;
  --ut-container: 1200px;
  --ut-font: 'Manrope', system-ui, -apple-system, sans-serif;

  /* Gray zone (sections below hero) */
  --ut-gray-bg: #1e1e24;
  --ut-gray-bg-deep: #16161c;
  --ut-gray-bg-card: #121218;
  --ut-gray-bg-card-hover: #1a1a22;
  --ut-gray-border: rgba(255, 255, 255, 0.08);
  --ut-gray-text: #e8e8ec;
  --ut-gray-text-muted: #a0a0ab;
  --ut-gray-text-dim: #6e6e7a;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--ut-font);
  background:
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(34, 197, 94, 0.08), transparent),
    var(--ut-bg);
  color: var(--ut-text);
  margin: 0;
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
}

main { flex: 1; }

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

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

/* ─── Layout ─── */
.ut-container {
  width: 100%;
  max-width: var(--ut-container);
  margin: 0 auto;
  padding: 0 1.25rem;
}

@media (min-width: 768px) {
  .ut-container { padding: 0 2rem; }
}

/* ─── Header ─── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--ut-header-h);
  background: rgba(10, 18, 16, 0.9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--ut-border);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 1rem;
}

.site-header__left {
  display: flex;
  align-items: center;
  gap: 2rem;
  min-width: 0;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  flex-shrink: 0;
}

.site-logo img {
  width: 36px;
  height: 36px;
}

.site-logo__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.site-logo__name {
  font-size: 1.0625rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--ut-text);
}

.site-logo__tag {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ut-accent);
  line-height: 1;
}

.site-nav {
  display: none;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

@media (min-width: 900px) {
  .site-nav { display: flex; }
}

.site-nav a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--ut-text-muted);
  white-space: nowrap;
  transition: color 0.15s;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--ut-text);
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.btn-steam {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  background: linear-gradient(135deg, var(--ut-accent) 0%, var(--ut-accent-deep) 100%);
  color: #052e16;
  font-size: 0.875rem;
  font-weight: 700;
  font-family: inherit;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: background 0.15s, transform 0.1s, box-shadow 0.15s;
  white-space: nowrap;
  box-shadow: 0 0 20px rgba(74, 222, 128, 0.15);
  text-decoration: none;
}

.btn-steam:hover {
  background: linear-gradient(135deg, #6ee7a0 0%, var(--ut-accent-hover) 100%);
  box-shadow: 0 0 24px rgba(74, 222, 128, 0.25);
}

.btn-steam:active { transform: scale(0.98); }

.menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--ut-bg-card);
  border: 1px solid var(--ut-border);
  border-radius: 10px;
  color: var(--ut-text);
  cursor: pointer;
}

@media (min-width: 900px) {
  .menu-toggle { display: none; }
}

.mobile-nav {
  display: none;
  position: fixed;
  top: var(--ut-header-h);
  left: 0;
  right: 0;
  background: rgba(10, 18, 16, 0.97);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--ut-border);
  padding: 1rem 1.25rem 1.25rem;
  z-index: 99;
}

.mobile-nav.is-open { display: block; }

.mobile-nav a {
  display: block;
  padding: 0.75rem 0;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--ut-text-muted);
  border-bottom: 1px solid var(--ut-border);
}

.mobile-nav a:last-child { border-bottom: none; }

.mobile-nav a:hover { color: var(--ut-text); }

/* ─── Footer ─── */
.site-footer {
  background: rgba(10, 18, 16, 0.95);
  border-top: 1px solid var(--ut-border);
  box-shadow: 0 -1px 0 rgba(74, 222, 128, 0.06);
  padding: 3rem 0 1.5rem;
  margin-top: auto;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

@media (min-width: 640px) {
  .site-footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 900px) {
  .site-footer__grid { grid-template-columns: 2fr 1fr 1fr; }
}

.site-footer__brand p {
  font-size: 0.8125rem;
  color: var(--ut-text-dim);
  line-height: 1.65;
  max-width: 22rem;
  margin: 0.75rem 0 0;
}

.site-footer__col h3 {
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ut-text);
  margin: 0 0 1rem;
}

.site-footer__links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.site-footer__links a {
  font-size: 0.875rem;
  color: var(--ut-text-dim);
  transition: color 0.15s;
}

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

.site-footer__bottom {
  padding-top: 1.5rem;
  border-top: 1px solid var(--ut-border);
  text-align: center;
  font-size: 0.75rem;
  color: var(--ut-text-dim);
}

/* ─── Breadcrumbs ─── */
.ut-breadcrumbs {
  font-size: 0.8125rem;
  color: var(--ut-text-dim);
  margin-bottom: 1.25rem;
}

.ut-breadcrumbs a {
  color: var(--ut-text-muted);
  transition: color 0.15s;
}

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

.ut-breadcrumbs span { margin: 0 0.4rem; color: #52525b; }

/* ─── Buttons ─── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  background: linear-gradient(135deg, var(--ut-accent) 0%, var(--ut-accent-deep) 100%);
  color: #052e16;
  font-size: 0.9375rem;
  font-weight: 700;
  font-family: inherit;
  border: none;
  border-radius: var(--ut-radius);
  cursor: pointer;
  transition: background 0.15s, box-shadow 0.15s;
  box-shadow: 0 0 28px rgba(74, 222, 128, 0.2);
  text-decoration: none;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #6ee7a0 0%, var(--ut-accent-hover) 100%);
  box-shadow: 0 0 32px rgba(74, 222, 128, 0.3);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  padding: 0.875rem 1.5rem;
  border: 1px solid var(--ut-border);
  border-radius: var(--ut-radius);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ut-text-muted);
  transition: border-color 0.15s, color 0.15s;
}

.btn-ghost:hover {
  border-color: var(--ut-border-accent);
  color: var(--ut-text);
}

/* ─── Cards ─── */
.ut-card {
  background: var(--ut-bg-card);
  border: 1px solid var(--ut-border);
  border-radius: var(--ut-radius-lg);
  padding: 1.75rem;
  transition: border-color 0.2s, background 0.2s;
}

.ut-card:hover {
  border-color: var(--ut-border-accent);
  background: var(--ut-bg-card-hover);
}

.ut-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--ut-accent-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ut-accent);
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.ut-card h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--ut-text);
  margin: 0 0 0.5rem;
}

.ut-card p {
  font-size: 0.875rem;
  color: var(--ut-text-muted);
  margin: 0;
  line-height: 1.65;
}

.glass-card {
  background: var(--ut-bg-card);
  border: 1px solid var(--ut-border);
  border-radius: var(--ut-radius-lg);
}

/* ─── Section titles ─── */
.ut-section {
  padding: 5rem 0;
}

.ut-section--alt {
  background: var(--ut-bg-elevated);
  border-top: 1px solid var(--ut-border);
  border-bottom: 1px solid var(--ut-border);
}

.ut-section__head {
  text-align: center;
  max-width: 36rem;
  margin: 0 auto 3rem;
}

.ut-section__head h2 {
  font-size: clamp(1.625rem, 3vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ut-text);
  margin: 0 0 0.75rem;
}

.ut-section__head p {
  font-size: 1rem;
  color: var(--ut-text-muted);
  margin: 0;
  line-height: 1.65;
}

.ut-eyebrow {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ut-accent);
  margin-bottom: 0.75rem;
}

/* ─── Hero ─── */
.hero {
  padding: calc(var(--ut-header-h) + 3rem) 0 3.5rem;
  position: relative;
  overflow: hidden;
}

@media (min-width: 1024px) {
  .hero { padding: calc(var(--ut-header-h) + 5rem) 0 4rem; }
}

.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}

.hero__glow--1 {
  top: -10%;
  left: -5%;
  width: 45%;
  height: 45%;
  background: rgba(34, 197, 94, 0.07);
}

.hero__glow--2 {
  bottom: -10%;
  right: -5%;
  width: 40%;
  height: 40%;
  background: rgba(74, 222, 128, 0.05);
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

@media (min-width: 1024px) {
  .hero__grid { grid-template-columns: 1fr 1fr; gap: 4rem; }
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin: 0 0 0.75rem;
}

.hero__title-main,
.hero__title-sub {
  display: block;
}

.hero__title-sub {
  margin-top: 0.15em;
}

.hero h1 .accent {
  color: var(--ut-accent);
  display: inline;
  white-space: nowrap;
}

.hero__sub {
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 500;
  color: var(--ut-text-muted);
  letter-spacing: normal;
  line-height: 1.55;
  margin: 0 0 1.25rem;
  max-width: 32rem;
}

.hero__lead {
  font-size: 1.0625rem;
  color: var(--ut-text-muted);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 32rem;
}

.hero__lead strong { color: var(--ut-text); font-weight: 600; }

.hero__note {
  font-size: 0.75rem;
  color: var(--ut-text-dim);
  margin-bottom: 0.75rem;
}

.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  padding-top: 1.25rem;
  margin-top: 1.25rem;
  margin-bottom: 0.5rem;
  border-top: 1px solid var(--ut-border);
  position: relative;
  z-index: 2;
}

.hero__badge {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8125rem;
  color: var(--ut-text-dim);
}

.hero__badge mark {
  color: var(--ut-accent);
  background: none;
  font-weight: 700;
}

/* Hero bento mockup — ring + slots */
.hero-bento {
  position: relative;
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
}

@media (min-width: 1024px) {
  .hero-bento { max-width: none; margin: 0; }
}

.hero-bento__glow {
  position: absolute;
  inset: 5% 0 15% 0;
  background: radial-gradient(ellipse at 50% 40%, rgba(74, 222, 128, 0.2) 0%, transparent 70%);
  filter: blur(32px);
  pointer-events: none;
  z-index: 0;
}

.hero-bento__frame {
  position: relative;
  z-index: 1;
  padding: 1.5rem;
  border-radius: var(--ut-radius-lg);
  background: linear-gradient(165deg, #1a2520 0%, #111816 100%);
  border: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.35),
    0 24px 48px rgba(0, 0, 0, 0.5),
    0 0 60px rgba(34, 197, 94, 0.06);
}

.hero-bento__row--top {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0.75rem;
  align-items: center;
  margin-bottom: 1rem;
}

.hero-bento__slot {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 0.5rem;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.hero-bento__slot--target {
  border-color: rgba(74, 222, 128, 0.28);
  background: rgba(74, 222, 128, 0.06);
}

.hero-bento__slot-label {
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}

.hero-bento__skin-shape {
  width: 100%;
  max-width: 56px;
  aspect-ratio: 4/5;
  border-radius: 6px;
  position: relative;
  overflow: hidden;
}

.hero-bento__skin-shape--in {
  background: linear-gradient(145deg, #2a3d35 0%, #1a2822 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-bento__skin-shape--in::after {
  content: "";
  position: absolute;
  inset: 25% 20% 35%;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 2px;
  transform: skewX(-6deg);
}

.hero-bento__skin-shape--out {
  background: linear-gradient(145deg, #1f5c3a 0%, #143828 100%);
  border: 1px solid rgba(74, 222, 128, 0.35);
  box-shadow: 0 0 20px rgba(74, 222, 128, 0.15);
}

.hero-bento__skin-shape--out::after {
  content: "";
  position: absolute;
  inset: 20% 18% 30%;
  background: rgba(74, 222, 128, 0.12);
  border-radius: 2px;
  transform: skewX(-6deg);
}

.hero-bento__slot-value {
  font-size: 0.625rem;
  font-weight: 600;
  color: rgba(236, 253, 245, 0.55);
  white-space: nowrap;
}

.hero-bento__ring-wrap {
  position: relative;
  width: 88px;
  height: 88px;
  flex-shrink: 0;
}

.hero-bento__ring {
  width: 100%;
  height: 100%;
}

.hero-bento__ring-center {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.hero-bento__ring-pct {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--ut-accent);
  line-height: 1;
  letter-spacing: -0.02em;
}

.hero-bento__ring-caption {
  font-size: 0.5625rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.35);
}

.hero-bento__flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 1rem;
  padding: 0 1rem;
}

.hero-bento__flow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  flex-shrink: 0;
}

.hero-bento__flow-dot--active {
  background: var(--ut-accent);
  box-shadow: 0 0 10px rgba(74, 222, 128, 0.5);
}

.hero-bento__flow-line {
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, rgba(255,255,255,0.06), rgba(74,222,128,0.25), rgba(255,255,255,0.06));
  max-width: 48px;
}

.hero-bento__row--bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

.hero-bento__chip {
  font-size: 0.6875rem;
  font-weight: 600;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.55);
}

.hero-bento__chip--rng {
  border-color: rgba(74, 222, 128, 0.25);
  color: var(--ut-accent);
  background: rgba(74, 222, 128, 0.08);
}

.hero-bento__chip--live {
  color: rgba(236, 253, 245, 0.7);
}

.hero-bento__chip--steam {
  color: rgba(236, 253, 245, 0.5);
}

.hero-bento__float {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 0.65rem;
  border-radius: 8px;
  font-size: 0.6875rem;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(15, 22, 20, 0.92);
  backdrop-filter: blur(8px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  z-index: 2;
}

.hero-bento__float--win {
  top: 8%;
  right: -2%;
  color: var(--ut-accent);
  border-color: rgba(74, 222, 128, 0.3);
}

.hero-bento__float--secure {
  bottom: 12%;
  left: -4%;
  color: rgba(236, 253, 245, 0.65);
}

.hero-bento__float-icon {
  font-size: 0.75rem;
  line-height: 1;
}

@media (max-width: 640px) {
  .hero-bento__float--win { right: 0; top: 4%; }
  .hero-bento__float--secure { left: 0; bottom: 8%; }
  .hero-bento__ring-wrap { width: 72px; height: 72px; }
  .hero-bento__ring-pct { font-size: 1rem; }
}

@media (prefers-reduced-motion: no-preference) {
  .hero-bento__glow {
    animation: hero-mockup-pulse 4s ease-in-out infinite;
  }

  .hero-bento__ring-pct {
    animation: hero-mockup-blink 2.5s ease-in-out infinite;
  }
}

/* Hero mockup — browser + phone (legacy) */
.hero__visual {
  position: relative;
  min-height: 280px;
}

@media (min-width: 1024px) {
  .hero__visual { min-height: 360px; }
}

.hero-mockup {
  position: relative;
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
}

@media (min-width: 1024px) {
  .hero-mockup { max-width: none; margin: 0; }
}

.hero-mockup__glow {
  position: absolute;
  inset: 10% 5% 20% 10%;
  background: radial-gradient(ellipse at 40% 50%, rgba(74, 222, 128, 0.22) 0%, transparent 65%);
  filter: blur(28px);
  pointer-events: none;
  z-index: 0;
}

.hero-mockup__browser {
  position: relative;
  z-index: 1;
  border-radius: var(--ut-radius-lg);
  background: linear-gradient(160deg, #1a2520 0%, #0f1614 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.4),
    0 28px 56px rgba(0, 0, 0, 0.55),
    0 0 80px rgba(34, 197, 94, 0.08);
  overflow: hidden;
}

.hero-mockup__app {
  padding: 1rem 1rem 1rem;
}

.hero-mockup__topbar {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.85rem;
}

.hero-mockup__logo {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--ut-accent) 0%, var(--ut-accent-deep) 100%);
  flex-shrink: 0;
  box-shadow: 0 0 12px rgba(74, 222, 128, 0.35);
}

.hero-mockup__nav {
  height: 6px;
  width: 28px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.1);
}

.hero-mockup__nav--short { width: 18px; }

.hero-mockup__avatar {
  width: 18px;
  height: 18px;
  margin-left: auto;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-mockup__cta {
  width: 36px;
  height: 18px;
  border-radius: 5px;
  background: linear-gradient(180deg, #6ee7a0 0%, var(--ut-accent-deep) 100%);
  box-shadow: 0 2px 8px rgba(74, 222, 128, 0.35);
}

.hero-mockup__panel {
  position: relative;
  padding: 1rem;
  margin-bottom: 0.75rem;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(74, 222, 128, 0.18);
  overflow: hidden;
}

.hero-mockup__panel-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(74, 222, 128, 0.18) 0%, transparent 70%);
  pointer-events: none;
}

.hero-mockup__upgrade {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 0.65rem;
}

.hero-mockup__skin {
  position: relative;
  width: 28%;
  aspect-ratio: 4/5;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.hero-mockup__skin--in {
  background: linear-gradient(145deg, #1e3a2f 0%, #122820 100%);
}

.hero-mockup__skin--out {
  background: linear-gradient(145deg, #1a4d32 0%, #0f2e1e 100%);
  border-color: rgba(74, 222, 128, 0.4);
  box-shadow: 0 0 16px rgba(74, 222, 128, 0.18);
}

.hero-mockup__skin-tag {
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.45);
  white-space: nowrap;
}

.hero-mockup__arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  color: var(--ut-accent);
  font-size: 1.1rem;
  line-height: 1;
}

.hero-mockup__arrow::before {
  content: "→";
  font-weight: 700;
}

.hero-mockup__chance {
  font-size: 0.625rem;
  font-weight: 800;
  padding: 0.15rem 0.4rem;
  border-radius: 4px;
  background: var(--ut-accent-muted);
  border: 1px solid var(--ut-border-accent);
  color: var(--ut-accent);
}

.hero-mockup__bar {
  position: relative;
  height: 4px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.hero-mockup__bar span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--ut-accent-deep), var(--ut-accent));
  box-shadow: 0 0 8px rgba(74, 222, 128, 0.5);
}

.hero-mockup__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.45rem;
}

.hero-mockup__card {
  aspect-ratio: 1;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
  overflow: hidden;
}

.hero-mockup__card::after {
  content: "";
  position: absolute;
  inset: 20% 25% 30%;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.06);
  transform: skewX(-8deg);
}

.hero-mockup__card--b { background: linear-gradient(160deg, #1e3a5f 0%, #122540 100%); }
.hero-mockup__card--p { background: linear-gradient(160deg, #1a3d2e 0%, #0f251c 100%); }
.hero-mockup__card--r { background: linear-gradient(160deg, #2d4a28 0%, #1a2e16 100%); }
.hero-mockup__card--g {
  background: linear-gradient(160deg, #1f4d38 0%, #142e22 100%);
  border-color: rgba(74, 222, 128, 0.25);
}

.hero-mockup__phone {
  position: absolute;
  right: -4%;
  bottom: -6%;
  width: 32%;
  z-index: 2;
  padding: 6px;
  border-radius: 1.25rem;
  background: linear-gradient(160deg, #1a2520 0%, #0f1614 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    0 16px 40px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(0, 0, 0, 0.3);
}

@media (max-width: 640px) {
  .hero-mockup__phone {
    right: 0;
    bottom: -4%;
    width: 36%;
  }
}

.hero-mockup__phone-notch {
  width: 28%;
  height: 4px;
  margin: 0 auto 4px;
  border-radius: 2px;
  background: rgba(0, 0, 0, 0.5);
}

.hero-mockup__phone-screen {
  padding: 0.5rem;
  border-radius: 0.9rem;
  background: linear-gradient(180deg, #0f1a16 0%, #0a1210 100%);
}

.hero-mockup__phone-bar {
  height: 5px;
  width: 55%;
  margin-bottom: 0.5rem;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.1);
}

.hero-mockup__phone-panel {
  height: 36px;
  margin-bottom: 0.45rem;
  border-radius: 6px;
  background: linear-gradient(135deg, rgba(74, 222, 128, 0.15) 0%, rgba(74, 222, 128, 0.04) 100%);
  border: 1px solid rgba(74, 222, 128, 0.22);
}

.hero-mockup__phone-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.35rem;
}

.hero-mockup__phone-grid span {
  aspect-ratio: 1;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.hero-mockup__phone-grid span:nth-child(2) {
  background: linear-gradient(160deg, rgba(74, 222, 128, 0.12) 0%, rgba(74, 222, 128, 0.03) 100%);
  border-color: rgba(74, 222, 128, 0.18);
}

@media (prefers-reduced-motion: no-preference) {
  .hero-mockup__glow {
    animation: hero-mockup-pulse 4s ease-in-out infinite;
  }

  .hero-mockup__chance {
    animation: hero-mockup-blink 2.5s ease-in-out infinite;
  }
}

@keyframes hero-mockup-pulse {
  0%, 100% { opacity: 0.85; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.03); }
}

@keyframes hero-mockup-blink {
  0%, 100% { box-shadow: 0 0 0 rgba(74, 222, 128, 0); }
  50% { box-shadow: 0 0 10px rgba(74, 222, 128, 0.35); }
}

/* ─── Stats grid ─── */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 768px) {
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
}

.stat-card {
  padding: 1.5rem;
  text-align: left;
}

.stat-card__value {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--ut-text);
  letter-spacing: -0.02em;
  margin-bottom: 0.25rem;
}

.stat-card__label {
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ut-text-dim);
}

/* ─── Steps ─── */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

@media (min-width: 768px) {
  .steps-grid { grid-template-columns: repeat(3, 1fr); }
}

.step-card { text-align: center; }

.step-card__num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--ut-accent-muted);
  color: var(--ut-accent);
  font-size: 1.25rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}

/* ─── Features 3-col ─── */
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .features-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ─── Wins grid ─── */
.wins-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .wins-grid { grid-template-columns: repeat(3, 1fr); }
}

.win-card--highlight {
  background: var(--ut-accent-muted);
  border-color: var(--ut-border-accent);
}

/* ─── FAQ ─── */
.faq-list { max-width: 40rem; margin: 0 auto; }

.faq-item {
  border-bottom: 1px solid var(--ut-border);
  padding-bottom: 0.25rem;
  margin-bottom: 0.25rem;
}

.faq-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1rem 0;
  background: none;
  border: none;
  color: var(--ut-text-muted);
  font-size: 1rem;
  font-weight: 600;
  font-family: inherit;
  text-align: left;
  cursor: pointer;
  transition: color 0.15s;
}

.faq-button:hover { color: var(--ut-text); }

.faq-icon {
  font-size: 1.25rem;
  color: var(--ut-text-dim);
  transition: transform 0.25s;
  flex-shrink: 0;
  margin-left: 1rem;
}

.faq-icon.open { transform: rotate(45deg); }

.faq-content {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, opacity 0.3s ease;
  font-size: 0.875rem;
  color: var(--ut-text-dim);
  line-height: 1.65;
}

.faq-content.open {
  max-height: 600px;
  opacity: 1;
  padding-bottom: 1rem;
}

/* ─── SEO text block ─── */
.seo-block {
  padding: 4rem 0;
  background: var(--ut-bg-elevated);
  border-top: 1px solid var(--ut-border);
}

.seo-block__inner {
  max-width: 48rem;
}

.seo-block h2 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--ut-text);
  margin: 0 0 1.5rem;
  letter-spacing: -0.02em;
}

.seo-block h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--ut-text);
  margin: 2rem 0 0.75rem;
}

.seo-block p {
  font-size: 0.9375rem;
  color: var(--ut-text-muted);
  line-height: 1.75;
  margin: 0 0 1rem;
}

.seo-block a {
  color: var(--ut-accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.seo-block a:hover { color: var(--ut-accent-hover); }

/* ─── Prose (internal pages) ─── */
.internal-page {
  padding-top: calc(var(--ut-header-h) + 2rem);
  padding-bottom: 4rem;
  min-height: 60vh;
}

.internal-page h1 {
  font-size: clamp(1.75rem, 4vw, 2.375rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ut-text);
  margin: 0 0 1rem;
  line-height: 1.15;
}

.internal-page .lead {
  font-size: 1.0625rem;
  color: var(--ut-text-muted);
  margin-bottom: 2rem;
  max-width: 40rem;
  line-height: 1.65;
}

.internal-page .prose {
  color: var(--ut-text-muted);
  line-height: 1.75;
  max-width: 48rem;
}

.internal-page .prose h2 {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--ut-text);
  margin: 2.25rem 0 0.875rem;
}

.internal-page .prose h3 {
  font-size: 1.0625rem;
  font-weight: 600;
  color: #e4e4e7;
  margin: 1.5rem 0 0.625rem;
}

.internal-page .prose p { margin-bottom: 1rem; }

.internal-page .prose ul,
.internal-page .prose ol {
  margin: 0.75rem 0 1rem 1.25rem;
  padding: 0;
}

.internal-page .prose li { margin-bottom: 0.4rem; }

.internal-page .prose a {
  color: var(--ut-accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.internal-page .prose a:hover { color: var(--ut-accent-hover); }

.internal-page .prose strong {
  color: var(--ut-text);
  font-weight: 600;
}

/* Blog cards */
.blog-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.internal-page .prose .blog-list a.blog-card {
  text-decoration: none;
  color: inherit;
}

.blog-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.125rem;
  padding: 1.125rem 1.25rem;
  border-radius: var(--ut-radius-lg);
  background: var(--ut-bg-card);
  border: 1px solid var(--ut-border);
  transition: border-color 0.2s, background 0.2s, transform 0.15s;
}

.blog-card:hover {
  border-color: var(--ut-border-accent);
  background: var(--ut-bg-card-hover);
  transform: translateX(3px);
}

.blog-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  flex-shrink: 0;
  background: rgba(74, 222, 128, 0.1);
  border: 1px solid rgba(74, 222, 128, 0.2);
  color: var(--ut-accent);
}

.blog-card__icon--shield {
  background: rgba(96, 165, 250, 0.1);
  border-color: rgba(96, 165, 250, 0.22);
  color: #60a5fa;
}

.blog-card__icon--guide {
  background: rgba(251, 191, 36, 0.1);
  border-color: rgba(251, 191, 36, 0.22);
  color: #fbbf24;
}

.blog-card__content {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  min-width: 0;
}

.blog-card__tag {
  display: inline-block;
  width: fit-content;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ut-accent);
}

.blog-card__tag--shield { color: #60a5fa; }
.blog-card__tag--guide { color: #fbbf24; }

.blog-card__title {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: var(--ut-text);
  line-height: 1.35;
  letter-spacing: -0.01em;
}

.blog-card__excerpt {
  display: block;
  font-size: 0.8125rem;
  color: var(--ut-text-dim);
  line-height: 1.55;
}

.blog-card__arrow {
  flex-shrink: 0;
  font-size: 1.125rem;
  color: var(--ut-text-dim);
  transition: color 0.15s, transform 0.15s;
}

.blog-card:hover .blog-card__arrow {
  color: var(--ut-accent);
  transform: translateX(2px);
}

@media (max-width: 640px) {
  .blog-card {
    grid-template-columns: auto 1fr;
    gap: 1rem;
  }

  .blog-card__arrow {
    display: none;
  }
}

/* Legacy alias */
.blog-grid {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

@media (min-width: 640px) {
  .blog-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
}

.blog-card h2 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--ut-text);
  margin: 0 0 0.35rem;
}

.blog-card p {
  font-size: 0.8125rem;
  color: var(--ut-text-dim);
  margin: 0;
  line-height: 1.55;
}

.sitemap-list {
  columns: 2;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

@media (max-width: 640px) {
  .sitemap-list { columns: 1; }
}

.sitemap-list li { margin-bottom: 0.5rem; break-inside: avoid; }

.sitemap-list a {
  font-size: 0.875rem;
  color: var(--ut-text-muted);
}

.sitemap-list a:hover { color: var(--ut-accent); }

.seo-nav {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.seo-nav ul { list-style: none; margin: 0; padding: 0; }

/* Utility */
.text-prose { color: var(--ut-text-muted); line-height: 1.7; }
.text-prose strong { color: var(--ut-text); }
.text-prose p { margin-bottom: 1rem; }
.text-prose p:last-child { margin-bottom: 0; }

.prose-narrow { max-width: 48rem; margin: 0 auto; }

.prose-narrow h2 {
  font-size: clamp(1.5rem, 3vw, 2.125rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ut-text);
  margin: 0 0 1.25rem;
  line-height: 1.2;
}

.text-prose a {
  color: var(--ut-accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.text-prose a:hover { color: var(--ut-accent-hover); }

.step-card h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--ut-text);
  margin: 0 0 0.625rem;
}

.step-card p {
  font-size: 0.875rem;
  color: var(--ut-text-muted);
  line-height: 1.65;
  margin: 0;
}

.breadcrumbs { /* legacy alias */ }
.breadcrumbs,
.ut-breadcrumbs {
  font-size: 0.8125rem;
  color: var(--ut-text-dim);
  margin-bottom: 1.25rem;
}

.breadcrumbs a,
.ut-breadcrumbs a {
  color: var(--ut-text-muted);
  transition: color 0.15s;
}

.breadcrumbs a:hover,
.ut-breadcrumbs a:hover { color: var(--ut-text); }

.breadcrumbs span,
.ut-breadcrumbs span { margin: 0 0.4rem; color: #52525b; }

.selection-accent::selection {
  background: rgba(74, 222, 128, 0.3);
}

body.selection-accent,
body { /* selection */ }
body ::selection {
  background: rgba(74, 222, 128, 0.28);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.compare-table-wrap {
  margin-top: 2rem;
  overflow-x: auto;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9375rem;
}

.compare-table th,
.compare-table td {
  padding: 0.875rem 1rem;
  border: 1px solid var(--ut-border);
  text-align: left;
  vertical-align: top;
}

.compare-table thead th {
  background: var(--ut-bg-elevated);
  color: var(--ut-text);
  font-weight: 700;
}

.compare-table tbody th[scope="row"] {
  color: var(--ut-text);
  font-weight: 600;
  background: rgba(255, 255, 255, 0.02);
}

.compare-table td {
  color: var(--ut-text-muted);
}

/* ─── Upgrade Battle SaaS extras ─── */
.glass-card {
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.stat-card {
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--ut-accent), transparent);
  opacity: 0.6;
}

.ut-card,
.glass-card {
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
}

.hero-mockup__skin-tag {
  color: rgba(236, 253, 245, 0.55);
}

.site-header {
  box-shadow: 0 1px 0 rgba(74, 222, 128, 0.06);
}

/* ─── Zone bridge (hero → gray) ─── */
.zone-bridge {
  height: 96px;
  background: linear-gradient(
    180deg,
    #0a1210 0%,
    #0e1114 18%,
    #13151a 42%,
    #181920 68%,
    var(--ut-gray-bg) 100%
  );
  position: relative;
}

.zone-bridge::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 55% 90% at 50% 0%,
    rgba(34, 197, 94, 0.045) 0%,
    transparent 72%
  );
  pointer-events: none;
}

/* ─── Gray page zone ─── */
.page-zone--gray {
  background: var(--ut-gray-bg);
  color: var(--ut-gray-text);
  position: relative;
  margin-top: 0;
  padding-top: 0;
}

.page-zone--gray::before {
  display: none;
}

.page-zone--gray > .ut-section:first-child,
.page-zone--gray > .ut-section.ut-section--gray:first-child {
  border-top: none;
  padding-top: 4rem;
  position: relative;
  z-index: 1;
}

.page-zone--gray .ut-section--gray {
  background: var(--ut-gray-bg);
  border-top: none;
  border-bottom: none;
}

.page-zone--gray .ut-section--gray-deep {
  background: var(--ut-gray-bg-deep);
  border-top: none;
  border-bottom: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.page-zone--gray .ut-section__head h2,
.page-zone--gray .section-title-block h2,
.page-zone--gray .prose-narrow h2 {
  color: var(--ut-gray-text);
}

.page-zone--gray .ut-section__head p,
.page-zone--gray .text-prose,
.page-zone--gray .text-prose--soft {
  color: var(--ut-gray-text-muted);
}

.page-zone--gray .text-prose strong {
  color: var(--ut-gray-text);
}

.page-zone--gray .ut-section__head a,
.page-zone--gray .text-prose a {
  color: var(--ut-accent);
}

.page-zone--gray .stat-card--gray {
  background: var(--ut-gray-bg-card);
  border-color: var(--ut-gray-border);
}

.page-zone--gray .stat-card--gray:hover {
  background: var(--ut-gray-bg-card-hover);
  border-color: rgba(74, 222, 128, 0.2);
}

.page-zone--gray .stat-card__value {
  color: var(--ut-gray-text);
}

.page-zone--gray .stat-card__label {
  color: var(--ut-gray-text-dim);
}

.page-zone--gray .faq-button {
  color: var(--ut-gray-text-muted);
}

.page-zone--gray .faq-button:hover {
  color: var(--ut-gray-text);
}

.page-zone--gray .faq-content {
  color: var(--ut-gray-text-dim);
}

.page-zone--gray .faq-item {
  border-bottom-color: var(--ut-gray-border);
}

/* ─── Section title block ─── */
.section-title-block {
  margin-bottom: 1.75rem;
}

.section-title-block--center {
  text-align: center;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2rem;
}

.section-title-block__tag {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ut-accent);
  margin-bottom: 0.625rem;
  padding: 0.25rem 0.625rem;
  border-radius: 4px;
  background: rgba(74, 222, 128, 0.08);
  border: 1px solid rgba(74, 222, 128, 0.15);
}

.section-title-block__tag--center {
  display: block;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.page-zone--gray .section-title-block__tag {
  color: #86efac;
  background: rgba(74, 222, 128, 0.1);
}

.section-title-block h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.25;
  color: var(--ut-text);
  margin: 0;
}

.page-zone--gray .section-title-block h2 {
  color: var(--ut-gray-text);
}

.text-prose--soft {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--ut-text-muted);
}

.text-prose--soft p {
  margin-bottom: 1.125rem;
}

.text-prose--soft p:last-child {
  margin-bottom: 0;
}

.text-prose--soft p:last-child {
  margin-bottom: 0;
}

.text-prose--soft h3 {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--ut-gray-text);
  margin: 1.5rem 0 0.625rem;
}

.page-zone--gray .text-prose--soft h3 {
  color: var(--ut-gray-text);
}

.page-zone--gray .text-prose--soft {
  color: var(--ut-gray-text-muted);
}

/* ─── Rules grid ─── */
.rules-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .rules-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .rules-grid { grid-template-columns: repeat(4, 1fr); }
}

.rules-card {
  padding: 1.25rem;
  border-radius: var(--ut-radius);
  background: var(--ut-gray-bg-card);
  border: 1px solid var(--ut-gray-border);
  transition: border-color 0.2s;
}

.rules-card:hover {
  border-color: rgba(74, 222, 128, 0.22);
}

.rules-card__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 8px;
  background: rgba(74, 222, 128, 0.12);
  color: var(--ut-accent);
  font-size: 0.875rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.rules-card h3 {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--ut-gray-text);
  margin: 0 0 0.5rem;
  line-height: 1.35;
}

.rules-card p {
  font-size: 0.8125rem;
  color: var(--ut-gray-text-muted);
  line-height: 1.6;
  margin: 0;
}

.rules-card a {
  color: var(--ut-accent);
}

.page-zone--gray .faq-content a {
  color: var(--ut-accent);
}

/* ─── Timeline steps ─── */
.timeline-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 52rem;
  margin: 0 auto;
}

.timeline-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.25rem;
  position: relative;
  padding-bottom: 2rem;
}

.timeline-step:last-child {
  padding-bottom: 0;
}

.timeline-step:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 23px;
  top: 48px;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, rgba(74, 222, 128, 0.35), rgba(255, 255, 255, 0.06));
}

.timeline-step__marker {
  flex-shrink: 0;
}

.timeline-step__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--ut-gray-bg-card);
  border: 1px solid var(--ut-gray-border);
  color: var(--ut-accent);
}

.timeline-step__body {
  padding: 0.25rem 1.25rem 1.25rem;
  border-radius: var(--ut-radius);
  background: var(--ut-gray-bg-card);
  border: 1px solid var(--ut-gray-border);
  transition: border-color 0.2s;
}

.timeline-step__body:hover {
  border-color: rgba(74, 222, 128, 0.22);
}

.timeline-step__num {
  display: block;
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--ut-accent);
  margin-bottom: 0.35rem;
  opacity: 0.85;
}

.timeline-step__body h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--ut-gray-text);
  margin: 0 0 0.5rem;
}

.timeline-step__body p {
  font-size: 0.875rem;
  color: var(--ut-gray-text-muted);
  line-height: 1.65;
  margin: 0;
}

.timeline-step__body a {
  color: var(--ut-accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

@media (min-width: 768px) {
  .timeline-steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
    max-width: none;
    align-items: stretch;
  }

  .timeline-step {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding-bottom: 0;
    text-align: center;
    height: 100%;
  }

  .timeline-step:not(:last-child)::before {
    display: none;
  }

  .timeline-step__marker {
    display: flex;
    justify-content: center;
    flex-shrink: 0;
  }

  .timeline-step__body {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 1.25rem 1rem;
    min-height: 100%;
  }

  .timeline-step__body p {
    flex: 1;
  }
}

/* ─── Compare cards (replaces table) ─── */
.compare-cards {
  margin-top: 2.5rem;
  border-radius: var(--ut-radius-lg);
  overflow: hidden;
  border: 1px solid var(--ut-gray-border);
  background: var(--ut-gray-bg-card);
}

.compare-cards__header,
.compare-cards__row {
  display: grid;
  grid-template-columns: 1.1fr 1.4fr 1.4fr;
  gap: 0;
}

.compare-cards__header {
  background: rgba(0, 0, 0, 0.25);
  border-bottom: 1px solid var(--ut-gray-border);
}

.compare-cards__row {
  border-bottom: 1px solid var(--ut-gray-border);
}

.compare-cards__row:last-child {
  border-bottom: none;
}

.compare-cards__label,
.compare-cards__col {
  padding: 1rem 1.125rem;
  font-size: 0.875rem;
  line-height: 1.5;
}

.compare-cards__header .compare-cards__label,
.compare-cards__header .compare-cards__col {
  font-weight: 700;
  font-size: 0.8125rem;
  color: var(--ut-gray-text);
}

.compare-cards__row .compare-cards__label {
  font-weight: 600;
  color: var(--ut-gray-text);
  background: rgba(0, 0, 0, 0.15);
}

.compare-cards__row .compare-cards__col {
  color: var(--ut-gray-text-muted);
}

.compare-cards__col--accent {
  color: var(--ut-gray-text-muted);
  border-left: 2px solid rgba(74, 222, 128, 0.35);
  background: rgba(74, 222, 128, 0.04);
}

.compare-cards__header .compare-cards__col--accent {
  color: var(--ut-accent);
  background: rgba(74, 222, 128, 0.08);
}

@media (max-width: 640px) {
  .compare-cards__header {
    display: none;
  }

  .compare-cards__row {
    grid-template-columns: 1fr;
    padding: 1rem 1.125rem;
    gap: 0.5rem;
  }

  .compare-cards__row .compare-cards__label {
    background: none;
    padding: 0;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--ut-gray-text-dim);
  }

  .compare-cards__row .compare-cards__col {
    padding: 0.25rem 0 0.75rem;
    border-left: none;
    background: none;
  }

  .compare-cards__row .compare-cards__col--accent::before {
    content: "Upgrade Battle: ";
    font-weight: 600;
    color: var(--ut-accent);
  }

  .compare-cards__row .compare-cards__col:not(.compare-cards__col--accent)::before {
    content: "Трейд: ";
    font-weight: 600;
    color: var(--ut-gray-text-dim);
  }
}

/* ─── SEO block gray ─── */
.seo-block--gray-deep {
  background: var(--ut-gray-bg-deep);
  border-top: 1px solid var(--ut-gray-border);
}

.seo-block--gray-deep h2,
.seo-block--gray-deep .section-title-block h2 {
  color: var(--ut-gray-text);
  margin: 0;
}

.seo-block--gray-deep h3 {
  color: var(--ut-gray-text);
  font-size: 1rem;
  font-weight: 600;
  margin: 1.75rem 0 0.625rem;
}

.seo-block__prose p {
  font-size: 0.9375rem;
  color: var(--ut-gray-text-muted);
  line-height: 1.75;
  margin: 0 0 1rem;
}

.seo-block--gray-deep a {
  color: var(--ut-accent);
}
