:root {
  --bg: #1c1d22;
  --bg-deep: #121318;
  --panel: #23242a;
  --panel-strong: #2b2d34;
  --panel-soft: rgba(255, 255, 255, 0.035);
  --text: #f4f1f4;
  --muted: #cbc6d0;
  --accent: #ff0ab8;
  --accent-strong: #ff4fd0;
  --accent-soft: rgba(255, 10, 184, 0.13);
  --accent-alt: #dce51d;
  --accent-alt-soft: rgba(220, 229, 29, 0.12);
  --line: rgba(255, 10, 184, 0.5);
  --line-soft: rgba(255, 255, 255, 0.08);
  --shadow: 0 28px 70px rgba(0, 0, 0, 0.34);
  --radius: 28px;
  --radius-sm: 18px;
  --container: min(1240px, 92vw);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Avenir Next", "Segoe UI", Arial, sans-serif;
  line-height: 1.72;
  background-color: var(--bg);
  background-image:
    radial-gradient(circle at top left, rgba(255, 10, 184, 0.11), transparent 24%),
    radial-gradient(circle at top right, rgba(220, 229, 29, 0.08), transparent 18%),
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(180deg, #23242a 0%, var(--bg-deep) 100%);
  background-size: auto, auto, 88px 88px, 88px 88px, auto;
  overflow-x: hidden;
}

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

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

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

p,
li {
  color: var(--muted);
}

ul,
ol {
  margin: 0;
  padding-left: 1.2rem;
}

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

th,
td {
  padding: 1rem;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--line-soft);
}

th {
  color: var(--text);
  font-weight: 700;
}

details summary {
  cursor: pointer;
  list-style: none;
}

details summary::-webkit-details-marker {
  display: none;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(18px);
  background: rgba(22, 23, 29, 0.9);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.22);
}

.header-shell {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.5rem;
  min-height: 88px;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  gap: 0.2rem;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 2rem;
  line-height: 0.95;
  letter-spacing: 0.02em;
  text-transform: none;
}

.brand span {
  font-family: "Avenir Next", "Segoe UI", Arial, sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-alt);
}

.site-nav,
.header-actions {
  display: flex;
  align-items: center;
  gap: 1.05rem;
}

.site-nav {
  justify-content: center;
}

.site-nav a,
.site-nav summary,
.mobile-panel a,
.mobile-panel summary {
  color: var(--text);
  font-weight: 600;
  transition: color 0.2s ease;
}

.site-nav a:hover,
.site-nav summary:hover,
.mobile-panel a:hover,
.mobile-panel summary:hover,
.footer-links a:hover {
  color: var(--accent-alt);
}

.nav-group {
  position: relative;
}

.nav-group summary::after,
.mobile-subnav summary::after,
.mobile-nav summary::after {
  content: "+";
  margin-left: 0.45rem;
  color: var(--accent-alt);
  font-size: 0.95rem;
  font-weight: 700;
}

.nav-group[open] summary::after,
.mobile-subnav[open] summary::after,
.mobile-nav[open] summary::after {
  content: "-";
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 0.9rem);
  left: 0;
  min-width: 220px;
  padding: 0.85rem;
  display: none;
  gap: 0.55rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(30, 31, 37, 0.98);
  box-shadow: var(--shadow);
}

.nav-group[open] .nav-dropdown {
  display: grid;
}

.nav-dropdown a {
  padding: 0.62rem 0.78rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
}

.button,
.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 48px;
  padding: 0.82rem 1.25rem;
  border-radius: 999px;
  font-weight: 700;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
}

.button:hover,
.text-link:hover {
  transform: translateY(-1px);
}

.button-primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-strong) 100%);
  box-shadow: 0 12px 28px rgba(255, 10, 184, 0.34);
}

.button-primary:hover {
  box-shadow: 0 16px 32px rgba(255, 10, 184, 0.42);
}

.button-soft {
  color: var(--accent-alt);
  background: rgba(0, 0, 0, 0.14);
  border: 1px solid var(--line);
}

.button-soft:hover {
  background: rgba(255, 10, 184, 0.08);
}

.text-link {
  min-height: auto;
  padding-inline: 0.15rem;
  color: var(--accent-alt);
}

.mobile-nav {
  display: none;
  width: 100%;
}

.mobile-nav summary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.78rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  font-weight: 700;
}

.mobile-panel {
  display: grid;
  gap: 0.85rem;
  margin-top: 0.95rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(25, 26, 31, 0.98);
  box-shadow: var(--shadow);
}

.mobile-subnav .mobile-subnav-links {
  display: grid;
  gap: 0.55rem;
  padding-top: 0.7rem;
}

.mobile-panel .button,
.mobile-panel .text-link {
  justify-content: flex-start;
}

main {
  padding: 2.6rem 0 4rem;
}

.hero,
.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 2rem;
  align-items: stretch;
  padding: 2rem 0 1rem;
}

.hero-home {
  grid-template-columns: 1fr;
  align-items: center;
  padding: 2.1rem;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  border-radius: calc(var(--radius) + 6px);
  background:
    linear-gradient(180deg, rgba(24, 24, 29, 0.72) 0%, rgba(24, 24, 29, 0.56) 34%, rgba(24, 24, 29, 0.74) 100%),
    linear-gradient(180deg, rgba(255, 10, 184, 0.08), rgba(0, 0, 0, 0.08)),
    url("images/headhome.jpg");
  background-position: center center, center center, center center;
  background-repeat: no-repeat;
  background-size: auto, auto, cover;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
  min-height: 760px;
  overflow: hidden;
  border-radius: 0;
}

.hero-home .hero-copy {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  justify-items: center;
}

.hero-home .hero-media {
  display: none;
}

.hero-home .lead,
.hero-home .hero-note {
  max-width: 48ch;
}

.hero-home .metric-row {
  width: min(1080px, 100%);
  margin-top: 1.3rem;
}

.hero-home .stat-card {
  text-align: left;
}

.page-hero {
  padding: 1.7rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  background: rgba(35, 36, 42, 0.9);
  box-shadow: var(--shadow);
}

.eyebrow,
.muted-label,
.badge-row span,
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--accent-alt);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0 0 1rem;
  color: var(--text);
  line-height: 1.06;
  font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  font-weight: 700;
  letter-spacing: -0.03em;
}

h1 {
  font-size: clamp(3rem, 7vw, 5.4rem);
  text-shadow: 0 0 12px rgba(255, 79, 208, 0.08);
}

h2 {
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  text-shadow: 0 0 10px rgba(255, 79, 208, 0.06);
}

h3 {
  font-size: 1.85rem;
}

.lead {
  font-size: 1.12rem;
  max-width: 34ch;
}

.hero-copy {
  display: grid;
  align-content: start;
  gap: 0.95rem;
}

.hero-note {
  max-width: 50ch;
  margin: 0;
}

.hero-actions,
.stack-actions,
.story-actions,
.feature-panel-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1rem;
}

.hero-points,
.bullet-grid,
.steps,
.safety-list,
.feature-list {
  display: grid;
  gap: 0.85rem;
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 0.6rem;
}

.hero-media,
.image-panel,
.feature-panel-media {
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.025);
  box-shadow: var(--shadow);
}

.hero-media img,
.page-hero img,
.image-panel img,
.feature-panel-media img,
.feature-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-media img {
  min-height: 100%;
}

.section {
  padding: 2.3rem 0 0;
}

.section-tight {
  padding-top: 1rem;
}

.section-header {
  max-width: 72ch;
  margin-bottom: 1.35rem;
}

.section-header.centered {
  max-width: 60ch;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-header p:last-child {
  margin-bottom: 0;
}

.section-shell {
  padding-top: 1.8rem;
  border-top: 1px solid var(--line);
}

.card-grid,
.feature-grid,
.sample-grid,
.showcase-grid,
.story-strip,
.footer-grid,
.faq-grid,
.category-grid,
.country-grid,
.trust-grid {
  display: grid;
  gap: 1.15rem;
}

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

.card-grid,
.feature-grid,
.sample-grid,
.showcase-grid,
.story-strip {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.faq-grid,
.footer-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card,
.faq-card,
.stat-card,
.callout,
.table-wrap,
.showcase-card,
.story-card,
.topic-tabs,
.cta-banner,
.footer-cta {
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  background: rgba(35, 36, 42, 0.96);
  box-shadow: var(--shadow);
}

.card,
.faq-card {
  padding: 1.35rem;
}

.stat-card,
.callout {
  padding: 1rem 1.05rem;
}

.stat-card {
  background:
    linear-gradient(180deg, rgba(255, 10, 184, 0.09), rgba(255, 255, 255, 0)),
    rgba(25, 26, 31, 0.94);
  border-color: rgba(255, 10, 184, 0.22);
}

.stat-card strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--text);
  font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
}

.card p:last-child,
.faq-card p:last-child,
.stat-card p:last-child,
.showcase-copy p:last-child,
.story-copy p:last-child {
  margin-bottom: 0;
}

.showcase-card,
.story-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
}

.showcase-image,
.story-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.showcase-copy,
.story-copy {
  display: grid;
  align-content: start;
  gap: 0.38rem;
  padding: 1.15rem 1.15rem 1.25rem;
}

.topic-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  padding: 1rem;
}

.topic-tabs a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0.9rem 1.15rem;
  border-radius: 999px;
  color: var(--muted);
  font-weight: 700;
  border: 1px solid transparent;
  background: rgba(255, 255, 255, 0.025);
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.topic-tabs a:first-child,
.topic-tabs a:hover {
  color: var(--accent-alt);
  border-color: var(--line);
  background: rgba(255, 10, 184, 0.08);
}

.feature-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 1.4rem;
  align-items: stretch;
  padding: 1.3rem;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 2px);
  background: rgba(35, 36, 42, 0.98);
  box-shadow: var(--shadow);
}

.feature-panel.reverse {
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
}

.feature-panel-copy {
  display: grid;
  align-content: start;
  gap: 0.85rem;
  padding: 0.4rem 0.2rem;
}

.feature-list {
  padding-left: 1.1rem;
}

.feature-list li::marker,
.safety-list li::marker {
  color: var(--accent);
}

.icon-badge,
.sample-avatar,
.country-flag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: rgba(255, 10, 184, 0.08);
  color: var(--accent-alt);
}

.sample-avatar {
  font-size: 1.15rem;
  font-weight: 800;
}

.country-flag {
  font-size: 1.5rem;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 0.85rem;
}

.badge-row span {
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
}

.inline-link {
  color: var(--accent-alt);
  font-weight: 700;
}

.inline-link:hover {
  color: var(--accent-strong);
}

.table-wrap {
  overflow-x: auto;
}

.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.steps {
  counter-reset: step;
  padding-left: 0;
}

.steps li {
  list-style: none;
  position: relative;
  padding: 1rem 1rem 1rem 4rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
}

.steps li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #121318;
  font-weight: 800;
  background: linear-gradient(135deg, var(--accent-alt) 0%, #f3ff8d 100%);
}

.sample-card {
  display: grid;
  gap: 0.9rem;
}

.sample-head {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.faq-list,
.accordion {
  display: grid;
  gap: 0.85rem;
}

.faq-list details,
.accordion details {
  padding: 1rem 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.04);
}

.faq-list summary,
.accordion summary {
  font-weight: 700;
  color: var(--text);
}

.faq-list p,
.accordion p {
  margin: 0.9rem 0 0;
}

.cta-band,
.cta-banner,
.footer-cta {
  padding: 1.45rem;
  border-color: var(--line);
  background:
    radial-gradient(circle at top right, rgba(220, 229, 29, 0.09), transparent 18%),
    linear-gradient(135deg, rgba(255, 10, 184, 0.13), rgba(255, 255, 255, 0.03)),
    rgba(35, 36, 42, 0.98);
}

.cta-banner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
}

.cta-banner p,
.footer-cta p {
  max-width: 62ch;
}

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

.mosaic-grid img {
  width: 100%;
  height: 210px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  object-fit: cover;
  box-shadow: var(--shadow);
}

.mosaic-grid img:nth-child(1),
.mosaic-grid img:nth-child(4) {
  grid-column: span 6;
}

.mosaic-grid img:nth-child(2),
.mosaic-grid img:nth-child(3),
.mosaic-grid img:nth-child(5),
.mosaic-grid img:nth-child(6) {
  grid-column: span 3;
}

.site-footer {
  margin-top: 3.2rem;
  padding: 2.2rem 0 2.8rem;
  border-top: 1px solid var(--line);
  background: rgba(18, 19, 24, 0.82);
}

.footer-cta {
  margin-bottom: 1.5rem;
}

.footer-grid {
  margin-bottom: 1.3rem;
}

.footer-links {
  display: grid;
  gap: 0.55rem;
}

.footer-note {
  color: var(--muted);
  font-size: 0.95rem;
}

.language-chip {
  display: inline-flex;
  padding: 0.34rem 0.68rem;
  border-radius: 999px;
  background: var(--accent-alt-soft);
  color: var(--accent-alt);
  font-size: 0.82rem;
  font-weight: 700;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

@media (max-width: 1080px) {
  .header-shell {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .site-nav,
  .header-actions {
    display: none;
  }

  .mobile-nav {
    display: block;
    grid-column: 1 / -1;
    margin-bottom: 1rem;
  }

  .hero,
  .page-hero,
  .feature-panel,
  .feature-panel.reverse {
    grid-template-columns: 1fr;
  }

  .cta-banner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 920px) {
  .hero-home,
  .page-hero {
    padding: 1.35rem;
  }

  .hero-home {
    min-height: 620px;
    background-position: center center, center center, center center;
  }

  .split-grid,
  .showcase-grid,
  .metric-row,
  .trust-grid,
  .card-grid,
  .country-grid,
  .feature-grid,
  .faq-grid,
  .footer-grid,
  .sample-grid,
  .category-grid,
  .story-strip {
    grid-template-columns: 1fr;
  }

  .hero-points {
    grid-template-columns: 1fr;
  }

  .showcase-image,
  .story-card img {
    height: 280px;
  }

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

  .mosaic-grid img,
  .mosaic-grid img:nth-child(1),
  .mosaic-grid img:nth-child(2),
  .mosaic-grid img:nth-child(3),
  .mosaic-grid img:nth-child(4),
  .mosaic-grid img:nth-child(5),
  .mosaic-grid img:nth-child(6) {
    grid-column: span 1;
    height: 220px;
  }

  th,
  td {
    min-width: 180px;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 15px;
  }

  .header-shell {
    min-height: 76px;
  }

  main {
    padding-top: 1.4rem;
  }

  .hero,
  .page-hero {
    gap: 1.3rem;
    padding-top: 1rem;
  }

  .hero-home,
  .page-hero,
  .feature-panel,
  .card,
  .faq-card,
  .cta-band,
  .stat-card,
  .callout,
  .topic-tabs,
  .cta-banner,
  .footer-cta {
    padding: 1rem;
  }

  .hero-home {
    min-height: 560px;
    background:
      linear-gradient(180deg, rgba(24, 24, 29, 0.82) 0%, rgba(24, 24, 29, 0.56) 42%, rgba(24, 24, 29, 0.84) 100%),
      url("images/headhome.jpg");
    background-position: center center, center center;
    background-repeat: no-repeat;
    background-size: auto, cover;
  }

  .showcase-image,
  .story-card img {
    height: 240px;
  }

  .button,
  .text-link {
    width: 100%;
  }

  .hero-actions,
  .stack-actions,
  .story-actions,
  .feature-panel-actions {
    flex-direction: column;
  }

  .topic-tabs {
    display: grid;
  }

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

  .mosaic-grid img {
    height: 220px;
  }

  h1 {
    font-size: clamp(2.55rem, 12vw, 3.45rem);
  }

  h2 {
    font-size: clamp(1.95rem, 10vw, 2.7rem);
  }
}
