/* ============================================================
   OPTIXCELL — Vizinex · Prisma Vision
   Bold violet dark + electric cyan + magenta · Syne + DM Sans
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&family=Syne:wght@500;600;700;800&display=swap');

:root {
  --bg:            #f7f2ea;
  --bg-alt:        #ffffff;
  --bg-tint:       #ede8df;
  --bg-dark:       #0f0520;
  --bg-dark-2:     #1a0a35;
  --bg-dark-3:     #12082a;

  --text-dark:     #0f0520;
  --text-mid:      #3d3555;
  --text-muted:    #6b6480;
  --text-light:    #9890a8;
  --text-on-dark:  #f0ecff;

  --accent:        #00d4ff;
  --accent-dark:   #0099cc;
  --accent-light:  rgba(0,212,255,0.12);
  --accent-glow:   rgba(0,212,255,0.35);
  --accent-grad:   linear-gradient(135deg, #00d4ff 0%, #7b61ff 100%);

  --magenta:       #ff3d9a;
  --magenta-dark:  #d92d7a;
  --magenta-light: rgba(255,61,154,0.12);
  --magenta-grad:  linear-gradient(135deg, #ff3d9a 0%, #ff6b4a 100%);

  --violet:        #7b61ff;
  --lime:          #c8ff00;
  --gold:          #ffb800;
  --gold-lt:       rgba(255,184,0,0.15);

  --coral:         #ff6b4a;
  --coral-grad:    var(--magenta-grad);

  --border:        rgba(15,5,32,0.10);
  --border-light:  rgba(255,255,255,0.12);
  --border-accent: rgba(0,212,255,0.30);

  --shadow-sm:     4px 4px 0 rgba(15,5,32,0.08);
  --shadow-md:     6px 6px 0 rgba(15,5,32,0.12);
  --shadow-lg:     8px 8px 0 rgba(15,5,32,0.16);
  --shadow-brutal: 5px 5px 0 var(--text-dark);
  --glow-cyan:     0 0 40px rgba(0,212,255,0.40);
  --glow-magenta:  0 0 40px rgba(255,61,154,0.35);

  --radius-xl:     4px;
  --radius-lg:     4px;
  --radius-md:     4px;
  --radius-sm:     3px;
  --radius-full:   4px;

  --max-width:     1200px;
  --font-heading:  'Syne', system-ui, sans-serif;
  --font-sans:     'DM Sans', system-ui, -apple-system, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text-dark);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
main { display: block; }

.container {
  width: min(92%, var(--max-width));
  margin: 0 auto;
}

/* ── TOP BAR ── */
.top-bar {
  background: var(--lime);
  color: var(--text-dark);
  text-align: center;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 10px 16px;
  border-bottom: 2px solid var(--text-dark);
}

.top-bar strong { color: var(--magenta-dark); }

.page-home .top-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 101;
}

/* ── HEADER ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg-alt);
  border-bottom: 2px solid var(--text-dark);
  transition: background 0.3s, box-shadow 0.3s;
}

.page-home .site-header {
  position: fixed;
  top: 40px;
  left: 0;
  right: 0;
  width: 100%;
  background: rgba(15, 5, 32, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 2px solid rgba(0, 212, 255, 0.30);
}

.page-home .site-header.scrolled {
  background: rgba(15, 5, 32, 0.98);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
}

.page-home .site-header .brand-name {
  color: var(--lime);
}

.page-home .site-header .brand-tagline {
  color: var(--accent);
}

.page-home .site-header .nav-link {
  color: rgba(255, 255, 255, 0.78);
}

.page-home .site-header .nav-link:hover,
.page-home .site-header .nav-link.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.10);
}

.page-home .site-header .hamburger span {
  background: var(--lime);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 20px;
}

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

.brand-logo {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  filter: drop-shadow(0 0 12px rgba(0,212,255,0.40));
}

.brand-logo svg { width: 100%; height: 100%; display: block; }

.brand-text-wrap { display: flex; flex-direction: column; line-height: 1.1; }

.brand-tagline {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--magenta);
}

.brand-name {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.site-header .brand-name {
  color: var(--text-dark);
}

.site-header .brand-tagline {
  color: var(--magenta);
}

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-mid);
  transition: all 0.15s;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.nav-link:hover,
.nav-link.active {
  background: var(--text-dark);
  color: var(--lime);
}

.nav-cta {
  background: var(--magenta) !important;
  color: #fff !important;
  border: 2px solid var(--text-dark) !important;
  box-shadow: var(--shadow-sm);
}

.nav-cta:hover {
  background: var(--lime) !important;
  color: var(--text-dark) !important;
  transform: translate(-2px, -2px);
  box-shadow: var(--shadow-md);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-dark);
}

/* ── BADGES ── */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 5px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 2px solid var(--text-dark);
}

.badge-green  { background: var(--lime); color: var(--text-dark); }
.badge-amber  { background: var(--gold-lt); color: var(--gold); border-color: var(--gold); }
.badge-ad     { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.50); border-color: rgba(255,255,255,0.20); }

.page-home .hero .badge-ad {
  background: rgba(0,212,255,0.15);
  color: var(--accent);
  border-color: var(--accent);
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 700;
  cursor: pointer;
  border: 2px solid var(--text-dark);
  transition: transform 0.15s, box-shadow 0.15s;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.btn-primary {
  background: var(--lime);
  color: var(--text-dark);
  padding: 16px 32px;
  font-size: 0.88rem;
  box-shadow: var(--shadow-brutal);
}

.btn-primary:hover {
  transform: translate(-3px, -3px);
  box-shadow: 8px 8px 0 var(--text-dark);
  color: var(--text-dark);
}

.btn-outline {
  background: transparent;
  color: var(--text-dark);
  padding: 14px 28px;
  font-size: 0.85rem;
}

.btn-outline:hover {
  background: var(--text-dark);
  color: var(--lime);
}

.btn-outline-light {
  background: transparent;
  color: #fff;
  padding: 14px 28px;
  font-size: 0.85rem;
  border-color: rgba(255,255,255,0.50);
}

.btn-outline-light:hover {
  background: #fff;
  color: var(--text-dark);
  border-color: #fff;
}

.btn-teal {
  background: var(--accent);
  color: var(--text-dark);
  padding: 14px 28px;
  box-shadow: var(--shadow-brutal);
}

.btn-lg { padding: 18px 44px; font-size: 0.92rem; }

/* ── SECTION WAVE ── */
.section-wave {
  height: 48px;
  background: var(--bg-dark);
  clip-path: polygon(0 0, 100% 100%, 100% 100%, 0 100%);
  margin-top: -1px;
}

.section-wave--light {
  background: var(--bg);
  clip-path: polygon(0 100%, 100% 0, 100% 100%, 0 100%);
}

/* ══════════════════════════════════════════
   HERO — full viewport dark immersive
══════════════════════════════════════════ */
.hero {
  background: var(--bg-dark);
  min-height: 100vh;
  padding: 148px 0 80px;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-grid-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,212,255,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,212,255,0.06) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 20%, transparent 75%);
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
}

.hero-orb-1 {
  width: 500px;
  height: 500px;
  background: var(--magenta);
  top: -100px;
  right: -80px;
  animation: float 8s ease-in-out infinite;
}

.hero-orb-2 {
  width: 400px;
  height: 400px;
  background: var(--accent);
  bottom: -80px;
  left: -60px;
  animation: float 10s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(20px, -20px); }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.hero-divider {
  width: 40px;
  height: 4px;
  background: var(--lime);
}

.hero-category {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--accent);
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.6rem, 5.5vw + 0.5rem, 4.8rem);
  line-height: 0.95;
  margin: 0 0 28px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.hero h1 em {
  font-style: normal;
  background: linear-gradient(90deg, var(--accent), var(--magenta));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}

.hero-intro {
  font-size: 1.08rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 32px;
  max-width: 520px;
  line-height: 1.75;
}

.hero-intro strong { color: var(--accent); }

.hero-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 36px;
}

.hero-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(0,212,255,0.20);
  font-size: 0.82rem;
  color: rgba(255,255,255,0.70);
  backdrop-filter: blur(8px);
}

.hero-feature-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  background: var(--magenta);
  border: 2px solid var(--text-dark);
  display: grid;
  place-items: center;
  font-size: 0.85rem;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-note {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.35);
  margin-top: 20px;
  line-height: 1.6;
  max-width: 480px;
}

.hero-visual { position: relative; }

.hero-product-card {
  background: rgba(255,255,255,0.05);
  border: 2px solid rgba(0,212,255,0.40);
  padding: 36px 28px;
  text-align: center;
  position: relative;
  transform: rotate(3deg);
  box-shadow: var(--glow-cyan), 12px 12px 0 rgba(0,0,0,0.40);
}

.hero-product-card::before {
  content: '';
  position: absolute;
  inset: -8px;
  border: 2px solid var(--magenta);
  opacity: 0.40;
  transform: rotate(-2deg);
  z-index: -1;
}

.hero-product-card img {
  width: 88%;
  margin: 0 auto 24px;
  filter: drop-shadow(0 20px 40px rgba(0,212,255,0.30));
}

.product-price-tag {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  background: var(--lime);
  color: var(--text-dark);
  border: 2px solid var(--text-dark);
  padding: 14px 28px;
  margin-top: 8px;
  box-shadow: var(--shadow-brutal);
}

.price-label { font-size: 0.65rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; }
.price-value { font-size: 2rem; font-weight: 800; font-family: var(--font-heading); line-height: 1; }
.price-sub   { font-size: 0.72rem; font-weight: 600; opacity: 0.70; }

.floating-badge {
  position: absolute;
  background: var(--magenta);
  color: #fff;
  border: 2px solid var(--text-dark);
  padding: 8px 14px;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  box-shadow: var(--shadow-sm);
}

.fb-top-right  { top: -12px; right: -16px; transform: rotate(4deg); }
.fb-bottom-left { bottom: -12px; left: -16px; transform: rotate(-3deg); background: var(--accent); color: var(--text-dark); }

/* ══════════════════════════════════════════
   SECTIONS
══════════════════════════════════════════ */
.section    { padding: 88px 0; }
.section-sm { padding: 48px 0; }

.section-header { margin-bottom: 52px; }
.section-header.centered { text-align: center; }

.section-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.section-eyebrow.centered { justify-content: center; }

.eyebrow-line {
  width: 32px;
  height: 4px;
  background: var(--magenta);
}

.eyebrow-text {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--magenta);
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw + 0.5rem, 3rem);
  font-weight: 800;
  color: var(--text-dark);
  margin: 0 0 16px;
  letter-spacing: -0.03em;
  line-height: 1.05;
  text-transform: uppercase;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0;
  line-height: 1.70;
}

.section-subtitle.wide { max-width: 720px; }

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--lime);
  border-top: 2px solid var(--text-dark);
  border-bottom: 2px solid var(--text-dark);
  padding: 20px 0;
  overflow: hidden;
}

.trust-items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.80rem;
  font-weight: 800;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.trust-icon {
  width: 38px;
  height: 38px;
  background: var(--text-dark);
  color: var(--lime);
  border: 2px solid var(--text-dark);
  display: grid;
  place-items: center;
  font-size: 1rem;
}

/* ── BENTO ── */
.bento-section {
  background: var(--bg-dark);
  color: #fff;
  border-bottom: 2px solid var(--accent);
}

.bento-section .section-title { color: #fff; }
.bento-section .section-subtitle { color: rgba(255,255,255,0.55); }
.bento-section .eyebrow-text { color: var(--accent); }
.bento-section .eyebrow-line { background: var(--accent); }

.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}

.bento-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 28px 24px;
  grid-column: span 4;
  transition: transform 0.2s, border-color 0.2s;
}

.bento-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
}

.bento-card.featured {
  grid-column: span 8;
  background: linear-gradient(135deg, var(--magenta) 0%, var(--violet) 100%);
  border: 2px solid var(--lime);
  box-shadow: 8px 8px 0 rgba(0,0,0,0.40);
}

.bento-icon {
  width: 48px;
  height: 48px;
  background: var(--lime);
  color: var(--text-dark);
  border: 2px solid var(--text-dark);
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  margin-bottom: 16px;
}

.bento-card.featured .bento-icon {
  background: var(--text-dark);
  color: var(--lime);
  border-color: var(--lime);
}

.bento-title {
  font-family: var(--font-heading);
  font-size: 1.08rem;
  font-weight: 800;
  color: #fff;
  margin: 0 0 8px;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

.bento-desc {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  margin: 0;
  line-height: 1.60;
}

.bento-card:not(.featured) .bento-title { color: var(--accent); }
.bento-card:not(.featured) .bento-desc { color: rgba(255,255,255,0.50); }

/* ── ARTICLE ── */
.article-section {
  background: var(--bg);
  border-top: 2px solid var(--text-dark);
}

.article-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 56px;
  align-items: start;
}

.article-body h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 2vw + 0.5rem, 2.2rem);
  color: var(--text-dark);
  margin: 0 0 20px;
  font-weight: 800;
  line-height: 1.10;
  text-transform: uppercase;
}

.article-body p {
  color: var(--text-mid);
  margin: 0 0 18px;
  font-size: 1.02rem;
  line-height: 1.80;
}

.pull-quote {
  border-left: 4px solid var(--magenta);
  padding: 20px 28px;
  background: var(--bg-dark);
  color: #fff;
  margin: 32px 0;
  box-shadow: var(--shadow-md);
}

.pull-quote p {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--accent) !important;
  margin: 0 !important;
  line-height: 1.50;
}

.article-sidebar { display: grid; gap: 16px; }

.sidebar-card {
  background: var(--bg-alt);
  border: 2px solid var(--text-dark);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}

.sidebar-card.accent {
  background: var(--lime);
  border-color: var(--text-dark);
}

.sidebar-card-title {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--text-dark);
  margin: 0 0 16px;
  text-transform: uppercase;
}

.ingredient-list { display: grid; gap: 8px; }

.ingredient-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  background: var(--bg);
  border: 1px solid var(--border);
}

.ingredient-num {
  width: 30px;
  height: 30px;
  background: var(--text-dark);
  color: var(--lime);
  display: grid;
  place-items: center;
  font-size: 0.75rem;
  font-weight: 800;
  flex-shrink: 0;
}

.ingredient-name { font-size: 0.87rem; font-weight: 700; color: var(--text-dark); }
.ingredient-desc { font-size: 0.74rem; color: var(--text-muted); }

/* ── TIMELINE ── */
.timeline-section {
  background: var(--bg-tint);
  border-top: 2px solid var(--text-dark);
  border-bottom: 2px solid var(--text-dark);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 2px solid var(--text-dark);
}

.timeline-step {
  padding: 32px 24px;
  border-right: 2px solid var(--text-dark);
  background: var(--bg-alt);
  transition: background 0.2s;
}

.timeline-step:last-child { border-right: none; }
.timeline-step:hover { background: var(--lime); }

.timeline-dot {
  width: 48px;
  height: 48px;
  background: var(--magenta);
  color: #fff;
  border: 2px solid var(--text-dark);
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  font-weight: 800;
  font-family: var(--font-heading);
  margin-bottom: 16px;
  box-shadow: var(--shadow-sm);
}

.timeline-step:hover .timeline-dot {
  background: var(--text-dark);
  color: var(--lime);
}

.timeline-title {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--text-dark);
  margin: 0 0 8px;
  text-transform: uppercase;
}

.timeline-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.55;
}

/* ── STATS ── */
.stats-strip {
  background: var(--text-dark);
  padding: 0;
  border-bottom: 2px solid var(--accent);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat-item {
  padding: 48px 24px;
  text-align: center;
  border-right: 2px solid rgba(0,212,255,0.20);
  color: #fff;
}

.stat-item:last-child { border-right: none; }

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 800;
  line-height: 1;
  margin-bottom: 8px;
  color: var(--lime);
}

.stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.50);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.stat-divider { display: none; }

/* ── STEPS ── */
.how-section { background: var(--bg); }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 2px solid var(--text-dark);
}

.step-card {
  padding: 40px 28px;
  border-right: 2px solid var(--text-dark);
  background: var(--bg-alt);
  text-align: left;
  transition: background 0.2s;
}

.step-card:last-child { border-right: none; }
.step-card:hover { background: var(--magenta-light); }

.step-number {
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 800;
  color: var(--magenta);
  line-height: 1;
  margin-bottom: 16px;
  opacity: 0.30;
}

.step-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text-dark);
  margin: 0 0 10px;
  text-transform: uppercase;
}

.step-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}

/* ── COMMITMENT ── */
.commitment-section {
  background: var(--magenta);
  color: #fff;
  border-top: 2px solid var(--text-dark);
  border-bottom: 2px solid var(--text-dark);
}

.commitment-section .eyebrow-text { color: var(--lime); }
.commitment-section .eyebrow-line { background: var(--lime); }

.commitment-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 56px;
  align-items: center;
}

.commitment-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 2.5vw, 2.6rem);
  font-weight: 800;
  color: #fff;
  margin: 0 0 20px;
  text-transform: uppercase;
  line-height: 1.05;
}

.commitment-content p {
  color: rgba(255,255,255,0.80);
  font-size: 1rem;
  line-height: 1.75;
  margin: 0 0 14px;
}

.commitment-list { display: grid; gap: 12px; margin-top: 24px; }

.commitment-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 20px;
  background: rgba(0,0,0,0.20);
  border: 2px solid rgba(255,255,255,0.20);
}

.commitment-item-icon { font-size: 1.3rem; flex-shrink: 0; }

.commitment-item strong {
  display: block;
  font-size: 0.90rem;
  color: var(--lime);
  margin-bottom: 2px;
  text-transform: uppercase;
}

.commitment-item span {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.70);
}

.commitment-visual {
  background: var(--text-dark);
  border: 2px solid var(--lime);
  padding: 0;
  box-shadow: 8px 8px 0 rgba(0,0,0,0.30);
}

.commitment-stat {
  text-align: center;
  padding: 28px 20px;
  border-bottom: 2px solid rgba(0,212,255,0.20);
}

.commitment-stat:last-child { border-bottom: none; }

.commitment-stat-num {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}

.commitment-stat-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  margin-top: 8px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ── PRODUCT ── */
.product-section {
  background: var(--bg-dark);
  border-bottom: 2px solid var(--accent);
}

.product-section .section-eyebrow .eyebrow-text { color: var(--accent); }
.product-section .section-eyebrow .eyebrow-line { background: var(--accent); }

.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.product-visual {
  background: rgba(0,212,255,0.08);
  border: 2px solid var(--accent);
  padding: 48px;
  text-align: center;
  box-shadow: var(--glow-cyan);
  transform: rotate(-2deg);
}

.product-visual img {
  width: 80%;
  margin: 0 auto;
  filter: drop-shadow(0 24px 48px rgba(0,212,255,0.25));
}

.product-info { display: grid; gap: 20px; }

.product-name {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 800;
  color: #fff;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: -0.03em;
}

.product-tagline {
  font-size: 1rem;
  color: rgba(255,255,255,0.60);
  margin: 0;
  line-height: 1.72;
}

.product-benefits { display: grid; gap: 10px; }

.benefit-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,61,154,0.30);
}

.benefit-icon {
  width: 40px;
  height: 40px;
  background: var(--magenta);
  border: 2px solid var(--text-dark);
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.benefit-text strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 3px;
  text-transform: uppercase;
}

.benefit-text span {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.50);
}

/* ── TESTIMONIALS ── */
.testimonials-section {
  background: var(--bg);
  border-top: 2px solid var(--text-dark);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.testimonial-card {
  background: var(--bg-alt);
  border: 2px solid var(--text-dark);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.15s, box-shadow 0.15s;
}

.testimonial-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: var(--shadow-md);
}

.stars { display: flex; gap: 2px; margin-bottom: 14px; }
.star { color: var(--gold); font-size: 0.95rem; }

.testimonial-text {
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.68;
  margin: 0 0 18px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 42px;
  height: 42px;
  background: var(--text-dark);
  color: var(--lime);
  display: grid;
  place-items: center;
  font-size: 0.78rem;
  font-weight: 800;
  flex-shrink: 0;
  border: 2px solid var(--text-dark);
}

.author-name { font-size: 0.88rem; font-weight: 700; color: var(--text-dark); }
.author-location { font-size: 0.74rem; color: var(--text-muted); }

.disclaimer-note {
  font-size: 0.74rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 32px;
  font-style: italic;
}

/* ── FAQ ── */
.faq-section {
  background: var(--bg-dark);
  color: #fff;
}

.faq-section .section-title { color: #fff; }
.faq-section .eyebrow-text { color: var(--accent); }
.faq-section .eyebrow-line { background: var(--accent); }

.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: grid;
  gap: 8px;
}

.faq-item {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(0,212,255,0.25);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  text-align: left;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.faq-question:hover { background: rgba(0,212,255,0.08); }

.faq-icon {
  font-size: 1.4rem;
  color: var(--lime);
  transition: transform 0.25s;
  flex-shrink: 0;
  font-weight: 400;
}

.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-item.open { border-color: var(--lime); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.open .faq-answer { max-height: 320px; }

.faq-answer-inner {
  padding: 0 24px 20px;
  font-size: 0.90rem;
  color: rgba(255,255,255,0.60);
  line-height: 1.72;
}

.faq-answer-inner a { color: var(--accent); }

/* ── ORDER ── */
.order-section {
  background: var(--bg-tint);
  border-top: 2px solid var(--text-dark);
}

.order-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.order-info { display: grid; gap: 20px; }

.order-price-block {
  background: var(--text-dark);
  border: 2px solid var(--lime);
  padding: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  box-shadow: var(--shadow-md);
}

.order-price-label { font-size: 0.75rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.10em; color: var(--accent); }
.order-price-amount { font-family: var(--font-heading); font-size: 2.8rem; font-weight: 800; line-height: 1; color: var(--lime); }
.order-price-note { font-size: 0.74rem; opacity: 0.60; margin-top: 4px; }

.order-guarantees { display: grid; gap: 10px; }

.guarantee-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-mid);
  font-weight: 600;
}

.guarantee-icon { font-size: 1.1rem; }

/* ── FORM ── */
.form-card {
  background: var(--bg-alt);
  border: 2px solid var(--text-dark);
  padding: 36px;
  box-shadow: var(--shadow-brutal);
  position: relative;
}

.form-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--magenta), var(--accent), var(--lime));
}

.form-title {
  font-family: var(--font-heading);
  font-size: 1.30rem;
  font-weight: 800;
  color: var(--text-dark);
  margin: 0 0 6px;
  text-transform: uppercase;
}

.form-subtitle {
  font-size: 0.87rem;
  color: var(--text-muted);
  margin: 0 0 24px;
}

.form { display: grid; gap: 16px; }
.form-group { display: grid; gap: 6px; }

.form-label {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.form-input {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--text-dark);
  background: var(--bg);
  color: var(--text-dark);
  font-size: 0.95rem;
  font-family: var(--font-sans);
  transition: box-shadow 0.15s;
}

.form-input:focus {
  outline: none;
  box-shadow: 4px 4px 0 var(--magenta);
}

.form-input::placeholder { color: var(--text-light); }

.form-submit {
  width: 100%;
  padding: 16px;
  background: var(--magenta);
  color: #fff;
  border: 2px solid var(--text-dark);
  font-size: 0.90rem;
  font-weight: 800;
  font-family: var(--font-heading);
  cursor: pointer;
  box-shadow: var(--shadow-brutal);
  transition: transform 0.15s, box-shadow 0.15s;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.form-submit:hover {
  transform: translate(-3px, -3px);
  box-shadow: 8px 8px 0 var(--text-dark);
}

.form-legal {
  font-size: 0.73rem;
  color: var(--text-muted);
  line-height: 1.55;
  text-align: center;
}

.form-legal a { color: var(--magenta); text-decoration: underline; }

/* ── BLOG ── */
.blog-section {
  background: var(--bg-alt);
  border-top: 2px solid var(--text-dark);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.blog-card {
  background: var(--bg);
  border: 2px solid var(--text-dark);
  overflow: hidden;
  transition: transform 0.15s, box-shadow 0.15s;
}

.blog-card:hover {
  transform: translate(-4px, -4px);
  box-shadow: var(--shadow-md);
}

.blog-card-img { height: 160px; overflow: hidden; }

.blog-card-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.8rem;
  background: linear-gradient(135deg, var(--bg-dark) 0%, var(--violet) 100%);
}

.blog-card-body { padding: 22px; }

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.blog-card-date { font-size: 0.72rem; color: var(--text-muted); font-weight: 600; }

.blog-card-cat {
  font-size: 0.65rem;
  font-weight: 800;
  color: var(--text-dark);
  background: var(--lime);
  padding: 3px 8px;
  border: 1px solid var(--text-dark);
  text-transform: uppercase;
}

.blog-card-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-dark);
  margin: 0 0 8px;
  line-height: 1.30;
  text-transform: uppercase;
}

.blog-card-excerpt {
  font-size: 0.84rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.62;
}

.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--magenta);
  margin-top: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ── DISCLAIMER ── */
.disclaimer-section {
  background: var(--gold-lt);
  border-top: 2px solid var(--gold);
}

.disclaimer-box {
  background: var(--bg-alt);
  border: 2px solid var(--text-dark);
  padding: 28px 32px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  box-shadow: var(--shadow-sm);
}

.disclaimer-icon {
  width: 44px;
  height: 44px;
  background: var(--gold-lt);
  border: 2px solid var(--gold);
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.disclaimer-text {
  font-size: 0.83rem;
  color: var(--text-mid);
  line-height: 1.72;
}

.disclaimer-text strong { color: var(--text-dark); }

/* ── FOOTER ── */
.footer {
  background: var(--text-dark);
  color: #fff;
  padding: 56px 0 32px;
  border-top: 4px solid var(--accent);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255,255,255,0.10);
  margin-bottom: 28px;
}

.footer-brand .brand-name { color: #fff; font-size: 1.5rem; }
.footer-brand .brand-tagline { color: var(--accent); }

.footer-brand-desc {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.45);
  margin-top: 16px;
  line-height: 1.68;
}

.footer-col-title {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 16px;
}

.footer-links { display: grid; gap: 10px; }

.footer-link {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.55);
  transition: color 0.15s;
}

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

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 0.84rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 9px;
}

.footer-contact-item a { color: rgba(255,255,255,0.70); }
.footer-contact-item a:hover { color: var(--accent); }

.footer-contact-icon { font-size: 0.9rem; margin-top: 2px; }

.footer-bottom {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-legal {
  font-size: 0.73rem;
  color: rgba(255,255,255,0.30);
  line-height: 1.65;
  max-width: 720px;
}

.footer-legal a { color: rgba(255,255,255,0.45); text-decoration: underline; }

.footer-copy {
  font-size: 0.76rem;
  color: var(--accent);
  white-space: nowrap;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ── CONTENT PAGES ── */
.content-page {
  padding: 56px 0 64px;
  background: var(--bg);
}

.content-wrap { max-width: 780px; margin: 0 auto; }

.content-card {
  background: var(--bg-alt);
  border: 2px solid var(--text-dark);
  padding: 44px 48px;
  box-shadow: var(--shadow-md);
}

.content-card h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--text-dark);
  margin: 16px 0 26px;
  text-transform: uppercase;
  line-height: 1.05;
}

.content-card h2 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-dark);
  margin: 28px 0 12px;
  padding-top: 8px;
  border-top: 2px solid var(--border);
  text-transform: uppercase;
}

.content-card h2:first-of-type { border-top: none; }

.content-card p {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.82;
  margin: 0 0 16px;
}

.content-card strong { color: var(--text-dark); }
.content-card a { color: var(--magenta); text-decoration: underline; }

.content-card ul {
  padding-left: 20px;
  color: var(--text-mid);
  font-size: 0.95rem;
  line-height: 1.82;
  margin: 0 0 16px;
}

/* ── BLOG PAGES ── */
.blog-page { padding: 56px 0 64px; background: var(--bg); }

.blog-page-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 16px;
}

.post-page { padding: 56px 0 64px; background: var(--bg); }

.post-wrap { max-width: 740px; margin: 0 auto; }

.post-card {
  background: var(--bg-alt);
  border: 2px solid var(--text-dark);
  padding: 44px 48px;
  box-shadow: var(--shadow-md);
}

.post-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}

.post-date { font-size: 0.80rem; color: var(--text-muted); font-weight: 600; }

.post-cat {
  font-size: 0.68rem;
  font-weight: 800;
  color: var(--text-dark);
  background: var(--lime);
  padding: 3px 10px;
  border: 1px solid var(--text-dark);
  text-transform: uppercase;
}

.post-card h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 2.5vw, 2rem);
  font-weight: 800;
  color: var(--text-dark);
  margin: 0 0 20px;
  line-height: 1.15;
  text-transform: uppercase;
}

.post-card p {
  font-size: 0.97rem;
  color: var(--text-mid);
  line-height: 1.82;
  margin: 0 0 16px;
}

.post-card h2 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-dark);
  margin: 28px 0 12px;
  text-transform: uppercase;
}

.post-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 2px solid var(--border);
}

/* ── UTILITY ── */
.text-center { text-align: center; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }

/* ── MOBILE NAV ── */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15,5,32,0.85);
  z-index: 200;
  backdrop-filter: blur(4px);
}

.mobile-nav-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 100%;
  background: var(--bg-dark);
  border-left: 2px solid var(--accent);
  padding: 24px;
  display: grid;
  gap: 6px;
  align-content: start;
}

.mobile-nav.open { display: block; }

.mobile-nav-close {
  background: none;
  border: none;
  font-size: 1.4rem;
  cursor: pointer;
  color: var(--accent);
  justify-self: end;
  padding: 4px 8px;
}

.mobile-nav-link {
  display: block;
  padding: 14px 16px;
  font-weight: 700;
  color: rgba(255,255,255,0.65);
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  color: var(--lime);
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .article-layout { grid-template-columns: 1fr; }
  .article-sidebar { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .bento-card, .bento-card.featured { grid-column: span 6; }
  .timeline { grid-template-columns: repeat(2, 1fr); }
  .timeline-step:nth-child(2) { border-right: none; }
  .timeline-step:nth-child(1),
  .timeline-step:nth-child(2) { border-bottom: 2px solid var(--text-dark); }
}

@media (max-width: 900px) {
  .hero { min-height: auto; padding: 100px 0 60px; }
  .hero-grid,
  .product-grid,
  .order-grid,
  .commitment-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-product-card { transform: none; max-width: 380px; margin: 0 auto; }
  .hero-features { grid-template-columns: 1fr; }
  .hero h1 em { display: inline; }

  .bento-card, .bento-card.featured { grid-column: span 12; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(1),
  .stat-item:nth-child(2) { border-bottom: 2px solid rgba(0,212,255,0.20); }

  .steps-grid { grid-template-columns: 1fr; }
  .step-card { border-right: none; border-bottom: 2px solid var(--text-dark); }
  .step-card:last-child { border-bottom: none; }

  .testimonials-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .timeline { grid-template-columns: 1fr; }
  .timeline-step { border-right: none; border-bottom: 2px solid var(--text-dark); }
  .timeline-step:last-child { border-bottom: none; }

  .footer-top { grid-template-columns: 1fr; gap: 28px; }

  .nav { display: none; }
  .hamburger { display: flex; }

  .page-home .site-header {
    top: 40px;
    background: rgba(15, 5, 32, 0.96);
    border-bottom: 2px solid var(--accent);
  }

  .page-home .site-header .brand-name { color: var(--lime); }
  .page-home .site-header .brand-tagline { color: var(--accent); }
  .page-home .site-header .nav-link { color: rgba(255, 255, 255, 0.78); }
}

@media (max-width: 640px) {
  .hero { padding: 88px 0 48px; }
  .section { padding: 64px 0; }
  .hero h1 { font-size: 2.2rem; }

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

  .content-card,
  .post-card { padding: 28px 22px; }

  .trust-items { gap: 16px; }
  .order-price-block { flex-direction: column; text-align: center; gap: 10px; }

  .fb-top-right,
  .fb-bottom-left { display: none; }
}
