/* Buzo TV — Vanilla Design System
 * Extracted from Next.js + Tailwind project's globals.css
 */

/* ── Brand tokens ── */
:root {
  --font-sans: "DM Sans", "Segoe UI", system-ui, -apple-system, sans-serif;

  /* Backgrounds */
  --bg-main: #0a0012;
  --bg-deep: #030005;
  --bg-hero-start: #050713;
  --bg-hero-end: #130827;
  --bg-footer: #060711;
  --bg-footer-spotify: #0f0f14;

  /* Card surfaces */
  --card-default: #1d0032;
  --card-purple: #280043;
  --card-hover: #280043;
  --card-recommended: #10172a;
  --card-glass: rgba(26, 0, 46, 0.78);
  --card-pricing: #0d0d18;
  --card-pricing-end: #0a0a18;
  --card-table: #0c0d10;

  /* Brand */
  --brand-purple: #5000b8;
  --brand-purple-deep: #2d006b;
  --brand-purple-soft: #a324f7;
  --brand-blue: #1d4ed8;
  --brand-cyan: #59d0fb;
  --brand-indigo: #5446ff;
  --brand-water-cyan: #77f6fd;
  --brand-orange: #fc860e;
  --brand-warm-orange: #ffb13b;
  --brand-orange-red: #ff5a2a;

  /* Text */
  --text-white: #ffffff;
  --text-primary: #d9d7e6;
  --text-secondary: #a9a4ba;
  --text-muted: #77728c;
  --text-disabled: #5e596f;
  --text-blue-accent: #1d4ed8;
  --text-orange-accent: #ff9b21;
  --text-nav-muted: #a6a6a6;
  --text-metric: #d8eaff;

  /* Borders */
  --border-default: rgba(255, 255, 255, 0.10);
  --border-premium: rgba(255, 255, 255, 0.14);
  --border-purple-hover: color-mix(in oklab, var(--brand-purple) 48%, transparent);
  --border-cyan-recommended: color-mix(in oklab, var(--brand-cyan) 62%, transparent);

  /* Layout */
  --page-max-width: 1280px;
  --section-gap: 96px;
  --bg-pricing: #07080f;
  --header-height: 72px;

  /* Misc */
  --canvas-deeper: #050505;
  --sprout: #49de80;
  --badge-default: #969696;
}

/* ── Reset & base ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body {
  background: var(--bg-main);
  color: var(--text-primary);
  font-family: var(--font-sans);
  line-height: 1.5;
}
img, video {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}

/* ── Utility classes ── */
.page-container {
  margin-left: auto;
  margin-right: auto;
  max-width: var(--page-max-width);
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (min-width: 640px) {
  .page-container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .page-container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.section-title {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.25;
  color: var(--text-white);
  text-align: center;
}
@media (min-width: 640px) {
  .section-title {
    font-size: 40px;
  }
}

.section-subtitle {
  margin-left: auto;
  margin-right: auto;
  margin-top: 1.25rem;
  max-width: 600px;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.625;
  color: var(--text-secondary);
  text-align: center;
}

.section-padding {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
@media (min-width: 768px) {
  .section-padding {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
}

.section-eyebrow {
  margin-bottom: 1.25rem;
  font-size: 11px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-muted);
}

.glass-card {
  background: var(--card-glass);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-radius: 22px;
}

.glass-input {
  display: block;
  width: 100%;
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 0.625rem 1rem;
  font-size: 0.875rem;
  color: #fff;
  outline: none;
  transition: all 0.2s;
}
.glass-input:focus {
  border-color: #59d0fb;
  box-shadow: 0 0 0 3px rgba(89, 208, 251, 0.15);
}
.glass-input::placeholder {
  color: #888;
}
select.glass-input {
  cursor: pointer;
}

.gradient-arc {
  background: linear-gradient(
    120deg,
    #5000b8 0%,
    #009cfe 48%,
    #59d0fb 100%
  );
}

.icon-sm {
  height: 1rem;
  width: 1rem;
}

.text-brand-cyan {
  color: var(--brand-cyan);
}

/* ── Shared utilities ── */
.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;
}

.flex-row-gap2 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.min-w-0 {
  min-width: 0;
}

.hidden {
  display: none;
}

@media (min-width: 768px) {
  .md\:block {
    display: block;
  }
}

.w-full {
  width: 100%;
}

.navbar-hidden {
  display: none;
  align-items: center;
  gap: 2px;
}
@media (min-width: 768px) {
  .navbar-hidden { display: flex; }
}

/* ── Navbar (sticky frosted glass) ── */
.nav-header {
  position: sticky;
  top: 0;
  z-index: 50;
  transition: all 300ms;
}
.nav-header-scrolled {
  background: rgba(0, 0, 0, 0.92);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.04);
  -webkit-backdrop-filter: blur(48px);
  backdrop-filter: blur(48px);
}
.nav-header-transparent {
  background: transparent;
}

.nav-inner {
  display: flex;
  height: 72px;
  align-items: center;
  justify-content: space-between;
}

.nav-desktop-link {
  border-radius: 40px;
  padding: 0.5rem 1.25rem;
  font-size: 15px;
  font-weight: 400;
  color: var(--text-nav-muted);
  cursor: pointer;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0.18);
  transition: all 0.15s;
}
.nav-desktop-link:hover {
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
}
.nav-desktop-link-active {
  font-weight: 500;
  color: #fff;
  box-shadow: 0 0 0 1px rgba(0, 156, 254, 0.15);
}

.nav-icon-btn {
  display: inline-flex;
  height: 2.25rem;
  width: 2.25rem;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-primary);
  cursor: pointer;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0.18);
  touch-action: manipulation;
  transition: color 0.2s, background-color 0.2s;
  border: none;
  font: inherit;
}
@media (min-width: 768px) {
  .nav-icon-btn { display: none; }
}
.nav-icon-btn:hover {
  background: rgba(255, 255, 255, 0.1);
}

.icon-size-6 {
  width: 1.5rem;
  height: 1.5rem;
}

.nav-backdrop {
  position: fixed;
  inset: 0;
  z-index: 40;
  background: rgba(0, 0, 0, 0.6);
  will-change: opacity;
  transition: opacity 300ms ease-out;
}
@media (min-width: 768px) {
  .nav-backdrop { display: none; }
}
.nav-backdrop-open { opacity: 1; }
.nav-backdrop-closed { opacity: 0; pointer-events: none; }

.nav-drawer {
  position: fixed;
  inset-block: 0;
  right: 0;
  z-index: 50;
  display: flex;
  width: 260px;
  flex-direction: column;
  background: rgba(0, 0, 0, 0.95);
  -webkit-backdrop-filter: blur(48px);
  backdrop-filter: blur(48px);
  will-change: transform;
  transition: transform 300ms ease-out;
}
@media (min-width: 768px) {
  .nav-drawer { display: none; }
}
.nav-drawer-open { transform: translateX(0); }
.nav-drawer-closed { transform: translateX(100%); }

.nav-drawer-header {
  display: flex;
  height: 3.5rem;
  align-items: center;
  justify-content: flex-end;
  padding: 0 1rem;
}

.nav-drawer-links {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.5rem 1rem;
}

.nav-mobile-link {
  border-radius: 10px;
  padding: 0.75rem;
  font-size: 15px;
  font-weight: 400;
  color: var(--text-nav-muted);
  cursor: pointer;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0.18);
  transition: all 0.15s;
}
.nav-mobile-link:hover {
  background: rgba(0, 156, 254, 0.12);
  color: #fff;
}
.nav-mobile-link-active {
  background: rgba(0, 156, 254, 0.12);
  color: #fff;
  box-shadow: 0 0 0 1px rgba(0, 156, 254, 0.15);
}

/* ── Hero section ── */
.hero-section {
  position: relative;
  isolation: isolate;
  display: flex;
  min-height: 80vh;
  align-items: center;
  overflow: hidden;
  background: #000;
}
@media (min-width: 1024px) {
  .hero-section {
    min-height: 100vh;
  }
}

.hero-video-wrap {
  position: absolute;
  inset: 0;
  mask-image: linear-gradient(to right, transparent 0%, black 25%, black 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 25%, black 100%);
}
@media (min-width: 1024px) {
  .hero-video-wrap {
    inset-block: 0;
    left: 50%;
    width: 50%;
  }
}

.hero-section-object-cover {
  display: block;
  height: 100%;
  width: 100%;
  object-fit: cover;
}
@media (min-width: 1024px) {
  .hero-section-object-cover {
    display: none;
  }
}

.hero-section-hidden {
  display: none;
  height: 100%;
  width: 100%;
  object-fit: cover;
}
@media (min-width: 1024px) {
  .hero-section-hidden {
    display: block;
  }
}

/* Poster fallback — visible until JS creates the <video> elements */
.hero-video-poster-fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-gradient-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(0, 0, 0, 0.4) 25%,
    rgba(0, 0, 0, 0.6) 45%,
    rgba(0, 0, 0, 0.15) 65%,
    transparent 85%
  );
  pointer-events: none;
}

.hero-content-wrap {
  position: relative;
  z-index: 10;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  padding-top: 3rem;
  padding-bottom: 3rem;
}
@media (min-width: 1024px) {
  .hero-content-wrap {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}

.hero-text-wrap {
  max-width: 36rem;
}

.hero-badge {
  margin-bottom: 1.25rem;
  display: inline-block;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.1);
  padding: 0.375rem 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #fff;
}

.hero-section-font-bold {
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.15;
  color: #fff;
}
@media (min-width: 640px) {
  .hero-section-font-bold {
    font-size: 3rem;
  }
}
@media (min-width: 1024px) {
  .hero-section-font-bold {
    font-size: 3.75rem;
  }
}

.hero-subtitle {
  margin-top: 1rem;
  font-weight: 300;
  line-height: 1.625;
  color: rgba(255, 255, 255, 0.6);
}
@media (min-width: 640px) {
  .hero-subtitle {
    margin-top: 1.5rem;
    font-size: 1.125rem;
  }
}

.hero-cta-row {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
@media (min-width: 640px) {
  .hero-cta-row {
    margin-top: 2.5rem;
    flex-direction: row;
  }
}

/* ── Buttons ── */
.btn-base {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  font-weight: 600;
  cursor: pointer;
  transition: all 200ms;
  text-decoration: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0.18);
  touch-action: manipulation;
  border: none;
  font-family: inherit;
  line-height: 1;
}

.btn-primary {
  border: none;
  background: linear-gradient(135deg, #5000b8 0%, #a324f7 40%, #ff5a2a 70%, #fc860e 100%);
  color: #fff;
}
.btn-primary:hover {
  transform: scale(1.02);
  filter: brightness(1.15);
}
.btn-primary:active {
  transform: scale(0.97);
  filter: brightness(0.9);
}

.btn-secondary {
  border: none;
  background: linear-gradient(135deg, #172554 0%, #1e3a8a 100%);
  color: #fff;
}
.btn-secondary:hover {
  transform: scale(1.02);
  filter: brightness(1.1);
}
.btn-secondary:active {
  transform: scale(0.97);
  filter: brightness(0.9);
}

.btn-lg {
  height: 3rem;
  padding: 0 2rem;
  font-size: 0.875rem;
  gap: 0.75rem;
}

/* ── Text shadow glow ── */
.text-shadow-glow {
  text-shadow: 0 0 40px color-mix(in oklab, var(--brand-purple) 15%, transparent);
}

/* ── Animations ── */
@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* ── Brand marquee ── */
.brand-marquee-section {
  position: relative;
  padding: 2rem 0;
  overflow: hidden;
  min-height: 80px;
}
.brand-marquee-row {
  display: flex;
  align-items: center;
  gap: 4rem;
}
.brand-marquee-track {
  will-change: transform;
}
.brand-marquee-shrink-0 {
  display: flex;
  flex-shrink: 0;
  flex-direction: column;
  align-items: center;
  gap: 0.375rem;
}
.brand-marquee-object-contain {
  height: 1.5rem;
  width: auto;
  object-fit: contain;
}
@media (min-width: 768px) {
  .brand-marquee-object-contain {
    height: 1.75rem;
  }
}
.brand-marquee-label {
  white-space: nowrap;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.4);
}

/* ── Hero Feature Bar (stats grid) ── */
.hero-feature-section {
  background: var(--bg-main);
}
.hero-feature-bar-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 640px) {
  .hero-feature-bar-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
}
@media (min-width: 1024px) {
  .hero-feature-bar-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }
}

.stat-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(14, 12, 25, 0.75);
  padding: 2rem 1.25rem;
  text-align: center;
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  transition: all 0.3s;
  border-radius: 22px;
}
.stat-card:hover {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(20, 16, 34, 0.82);
}
@media (min-width: 640px) {
  .stat-card {
    padding: 2.5rem 1.5rem;
  }
}

.hero-feature-icon-wrap {
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-feature-glow {
  filter: drop-shadow(0 0 12px color-mix(in srgb, var(--brand-purple) 30%, transparent));
}

.hero-feature-bar-font-black {
  font-size: 34px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.02em;
  color: #fff;
}
@media (min-width: 640px) {
  .hero-feature-bar-font-black {
    font-size: 40px;
  }
}

.hero-feature-bar-heading {
  margin-top: 0.5rem;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #fff;
}
@media (min-width: 640px) {
  .hero-feature-bar-heading {
    font-size: 1.125rem;
  }
}

.hero-feature-bar-desc {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.625;
  color: var(--text-muted);
}
.hero-feature-bar-desc > * + * {
  margin-top: 0.125rem;
}

/* ── Content Categories ── */
.categories-section {
  background: var(--bg-main);
}

.content-categories-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1rem;
}
@media (min-width: 640px) {
  .content-categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 768px) {
  .content-categories-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (min-width: 1024px) {
  .content-categories-grid {
    gap: 1.25rem;
  }
}

.category-card-outer {
  position: relative;
  min-height: 260px;
  width: 100%;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--border-default);
  border-radius: 22px;
  background: var(--card-glass);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}
@media (min-width: 640px) {
  .category-card-outer {
    min-height: 320px;
  }
}
@media (min-width: 1024px) {
  .category-card-outer {
    min-height: 420px;
  }
}

.category-card-img {
  pointer-events: none;
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  filter: saturate(0.45) contrast(1.15) brightness(0.55);
  transition: all 1.2s cubic-bezier(0.33, 1, 0.68, 1);
}
.category-card-outer:hover .category-card-img {
  transform: scale(1.05);
}

.category-overlay {
  pointer-events: none;
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  z-index: 3;
  height: 65%;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.85) 20%,
    rgba(0, 0, 0, 0.4) 50%,
    transparent 100%
  );
}

.card-content {
  position: relative;
  z-index: 4;
  display: flex;
  height: 100%;
  min-height: 260px;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 0 1.25rem 1.25rem;
}
@media (min-width: 640px) {
  .card-content {
    min-height: 320px;
    padding: 0 1.5rem 1.5rem;
  }
}
@media (min-width: 1024px) {
  .card-content {
    min-height: 420px;
    padding: 0 2rem 1.5rem;
  }
}

.category-icon-group {
  margin-bottom: 1rem;
  opacity: 0.7;
  transition: all 500ms cubic-bezier(0.33, 1, 0.68, 1);
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.6));
}
.category-card-outer:hover .category-icon-group {
  opacity: 1;
  transform: scale(1.1);
}

.category-card-heading {
  margin-bottom: 0.375rem;
  text-align: center;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
}
@media (min-width: 1024px) {
  .category-card-heading {
    font-size: 1.5rem;
  }
}

.category-tagline {
  margin-bottom: 1rem;
  text-align: center;
  font-size: 14px;
  line-height: 1.625;
  color: var(--text-secondary);
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.65);
}

.category-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  border-radius: 9999px;
  border: 1px solid var(--border-default);
  padding: 0.25rem 0.625rem;
  font-size: 9px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: all 0.4s;
  color: var(--badge-default);
  background: rgba(255,255,255,0.03);
  text-shadow: 0 1px 4px rgba(0,0,0,0.6);
}

.category-live-dot-inner {
  display: inline-block;
  height: 4px;
  width: 4px;
  flex-shrink: 0;
  border-radius: 9999px;
  background: var(--sprout);
  animation: pulse-dot 2s ease-in-out infinite;
}

.category-section-label {
  margin-bottom: 1.25rem;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--text-muted);
}

.section-header-center {
  margin-bottom: 4rem;
  text-align: center;
}
@media (min-width: 768px) {
  .section-header-center {
    margin-bottom: 5rem;
  }
}

.section-header-wrapper {
  margin-left: auto;
  margin-right: auto;
  max-width: 48rem;
  text-align: center;
}

.section-subtitle-sm {
  margin-top: 1rem;
  font-size: 16px;
  color: var(--text-secondary);
  text-align: center;
}

/* ── Categories CTA banner ── */
.categories-cta-banner {
  margin-top: 4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(10, 10, 10, 0.6);
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 640px) {
  .categories-cta-banner {
    flex-direction: row;
    justify-content: space-between;
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.flex-row-gap3 {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.device-icon-circle {
  display: flex;
  height: 2.5rem;
  width: 2.5rem;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.text-body-light {
  font-size: 0.875rem;
  line-height: 1.625;
  color: rgba(255, 255, 255, 0.75);
}

.icon-xs {
  height: 0.875rem;
  width: 0.875rem;
}

.arrow-icon {
  height: 1.25rem;
  width: 1.25rem;
  stroke: rgba(255, 255, 255, 0.6);
}

.btn-sm {
  height: 2.75rem;
  padding: 0 1.25rem;
  font-size: 0.75rem;
  gap: 0.5rem;
}

.categories-cta-btn {
  margin-top: 1rem;
}
@media (min-width: 640px) {
  .categories-cta-btn {
    margin-top: 0;
  }
}

/* ── Device Compatibility ── */
.device-section-header {
  margin-bottom: 3.5rem;
  text-align: center;
}
@media (min-width: 768px) {
  .device-section-header {
    margin-bottom: 4rem;
  }
}

.device-compatibility-flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem;
}

.device-card {
  display: flex;
  width: 210px;
  align-items: center;
  gap: 1rem;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: var(--card-glass);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  padding: 1.25rem;
  transition: all 0.3s;
}
.device-card:hover {
  border-color: rgba(255, 255, 255, 0.14);
}

.device-compatibility-shrink-0 {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
}

.device-icon-svg {
  height: 3rem;
  width: 3rem;
  color: rgba(255, 255, 255, 0.30);
}

.device-text-wrap {
  min-width: 0;
  flex: 1;
}

.device-compatibility-font-bold {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.25;
  color: #fff;
}

.device-card-subtitle {
  margin-top: 0.125rem;
  font-size: 13px;
  line-height: 1.375;
  color: rgba(255, 255, 255, 0.50);
}

.device-cta-btn {
  margin-top: 1rem;
}
@media (min-width: 640px) {
  .device-cta-btn {
    margin-top: 0;
  }
}

.cta-banner {
  margin-top: 4rem;
  border-radius: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(10, 0, 18, 0.6);
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 640px) {
  .cta-banner {
    flex-direction: row;
    justify-content: space-between;
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

/* ── Install Steps ── */
.install-section {
  background: var(--bg-main);
}

.install-steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .install-steps-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.step-card {
  position: relative;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  background: var(--card-glass);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  padding: 1.75rem;
  color: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: all 0.2s;
}
.step-card:hover {
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 30px rgba(89, 208, 251, 0.04);
}

.step-badge {
  position: absolute;
  right: -0.625rem;
  top: -0.625rem;
  display: flex;
  height: 2.5rem;
  width: 2.5rem;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 700;
  color: #fff;
  box-shadow: 0 2px 8px rgba(29, 78, 216, 0.25);
}
.step-badge-cyan {
  background: #1d4ed8;
}

.step-icon-box {
  margin-bottom: 1rem;
  display: flex;
  height: 3.5rem;
  width: 3.5rem;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.icon-lg {
  height: 1.75rem;
  width: 1.75rem;
}


.step-title {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.03;
  letter-spacing: 0.03em;
  color: var(--text-white);
}

.step-desc {
  margin-top: 0.625rem;
  flex: 1;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-secondary);
}

.install-steps-divider {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
}
@media (min-width: 640px) {
  .install-steps-divider {
    flex-direction: row;
  }
}

.install-guide-text {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.install-steps-shrink-0 {
  display: flex;
  height: 2rem;
  width: 2rem;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  background: rgba(89, 208, 251, 0.1);
}

.install-cta-btn {
  gap: 0.625rem;
  transition: translate 0.15s;
}
.install-cta-btn:hover {
  translate: 0 -1px;
}
.install-cta-btn:active {
  translate: 0;
}

/* ── Pricing Summary (Stripe-inspired) ── */
.pricing-section {
  position: relative;
  overflow: hidden;
  background: var(--bg-main);
}

.pricing-halo-left {
  pointer-events: none;
  position: absolute;
  right: -200px;
  top: -200px;
  height: 700px;
  width: 700px;
  background: radial-gradient(ellipse at center, rgba(0,200,255,0.12) 0%, transparent 70%);
}

.pricing-halo-right {
  pointer-events: none;
  position: absolute;
  bottom: -100px;
  left: -200px;
  height: 500px;
  width: 500px;
  background: radial-gradient(ellipse at center, rgba(0,200,255,0.06) 0%, transparent 70%);
}

.pricing-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 2rem;
  border-radius: 22px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3), 0 8px 32px rgba(0,0,0,0.15);
  transition: all 300ms cubic-bezier(0.16,1,0.3,1);
}
.pricing-card:hover {
  translate: 0 -4px;
  border-color: rgba(255,255,255,0.2);
  box-shadow: 0 4px 16px rgba(0,0,0,0.35), 0 12px 48px rgba(89,208,251,0.08);
}

.pricing-card-rec {
  border: 1px solid rgba(89,208,251,0.30);
}

.pricing-card-default {
  border: 1px solid rgba(255,255,255,0.08);
}

.pricing-badge-pos {
  position: absolute;
  left: 50%;
  top: 0;
  z-index: 10;
  transform: translate(-50%, -50%);
}

.badge-best-value {
  display: inline-block;
  white-space: nowrap;
  border-radius: 9999px;
  background: #1d4ed8;
  padding: 0.375rem 1rem;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: 0.08em;
  color: var(--text-white);
  box-shadow: 0 2px 8px rgba(29,78,216,0.35);
}

.billing-tag {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
}
.billing-tag::after {
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,0.06);
  content: "";
}

.pricing-name {
  margin-bottom: 0.25rem;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text-white);
}

.pricing-muted-text {
  margin-bottom: 2rem;
  font-size: 14px;
  color: var(--text-muted);
}

.pricing-section-divider {
  margin-bottom: 1.75rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding-bottom: 1.75rem;
}

.pricing-price-lg {
  font-size: 52px;
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--text-white);
}
@media (max-width: 767px) {
  .pricing-price-lg { font-size: 40px; }
}
@media (max-width: 639px) {
  .pricing-price-lg { font-size: 32px; }
}

.pricing-currency {
  vertical-align: super;
  margin-right: 0.125rem;
  font-size: 24px;
  font-weight: 300;
  color: var(--text-muted);
}

.pricing-footnote {
  margin-top: 0.375rem;
  font-size: 14px;
  color: var(--text-muted);
}

.pricing-tag-sm {
  margin-top: 0.5rem;
  display: inline-block;
  border-radius: 0.25rem;
  background: rgba(89,208,251,0.08);
  padding: 0.125rem 0.5rem;
  font-size: 11px;
  font-weight: 500;
  color: var(--brand-cyan);
}

.pricing-feature-list {
  margin-bottom: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
}

.pricing-feature-row {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.pricing-check-icon {
  display: inline-flex;
  height: 1rem;
  width: 1rem;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  background: color-mix(in oklab, var(--brand-cyan) 12%, transparent);
}

.pricing-card-cta {
  width: 100%;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  height: auto;
  min-height: 3rem;
}

.pricing-bottom-cta {
  position: relative;
  z-index: 1;
  margin-top: 3rem;
  text-align: center;
}

.pricing-cta-link {
  gap: 0.5rem;
}

.pricing-arrow-icon {
  height: 1rem;
  width: 1rem;
}

/* ── Security Observatory (F038) ── */
.security-section {
  position: relative;
  overflow: hidden;
  background: var(--bg-deep);
  padding-top: 1rem;
  padding-bottom: 1rem;
}
@media (min-width: 768px) {
  .security-section {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}

.security-support-pointer-events- {
  pointer-events: none;
  position: absolute;
  inset: 0;
  overflow: hidden;
}
@media (max-width: 767px) {
  .security-support-pointer-events- { display: none; }
}

.obs-page-wrap {
  position: relative;
}

.obs-section-header {
  margin-bottom: 1.5rem;
  text-align: center;
}
@media (min-width: 768px) {
  .obs-section-header {
    margin-bottom: 2.5rem;
  }
}

.obs-grid-row {
  margin-bottom: 0.75rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}
@media (min-width: 640px) {
  .obs-grid-row {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .obs-grid-row {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 768px) {
  .obs-grid-row {
    margin-bottom: 2.5rem;
  }
}

.obs-grid-row-2 {
  margin-bottom: 1.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}
@media (min-width: 1024px) {
  .obs-grid-row-2 {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 768px) {
  .obs-grid-row-2 {
    margin-bottom: 2.5rem;
  }
}

.obs-card {
  position: relative;
  border: 1px solid rgba(216, 234, 255, 0.12);
  background: var(--card-glass);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-radius: 1rem;
  padding: 1.5rem;
  transition: border-color 0.3s;
}
@media (min-width: 768px) {
  .obs-card {
    padding: 1.75rem;
  }
}

.obs-card-hover-cyan:hover {
  border-color: rgba(89, 208, 251, 0.35);
}

.signal-trace {
  position: absolute;
  left: 1.5rem;
  right: 1.5rem;
  top: -1px;
  height: 2px;
  background: linear-gradient(to right, transparent, #59d0fb, transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.obs-card:hover .signal-trace {
  opacity: 0.6;
}

.obs-icon-box {
  margin-bottom: 0.75rem;
  display: flex;
  height: 2.75rem;
  width: 2.75rem;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  border: 1px solid rgba(216, 234, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
}

.icon-md {
  height: 1.25rem;
  width: 1.25rem;
}

.obs-card-heading {
  margin-bottom: 0.75rem;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.25;
  color: #fff;
}
@media (min-width: 768px) {
  .obs-card-heading {
    font-size: 1.25rem;
  }
}

.obs-card-desc {
  font-size: 0.8125rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.55);
}

.text-body-metric {
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  color: var(--text-muted);
}

.obs-metric-footer {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-top: 1px solid rgba(216, 234, 255, 0.06);
  padding-top: 1rem;
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  color: var(--text-muted);
}

.lg\:col-span-2 {
  grid-column: span 2;
}
@media (max-width: 1023px) {
  .lg\:col-span-2 { grid-column: span 1; }
}

.eyebrow-subtle {
  font-size: 11px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
}

.obs-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2rem;
  border: 1px solid rgba(216, 234, 255, 0.08);
  border-radius: 0.75rem;
  background: rgba(0, 0, 0, 0.45);
  padding: 0.875rem 1.25rem;
}
@media (max-width: 767px) {
  .obs-bar { display: none; }
}

.obs-bar-row {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.obs-bar-text {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

.obs-bar-stats {
  display: flex;
  gap: 2rem;
}

.obs-stat-right {
  text-align: right;
}

.obs-stat-value {
  font-size: 1rem;
  color: var(--text-metric);
}

.security-support-animate-obsPuls {
  height: 0.5rem;
  width: 0.5rem;
  border-radius: 9999px;
  background: var(--brand-cyan);
  box-shadow: 0 0 12px rgba(89, 208, 251, 0.4);
  animation: obsPulse 2s ease-in-out infinite;
}

.text-body-metric {
  color: var(--text-metric);
}

.security-support-flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.obs-cta-btn {
  gap: 0.625rem;
  padding-left: 2.25rem;
  padding-right: 2.25rem;
  font-size: 15px;
  font-weight: 500;
}

/* ── FAQ Summary ── */

.faq-list-wrap {
  margin-left: auto;
  margin-right: auto;
  margin-top: 2.5rem;
}
.faq-list-wrap > * + * {
  margin-top: 0.75rem;
}

.faq-item-card {
  border-radius: 22px;
  border: 1px solid;
  background: var(--card-glass);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  transition: border-color 0.2s, background 0.2s;
}

.faq-item-card-open {
  border-color: rgba(89, 208, 251, 0.40);
}

.faq-item-card-closed {
  border-color: rgba(255, 255, 255, 0.10);
}
.faq-item-card-closed:hover {
  border-color: rgba(255, 255, 255, 0.20);
}

.faq-btn {
  display: flex;
  height: auto;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-radius: 1rem;
  padding: 1rem 1.5rem;
  text-align: left;
  cursor: pointer;
  list-style: none;
  min-height: 44px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0.18);
  touch-action: manipulation;
  background: none;
  border: none;
  color: inherit;
  font: inherit;
}
.faq-btn::-webkit-details-marker { display: none; }
@media (min-width: 768px) {
  .faq-btn { padding: 1.25rem 2rem; }
}

.section-subheading {
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--text-white);
}
@media (min-width: 768px) {
  .section-subheading {
    font-size: 1.0625rem;
  }
}

.accordion-chevron {
  height: 1.25rem;
  width: 1.25rem;
  flex-shrink: 0;
  color: var(--text-secondary);
  transition: transform 300ms ease-out;
}

.faq-chevron-open {
  transform: rotate(180deg);
  color: var(--brand-cyan);
}

.accordion-toggle {
  display: grid;
  transition: all 300ms ease-out;
}

.faq-panel-inner {
  overflow: hidden;
  min-height: 0;
  padding-left: 2rem;
  padding-right: 2rem;
}

.faq-answer-home {
  padding-left: 0;
  padding-right: 0;
  font-size: 0.875rem;
  color: var(--text-secondary);
}
@media (min-width: 768px) {
  .faq-answer-home {
    padding-left: 0;
    padding-right: 0;
    font-size: 1rem;
  }
}

.faq-answer-pad-open {
  padding-bottom: 1.25rem;
}
@media (min-width: 768px) {
  .faq-answer-pad-open { padding-bottom: 1.5rem; }
}

.faq-answer-pad-closed {
  padding-bottom: 0;
}

.faq-cta-row {
  margin-top: 2.5rem;
  display: flex;
  justify-content: center;
}

/* ── FAQ Page ── */
.faq-page-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) {
  .faq-page-grid {
    grid-template-columns: 220px 1fr;
    gap: 3rem;
  }
}

.faq-sidebar {
  width: 100%;
}
@media (min-width: 768px) {
  .faq-sidebar {
    position: sticky;
    top: 6rem;
    align-self: start;
  }
}

.faq-categories-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 0.5rem;
}

.faq-cat-link {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.25rem;
  border-radius: 0.75rem;
  border-left-width: 2px;
  padding: 0.75rem 1rem;
  text-align: left;
  transition: all 0.15s;
  min-height: 44px;
  text-decoration: none;
  cursor: pointer;
}
.faq-cat-link-active {
  border-left: 2px solid var(--brand-cyan);
  background: var(--card-glass);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  color: var(--text-blue-accent);
}
.faq-cat-link-inactive {
  border-left: 2px solid transparent;
  color: var(--text-secondary);
}
.faq-cat-link-inactive:hover {
  background: var(--card-glass);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  color: #fff;
}

.faq-cat-label {
  font-size: 0.875rem;
  font-weight: 600;
}
@media (min-width: 768px) {
  .faq-cat-label { font-size: 1rem; }
}

.faq-cat-count {
  border-radius: 9999px;
  padding: 0.125rem 0.5rem;
  font-size: 0.75rem;
}
.faq-cat-count-active {
  background: rgba(89, 208, 251, 0.10);
  color: var(--brand-cyan);
}
.faq-cat-count-inactive {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-muted);
}

.faq-cat-blurb {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.faq-categories-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  padding-bottom: 0.5rem;
  scrollbar-width: thin;
}
@media (min-width: 640px) {
  .faq-categories-bar {
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
  }
}
@media (min-width: 768px) {
  .faq-categories-bar { display: none; }
}

.faq-cat-tab {
  flex-shrink: 0;
  border-radius: 9999px;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  transition: all 0.15s;
  min-height: 44px;
  text-decoration: none;
  cursor: pointer;
}
.faq-cat-tab-active {
  background: var(--text-blue-accent);
  color: #fff;
}
.faq-cat-tab-inactive {
  background: var(--card-glass);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  color: var(--text-secondary);
  border: 1px solid rgba(255, 255, 255, 0.10);
}
.faq-cat-tab-inactive:hover {
  border-color: rgba(255, 255, 255, 0.20);
}

  padding-right: 1.5rem;
  font-size: 14px;
  line-height: 1.625;
  color: var(--text-secondary);
}
@media (min-width: 768px) {
  .faq-answer-page {
    padding-left: 2rem;
    padding-right: 2rem;
    font-size: 1rem;
  }
}

.space-y-3 > * + * {
  margin-top: 0.75rem;
}

.accordion-panel ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.faq-sidebar ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.faq-sidebar li {
  margin-bottom: 0.5rem;
}

.flex-row-start {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.cta-card {
  margin-left: auto;
  margin-right: auto;
  border: 1px solid rgba(89, 208, 251, 0.40);
  padding: 1.5rem;
  border-radius: 22px;
}
@media (min-width: 768px) {
  .cta-card {
    padding: 2rem;
  }
}

.faq-contact-section {
  margin-top: 4rem;
}
@media (min-width: 768px) {
  .faq-contact-section { margin-top: 5rem; }
}

.faq-contact-desc {
  margin-top: 1rem;
}
@media (min-width: 768px) {
  .faq-contact-desc { font-size: 1rem; }
}

.faq-contact-btn {
  margin-top: 1.5rem;
  min-height: 44px;
  padding-left: 2rem;
  padding-right: 2rem;
}

.cta-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-white);
}
@media (min-width: 768px) {
  .cta-title {
    font-size: 24px;
  }
}

.h3-reset {
  margin: 0;
  font-size: inherit;
  font-weight: inherit;
}

.text-body-small {
  font-size: 14px;
  line-height: 1.625;
  color: var(--text-secondary);
}

@keyframes obsPulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 8px color-mix(in oklab, var(--brand-cyan) 40%, transparent); }
  50% { opacity: 0.5; box-shadow: 0 0 16px color-mix(in oklab, var(--brand-cyan) 20%, transparent); }
}

/* ── Distributor Page ── */
.benefit-card {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: var(--card-glass);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-radius: 1rem;
  padding: 1.5rem;
  transition: all 0.2s;
}
.benefit-card:hover {
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 18px 48px rgba(89, 208, 251, 0.18);
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 2rem;
}
@media (min-width: 768px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .benefits-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.benefit-icon {
  height: 3rem;
  width: 3rem;
  color: var(--brand-cyan);
}

.feature-name {
  margin-top: 1rem;
  font-size: 18px;
  font-weight: 600;
  color: var(--text-white);
}

.form-hint {
  margin-top: 0.5rem;
  font-size: 16px;
  color: var(--text-secondary);
}

.partnership-process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  list-style: none;
  padding: 0;
  margin-top: 2.5rem;
}
@media (min-width: 768px) {
  .partnership-process-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }
}

.partnership-process-relative {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.process-step-circle {
  z-index: 10;
  display: flex;
  height: 3.5rem;
  width: 3.5rem;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  background: #1e3a8a;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  color: #fff;
}

.process-gradient-line {
  position: absolute;
  top: 1.75rem;
  left: calc((100% - 72px) / 8);
  right: calc((100% - 72px) / 8);
  height: 1px;
  background: linear-gradient(to right, #1d4ed8, #7b2cff);
}

.section-title-sm {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-white);
}
@media (min-width: 640px) {
  .section-title-sm { font-size: 24px; }
}

.section-subtitle-compact {
  margin-top: 0.75rem;
  font-size: 16px;
  color: var(--text-secondary);
}
@media (min-width: 640px) {
  .section-subtitle-compact { font-size: 18px; }
}

.section-label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-white);
}

.glass-input {
  display: block;
  width: 100%;
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 0.625rem 1rem;
  font-size: 0.875rem;
  color: #fff;
  outline: none;
  transition: all 0.2s;
}
.glass-input:focus {
  border-color: #59d0fb;
  box-shadow: 0 0 0 3px rgba(89, 208, 251, 0.15);
}
.glass-input::placeholder { color: #888; }
select.glass-input { cursor: pointer; }

.form-error {
  margin-top: 0.375rem;
  font-size: 0.8125rem;
  color: #ff6b6b;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 1.5rem;
}
@media (min-width: 640px) {
  .form-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.sm\:col-span-2 {
  grid-column: span 1;
}
@media (min-width: 640px) {
  .sm\:col-span-2 { grid-column: span 2; }
}

.feature-desc {
  margin-top: 0.5rem;
  font-size: 16px;
  color: var(--text-secondary);
}

.distributor-contact-cta-flex {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}
@media (min-width: 768px) {
  .distributor-contact-cta-flex {
    flex-direction: row;
    align-items: flex-start;
    gap: 1.5rem;
    text-align: left;
  }
}

.distributor-contact-cta-shrink-0 {
  height: 3rem;
  width: 3rem;
  flex-shrink: 0;
  color: var(--brand-cyan);
}

/* ── Legal Pages ── */
.legal-page-wrap {
  padding-top: 4rem;
  padding-bottom: 4rem;
}
@media (min-width: 768px) {
  .legal-page-wrap {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}

.legal-subtitle {
  font-size: inherit;
}
@media (min-width: 768px) {
  .legal-subtitle { font-size: 1.25rem; }
}

.legal-date {
  margin-top: 0.75rem;
  font-size: 0.75rem;
  color: var(--text-muted);
}
@media (min-width: 640px) {
  .legal-date { font-size: 0.875rem; }
}

.legal-grid {
  margin-top: 2.5rem;
  display: grid;
  gap: 2rem;
}
@media (min-width: 768px) {
  .legal-grid { margin-top: 3.5rem; }
}
@media (min-width: 1024px) {
  .legal-grid {
    grid-template-columns: 220px 1fr;
    gap: 3rem;
  }
}

.legal-sections > * + * {
  margin-top: 2.5rem;
}
@media (min-width: 768px) {
  .legal-sections > * + * { margin-top: 3.5rem; }
}

.legal-section-content {
  margin-top: 1rem;
  font-size: 1rem;
  line-height: 1.625;
  color: var(--text-secondary);
}
.legal-section-content > * + * { margin-top: 1rem; }
@media (min-width: 640px) {
  .legal-section-content { font-size: 1.125rem; }
}

.legal-toc-sidebar {
  width: 100%;
}
@media (min-width: 1024px) {
  .legal-toc-sidebar {
    position: sticky;
    top: 6rem;
    align-self: start;
  }
}

.legal-toc-mobile {
  border: 1px solid rgba(255,255,255,0.10);
  background: var(--card-glass);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  padding: 1rem;
  border-radius: 12px;
}
@media (min-width: 1024px) {
  .legal-toc-mobile { display: none; }
}

.legal-toc-cursor-pointer {
  cursor: pointer;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-white);
}

.legal-toc-list {
  margin-top: 0.75rem;
}
.legal-toc-list > * + * { margin-top: 0.5rem; }
.legal-toc-list ul { list-style: none; padding: 0; margin: 0; }
.legal-toc-list li { list-style: none; }

.text-link-nav {
  font-size: 14px;
  color: var(--text-secondary);
  transition: color 0.15s;
  text-decoration: none;
}
.text-link-nav:hover { color: var(--text-blue-accent); }

.legal-toc-desktop {
  display: none;
  border: 1px solid rgba(255,255,255,0.10);
  background: var(--card-glass);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  padding: 1.25rem;
  border-radius: 12px;
}
@media (min-width: 1024px) {
  .legal-toc-desktop { display: block; }
}

.legal-toc-title {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.025em;
  color: #fff;
}

.legal-toc-desktop-list {
  margin-top: 1rem;
}
.legal-toc-desktop-list > * + * { margin-top: 0.5rem; }
.legal-toc-desktop-list ul { list-style: none; padding: 0; margin: 0; }
.legal-toc-desktop-list li { list-style: none; }

.legal-cta-card {
  margin-top: 3rem;
  border: 1px solid rgba(89,208,251,0.40);
  background: var(--card-glass);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  padding: 1.5rem;
  border-radius: 12px;
}
@media (min-width: 768px) {
  .legal-cta-card {
    margin-top: 4rem;
    padding: 2rem;
  }
}

.legal-cta-row {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
@media (min-width: 640px) {
  .legal-cta-row { flex-direction: row; }
}

.legal-cta-btn {
  min-height: 44px;
  padding-left: 2rem;
  padding-right: 2rem;
}

.scroll-mt-24 {
  scroll-margin-top: 6rem;
}

/* ── Footer ── */
.footer-section {
  background: var(--bg-footer);
  padding-top: 3rem;
  padding-bottom: 2rem;
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) {
  .footer-section {
    padding-top: 4rem;
    padding-bottom: 2.5rem;
  }
}

.footer-accent-bar {
  height: 2px;
  width: 100%;
  position: relative;
  z-index: 10;
}

.footer-page-wrap {
  position: relative;
  z-index: 10;
}

.footer-grid {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) {
  .footer-grid {
    gap: 2.5rem;
    grid-template-columns: repeat(3, 1fr);
  }
}

.footer-col-span-1 {
  text-align: center;
}
@media (min-width: 768px) {
  .footer-col-span-1 {
    grid-column: span 1;
    text-align: left;
  }
}

.footer-flex {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
@media (min-width: 768px) {
  .footer-flex { justify-content: flex-start; }
}

.footer-logo-img {
  width: 6rem;
}
@media (min-width: 768px) {
  .footer-logo-img { width: 110px; }
}

.footer-tagline {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.footer-email-link {
  margin-top: 0.75rem;
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.875rem;
}
.footer-email-link-accent {
  color: var(--text-blue-accent);
}
.footer-email-link-accent:hover {
  color: #fff;
}

.footer-email-icon {
  height: 1rem;
  width: 1rem;
  flex-shrink: 0;
}

.footer-contents {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
@media (min-width: 768px) {
  .footer-contents { display: contents; }
}

.text-accent-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--text-blue-accent);
}

.footer-link-list {
  margin-top: 1rem;
  list-style: none;
  padding: 0;
}
.footer-link-list > * + * {
  margin-top: 0.25rem;
}

.footer-link {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  padding: 0.5rem 0;
  font-size: 0.875rem;
  color: var(--text-secondary);
  transition: color 0.2s;
}
.footer-link:hover {
  color: #fff;
}
@media (min-width: 768px) {
  .footer-link { min-height: 44px; }
}

.footer-bottom-bar {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: var(--text-muted);
}
@media (min-width: 640px) {
  .footer-bottom-bar {
    flex-direction: row;
    gap: 0.75rem;
  }
}

.footer-from-transparen {
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.06), transparent);
}

/* ── Accessibility: reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
