/* ============================================================
   Good2Own · Multi-page site — global stylesheet
   Black & white interaction theme · Hero dark (video) + light content
   ============================================================ */

:root {
  /* Dark (Hero only) */
  --dark: #0a0c12;
  --dark-2: #11141d;
  --glass-bg: rgba(10,12,18,.32);
  --glass-bd: rgba(255,255,255,.12);

  /* Light content area */
  --bg: #f6f7f9;
  --bg-2: #ffffff;
  --bg-3: #eef0f4;
  --ink: #0b0d12;
  --ink-2: #4b5360;
  --ink-3: #8a92a0;
  --line: #e3e6ec;
  --line-strong: #cfd4dd;

  /* Accents */
  --gold: #b08a2e;
  --gold-2: #d4b27a;
  --blue: #1d5fd6;
  --blue-2: #4c8dff;

  --radius: 20px;
  --shadow-sm: 0 1px 2px rgba(15,18,28,.04), 0 8px 24px rgba(15,18,28,.05);
  --shadow-md: 0 2px 4px rgba(15,18,28,.05), 0 18px 44px rgba(15,18,28,.09);

  --font-display: 'Cormorant Garamond', 'Times New Roman', serif;
  --font-ui: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
[id] { scroll-margin-top: 92px; }
body {
  font-family: var(--font-ui);
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  line-height: 1.5;
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; background: none; border: 0; color: inherit; }
input, select, textarea { font-family: inherit; }
img { display: block; max-width: 100%; }
:focus-visible { outline: 2px solid var(--blue); outline-offset: 3px; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-weight: 500; font-size: .9rem;
  padding: .8rem 1.6rem;
  border-radius: 999px;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: #1c2029; box-shadow: var(--shadow-md); }
.btn-gold { background: var(--gold); color: #fff; }
.btn-gold:hover { box-shadow: 0 10px 28px rgba(176,138,46,.35); }
.btn-outline { border: 1px solid var(--line-strong); color: var(--ink); background: #fff; }
.btn-outline:hover { border-color: var(--ink); }
.btn-white { background: #fff; color: #0b0d12; }
.btn-white:hover { box-shadow: 0 10px 30px rgba(0,0,0,.25); }
.btn-ghost-dark { border: 1px solid rgba(255,255,255,.45); color: #fff; }
.btn-ghost-dark:hover { background: rgba(255,255,255,.1); }

/* ============================================================
   GLOBAL TOPBAR (black / white switching)
   ============================================================ */
.topbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 60;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem;
  padding: .75rem 1.25rem;
  color: #fff;
  transition: background .3s ease, box-shadow .3s ease, color .3s ease, border-color .3s ease;
  border-bottom: 1px solid transparent;
}
@media (min-width: 640px) { .topbar { padding: .95rem 2.5rem; } }
.topbar.light {
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 1px 0 rgba(15,18,28,.03);
}
.topbar-brand { display: flex; align-items: center; gap: .6rem; text-decoration: none; color: inherit; }
.logo-mark { width: 26px; height: 26px; flex: none; }
@media (min-width: 640px) { .logo-mark { width: 30px; height: 30px; } }
.brand {
  font-family: var(--font-display);
  font-size: 1.2rem; font-weight: 500; letter-spacing: .3px;
  white-space: nowrap;
}
@media (min-width: 640px) { .brand { font-size: 1.4rem; } }
.topnav { display: none; align-items: center; gap: .35rem; }
@media (min-width: 992px) { .topnav { display: flex; } }
.topnav a {
  font-size: .86rem; font-weight: 400;
  padding: .5rem .8rem; border-radius: 999px;
  color: inherit; opacity: .78;
  transition: opacity .2s, background .2s;
}
.topnav a:hover { opacity: 1; }
.topnav a.active { opacity: 1; font-weight: 500; background: rgba(128,128,128,.12); }
.topbar.light .topnav a.active { background: rgba(15,18,28,.06); }

.topbar-right { display: flex; align-items: center; gap: .6rem; }
.topbar-socials { display: none; align-items: center; gap: .1rem; }
@media (min-width: 992px) { .topbar-socials { display: flex; } }
.topbar-socials a {
  width: 32px; height: 32px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  color: inherit; opacity: .72;
  transition: opacity .2s, background .2s;
}
.topbar-socials a:hover { opacity: 1; background: rgba(128,128,128,.16); }
.mobile-socials {
  display: flex; gap: .5rem; flex-wrap: wrap;
  padding: .9rem .6rem .4rem;
  border-top: 1px solid var(--line);
  margin-top: .4rem;
}
.mobile-socials a {
  width: 38px; height: 38px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--bg-3);
  color: var(--ink);
  transition: background .2s, transform .2s;
}
.mobile-socials a:hover { background: var(--line); transform: translateY(-2px); }
.lang-select {
  appearance: none; -webkit-appearance: none;
  background: rgba(128,128,128,.12);
  border: 1px solid rgba(128,128,128,.25);
  border-radius: 999px;
  color: inherit;
  font-size: .78rem;
  padding: .45rem 1.7rem .45rem .9rem;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' fill='none' stroke='%23888' stroke-width='1.4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right .7rem center;
}
.lang-select:focus-visible { outline-color: var(--blue); }
/* Fix: dropdown panel must stay light-on-dark readable even over the dark Hero */
.lang-select option { color: #0b0d12; background: #fff; }
.lang-select optgroup { color: #0b0d12; background: #fff; }
.menu-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px;
  border-radius: 50%;
}
.menu-toggle:hover { background: rgba(128,128,128,.14); }
@media (min-width: 992px) { .menu-toggle { display: none; } }

.mobile-menu {
  position: fixed; top: 4.4rem; left: .9rem; right: .9rem;
  z-index: 59;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--shadow-md);
  padding: .8rem .6rem;
  display: none; flex-direction: column;
}
.mobile-menu.open { display: flex; }
@media (min-width: 992px) { .mobile-menu { display: none !important; } }
.mobile-menu a {
  padding: .85rem 1rem;
  font-size: 1rem; color: var(--ink);
  border-radius: 12px;
}
.mobile-menu a.active { background: var(--bg-3); font-weight: 500; }
.mobile-menu a:hover { background: var(--bg-3); }
.mobile-menu .btn { margin: .6rem .4rem 0; }

/* ============================================================
   HERO (home — full-screen video, unchanged design)
   ============================================================ */
.hero {
  position: relative;
  height: 100vh;
  height: 100svh;
  min-height: 640px;
  overflow: hidden;
  background: #000;
  color: #fff;
}
.hero-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  background: #000;
  object-position: 80% center;
}
@media (min-width: 768px)  { .hero-bg { object-position: right center; } }
@media (min-width: 1024px) { .hero-bg { object-position: center center; } }
.hero-grade {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.22) 0%, rgba(0,0,0,.28) 55%, rgba(0,0,0,.62) 100%);
  pointer-events: none;
}
.hero-inner {
  position: absolute; inset: 0;
  z-index: 10;
  display: flex; flex-direction: column;
  padding: 5.5rem 1.25rem 2.5rem;
}
@media (min-width: 640px) { .hero-inner { padding: 6rem 2.5rem 3rem; } }
@media (min-width: 1024px){ .hero-inner { padding: 6.5rem 3rem 4rem; } }
.hero-main { flex: 1; display: flex; flex-direction: column; justify-content: flex-end; }
@media (min-width: 640px) {
  .hero-main { flex-direction: row; align-items: flex-end; justify-content: space-between; }
}
.hero-left { max-width: 800px; }
.hero-right { display: none; }
@media (min-width: 640px) {
  .hero-right { display: flex; flex-direction: column; gap: .6rem; align-items: flex-end; margin-bottom: .4rem; }
}

.eyebrow {
  display: inline-flex; align-items: center; gap: .55rem;
  font-size: .7rem; letter-spacing: .28em; text-transform: uppercase;
  color: inherit; opacity: .85;
  padding: .45rem .95rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-bd);
  border-radius: 999px;
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  margin-bottom: 1.4rem;
}
.eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold-2);
  box-shadow: 0 0 10px var(--gold-2);
  animation: pulse 1.9s ease-in-out infinite;
}
@keyframes pulse { 50% { opacity: .3; transform: scale(.8); } }

.display {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.5rem, 7.4vw, 5.6rem);
  line-height: 1.02;
  letter-spacing: -.01em;
}
.display em { font-style: italic; font-weight: 300; color: var(--gold-2); }

.lead {
  color: rgba(255,255,255,.75);
  font-weight: 300;
  font-size: clamp(.9rem, 1.4vw, 1.15rem);
  line-height: 1.6;
  max-width: 560px;
  margin-top: 1.3rem;
}

.pills { display: flex; flex-wrap: wrap; gap: .55rem; margin-top: 1.1rem; }
.pill {
  display: inline-flex; align-items: center;
  background: var(--glass-bg);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--glass-bd);
  border-radius: 999px;
  color: #fff;
  font-size: .78rem;
  padding: .45rem .9rem;
}
.pill i {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--blue-2); box-shadow: 0 0 6px var(--blue-2);
  margin-right: .5rem;
}
@media (min-width: 640px) { .pill { font-size: .84rem; padding: .5rem 1rem; } }
.pills-mobile { display: flex; }
.pills-desktop { display: none; }
@media (min-width: 640px) { .pills-mobile { display: none; } .pills-desktop { display: flex; } }

.trust-line {
  display: none;
  font-size: .7rem; letter-spacing: .2em; text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-top: 1.1rem;
  align-items: center;
}
@media (min-width: 640px) { .trust-line { display: inline-flex; } }
.trust-line .t-div { opacity: .35; margin: 0 .85em; }

.hero-cta { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 1.5rem; }

/* ============================================================
   PAGE HERO (inner pages — light)
   ============================================================ */
.page-hero {
  position: relative;
  padding: 8rem 1.25rem 4.5rem;
  background:
    radial-gradient(120% 90% at 15% 0%, rgba(212,178,122,.14) 0%, transparent 55%),
    radial-gradient(120% 90% at 90% 20%, rgba(76,141,255,.10) 0%, transparent 55%),
    var(--bg);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
@media (min-width: 640px) { .page-hero { padding: 9rem 2.5rem 5.5rem; } }
.page-hero .ph-inner { max-width: 1180px; margin: 0 auto; position: relative; z-index: 1; }
.ph-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.3rem, 5vw, 3.9rem);
  line-height: 1.04;
  letter-spacing: -.01em;
  max-width: 860px;
}
.ph-title em { font-style: italic; font-weight: 300; color: var(--gold); }
.ph-sub {
  color: var(--ink-2);
  font-weight: 300;
  font-size: clamp(.95rem, 1.5vw, 1.15rem);
  line-height: 1.6;
  max-width: 620px;
  margin-top: 1.2rem;
}
.ph-actions { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 1.6rem; }

/* Two-column page hero (text + dashboard screen) */
.ph-grid {
  display: grid; gap: 2.8rem;
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 900px) { .ph-grid { grid-template-columns: 1.05fr .95fr; } }
.ph-media { position: relative; perspective: 1200px; }

/* Dark "screen" frame — natural home for dark dashboard screenshots */
.ph-screen {
  position: relative;
  background: #0d1117;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 16px;
  padding: .7rem;
  box-shadow: 0 34px 80px rgba(15,18,28,.30), 0 0 0 1px rgba(0,0,0,.25);
  transform-style: preserve-3d;
  will-change: transform;
}
/* Sweep light across the screen */
.ph-screen::after {
  content: "";
  position: absolute; top: 0; bottom: 0; width: 42%;
  left: -60%;
  background: linear-gradient(105deg, transparent 0%, rgba(255,255,255,.06) 45%, rgba(255,255,255,.14) 50%, rgba(255,255,255,.06) 55%, transparent 100%);
  animation: screen-sweep 4.6s ease-in-out infinite;
  pointer-events: none;
  z-index: 2;
}
@keyframes screen-sweep {
  0%   { left: -60%; }
  55%, 100% { left: 135%; }
}
.ph-screen::before {
  content: "";
  position: absolute; top: -1px; left: 12%; right: 12%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,178,122,.65), transparent);
  pointer-events: none;
}
.ph-screen img {
  width: 100%; height: auto;
  border-radius: 10px;
  display: block;
}
.ph-screen-cap {
  text-align: center;
  font-size: .62rem; letter-spacing: .3em; text-transform: uppercase;
  color: var(--ink-3);
  padding: .75rem 0 .2rem;
}
.ph-screen-glow {
  position: absolute; inset: -10%;
  background: radial-gradient(52% 62% at 50% 45%, rgba(76,141,255,.20) 0%, transparent 70%);
  z-index: -1;
  animation: screen-breathe 6.5s ease-in-out infinite;
}
@keyframes screen-breathe {
  0%, 100% { opacity: .55; transform: scale(1); }
  50%      { opacity: 1;   transform: scale(1.05); }
}
@media (prefers-reduced-motion: reduce) {
  .ph-screen-glow { animation: none; }
  .ph-screen::after { animation: none; }
}

.ph-deco { position: absolute; pointer-events: none; }
.ph-deco-arc { top: 3rem; right: 1.5rem; width: 130px; }
.ph-deco-ring { bottom: -2.4rem; right: 6rem; width: 90px; }
@media (max-width: 640px) { .ph-deco-arc { width: 80px; } .ph-deco-ring { display: none; } }
.ph-deco svg { width: 100%; height: auto; overflow: visible; }
.ph-deco .g { stroke: var(--gold); }
.ph-deco .b { stroke: var(--blue); }
.ph-deco .dot-g { fill: var(--gold); }

/* ============================================================
   SECTIONS (light)
   ============================================================ */
.section { padding: 5rem 1.25rem; }
@media (min-width: 640px) { .section { padding: 6.5rem 2.5rem; } }
.section-alt { background: var(--bg-3); }
.section-white { background: #fff; }
.section-inner { max-width: 1180px; margin: 0 auto; }

.section-head { max-width: 720px; margin-bottom: 3rem; }
.section-head.center { margin: 0 auto 3rem; text-align: center; }
.section-head .eyebrow { color: var(--ink-2); background: #fff; border-color: var(--line); }
.section-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2rem, 4.4vw, 3.4rem);
  line-height: 1.12;
  letter-spacing: -.015em;
  color: var(--ink);
  text-wrap: balance;
}
.section-title em {
  font-style: italic;
  font-weight: 300;
  color: var(--gold);
  letter-spacing: -.01em;
  text-shadow: 0 1px 0 rgba(176,138,46,.06);
}
.section-sub { color: var(--ink-2); font-weight: 300; line-height: 1.7; margin-top: 1rem; max-width: 640px; }
.section-head.center .section-sub { margin: 1rem auto 0; }

/* Grid line work on light background */
.section.lined { position: relative; }
.section.lined::before {
  content: "";
  position: absolute; inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(15,18,28,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15,18,28,.035) 1px, transparent 1px);
  background-size: 88px 88px;
  -webkit-mask-image: radial-gradient(ellipse 95% 75% at 50% 35%, #000 15%, transparent 78%);
  mask-image: radial-gradient(ellipse 95% 75% at 50% 35%, #000 15%, transparent 78%);
}
.section-inner { position: relative; z-index: 1; }

.deco { position: absolute; pointer-events: none; z-index: 0; }
.deco-arc { top: 2.2rem; right: 1.2rem; width: 120px; }
.deco-rail { bottom: 1.2rem; left: 1.4rem; width: 18px; height: 100px; }
.deco-ring { bottom: -2rem; right: -.8rem; width: 84px; }
.deco-underline { display: block; width: 200px; height: 9px; margin-top: 1.2rem; }
.section-head.center .deco-underline { margin-left: auto; margin-right: auto; }
@media (max-width: 640px) {
  .deco-arc { width: 74px; }
  .deco-ring { width: 56px; }
  .deco-rail { display: none; }
}
.deco svg { width: 100%; height: 100%; display: block; overflow: visible; }
.deco .g { stroke: var(--gold); }
.deco .b { stroke: var(--blue); }
.deco .dot-g { fill: var(--gold); stroke: none; }
.deco .dot-b { fill: var(--blue); stroke: none; }

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee {
  background: #0b0d12;
  color: #fff;
  overflow: hidden;
  padding: .95rem 0;
  white-space: nowrap;
  position: relative;
}
.marquee.light { background: #fff; color: #0b0d12; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.marquee-track {
  display: inline-flex;
  animation: marquee 28s linear infinite;
  will-change: transform;
}
.marquee-track span {
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding-right: 2.2rem;
  display: inline-flex; align-items: center; gap: 2.2rem;
  font-weight: 500;
}
.marquee-track .m-star { color: var(--gold-2); }
.marquee.light .m-star { color: var(--gold); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============================================================
   CARDS
   ============================================================ */
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem 1.7rem;
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--line-strong); }
.card-num {
  font-family: var(--font-display);
  font-size: 3.2rem; line-height: 1;
  color: var(--gold);
  font-variant-numeric: tabular-nums;
  display: flex; align-items: baseline; flex-wrap: wrap;
  min-height: 3.4rem;
}
.card-num .dollar { font-size: 1.5rem; margin-right: .15rem; }
.card-num small { font-size: 1.3rem; color: var(--ink-3); margin-left: .2rem; }
/* Text-only number slot (e.g. "MINIMAL STAFF") keeps the same slot height */
.card-num-text {
  font-size: 2.1rem;
  line-height: 1.2;
  align-items: center;
  white-space: nowrap;
}
@media (max-width: 767px) {
  .card-num-text { font-size: 1.7rem; }
}
.card-label { font-size: .72rem; letter-spacing: .22em; text-transform: uppercase; color: var(--blue); margin-top: 1rem; }
.card-body { color: var(--ink-2); font-size: .92rem; line-height: 1.65; font-weight: 300; margin-top: .6rem; }

.grid-3 { display: grid; gap: 1.2rem; grid-template-columns: 1fr; }
@media (min-width: 768px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } }
.grid-2 { display: grid; gap: 1.2rem; grid-template-columns: 1fr; }
@media (min-width: 768px) { .grid-2 { grid-template-columns: 1fr 1fr; } }
.grid-4 { display: grid; gap: 1.2rem; grid-template-columns: 1fr 1fr; }
@media (min-width: 992px) { .grid-4 { grid-template-columns: repeat(4, 1fr); } }

.icon-box {
  width: 48px; height: 48px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 14px;
  background: var(--bg-3);
  color: var(--gold);
  margin-bottom: 1.1rem;
}
.icon-box.blue { color: var(--blue); }

/* ============================================================
   SPLIT CARDS (image + text)
   ============================================================ */
.split {
  display: grid; gap: 2.5rem;
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 900px) { .split { grid-template-columns: 1fr 1fr; } }
.split.rev > *:first-child { order: 2; }
@media (min-width: 900px) { .split.rev > *:first-child { order: 1; } .split.rev > *:last-child { order: 2; } }
.split-media {
  background: #fff;
  border-radius: 24px;
  border: 1px solid var(--line);
  overflow: hidden;
  padding: 1.2rem;
  box-shadow: var(--shadow-md);
}
.split-media img { width: 100%; height: auto; border-radius: 16px; }
.split-media .shot-label {
  text-align: center;
  font-size: .62rem; letter-spacing: .3em; text-transform: uppercase;
  color: var(--ink-3);
  padding: .8rem 0 .2rem;
}

/* ---------- Product stage (blend into page background + stronger motion) ---------- */
.product-stage {
  position: relative;
  background: transparent;
  border-color: transparent;
  box-shadow: none;
  padding: .5rem;
  overflow: visible;
  perspective: 1100px;
}
.product-stage::before {
  content: "";
  position: absolute; inset: -30%;
  background:
    radial-gradient(40% 40% at 22% 26%, rgba(212,178,122,.42) 0%, transparent 60%),
    radial-gradient(40% 40% at 78% 22%, rgba(76,141,255,.40) 0%, transparent 60%),
    radial-gradient(42% 42% at 62% 80%, rgba(214,94,180,.36) 0%, transparent 62%),
    radial-gradient(30% 30% at 38% 88%, rgba(76,255,170,.24) 0%, transparent 65%);
  animation: rgb-breathe 6.5s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}
@keyframes rgb-breathe {
  0%, 100% { opacity: .62; transform: scale(1); }
  50%      { opacity: 1.05; transform: scale(1.12); }
}
/* Rotating RGB light halo around the product */
.product-stage::after {
  content: "";
  position: absolute; inset: -14%;
  background: conic-gradient(from 0deg,
    rgba(212,178,122,.38), rgba(76,141,255,.36), rgba(214,94,180,.32),
    rgba(76,255,170,.26), rgba(76,141,255,.30), rgba(212,178,122,.38));
  filter: blur(38px);
  opacity: .5;
  animation: rgb-spin 9s linear infinite;
  pointer-events: none;
  z-index: 0;
}
@keyframes rgb-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
.product-stage img {
  position: relative; z-index: 1;
  border-radius: 18px;
  animation: float-y 6.5s ease-in-out infinite;
  -webkit-mask-image: radial-gradient(ellipse 96% 92% at 50% 46%, #000 52%, transparent 97%);
  mask-image: radial-gradient(ellipse 96% 92% at 50% 46%, #000 52%, transparent 97%);
  transform-style: preserve-3d;
}
@keyframes float-y {
  0%, 100% { transform: translateY(0) scale(1); }
  50%      { transform: translateY(-14px) scale(1.02); }
}
.product-stage .shot-label {
  position: relative; z-index: 1;
  color: var(--ink-3);
}
@media (prefers-reduced-motion: reduce) {
  .product-stage::before, .product-stage::after, .product-stage img { animation: none; }
}
.split-title { font-family: var(--font-display); font-size: 2rem; font-weight: 500; line-height: 1.15; }
.split-title em { font-style: italic; font-weight: 300; color: var(--gold); }
.split-body { color: var(--ink-2); font-weight: 300; line-height: 1.7; margin-top: 1rem; font-size: .95rem; }
.split-points { display: flex; flex-direction: column; gap: .8rem; margin-top: 1.3rem; }
.split-point { display: flex; gap: .7rem; align-items: flex-start; font-size: .92rem; color: var(--ink); }
.split-point svg { flex: none; margin-top: .15rem; color: var(--gold); }

/* ============================================================
   SPEC TABLE (product)
   ============================================================ */
.spec-list { display: flex; flex-direction: column; }
.spec-row {
  display: flex; align-items: baseline; justify-content: space-between; gap: 1rem;
  padding: 1.05rem 0;
  border-bottom: 1px solid var(--line);
}
.spec-row:last-child { border-bottom: 0; }
.spec-k { color: var(--ink-3); font-size: .88rem; letter-spacing: .03em; }
.spec-v { text-align: right; font-size: .95rem; }
.spec-v b { font-weight: 500; color: var(--ink); }
.spec-v .gold { color: var(--gold); }

/* ============================================================
   SCENE CARDS (applications)
   ============================================================ */
.scene-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  min-height: 260px;
  display: flex; align-items: flex-end;
  background: var(--bg-3);
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
  will-change: transform;
}
.scene-card::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(120% 90% at 50% 0%, rgba(212,178,122,.16) 0%, transparent 55%);
  opacity: 0;
  transition: opacity .4s ease;
  pointer-events: none;
  z-index: 1;
}
.scene-card img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: .92;
  transition: transform .6s cubic-bezier(.22,.61,.36,1), filter .4s ease, opacity .4s ease;
}
.scene-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 26px 52px rgba(15,18,28,.15);
  border-color: rgba(176,138,46,.55);
}
.scene-card:hover::after { opacity: 1; }
.scene-card:hover img { transform: scale(1.09); filter: saturate(1.12) brightness(1.03); }
.scene-body {
  position: relative; z-index: 2;
  width: 100%;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(255,255,255,.97) 0%, rgba(255,255,255,.75) 55%, transparent 100%);
  color: var(--ink);
}
.scene-tag {
  font-size: .66rem; letter-spacing: .24em; text-transform: uppercase;
  color: var(--blue);
  transition: color .3s ease;
}
.scene-card:hover .scene-tag { color: var(--gold); }
.scene-name {
  font-family: var(--font-display); font-size: 1.55rem; font-weight: 500;
  margin-top: .3rem;
  position: relative;
  transition: transform .35s ease;
}
.scene-name::after {
  content: "";
  display: block;
  height: 2px;
  width: 0;
  background: var(--gold);
  border-radius: 2px;
  margin-top: .3rem;
  transition: width .4s ease;
}
.scene-card:hover .scene-name { transform: translateY(-2px); }
.scene-card:hover .scene-name::after { width: 38px; }
.scene-desc { color: var(--ink-2); font-size: .85rem; line-height: 1.55; margin-top: .4rem; }
.scene-ph { 
  display: flex; align-items: center; justify-content: center;
  border-style: dashed; background: transparent;
  color: var(--ink-3); font-size: .85rem; text-align: center;
  min-height: 260px;
}
.scene-ph em { color: var(--gold); font-style: normal; }

/* ============================================================
   ROI CALCULATOR (tabs + sliders)
   ============================================================ */
.calc-wrap {
  border-radius: 26px;
  border: 1px solid var(--line-strong);
  background: #fff;
  box-shadow: var(--shadow-md);
  padding: 2rem 1.5rem;
  display: grid; gap: 2rem;
  grid-template-columns: 1fr;
}
@media (min-width: 900px) {
  .calc-wrap { grid-template-columns: 1fr 1fr; padding: 2.6rem 2.4rem; }
}
.calc-tabs { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 1.8rem; }
.calc-tab {
  padding: .6rem 1.2rem;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: #fff;
  font-size: .85rem;
  color: var(--ink-2);
  transition: all .2s;
}
.calc-tab.active { background: var(--ink); color: #fff; border-color: var(--ink); }
.calc-field { margin-bottom: 1.4rem; }
.calc-field label {
  display: flex; justify-content: space-between; align-items: baseline;
  font-size: .82rem; color: var(--ink-2);
  margin-bottom: .6rem;
}
.calc-field label b { font-size: .95rem; color: var(--ink); font-weight: 500; }
.calc-field input[type=range] {
  width: 100%;
  -webkit-appearance: none; appearance: none;
  height: 4px; border-radius: 4px;
  background: linear-gradient(90deg, var(--gold) var(--fill,50%), var(--line-strong) var(--fill,50%));
  outline: none;
}
.calc-field input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--gold);
  border: 3px solid #fff;
  box-shadow: 0 0 0 1px var(--gold), 0 3px 10px rgba(15,18,28,.25);
  cursor: pointer;
}
.calc-field input[type=range]::-moz-range-thumb {
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--gold);
  border: 3px solid #fff;
  box-shadow: 0 0 0 1px var(--gold);
  cursor: pointer;
}
.calc-note { font-size: .75rem; color: var(--ink-3); line-height: 1.6; }
/* WhatsApp discount link inside the note — stays small, inline */
.calc-note a {
  display: inline-flex; align-items: center; gap: .3rem;
  color: var(--gold); font-weight: 500;
  white-space: nowrap;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(176,138,46,.4);
  transition: text-decoration-color .2s, color .2s;
}
.calc-note a:hover { color: #96791f; text-decoration-color: #96791f; }
.calc-out { display: flex; flex-direction: column; gap: .9rem; justify-content: center; }
.co-row {
  display: flex; align-items: baseline; justify-content: space-between; gap: 1rem;
  padding: 1rem 1.2rem;
  background: var(--bg-3);
  border-radius: 14px;
}
.co-k { font-size: .8rem; color: var(--ink-2); }
.co-v { font-family: var(--font-display); font-size: 1.7rem; color: var(--ink); font-variant-numeric: tabular-nums; }
.co-v.gold { color: var(--gold); font-size: 2.1rem; }
.co-payback {
  text-align: center;
  padding: 1.5rem 1rem;
  border-radius: 16px;
  border: 1px solid rgba(176,138,46,.45);
  background: linear-gradient(160deg, rgba(212,178,122,.18), rgba(212,178,122,.04));
}
.co-payback .days { font-family: var(--font-display); font-size: 3rem; color: var(--gold); line-height: 1; font-variant-numeric: tabular-nums; }
.co-payback .cap { font-size: .7rem; letter-spacing: .26em; text-transform: uppercase; color: var(--ink-2); margin-top: .5rem; }
.rev-streams { display: grid; gap: .8rem; margin-top: 1.2rem; }
.rev-stream {
  display: flex; justify-content: space-between; align-items: center;
  padding: .9rem 1.1rem;
  border: 1px dashed var(--line-strong);
  border-radius: 12px;
  font-size: .86rem;
}
.rev-stream .r-k { color: var(--ink-2); }
.rev-stream .r-v { font-weight: 500; color: var(--ink); font-variant-numeric: tabular-nums; }

/* ============================================================
   SYSTEM MODULES
   ============================================================ */
.sys-module {
  display: grid; gap: 1.2rem;
  grid-template-columns: 1fr;
}
@media (min-width: 900px) { .sys-module { grid-template-columns: 1.1fr 1fr; } }
.sys-module-media {
  background: #0d1117;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 20px;
  padding: .6rem;
  box-shadow: 0 24px 60px rgba(15,18,28,.22);
  overflow: hidden;
}
.sys-module-media img {
  width: 100%; height: auto;
  border-radius: 13px;
  display: block;
}
.sys-module-list { display: flex; flex-direction: column; gap: 1rem; justify-content: center; }
.sys-item { display: flex; gap: 1rem; align-items: flex-start; }
.sys-item .icon-box { margin-bottom: 0; flex: none; }
.sys-item h4 { font-size: 1.05rem; font-weight: 600; margin-bottom: .3rem; }
.sys-item p { font-size: .88rem; color: var(--ink-2); font-weight: 300; line-height: 1.6; }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  background: linear-gradient(135deg, #0b0d12 0%, #1a1e2a 100%);
  color: #fff;
  padding: 3.2rem 2rem;
  text-align: center;
}
@media (min-width: 640px) { .cta-banner { padding: 4rem 3rem; } }
.cta-banner .cb-title { font-family: var(--font-display); font-size: clamp(1.8rem, 3.6vw, 2.8rem); font-weight: 400; }
.cta-banner .cb-title em { font-style: italic; font-weight: 300; color: var(--gold-2); }
.cta-banner .cb-sub { color: rgba(255,255,255,.7); font-weight: 300; margin-top: .8rem; max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-banner .cb-actions { display: flex; flex-wrap: wrap; gap: .7rem; justify-content: center; margin-top: 1.6rem; }
.cta-banner .cb-deco { position: absolute; pointer-events: none; }
.cta-banner .cb-deco-arc { top: 1.5rem; right: 2rem; width: 110px; }
.cta-banner .cb-deco-ring { bottom: -2rem; left: 2rem; width: 90px; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { max-width: 840px; margin: 0 auto; display: flex; flex-direction: column; gap: .8rem; }
.faq-item {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  overflow: hidden;
  transition: border-color .25s;
}
.faq-item.open { border-color: var(--gold); }
.faq-q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.2rem 1.4rem;
  font-size: .98rem; text-align: left; font-weight: 500;
  color: var(--ink);
}
.faq-icon {
  flex: none;
  width: 26px; height: 26px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  color: var(--gold);
  font-size: 1.1rem;
  transition: transform .3s ease, background .3s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--gold); color: #fff; border-color: var(--gold); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-a p { padding: 0 1.4rem 1.3rem; color: var(--ink-2); font-size: .92rem; line-height: 1.7; }

/* ============================================================
   CONTACT / ABOUT
   ============================================================ */
.contact-grid { display: grid; gap: 2.5rem; grid-template-columns: 1fr; }
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1fr 1fr; } }
.channel {
  display: inline-flex; align-items: center; gap: .8rem;
  padding: .9rem 1.2rem;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: #fff;
  font-size: .9rem;
  transition: border-color .2s, transform .2s;
  width: max-content; max-width: 100%;
}
.channel:hover { border-color: var(--gold); transform: translateY(-2px); }
.channel svg { color: var(--gold); flex: none; }
.contact-form {
  display: flex; flex-direction: column; gap: 1rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 1.8rem;
  box-shadow: var(--shadow-sm);
}
.form-row { display: grid; gap: 1rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .form-row { grid-template-columns: 1fr 1fr; } }
.cf { display: flex; flex-direction: column; gap: .45rem; }
.cf label { font-size: .76rem; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-3); }
.cf input, .cf select, .cf textarea {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--ink);
  padding: .85rem 1rem;
  font-size: .92rem;
  outline: none;
  transition: border-color .2s;
}
.cf input:focus, .cf select:focus, .cf textarea:focus { border-color: var(--blue); background: #fff; }
.cf textarea { resize: vertical; min-height: 110px; }
.form-toast { font-size: .85rem; color: var(--gold); opacity: 0; transition: opacity .25s; min-height: 1.2em; }
.form-toast.show { opacity: 1; }

.map-frame {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  line-height: 0;
}
.map-frame iframe { width: 100%; height: 320px; border: 0; }

/* ============================================================
   PARTNERS
   ============================================================ */
.plan-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2.2rem 1.8rem;
  display: flex; flex-direction: column; gap: 1rem;
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: transform .25s, box-shadow .25s;
}
.plan-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.plan-card.featured { border: 1px solid var(--gold); }
.plan-card .plan-tag {
  position: absolute; top: -12px; left: 1.4rem;
  background: var(--gold); color: #fff;
  font-size: .68rem; letter-spacing: .18em; text-transform: uppercase;
  padding: .35rem .8rem; border-radius: 999px;
}
.plan-name { font-family: var(--font-display); font-size: 1.7rem; font-weight: 500; }
.plan-desc { color: var(--ink-2); font-size: .9rem; font-weight: 300; line-height: 1.65; }
.plan-points { display: flex; flex-direction: column; gap: .6rem; margin-top: .4rem; }
.plan-point { display: flex; gap: .6rem; font-size: .88rem; color: var(--ink); }
.plan-point svg { flex: none; margin-top: .2rem; color: var(--gold); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #0b0d12;
  color: #fff;
  padding: 3.2rem 1.25rem 2rem;
}
@media (min-width: 640px) { .footer { padding: 3.5rem 2.5rem 2rem; } }
.footer-inner { max-width: 1180px; margin: 0 auto; }
.footer-grid {
  display: grid; gap: 2.2rem;
  grid-template-columns: 1fr;
  padding-bottom: 2.2rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1.2fr; } }
.footer-brand { display: flex; align-items: center; gap: .6rem; }
.footer-brand .logo-mark { color: var(--gold-2); }
.footer-about { color: rgba(255,255,255,.6); font-size: .85rem; font-weight: 300; line-height: 1.7; margin-top: 1rem; max-width: 300px; }
.footer-h { font-size: .72rem; letter-spacing: .22em; text-transform: uppercase; color: rgba(255,255,255,.5); margin-bottom: 1rem; }
.footer-links { display: flex; flex-direction: column; gap: .6rem; }
.footer-links a { font-size: .88rem; color: rgba(255,255,255,.75); transition: color .2s; }
.footer-links a:hover { color: #fff; }
.footer-contact p { font-size: .88rem; color: rgba(255,255,255,.75); margin-bottom: .5rem; }
.socials { display: flex; gap: .6rem; margin-top: 1rem; }
.socials a {
  width: 38px; height: 38px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.2);
  color: #fff;
  transition: background .2s, border-color .2s, transform .2s;
}
.socials a:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.4); transform: translateY(-2px); }
.footer-bottom {
  max-width: 1180px; margin: 1.5rem auto 0;
  display: flex; flex-direction: column; gap: .8rem;
  align-items: flex-start;
  font-size: .78rem; color: rgba(255,255,255,.45);
}
@media (min-width: 768px) {
  .footer-bottom { flex-direction: row; justify-content: space-between; align-items: center; }
}
.footer-bottom a { color: rgba(255,255,255,.6); transition: color .2s; }
.footer-bottom a:hover { color: #fff; }
.footer-legal { display: flex; gap: 1.2rem; flex-wrap: wrap; }

/* WhatsApp floating button */
.wa-float {
  position: fixed; right: 1.2rem; bottom: 1.2rem;
  z-index: 70;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 30px rgba(37,211,102,.4);
  transition: transform .2s;
}
.wa-float:hover { transform: translateY(-3px) scale(1.05); }

/* Scroll progress bar */
.scroll-progress {
  position: fixed; top: 0; left: 0; right: 0;
  height: 3px;
  background: transparent;
  z-index: 80;
  pointer-events: none;
}
.scroll-progress i {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--gold), var(--blue));
}

/* ============================================================
   REVEAL (GSAP-driven; body gets .js-ready from JS)
   ============================================================ */
.js-ready .reveal { opacity: 0; transform: translateY(26px); }
.js-ready .reveal.in { opacity: 1; transform: none; }
.count { font-variant-numeric: tabular-nums; }



/* ---------- ROI upgrade: aurora bg + coin FX ---------- */
.calc-wrap {
  position: relative;
  overflow: hidden;
}
.calc-wrap::before {
  content: "";
  position: absolute; inset: -30%;
  background:
    radial-gradient(45% 45% at 18% 20%, rgba(212,178,122,.16) 0%, transparent 60%),
    radial-gradient(45% 45% at 85% 75%, rgba(76,141,255,.12) 0%, transparent 60%);
  animation: calc-aurora 8s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}
@keyframes calc-aurora {
  0%, 100% { opacity: .5; transform: scale(1); }
  50%      { opacity: 1;  transform: scale(1.08); }
}
.calc-inputs, .calc-out { position: relative; z-index: 1; }
.calc-out .rev-streams { margin-top: 0; }

/* Gold coins rising inside the calculator */
.coin {
  position: absolute;
  bottom: -22px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #ffe9a8, #d4a53c 45%, #9c7318 92%);
  box-shadow: 0 0 8px rgba(212,165,60,.55), inset 0 0 3px rgba(255,255,255,.7);
  opacity: 0;
  animation: coin-rise 9s linear infinite;
  pointer-events: none;
  z-index: 0;
}
.coin::after {
  content: "";
  position: absolute; inset: 30%;
  border: 1px solid rgba(156,115,24,.6);
  border-radius: 50%;
}
@keyframes coin-rise {
  0%   { transform: translateY(0) rotate(0deg); opacity: 0; }
  8%   { opacity: .9; }
  55%  { opacity: .65; }
  100% { transform: translateY(-560px) rotate(340deg); opacity: 0; }
}
.coin:nth-child(1)  { left: 7%;  width: 12px; height: 12px; animation-delay: 0s;    animation-duration: 8.5s; }
.coin:nth-child(2)  { left: 16%; width: 10px; height: 10px; animation-delay: 1.4s;  animation-duration: 10s; }
.coin:nth-child(3)  { left: 27%; width: 15px; height: 15px; animation-delay: 2.6s;  animation-duration: 9s; }
.coin:nth-child(4)  { left: 38%; width: 11px; height: 11px; animation-delay: .8s;   animation-duration: 11s; }
.coin:nth-child(5)  { left: 52%; width: 14px; height: 14px; animation-delay: 3.4s;  animation-duration: 8.8s; }
.coin:nth-child(6)  { left: 63%; width: 10px; height: 10px; animation-delay: 1.9s;  animation-duration: 9.6s; }
.coin:nth-child(7)  { left: 76%; width: 13px; height: 13px; animation-delay: 4.2s;  animation-duration: 10.4s; }
.coin:nth-child(8)  { left: 88%; width: 12px; height: 12px; animation-delay: 2.9s;  animation-duration: 8.2s; }

@media (prefers-reduced-motion: reduce) {
  .coin { animation: none; }
  .calc-wrap::before { animation: none; }
  html { scroll-behavior: auto; }
  .js-ready .reveal { opacity: 1; transform: none; }
  .marquee-track { animation: none; }
}


/* ============================================================
   MOBILE REFINEMENTS (parity with desktop)
   ============================================================ */
/* Touch devices: reset hover-dependent states so taps don't stick */
@media (hover: none) {
  .scene-card:hover { transform: none; box-shadow: none; border-color: var(--line); }
  .scene-card:hover::after { opacity: 0; }
  .scene-card:hover img { transform: none; filter: none; }
  .scene-card:hover .scene-tag { color: var(--blue); }
  .scene-card:hover .scene-name { transform: none; }
  .scene-card:hover .scene-name::after { width: 0; }
  .card:hover, .plan-card:hover, .app-card:hover { transform: none; box-shadow: var(--shadow-sm); }
}

/* Small phones: tighter scene cards so the 2-col grid stays balanced */
@media (max-width: 479px) {
  .scene-card { min-height: 220px; }
  .scene-name { font-size: 1.3rem; }
  .scene-body { padding: 1.1rem; }
  .ph-title { font-size: 2.1rem; }
  .split-media { padding: .8rem; }
  .spec-k { font-size: .82rem; }
  .spec-v { font-size: .88rem; }
  .calc-wrap { padding: 1.5rem 1rem; }
  .co-v { font-size: 1.5rem; }
  .co-v.gold { font-size: 1.8rem; }
  .co-payback .days { font-size: 2.4rem; }
  .topbar { padding: .6rem .9rem; }
  .brand { font-size: 1.1rem; }
  .lang-select { font-size: .72rem; padding: .38rem 1.5rem .38rem .75rem; }
}

/* Landscape phones / small tablets: keep hero readable */
@media (max-height: 560px) and (orientation: landscape) {
  .hero { min-height: 100svh; }
  .hero-inner { padding-top: 4.2rem; }
  .display { font-size: 2.6rem; }
  .hero .lead { display: none; }
  .hero .pills { margin-top: .8rem; }
}


/* ---------- Products specs: grouped rows + WhatsApp footer ---------- */
.spec-group {
  font-size: .66rem; letter-spacing: .24em; text-transform: uppercase;
  color: var(--blue);
  padding: 1.3rem 0 .4rem;
  border-top: 1px solid var(--line);
  margin-top: .6rem;
}
.spec-group:first-child { border-top: 0; padding-top: 0; margin-top: 0; }
.spec-row { transition: background .2s ease, padding-left .2s ease, padding-right .2s ease; border-radius: 10px; }
.spec-row:hover { background: #fafbfd; padding-left: .7rem; padding-right: .7rem; }
.spec-wa {
  display: flex; align-items: center; justify-content: center; gap: .55rem;
  margin-top: 2.2rem;
  font-size: .86rem; color: var(--ink-2);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: .85rem 1.5rem;
  box-shadow: var(--shadow-sm);
  text-align: center;
}
.spec-wa svg { color: #25d366; flex: none; }
.spec-wa a { color: var(--gold); font-weight: 500; text-decoration: underline; text-underline-offset: 3px; white-space: nowrap; }
.spec-wa a:hover { color: #96791f; }
@media (max-width: 479px) {
  .spec-wa { flex-direction: column; border-radius: 16px; gap: .35rem; padding: .9rem 1rem; }
}


/* ---------- Products scenes: larger 2x2 cards (distinct from home) ---------- */
.scenes-large .scene-card { min-height: 380px; }
.scenes-large .scene-body { padding: 1.8rem; }
.scenes-large .scene-name { font-size: 1.8rem; }
.scenes-large .scene-desc { font-size: .95rem; }
@media (max-width: 479px) {
  .scenes-large .scene-card { min-height: 300px; }
  .scenes-large .scene-name { font-size: 1.45rem; }
  .scenes-large .scene-body { padding: 1.2rem; }
}

/* ============================================================
   BLOG ARTICLE PAGE
   ============================================================ */
.article-page { background: var(--bg); }
.article-hero {
  padding: 7.5rem 1.25rem 2.2rem;
  background:
    radial-gradient(120% 90% at 15% 0%, rgba(212,178,122,.14) 0%, transparent 55%),
    radial-gradient(120% 90% at 90% 20%, rgba(76,141,255,.10) 0%, transparent 55%),
    var(--bg);
  border-bottom: 1px solid var(--line);
}
.article-inner { max-width: 800px; margin: 0 auto; }
.article-crumb { font-size: .78rem; color: var(--ink-3); margin-bottom: 1.2rem; }
.article-crumb a { color: var(--gold); }
.article-crumb span { margin: 0 .3rem; }
.article-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.75rem, 4.2vw, 2.9rem);
  line-height: 1.14;
  letter-spacing: -.01em;
}
.article-meta {
  display: flex; gap: .7rem; flex-wrap: wrap;
  font-size: .8rem; color: var(--ink-3);
  margin-top: 1.1rem;
}
.article-body { padding: 2.6rem 1.25rem 4rem; }
.article-cover { margin: 0 0 2.2rem; }
.article-cover img { width: 100%; height: auto; border-radius: 18px; box-shadow: var(--shadow-md); }
.article-cover figcaption, .article-figure figcaption {
  font-size: .75rem; color: var(--ink-3); text-align: center; margin-top: .6rem;
}
.article-body p { font-size: 1.02rem; line-height: 1.85; color: var(--ink-2); margin-bottom: 1.3rem; font-weight: 300; }
.article-body h2 { font-family: var(--font-display); font-size: 1.65rem; font-weight: 500; margin: 2.5rem 0 1rem; }
.article-body h3 { font-size: 1.15rem; margin: 1.9rem 0 .7rem; }
.article-body ul, .article-body ol { padding-left: 1.4rem; margin-bottom: 1.5rem; }
.article-body li { font-size: 1rem; line-height: 1.75; color: var(--ink-2); margin-bottom: .45rem; font-weight: 300; }
.article-body strong { color: var(--ink); font-weight: 500; }
.article-figure { margin: 2rem 0; }
.article-figure img { width: 100%; border-radius: 16px; box-shadow: var(--shadow-sm); }
.article-cta {
  margin-top: 3rem;
  background: #fff; border: 1px solid var(--line); border-radius: 20px;
  padding: 2.2rem 2rem; text-align: center;
  box-shadow: var(--shadow-sm);
}
.article-cta h3 { font-family: var(--font-display); font-size: 1.55rem; font-weight: 500; margin-bottom: .6rem; }
.article-cta p { color: var(--ink-2); margin-bottom: 1.3rem; }
.article-cta a { text-decoration: none; }

/* Journal cards with cover + read link */
.j-card { display: flex; flex-direction: column; text-decoration: none; }
.j-cover { aspect-ratio: 16 / 9; border-radius: 14px; overflow: hidden; margin-bottom: 1.2rem; line-height: 0; }
.j-cover img { width: 100%; height: 100%; object-fit: cover; object-position: center 36%; transition: transform .45s ease; }
.j-card:hover .j-cover img { transform: scale(1.05); }
.j-tag { font-size: .68rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); }
.j-read { margin-top: auto; padding-top: 1rem; font-size: .85rem; color: var(--gold); font-weight: 500; }
@media (max-width: 479px) {
  .article-hero { padding-top: 6.2rem; }
  .article-body { padding-top: 1.8rem; }
}

/* ---------- Blog: image framing + author card + index extras ---------- */
.article-cover { margin: 0 0 2.2rem; }
.af-img {
  border-radius: 18px;
  overflow: hidden;
  height: 480px;
  line-height: 0;
}
.article-cover .af-img { aspect-ratio: 16 / 9; height: auto; border-radius: 18px; box-shadow: var(--shadow-md); }
.af-img img { width: 100%; height: 100%; object-fit: cover; object-position: center 32%; }
.article-figure.figure-tall .af-img { height: auto; text-align: center; box-shadow: none; border-radius: 16px; }
.figure-tall .af-img img { width: 64%; height: auto; object-fit: contain; object-position: center; margin: 0 auto; display: block; border-radius: 16px; box-shadow: var(--shadow-sm); }
/* keep links styled but never touch buttons inside the article */
.article-body a:not(.btn) { color: var(--gold); font-weight: 500; text-decoration: underline; text-underline-offset: 3px; }
.article-body a.btn { text-decoration: none; }
.article-author {
  display: flex; gap: 1rem; align-items: flex-start;
  background: #fff; border: 1px solid var(--line); border-radius: 16px;
  padding: 1.4rem 1.5rem; margin-top: 2.6rem;
  box-shadow: var(--shadow-sm);
}
.aa-avatar {
  width: 46px; height: 46px; flex: none;
  border-radius: 50%;
  background: linear-gradient(145deg, #1a2233, #0a0d15);
  color: var(--gold);
  font-family: var(--font-display); font-size: 1.4rem;
  display: flex; align-items: center; justify-content: center;
}
.aa-info b { font-size: .95rem; display: block; margin-bottom: .3rem; }
.aa-info p { font-size: .85rem !important; color: var(--ink-2) !important; margin: 0 !important; line-height: 1.6 !important; font-weight: 300; }
.j-meta { font-size: .75rem; color: var(--ink-3); margin-top: .7rem; }
.blog-sub { text-align: center; margin-top: 2.2rem; font-size: .9rem; color: var(--ink-2); }
.blog-sub a { color: var(--gold); font-weight: 500; }
@media (max-width: 479px) {
  .figure-tall .af-img img { width: 88%; }
}

/* ---------- Article reading polish ---------- */
.article-body { max-width: 760px; }
.article-body p { text-wrap: pretty; }
.article-body h2 {
  font-size: 1.6rem;
  padding-bottom: .55rem;
  border-bottom: 1px solid var(--line);
  margin-bottom: 1.1rem;
}
.article-body ul li::marker { color: var(--gold); }
.article-body ol li::marker { color: var(--gold); font-weight: 600; }
.article-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.32rem;
  line-height: 1.45;
  color: var(--gold);
  border-left: 3px solid rgba(212,178,122,.55);
  padding: .25rem 0 .25rem 1.15rem;
  margin: 1.7rem 0;
}
.article-meta span:first-child { color: var(--gold); font-weight: 500; }
.article-crumb span { color: rgba(176,138,46,.5); }

/* ---------- Portrait figures: keep original 9:16 ratio ---------- */
.figure-portrait .af-img {
  height: auto;
  max-width: 520px;
  margin: 0 auto;
  border-radius: 18px;
}
.figure-portrait .af-img img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
}
@media (max-width: 640px) {
  .figure-portrait .af-img { max-width: 92%; }
}

/* ---------- Journal card alignment + subtle motion ---------- */
.j-card { height: 100%; }
.j-card h4 { min-height: 2.9em; }
.j-card .card-body { flex: 1 0 auto; }
.j-read {
  display: inline-block;
  transition: transform .25s ease, color .2s ease;
}
.j-card:hover .j-read { transform: translateX(4px); color: #96791f; }
@media (max-width: 479px) {
  .j-card h4 { min-height: 0; }
}

/* ---------- About product stage: data/ops monitor vibe ---------- */
.about-stage {
  position: relative;
  background: transparent;
  border-color: transparent;
  box-shadow: none;
  padding: .5rem;
  overflow: visible;
}
/* data grid backdrop */
.about-stage::before {
  content: "";
  position: absolute; inset: -6%;
  background-image:
    linear-gradient(rgba(15,18,28,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15,18,28,.06) 1px, transparent 1px);
  background-size: 26px 26px;
  -webkit-mask-image: radial-gradient(ellipse 62% 62% at 50% 46%, #000 30%, transparent 75%);
  mask-image: radial-gradient(ellipse 62% 62% at 50% 46%, #000 30%, transparent 75%);
  animation: grid-pulse 7s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}
@keyframes grid-pulse {
  0%, 100% { opacity: .45; }
  50%      { opacity: 1; }
}
/* radar scan line */
.about-stage::after {
  content: "";
  position: absolute; left: 4%; right: 4%; height: 26%;
  top: -30%;
  background: linear-gradient(to bottom, transparent, rgba(109,180,255,.18), transparent);
  animation: scan-line 4.6s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}
@keyframes scan-line {
  0%, 100% { top: -30%; opacity: 0; }
  12%      { opacity: 1; }
  48%      { top: 102%; }
  58%, 100% { opacity: 0; }
}
/* rotating instrument ring */
.about-stage .ring {
  position: absolute; inset: -3%;
  border: 1.5px dashed rgba(76,141,255,.4);
  border-radius: 50%;
  animation: ring-spin 20s linear infinite;
  pointer-events: none;
  z-index: 0;
}
@keyframes ring-spin { to { transform: rotate(360deg); } }
/* image: feathered blend + float */
.about-stage img {
  position: relative; z-index: 1;
  border-radius: 18px;
  animation: about-float 6s ease-in-out infinite;
  -webkit-mask-image: radial-gradient(ellipse 96% 92% at 50% 46%, #000 52%, transparent 97%);
  mask-image: radial-gradient(ellipse 96% 92% at 50% 46%, #000 52%, transparent 97%);
}
@keyframes about-float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-12px); }
}
.about-stage .shot-label { position: relative; z-index: 1; color: var(--ink-3); }
@media (prefers-reduced-motion: reduce) {
  .about-stage::before, .about-stage::after, .about-stage .ring, .about-stage img { animation: none; }
}

/* ---------- Warranty process steps + FAQ ---------- */
.warranty-subhead {
  font-family: var(--font-display);
  font-size: 1.45rem; font-weight: 500;
  margin: 2.8rem 0 1.3rem;
  text-align: center;
}
.warranty-subhead em { font-style: italic; color: var(--gold); }
.warranty-steps { display: grid; gap: 1rem; grid-template-columns: 1fr; }
@media (min-width: 768px) { .warranty-steps { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 480px) and (max-width: 767px) { .warranty-steps { grid-template-columns: repeat(2, 1fr); } }
.w-step {
  background: #fff; border: 1px solid var(--line); border-radius: 16px;
  padding: 1.4rem 1.2rem; box-shadow: var(--shadow-sm);
}
.w-num {
  width: 34px; height: 34px; border-radius: 50%;
  background: linear-gradient(145deg, #1a2233, #0a0d15);
  color: var(--gold);
  font-family: var(--font-display); font-size: 1.05rem;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: .8rem;
}
.w-title { font-weight: 600; font-size: 1rem; margin-bottom: .4rem; }
.w-step p { font-size: .85rem; color: var(--ink-2); line-height: 1.6; font-weight: 300; }
.faq-list { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: .7rem; }
.faq-item {
  background: #fff; border: 1px solid var(--line); border-radius: 14px;
  box-shadow: var(--shadow-sm);
  transition: border-color .2s;
}
.faq-item[open] { border-color: rgba(176,138,46,.5); }
.faq-item summary {
  cursor: pointer; list-style: none;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.05rem 1.2rem;
  font-weight: 500; font-size: .98rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; font-size: 1.25rem; line-height: 1;
  color: var(--gold); flex: none;
  transition: transform .25s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item[open] summary { border-bottom: 1px solid var(--line); }
.faq-item p {
  padding: 0 1.2rem 1.1rem;
  font-size: .9rem; color: var(--ink-2); line-height: 1.7; font-weight: 300;
  margin: 0;
}

/* ---------- Warranty polish: step arrows + hover + FAQ refinement ---------- */
.w-step { transition: transform .25s ease, box-shadow .25s ease; }
.w-step:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.w-num {
  box-shadow: 0 0 0 4px rgba(212,178,122,.14), inset 0 0 0 1px rgba(212,178,122,.25);
}
@media (min-width: 768px) {
  .w-step { position: relative; }
  .w-step:not(:last-child)::after {
    content: "\2192";
    position: absolute; right: -1.05rem; top: 2.1rem;
    color: var(--gold); font-size: 1.15rem; line-height: 1;
    z-index: 2;
    pointer-events: none;
  }
}
.faq-item summary { transition: background .2s ease; border-radius: 14px; }
.faq-item summary:hover { background: #fafbfd; }
.faq-item p { color: var(--ink-2); }


/* ============================================================
   PARTNERS: SOCIAL MEDIA MARKETING ENGINE
   ============================================================ */
.mkt-split { align-items: center; gap: 3rem; }
.mkt-left { width: 100%; }
.mkt-engine {
  position: relative;
  max-width: 430px;
  aspect-ratio: 1;
  margin: 0 auto;
}
.mkt-core {
  position: absolute; inset: 24%;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: radial-gradient(circle at 35% 30%, #1d2739, #0a0d15 70%);
  animation: core-breathe 4.2s ease-in-out infinite;
}
.mkt-core::before, .mkt-core::after {
  content: "";
  position: absolute; inset: -14%;
  border-radius: 50%;
  border: 1.5px dashed rgba(212,178,122,.45);
  animation: ring-spin 22s linear infinite;
}
.mkt-core::after { inset: -28%; border-color: rgba(109,180,255,.28); animation-direction: reverse; animation-duration: 34s; }
.mkt-core-inner {
  font-family: var(--font-display);
  font-size: 2.5rem; color: var(--gold);
}
@keyframes core-breathe {
  0%, 100% { box-shadow: 0 0 0 1px rgba(212,178,122,.3), 0 0 26px rgba(212,178,122,.18), inset 0 0 28px rgba(212,178,122,.12); }
  50%      { box-shadow: 0 0 0 1px rgba(212,178,122,.55), 0 0 55px rgba(212,178,122,.42), inset 0 0 42px rgba(212,178,122,.24); }
}
.mkt-p {
  position: absolute;
  width: 44px; height: 44px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: .7rem; font-weight: 700; letter-spacing: .02em;
  color: var(--ink);
  animation: p-pulse 3.8s ease-in-out infinite;
}
.mkt-p.p1 { top: 3%;  left: 50%; margin-left: -22px; }
.mkt-p.p2 { top: 14%; right: 2%; animation-delay: .55s; }
.mkt-p.p3 { bottom: 29%; right: 3%; animation-delay: 1.1s; }
.mkt-p.p4 { bottom: 6%;  right: 15%; animation-delay: 1.65s; }
.mkt-p.p5 { bottom: 6%;  left: 15%; animation-delay: 2.2s; }
.mkt-p.p6 { bottom: 29%; left: 3%;  animation-delay: 2.75s; }
@keyframes p-pulse {
  0%, 100% { transform: translateY(0) scale(1); box-shadow: var(--shadow-sm); }
  50%      { transform: translateY(-7px) scale(1.06); box-shadow: 0 12px 24px rgba(15,18,28,.16), 0 0 0 6px rgba(212,178,122,.08); }
}
.mkt-bars { max-width: 430px; margin: 2.4rem auto 0; display: flex; flex-direction: column; gap: .8rem; }
.mkt-bar { display: flex; align-items: center; gap: .9rem; }
.mkt-bar span { font-size: .78rem; color: var(--ink-2); width: 104px; flex: none; }
.mkt-bar i {
  display: block; height: 7px; flex: 1;
  border-radius: 99px;
  background: rgba(15,18,28,.08);
  position: relative; overflow: hidden;
}
.mkt-bar i::after {
  content: "";
  position: absolute; inset: 0;
  width: var(--w, 80%);
  border-radius: 99px;
  background: linear-gradient(90deg, #b08a2e, #d4b27a);
  animation: bar-grow 5s ease-in-out infinite;
}
@keyframes bar-grow {
  0%, 100% { width: calc(var(--w, 80%) - 16%); opacity: .8; }
  50%      { width: var(--w, 80%); opacity: 1; }
}
.mkt-cards { display: flex; flex-direction: column; gap: 1rem; }
.mkt-card h4 { font-size: 1.05rem; font-weight: 600; margin-top: .9rem; }
.mkt-note { text-align: center; font-size: .8rem; color: var(--ink-3); margin-top: .4rem; }
@media (max-width: 767px) {
  .mkt-engine { max-width: 340px; }
  .mkt-bars { max-width: 340px; }
  .mkt-p { width: 38px; height: 38px; border-radius: 12px; font-size: .64rem; }
  .mkt-p.p1 { margin-left: -19px; }
}
@media (prefers-reduced-motion: reduce) {
  .mkt-core, .mkt-core::before, .mkt-core::after, .mkt-p, .mkt-bar i::after { animation: none; }
}

.mkt-accounts {
  max-width: 430px; margin: .9rem auto 0;
  text-align: center;
  font-size: .74rem; color: var(--ink-3);
  letter-spacing: .02em;
}
.mkt-note-wa { margin-top: .6rem; }
.mkt-note-wa a {
  color: var(--gold); font-weight: 500;
  text-decoration: underline; text-underline-offset: 3px;
  text-decoration-color: rgba(176,138,46,.4);
  white-space: nowrap;
}
.mkt-note-wa a:hover { color: #96791f; text-decoration-color: #96791f; }

/* ---------- Landing pages CTA ---------- */
.landing-cta {
  margin-top: 2.4rem;
  text-align: center;
  font-size: .95rem; color: var(--ink-2);
  background: #fff; border: 1px solid var(--line); border-radius: 16px;
  padding: 1.1rem 1.4rem; box-shadow: var(--shadow-sm);
}
.landing-cta a { color: var(--gold); font-weight: 500; text-decoration: underline; text-underline-offset: 3px; }

/* Screen-reader-only SEO H1 (invisible, indexed) */
.sr-only {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* Marketing cards on Partners: guaranteed visible even if animations fail */
.mkt-cards, .mkt-cards .card,
.mkt-cards .icon-box, .mkt-cards h4, .mkt-cards .card-body {
  opacity: 1 !important;
  transform: none !important;
  visibility: visible !important;
}
