/* ============================================
   ANTERION — Design System
   Three colors: Black, Blue, White
   ============================================ */

/* --- Reset & Base --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg: #0A0A0A;
  --card: #111111;
  --card-alt: #141414;
  --accent: #2563EB;
  --accent-hover: #3B82F6;
  --white: #FFFFFF;
  --muted: #999999;
  --muted-dark: #666666;
  --border: #1C1C1C;
  --border-light: #2A2A2A;
  --watermark: #252525;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in: cubic-bezier(0.4, 0, 1, 1);
  --transition: 180ms cubic-bezier(0.16, 1, 0.3, 1);
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--white);
  font-size: 15px;
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

/* --- Utility --- */
.text-blue { color: var(--accent); }

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 40px;
  transition: background var(--transition);
}

.nav.scrolled {
  background: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.nav-logo {
  font-size: 18px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.02em;
}

.nav-hamburger {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 8px;
  width: 40px;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--accent);
  border-radius: 1px;
  margin-left: auto;
}

/* --- Menu Overlay --- */
.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 60px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 400ms var(--ease-out);
}

.menu-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.menu-close {
  position: absolute;
  top: 24px;
  right: 40px;
  font-size: 24px;
  color: var(--accent);
  background: none;
  border: none;
  cursor: pointer;
  z-index: 10;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.menu-link {
  font-size: clamp(32px, 5vw, 60px);
  font-weight: 800;
  color: var(--white);
  transition: color var(--transition);
  display: flex;
  align-items: baseline;
  gap: 16px;
}

.menu-link::before {
  content: attr(data-num);
  font-size: 12px;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.1em;
}

.menu-link:hover {
  color: var(--accent);
}

.menu-footer {
  position: absolute;
  bottom: 40px;
  left: 60px;
  display: flex;
  gap: 32px;
  font-size: 12px;
  color: var(--muted-dark);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 40px;
  overflow: hidden;
}

.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero > *:not(.hero-canvas):not(.hero-floating-card):not(.hero-kicker) {
  position: relative;
  z-index: 1;
}

.hero-kicker {
  position: absolute;
  top: 80px;
  left: 40px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 13px;
  color: var(--muted);
}

.hero-kicker strong {
  color: var(--white);
  font-weight: 700;
  font-size: 14px;
}

.hero-floating-card {
  position: absolute;
  top: 100px;
  right: 40px;
  left: auto;
  z-index: 2;
  width: 240px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  opacity: 0;
  transform: translateX(20px);
  animation: slideInRight 800ms var(--ease-out) 600ms forwards;
}

@keyframes slideInRight {
  to { opacity: 1; transform: translateX(0); }
}

.floating-card-visual {
  height: 140px;
  background: linear-gradient(135deg, #0A0A0A 0%, #111 100%);
  position: relative;
  overflow: hidden;
}

.floating-card-mesh {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(90deg, transparent, transparent 8px, rgba(37, 99, 235, 0.06) 8px, rgba(37, 99, 235, 0.06) 9px),
    repeating-linear-gradient(0deg, transparent, transparent 8px, rgba(37, 99, 235, 0.06) 8px, rgba(37, 99, 235, 0.06) 9px);
  mask-image: radial-gradient(ellipse at 70% 50%, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at 70% 50%, black 30%, transparent 70%);
}

.floating-card-info {
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.floating-card-label {
  font-size: 11px;
  color: var(--muted);
  font-weight: 500;
  letter-spacing: 0.04em;
}

.hero-headline {
  font-size: clamp(48px, 8vw, 110px);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin-bottom: 48px;
  max-width: 1000px;
}

.hero-dash {
  color: var(--white);
}

.hero-cta-area {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  margin-bottom: 60px;
  max-width: 700px;
}

.hero-cta-heading {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
}

.hero-cta-sub {
  font-size: 12px;
  color: var(--muted-dark);
}

/* Pill Button */
.btn-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 28px;
  white-space: nowrap;
  transition: background var(--transition), transform var(--transition);
}

.btn-pill:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
}

.btn-pill:active {
  transform: translateY(0);
}

/* Arrow Button */
.arrow-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--accent);
  border-radius: 10px;
  flex-shrink: 0;
  transition: background var(--transition), transform var(--transition);
}

.arrow-btn:hover {
  background: var(--accent-hover);
  transform: scale(1.05);
}

.arrow-btn:active {
  transform: scale(0.98);
}

/* Hero Stats */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 20px;
}

.hero-stat {
  display: flex;
  align-items: baseline;
  gap: 4px;
  flex-wrap: wrap;
}

.hero-stat-num {
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 900;
  color: var(--accent);
  font-variant-numeric: tabular-nums;
}

.hero-stat-pct, .hero-stat-prefix {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 900;
  color: var(--accent);
}

.hero-stat-label {
  font-size: 11px;
  font-weight: 500;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  width: 100%;
  margin-top: -4px;
}

.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border-light);
}

/* ============================================
   SCROLL TEXT ANIMATION
   ============================================ */
.scroll-text-section {
  min-height: 200vh;
  position: relative;
}

.scroll-text-container {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.scroll-text {
  font-size: clamp(28px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  max-width: 900px;
  color: var(--white);
}

.scroll-text .char {
  color: #1A1A1A;
  transition: color 0s;
  display: inline;
  word-wrap: break-word;
}

.scroll-text .char.visible {
  color: var(--white);
}

/* ============================================
   SECTION SYSTEM
   ============================================ */
.section {
  position: relative;
  padding: 120px 40px 80px;
  overflow: hidden;
}

.section-header {
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}

.section-header-left {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.section-rule {
  width: 2px;
  height: 40px;
  background: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}

.section-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.section-num {
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.12em;
  font-variant-numeric: tabular-nums;
}

.section-brand {
  font-size: 12px;
  font-weight: 700;
  color: var(--muted-dark);
  letter-spacing: 0.04em;
}

.section-watermark {
  font-size: clamp(80px, 14vw, 180px);
  font-weight: 900;
  color: var(--watermark);
  position: absolute;
  top: 80px;
  left: 40px;
  line-height: 1;
  pointer-events: none;
  z-index: 0;
  white-space: nowrap;
}

.section-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 48px;
}

/* ============================================
   BENTO GRID
   ============================================ */
.bento-grid {
  display: grid;
  gap: 16px;
  margin-bottom: 16px;
}

.bento-2col {
  grid-template-columns: 65% 1fr;
}

.bento-3col {
  grid-template-columns: repeat(3, 1fr);
}

.bento-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 32px;
  position: relative;
  overflow: hidden;
}

.bento-card-large {
  display: flex;
  flex-direction: column;
}

.bento-card-accent {
  background: var(--accent);
  border-color: var(--accent);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
}

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

.card-label-light {
  font-size: 11px;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: auto;
}

.card-desc {
  font-size: 14px;
  color: var(--muted);
  margin-top: 16px;
  margin-bottom: 16px;
  line-height: 1.5;
}

.card-num {
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 12px;
}

/* Dot pattern for accent card */
.dot-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.2) 1px, transparent 1px);
  background-size: 16px 16px;
  opacity: 0.5;
  pointer-events: none;
}

.accent-card-title {
  font-size: 28px;
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 8px;
  position: relative;
}

.accent-card-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  position: relative;
}

.bento-card-small {
  display: flex;
  flex-direction: column;
}

.small-card-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}

.small-card-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
  flex: 1;
  margin-bottom: 16px;
}

/* ============================================
   DASHBOARD MOCKUP
   ============================================ */
.dashboard-mockup {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 8px;
  flex: 1;
}

.mockup-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
}

.mockup-title {
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
}

.mockup-dots {
  display: flex;
  gap: 5px;
}

.mockup-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border-light);
}

.mockup-dots span:first-child { background: #EF4444; }
.mockup-dots span:nth-child(2) { background: #EAB308; }
.mockup-dots span:last-child { background: #22C55E; }

.mockup-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 200px;
}

.mockup-sidebar {
  padding: 16px;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mockup-competitor {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--muted);
}

.mockup-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}

.mockup-dot.green { background: #22C55E; }
.mockup-dot.red { background: #EF4444; }
.mockup-dot.blue { background: var(--accent); }
.mockup-dot.yellow { background: #EAB308; }

.mockup-trend {
  margin-left: auto;
  font-weight: 600;
  font-size: 11px;
  font-variant-numeric: tabular-nums;
}

.mockup-trend.up { color: #22C55E; }
.mockup-trend.down { color: #EF4444; }
.mockup-trend.flat { color: var(--muted-dark); }

.mockup-chart {
  padding: 16px;
  display: flex;
  align-items: flex-end;
}

.mockup-bars {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 100%;
  width: 100%;
}

.mockup-bar {
  flex: 1;
  background: var(--border-light);
  border-radius: 2px 2px 0 0;
  min-height: 10px;
}

.mockup-bar.accent {
  background: var(--accent);
}

/* ============================================
   SERVICES ACCORDION
   ============================================ */
.services-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 16px;
  align-items: start;
}

.services-accordion {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.service-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  transition: background 300ms var(--ease-out), border-color 300ms var(--ease-out);
}

.service-item.active {
  background: var(--accent);
  border-color: var(--accent);
}

.service-header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  cursor: pointer;
  transition: padding 300ms var(--ease-out);
}

.service-number {
  font-size: 28px;
  font-weight: 900;
  color: var(--muted-dark);
  min-width: 48px;
  font-variant-numeric: tabular-nums;
  transition: color 300ms var(--ease-out);
}

.service-item.active .service-number {
  color: rgba(255,255,255,0.5);
}

.service-name {
  font-size: 18px;
  font-weight: 700;
  flex: 1;
}

.service-type {
  font-size: 11px;
  font-weight: 500;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: color 300ms var(--ease-out);
}

.service-item.active .service-type {
  color: rgba(255,255,255,0.7);
}

.service-arrow {
  transition: transform 300ms var(--ease-out);
  color: var(--muted-dark);
}

.service-item.active .service-arrow {
  transform: rotate(180deg);
  color: var(--white);
}

.service-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 400ms var(--ease-out), padding 400ms var(--ease-out);
  padding: 0 24px;
}

.service-item.active .service-body {
  max-height: 200px;
  padding: 0 24px 20px;
}

.service-body p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,0.85);
}

.services-sidebar {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 32px;
}

.services-counter {
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 16px;
  display: block;
}

.services-sidebar-title {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 12px;
}

.services-sidebar-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 24px;
}

.btn-text-arrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  transition: color var(--transition);
}

.btn-text-arrow:hover {
  color: var(--accent);
}

/* ============================================
   PROCESS
   ============================================ */
.process-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.process-mockup-body {
  display: flex;
  flex-direction: column;
  padding: 24px;
  gap: 24px;
}

.pipeline-stages {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 8px 0;
}

.pipeline-stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.pipeline-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--muted-dark);
}

.pipeline-stage.done .pipeline-icon {
  background: var(--accent);
  color: var(--white);
}

.pipeline-stage.active .pipeline-icon {
  background: var(--accent);
  color: var(--white);
}

.pipeline-icon.pulse {
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.4); }
  50% { box-shadow: 0 0 0 8px rgba(37, 99, 235, 0); }
}

.pipeline-stage span {
  font-size: 10px;
  font-weight: 500;
  color: var(--muted-dark);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.pipeline-stage.done span,
.pipeline-stage.active span {
  color: var(--white);
}

.pipeline-line {
  flex: 1;
  height: 2px;
  background: var(--border);
  min-width: 20px;
  align-self: flex-start;
  margin-top: 18px;
}

.pipeline-line.done {
  background: var(--accent);
}

.pipeline-line.active {
  background: linear-gradient(90deg, var(--accent), var(--border));
}

.pipeline-details {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pipeline-detail-row {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
}

.pipeline-detail-label {
  color: var(--muted);
}

.pipeline-detail-value {
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.process-step {
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
}

.process-step:last-of-type {
  border-bottom: none;
}

.process-step-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 12px;
}

.process-step-header h4 {
  font-size: 18px;
  font-weight: 700;
}

.process-time {
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  font-variant-numeric: tabular-nums;
}

.process-step p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

.process-cta {
  margin-top: 8px;
  align-self: flex-start;
}

/* ============================================
   INTELLIGENCE DASHBOARD (Section 004)
   ============================================ */
.analytics-text-reveal {
  margin-bottom: 48px;
  text-align: center;
}

.analytics-reveal-text {
  font-size: clamp(36px, 6vw, 80px);
  font-weight: 900;
  letter-spacing: -0.02em;
}

.analytics-reveal-text .char {
  color: #1A1A1A;
  transition: color 0s;
}

.analytics-reveal-text .char.visible {
  color: var(--white);
}

.dashboard-scroll-container {
  overflow-x: auto;
  margin: 0 -40px;
  padding: 0 40px 16px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.dashboard-scroll-container::-webkit-scrollbar {
  display: none;
}

.dashboard-panels {
  display: flex;
  gap: 16px;
  min-width: max-content;
}

.dashboard-panel {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 28px;
  min-width: 280px;
  max-width: 300px;
  display: flex;
  flex-direction: column;
}

.panel-label {
  font-size: 11px;
  font-weight: 500;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}

.panel-big-num {
  font-size: 48px;
  font-weight: 900;
  font-variant-numeric: tabular-nums;
  line-height: 1;
  margin-bottom: 16px;
}

.panel-pct {
  font-size: 28px;
}

.panel-unit {
  font-size: 20px;
  font-weight: 500;
  color: var(--muted);
}

.panel-chart {
  flex: 1;
  margin-bottom: 12px;
}

.bar-chart {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 80px;
}

.bar-col {
  flex: 1;
  height: 100%;
  display: flex;
  align-items: flex-end;
}

.bar {
  width: 100%;
  background: var(--border-light);
  border-radius: 2px 2px 0 0;
  transition: height 600ms var(--ease-out);
}

.bar.accent {
  background: var(--accent);
}

.line-chart {
  height: 80px;
}

.line-svg {
  width: 100%;
  height: 100%;
}

.line-legend {
  display: flex;
  gap: 16px;
  margin-top: 8px;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  color: var(--muted);
}

.legend-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.legend-dot.blue { background: var(--accent); }
.legend-dot.gray { background: #333; }

.panel-sub {
  font-size: 11px;
  color: var(--muted-dark);
}

.panel-always-on {
  font-size: 16px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 16px;
}

.panel-logos {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.logo-placeholder {
  font-size: 10px;
  font-weight: 600;
  color: var(--muted);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 4px 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ============================================
   TICKER / MARQUEE
   ============================================ */
.ticker-container {
  margin-top: 40px;
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
}

.ticker {
  overflow: hidden;
  position: relative;
}

.ticker-content {
  display: flex;
  gap: 24px;
  white-space: nowrap;
  animation: tickerScroll 30s linear infinite;
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
}

.ticker-dot {
  color: var(--accent);
}

@keyframes tickerScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================
   PRICING
   ============================================ */
.pricing-toggle {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 40px;
}

.toggle-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--muted-dark);
  transition: color var(--transition);
}

.toggle-label.active {
  color: var(--white);
}

.toggle-save {
  font-size: 10px;
  color: var(--accent);
  font-weight: 700;
}

.toggle-switch {
  width: 44px;
  height: 24px;
  background: var(--border-light);
  border-radius: 12px;
  position: relative;
  cursor: pointer;
  transition: background var(--transition);
}

.toggle-dot {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  background: var(--accent);
  border-radius: 50%;
  transition: transform 300ms var(--ease-out);
}

.toggle-switch.annual .toggle-dot {
  transform: translateX(20px);
}

.pricing-table {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.pricing-row {
  display: grid;
  grid-template-columns: 1fr 1fr 2fr auto;
  gap: 1px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  align-items: center;
  padding: 24px 32px;
  transition: border-color var(--transition);
}

.pricing-row.featured {
  border-color: var(--accent);
}

.pricing-row:hover {
  border-color: var(--border-light);
}

.pricing-row.featured:hover {
  border-color: var(--accent);
}

.pricing-name h3 {
  font-size: 24px;
  font-weight: 800;
}

.pricing-tier {
  font-size: 11px;
  font-weight: 500;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 2px;
}

.price-amount {
  font-size: 28px;
  font-weight: 900;
  font-variant-numeric: tabular-nums;
}

.price-period {
  font-size: 14px;
  color: var(--muted);
  font-weight: 500;
}

.pricing-features {
  display: flex;
  gap: 24px;
  font-size: 13px;
  color: var(--muted);
}

.pricing-cta {
  text-align: right;
}

.btn-select {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  padding: 10px 24px;
  border-radius: 8px;
  transition: background var(--transition), transform var(--transition);
}

.btn-select:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
}

/* ============================================
   FAQ
   ============================================ */
.faq-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 40px;
  align-items: start;
}

.faq-list {
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 24px 0;
  font-size: 18px;
  font-weight: 600;
  text-align: left;
  color: var(--white);
  gap: 16px;
  transition: color var(--transition);
}

.faq-question:hover {
  color: var(--accent);
}

.faq-icon {
  font-size: 20px;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform 300ms var(--ease-out);
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 400ms var(--ease-out), padding 400ms var(--ease-out);
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding-bottom: 24px;
}

.faq-answer p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

/* FAQ CTA Card */
.faq-cta-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
}

.faq-cta-title {
  font-size: 20px;
  font-weight: 700;
}

/* ============================================
   SPINNING BADGE
   ============================================ */
.spinning-badge {
  width: 120px;
  height: 120px;
  position: relative;
}

.badge-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 12px;
  height: 12px;
  background: var(--accent);
  border-radius: 50%;
}

.badge-svg {
  width: 100%;
  height: 100%;
  animation: spinBadge 20s linear infinite;
}

.badge-text {
  font-size: 11px;
  font-weight: 600;
  fill: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

@keyframes spinBadge {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* ============================================
   TEAM
   ============================================ */
.team-layout {
  max-width: 700px;
}

.team-bio {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 40px;
}

.team-name {
  font-size: 32px;
  font-weight: 900;
  margin-bottom: 4px;
}

.team-role {
  font-size: 13px;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 20px;
}

.team-text {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 24px;
}

.team-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.team-tag {
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 6px 14px;
  border-radius: 4px;
  letter-spacing: 0.02em;
}

.team-social {
  display: flex;
  gap: 12px;
}

.social-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--muted);
  transition: color var(--transition), border-color var(--transition);
}

.social-icon:hover {
  color: var(--accent);
  border-color: var(--accent);
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.testimonial-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 40px;
  position: relative;
}

.quote-mark {
  margin-bottom: 20px;
}

.testimonial-card blockquote p {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 24px;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.author-name {
  font-size: 14px;
  font-weight: 700;
}

.author-role {
  font-size: 12px;
  color: var(--muted);
}

/* ============================================
   CONTACT
   ============================================ */
.contact-section {
  padding: 120px 40px;
}

.contact-headline {
  font-size: clamp(48px, 8vw, 120px);
  font-weight: 900;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

.contact-sub {
  font-size: 16px;
  color: var(--muted);
  max-width: 600px;
  margin-bottom: 48px;
  line-height: 1.6;
}

.contact-form {
  max-width: 600px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.form-group input,
.form-group textarea {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 14px 16px;
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  outline: none;
  transition: border-color var(--transition);
  resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--muted-dark);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--accent);
}

.btn-submit {
  align-self: flex-start;
}

.contact-email {
  font-size: 13px;
  color: var(--muted-dark);
}

.contact-email a {
  color: var(--accent);
  transition: color var(--transition);
}

.contact-email a:hover {
  color: var(--accent-hover);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  border-top: 1px solid var(--border);
}

/* Footer Brand Panel */
.footer-brand {
  padding: 60px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--border);
  gap: 40px;
  position: relative;
  overflow: hidden;
}

.footer-brand-left {
  flex-shrink: 0;
}

.footer-badge {
  width: 100px;
  height: 100px;
}

.footer-brand-center {
  text-align: center;
}

.footer-wordmark {
  font-size: clamp(48px, 12vw, 160px);
  font-weight: 900;
  color: var(--accent);
  letter-spacing: -0.03em;
  white-space: nowrap;
  line-height: 1;
}

/* Footer Nav Panel */
.footer-nav {
  padding: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  border-bottom: 1px solid var(--border);
}

.footer-nav-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col-bar {
  width: 24px;
  height: 2px;
  background: var(--accent);
  margin-bottom: 8px;
}

.footer-nav-col a {
  font-size: 14px;
  color: var(--muted);
  transition: color var(--transition);
}

.footer-nav-col a:hover {
  color: var(--white);
}

.footer-newsletter {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 12px;
}

.newsletter-label {
  font-size: 14px;
  color: var(--muted);
}

.newsletter-form {
  display: flex;
  gap: 8px;
}

.newsletter-form input {
  flex: 1;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 10px 14px;
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  outline: none;
  transition: border-color var(--transition);
}

.newsletter-form input::placeholder {
  color: var(--muted-dark);
}

.newsletter-form input:focus {
  border-color: var(--accent);
}

/* Footer Legal Bar */
.footer-legal {
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: var(--muted-dark);
}

.footer-legal-right {
  display: flex;
  align-items: center;
  gap: 24px;
}

.footer-social-icons {
  display: flex;
  gap: 12px;
}

.footer-social-icons a {
  color: var(--muted-dark);
  transition: color var(--transition);
}

.footer-social-icons a:hover {
  color: var(--accent);
}

.back-to-top {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 8px 12px;
  border: 1px solid var(--border);
  border-radius: 4px;
  transition: color var(--transition), border-color var(--transition);
}

.back-to-top:hover {
  color: var(--accent);
  border-color: var(--accent);
}

/* ============================================
   SCROLL REVEAL ANIMATIONS
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 600ms var(--ease-out), transform 600ms var(--ease-out);
}

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

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .services-layout {
    grid-template-columns: 1fr;
  }

  .process-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .faq-layout {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .footer-nav {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav {
    padding: 16px 20px;
  }

  .hero {
    padding: 20px;
  }

  .hero-kicker {
    top: 80px;
    left: 20px;
  }

  .hero-floating-card {
    display: none;
  }

  .hero-kicker {
    position: static;
    margin-bottom: 24px;
    padding-top: 80px;
  }

  .hero-headline {
    margin-top: 0;
    margin-bottom: 40px;
  }

  .hero-cta-area {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 24px;
  }

  .section {
    padding: 80px 20px 60px;
  }

  .section-watermark {
    font-size: clamp(48px, 12vw, 100px);
    left: 20px;
  }

  .bento-2col {
    grid-template-columns: 1fr;
  }

  .bento-3col {
    grid-template-columns: 1fr;
  }

  .pricing-row {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 20px 24px;
  }

  .pricing-features {
    flex-direction: column;
    gap: 4px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-brand {
    flex-direction: column;
    padding: 40px 20px;
  }

  .footer-nav {
    grid-template-columns: 1fr;
    padding: 24px 20px;
  }

  .footer-legal {
    flex-direction: column;
    gap: 12px;
    text-align: center;
    padding: 16px 20px;
  }

  .footer-legal-right {
    flex-direction: column;
    gap: 12px;
  }

  .menu-overlay {
    padding: 80px 24px;
  }

  .menu-footer {
    left: 24px;
  }

  .contact-section {
    padding: 80px 20px;
  }

  .dashboard-scroll-container {
    margin: 0 -20px;
    padding: 0 20px 16px;
  }
}

@media (max-width: 480px) {
  .hero-headline {
    font-size: 36px;
  }

  .section-title {
    font-size: 28px;
  }

  .contact-headline {
    font-size: 48px;
  }
}

/* ============================================
   NEW ELEMENTS — Content Density Additions
   ============================================ */

/* Trusted By Strip */
.trusted-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 18px 40px;
  border-top: 1px solid #1C1C1C;
  border-bottom: 1px solid #1C1C1C;
  flex-wrap: wrap;
}

.trusted-label {
  font-size: 11px;
  font-weight: 500;
  color: var(--muted-dark);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  white-space: nowrap;
}

.trusted-logos {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

.trusted-logo {
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.04em;
  padding: 6px 14px;
  border: 1px solid #1C1C1C;
  border-radius: 3px;
  white-space: nowrap;
  transition: color var(--transition), border-color var(--transition);
}

.trusted-logo:hover {
  color: var(--white);
  border-color: #333;
}

/* How We're Different Section */
.different-section {
  padding: 40px 40px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.different-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}

.different-card {
  background: var(--card);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: background var(--transition);
}

.different-card:hover {
  background: var(--card-alt);
}

.different-num {
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.different-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.different-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}

/* Team Numbers Row */
.team-numbers-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.team-number-item {
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
}

.team-number-sep {
  color: var(--border-light);
  font-size: 14px;
}

.team-methodology {
  margin-top: 16px;
  color: var(--muted);
}

/* ============================================
   RESPONSIVE FIXES — Comprehensive Mobile
   ============================================ */

/* Fix scroll-text on mobile */
@media (max-width: 768px) {
  .scroll-text-section {
    overflow: hidden;
    min-height: 100vh;
  }

  .scroll-text-container {
    height: 100vh;
    padding: 20px;
  }

  .scroll-text {
    white-space: normal;
    font-size: 28px;
    text-align: center;
  }
}

/* Tablet hero — reduce empty space */
@media (max-width: 1024px) {
  .hero {
    min-height: 90vh;
  }

  .hero-floating-card {
    display: none;
  }
}

/* Medium screen hero CTA */
@media (max-width: 640px) {
  .hero-cta-area {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .form-row {
    flex-direction: column;
    gap: 16px;
  }
}

/* Bento grid mobile stacking — override existing */
@media (max-width: 768px) {
  .bento-2col {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 640px) {
  .bento-3col {
    grid-template-columns: 1fr !important;
  }
}

/* Services layout stack at 900px */
@media (max-width: 900px) {
  .services-layout {
    grid-template-columns: 1fr;
  }

  .process-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .faq-layout {
    grid-template-columns: 1fr;
  }
}

/* Dashboard panels mobile */
@media (max-width: 768px) {
  .dashboard-panel {
    min-width: 260px;
  }

  .dashboard-scroll-container {
    margin: 0 -20px;
    padding: 0 20px 16px;
  }
}

/* Pricing rows stack on mobile */
@media (max-width: 768px) {
  .pricing-row {
    flex-direction: column;
    gap: 16px;
  }

  .pricing-features {
    flex-direction: column;
    gap: 6px;
  }
}

/* Testimonials grid single column on mobile */
@media (max-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

/* Footer wordmark scale on mobile */
@media (max-width: 768px) {
  .footer-wordmark {
    font-size: clamp(48px, 12vw, 60px);
  }
}

/* General padding reduction on mobile */
@media (max-width: 768px) {
  .nav {
    padding: 16px 20px;
  }

  .section {
    padding: 60px 20px;
  }

  .section-content {
    padding: 0 0px;
  }

  .trusted-strip {
    padding: 16px 20px;
    gap: 16px;
  }

  .trusted-logos {
    gap: 10px;
  }

  .trusted-logo {
    font-size: 11px;
    padding: 5px 10px;
  }
}

/* Section watermark size on mobile */
@media (max-width: 768px) {
  .section-watermark {
    font-size: clamp(60px, 14vw, 80px);
  }
}

@media (max-width: 1024px) and (min-width: 769px) {
  .section-watermark {
    font-size: clamp(80px, 12vw, 100px);
  }
}

/* How We're Different — responsive */
@media (max-width: 900px) {
  .different-section {
    padding: 32px 20px;
  }

  .different-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .different-grid {
    grid-template-columns: 1fr 1fr;
  }

  .different-card {
    padding: 24px 18px;
  }

  .different-title {
    font-size: 14px;
  }
}

/* Team numbers row responsive */
@media (max-width: 640px) {
  .team-numbers-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .team-number-sep {
    display: none;
  }
}

/* Hero stats — wrap better on mobile */
@media (max-width: 640px) {
  .hero-stats {
    flex-wrap: wrap;
    gap: 16px;
  }

  .hero-stat-divider {
    display: none;
  }
}
