:root {
  --bg-a: #0c0d0f;
  --bg-b: #171a20;
  --surface: rgba(24, 27, 33, 0.84);
  --surface-soft: rgba(30, 34, 41, 0.74);
  --surface-border: rgba(255, 255, 255, 0.08);
  --header-bg: rgba(12, 13, 15, 0.76);
  --footer-bg: rgba(14, 16, 20, 0.94);
  --section-wash: linear-gradient(180deg, rgba(17, 20, 25, 0.92), rgba(11, 13, 17, 0.96));
  --text: #d6dcea;
  --muted: #98a3b7;
  --title: #f4f7fb;
  --accent: #ec6999;
  --accent-strong: #ff8fb8;
  --accent-rgb: 236, 105, 153;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
  --shadow-strong: 0 28px 72px rgba(0, 0, 0, 0.34);
  --body-font: "IBM Plex Sans", "Avenir Next", "Segoe UI", sans-serif;
  --display-font: "Fraunces", "Iowan Old Style", Georgia, serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: var(--body-font);
  color: var(--text);
  background:
    radial-gradient(circle at top, rgba(var(--accent-rgb), 0.12), transparent 34%),
    radial-gradient(circle at 18% 14%, rgba(94, 140, 255, 0.14), transparent 26%),
    radial-gradient(circle at 84% 18%, rgba(236, 105, 153, 0.16), transparent 24%),
    linear-gradient(135deg, var(--bg-a) 0%, var(--bg-b) 100%);
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 20% 18%, rgba(var(--accent-rgb), 0.05), transparent 24%),
    radial-gradient(circle at 82% 22%, rgba(94, 140, 255, 0.08), transparent 20%),
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: auto, auto, 72px 72px, 72px 72px;
  opacity: 0.42;
}

main {
  flex: 1 0 auto;
  position: relative;
  z-index: 1;
}

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

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

.container {
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto;
}

.content-wrap {
  width: min(1000px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: var(--header-bg);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
}

.header-row {
  min-height: 84px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.brand-mark {
  font-size: 1.55rem;
  font-weight: 800;
  font-family: var(--display-font);
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #f5f7fb 0%, var(--accent) 82%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.94rem;
  color: var(--muted);
}

.site-nav a {
  position: relative;
  padding-bottom: 4px;
}

.site-nav a[aria-current="page"],
.site-nav a:hover {
  color: var(--title);
  font-weight: 600;
}

.site-nav a[aria-current="page"]::after,
.site-nav a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--accent-strong));
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 26px;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: -0.01em;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background-color 0.25s ease;
}

.btn-primary {
  background: linear-gradient(135deg, #f998bb 0%, var(--accent) 52%, #ff63a5 100%);
  color: #fff;
  box-shadow: 0 18px 36px rgba(var(--accent-rgb), 0.28);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(var(--accent-rgb), 0.32);
}

.btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  color: var(--title);
}

.btn-secondary:hover {
  transform: translateY(-3px);
  border-color: rgba(var(--accent-rgb), 0.34);
  background: rgba(255, 255, 255, 0.08);
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 138px 0 84px;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(var(--accent-rgb), 0.03), transparent);
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 108px 0 auto;
  height: 220px;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.78), transparent);
  opacity: 0.18;
}

.hero-orb {
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 760px;
  height: 760px;
  border-radius: 999px;
  background: rgba(var(--accent-rgb), 0.12);
  filter: blur(120px);
  z-index: -1;
}

.hero-inner {
  position: relative;
  text-align: center;
  max-width: 1180px;
  margin: 0 auto;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(var(--accent-rgb), 0.22);
  background: rgba(255, 255, 255, 0.06);
  color: var(--accent-strong);
  font-size: 0.86rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 20px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.12);
}

.hero-title {
  margin: 0 auto 18px;
  max-width: 1120px;
  color: var(--title);
  font-family: var(--display-font);
  font-size: clamp(3.05rem, 7vw, 5.1rem);
  line-height: 0.98;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.hero-lead {
  max-width: 820px;
  margin: 0 auto 30px;
  color: var(--text);
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  line-height: 1.78;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-bottom: 44px;
}

.disclosure-note {
  max-width: 720px;
  margin: 0 auto 34px;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.7;
}

.disclosure-note strong {
  color: var(--title);
}

.glass {
  background: linear-gradient(180deg, rgba(25, 29, 36, 0.9), rgba(18, 21, 27, 0.86));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.stat-grid,
.card-grid,
.link-grid,
.footer-grid,
.info-grid {
  display: grid;
  gap: 22px;
}

.stat-grid,
.info-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card-grid,
.link-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.stat-card,
.card,
.step-card,
.visual-card,
.link-card,
.danger-card,
.footer-box,
.info-card,
.faq-item {
  border-radius: 28px;
  padding: 30px;
}

.stat-card .stat-title {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 12px;
  font-family: var(--display-font);
  color: var(--title);
}

.card h3,
.visual-card h3,
.info-card h3,
.faq-item h3,
.link-card h3,
.step-card h3 {
  margin: 0 0 12px;
  color: var(--title);
  line-height: 1.3;
}

.card h3,
.visual-card h3,
.link-card h3 {
  font-size: 1.16rem;
}

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

.stat-card::before,
.info-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), rgba(255, 99, 165, 0.28));
}

.hero-inner > .stat-grid {
  margin-top: 14px;
  gap: 24px;
}

.hero-inner > .stat-grid .stat-card {
  min-height: 222px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  text-align: left;
  background:
    linear-gradient(180deg, rgba(26, 31, 39, 0.96), rgba(18, 21, 27, 0.92)),
    rgba(22, 25, 31, 0.92);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-strong);
}

.hero-inner > .stat-grid .stat-card p {
  max-width: 28ch;
}

.section {
  padding: 88px 0;
  position: relative;
}

.section-dark {
  background: var(--section-wash);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.section-title {
  margin: 0 0 14px;
  color: var(--title);
  font-family: var(--display-font);
  font-size: clamp(2.15rem, 5vw, 3.25rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

.section-lead {
  margin: 0 0 32px;
  color: var(--text);
  font-size: 1.04rem;
  line-height: 1.78;
  max-width: 790px;
}

.text-link {
  color: var(--accent);
  text-decoration: underline;
  text-decoration-color: rgba(var(--accent-rgb), 0.35);
  text-underline-offset: 0.15em;
  font-weight: 600;
}

.text-link:hover {
  text-decoration-color: rgba(var(--accent-rgb), 0.72);
}

.stack {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.step-card {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.step-num {
  color: var(--accent);
  font-size: 2rem;
  font-weight: 800;
  flex: 0 0 auto;
  line-height: 1;
  font-family: var(--display-font);
}

.step-card p,
.card p,
.stat-card p,
.footer-box p,
.section-lead,
.danger-card p,
.visual-note,
.faq-item p,
.info-card p,
.link-card p {
  color: var(--muted);
  margin: 0;
  line-height: 1.68;
}

.visual-frame {
  overflow: hidden;
  border-radius: 20px;
  margin-top: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(16, 19, 24, 0.98), rgba(25, 29, 36, 0.92));
  padding: 14px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.visual-frame img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: top center;
  border-radius: 14px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
}

.visual-note {
  margin-top: 16px;
}

.danger-card {
  background: rgba(108, 28, 45, 0.3);
  border: 1px solid rgba(255, 120, 150, 0.2);
}

.jump-card {
  margin-top: 24px;
  text-align: center;
}

.jump-card p {
  max-width: 760px;
  margin: 0 auto;
}

.jump-card .hero-actions {
  margin-top: 22px;
  margin-bottom: 0;
}

.link-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 100%;
  gap: 10px;
  position: relative;
  overflow: hidden;
}

.link-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), rgba(255, 99, 165, 0.42));
}

.link-card:hover {
  transform: translateY(-4px);
  border-color: rgba(var(--accent-rgb), 0.24);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.28);
}

.stat-grid-six {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.cta-section {
  position: relative;
  overflow: hidden;
}

.cta-inner {
  position: relative;
  text-align: center;
}

.cta-panel {
  max-width: 980px;
  margin: 0 auto;
  padding: 64px 40px;
  border-radius: 42px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at top left, rgba(236, 105, 153, 0.22), transparent 30%),
    radial-gradient(circle at bottom right, rgba(94, 140, 255, 0.18), transparent 32%),
    linear-gradient(135deg, #16191f 0%, #232733 100%);
  box-shadow: 0 34px 84px rgba(0, 0, 0, 0.36);
}

.cta-panel .section-title,
.cta-panel .section-lead {
  margin-left: auto;
  margin-right: auto;
  color: #f6f7fb;
}

.cta-panel .section-title {
  max-width: 760px;
  margin-bottom: 14px;
}

.cta-panel .section-lead {
  max-width: 700px;
  margin-bottom: 28px;
  color: rgba(229, 234, 242, 0.82);
}

.cta-actions {
  justify-content: center;
  margin-bottom: 0;
}

.cta-panel .btn-secondary.cta-secondary {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
  color: #f6f7fb;
}

.cta-panel .btn-secondary.cta-secondary:hover {
  border-color: rgba(var(--accent-rgb), 0.34);
}

.site-footer {
  position: relative;
  z-index: 1;
  margin-top: auto;
  background: var(--footer-bg);
  padding: 32px 0 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  grid-template-columns: 1fr;
}

.footer-box {
  text-align: center;
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
}

.copyright {
  color: var(--muted);
  margin-top: 14px;
}

.table-wrap {
  overflow-x: auto;
  border-radius: 22px;
  border: 1px solid rgba(var(--accent-rgb), 0.08);
  background: rgba(16, 19, 24, 0.72);
}

table {
  width: 100%;
  border-collapse: collapse;
}

th,
td {
  text-align: left;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--text);
}

th {
  color: var(--accent-strong);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

ul.clean-list {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

ul.clean-list li + li {
  margin-top: 8px;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 22px;
}

.chip-row.centered {
  justify-content: center;
}

.hero-inner > .chip-row {
  margin-top: 42px;
}

.chip {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(var(--accent-rgb), 0.2);
  color: var(--accent-strong);
  font-size: 0.94rem;
  font-weight: 600;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.16);
}

.faq-item {
  background: rgba(24, 27, 33, 0.92);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 18px;
  margin: 12px 0 0;
  font-size: 0.95rem;
}

.footer-links a {
  color: var(--muted);
}

.footer-links a:hover {
  color: var(--accent-strong);
}

.faq-list {
  display: grid;
  gap: 16px;
}

@media (max-width: 980px) {
  .header-row {
    flex-wrap: wrap;
    padding: 14px 0;
  }

  .site-nav {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .header-row > .btn {
    display: none;
  }

  .stat-grid,
  .card-grid,
  .link-grid,
  .info-grid {
    grid-template-columns: 1fr;
  }

  .hero-inner > .stat-grid .stat-card p {
    max-width: none;
  }
}

@media (max-width: 640px) {
  .page-hero {
    padding: 122px 0 60px;
  }

  .hero-title {
    font-size: 2.7rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .stat-card,
  .card,
  .step-card,
  .visual-card,
  .link-card,
  .danger-card,
  .info-card,
  .faq-item {
    padding: 22px;
  }

  .section {
    padding: 64px 0;
  }

  .section-lead {
    margin-bottom: 26px;
  }

  .cta-panel {
    padding: 46px 24px;
  }
}
