:root {
  --orange: #FF6B1A;
  --orange-glow: #FF8C42;
  --orange-dim: #C94E0D;
  --gold: #D4960A;
  --dark: #080808;
  --dark-2: #0F0F0F;
  --dark-3: #161616;
  --dark-4: #1E1E1E;
  --dark-5: #282828;
  --text: #F0EDE8;
  --text-muted: #8A8580;
  --text-dim: #3A3835;
  --border: rgba(255,107,26,0.15);
  --border-bright: rgba(255,107,26,0.5);
  --font-display: 'Cormorant Garamond', serif;
  --font-ui: 'Syne', sans-serif;
  --font-mono: 'DM Mono', monospace;
}

*,
*::before,
*::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--dark);
  color: var(--text);
  font-family: var(--font-ui);
  overflow-x: hidden;
  cursor: none;
}

/* Custom cursor */
.cursor {
  width: 8px; height: 8px;
  background: var(--orange);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 99999;
  transition: transform 0.15s ease;
  mix-blend-mode: normal;
}
.cursor-ring {
  width: 32px; height: 32px;
  border: 1px solid rgba(255,107,26,0.5);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 99998;
  transition: all 0.25s ease;
}

/* Noise overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.4;
}

/* LED line top */
.led-top {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--orange) 30%, var(--orange-glow) 50%, var(--orange) 70%, transparent 100%);
  z-index: 1000;
  box-shadow: 0 0 20px var(--orange), 0 0 40px rgba(255,107,26,0.3);
}

/* NAV */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.5rem 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(180deg, rgba(8,8,8,0.95) 0%, transparent 100%);
  backdrop-filter: blur(10px);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  /* ensure the brand word is always the orange LED (override any default link coloring) */
  color: var(--orange);
}
.nav-logo-icon {
  width: 36px; height: 36px;
  background: transparent; /* show provided image instead of orange block */
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 0;
}
.nav-logo-icon .site-logo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.nav-logo-text {
  font-family: var(--font-display);
  font-weight: 400; /* finer weight */
  font-size: 20px; /* larger */
  letter-spacing: 0.12em;
  color: var(--orange);
  text-transform: none; /* preserve case styling */
  display: inline-block;
  padding-left: 4px;
  transition: transform 0.18s ease, filter 0.18s ease;
  text-shadow:
    0 0 6px rgba(255,107,26,0.25),
    0 0 18px rgba(255,140,66,0.06);
  -webkit-font-smoothing: antialiased;
  will-change: transform, filter;
  animation: ledGlow 3s ease-in-out infinite;
}

/* subtle pulsing LED glow animation for brand word */
@keyframes ledGlow {
  0% {
    filter: drop-shadow(0 0 6px rgba(255,107,26,0.15));
    text-shadow: 0 0 6px rgba(255,107,26,0.18), 0 0 18px rgba(255,140,66,0.03);
    transform: translateY(0) scale(1);
  }
  40% {
    filter: drop-shadow(0 0 14px rgba(255,107,26,0.28));
    text-shadow: 0 0 12px rgba(255,107,26,0.28), 0 0 36px rgba(255,140,66,0.08);
    transform: translateY(-1px) scale(1.01);
  }
  100% {
    filter: drop-shadow(0 0 6px rgba(255,107,26,0.15));
    text-shadow: 0 0 6px rgba(255,107,26,0.18), 0 0 18px rgba(255,140,66,0.03);
    transform: translateY(0) scale(1);
  }
}

/* stronger hover pop for interactive feel */
.nav-logo:hover .nav-logo-text,
.nav-logo:focus .nav-logo-text {
  transform: translateY(-2px) scale(1.02);
  filter: drop-shadow(0 0 22px rgba(255,107,26,0.45));
}
.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}
.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  transition: color 0.2s;
}

/* LED orange text treatment for nav + footer items requested */
.led-text {
  color: var(--orange);
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-shadow:
    0 0 8px rgba(255,107,26,0.25),
    0 0 20px rgba(255,140,66,0.08);
  transition: filter 0.18s ease, transform 0.18s ease;
  display: inline-block;
}
.led-text:hover {
  filter: drop-shadow(0 0 18px rgba(255,107,26,0.35));
  transform: translateY(-2px);
}
.nav-links a:hover { color: var(--orange); }
.nav-cta {
  background: transparent;
  border: 1px solid var(--border-bright);
  color: var(--orange);
  padding: 0.5rem 1.5rem;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: none;
  transition: all 0.3s;
  text-decoration: none;
}
.nav-cta:hover {
  background: var(--orange);
  color: white;
  box-shadow: 0 0 30px rgba(255,107,26,0.4);
}

/* HERO */
/* large logo displayed prominently at top of hero */
.hero-logo-large {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2.25rem;
  pointer-events: none;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.15s forwards;
}
.hero-logo-img {
  width: clamp(140px, 22vw, 340px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 8px 30px rgba(255,107,26,0.06));
  border-radius: 18px;
  background: rgba(255,255,255,0.02);
  padding: 6px;
}

/* ensure the hero visual spacing remains intact on small screens */
@media (max-width: 768px) {
  .hero-logo-large { margin-bottom: 1.25rem; }
  .hero-logo-img { width: clamp(110px, 36vw, 220px); border-radius: 12px; padding:4px; }
}
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 8rem 4rem 4rem;
  text-align: center;
  overflow: hidden;
}

.hero-bg-lines {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 79px,
      rgba(255,107,26,0.03) 80px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 79px,
      rgba(255,107,26,0.03) 80px
    );
}

.hero-glow {
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,107,26,0.08) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.hero-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.25em;
  color: var(--orange);
  text-transform: uppercase;
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.2s forwards;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-label::before, .hero-label::after {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--orange);
  opacity: 0.5;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(4rem, 9vw, 9rem);
  font-weight: 300;
  line-height: 0.9;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  opacity: 0;
  animation: fadeUp 1s ease 0.4s forwards;
}
.hero-title em {
  font-style: italic;
  color: var(--orange);
}
.hero-title-sub {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 3rem);
  font-weight: 300;
  font-style: italic;
  color: var(--text-muted);
  margin-bottom: 3rem;
  opacity: 0;
  animation: fadeUp 1s ease 0.6s forwards;
}

.hero-desc {
  max-width: 540px;
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 3.5rem;
  opacity: 0;
  animation: fadeUp 1s ease 0.8s forwards;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  opacity: 0;
  animation: fadeUp 1s ease 1s forwards;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--orange);
  color: white;
  padding: 1rem 2.5rem;
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: none;
  cursor: none;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s;
  box-shadow: 0 0 30px rgba(255,107,26,0.3);
  position: relative;
  overflow: hidden;
}
.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 60%);
}
.btn-primary:hover {
  box-shadow: 0 0 50px rgba(255,107,26,0.6);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: var(--text);
  padding: 1rem 2.5rem;
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: 1px solid var(--dark-5);
  cursor: none;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s;
}
.btn-secondary:hover {
  border-color: var(--border-bright);
  color: var(--orange);
}

.hero-stats {
  position: absolute;
  bottom: 3rem;
  left: 4rem;
  display: flex;
  gap: 3rem;
  opacity: 0;
  animation: fadeUp 1s ease 1.2s forwards;
}
.stat { text-align: left; }
.stat-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--orange);
  line-height: 1;
}
.stat-label {
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 4px;
}

.hero-scroll {
  position: absolute;
  bottom: 3rem;
  right: 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeUp 1s ease 1.4s forwards;
}
.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(180deg, var(--orange) 0%, transparent 100%);
  animation: scrollPulse 2s ease infinite;
}
.scroll-text {
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  writing-mode: vertical-rl;
}

/* SECTION BASE */
section {
  padding: 7rem 4rem;
  position: relative;
}

.section-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--orange);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-label::before {
  content: '';
  width: 30px; height: 1px;
  background: var(--orange);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 5rem);
  font-weight: 300;
  line-height: 1.05;
  margin-bottom: 1.5rem;
}
.section-title em { font-style: italic; color: var(--orange); }

/* INTRO SLIDE SECTION */
.intro-slide {
  width: 100%;
  background: linear-gradient(180deg, rgba(8,8,8,0.96), rgba(8,8,8,0.95));
  padding: 0;
  display: block;
  position: relative;
  border-top: 1px solid rgba(255,107,26,0.06);
  border-bottom: 1px solid rgba(255,107,26,0.06);
  box-shadow: 0 10px 40px rgba(0,0,0,0.6);
}
.intro-slide-frame {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  position: relative;
  box-sizing: border-box;
  padding: 18px; /* inner padding creates the LED frame gap */
  background: linear-gradient(180deg, rgba(255,107,26,0.03), rgba(255,107,26,0.01));
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}
.intro-slide-frame::before {
  content: '';
  position: absolute;
  inset: 6px;
  border-radius: 18px;
  pointer-events: none;
  box-shadow: 0 0 36px rgba(255,107,26,0.14), 0 0 80px rgba(255,107,26,0.06);
  border: 1px solid rgba(255,107,26,0.12);
}
.intro-video {
  display: block;
  width: 100%;
  /* show the full video frame vertically: allow taller max height and use contain to avoid cropping */
  height: auto;
  max-height: calc(80vh);
  border-radius: 18px;
  object-fit: contain;
  object-position: center top; /* prioritize top area while keeping full frame visible */
  background: #000;
  outline: none;
  border: 4px solid rgba(255,107,26,0.06);
  box-shadow: 0 18px 60px rgba(0,0,0,0.6), inset 0 0 40px rgba(255,107,26,0.03);
  will-change: transform;
  /* ensure the video loops visually smooth */
  animation: subtleFloat 10s ease-in-out infinite;
}

/* subtle float so the slide feels premium */
@keyframes subtleFloat {
  0% { transform: translateY(0px) scale(1); }
  50% { transform: translateY(-6px) scale(1.002); }
  100% { transform: translateY(0px) scale(1); }
}

.intro-overlay {
  position: absolute;
  inset: 18px;
  border-radius: 18px;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255,107,26,0.02), transparent 40%);
  mix-blend-mode: overlay;
}

/* make the intro slide edge-to-edge on small screens while preserving padding */
@media (max-width: 768px) {
  .intro-slide-frame { padding: 10px; }
  .intro-video { height: calc(40vh); max-height: 420px; border-radius: 8px; }
}

 /* VIDEO SECTION */
.video-section {
  background: var(--dark-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 5rem 4rem;
}

.video-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-top: 3rem;
}

.video-frame {
  position: relative;
  aspect-ratio: 16/9;
  background: var(--dark-3);
  overflow: hidden;
}

/* Embedded video used for Video 1 (show full frame without cropping) */
.embedded-video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain; /* ensure full frame visible, no cropping */
  object-position: center center;
  background: #000;
  border-radius: 6px;
  outline: none;
  border: 0;
  z-index: 1;
}

/* keep the original label but overlay it subtly so controls/menus in the video remain visible */
.video-label-overlay {
  position: absolute;
  bottom: 10px;
  left: 12px;
  right: 12px;
  z-index: 6;
  pointer-events: none;
  text-align: left;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-muted);
  background: linear-gradient(180deg, rgba(0,0,0,0.0), rgba(0,0,0,0.25));
  padding: 6px 10px;
  border-radius: 6px;
}
.video-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid var(--border);
  z-index: 2;
  pointer-events: none;
}
/* Orange LED border on hover */
.video-frame::after {
  content: '';
  position: absolute;
  inset: -1px;
  border: 2px solid var(--orange);
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 3;
  box-shadow: inset 0 0 30px rgba(255,107,26,0.1), 0 0 30px rgba(255,107,26,0.3);
}
.video-frame:hover::after { opacity: 1; }

.video-placeholder {
  width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background: linear-gradient(135deg, var(--dark-3) 0%, var(--dark-4) 100%);
}
.video-play-btn {
  width: 60px; height: 60px;
  border: 1px solid var(--border-bright);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  font-size: 20px;
  cursor: none;
  transition: all 0.3s;
}
.video-frame:hover .video-play-btn {
  background: var(--orange);
  color: white;
  box-shadow: 0 0 30px rgba(255,107,26,0.5);
}
.video-label {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-align: center;
  padding: 0 1rem;
}

/* FEATURES */
.features-section {
  max-width: 1400px;
  margin: 0 auto;
  padding: 7rem 4rem;
}

.features-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-bottom: 5rem;
  align-items: end;
}

.features-intro {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-muted);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
}

.feature-card {
  background: var(--dark);
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
  box-shadow: 0 0 15px var(--orange);
}
.feature-card:hover { background: var(--dark-2); }
.feature-card:hover::before { transform: scaleX(1); }

.feature-num {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text-dim);
  letter-spacing: 0.2em;
  margin-bottom: 1.5rem;
}
.feature-icon {
  font-size: 24px;
  margin-bottom: 1rem;
  display: block;
}
.feature-title {
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  color: var(--text);
}
.feature-desc {
  font-size: 13px;
  line-height: 1.7;
  color: var(--text-muted);
}

/* SHOWCASE SECTION */
.showcase-section {
  background: var(--dark-2);
  border-top: 1px solid var(--border);
  padding: 7rem 4rem;
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 3rem;
}

.showcase-item {
  position: relative;
  aspect-ratio: 4/3;
  background: var(--dark-3);
  overflow: hidden;
}
.showcase-item::after {
  content: attr(data-label);
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.5rem 1rem 1rem;
  background: linear-gradient(transparent, rgba(8,8,8,0.95));
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  text-transform: uppercase;
  font-family: var(--font-mono);
}
.showcase-item:first-child {
  grid-column: span 2;
  grid-row: span 2;
  aspect-ratio: auto;
}

.showcase-img-placeholder {
  width: 100%; height: 100%;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--dark-3), var(--dark-4));
  position: relative;
  overflow: hidden;
}
/* Animated gradient for placeholders */
.showcase-img-placeholder::before {
  content: '';
  position: absolute;
  inset: -50%;
  background: conic-gradient(from 0deg, transparent 0deg, rgba(255,107,26,0.05) 60deg, transparent 120deg);
  animation: rotateSlow 8s linear infinite;
}
.placeholder-text {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text-dim);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}

/* COMPARISON */
.comparison-section {
  max-width: 900px;
  margin: 0 auto;
  padding: 7rem 4rem;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 3rem;
}
.comparison-table th {
  padding: 1rem 1.5rem;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-family: var(--font-mono);
  border-bottom: 1px solid var(--border);
}
.comparison-table th:first-child { text-align: left; color: var(--text-muted); }
.comparison-table th.col-architec {
  color: var(--orange);
  position: relative;
}
.comparison-table th.col-architec::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 2px;
  background: var(--orange);
  box-shadow: 0 0 10px var(--orange);
}
.comparison-table th.col-other { color: var(--text-dim); }

.comparison-table td {
  padding: 1rem 1.5rem;
  font-size: 13px;
  border-bottom: 1px solid rgba(255,107,26,0.06);
  vertical-align: middle;
}
.comparison-table td:first-child {
  color: var(--text-muted);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.05em;
}
.comparison-table td.col-architec { text-align: center; }
.comparison-table td.col-other { text-align: center; color: var(--text-dim); }

.check { color: var(--orange); font-size: 16px; }
.cross { color: var(--text-dim); }
.partial { color: var(--gold); font-size: 12px; }

/* PRICING */
.pricing-section {
  background: var(--dark-2);
  border-top: 1px solid var(--border);
  padding: 7rem 4rem;
  text-align: center;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  max-width: 1100px;
  margin: 3rem auto 0;
}

.price-card {
  background: var(--dark-2);
  padding: 2.5rem 1.5rem;
  position: relative;
  transition: background 0.3s;
}
.price-card.featured {
  background: var(--dark-3);
  position: relative;
}
.price-card.featured::before {
  content: 'RECOMMENDED';
  position: absolute;
  top: -1px; left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: white;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.2em;
  padding: 4px 12px;
  font-family: var(--font-mono);
  box-shadow: 0 0 20px rgba(255,107,26,0.4);
}
.price-tier {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.price-amount {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 300;
  line-height: 1;
  color: var(--text);
  margin-bottom: 0.25rem;
}
.price-amount span {
  font-size: 1.2rem;
  color: var(--text-muted);
  vertical-align: super;
}
.price-lindens {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--orange);
  margin-bottom: 1.5rem;
}
.price-period {
  font-size: 11px;
  color: var(--text-dim);
  margin-bottom: 2rem;
}
.price-features {
  list-style: none;
  text-align: left;
  margin-bottom: 2rem;
}
.price-features li {
  font-size: 12px;
  color: var(--text-muted);
  padding: 0.4rem 0;
  display: flex;
  gap: 8px;
  align-items: flex-start;
  border-bottom: 1px solid rgba(255,107,26,0.05);
}
.price-features li::before {
  content: '✦';
  color: var(--orange);
  font-size: 8px;
  margin-top: 3px;
  flex-shrink: 0;
}

.btn-buy-paypal, .btn-buy-linden {
  width: 100%;
  padding: 0.875rem;
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: none;
  border: none;
  margin-bottom: 8px;
  transition: all 0.3s;
  display: block;
  text-align: center;
  text-decoration: none;
}
.btn-buy-paypal {
  background: var(--orange);
  color: white;
  box-shadow: 0 0 20px rgba(255,107,26,0.2);
}
.btn-buy-paypal:hover {
  box-shadow: 0 0 40px rgba(255,107,26,0.5);
  transform: translateY(-1px);
}
.btn-buy-linden {
  background: transparent;
  color: var(--orange);
  border: 1px solid var(--border-bright);
}
.btn-buy-linden:hover {
  background: rgba(255,107,26,0.08);
}

/* LANGUAGES */
.languages-section {
  padding: 5rem 4rem;
  text-align: center;
  border-top: 1px solid var(--border);
}
.lang-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 2.5rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.lang-chip {
  padding: 0.5rem 1.25rem;
  border: 1px solid var(--border);
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-muted);
  transition: all 0.3s;
  letter-spacing: 0.05em;
}
.lang-chip:hover {
  border-color: var(--border-bright);
  color: var(--orange);
  background: rgba(255,107,26,0.05);
}

/* QUOTE */
.quote-section {
  padding: 7rem 4rem;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.quote-text {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 3.5rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.3;
  color: var(--text);
  margin-bottom: 2rem;
  position: relative;
}
.quote-text::before {
  content: '"';
  font-size: 8rem;
  color: var(--orange);
  opacity: 0.15;
  position: absolute;
  top: -2rem;
  left: -2rem;
  font-family: var(--font-display);
  line-height: 1;
}
.quote-author {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--orange);
  text-transform: uppercase;
}

/* FOOTER */
footer {
  background: var(--dark);
  border-top: 1px solid var(--border);
  padding: 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.footer-brand .nav-logo-text {
  margin-bottom: 0.75rem;
  display: block;
}
.footer-tagline {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.7;
}
.footer-links h4 {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--text-dim);
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 0.5rem; }
.footer-links a {
  font-size: 12px;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--orange); }
.footer-bottom {
  grid-column: span 3;
  border-top: 1px solid var(--border);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-copy {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text-dim);
  letter-spacing: 0.1em;
}
.footer-suite {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--orange);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* LED decorative line */
.led-line {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
  box-shadow: 0 0 15px rgba(255,107,26,0.3);
  margin: 0;
}

/* Animations */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.1); }
}
@keyframes rotateSlow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@keyframes ledPulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 20px var(--orange), 0 0 40px rgba(255,107,26,0.3); }
  50% { opacity: 0.7; box-shadow: 0 0 10px var(--orange), 0 0 20px rgba(255,107,26,0.15); }
}

.led-top { animation: ledPulse 3s ease infinite; }

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* Responsive */
@media (max-width: 768px) {
  nav { padding: 1.25rem 1.5rem; }
  .nav-links { display: none; }
  section, .features-section, .comparison-section, .pricing-section, .quote-section, .languages-section { padding: 4rem 1.5rem; }
  .hero { padding: 7rem 1.5rem 4rem; }
  .hero-stats { left: 1.5rem; bottom: 2rem; gap: 2rem; }
  .hero-scroll { right: 1.5rem; }
  .video-grid { grid-template-columns: 1fr; }
  .features-header { grid-template-columns: 1fr; gap: 2rem; }
  .features-grid { grid-template-columns: 1fr; }
  .showcase-grid { grid-template-columns: 1fr; }
  .showcase-item:first-child { grid-column: auto; grid-row: auto; }
  .pricing-grid { grid-template-columns: 1fr 1fr; }
  footer { grid-template-columns: 1fr; }
  .footer-bottom { grid-column: 1; flex-direction: column; gap: 1rem; text-align: center; }
}

/* small utility colors used inline in HTML */
.muted-note { color: var(--text-muted); font-size:14px; line-height:1.8; }
.small { font-size:13px; }

/* VIDEOS — Premium gallery layout */
.videos-section {
  background: linear-gradient(180deg, rgba(8,8,8,0.98), rgba(8,8,8,0.96));
  padding: 5.5rem 4rem;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.videos-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
  align-items: start;
}
.video-tile {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: stretch;
}
.video-tile-frame {
  background: #000;
  border-radius: 12px;
  padding: 8px;
  border: 2px solid rgba(255,107,26,0.06);
  box-shadow: 0 18px 60px rgba(0,0,0,0.6), inset 0 0 40px rgba(255,107,26,0.03);
  overflow: hidden;
}
.tile-video {
  width: 100%;
  height: 180px;
  max-height: 220px;
  object-fit: contain; /* ensure full frame visible without cropping */
  border-radius: 8px;
  background: #000;
  display: block;
}
.video-tile-title {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--orange);
  letter-spacing: 0.11em;
  text-transform: none;
  text-align: center;
  padding: 6px 4px;
  border-radius: 6px;
  background: linear-gradient(180deg, rgba(255,107,26,0.02), rgba(255,107,26,0.01));
  box-shadow: 0 6px 18px rgba(255,107,26,0.04);
}

/* responsive: collapse to 2/3 columns on small screens */
@media (max-width: 1100px) {
  .videos-grid { grid-template-columns: repeat(3, 1fr); }
  .tile-video { height: 160px; max-height: 200px; }
}
@media (max-width: 720px) {
  .videos-grid { grid-template-columns: 1fr; gap: 1.25rem; }
  .tile-video { height: calc(36vh); max-height: 320px; }
}