/* ============================================
   Unshake — Premium Landing Page
   Ultra-dark theme, blue-cyan accent
   ============================================ */

/* ---------- Variables ---------- */
:root {
  --bg:            #09090B;
  --bg-elevated:   #111113;
  --bg-card:       rgba(255, 255, 255, 0.03);
  --bg-card-hover: rgba(255, 255, 255, 0.06);
  --border:        rgba(255, 255, 255, 0.06);
  --border-hover:  rgba(255, 255, 255, 0.12);

  --text:          #FAFAFA;
  --text-secondary:#A1A1AA;
  --text-muted:    #71717A;

  --accent:        #2563EB;
  --accent-light:  #3B82F6;
  --cyan:          #06B6D4;
  --gradient:      linear-gradient(135deg, #2563EB, #06B6D4);
  --gradient-text: linear-gradient(135deg, #60A5FA, #22D3EE);

  --glass:         rgba(255, 255, 255, 0.03);
  --glass-border:  rgba(255, 255, 255, 0.06);
  --glass-blur:    20px;

  --radius:        16px;
  --radius-sm:     10px;
  --radius-xs:     8px;
  --radius-pill:   9999px;

  --font:          'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --ease:          cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out:      cubic-bezier(0.33, 1, 0.68, 1);
  --transition:    0.3s var(--ease);
  --max-width:     1200px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { border: none; background: none; cursor: pointer; font: inherit; color: inherit; }

::selection {
  background: rgba(37, 99, 235, 0.3);
  color: #fff;
}

/* ---------- Noise Texture ---------- */
.noise {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
  mix-blend-mode: overlay;
}

/* ---------- Ambient Orbs ---------- */
.orb-container {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  will-change: transform;
}

.orb--blue {
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.15) 0%, transparent 70%);
  top: -15%;
  left: -10%;
  animation: orbDrift 25s ease-in-out infinite alternate;
}

.orb--cyan {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.12) 0%, transparent 70%);
  bottom: -10%;
  right: -8%;
  animation: orbDrift 30s ease-in-out infinite alternate-reverse;
}

.orb--purple {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.08) 0%, transparent 70%);
  top: 45%;
  left: 50%;
  animation: orbDrift 35s ease-in-out infinite alternate;
}

@keyframes orbDrift {
  0%   { transform: translate(0, 0) scale(1); }
  33%  { transform: translate(30px, -40px) scale(1.05); }
  66%  { transform: translate(-20px, 20px) scale(0.97); }
  100% { transform: translate(10px, -15px) scale(1.02); }
}

/* ---------- Layout Utilities ---------- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.hide-mobile { display: inline; }

@media (max-width: 768px) {
  .hide-mobile { display: none; }
}

/* ---------- Section Typography ---------- */
.section-eyebrow {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
}

.section-heading {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 20px;
}

.section-description {
  font-size: 1.125rem;
  color: var(--text-secondary);
  max-width: 540px;
  line-height: 1.7;
  margin-bottom: 64px;
}

/* Center section headers */
.features > .container,
.section-full > .container,
.cameras > .container,
.showcase > .container {
  text-align: center;
}

.features > .container .section-description,
.section-full > .container .section-description,
.cameras > .container .section-description,
.showcase > .container .section-description {
  margin-left: auto;
  margin-right: auto;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0;
  transition: background var(--transition), backdrop-filter var(--transition), border-color var(--transition);
  border-bottom: 1px solid transparent;
}

.navbar.scrolled {
  background: rgba(9, 9, 11, 0.82);
  backdrop-filter: blur(20px) saturate(1.8);
  -webkit-backdrop-filter: blur(20px) saturate(1.8);
  border-bottom-color: var(--border);
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text);
  transition: opacity var(--transition);
}
.nav-brand:hover { opacity: 0.8; }
.nav-brand img { border-radius: 6px; }

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

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color var(--transition);
  position: relative;
}

.nav-links a:not(.nav-cta):hover {
  color: var(--text);
}

.nav-links a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gradient);
  transform: scaleX(0);
  transition: transform var(--transition);
}

.nav-links a:not(.nav-cta):hover::after {
  transform: scaleX(1);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #fff !important;
  background: var(--gradient);
  border-radius: var(--radius-pill);
  transition: transform var(--transition), box-shadow var(--transition), opacity var(--transition);
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(37, 99, 235, 0.35);
}

.nav-cta svg { width: 14px; height: 14px; flex-shrink: 0; }

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.nav-toggle.active span:first-child {
  transform: rotate(45deg) translate(2.5px, 2.5px);
}
.nav-toggle.active span:last-child {
  transform: rotate(-45deg) translate(2.5px, -2.5px);
}

.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 0;
  padding: 0 24px 20px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.nav-mobile a {
  display: block;
  padding: 14px 0;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border);
  transition: color var(--transition);
}

.nav-mobile a:last-child { border-bottom: none; }
.nav-mobile a:hover { color: var(--text); }

.nav-mobile .nav-cta {
  margin-top: 8px;
  text-align: center;
  justify-content: center;
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-mobile.open { display: flex; }
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 100vh;
  min-height: 100dvh;
  padding: 120px 24px 60px;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -55%);
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.08) 0%, rgba(6, 182, 212, 0.04) 40%, transparent 70%);
  pointer-events: none;
  animation: heroGlowPulse 8s ease-in-out infinite;
}

@keyframes heroGlowPulse {
  0%, 100% { opacity: 1; transform: translate(-50%, -55%) scale(1); }
  50%      { opacity: 0.7; transform: translate(-50%, -55%) scale(1.1); }
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Logo with glow rings */
.hero-logo-wrap {
  position: relative;
  width: 200px;
  height: 200px;
  margin-bottom: 40px;
}

.hero-logo {
  position: relative;
  z-index: 2;
  width: 200px;
  height: auto;
  margin-bottom: 40px;
  filter: drop-shadow(0 0 40px rgba(37, 99, 235, 0.2));
}

.hero-logo-ring {
  position: absolute;
  inset: -20px;
  border-radius: 54px;
  border: 1px solid rgba(37, 99, 235, 0.15);
  animation: ringPulse 4s ease-in-out infinite;
  pointer-events: none;
}

.hero-logo-ring--outer {
  inset: -44px;
  border-radius: 66px;
  border-color: rgba(6, 182, 212, 0.08);
  animation-delay: 1s;
  animation-duration: 5s;
}

@keyframes logoFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-12px); }
}

@keyframes ringPulse {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50%      { opacity: 1; transform: scale(1.04); }
}

.hero-title {
  font-size: clamp(3.5rem, 10vw, 7rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 12px;
  background: linear-gradient(180deg, #FAFAFA 0%, rgba(250, 250, 250, 0.6) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 20px;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-tagline {
  font-size: clamp(0.9375rem, 1.5vw, 1.125rem);
  color: var(--text-secondary);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 48px;
}

.hero-badge {
  display: inline-block;
  transition: transform var(--transition), filter var(--transition);
}

.hero-badge:hover {
  transform: translateY(-2px) scale(1.03);
  filter: brightness(1.15);
}

.hero-badge img { height: 56px; }

.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 28px;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 14px;
  transition: all var(--transition);
}

.hero-badge:hover .store-btn {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.25);
  transform: none;
}

.store-btn svg { flex-shrink: 0; }

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
}

.scroll-indicator-track {
  width: 24px;
  height: 40px;
  border-radius: 12px;
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  display: flex;
  justify-content: center;
  padding-top: 8px;
}

.scroll-indicator-dot {
  width: 3px;
  height: 8px;
  border-radius: 3px;
  background: var(--text-secondary);
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50%      { transform: translateY(12px); opacity: 0.3; }
}

/* ============================================
   APP SHOWCASE — Horizontal Scroll
   ============================================ */
.showcase {
  position: relative;
  z-index: 2;
  padding: 120px 0 80px;
}

.showcase-scroll {
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  cursor: grab;
}

.showcase-scroll::-webkit-scrollbar { display: none; }
.showcase-scroll:active { cursor: grabbing; }

.showcase-track {
  display: flex;
  gap: 32px;
  padding: 40px 48px 48px;
  width: max-content;
}

.showcase-card {
  flex-shrink: 0;
  transition: transform 0.5s var(--ease);
}

.showcase-card:hover {
  transform: translateY(-8px);
}

/* macOS window frame */
.window-frame {
  border-radius: 12px;
  overflow: hidden;
  background: #1a1a1e;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 4px 6px rgba(0, 0, 0, 0.3),
    0 20px 60px rgba(0, 0, 0, 0.5),
    0 0 80px rgba(37, 99, 235, 0.04);
  transition: box-shadow 0.5s var(--ease), transform 0.5s var(--ease);
}

.showcase-card:hover .window-frame {
  box-shadow:
    0 8px 12px rgba(0, 0, 0, 0.4),
    0 32px 80px rgba(0, 0, 0, 0.6),
    0 0 120px rgba(37, 99, 235, 0.08);
}

.window-titlebar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.window-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.window-dot--red    { background: #FF5F57; }
.window-dot--yellow { background: #FEBC2E; }
.window-dot--green  { background: #28C840; }

.window-title {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-left: 8px;
  font-weight: 500;
}

.showcase-card img {
  display: block;
  height: 560px;
  width: auto;
  object-fit: cover;
}

/* Progress bar */
.showcase-progress {
  max-width: 200px;
  height: 3px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 3px;
  margin: 24px auto 0;
  overflow: hidden;
}

.showcase-progress-bar {
  height: 100%;
  width: 0%;
  background: var(--gradient);
  border-radius: 3px;
  transition: width 0.1s linear;
}

@media (max-width: 768px) {
  .showcase-track { padding: 24px 20px 32px; gap: 20px; }
  .showcase-card img { height: 320px; }
}

/* ============================================
   SECTION-FULL — Breathable full-bleed sections
   ============================================ */
.section-full {
  position: relative;
  z-index: 2;
  padding: 140px 0;
  text-align: center;
  overflow: hidden;
}

.section-full .section-heading {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 16px;
}

.section-full .section-description {
  font-size: 1.125rem;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 64px;
}

.section-full .section-body {
  font-size: 1.125rem;
  color: var(--text-secondary);
  max-width: 540px;
  margin: 0 auto 64px;
  line-height: 1.7;
}

/* First section (app screenshot) has less top padding — flows from hero */
.section-full:first-of-type {
  padding-top: 0;
  margin-top: -40px;
}

/* App screenshot goes FULL BLEED */
.section-full:first-of-type .container {
  max-width: 100%;
  padding: 0;
}

/* ============================================
   FEATURE-HERO-IMG — Main app screenshot (edge to edge)
   ============================================ */
.feature-hero-img {
  max-width: 92%;
  margin: 0 auto;
}

.feature-hero-img img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5);
}

/* ============================================
   FEATURE-MEDIA — Shared image styling
   ============================================ */
.feature-media {
  width: 150%;
  margin-left: -25%;
}

.feature-media img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}

.feature-media img:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 60px rgba(0, 0, 0, 0.5), 0 0 60px rgba(37, 99, 235, 0.06);
}

/* ============================================
   CONTROL-BLOCK — Powerful Controls sub-sections
   ============================================ */
.control-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  text-align: left;
  padding: 60px 0;
  max-width: 800px;
  margin: 0 auto;
}

.control-block + .control-block {
  border-top: 1px solid var(--border);
}

.control-block--reverse {
  grid-template-columns: 1fr 1fr;
}

.control-block--reverse .control-block__text {
  order: 2;
}

.control-block--reverse .control-block__media {
  order: 1;
}

.control-block__text h3 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 8px;
  color: var(--text);
}

.control-block__subtitle {
  font-size: 1rem;
  font-weight: 600;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
}

.control-block__text p:last-child {
  font-size: 1.125rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 420px;
}

.control-block__media img {
  display: block;
  width: 100%;
  max-width: 280px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}

.control-block__media img:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 60px rgba(0, 0, 0, 0.5), 0 0 60px rgba(37, 99, 235, 0.06);
}

@media (max-width: 900px) {
  .control-block,
  .control-block--reverse {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

  .control-block--reverse .control-block__text { order: 0; }
  .control-block--reverse .control-block__media { order: 0; }

  .control-block__text p:last-child {
    max-width: none;
    margin: 0 auto;
  }
}

/* ============================================
   BATCH LAYOUT & STAT-GRID
   ============================================ */
.batch-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: center;
  text-align: left;
  max-width: 800px;
  margin: 0 auto;
}

.stat-grid {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.stat-grid__item h3 {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 8px;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-grid__item p {
  font-size: 1.125rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.batch-layout__media img {
  display: block;
  width: 100%;
  max-width: 220px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3);
  margin-left: auto;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}

.batch-layout__media img:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 60px rgba(0, 0, 0, 0.5), 0 0 60px rgba(37, 99, 235, 0.06);
}

@media (max-width: 900px) {
  .batch-layout {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }

  .stat-grid {
    gap: 32px;
  }
}

/* ============================================
   CAMERAS
   ============================================ */
.cameras {
  position: relative;
  z-index: 2;
  padding: 120px 0;
}

.camera-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  max-width: 800px;
  margin: 0 auto;
}

.camera-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: var(--radius-pill);
  background: var(--bg-card);
  border: 1px solid var(--border);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all var(--transition);
  cursor: default;
}

.camera-pill:hover {
  color: var(--text);
  border-color: rgba(37, 99, 235, 0.3);
  background: rgba(37, 99, 235, 0.06);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(37, 99, 235, 0.1);
}

.camera-brand {
  font-weight: 700;
  color: var(--text);
}

@media (max-width: 768px) {
  .camera-grid { gap: 8px; }
  .camera-pill { padding: 10px 16px; font-size: 0.8125rem; }
}

/* ============================================
   CTA
   ============================================ */
.cta {
  position: relative;
  z-index: 2;
  padding: 120px 0 140px;
  text-align: center;
  overflow: hidden;
}

.cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.cta-heading {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 20px;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-sub {
  font-size: 1.125rem;
  color: var(--text-secondary);
  max-width: 460px;
  margin: 0 auto 48px;
  line-height: 1.7;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--border);
  padding: 32px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.footer-brand img { border-radius: 4px; }

.footer-links {
  display: flex;
  gap: 28px;
}

.footer-links a {
  font-size: 0.8125rem;
  color: var(--text-muted);
  transition: color var(--transition);
}

.footer-links a:hover { color: var(--text); }

@media (max-width: 768px) {
  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
}

/* ============================================
   REVEAL ANIMATIONS
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger for children */
.reveal.visible .feature-media  { transition-delay: 0.1s; }
.reveal.visible .feature-text   { transition-delay: 0.2s; }

/* ============================================
   INNER PAGES (Privacy / Support)
   ============================================ */
.page-header {
  position: relative;
  z-index: 2;
  padding: 160px 24px 60px;
  text-align: center;
}

.page-header .section-heading {
  margin-bottom: 12px;
}

.page-header .page-date {
  font-size: 0.9375rem;
  color: var(--text-muted);
}

.page-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px 100px;
}

.page-content h2 {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 48px 0 12px;
  color: var(--text);
  letter-spacing: -0.01em;
}

.page-content p,
.page-content li {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

.page-content ul {
  list-style: none;
  padding: 0;
}

.page-content ul li {
  padding-left: 20px;
  position: relative;
  margin-bottom: 8px;
}

.page-content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent-light);
}

.page-content a {
  color: var(--accent-light);
  text-decoration: underline;
  text-decoration-color: rgba(59, 130, 246, 0.3);
  text-underline-offset: 3px;
  transition: text-decoration-color var(--transition);
}

.page-content a:hover {
  text-decoration-color: var(--accent-light);
}

/* Glass card base for inner pages */
.glass {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  transition: background var(--transition), border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.glass:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-hover);
}

/* FAQ */
.faq-item {
  padding: 28px 32px;
  margin-bottom: 12px;
}

.faq-item h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text);
}

.faq-item p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.75;
}

/* Contact card */
.contact-card {
  padding: 36px;
  text-align: center;
  margin-bottom: 48px;
}

.contact-card p {
  color: var(--text-secondary);
  margin-bottom: 14px;
}

.contact-email {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--accent-light) !important;
  text-decoration: none !important;
}

/* System requirements */
.req-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
  margin-top: 20px;
}

.req-card {
  padding: 24px;
  text-align: center;
}

.req-card .req-label {
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 8px;
  font-weight: 500;
}

.req-card .req-value {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
}

/* ============================================
   RESPONSIVE FINE-TUNING
   ============================================ */
@media (max-width: 768px) {
  .hero {
    min-height: auto;
    min-height: auto;
    padding: 140px 20px 80px;
  }

  .hero-logo-wrap {
    width: 140px;
    height: 140px;
    margin-bottom: 32px;
  }

  .hero-logo {
    width: 140px;
    height: 140px;
    border-radius: 32px;
  }

  .hero-logo-ring { inset: -14px; border-radius: 42px; }
  .hero-logo-ring--outer { inset: -30px; border-radius: 52px; }

  .hero-tagline { margin-bottom: 36px; }

  .scroll-indicator { display: none; }

  .showcase,
  .section-full,
  .cameras,
  .cta {
    padding: 80px 0;
  }

  .section-full:first-of-type {
    padding-top: 0;
  }

  .section-description { margin-bottom: 40px; }

  .control-block { padding: 48px 0; }
}
