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

:root {
  --blue: #0095da;
  --blue-bright: #33b5f0;
  --blue-light: #7dd3fc;
  --blue-glow: rgba(0, 149, 218, 0.45);
  --orange: #ff4f00;
  --orange-bright: #ff6b2b;
  --orange-glow: rgba(255, 79, 0, 0.4);
  --bg-deep: #050d18;
  --bg: #071222;
  --glass: rgba(255, 255, 255, 0.04);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-strong: rgba(255, 255, 255, 0.07);
  --text: rgba(255, 255, 255, 0.92);
  --text-soft: rgba(255, 255, 255, 0.62);
  --text-muted: rgba(255, 255, 255, 0.42);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-cinema: cubic-bezier(0.16, 1, 0.3, 1);
  --glass-blur: 24px;
  --glass-opacity: 0.06;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Vazirmatn', Tahoma, sans-serif;
  background: var(--bg-deep);
  min-height: 100vh;
  direction: rtl;
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  touch-action: manipulation;
  overscroll-behavior-y: contain;
}

/* ── Ambient background ── */
.ambient {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.ambient__mesh {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 60% at 10% -10%, rgba(0, 149, 218, 0.28) 0%, transparent 55%),
    radial-gradient(ellipse 70% 50% at 95% 20%, rgba(255, 79, 0, 0.18) 0%, transparent 50%),
    radial-gradient(ellipse 60% 40% at 50% 100%, rgba(0, 100, 180, 0.15) 0%, transparent 50%),
    linear-gradient(180deg, #050d18 0%, #071222 40%, #0a1830 100%);
}

.ambient__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: orbDrift 20s ease-in-out infinite;
}
.ambient__orb--1 {
  width: 420px; height: 420px;
  background: rgba(0, 149, 218, 0.22);
  top: -120px; right: -100px;
  animation-delay: 0s;
}
.ambient__orb--2 {
  width: 360px; height: 360px;
  background: rgba(255, 79, 0, 0.16);
  bottom: -80px; left: -80px;
  animation-delay: -7s;
  animation-duration: 24s;
}
.ambient__orb--3 {
  width: 200px; height: 200px;
  background: rgba(51, 181, 240, 0.12);
  top: 45%; left: 30%;
  animation-delay: -12s;
  animation-duration: 16s;
}

@keyframes orbDrift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.05); }
  66% { transform: translate(-20px, 15px) scale(0.95); }
}

.ambient__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, black 0%, transparent 100%);
}

.ambient__noise {
  position: absolute;
  inset: 0;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 128px 128px;
}

/* ── Scroll progress ── */
.scroll-progress {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 3px;
  z-index: 100;
  background: rgba(255,255,255,0.04);
}
.scroll-progress__bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--blue), var(--orange));
  border-radius: 0 2px 2px 0;
  transition: width 0.1s linear;
  box-shadow: 0 0 12px var(--blue-glow);
}

/* ── Layout ── */
.page {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  padding: 24px 20px 48px;
  animation: pageReveal 0.8s var(--ease) both;
  overflow-x: clip;
}

@keyframes pageReveal {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ── Header ── */
.site-header {
  position: sticky;
  top: 12px;
  z-index: 50;
  margin-bottom: 28px;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 20px;
  background: rgba(7, 18, 34, 0.65);
  backdrop-filter: blur(24px) saturate(1.4);
  -webkit-backdrop-filter: blur(24px) saturate(1.4);
  border: 1px solid var(--glass-border);
  border-radius: 999px;
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.logo-img {
  height: 32px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}

.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  color: #ffb899;
  background: linear-gradient(135deg, rgba(255,79,0,0.22), rgba(255,79,0,0.08));
  border: 1px solid rgba(255, 107, 43, 0.35);
  box-shadow: 0 0 24px rgba(255, 79, 0, 0.15), inset 0 1px 0 rgba(255,255,255,0.08);
}

.live-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--orange-bright);
  box-shadow: 0 0 10px var(--orange-glow);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 10px var(--orange-glow); }
  50% { opacity: 0.5; transform: scale(0.8); box-shadow: 0 0 4px var(--orange-glow); }
}

/* ── Hero ── */
.hero {
  position: relative;
  margin-bottom: 32px;
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.hero__glow {
  position: absolute;
  inset: -1px;
  border-radius: calc(var(--radius-xl) + 1px);
  background: linear-gradient(135deg, rgba(0,149,218,0.5), rgba(255,79,0,0.3), rgba(0,149,218,0.2));
  z-index: 0;
  animation: borderGlow 6s ease-in-out infinite;
}

@keyframes borderGlow {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

.hero__inner {
  position: relative;
  z-index: 1;
  padding: 36px 32px 32px;
  background:
    linear-gradient(160deg, rgba(12, 28, 56, 0.88) 0%, rgba(8, 20, 42, 0.94) 100%);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
  backdrop-filter: blur(var(--glass-blur)) saturate(1.5);
  -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(1.5);
  box-shadow:
    0 24px 80px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.hero__inner::before {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(0,149,218,0.15) 0%, transparent 65%);
  pointer-events: none;
}

.hero__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
}

.hero__content { flex: 1; min-width: 0; }

.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  margin-bottom: 18px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--blue-light);
  background: rgba(0, 149, 218, 0.12);
  border: 1px solid rgba(0, 149, 218, 0.25);
  border-radius: 999px;
  box-shadow: 0 0 20px rgba(0, 149, 218, 0.08);
}

.hero__tag-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--blue-bright);
  box-shadow: 0 0 8px var(--blue-glow);
}

.hero__title {
  font-size: clamp(28px, 6vw, 42px);
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
  color: #fff;
}

.hero__title-accent {
  display: inline-block;
  background: linear-gradient(135deg, #fff 0%, var(--blue-light) 40%, var(--blue) 70%, var(--orange-bright) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 4s linear infinite;
}

@keyframes shimmer {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}

.hero__sub {
  font-size: 14px;
  line-height: 1.85;
  color: var(--text-soft);
  max-width: 420px;
}

.hero__visual {
  flex-shrink: 0;
  width: 120px;
  height: 120px;
  position: relative;
  overflow: hidden;
}

.phone-mock {
  width: 100%;
  height: 100%;
  animation: floatPhone 5s ease-in-out infinite;
}

@keyframes floatPhone {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-10px) rotate(2deg); }
}

.phone-mock__body {
  fill: rgba(255,255,255,0.06);
  stroke: rgba(0,149,218,0.4);
  stroke-width: 1.5;
}

.phone-mock__screen {
  fill: url(#screenGrad);
}

.phone-mock__shield {
  filter: drop-shadow(0 4px 12px rgba(0,149,218,0.4));
  animation: shieldGlow 3s ease-in-out infinite;
}

@keyframes shieldGlow {
  0%, 100% { opacity: 0.85; }
  50% { opacity: 1; filter: drop-shadow(0 4px 20px rgba(0,149,218,0.6)); }
}

/* ── Stats ── */
.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  min-width: 0;
}

.stat-box {
  position: relative;
  padding: 20px 14px 18px;
  text-align: center;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--glass-border);
  overflow: hidden;
  min-width: 0;
  transition: transform 0.35s var(--ease-cinema), border-color 0.3s, box-shadow 0.35s;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.stat-box--hero {
  grid-column: span 1;
  background: linear-gradient(145deg, rgba(0,149,218,0.12) 0%, rgba(255,255,255,0.03) 100%);
  border-color: rgba(0, 149, 218, 0.22);
}

.stat-glow {
  position: absolute;
  inset: -20%;
  background: radial-gradient(circle at 50% 0%, rgba(0,149,218,0.25) 0%, transparent 60%);
  pointer-events: none;
  opacity: 0.8;
}

.stat-box--hero .stat-val {
  font-size: 32px;
  background: linear-gradient(135deg, #fff 0%, var(--blue-light) 50%, var(--blue) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: none;
}

/* ── Trust bar ── */
.trust-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-soft);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  transition: border-color 0.25s, background 0.25s, transform 0.25s var(--ease-cinema);
}

.trust-item svg {
  width: 14px;
  height: 14px;
  color: var(--blue-bright);
  flex-shrink: 0;
}

.trust-item:hover {
  background: rgba(0,149,218,0.08);
  border-color: rgba(0,149,218,0.2);
  transform: translateY(-1px);
}

/* ── Scroll reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease-cinema), transform 0.7s var(--ease-cinema);
}

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

.card.reveal { transition-delay: calc(var(--reveal-i, 0) * 0.04s); }
.card:nth-child(1).reveal  { --reveal-i: 1; }
.card:nth-child(2).reveal  { --reveal-i: 2; }
.card:nth-child(3).reveal  { --reveal-i: 3; }
.card:nth-child(4).reveal  { --reveal-i: 4; }
.card:nth-child(5).reveal  { --reveal-i: 5; }
.card:nth-child(6).reveal  { --reveal-i: 6; }
.card:nth-child(7).reveal  { --reveal-i: 7; }
.card:nth-child(8).reveal  { --reveal-i: 8; }
.card:nth-child(9).reveal  { --reveal-i: 9; }
.card:nth-child(10).reveal { --reveal-i: 10; }
.card:nth-child(11).reveal { --reveal-i: 11; }

/* ── FAB ── */
.fab-close {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(80px);
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border: none;
  border-radius: 999px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 800;
  color: #fff;
  cursor: pointer;
  background: linear-gradient(135deg, var(--orange) 0%, #e04400 100%);
  box-shadow: 0 12px 40px rgba(255, 79, 0, 0.45), inset 0 1px 0 rgba(255,255,255,0.2);
  transition: transform 0.45s var(--ease-spring), opacity 0.3s, box-shadow 0.3s;
  opacity: 0;
  pointer-events: none;
}

.fab-close.is-visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.fab-close:hover {
  transform: translateX(-50%) translateY(-4px);
  box-shadow: 0 20px 50px rgba(255, 79, 0, 0.55);
}

.fab-close svg { width: 18px; height: 18px; }

.fab-close:focus-visible {
  outline: 2px solid rgba(255,255,255,0.5);
  outline-offset: 3px;
}

.fab-close[hidden]:not(.is-visible) { display: none; }

.stat-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.04) 0%, transparent 50%);
  pointer-events: none;
}

.stat-box::after {
  content: '';
  position: absolute;
  top: 0; left: 20%; right: 20%;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, transparent, var(--blue), transparent);
  opacity: 0.7;
}

.stat-box.accent-box::after {
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
}

.stat-box:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 149, 218, 0.25);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(0,149,218,0.1);
}

.stat-box.accent-box:hover {
  border-color: rgba(255, 79, 0, 0.25);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(255,79,0,0.1);
}

.stat-icon-wrap {
  width: 40px; height: 40px;
  margin: 0 auto 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(0, 149, 218, 0.12);
  border: 1px solid rgba(0, 149, 218, 0.2);
  color: var(--blue-bright);
}

.stat-icon-wrap svg {
  width: 20px; height: 20px;
}

.stat-box.accent-box .stat-icon-wrap {
  background: rgba(255, 79, 0, 0.12);
  border-color: rgba(255, 79, 0, 0.2);
  color: var(--orange-bright);
}

.stat-val {
  display: block;
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
  color: var(--blue-bright);
  margin-bottom: 6px;
  text-shadow: 0 0 30px rgba(0, 149, 218, 0.3);
}

.stat-val.accent {
  color: var(--orange-bright);
  text-shadow: 0 0 30px rgba(255, 79, 0, 0.3);
}

.stat-desc {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  line-height: 1.5;
  overflow-wrap: anywhere;
  word-break: break-word;
  hyphens: auto;
}

/* ── Sections header ── */
.sections-block {
  margin-bottom: 20px;
}

.sections-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.sections-title-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

.sections-badge {
  width: 36px; height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 800;
  color: var(--blue-bright);
  background: rgba(0, 149, 218, 0.12);
  border: 1px solid rgba(0, 149, 218, 0.22);
}

.sections-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-soft);
  line-height: 1.4;
  min-width: 0;
  overflow-wrap: anywhere;
}

.sections-label span {
  display: block;
  font-size: 11px;
  font-weight: 500;
  color: var(--text-muted);
  margin-top: 2px;
}

.sections-actions {
  display: flex;
  gap: 8px;
}

.btn-ghost {
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 11.5px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  color: var(--text-soft);
  background: var(--glass);
  border: 1px solid var(--glass-border);
  transition: all 0.25s var(--ease);
}

.btn-ghost:hover {
  color: var(--blue-light);
  background: rgba(0, 149, 218, 0.1);
  border-color: rgba(0, 149, 218, 0.25);
  transform: translateY(-1px);
}

.btn-ghost:focus-visible {
  outline: 2px solid rgba(0, 149, 218, 0.5);
  outline-offset: 2px;
}

/* ── Accordion cards ── */
.sections-wrap {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card {
  position: relative;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--glass-border);
  overflow: hidden;
  transition: border-color 0.35s var(--ease-cinema), box-shadow 0.35s, transform 0.35s var(--ease-cinema);
  -webkit-tap-highlight-color: transparent;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.card:nth-child(1)  { animation-delay: 0.04s; }
.card:nth-child(2)  { animation-delay: 0.07s; }
.card:nth-child(3)  { animation-delay: 0.10s; }
.card:nth-child(4)  { animation-delay: 0.13s; }
.card:nth-child(5)  { animation-delay: 0.16s; }
.card:nth-child(6)  { animation-delay: 0.19s; }
.card:nth-child(7)  { animation-delay: 0.22s; }
.card:nth-child(8)  { animation-delay: 0.25s; }
.card:nth-child(9)  { animation-delay: 0.28s; }
.card:nth-child(10) { animation-delay: 0.31s; }
.card:nth-child(11) { animation-delay: 0.34s; }

.card:hover {
  border-color: rgba(0, 149, 218, 0.2);
  transform: translateY(-2px);
}

.card.open {
  border-color: rgba(0, 149, 218, 0.4);
  background: linear-gradient(160deg, rgba(0, 149, 218, 0.07) 0%, rgba(255,255,255,0.02) 100%);
  box-shadow:
    0 12px 48px rgba(0, 0, 0, 0.25),
    0 0 0 1px rgba(0, 149, 218, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transform: translateY(-2px);
}

.card-head {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  cursor: pointer;
  user-select: none;
  position: relative;
  min-width: 0;
}

.card-head::after {
  content: '';
  position: absolute;
  right: 0; top: 50%;
  transform: translateY(-50%);
  width: 3px; height: 0%;
  border-radius: 3px 0 0 3px;
  background: linear-gradient(to bottom, var(--blue), var(--orange));
  transition: height 0.35s var(--ease);
}

.card.open .card-head::after {
  height: 60%;
}

.card-num {
  width: 32px; height: 32px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 800;
  color: var(--blue-bright);
  background: rgba(0, 149, 218, 0.1);
  border: 1px solid rgba(0, 149, 218, 0.2);
  transition: all 0.3s var(--ease);
}

.card.open .card-num {
  background: linear-gradient(135deg, var(--blue), #0077b6);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 4px 16px var(--blue-glow);
}

.card-icon {
  width: 36px; height: 36px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 11px;
  color: var(--blue-light);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.card-icon svg {
  width: 18px; height: 18px;
}

.card.open .card-icon {
  color: #fff;
  background: rgba(0, 149, 218, 0.2);
  border-color: rgba(0, 149, 218, 0.3);
}

.card-title {
  flex: 1;
  min-width: 0;
  font-size: 14.5px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.45;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.card-arrow {
  width: 32px; height: 32px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.04);
  transition: transform 0.4s var(--ease-spring), background 0.3s, color 0.3s;
}

.card-arrow svg {
  width: 18px; height: 18px;
}

.card.open .card-arrow {
  transform: rotate(180deg);
  background: rgba(0, 149, 218, 0.15);
  color: var(--blue-bright);
}

.card-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.45s var(--ease);
  overflow: hidden;
}

.card.open .card-body { grid-template-rows: 1fr; }

.card-inner {
  overflow: hidden;
  min-height: 0;
  padding: 0 20px;
}

.card.open .card-inner {
  padding: 18px 20px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  animation: contentFade 0.35s var(--ease) both;
  overflow: visible;
}

@keyframes contentFade {
  from { opacity: 0; }
  to { opacity: 1; }
}

.item-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.item-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  font-size: 13.5px;
  line-height: 1.8;
  color: var(--text-soft);
  padding: 10px 14px;
  border-radius: var(--radius-md);
  background: rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.03);
  transition: background 0.2s;
  min-width: 0;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.item-list li:hover {
  background: rgba(0, 149, 218, 0.05);
}

.dot {
  width: 8px; height: 8px;
  margin-top: 9px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 8px var(--blue-glow);
}

.dot.warn {
  background: var(--orange);
  box-shadow: 0 0 8px var(--orange-glow);
}

.highlight {
  color: #ff8a65;
  font-weight: 600;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.text-accent {
  color: var(--blue-light);
  font-weight: 700;
}

.desc-text {
  font-size: 14px;
  line-height: 2;
  color: var(--text-soft);
  padding: 14px 16px;
  border-radius: var(--radius-md);
  background: rgba(0, 0, 0, 0.12);
  border-right: 3px solid var(--blue);
  overflow-wrap: anywhere;
  word-break: break-word;
}

/* ── Exclusions ── */
.excl-card {
  position: relative;
  margin-bottom: 32px;
  padding: 28px 24px;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(145deg, rgba(255,79,0,0.1) 0%, rgba(12,24,48,0.85) 45%, rgba(8,18,36,0.92) 100%);
  border: 1px solid rgba(255, 79, 0, 0.22);
  overflow: hidden;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.2), inset 0 1px 0 rgba(255,255,255,0.04);
}

.excl-card::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(255,79,0,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.excl-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.excl-icon {
  width: 44px; height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  color: var(--orange-bright);
  background: rgba(255, 79, 0, 0.15);
  border: 1px solid rgba(255, 79, 0, 0.25);
}

.excl-icon svg { width: 22px; height: 22px; }

.excl-title {
  font-size: 15px;
  font-weight: 800;
  color: #ff8a65;
  line-height: 1.3;
}

.excl-subtitle {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 2px;
}

.excl-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.excl-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: start;
  padding: 12px 14px;
  font-size: 12.5px;
  line-height: 1.6;
  color: var(--text-soft);
  border-radius: var(--radius-md);
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 79, 0, 0.08);
  transition: border-color 0.2s, background 0.2s;
  min-width: 0;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.excl-item:hover {
  background: rgba(255, 79, 0, 0.06);
  border-color: rgba(255, 79, 0, 0.15);
}

.excl-dot {
  width: 6px; height: 6px;
  margin-top: 7px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 6px var(--orange-glow);
}

/* ── Footer ── */
.footer {
  position: relative;
  padding: 28px 24px;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,149,218,0.5), rgba(255,79,0,0.5), transparent);
}

.footer-note {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: var(--text-muted);
}

.footer-note svg {
  width: 16px; height: 16px;
  color: var(--blue);
  opacity: 0.7;
}

.btn-close {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  border: none;
  border-radius: 999px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 800;
  color: #fff;
  cursor: pointer;
  background: linear-gradient(135deg, var(--orange) 0%, #e04400 50%, #cc3a00 100%);
  box-shadow:
    0 8px 32px rgba(255, 79, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transition: transform 0.3s var(--ease-spring), box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}

.btn-close::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 50%);
  pointer-events: none;
}

.btn-close:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow:
    0 16px 48px rgba(255, 79, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

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

.btn-close svg {
  width: 18px; height: 18px;
}

.card-head:focus-visible {
  outline: 2px solid rgba(0, 149, 218, 0.5);
  outline-offset: -2px;
  border-radius: var(--radius-lg);
}

.btn-close:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.5);
  outline-offset: 3px;
}

/* ── Responsive ── */
@media (max-width: 640px) {
  .page { padding: 16px 14px 40px; padding-bottom: 88px; }
  .header-inner { padding: 10px 14px; gap: 10px; }
  .logo-img { height: 26px; max-width: 55%; }
  .live-badge { padding: 6px 12px; font-size: 11px; flex-shrink: 0; }
  .hero__inner { padding: 28px 22px 24px; }
  .hero__top { flex-direction: column; }
  .hero__visual { width: 90px; height: 90px; align-self: center; }
  .hero__sub { max-width: 100%; font-size: 13px; }
  .trust-bar { gap: 8px; }
  .trust-item { font-size: 10px; padding: 6px 10px; }
  .stats-row { gap: 8px; }
  .stat-val { font-size: 20px; }
  .stat-box--hero .stat-val { font-size: 24px; }
  .stat-desc { font-size: 9.5px; line-height: 1.45; }
  .stat-box { padding: 14px 8px 12px; min-width: 0; }
  .stat-icon-wrap { width: 32px; height: 32px; margin-bottom: 8px; }
  .stat-icon-wrap svg { width: 16px; height: 16px; }
  .fab-close { bottom: 16px; padding: 12px 24px; font-size: 13px; width: calc(100% - 28px); max-width: 360px; justify-content: center; }
  .sections-header { flex-direction: column; align-items: stretch; }
  .sections-actions { justify-content: center; }
  .card-head { padding: 14px 14px; gap: 8px; }
  .card-num { width: 28px; height: 28px; font-size: 12px; }
  .card-icon { width: 32px; height: 32px; }
  .card-icon svg { width: 16px; height: 16px; }
  .card-arrow { width: 28px; height: 28px; }
  .card-title { font-size: 12.5px; }
  .card-inner { padding: 0 14px; }
  .card.open .card-inner { padding: 16px 14px 18px; }
  .item-list li { padding: 10px 12px; font-size: 13px; }
  .excl-grid { grid-template-columns: 1fr; }
  .excl-card { padding: 22px 18px; }
  .footer { flex-direction: column-reverse; align-items: stretch; text-align: center; padding: 22px 18px; }
  .footer-note { justify-content: center; }
  .btn-close { justify-content: center; padding: 15px 28px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
  .fab-close { transform: translateX(-50%); }
}
