/* ============================================================================
   TICKER SPACE — Master Stylesheet
   Dark, financial-tech aesthetic. Bloomberg Terminal × Apple product page.
   ============================================================================ */

/* ============================================================================
   1. FONTS — self-imported via @import (no <link> tags) for performance control
   ============================================================================ */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Space+Grotesk:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500;700&display=swap');

/* ============================================================================
   2. DESIGN TOKENS
   ============================================================================ */
:root {
  /* Brand palette (per spec) */
  --c-navy:        #0A0E1A;   /* base / hero */
  --c-charcoal:    #1C2333;   /* alternating section bg */
  --c-charcoal-2:  #131826;   /* deeper variant */
  --c-amber:       #F5A623;   /* accent — LED glow */
  --c-amber-soft:  #FFC76A;
  --c-amber-deep:  #B86F00;
  --c-white:       #E8ECF4;
  --c-white-dim:   #9FA8B5;
  --c-white-faint: #5A6478;
  --c-green:       #00C853;   /* up tick */
  --c-red:         #FF1744;   /* down tick */
  --c-line:        rgba(232, 236, 244, 0.08);
  --c-line-strong: rgba(232, 236, 244, 0.16);

  /* Typography */
  --f-display: 'Space Grotesk', 'Inter', system-ui, sans-serif;
  --f-body:    'Inter', system-ui, sans-serif;
  --f-mono:    'JetBrains Mono', ui-monospace, 'SF Mono', monospace;

  /* Sizing */
  --container: 1280px;
  --gutter: 2rem;
  --nav-h: 72px;

  /* Motion */
  --ease: cubic-bezier(.22, .61, .36, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);

  /* Glow / shadows */
  --glow-amber: 0 0 24px rgba(245, 166, 35, .35), 0 0 60px rgba(245, 166, 35, .12);
  --shadow-card: 0 20px 50px -20px rgba(0, 0, 0, .55), 0 0 0 1px var(--c-line);
  --shadow-elev: 0 30px 80px -30px rgba(0, 0, 0, .8), 0 0 0 1px var(--c-line-strong);
}

/* ============================================================================
   3. RESET / BASE
   ============================================================================ */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--f-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.55;
  color: var(--c-white);
  background: var(--c-navy);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; transition: color .2s var(--ease), opacity .2s var(--ease); }
a:hover { color: var(--c-amber); }
button { font-family: inherit; cursor: pointer; }
ul { list-style: none; padding: 0; margin: 0; }
h1, h2, h3, h4, h5, h6 {
  font-family: var(--f-display);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.08;
  margin: 0 0 1rem;
}
h1 { font-size: clamp(2.6rem, 6.5vw, 5.4rem); font-weight: 700; }
h2 { font-size: clamp(2rem, 4.4vw, 3.6rem); font-weight: 700; }
h3 { font-size: 1.25rem; font-weight: 600; }
p  { margin: 0 0 1rem; color: var(--c-white-dim); }

::selection { background: var(--c-amber); color: var(--c-navy); }

/* ============================================================================
   4. UTILITIES
   ============================================================================ */
.container {
  max-width: var(--container);
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.text-amber { color: var(--c-amber); }
.kicker {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-family: var(--f-mono);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--c-amber);
  padding: .45rem .8rem;
  border: 1px solid rgba(245, 166, 35, .35);
  border-radius: 999px;
  margin-bottom: 1.4rem;
  background: rgba(245, 166, 35, .06);
}
.lead {
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--c-white-dim);
  margin-bottom: 1.4rem;
}
.paragraph { color: var(--c-white-dim); }
.section-head { text-align: center; max-width: 760px; margin: 0 auto 2.5rem; }
.section-head__sub { font-size: 1.05rem; color: var(--c-white-dim); }

/* ============================================================================
   5. BUTTONS
   ============================================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .95rem 1.6rem;
  border-radius: 6px;
  font-family: var(--f-display);
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: .01em;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform .25s var(--ease), background .25s var(--ease),
              color .25s var(--ease), box-shadow .35s var(--ease), border-color .25s var(--ease);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn i, .btn svg { width: 1em; height: 1em; }
.btn--sm { padding: .65rem 1.1rem; font-size: .85rem; }
.btn--primary {
  background: var(--c-amber);
  color: var(--c-navy);
  box-shadow: 0 0 0 0 rgba(245,166,35,0);
}
.btn--primary:hover {
  background: var(--c-amber-soft);
  color: var(--c-navy);
  box-shadow: var(--glow-amber);
  transform: translateY(-1px);
}
.btn--ghost {
  background: transparent;
  color: var(--c-white);
  border-color: var(--c-line-strong);
}
.btn--ghost:hover {
  border-color: var(--c-amber);
  color: var(--c-amber);
  background: rgba(245,166,35,.05);
}

/* ============================================================================
   6. NAV
   ============================================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 100;
  background: rgba(10, 14, 26, .55);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid transparent;
  transition: background .3s var(--ease), border-color .3s var(--ease);
}
.nav.is-scrolled {
  background: rgba(10, 14, 26, .85);
  border-bottom-color: var(--c-line);
}
.nav__inner {
  height: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.nav__brand img { height: 36px; width: auto; }
.nav__links {
  display: flex;
  align-items: center;
  gap: .25rem;
  margin-left: auto;
}
.nav__link {
  position: relative;
  font-family: var(--f-mono);
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--c-white-dim);
  padding: .55rem .9rem;
  border-radius: 4px;
}
.nav__link:hover { color: var(--c-white); }
.nav__link.active {
  color: var(--c-amber);
}
.nav__link.active::before {
  content: '';
  position: absolute;
  left: .9rem;
  right: .9rem;
  bottom: .25rem;
  height: 1px;
  background: var(--c-amber);
}
.nav__cta { margin-left: .5rem; }
.nav__hamburger {
  display: none;
  margin-left: auto;
  background: transparent;
  border: 1px solid var(--c-line-strong);
  width: 44px; height: 44px;
  border-radius: 4px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  padding: 0;
}
.nav__hamburger span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--c-white);
  transition: transform .25s var(--ease), opacity .25s var(--ease);
}
.nav__hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.is-open span:nth-child(2) { opacity: 0; }
.nav__hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: var(--nav-h) 0 0 0;
  background: rgba(10, 14, 26, .98);
  backdrop-filter: blur(20px);
  z-index: 99;
  padding: 2rem;
  transform: translateX(100%);
  transition: transform .35s var(--ease);
  overflow-y: auto;
  display: none;
}
.mobile-menu.is-open { transform: translateX(0); }
.mobile-menu nav { display: flex; flex-direction: column; gap: 1.4rem; }
.mobile-menu a {
  font-family: var(--f-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--c-white);
  padding: .5rem 0;
  border-bottom: 1px solid var(--c-line);
}
.mobile-menu .btn { margin-top: 1rem; align-self: flex-start; }

/* ============================================================================
   7. SECTION SHELLS
   ============================================================================ */
.section {
  position: relative;
  display: flex;
  align-items: center;
  padding: calc(var(--nav-h) + 1.25rem) 0 1.5rem;
  background: var(--c-navy);
  overflow: hidden;
}
/* Alternate backgrounds for visual rhythm */
.section--problem  { background: var(--c-charcoal); }
.section--what     { background: var(--c-navy); }
.section--why      { background: var(--c-charcoal); }
.section--serve    { background: var(--c-navy); }
.section--products { background: var(--c-charcoal); }
.section--how      { background: var(--c-navy); }
.section--stats    { background: var(--c-charcoal-2); }
.section--contact  { background: var(--c-navy); }

/* fullPage.js compatibility — sections sized by FP, but allow auto-height for footer */
.fp-watching .section { padding-top: var(--nav-h); padding-bottom: 0; }
.section.fp-auto-height { padding: 0; min-height: auto; }

/* fullPage's internal scroll-overflow wrapper. When a section's content
   exceeds the viewport, fullPage v4 wraps it in .fp-overflow and adds a
   native scrollbar. We restyle that scrollbar so it matches the brand and
   doesn't feel like a leftover system widget. */
.fp-overflow {
  scrollbar-width: thin;
  scrollbar-color: rgba(245, 166, 35, .35) transparent;
  /* Make sure the inner content can be wheel-scrolled without colliding
     with fullPage's own wheel listener at the boundaries */
  overscroll-behavior: contain;
}
.fp-overflow::-webkit-scrollbar { width: 6px; }
.fp-overflow::-webkit-scrollbar-track { background: transparent; }
.fp-overflow::-webkit-scrollbar-thumb {
  background: rgba(245, 166, 35, .25);
  border-radius: 3px;
}
.fp-overflow::-webkit-scrollbar-thumb:hover {
  background: rgba(245, 166, 35, .5);
}
/* Don't double-pad — when fullPage wraps content, the section provides
   the top padding; the inner wrapper gets a small bottom buffer instead */
.fp-overflow > .container { padding-bottom: 1.5rem; }

/* ============================================================================
   8. HERO
   ============================================================================ */
.section--hero {
  background:
    radial-gradient(ellipse 80% 60% at 50% 40%, rgba(245,166,35,.08), transparent 60%),
    var(--c-navy);
  padding-top: var(--nav-h);
}
.hero__grid {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(232,236,244,.06) 1px, transparent 0);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 30%, transparent 80%);
  pointer-events: none;
}
.hero__glow {
  position: absolute;
  width: 80vw; height: 80vw;
  max-width: 1200px; max-height: 1200px;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(245,166,35,.12) 0%, transparent 60%);
  pointer-events: none;
  filter: blur(40px);
}
.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 4rem 0;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .5rem 1rem;
  border: 1px solid var(--c-line-strong);
  border-radius: 999px;
  font-family: var(--f-mono);
  font-size: .75rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--c-white-dim);
  margin-bottom: 2rem;
  background: rgba(0,0,0,.3);
  backdrop-filter: blur(8px);
}
.led-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--c-green);
  box-shadow: 0 0 10px var(--c-green), 0 0 4px var(--c-green);
  animation: pulse 1.6s ease-in-out infinite;
}
.led-dot--green { background: var(--c-green); box-shadow: 0 0 10px var(--c-green); }
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .4; }
}
.hero__headline {
  margin: 0 0 1.5rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.02;
}
.hero__sub {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  max-width: 620px;
  margin: 0 auto 2.5rem;
  color: var(--c-white-dim);
  line-height: 1.55;
}
.hero__ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.hero__meta {
  display: inline-flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1rem 1.6rem;
  border: 1px solid var(--c-line);
  border-radius: 6px;
  background: rgba(0,0,0,.4);
  backdrop-filter: blur(10px);
}
.hero__meta-item { display: flex; flex-direction: column; align-items: center; gap: .15rem; }
.hero__meta-label {
  font-family: var(--f-mono);
  font-size: .65rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--c-white-faint);
}
.hero__meta-value {
  font-family: var(--f-mono);
  font-size: .9rem;
  font-weight: 500;
  color: var(--c-white);
}
.hero__meta-divider { width: 1px; height: 24px; background: var(--c-line); }

.hero__scroll {
  position: absolute;
  bottom: 88px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .6rem;
  font-family: var(--f-mono);
  font-size: .65rem;
  letter-spacing: .3em;
  color: var(--c-white-faint);
  z-index: 2;
}
.hero__scroll-line {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, var(--c-amber), transparent);
  position: relative;
  overflow: hidden;
}
.hero__scroll-line::after {
  content: '';
  position: absolute;
  top: -36px;
  left: 0;
  width: 100%;
  height: 36px;
  background: var(--c-amber);
  animation: scrollDown 2s linear infinite;
}
@keyframes scrollDown {
  to { transform: translateY(72px); }
}

/* ============================================================================
   9. LED TICKER STRIPS (hero)
   ============================================================================ */
.ticker-strip {
  position: absolute;
  left: 0; right: 0;
  height: 64px;
  background: #04060d;
  border-top: 1px solid rgba(245,166,35,.25);
  border-bottom: 1px solid rgba(245,166,35,.25);
  overflow: hidden;
  z-index: 3;
  box-shadow: 0 0 30px rgba(245,166,35,.15), inset 0 0 40px rgba(0,0,0,.6);
  /* Dot-matrix overlay — gives the LED strip a "perforated" feel */
}
.ticker-strip::before,
.ticker-strip::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 4;
  pointer-events: none;
}
.ticker-strip::before {
  left: 0;
  background: linear-gradient(to right, #04060d, transparent);
}
.ticker-strip::after {
  right: 0;
  background: linear-gradient(to left, #04060d, transparent);
}
.ticker-strip--top    { top: var(--nav-h); }
.ticker-strip--bottom { bottom: 0; }

.ticker-strip__rail {
  display: flex;
  align-items: center;
  height: 100%;
  width: max-content;
  animation: tickerScroll 80s linear infinite;
  will-change: transform;
}
.ticker-strip--bottom .ticker-strip__rail {
  animation-direction: reverse;
  animation-duration: 95s;
}
@keyframes tickerScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.ticker-strip:hover .ticker-strip__rail { animation-play-state: paused; }

.tick {
  display: inline-flex;
  align-items: baseline;
  gap: .55rem;
  padding: 0 1.4rem;
  font-family: var(--f-mono);
  font-size: 1.1rem;
  font-weight: 500;
  border-right: 1px solid rgba(245,166,35,.12);
  white-space: nowrap;
  /* Subtle dot-matrix illusion via text-shadow */
  text-shadow: 0 0 6px currentColor;
}
.tick__sym {
  color: var(--c-amber);
  font-weight: 700;
  letter-spacing: .04em;
}
.tick__price { color: var(--c-white); font-variant-numeric: tabular-nums; }
.tick__chg {
  font-size: .9rem;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  display: inline-flex;
  align-items: center;
  gap: .15rem;
}
.tick__chg--up   { color: var(--c-green); text-shadow: 0 0 6px rgba(0,200,83,.6); }
.tick__chg--down { color: var(--c-red);   text-shadow: 0 0 6px rgba(255,23,68,.6); }
.tick__arrow { font-size: .75em; }

/* ============================================================================
   10. SPLIT LAYOUT (problem / what / contact)
   ============================================================================ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  width: 100%;
}
.split--reverse .split__media   { order: -1; }
.split__text > .kicker { margin-bottom: 1.4rem; }
.split__text h2 { margin-bottom: 1.4rem; }

.media-frame {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  background: var(--c-charcoal);
  border: 1px solid var(--c-line-strong);
  box-shadow: var(--shadow-elev);
}
.media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  aspect-ratio: 4 / 3;
}
.media-frame--tall img { aspect-ratio: 3 / 4; }
.media-frame__corner {
  position: absolute;
  width: 18px; height: 18px;
  border: 2px solid var(--c-amber);
  pointer-events: none;
}
.media-frame__corner--tl { top: 10px; left: 10px;  border-right: 0; border-bottom: 0; }
.media-frame__corner--tr { top: 10px; right: 10px; border-left: 0;  border-bottom: 0; }
.media-frame__corner--bl { bottom: 10px; left: 10px; border-right: 0; border-top: 0; }
.media-frame__corner--br { bottom: 10px; right: 10px; border-left: 0; border-top: 0; }

.check-list { margin: 1.5rem 0; }
.check-list li {
  display: flex;
  gap: .8rem;
  padding: .8rem 0;
  border-bottom: 1px solid var(--c-line);
  align-items: flex-start;
}
.check-list li:last-child { border-bottom: 0; }
.check-list i {
  width: 20px; height: 20px;
  color: var(--c-red);
  flex-shrink: 0;
  margin-top: 2px;
}
.check-list span { color: var(--c-white-dim); }

/* ============================================================================
   11. ICON GRID (slide 3)
   ============================================================================ */
.icon-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
  margin-top: 2rem;
}
.icon-card {
  padding: 1.4rem;
  background: rgba(255,255,255,.02);
  border: 1px solid var(--c-line);
  border-radius: 6px;
  transition: border-color .25s var(--ease), background .25s var(--ease);
}
.icon-card:hover { border-color: rgba(245,166,35,.5); background: rgba(245,166,35,.04); }
.icon-card__icon {
  width: 28px; height: 28px;
  color: var(--c-amber);
  margin-bottom: .8rem;
}
.icon-card h3 {
  font-size: 1rem;
  font-family: var(--f-display);
  margin: 0 0 .35rem;
  color: var(--c-white);
}
.icon-card p { font-size: .88rem; margin: 0; line-height: 1.5; color: var(--c-white-dim); }

/* ============================================================================
   12. VALUE GRID (slide 4)
   ============================================================================ */
.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.value-card {
  position: relative;
  padding: 1.6rem 1.4rem 1.4rem;
  background: linear-gradient(180deg, rgba(255,255,255,.025), rgba(255,255,255,0));
  border: 1px solid var(--c-line);
  border-radius: 8px;
  overflow: hidden;
  transition: transform .35s var(--ease), border-color .35s var(--ease), background .35s var(--ease);
}
.value-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--c-amber), transparent);
  opacity: 0;
  transition: opacity .3s var(--ease);
}
.value-card:hover {
  transform: translateY(-4px);
  border-color: rgba(245,166,35,.35);
  background: linear-gradient(180deg, rgba(245,166,35,.03), rgba(255,255,255,0));
}
.value-card:hover::before { opacity: 1; }
.value-card__num {
  position: absolute;
  top: 1.2rem; right: 1.4rem;
  font-family: var(--f-mono);
  font-size: .8rem;
  color: var(--c-white-faint);
}
.value-card__icon {
  width: 30px; height: 30px;
  color: var(--c-amber);
  margin-bottom: .9rem;
  filter: drop-shadow(0 0 8px rgba(245,166,35,.3));
}
.value-card h3 {
  font-size: 1.1rem;
  margin-bottom: .6rem;
  color: var(--c-white);
}
.value-card p {
  font-size: .92rem;
  line-height: 1.55;
  color: var(--c-white-dim);
  margin: 0;
}

/* ============================================================================
   13. WHO WE SERVE
   ============================================================================ */
.serve-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  align-items: start;
}
.serve-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.serve-card {
  padding: 1.4rem;
  border: 1px solid var(--c-line);
  border-radius: 6px;
  background: rgba(255,255,255,.015);
  transition: border-color .25s var(--ease), transform .25s var(--ease);
}
.serve-card:hover {
  border-color: rgba(245,166,35,.4);
  transform: translateY(-2px);
}
.serve-card__icon {
  width: 24px; height: 24px;
  color: var(--c-amber);
  margin-bottom: .8rem;
}
.serve-card h3 {
  font-size: 1rem;
  margin-bottom: .35rem;
  color: var(--c-white);
}
.serve-card p { font-size: .85rem; margin: 0; line-height: 1.5; color: var(--c-white-dim); }
.serve-image { display: flex; flex-direction: column; gap: 1rem; }
.serve-image .media-frame img { aspect-ratio: 4 / 5; }
.serve-image__caption {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--f-mono);
  font-size: .75rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--c-white-dim);
}
.serve-image__caption i { width: 14px; height: 14px; color: var(--c-amber); }

/* ============================================================================
   14. PRODUCT CARDS
   ============================================================================ */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.product-card {
  position: relative;
  background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,0));
  border: 1px solid var(--c-line);
  border-radius: 10px;
  overflow: hidden;
  transition: transform .35s var(--ease), border-color .35s var(--ease);
}
.product-card:hover { transform: translateY(-6px); border-color: rgba(245,166,35,.35); }
.product-card--featured {
  border-color: rgba(245,166,35,.55);
  background: linear-gradient(180deg, rgba(245,166,35,.06), rgba(245,166,35,0));
  box-shadow: 0 30px 80px -40px rgba(245,166,35,.4);
}
.product-card__ribbon {
  position: absolute;
  top: 14px; right: 14px;
  background: var(--c-amber);
  color: var(--c-navy);
  font-family: var(--f-mono);
  font-size: .65rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  padding: .35rem .7rem;
  border-radius: 4px;
  z-index: 2;
  font-weight: 700;
}
.product-card__media {
  position: relative;
  aspect-ratio: 7 / 5;
  overflow: hidden;
  background: var(--c-charcoal-2);
}
.product-card__media img { width: 100%; height: 100%; object-fit: cover; }
.product-card__badge {
  position: absolute;
  bottom: 12px; left: 12px;
  font-family: var(--f-mono);
  font-size: .7rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--c-amber);
  padding: .3rem .6rem;
  background: rgba(10,14,26,.75);
  backdrop-filter: blur(6px);
  border-radius: 3px;
  border: 1px solid rgba(245,166,35,.3);
}
.product-card__body { padding: 1.6rem; }
.product-card__name {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 .25rem;
  color: var(--c-white);
}
.product-card__tag {
  font-size: .85rem;
  color: var(--c-white-dim);
  margin-bottom: 1.2rem;
}
.spec-list {
  margin: 0 0 1.4rem;
  display: flex;
  flex-direction: column;
}
.spec-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .6rem 0;
  border-bottom: 1px solid var(--c-line);
  font-size: .88rem;
}
.spec-list li:last-child { border-bottom: 0; }
.spec-list span { color: var(--c-white-faint); font-family: var(--f-mono); font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; }
.spec-list strong { color: var(--c-white); font-family: var(--f-mono); font-weight: 500; }

/* ============================================================================
   15. PROCESS / HOW IT WORKS
   ============================================================================ */
.process {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 1rem;
  align-items: stretch;
}
.process__step {
  position: relative;
  padding: 1.6rem 1.3rem;
  border: 1px solid var(--c-line);
  border-radius: 8px;
  background: rgba(255,255,255,.02);
  text-align: left;
}
.process__num {
  font-family: var(--f-mono);
  font-size: .75rem;
  letter-spacing: .2em;
  color: var(--c-amber);
  margin-bottom: .8rem;
}
.process__icon {
  width: 26px; height: 26px;
  color: var(--c-white);
  margin-bottom: .8rem;
  filter: drop-shadow(0 0 6px rgba(245,166,35,.25));
}
.process__step h3 { font-size: 1.05rem; margin-bottom: .5rem; }
.process__step p  { font-size: .9rem; color: var(--c-white-dim); margin: 0; line-height: 1.5; }
.process__connector {
  align-self: center;
  width: 36px;
  height: 1px;
  background: linear-gradient(90deg, var(--c-amber), transparent);
  position: relative;
}
.process__connector::after {
  content: '';
  position: absolute;
  right: -3px; top: -3px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--c-amber);
  box-shadow: 0 0 8px var(--c-amber);
}

/* ============================================================================
   16. STATS + TESTIMONIALS
   ============================================================================ */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 2.5rem;
  padding: 1.6rem;
  border: 1px solid var(--c-line);
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(245,166,35,.04), transparent);
}
.stat { text-align: center; }
.stat__num {
  font-family: var(--f-display);
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--c-amber);
  line-height: 1;
  text-shadow: 0 0 30px rgba(245,166,35,.3);
  font-variant-numeric: tabular-nums;
  margin-bottom: .5rem;
}
.stat__label {
  font-family: var(--f-mono);
  font-size: .75rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--c-white-dim);
}

.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.testimonial {
  position: relative;
  margin: 0;
  padding: 1.5rem 1.4rem 1.3rem;
  border: 1px solid var(--c-line);
  border-radius: 8px;
  background: rgba(255,255,255,.02);
}
.testimonial__mark {
  width: 22px; height: 22px;
  color: var(--c-amber);
  opacity: .6;
  margin-bottom: .7rem;
}
.testimonial blockquote {
  margin: 0 0 1rem;
  font-size: .94rem;
  line-height: 1.5;
  color: var(--c-white);
  font-weight: 400;
}
.testimonial figcaption { font-size: .82rem; line-height: 1.4; }
.testimonial figcaption strong { display: block; color: var(--c-white); font-weight: 600; }
.testimonial figcaption span { color: var(--c-white-faint); }

/* ============================================================================
   17. CONTACT
   ============================================================================ */
.contact-split { gap: 4rem; align-items: stretch; }
.contact-left  h2 { margin-bottom: 1.4rem; }
.contact-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}
.contact-list li {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--c-line);
  align-items: center;
}
.contact-list li:last-child { border-bottom: 0; }
.contact-list i {
  width: 22px; height: 22px;
  color: var(--c-amber);
  flex-shrink: 0;
}
.contact-list div { display: flex; flex-direction: column; gap: .15rem; }
.contact-list span {
  font-family: var(--f-mono);
  font-size: .68rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--c-white-faint);
}
.contact-list a, .contact-list p {
  margin: 0;
  font-family: var(--f-mono);
  font-size: 1rem;
  color: var(--c-white);
}
.contact-list a:hover { color: var(--c-amber); }

.contact-form {
  padding: 2rem;
  background: var(--c-charcoal);
  border: 1px solid var(--c-line);
  border-radius: 10px;
}
.contact-form__title {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  color: var(--c-white);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
.field {
  display: flex;
  flex-direction: column;
  gap: .4rem;
  margin-bottom: 1rem;
}
.field span {
  font-family: var(--f-mono);
  font-size: .68rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--c-white-dim);
}
.field input,
.field textarea {
  font-family: var(--f-body);
  font-size: .95rem;
  background: var(--c-navy);
  border: 1px solid var(--c-line-strong);
  border-radius: 4px;
  padding: .8rem .9rem;
  color: var(--c-white);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
  resize: vertical;
}
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--c-amber);
  box-shadow: 0 0 0 3px rgba(245,166,35,.15);
}
.field input::placeholder,
.field textarea::placeholder { color: var(--c-white-faint); }
.form-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: .5rem;
}
.form-foot__note {
  font-family: var(--f-mono);
  font-size: .72rem;
  color: var(--c-white-faint);
  margin: 0;
}
.form-status {
  margin-top: 1rem;
  font-size: .9rem;
  min-height: 1.2em;
}
.form-status.success { color: var(--c-green); }
.form-status.error   { color: var(--c-red); }

/* ============================================================================
   18. FOOTER
   ============================================================================ */
.section--footer { background: #050811; min-height: auto; height: auto; }
.footer { width: 100%; padding: 4rem 0 2rem; }
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--c-line);
}
.footer__brand img { height: 44px; margin-bottom: 1rem; }
.footer__tagline {
  font-size: .92rem;
  color: var(--c-white-dim);
  max-width: 360px;
  line-height: 1.5;
  margin-bottom: 1.4rem;
}
.footer__social { display: flex; gap: .5rem; }
.footer__social a {
  width: 38px; height: 38px;
  border-radius: 4px;
  border: 1px solid var(--c-line-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-white-dim);
  transition: all .2s var(--ease);
}
.footer__social a:hover {
  border-color: var(--c-amber);
  color: var(--c-amber);
  background: rgba(245,166,35,.05);
}
.footer__social i { width: 16px; height: 16px; }
.footer__col h4 {
  font-family: var(--f-mono);
  font-size: .72rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--c-amber);
  margin-bottom: 1.1rem;
}
.footer__col ul { display: flex; flex-direction: column; gap: .55rem; }
.footer__col a, .footer__col li {
  font-size: .9rem;
  color: var(--c-white-dim);
}
.footer__col a:hover { color: var(--c-amber); }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 1.6rem;
}
.footer__bottom p {
  margin: 0;
  font-size: .8rem;
  color: var(--c-white-faint);
}
.footer__legal { font-family: var(--f-mono); font-size: .72rem !important; }

/* ============================================================================
   19. REVEAL ANIMATIONS
   ============================================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s var(--ease-out), transform .8s var(--ease-out);
  transition-delay: var(--d, 0s);
}
.reveal.is-in {
  opacity: 1;
  transform: translateY(0);
}
.reveal--delay { --d: .15s; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ============================================================================
   20. RESPONSIVE
   ============================================================================ */

/* --- Short / compact laptop viewports (e.g. 1366x768, 1440x900) ---
   These viewports are wide enough to keep the multi-column grids, but too
   short for the desktop-default spacing. Squeeze paddings and font sizes
   so each section fits in 100vh and fullPage doesn't have to fall back to
   internal scrolling. */
@media (min-width: 769px) and (max-height: 900px) {
  .section { padding: calc(var(--nav-h) + .5rem) 0 1rem; }
  .section-head { margin-bottom: 1.75rem; }
  .section-head__sub { font-size: .95rem; }
  h2 { font-size: clamp(1.7rem, 3.2vw, 2.6rem); }

  .hero__content { padding: 2rem 0; }
  .hero__headline { margin-bottom: 1rem; }
  .hero__sub { margin-bottom: 1.6rem; font-size: 1rem; }
  .hero__ctas { margin-bottom: 1.8rem; }

  .value-grid, .product-grid, .serve-grid { gap: 1rem; }
  .value-card { padding: 1.2rem 1.2rem 1.1rem; }
  .value-card h3 { font-size: 1rem; margin-bottom: .35rem; }
  .value-card p { font-size: .85rem; }
  .value-card__icon { width: 26px; height: 26px; margin-bottom: .7rem; }

  .product-card__media { aspect-ratio: 8 / 5; }
  .product-card__body { padding: 1.2rem; }
  .product-card__name { font-size: 1.3rem; }
  .product-card__tag { margin-bottom: .8rem; font-size: .8rem; }
  .spec-list li { padding: .45rem 0; font-size: .82rem; }

  .process__step { padding: 1.2rem 1rem; }
  .process__step h3 { font-size: .98rem; }
  .process__step p { font-size: .85rem; }

  .stats-grid { margin-bottom: 1.6rem; padding: 1.2rem; }
  .stat__num { font-size: clamp(2rem, 3vw, 2.8rem); }
  .testimonial { padding: 1.2rem 1.2rem 1rem; }
  .testimonial blockquote { font-size: .88rem; line-height: 1.45; }

  .icon-grid { gap: 1rem; }
  .icon-card { padding: 1.1rem; }

  .contact-form { padding: 1.4rem; }
  .field { margin-bottom: .6rem; }
  .form-row { margin-bottom: .6rem; }
  .field input, .field textarea { padding: .65rem .8rem; font-size: .9rem; }

  .footer { padding: 2.5rem 0 1.5rem; }
  .footer__grid { padding-bottom: 2rem; gap: 2rem; }
}

@media (min-width: 769px) and (max-height: 760px) {
  /* Even shorter — netbooks, browser dev panes open. Last-resort squeeze. */
  .section { padding: calc(var(--nav-h) + .25rem) 0 .5rem; }
  .section-head { margin-bottom: 1.25rem; }
  h2 { font-size: clamp(1.5rem, 2.8vw, 2.2rem); }
  .lead { font-size: 1rem; line-height: 1.5; margin-bottom: 1rem; }
  .kicker { margin-bottom: .9rem; }
  .icon-grid { grid-template-columns: repeat(4, 1fr); }
  .testimonials { gap: 1rem; }
}

@media (max-width: 1024px) {
  .value-grid       { grid-template-columns: repeat(2, 1fr); }
  .product-grid     { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
  .process          { grid-template-columns: repeat(2, 1fr); }
  .process__connector { display: none; }
  .serve-layout     { grid-template-columns: 1fr; }
  .serve-image      { max-width: 480px; margin: 0 auto; }
  .footer__grid     { grid-template-columns: 1fr 1fr; gap: 2.4rem; }
}

@media (max-width: 768px) {
  :root { --gutter: 1.25rem; --nav-h: 64px; }

  /* Disable fullPage.js snap-scroll on mobile, fall back to natural scroll */
  html.fp-enabled, html.fp-enabled body { overflow: auto !important; }
  #fullpage,
  #fullpage > .section,
  .fp-section, .fp-tableCell {
    height: auto !important;
    min-height: auto !important;
  }
  .section {
    min-height: 100vh;
    padding: calc(var(--nav-h) + 3rem) 0 3rem;
    display: block;
  }
  .section--hero { min-height: 100vh; padding-top: var(--nav-h); }
  .section--footer { min-height: auto; }

  .nav__links, .nav__cta { display: none; }
  .nav__hamburger { display: flex; }
  .mobile-menu { display: block; }

  h1 { font-size: clamp(2.2rem, 9vw, 3.4rem); }
  h2 { font-size: clamp(1.8rem, 7vw, 2.6rem); }

  .split, .contact-split, .serve-layout {
    grid-template-columns: 1fr;
    gap: 2.4rem;
  }
  .split--reverse .split__media { order: 0; }

  .icon-grid     { grid-template-columns: 1fr; }
  .value-grid    { grid-template-columns: 1fr; }
  .serve-grid    { grid-template-columns: 1fr; }
  .process       { grid-template-columns: 1fr; }
  .stats-grid    { grid-template-columns: repeat(2, 1fr); padding: 1.4rem; }
  .testimonials  { grid-template-columns: 1fr; }
  .form-row      { grid-template-columns: 1fr; gap: 0; }
  .footer__grid  { grid-template-columns: 1fr; gap: 2rem; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }

  .hero__meta {
    flex-wrap: wrap;
    gap: 1rem;
    padding: .9rem 1.2rem;
  }
  .hero__meta-divider { display: none; }
  .hero__scroll { display: none; }

  .ticker-strip { height: 52px; }
  .tick { font-size: .92rem; padding: 0 1rem; }

  .product-card__name { font-size: 1.3rem; }
  .stat__num { font-size: 2.4rem; }
}

@media (max-width: 480px) {
  .hero__ctas { flex-direction: column; align-items: stretch; }
  .hero__ctas .btn { justify-content: center; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}

/* ============================================================================
   21. fullPage.js OVERRIDES
   ============================================================================ */
#fp-nav.fp-right { right: 22px; }
#fp-nav ul li a span,
.fp-slidesNav ul li a span {
  background: var(--c-white-faint);
}
#fp-nav ul li a.active span,
.fp-slidesNav ul li a.active span {
  background: var(--c-amber);
  box-shadow: 0 0 8px var(--c-amber);
}
#fp-nav ul li .fp-tooltip {
  font-family: var(--f-mono);
  font-size: .7rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--c-white);
}
