/* STPL visual system — cyan / black / gray / white — static, no JS for visuals */
*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --stpl-cyan: #00ffff;
  --stpl-black: #000000;
  --stpl-gray: #d3d3d3;
  --stpl-white: #ffffff;
  --stpl-deep: #05080b;
  --stpl-glass: rgba(5, 8, 11, 0.78);
  --stpl-glass-border: rgba(0, 255, 255, 0.16);
  --stpl-radius: 18px;
  --stpl-header-min-h: 100px;
  --stpl-muted: rgba(211, 211, 211, 0.78);
}

html {
  min-height: 100%;
  background-color: var(--stpl-black);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100%;
  position: relative;
  isolation: isolate;
  font-family: Inter, system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: var(--stpl-white);
  background-color: var(--stpl-black);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Layer 1: cyan radials + black base */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  background:
    radial-gradient(ellipse 100% 58% at 50% -12%, rgba(0, 255, 255, 0.18), transparent 52%),
    radial-gradient(ellipse 75% 50% at 105% 88%, rgba(0, 255, 255, 0.1), transparent 48%),
    radial-gradient(ellipse 55% 45% at -5% 92%, rgba(0, 255, 255, 0.07), transparent 46%),
    var(--stpl-black);
}

/* Layer 2: circuit grid + soft cyan nodes (CSS-only motion) */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background-image:
    radial-gradient(circle 2px at 14% 24%, rgba(0, 255, 255, 0.5), transparent 2.5px),
    radial-gradient(circle 2px at 86% 28%, rgba(0, 255, 255, 0.4), transparent 2.5px),
    radial-gradient(circle 2px at 78% 76%, rgba(0, 255, 255, 0.45), transparent 2.5px),
    radial-gradient(circle 2px at 24% 80%, rgba(0, 255, 255, 0.35), transparent 2.5px),
    radial-gradient(circle 3px at 52% 42%, rgba(0, 255, 255, 0.22), transparent 4px),
    repeating-linear-gradient(
      0deg,
      rgba(0, 255, 255, 0.032) 0,
      rgba(0, 255, 255, 0.032) 1px,
      transparent 1px,
      transparent 52px
    ),
    repeating-linear-gradient(
      90deg,
      rgba(0, 255, 255, 0.024) 0,
      rgba(0, 255, 255, 0.024) 1px,
      transparent 1px,
      transparent 52px
    );
  background-size: 100% 100%, 100% 100%, 100% 100%, 100% 100%, 100% 100%, 100% 100%, 100% 100%;
  animation: stpl-bg-drift 18s ease-in-out infinite;
}

@keyframes stpl-bg-drift {
  0%,
  100% {
    opacity: 0.42;
    transform: translate3d(0, 0, 0);
  }
  50% {
    opacity: 0.58;
    transform: translate3d(0, -8px, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  body::after {
    animation: none;
    opacity: 0.45;
  }
}

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

a:hover {
  color: var(--stpl-cyan);
}

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

.font-playfair {
  font-family: "Playfair Display", Georgia, serif;
}

.font-mono {
  font-family: "JetBrains Mono", monospace;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

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

@media (min-width: 1024px) {
  .container {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  min-height: var(--stpl-header-min-h);
  display: flex;
  align-items: center;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 255, 255, 0.22);
}

.site-header__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1rem;
  width: 100%;
  padding-top: 10px;
  padding-bottom: 10px;
}

.site-header__nav-block {
  flex: 1 1 220px;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.35rem;
}

.header-wa-btn {
  flex-shrink: 0;
  font-family: Inter, system-ui, sans-serif;
  font-weight: 600;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  padding: 10px 14px;
  border-radius: 10px;
  border: 1px solid rgba(0, 255, 255, 0.45);
  color: var(--stpl-cyan);
  background: rgba(0, 255, 255, 0.08);
  text-decoration: none;
  text-align: center;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  white-space: nowrap;
}

.header-wa-btn:hover {
  color: var(--stpl-black);
  background: var(--stpl-cyan);
  border-color: var(--stpl-cyan);
}

.header-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  text-decoration: none;
  color: inherit;
}

.header-brand:hover {
  color: inherit;
}

.header-brand__icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  object-fit: contain;
}

.header-brand__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.header-brand__name {
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--stpl-white);
  line-height: 1.2;
}

.header-brand__company {
  font-size: 11px;
  line-height: 1.35;
  color: var(--stpl-gray);
  max-width: 52ch;
}

.header-brand__tagline {
  font-size: 11px;
  line-height: 1.35;
  color: rgba(0, 255, 255, 0.88);
  max-width: 52ch;
}

.nav-desktop {
  display: none;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 0.65rem 1rem;
}

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

.site-header .nav-desktop a {
  font-size: 13px;
  color: var(--stpl-white);
}

.site-header .nav-desktop a:hover {
  color: var(--stpl-cyan);
}

.nav-mobile-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 0.65rem;
  justify-content: flex-end;
  width: 100%;
}

@media (min-width: 1024px) {
  .nav-mobile-links {
    display: none;
    width: auto;
  }
}

.site-header .nav-mobile-links a {
  font-size: 12px;
  color: var(--stpl-gray);
}

.site-header .nav-mobile-links a:hover {
  color: var(--stpl-cyan);
}

main {
  padding-top: var(--stpl-header-min-h);
  position: relative;
  z-index: 0;
}

main.legal-doc,
main.notfound-main {
  padding-top: 0;
}

.section {
  position: relative;
  z-index: 2;
}

.section--alt {
  background: rgba(2, 8, 10, 0.88);
}

.section--deep {
  background: rgba(0, 0, 0, 0.82);
}

.section-inner {
  padding-top: 120px;
  padding-bottom: 120px;
}

.section-inner--sm {
  padding-top: 80px;
  padding-bottom: 80px;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header .eyebrow {
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: rgba(0, 255, 255, 0.85);
  margin: 0 0 1.5rem;
}

.section-header h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.75rem, 4vw, 2.625rem);
  line-height: 1.2;
  color: var(--stpl-white);
  margin: 0;
  font-weight: 400;
}

.section-header .subtitle {
  font-size: 17px;
  line-height: 1.65;
  color: var(--stpl-muted);
  margin: 1.5rem auto 0;
  max-width: 640px;
}

.hero {
  min-height: calc(100dvh - var(--stpl-header-min-h));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem 1.25rem 4rem;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background:
    radial-gradient(ellipse 75% 55% at 50% 35%, rgba(0, 255, 255, 0.12), transparent 62%),
    radial-gradient(ellipse 50% 40% at 50% 100%, rgba(0, 255, 255, 0.06), transparent 55%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.55) 100%);
}

.hero .eyebrow {
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: rgba(0, 255, 255, 0.9);
  margin: 0 0 1.5rem;
}

.hero h1 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.1;
  color: var(--stpl-white);
  max-width: 800px;
  margin: 0;
  font-weight: 400;
  text-shadow: 0 0 60px rgba(0, 255, 255, 0.18), 0 0 120px rgba(0, 255, 255, 0.06);
}

.hero .lead {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: var(--stpl-muted);
  max-width: 600px;
  margin: 1.5rem 0 0;
}

.hero-actions {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.hero-links {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-links a {
  font-size: 14px;
  color: rgba(211, 211, 211, 0.65);
}

.hero-links a:hover {
  color: var(--stpl-cyan);
}

.hero-links .sep {
  color: rgba(0, 255, 255, 0.2);
}

.btn {
  display: inline-block;
  font-family: Inter, system-ui, sans-serif;
  font-weight: 600;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 16px 36px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  text-align: center;
  transition: background 0.25s, transform 0.25s, box-shadow 0.25s, border-color 0.25s, color 0.25s;
}

.btn--primary {
  background: linear-gradient(165deg, rgba(0, 255, 255, 0.95) 0%, #00d4d4 55%, #0099aa 100%);
  color: var(--stpl-black);
  box-shadow: 0 0 0 1px rgba(0, 255, 255, 0.35), 0 12px 36px rgba(0, 255, 255, 0.18);
}

.btn--primary:hover {
  background: linear-gradient(165deg, #66ffff 0%, var(--stpl-cyan) 50%, #00cccc 100%);
  transform: translateY(-1px);
  box-shadow: 0 0 0 1px rgba(0, 255, 255, 0.55), 0 16px 44px rgba(0, 255, 255, 0.25);
}

.btn--secondary {
  background: transparent;
  color: var(--stpl-cyan);
  border: 1px solid rgba(0, 255, 255, 0.45);
  box-shadow: inset 0 0 0 1px rgba(0, 255, 255, 0.04);
}

.btn--secondary:hover {
  border-color: var(--stpl-cyan);
  color: var(--stpl-white);
  background: rgba(0, 255, 255, 0.08);
}

.btn--block {
  display: block;
  width: 100%;
}

.btn--stpl-cyan {
  background: linear-gradient(165deg, rgba(0, 255, 255, 0.95) 0%, #00d4d4 100%);
  color: var(--stpl-black);
  box-shadow: 0 4px 24px rgba(0, 255, 255, 0.2);
}

.btn--stpl-cyan:hover {
  background: #66ffff;
  color: #000000;
}

.card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 4rem;
}

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

.card-grid--3 {
  grid-template-columns: 1fr;
}

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

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

.card {
  background: var(--stpl-glass);
  border: 1px solid var(--stpl-glass-border);
  border-radius: var(--stpl-radius);
  padding: 2.5rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}

.card:hover {
  border-color: rgba(0, 255, 255, 0.38);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0, 255, 255, 0.12), 0 0 0 1px rgba(0, 255, 255, 0.08);
}

.card h3,
.card h4 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--stpl-white);
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.card .card-rule {
  width: 100%;
  height: 1px;
  background: rgba(0, 255, 255, 0.12);
  margin: 1rem 0;
}

.card p {
  font-size: 15px;
  color: var(--stpl-muted);
  line-height: 1.65;
  margin: 0;
}

.card .card-icon {
  color: rgba(0, 255, 255, 0.85);
  font-size: 22px;
  line-height: 1;
}

.card--left-accent {
  border-left: 3px solid rgba(0, 255, 255, 0.45);
}

.card--traffic-feature {
  border-color: rgba(0, 255, 255, 0.35);
}

.pillars {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  padding-bottom: 120px;
}

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

.pillar {
  position: relative;
  background: var(--stpl-glass);
  border: 1px solid var(--stpl-glass-border);
  border-radius: var(--stpl-radius);
  padding: 2.5rem 3rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}

.pillar:hover {
  border-color: rgba(0, 255, 255, 0.35);
  box-shadow: 0 12px 36px rgba(0, 255, 255, 0.1);
  transform: translateY(-2px);
}

.pillar::before {
  content: "";
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--stpl-cyan);
  box-shadow: 0 0 12px rgba(0, 255, 255, 0.7);
}

.pillar h4 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 26px;
  color: var(--stpl-white);
  margin: 1rem 0 0;
  font-weight: 400;
}

.pillar p {
  font-size: 17px;
  color: var(--stpl-muted);
  margin-top: 1rem;
  line-height: 1.65;
}

.tunnel {
  position: relative;
  height: 50vh;
  min-height: 280px;
  overflow: hidden;
  perspective: 1000px;
}

.tunnel-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse at center, rgba(0, 255, 255, 0.08) 0%, transparent 72%);
}

.tunnel-chars {
  position: absolute;
  inset: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem 1rem;
  padding: 2rem;
}

.tunnel-chars span {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.5rem, 8vw, 5rem);
  color: rgba(0, 255, 255, 0.55);
  text-shadow: 0 0 40px rgba(0, 255, 255, 0.25);
}

.pricing-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
  overflow: visible;
  margin-top: 4rem;
  width: 100%;
  max-width: 100%;
}

@media (max-width: 640px) {
  .pricing-row {
    grid-template-columns: 1fr;
  }
}

.pricing-card {
  min-width: 0;
  max-width: 100%;
  background: var(--stpl-glass);
  border: 1px solid var(--stpl-glass-border);
  border-radius: var(--stpl-radius);
  padding: 2.5rem 3rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}

.pricing-card:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 255, 255, 0.38);
  box-shadow: 0 12px 40px rgba(0, 255, 255, 0.12);
}

.pricing-card--featured {
  border: 2px solid rgba(0, 255, 255, 0.55);
  box-shadow: 0 0 48px rgba(0, 255, 255, 0.14), inset 0 0 0 1px rgba(0, 255, 255, 0.08);
}

.pricing-card .tier-name {
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(0, 255, 255, 0.92);
  margin: 0;
}

.pricing-card .price {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 42px;
  color: var(--stpl-white);
  margin: 1rem 0 0;
}

.pricing-card .note {
  font-size: 14px;
  color: rgba(211, 211, 211, 0.55);
  margin: 0.25rem 0 0;
}

.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
}

.pricing-card li {
  font-size: 15px;
  color: var(--stpl-muted);
  line-height: 2;
}

.pricing-card li::before {
  content: "→ ";
  color: rgba(0, 255, 255, 0.75);
}

.pricing-footnote {
  font-size: 13px;
  color: rgba(211, 211, 211, 0.55);
  text-align: center;
  margin-top: 2.5rem;
}

.process-list {
  margin-top: 4rem;
  position: relative;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.process-step {
  position: relative;
  padding-left: 3rem;
  margin-bottom: 4rem;
}

.process-step:last-child {
  margin-bottom: 0;
}

.process-line {
  position: absolute;
  left: 15px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(0, 255, 255, 0.2);
}

.process-dot {
  position: absolute;
  left: 11px;
  top: 12px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--stpl-cyan);
  box-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

.process-num {
  font-family: "JetBrains Mono", monospace;
  font-size: 72px;
  line-height: 1;
  color: rgba(0, 255, 255, 0.12);
  position: absolute;
  left: 3rem;
  top: -0.5rem;
}

.process-step h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--stpl-white);
  margin: 0.5rem 0 0;
  position: relative;
}

.process-step p {
  font-size: 15px;
  color: var(--stpl-muted);
  margin: 0.5rem 0 0;
  line-height: 1.65;
}

.faq-item {
  border-bottom: 1px solid rgba(0, 255, 255, 0.1);
  padding: 1.5rem 0;
}

.faq-item strong {
  display: block;
  font-size: 18px;
  font-weight: 600;
  color: var(--stpl-white);
  margin-bottom: 0.75rem;
}

.faq-item p {
  font-size: 15px;
  color: var(--stpl-muted);
  line-height: 1.65;
  margin: 0;
}

.faq-item a {
  color: var(--stpl-cyan);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.compliance-center {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.compliance-center h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2rem, 4vw, 2.625rem);
  line-height: 1.2;
  color: var(--stpl-white);
  margin: 0;
  font-weight: 400;
}

.compliance-center > p {
  font-size: 17px;
  color: var(--stpl-muted);
  margin: 1.5rem 0 0;
  line-height: 1.65;
}

.badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
}

.badges span {
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(211, 211, 211, 0.65);
  border: 1px solid rgba(0, 255, 255, 0.2);
  padding: 0.5rem 1rem;
  border-radius: 4px;
}

.contact-block {
  margin-top: 3rem;
}

.contact-block p {
  font-size: 15px;
  margin: 0.35rem 0;
}

.contact-block a {
  color: var(--stpl-cyan);
}

.contact-block a:hover {
  color: #66ffff;
}

.site-footer.stpl-footer {
  background: var(--stpl-black);
  color: var(--stpl-gray);
  border-top: 1px solid rgba(0, 255, 255, 0.25);
  padding: 3rem 0 2rem;
}

.stpl-footer__grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media (min-width: 768px) {
  .stpl-footer__grid {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    gap: 2.5rem;
  }
}

.stpl-footer__company {
  margin: 0 0 0.75rem;
  font-size: 15px;
  font-weight: 600;
  color: var(--stpl-white);
}

.stpl-footer__contact {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
  line-height: 1.75;
}

.stpl-footer__contact li {
  margin: 0.15rem 0;
  color: rgba(211, 211, 211, 0.92);
}

.stpl-footer__label {
  color: var(--stpl-gray);
  margin-right: 0.25rem;
}

.stpl-footer__nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.stpl-footer__nav a {
  font-size: 14px;
  color: rgba(211, 211, 211, 0.88);
  text-decoration: none;
}

.stpl-footer__nav a:hover {
  color: var(--stpl-cyan);
}

.stpl-footer__bottom {
  margin-top: 2.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(0, 255, 255, 0.12);
  font-size: 12px;
  color: rgba(211, 211, 211, 0.72);
}

.stpl-footer__bottom p {
  margin: 0;
}

.center-cta {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
}

.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;
}

::selection {
  background-color: rgba(0, 255, 255, 0.35);
  color: var(--stpl-black);
}

:focus-visible {
  outline: 2px solid var(--stpl-cyan);
  outline-offset: 2px;
}

.legal-doc {
  max-width: 900px;
  margin: 0 auto;
  padding: calc(var(--stpl-header-min-h) + 24px) 1.25rem 4rem;
  color: var(--stpl-gray);
}

.legal-doc .back {
  font-size: 14px;
  color: rgba(211, 211, 211, 0.85);
}

.legal-doc .back:hover {
  color: var(--stpl-cyan);
}

.legal-doc h1 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2rem, 4vw, 2.625rem);
  font-weight: 400;
  color: var(--stpl-white);
  margin: 2rem 0 0.5rem;
}

.legal-doc .meta {
  font-size: 14px;
  color: rgba(211, 211, 211, 0.75);
  margin: 0.25rem 0;
}

.legal-doc .sections {
  margin-top: 2.5rem;
}

.legal-doc section {
  margin-bottom: 2rem;
}

.legal-doc h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--stpl-white);
  margin: 0 0 1rem;
}

.legal-doc p,
.legal-doc li {
  font-size: 17px;
  line-height: 1.65;
  margin: 0 0 0.75rem;
}

.legal-doc strong {
  color: var(--stpl-white);
  font-weight: 600;
}

.legal-doc a {
  color: var(--stpl-cyan);
}

.legal-doc a:hover {
  text-decoration: underline;
}

.legal-card {
  background: var(--stpl-glass);
  border: 1px solid var(--stpl-glass-border);
  border-radius: var(--stpl-radius);
  padding: 2rem;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.legal-card h2 {
  margin-top: 0;
  color: rgba(0, 255, 255, 0.95);
}

.legal-card .label {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(211, 211, 211, 0.65);
  margin: 0 0 0.25rem;
}

.legal-card .value {
  font-size: 15px;
  color: var(--stpl-white);
  margin: 0 0 1rem;
}

.notfound-main {
  min-height: calc(100dvh - 200px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--stpl-header-min-h) + 32px) 1.25rem 4rem;
  color: var(--stpl-gray);
}

.notfound-main h1 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(4rem, 18vw, 7rem);
  line-height: 1;
  color: rgba(0, 255, 255, 0.1);
  margin: 0;
}

.notfound-main h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.75rem;
  color: var(--stpl-white);
  margin: 1rem 0 0.5rem;
}

.notfound-main .btn-wrap {
  margin-top: 2rem;
}

/* Multi-page inner layouts */
.page-lead {
  max-width: 680px;
  margin: 0.75rem auto 0;
  text-align: center;
  color: var(--stpl-muted);
  font-size: 17px;
  line-height: 1.65;
}

.page-block {
  padding-bottom: 4rem;
}

.stpl-safety {
  margin-top: 2.5rem;
  padding: 1.25rem 1.5rem;
  border-radius: var(--stpl-radius);
  border: 1px solid rgba(0, 255, 255, 0.15);
  background: var(--stpl-glass);
  font-size: 14px;
  line-height: 1.65;
  color: var(--stpl-muted);
}

.stpl-details {
  margin-top: 2rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.stpl-details summary {
  cursor: pointer;
  font-weight: 600;
  color: rgba(0, 255, 255, 0.95);
  list-style: none;
  padding: 0.5rem 0;
}

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

.stpl-details[open] summary {
  margin-bottom: 0.75rem;
}

.tariff-img {
  margin-top: 1rem;
  max-width: min(100%, 720px);
  margin-left: auto;
  margin-right: auto;
  border-radius: var(--stpl-radius);
  border: 1px solid var(--stpl-glass-border);
}

.stpl-contact-lines {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  font-size: 16px;
  line-height: 2;
  color: var(--stpl-muted);
}

.stpl-contact-lines li strong {
  color: var(--stpl-white);
  font-weight: 600;
  margin-right: 0.35rem;
}

.cta-band {
  text-align: center;
  padding: 3rem 1.25rem;
  margin-top: 2rem;
  border-radius: var(--stpl-radius);
  border: 1px solid rgba(0, 255, 255, 0.18);
  background: var(--stpl-glass);
}

.cta-band .actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 1.5rem;
}

.pathway-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 3rem;
}

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

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

.cap-grid-4 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 3rem;
}

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

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