:root {
  --bg: #050505;
  --bg-soft: #0d0d0d;
  --bg-card: #121212;
  --bg-card-hover: #171717;
  --text: #ffffff;
  --muted: #ffffff;
  --accent: #1B6FF5;
  --accent-light: #3480F7;
  --accent-bright: #3480F7;
  --line: rgba(27, 111, 245, 0.4);
  --line-subtle: rgba(27, 111, 245, 0.2);
  --line-strong: rgba(27, 111, 245, 0.7);
  --section-line: rgba(27, 111, 245, 0.7);
  --border: 1px solid var(--line);
  --border-subtle: 1px solid var(--line-subtle);
  --shadow: 0 18px 48px rgba(0, 0, 0, 0.45);
  --shadow-gold: 0 10px 36px rgba(27, 111, 245, 0.28);
  --radius: 20px;
  --radius-sm: 14px;
  --space-1: 0.55rem;
  --space-2: 0.9rem;
  --space-3: 1.25rem;
  --space-4: 1.6rem;
  --space-5: 2.1rem;
  --space-6: 3rem;
  --section-gap: 2.6rem;
  --bar-h: 72px;
  --topbar-h: calc(var(--bar-h) + 1px + env(safe-area-inset-top, 0px));
  --mobile-menu-width: 60vw;
  --page-gutter: 4vw;
  --font: "Segoe UI", "Inter", Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--topbar-h) + 16px);
  background-color: #050505;
  color-scheme: dark;
  min-height: 100%;
  min-height: 100dvh;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  min-height: 100%;
  min-height: 100dvh;
  max-width: 100%;
  padding-top: var(--topbar-h);
  padding-bottom: env(safe-area-inset-bottom, 0px);
  font-family: var(--font);
  background:
    radial-gradient(ellipse 90% 55% at 50% -18%, rgba(27, 111, 245, 0.16), transparent 58%),
    radial-gradient(ellipse 42% 32% at 100% 12%, rgba(27, 111, 245, 0.06), transparent 52%),
    radial-gradient(ellipse 38% 28% at 0% 78%, rgba(27, 111, 245, 0.05), transparent 50%),
    var(--bg);
  color: var(--text);
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
  overflow-wrap: break-word;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 200;
  padding-top: env(safe-area-inset-top, 0px);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  background: rgba(5, 5, 5, 0.78);
  border-bottom: 1px solid var(--line-subtle);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.28);
}

.nav {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: var(--bar-h);
  gap: 1.8rem;
  position: relative;
}

.logo {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}

.logo img {
  height: 43px;
  width: auto;
  max-width: min(215px, 57vw);
  object-fit: contain;
  display: block;
}

.menu {
  display: inline-grid;
  grid-auto-flow: column;
  grid-auto-columns: 1fr;
  gap: 0.35rem;
  align-items: center;
  justify-self: end;
}

.menu a,
.menu-cta.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  box-sizing: border-box;
  padding: 0 0.85rem;
  font-size: 0.98rem;
  font-weight: 600;
  line-height: 1;
  border-radius: 8px;
}

.menu a {
  width: auto;
  min-width: 0;
  padding: 0 0.65rem;
  white-space: nowrap;
  color: #ececec;
  transition: color 0.2s ease, background 0.2s ease;
}

.menu a:hover {
  color: var(--accent-light);
  background: rgba(27, 111, 245, 0.08);
}

.menu a[aria-current="page"] {
  color: #ffffff;
  background: var(--accent);
}

.menu-cta {
  justify-self: end;
}

.menu-cta.btn {
  min-height: 40px;
  box-shadow: none;
}

.menu-cta.btn:hover {
  box-shadow: none;
}

.menu-cta.btn-primary,
.menu-cta.btn-primary:hover {
  color: #ffffff;
  box-shadow: none;
}

.nav-toggle {
  display: none;
}

.hamburger {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(27, 111, 245, 0.06);
  align-items: center;
  justify-content: center;
  cursor: pointer;
  justify-self: end;
}

.hamburger span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--accent-light);
  border-radius: 999px;
  position: relative;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.hamburger span::before,
.hamburger span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: var(--accent-light);
  border-radius: 999px;
  transition: transform 0.2s ease;
}

.hamburger span::before { top: -6px; }
.hamburger span::after { top: 6px; }

.mobile-menu { display: none; }

.mobile-menu-backdrop {
  display: none;
  margin: 0;
  padding: 0;
  border: 0;
  appearance: none;
  background: transparent;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: none;
  border-radius: 8px;
  padding: 0.72rem 1.35rem;
  font-family: var(--font);
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}

.btn-primary {
  color: #ffffff;
  background: var(--accent);
  box-shadow: none;
}

.btn-primary:hover {
  background: var(--accent);
  box-shadow: none;
}

.btn-outline {
  color: var(--accent-bright);
  border: 1px solid var(--line-strong);
  background: rgba(27, 111, 245, 0.05);
}

.btn-outline:hover {
  background: rgba(27, 111, 245, 0.12);
  border-color: var(--accent-bright);
}

.hero-wrap {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3rem;
  align-items: center;
  padding-top: calc(var(--section-gap) + 0.4rem);
  padding-bottom: calc(var(--section-gap) + 0.6rem);
  border-bottom: 1px solid transparent;
  background-image: linear-gradient(90deg, transparent, var(--section-line), transparent);
  background-size: 100% 2px;
  background-repeat: no-repeat;
  background-position: bottom;
}

.hero-wrap:not(.register-wrap)::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(180deg, #101c28 0%, #0c1822 38%, #080e14 100%);
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.hero-content h1 {
  font-size: clamp(2.05rem, 4.8vw, 3.35rem);
  line-height: 1.16;
  margin: 0;
  color: var(--accent-light);
}

.hero-content p {
  color: #ffffff;
  max-width: 62ch;
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.75;
}

.hero-content p a,
.hero-content p a:hover {
  color: var(--accent-bright);
  text-decoration: none;
  font-weight: 700;
}

.hero-content p a:hover {
  color: var(--accent-light);
  text-decoration: underline;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-top: 0.25rem;
}

.hero-actions .btn {
  min-width: 180px;
}

.hero-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border: none;
  border-radius: 28px;
  background: #0a0a0a;
  box-shadow: var(--shadow), 0 10px 36px rgba(170, 180, 190, 0.18);
  padding: 0.7rem;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  border-radius: inherit;
  background: linear-gradient(
    90deg,
    #24282e 0%,
    rgba(176, 184, 194, 0.18) 28%,
    rgba(232, 236, 242, 0.42) 50%,
    rgba(176, 184, 194, 0.18) 72%,
    #24282e 100%
  );
}

.hero-wrap:not(.register-wrap) .hero-card {
  overflow: visible;
}

.hero-wrap:not(.register-wrap) .hero-card::after {
  content: "";
  position: absolute;
  inset: -22%;
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(
    ellipse at center,
    rgba(27, 111, 245, 0.50) 0%,
    rgba(27, 111, 245, 0.20) 40%,
    transparent 70%
  );
}

.table-preview {
  position: relative;
  z-index: 1;
  border-radius: 22px;
  border: 1px solid var(--line-subtle);
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: #000000;
}

.table-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.history-preview {
  aspect-ratio: 5 / 2;
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.history-preview img {
  object-fit: contain;
}

body > .container:not(.nav):not(.hero-wrap),
main > .container:not(.hero-wrap) {
  position: relative;
  padding-top: var(--section-gap);
  padding-bottom: var(--section-gap);
  border-bottom: 1px solid transparent;
  background-image: linear-gradient(90deg, transparent, var(--section-line), transparent);
  background-size: 100% 2px;
  background-repeat: no-repeat;
  background-position: bottom;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

body > .container:not(.nav):not(.hero-wrap):last-of-type,
main > .container:not(.hero-wrap):last-of-type {
  border-bottom: 0;
  background-image: none;
}

h2 {
  font-size: clamp(1.45rem, 2.8vw, 2.05rem);
  line-height: 1.22;
  margin: 0;
  color: var(--accent-light);
}

.subtitle {
  color: #ffffff;
  margin: 0;
  line-height: 1.75;
}

.container > p {
  color: #ffffff;
}

.subtitle a,
.container > p a {
  color: var(--accent-bright);
  font-weight: 600;
  text-decoration: none;
}

.subtitle a:hover,
.container > p a:hover {
  color: var(--accent-light);
  text-decoration: underline;
}

.article-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.15rem;
}

.article-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(27, 111, 245, 0.07), transparent 32%),
    var(--bg-card);
  padding: 1.25rem;
  box-shadow: var(--shadow);
}

.article-card h3 {
  font-size: 1.08rem;
  line-height: 1.35;
  margin-bottom: var(--space-2);
  color: var(--accent-light);
}

.article-card p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.72;
}

.tag {
  display: inline-flex;
  align-items: center;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--accent-light);
  margin-bottom: 0.7rem;
  padding: 0.28rem 0.7rem;
  border-radius: 999px;
  background: rgba(27, 111, 245, 0.12);
  border: 1px solid rgba(27, 111, 245, 0.28);
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: var(--space-2);
  flex-wrap: wrap;
}

.count-badge {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.45rem 0.9rem;
  color: var(--accent-light);
  background: rgba(27, 111, 245, 0.08);
  font-size: 0.88rem;
  font-weight: 700;
}

.article-media {
  aspect-ratio: 16 / 10;
  background: #000000;
}

.article-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-body {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.72rem;
}

.article-body h3 {
  font-size: 1.15rem;
  line-height: 1.35;
  color: var(--accent-light);
}

.article-meta {
  color: var(--muted);
  font-size: 0.85rem;
}

.article-link {
  align-self: flex-start;
  margin-top: auto;
  color: #ffffff;
  background: var(--accent);
  border-radius: 8px;
  padding: 0.5rem 0.95rem;
  font-size: 0.9rem;
  font-weight: 700;
}

.strategy-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.15rem;
  counter-reset: strategy;
}

.strategy-item {
  position: relative;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(27, 111, 245, 0.07), transparent 34%),
    var(--bg-card);
  padding: 1.25rem 1.2rem 1.2rem;
  box-shadow: var(--shadow);
}

.strategy-item::before {
  counter-increment: strategy;
  content: counter(strategy, decimal-leading-zero);
  display: inline-block;
  margin-bottom: 0.7rem;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--accent);
}

.strategy-item h3,
.strategy-item h4 {
  color: var(--accent-light);
  font-size: 1.02rem;
  line-height: 1.35;
  margin-bottom: var(--space-1);
}

.strategy-item p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.72;
}

.provider-table-wrap {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-card);
  box-shadow: var(--shadow);
}

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

.provider-table thead th {
  background: linear-gradient(180deg, rgba(27, 111, 245, 0.12), rgba(27, 111, 245, 0.04));
  color: var(--accent-light);
  text-align: left;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.95rem 1.1rem;
  border-bottom: 1px solid var(--line-subtle);
}

.provider-table tbody tr {
  transition: background 0.18s ease;
}

.provider-table tbody tr:nth-child(even) {
  background: rgba(255, 255, 255, 0.015);
}

.provider-table tbody tr:hover {
  background: rgba(27, 111, 245, 0.08);
}

.provider-table td {
  padding: 0.95rem 1.1rem;
  border-bottom: 1px solid var(--line-subtle);
  color: var(--muted);
  font-size: 0.95rem;
  vertical-align: top;
}

.provider-table td:first-child {
  color: var(--accent-light);
  font-weight: 700;
  white-space: nowrap;
}

.provider-table tbody tr:last-child td {
  border-bottom: 0;
}

.toc-page-anchor {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  height: 0;
  width: 0;
  overflow: hidden;
  pointer-events: none;
}

.toc-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.25rem 1.3rem;
  background: var(--bg-card);
  box-shadow: var(--shadow);
}

.toc-label {
  color: var(--accent-light);
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  margin: 0 0 0.95rem;
}

.toc-tree,
.toc-tree ol {
  margin: 0;
  padding-left: 0;
  list-style: none;
}

.toc-tree {
  color: var(--text);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  counter-reset: section;
}

.toc-tree > li {
  line-height: 1.6;
  counter-increment: section;
  position: relative;
  padding: 0.45rem 0.7rem 0.45rem 2.15rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
}

.toc-tree > li::before {
  content: counter(section);
  color: #ffffff;
  position: absolute;
  left: 0.55rem;
  top: 0.55rem;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 999px;
  background: var(--accent);
  text-align: center;
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1.25rem;
  font-variant-numeric: tabular-nums;
}

.toc-tree a {
  color: #f0f0f0;
  transition: color 0.2s ease;
}

.toc-tree a:hover {
  color: var(--accent-light);
  text-decoration: underline;
}

.toc-tree > li > ol {
  margin-top: 0.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.28rem;
  counter-reset: subsection;
}

.toc-tree > li > ol > li {
  counter-increment: subsection;
  position: relative;
  line-height: 1.55;
  padding-left: 2.15rem;
}

.toc-tree > li > ol > li::before {
  content: counter(section) "." counter(subsection);
  color: var(--accent);
  position: absolute;
  left: 0;
  top: 0;
  width: 2rem;
  text-align: left;
  font-size: 0.82rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

.toc-tree > li > ol a {
  color: #d8d8d8;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--bg-card);
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.faq-item[open] {
  border-color: var(--line-strong);
  box-shadow: var(--shadow-gold);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.05rem 1.15rem;
  color: var(--accent-light);
  font-weight: 700;
  position: relative;
  padding-right: 3rem;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "";
  position: absolute;
  right: 1.15rem;
  top: 50%;
  width: 0.55rem;
  height: 0.55rem;
  border-right: 2px solid var(--accent-light);
  border-bottom: 2px solid var(--accent-light);
  transform: translateY(-70%) rotate(45deg);
  transition: transform 0.2s ease;
}

.faq-item[open] summary::after {
  transform: translateY(-30%) rotate(225deg);
}

.faq-item[open] summary {
  border-bottom: 1px solid var(--line-subtle);
  background: rgba(27, 111, 245, 0.06);
}

.faq-item > p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.75;
  margin: 0;
  padding: 0.85rem 1.15rem 1.15rem;
}

.article-card p a,
.strategy-item p a,
.faq-item > p a,
.provider-table td a,
.article-body p a,
.footer a {
  color: var(--accent-bright);
  font-weight: 600;
  text-decoration: none;
}

.article-card p a:hover,
.strategy-item p a:hover,
.faq-item > p a:hover,
.provider-table td a:hover,
.article-body p a:hover,
.footer a:hover {
  color: var(--accent-light);
  text-decoration: underline;
}

.footer {
  border-top: 1px solid var(--line-subtle);
  padding: 0;
  padding-bottom: env(safe-area-inset-bottom, 0px);
  color: #cfcfcf;
  font-size: 0.9rem;
  background: linear-gradient(180deg, rgba(27, 111, 245, 0.05), #090909);
  display: flex;
  align-items: center;
  min-height: calc(var(--bar-h) + 1px + env(safe-area-inset-bottom, 0px));
}

.footer-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  min-height: var(--bar-h);
  width: 100%;
}

@media (max-width: 980px) {
  .hero-wrap {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 700px) {
  .topbar {
    backdrop-filter: blur(16px);
  }

  .nav {
    grid-template-columns: auto auto;
    justify-content: space-between;
    gap: 1rem;
  }

  .logo {
    width: fit-content;
    max-width: fit-content;
  }

  .menu,
  .menu-cta,
  .menu-cta.btn {
    display: none;
  }

  .hamburger {
    display: inline-flex;
    grid-column: 2;
    justify-self: end;
    position: relative;
    z-index: 130;
  }

  .nav-toggle:checked + .hamburger span {
    background: transparent;
  }

  .nav-toggle:checked + .hamburger span::before {
    transform: translateY(6px) rotate(45deg);
  }

  .nav-toggle:checked + .hamburger span::after {
    transform: translateY(-6px) rotate(-45deg);
  }

  .mobile-menu-backdrop {
    display: none;
    position: fixed;
    top: var(--topbar-h);
    left: 0;
    right: var(--mobile-menu-width);
    bottom: 0;
    z-index: 110;
    margin: 0;
    padding: 0;
    border: 0;
    appearance: none;
    background: transparent;
    cursor: pointer;
    touch-action: none;
    -webkit-tap-highlight-color: transparent;
  }

  html:has(#mobile-nav-toggle:checked) .mobile-menu-backdrop {
    display: block;
  }

  .mobile-menu {
    position: fixed;
    top: var(--topbar-h);
    right: 0;
    bottom: 0;
    width: var(--mobile-menu-width);
    max-width: 100%;
    z-index: 120;
    margin: 0;
    padding: 0.9rem 1rem 1rem;
    padding-bottom: calc(1rem + env(safe-area-inset-bottom, 0px));
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    background: rgba(8, 8, 8, 0.98);
    border: 0;
    border-left: 1px solid var(--line);
    border-radius: 0;
    box-shadow: none;
    transform: translateX(100%);
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.28s ease, visibility 0.28s ease;
    overflow-y: auto;
  }

  .mobile-menu a {
    display: block;
    padding: 0.78rem 0.85rem;
    border-radius: 8px;
    color: var(--text);
    font-size: 1rem;
    font-weight: 600;
  }

  .mobile-menu a:hover {
    background: rgba(27, 111, 245, 0.12);
    color: #ffffff;
  }

  .mobile-menu a[aria-current="page"] {
    background: var(--accent);
    color: #ffffff;
  }

  html:has(#mobile-nav-toggle:checked) .mobile-menu {
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
  }

  .hero-wrap {
    gap: var(--space-3);
    padding-top: var(--page-gutter);
    padding-bottom: var(--section-gap);
  }

  .hero-wrap:not(.register-wrap) {
    gap: var(--space-2);
  }

  .hero-wrap:not(.register-wrap)::before {
    background: linear-gradient(180deg, #101c28 0%, #0c1822 42%, #080e14 100%);
  }

  .hero-card { order: 1; }
  .hero-content { order: 2; }
  .hero-content .hero-actions {
    order: 1;
    margin-top: 0;
    margin-bottom: 0;
    gap: var(--space-2);
  }
  .hero-content h1 { order: 2; margin-bottom: 0; }
  .hero-content p { order: 3; margin-bottom: 0; }

  body > .container:not(.nav):not(.hero-wrap),
  main > .container:not(.hero-wrap):not(.register-wrap) {
    padding-top: var(--section-gap);
    padding-bottom: var(--section-gap);
    gap: var(--space-3);
  }

  .article-grid,
  .strategy-list {
    grid-template-columns: 1fr;
  }

  .table-preview:not(.history-preview),
  .article-media {
    min-height: 185px;
  }

  .history-preview {
    aspect-ratio: auto;
  }

  .history-preview img {
    height: auto;
    object-fit: cover;
  }

  .provider-table thead {
    display: none;
  }

  .provider-table,
  .provider-table tbody,
  .provider-table tr,
  .provider-table td {
    display: block;
    width: 100%;
  }

  .provider-table tr {
    padding: 1rem 1.05rem;
    border-bottom: 1px solid var(--line-subtle);
  }

  .provider-table tbody tr:last-child {
    border-bottom: 0;
  }

  .provider-table td {
    padding: 0;
    border: 0;
    white-space: normal;
  }

  .provider-table td:first-child {
    margin-bottom: 0.4rem;
    font-size: 1rem;
  }

  .register-wrap.hero-wrap {
    grid-template-columns: 1fr;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    overflow: visible;
    gap: var(--space-3);
  }

  .register-left .hero-card {
    display: block;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow), var(--shadow-gold);
    background: var(--bg-card);
    padding: 0.7rem;
  }

  .register-left .table-preview {
    width: 100%;
    max-width: none;
    height: auto;
    min-height: 185px;
  }

  .register-lead { max-width: none; }
  .register-btn { width: 100%; max-width: none; }
}

@media (max-width: 460px) {
  .btn { width: 100%; }
  .hero-actions { width: 100%; }
}

.article-grid .article-card.article-card-teaser {
  display: flex;
  flex-direction: column;
  height: 100%;
  gap: var(--space-3);
}

.article-card-thumb-link {
  display: block;
  border-radius: 16px;
  outline: none;
  text-decoration: none;
  color: inherit;
}

.article-card-thumb-link:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.article-card-thumb-link .article-card-thumb {
  position: relative;
  aspect-ratio: 1 / 1;
  width: 100%;
  padding: 0;
  box-sizing: border-box;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #000000;
}

.article-card-thumb-link .article-card-thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.article-card-teaser .article-card-body {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  flex: 1 1 auto;
  min-height: 0;
}

.article-card-teaser .article-card-body h3 {
  margin-top: 0;
  margin-bottom: 0;
  color: var(--accent);
}

.article-card-teaser .article-card-body p {
  margin: 0;
  flex: 1 1 auto;
  color: var(--muted);
}

.article-card-read-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  width: 100%;
  box-sizing: border-box;
  margin-top: auto;
  padding: 0.75rem 1.2rem;
  font-weight: 700;
  font-size: 0.95rem;
  color: #ffffff;
  text-decoration: none;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  background: var(--accent);
  box-shadow: none;
  transition: background 0.18s ease, filter 0.18s ease;
}

.article-card-read-btn-label {
  display: inline-flex;
  align-items: center;
  line-height: 1.25;
}

.article-card-read-btn-arrow {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  line-height: 0;
}

.article-card-read-btn-arrow svg { display: block; }

.article-card-read-btn:hover {
  filter: brightness(1.08);
  box-shadow: none;
}

.article-card-read-btn:active {
  filter: brightness(0.96);
}

.article-card-read-btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.register-wrap {
  max-width: 920px;
  margin-inline: auto;
  border-bottom: 0;
}

.register-left,
.register-right {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.register-left .register-intro { display: contents; }
.register-left .hero-card { order: 0; }
.register-left .register-btn { order: 1; }
.register-left .register-tag { order: 2; }
.register-left .register-intro h1 { order: 3; }
.register-left .register-lead { order: 4; }

.register-tag {
  margin: 0;
  font-size: 0.78rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--accent-light);
  font-weight: 700;
}

.register-intro h1 {
  margin: 0;
  font-size: clamp(1.75rem, 5vw, 2.4rem);
  line-height: 1.15;
  color: var(--accent-light);
}

.register-lead {
  margin: 0;
  color: #ffffff;
  font-size: 1rem;
  line-height: 1.7;
  max-width: 42ch;
}

.register-btn {
  width: 100%;
  padding: 0.9rem 1.4rem;
  font-size: 1.05rem;
}

.register-divider {
  margin: 0;
  border: 0;
  border-top: 1px solid var(--line-subtle);
  width: 100%;
}

.register-perks {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.register-perks li {
  position: relative;
  padding-left: 1.45rem;
  color: #ffffff;
  font-size: 0.98rem;
  line-height: 1.55;
}

.register-perks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 3px rgba(27, 111, 245, 0.18);
}

.register-steps {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.register-steps li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: #ffffff;
  font-size: 0.95rem;
  line-height: 1.55;
}

.register-step-num {
  flex-shrink: 0;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 800;
  background: var(--accent);
}

.register-step-text {
  flex: 1;
  padding-top: 0.15rem;
}

.register-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.6;
}

.register-support {
  margin-top: var(--space-3);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.2rem 1.2rem;
  background: linear-gradient(160deg, rgba(27, 111, 245, 0.12) 0%, rgba(0, 0, 0, 0.35) 100%);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.register-support-label {
  margin: 0;
  font-size: 0.78rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--accent-light);
  font-weight: 700;
}

.register-support-title {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.35;
  color: var(--accent-light);
  font-weight: 700;
}

.register-support-text {
  margin: 0;
  color: #ffffff;
  font-size: 0.92rem;
  line-height: 1.65;
}

.register-line-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  padding: 0.75rem 1rem;
  border: 1px solid #05a847;
  border-radius: 8px;
  background: #06c755;
  color: #ffffff;
  font-weight: 700;
  font-size: 0.95rem;
  transition: background 0.2s ease, border-color 0.2s ease, filter 0.2s ease;
}

.register-line-link:hover {
  background: #05b34c;
  border-color: #049940;
  color: #ffffff;
  filter: brightness(1.03);
}

.register-side-label {
  margin: 0;
  font-size: 0.78rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--accent-light);
  font-weight: 700;
}

.register-perks-panel {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  border: 1px solid var(--line-subtle);
  border-radius: 16px;
  padding: 1rem 1.05rem;
  background: rgba(27, 111, 245, 0.05);
}

@media (min-width: 701px) {
  .register-page {
    padding-top: var(--section-gap);
    padding-bottom: var(--section-gap);
  }

  .register-wrap.hero-wrap {
    padding: 0;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: stretch;
    gap: 0;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--bg-card);
    box-shadow: var(--shadow), var(--shadow-gold);
    overflow: hidden;
  }

  .register-left {
    padding: 1.75rem 2rem;
    border-right: 1px solid var(--line-subtle);
    justify-content: flex-start;
  }

  .register-right {
    padding: 1.75rem 2rem;
    justify-content: flex-start;
    gap: var(--space-3);
  }

  .register-divider-mobile { display: none; }
  .register-support { margin-top: 0; }
  .register-lead { max-width: none; }
  .register-btn {
    width: 100%;
    max-width: none;
    align-self: stretch;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }
}
