/* PocketOption Signal - premium marketing site */
:root {
  color-scheme: dark light;
  --bg: #09090b;
  --bg-elevated: #111114;
  --surface: rgba(255, 255, 255, 0.04);
  --surface-2: rgba(255, 255, 255, 0.07);
  --border: rgba(255, 255, 255, 0.09);
  --text: #fafafa;
  --muted: #a1a1aa;
  --dim: #71717a;
  --gold: #d4af37;
  --gold-hover: #f5e6a8;
  --gold-soft: rgba(212, 175, 55, 0.14);
  --gold-glow: rgba(212, 175, 55, 0.22);
  --up: #34d399;
  --up-soft: rgba(52, 211, 153, 0.12);
  --header-bg: rgba(9, 9, 11, 0.82);
  --shadow: rgba(0, 0, 0, 0.35);
  --shadow-lg: rgba(0, 0, 0, 0.5);
  --orb-1: rgba(212, 175, 55, 0.18);
  --orb-2: rgba(52, 211, 153, 0.12);
  --orb-3: rgba(99, 102, 241, 0.1);
  --gradient-text: linear-gradient(135deg, #fff 20%, var(--gold) 80%);
  --mockup-bg: #141417;
  --lightbox-bg: rgba(0, 0, 0, 0.88);
  --btn-primary-top: #f0d878;
  --btn-primary-bottom: #c9a227;
  --btn-primary-text: #1a1408;
  --btn-primary-border: rgba(26, 20, 8, 0.14);
  --radius: 16px;
  --radius-sm: 12px;
  --container: 1140px;
  --narrow: 760px;
  --header-h: 72px;
  --transition-theme: background-color 0.35s ease, color 0.35s ease, border-color 0.35s ease;
}

[data-theme="light"] {
  color-scheme: light;
  --bg: #f4f6fb;
  --bg-elevated: #ffffff;
  --surface: rgba(0, 0, 0, 0.03);
  --surface-2: rgba(0, 0, 0, 0.05);
  --border: rgba(0, 0, 0, 0.08);
  --text: #18181b;
  --muted: #52525b;
  --dim: #71717a;
  --gold: #b8941f;
  --gold-hover: #8a6d12;
  --gold-soft: rgba(184, 148, 31, 0.12);
  --gold-glow: rgba(184, 148, 31, 0.18);
  --header-bg: rgba(244, 246, 251, 0.88);
  --shadow: rgba(15, 23, 42, 0.08);
  --shadow-lg: rgba(15, 23, 42, 0.14);
  --orb-1: rgba(212, 175, 55, 0.15);
  --orb-2: rgba(16, 185, 129, 0.1);
  --orb-3: rgba(99, 102, 241, 0.08);
  --gradient-text: linear-gradient(135deg, #18181b 20%, var(--gold) 85%);
  --mockup-bg: #ffffff;
  --lightbox-bg: rgba(15, 23, 42, 0.75);
  --btn-primary-top: #c9a227;
  --btn-primary-bottom: #8a6d12;
  --btn-primary-text: #ffffff;
  --btn-primary-border: rgba(58, 42, 8, 0.22);
}

@media (prefers-color-scheme: light) {
  [data-theme="auto"] {
    color-scheme: light;
    --bg: #f4f6fb;
    --bg-elevated: #ffffff;
    --surface: rgba(0, 0, 0, 0.03);
    --surface-2: rgba(0, 0, 0, 0.05);
    --border: rgba(0, 0, 0, 0.08);
    --text: #18181b;
    --muted: #52525b;
    --dim: #71717a;
    --gold: #b8941f;
    --gold-hover: #8a6d12;
    --gold-soft: rgba(184, 148, 31, 0.12);
    --gold-glow: rgba(184, 148, 31, 0.18);
    --header-bg: rgba(244, 246, 251, 0.88);
    --shadow: rgba(15, 23, 42, 0.08);
    --shadow-lg: rgba(15, 23, 42, 0.14);
    --orb-1: rgba(212, 175, 55, 0.15);
    --orb-2: rgba(16, 185, 129, 0.1);
    --orb-3: rgba(99, 102, 241, 0.08);
    --gradient-text: linear-gradient(135deg, #18181b 20%, var(--gold) 85%);
    --mockup-bg: #ffffff;
    --lightbox-bg: rgba(15, 23, 42, 0.75);
    --btn-primary-top: #c9a227;
    --btn-primary-bottom: #8a6d12;
    --btn-primary-text: #ffffff;
    --btn-primary-border: rgba(58, 42, 8, 0.22);
  }
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  transition: var(--transition-theme);
  position: relative;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold); text-decoration: none; transition: color 0.2s ease; }
a:hover { color: var(--gold-hover); }

.container {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}
.container.narrow { width: min(100% - 32px, var(--narrow)); }

/* Animated background orbs */
.site-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.site-bg .orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.7;
  animation: orbFloat 18s ease-in-out infinite;
}
.orb-1 { width: 420px; height: 420px; background: var(--orb-1); top: -8%; left: -6%; }
.orb-2 { width: 360px; height: 360px; background: var(--orb-2); top: 35%; right: -8%; animation-delay: -6s; }
.orb-3 { width: 300px; height: 300px; background: var(--orb-3); bottom: 5%; left: 30%; animation-delay: -12s; }

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(24px, -18px) scale(1.05); }
  66% { transform: translate(-16px, 12px) scale(0.96); }
}

#site-header,
#main,
.site-footer { position: relative; z-index: 1; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: var(--header-bg);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.2s ease, var(--transition-theme);
}
.site-header.scrolled { box-shadow: 0 8px 32px var(--shadow); }
.header-inner {
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  flex-shrink: 0;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-name { font-weight: 700; font-size: 15px; }
.brand-ver { font-size: 11px; color: var(--dim); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px;
  z-index: 2;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: background 0.2s;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 16px;
}
.site-nav ul {
  display: flex;
  gap: 2px;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}
.site-nav ul a {
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 10px;
  border-radius: 10px;
  transition: color 0.2s, background 0.2s;
}
.site-nav ul a:hover,
.site-nav ul a.active {
  color: var(--text);
  background: var(--surface);
}
.nav-actions {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}

/* Theme switch */
.theme-switch {
  display: inline-flex;
  padding: 3px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface);
}
.theme-btn {
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font-size: 14px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.15s;
}
.theme-btn:hover { color: var(--text); transform: scale(1.05); }
.theme-btn.active {
  background: var(--gold-soft);
  color: var(--gold);
  box-shadow: 0 0 0 1px rgba(212, 175, 55, 0.2);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 12px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.2s, background 0.2s, border-color 0.2s;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: linear-gradient(180deg, var(--btn-primary-top), var(--btn-primary-bottom));
  color: var(--btn-primary-text);
  border-color: var(--btn-primary-border);
  box-shadow: 0 8px 24px var(--gold-glow);
}
.btn-primary:hover {
  color: var(--btn-primary-text);
  box-shadow: 0 12px 28px var(--gold-glow);
  filter: brightness(1.04);
}
a.btn-primary,
a.btn-primary:hover {
  color: var(--btn-primary-text);
}
.nav-actions .btn-primary {
  white-space: nowrap;
}
.btn-ghost {
  background: var(--surface);
  border-color: var(--border);
  color: var(--text);
}
.btn-ghost:hover { color: var(--text); background: var(--surface-2); }
.btn-lg { padding: 14px 24px; font-size: 15px; }
.btn-block { width: 100%; }

.btn-shimmer {
  position: relative;
  overflow: hidden;
}
.btn-shimmer::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.35) 50%, transparent 60%);
  transform: translateX(-120%);
  animation: shimmer 3.5s ease-in-out infinite;
}

@keyframes shimmer {
  0%, 70%, 100% { transform: translateX(-120%); }
  40% { transform: translateX(120%); }
}

/* ===== HOME HERO (redesigned) ===== */
.hero-home {
  position: relative;
  padding: clamp(32px, 6vw, 72px) 0 clamp(24px, 4vw, 48px);
  overflow: hidden;
}
.hero-home-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 30%, black, transparent);
  opacity: 0.35;
  animation: gridPan 40s linear infinite;
}
@keyframes gridPan {
  from { background-position: 0 0; }
  to { background-position: 48px 48px; }
}
.hero-spot {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}
.hero-spot-gold {
  width: min(520px, 70vw);
  height: min(520px, 70vw);
  background: var(--gold-glow);
  top: -15%;
  left: 50%;
  transform: translateX(-50%);
  animation: pulseSpot 8s ease-in-out infinite;
}
.hero-spot-green {
  width: 280px;
  height: 280px;
  background: var(--orb-2);
  bottom: 10%;
  right: 8%;
  animation: pulseSpot 10s ease-in-out infinite reverse;
}
@keyframes pulseSpot {
  0%, 100% { opacity: 0.6; transform: translateX(-50%) scale(1); }
  50% { opacity: 1; transform: translateX(-50%) scale(1.08); }
}
.hero-spot-green { animation-name: pulseSpotGreen; }
@keyframes pulseSpotGreen {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 0.85; transform: scale(1.1); }
}

.hero-home-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 5vw, 56px);
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-home-content { max-width: 580px; }
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}
.badge {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--gold-soft);
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
}
.badge-outline {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--muted);
}
.badge-pulse { animation: badgePulse 2.5s ease-in-out infinite; }
@keyframes badgePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); }
  50% { box-shadow: 0 0 0 6px rgba(212, 175, 55, 0.12); }
}

.hero-home-title {
  margin: 0 0 18px;
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
  font-weight: 800;
}
.text-gradient {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-home-sub {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: clamp(1rem, 2.2vw, 1.12rem);
  line-height: 1.65;
}
.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}
.hero-chip {
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  border: 1px solid var(--border);
  background: var(--surface);
  transition: border-color 0.2s, transform 0.2s;
}
.hero-chip:hover { border-color: var(--gold); transform: translateY(-1px); }
.hero-home-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 16px;
}
.hero-home-note {
  margin: 0 0 24px;
  font-size: 13px;
  color: var(--dim);
  padding-left: 12px;
  border-left: 2px solid var(--gold-soft);
}
.hero-home-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.hero-stat {
  padding: 12px 10px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--surface);
  text-align: center;
  transition: transform 0.2s, border-color 0.2s;
}
.hero-stat:hover { transform: translateY(-2px); border-color: var(--gold-soft); }
.hero-stat strong {
  display: block;
  font-size: 1.25rem;
  color: var(--gold);
  margin-bottom: 2px;
}
.hero-stat span { font-size: 11px; color: var(--muted); }

/* Mockup */
.hero-home-visual { position: relative; }
.mockup-shell {
  position: relative;
  border-radius: calc(var(--radius) + 4px);
  border: 1px solid var(--border);
  background: var(--mockup-bg);
  box-shadow: 0 32px 80px var(--shadow-lg);
  overflow: hidden;
}
.mockup-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}
.mockup-bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border);
}
.mockup-bar span:nth-child(1) { background: #f87171; }
.mockup-bar span:nth-child(2) { background: #fbbf24; }
.mockup-bar span:nth-child(3) { background: #34d399; }
.mockup-url {
  margin-left: auto;
  font-size: 11px;
  color: var(--dim);
  padding: 4px 10px;
  border-radius: 6px;
  background: var(--surface);
  border: 1px solid var(--border);
}
.mockup-body img { width: 100%; }
.mockup-glow {
  position: absolute;
  inset: auto 10% -20% 10%;
  height: 40%;
  background: radial-gradient(circle, var(--gold-glow), transparent 70%);
  filter: blur(24px);
  pointer-events: none;
}
.hero-float-card {
  position: absolute;
  left: -12px;
  bottom: 18%;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  box-shadow: 0 12px 32px var(--shadow);
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}
.hero-float-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--up);
  animation: blink 1.8s ease-in-out infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}
.float-y { animation: floatY 6s ease-in-out infinite; }
.float-y-delay { animation: floatY 6s ease-in-out infinite; animation-delay: -2s; }
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Inner page hero */
.page-hero {
  padding: clamp(40px, 6vw, 64px) 0 24px;
  position: relative;
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 100%;
  background: radial-gradient(ellipse 70% 60% at 50% 0%, var(--gold-soft), transparent 70%);
  pointer-events: none;
  opacity: 0.5;
}
.page-hero > .container { position: relative; z-index: 1; }
.page-hero-center { text-align: center; }
.page-hero h1 {
  margin: 0 0 12px;
  font-size: clamp(2rem, 4vw, 2.8rem);
  letter-spacing: -0.03em;
  font-weight: 800;
}
.lead {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
}
.meta-line { color: var(--dim); font-size: 13px; margin: 0 0 12px; }

/* Sections */
.section { padding: clamp(40px, 6vw, 56px) 0; }
.section-alt {
  background: var(--surface);
  border-block: 1px solid var(--border);
}
.section-title {
  margin: 0 0 28px;
  font-size: clamp(1.5rem, 3vw, 2rem);
  letter-spacing: -0.02em;
  font-weight: 800;
}
.section-cta { margin-top: 28px; display: flex; flex-wrap: wrap; gap: 12px; }

/* Cards */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.card {
  padding: 20px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: linear-gradient(180deg, var(--surface-2), var(--surface));
  transition: var(--transition-theme);
}
.card-icon { font-size: 28px; margin-bottom: 12px; }
.card h3 { margin: 0 0 8px; font-size: 1rem; }
.card p { margin: 0; color: var(--muted); font-size: 14px; }

.hover-lift {
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, var(--transition-theme);
}
.hover-lift:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px var(--shadow);
  border-color: var(--gold-soft);
}

/* Gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.gallery-2 { grid-template-columns: repeat(2, 1fr); }
.gallery-item {
  padding: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: none;
  cursor: zoom-in;
}

/* Steps */
.steps-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}
.step-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 18px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--surface);
}
.step-num {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: var(--gold-soft);
  color: var(--gold);
  font-weight: 800;
  flex-shrink: 0;
}

/* CTA band */
.cta-band {
  padding: 48px 0;
  background: linear-gradient(180deg, var(--gold-soft), transparent);
  border-top: 1px solid var(--border);
}
.cta-band-inner {
  text-align: center;
  display: grid;
  gap: 16px;
  justify-items: center;
}
.cta-band h2 {
  margin: 0;
  font-size: clamp(1.4rem, 3vw, 2rem);
  max-width: 24ch;
  font-weight: 800;
}

/* Prose */
.prose-block {
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}
.prose-block:last-child { border-bottom: 0; }
.prose-block h2 { margin: 0 0 12px; font-size: 1.25rem; }
.prose-block p { margin: 0 0 16px; color: var(--muted); }

/* Features page */
.feature-blocks { display: grid; gap: 20px; }
.feature-block {
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface);
}
.feature-block-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.feature-block-icon { font-size: 24px; }
.feature-block h2 { margin: 0; font-size: 1.2rem; }
.check-list {
  margin: 0;
  padding-left: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}
.check-list li {
  position: relative;
  padding-left: 24px;
  color: var(--muted);
  font-size: 14px;
}
.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--up);
  font-weight: 800;
}

/* Tariffs */
.tariffs-hero {
  padding: clamp(56px, 8vw, 88px) 0 32px;
  text-align: center;
  position: relative;
}
.tariffs-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 0%, var(--gold-soft), transparent);
  pointer-events: none;
}
.tariffs-headline {
  margin: 0 0 16px;
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  font-weight: 800;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  position: relative;
}
.tariffs-sub {
  margin: 0;
  color: var(--muted);
  font-size: 1.15rem;
  position: relative;
}
.pricing-card {
  padding: 32px;
  border-radius: calc(var(--radius) + 4px);
  border: 1px solid var(--gold-soft);
  background: linear-gradient(180deg, var(--gold-soft), var(--surface));
  text-align: center;
  animation: cardGlow 4s ease-in-out infinite;
}
@keyframes cardGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); }
  50% { box-shadow: 0 0 40px rgba(212, 175, 55, 0.12); }
}
.pricing-badge {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--gold-soft);
  color: var(--gold);
  font-weight: 800;
  margin-bottom: 16px;
}
.pricing-price { margin-bottom: 24px; }
.pricing-amount {
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 800;
  line-height: 1;
  color: var(--gold);
}
.pricing-period { color: var(--muted); font-size: 1.1rem; }
.pricing-features { text-align: left; margin-bottom: 24px; }

.faq-list { display: grid; gap: 12px; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--surface);
  padding: 4px 16px;
  transition: border-color 0.2s;
}
.faq-item[open] { border-color: var(--gold-soft); }
.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  padding: 12px 0;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 14px;
  animation: fadeIn 0.3s ease;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: none; }
}

/* Contacts */
.contact-list { display: grid; gap: 12px; margin-bottom: 20px; }
.contact-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--surface);
  color: inherit;
}
.contact-card:hover { color: inherit; border-color: var(--gold-soft); }
.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--gold-soft);
  font-size: 20px;
}
.contact-body { display: flex; flex-direction: column; gap: 2px; }
.contact-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--dim);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.contact-value { font-size: 16px; font-weight: 700; color: var(--gold); }
.contact-note {
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(52, 211, 153, 0.15);
  background: var(--up-soft);
  color: var(--muted);
  font-size: 14px;
}

/* Install */
.install-block {
  margin-bottom: 28px;
  padding: 20px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--surface);
}
.install-block h2 { margin: 0 0 12px; font-size: 1.15rem; }
.install-steps {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
  display: grid;
  gap: 8px;
}
.install-shot {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  margin-inline: auto;
  box-shadow: 0 20px 50px var(--shadow);
}

/* Footer */
.site-footer {
  margin-top: 48px;
  padding: 40px 0 24px;
  border-top: 1px solid var(--border);
  background: var(--surface);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 32px;
  margin-bottom: 20px;
}
.footer-name { font-weight: 800; font-size: 1.1rem; margin-bottom: 8px; }
.footer-tagline { color: var(--muted); margin: 0 0 12px; font-size: 14px; }
.footer-copy { color: var(--dim); margin: 0; font-size: 12px; }
.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.footer-col-title {
  font-size: 12px;
  font-weight: 700;
  color: var(--dim);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}
.footer-col a {
  display: block;
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 8px;
}
.footer-col a:hover { color: var(--gold); }
.footer-disclaimer {
  color: var(--dim);
  font-size: 12px;
  line-height: 1.5;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--lightbox-bg);
  display: grid;
  place-items: center;
  padding: 24px;
  animation: fadeIn 0.2s ease;
}
.lightbox[hidden] { display: none; }
.lightbox img {
  max-height: 90vh;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  box-shadow: 0 24px 64px var(--shadow-lg);
}
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: 0;
  color: #fff;
  font-size: 36px;
  cursor: pointer;
}

/* Scroll animations */
.reveal,
.reveal-right,
.reveal-scale {
  opacity: 0;
  transition: opacity 0.65s ease var(--d, 0ms), transform 0.65s ease var(--d, 0ms);
}
.reveal { transform: translateY(20px); }
.reveal-right { transform: translateX(24px); }
.reveal-scale { transform: scale(0.96); }
.reveal.visible,
.reveal-right.visible,
.reveal-scale.visible {
  opacity: 1;
  transform: none;
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-home-inner { grid-template-columns: 1fr; }
  .hero-home-visual { order: -1; max-width: 560px; margin-inline: auto; width: 100%; }
  .hero-float-card { left: 8px; bottom: 12px; }
  .hero-home-stats { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 960px) {
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .site-nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    background: var(--header-bg);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    padding: 16px;
    flex-direction: column;
    align-items: stretch;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.25s ease, opacity 0.25s ease;
    max-height: calc(100vh - var(--header-h));
    overflow-y: auto;
  }
  .site-nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .site-nav ul { flex-direction: column; }
  .nav-actions {
    flex-direction: column;
    width: 100%;
    padding-top: 8px;
    border-top: 1px solid var(--border);
  }
  .theme-switch { align-self: center; }
  .nav-actions .btn { width: 100%; }
  .cards-grid,
  .gallery,
  .gallery-2 { grid-template-columns: 1fr; }
  .hero-home-title { font-size: clamp(1.75rem, 7vw, 2.4rem); }
  .hero-home-actions { flex-direction: column; }
  .hero-home-actions .btn { width: 100%; }
  .brand-ver { display: none; }
  .site-nav ul a { padding: 10px 12px; }
}

@media (max-width: 480px) {
  .hero-home-stats { grid-template-columns: 1fr 1fr; }
  .hero-float-card { font-size: 12px; padding: 8px 10px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal, .reveal-right, .reveal-scale {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .site-bg .orb,
  .float-y, .float-y-delay,
  .badge-pulse, .btn-shimmer::after,
  .hero-grid-lines, .hero-spot,
  .pricing-card, .hero-float-dot {
    animation: none !important;
  }
}
