/* ============================================
   RingShot — Core Design System
   Colors derived from logo: Cyan / Dark Gray
   ============================================ */

@import url('fonts.css');

/* ---------- CSS Custom Properties ---------- */
:root {
  /* Brand palette */
  --cyan-50: #e0fffe;
  --cyan-100: #b3fffc;
  --cyan-200: #80fff9;
  --cyan-300: #4df5f0;
  --cyan-400: #00e5ff;
  --cyan-500: #00bcd4;
  --cyan-600: #0097a7;
  --cyan-700: #00838f;
  --cyan-800: #006064;
  --cyan-900: #004d50;

  /* Neutrals (dark mode) */
  --dark-950: #0a0c10;
  --dark-900: #0f1117;
  --dark-800: #14171f;
  --dark-700: #1a1e28;
  --dark-600: #222733;
  --dark-500: #2e3440;
  --dark-400: #434c5e;
  --dark-300: #6b7280;
  --dark-200: #9ca3af;
  --dark-100: #d1d5db;
  --dark-50: #f3f4f6;

  /* Semantic */
  --bg-primary: var(--dark-950);
  --bg-secondary: var(--dark-900);
  --bg-card: var(--dark-800);
  --bg-elevated: var(--dark-700);
  --text-primary: var(--dark-50);
  --text-secondary: var(--dark-200);
  --text-muted: var(--dark-300);
  --accent: var(--cyan-400);
  --accent-dim: var(--cyan-600);
  --accent-glow: rgba(0, 229, 255, 0.15);
  --accent-glow-strong: rgba(0, 229, 255, 0.3);

  /* Gradient shortcuts */
  --gradient-brand: linear-gradient(135deg, var(--cyan-400), var(--cyan-600));
  --gradient-hero: linear-gradient(180deg, transparent 0%, var(--dark-950) 100%);
  --gradient-card: linear-gradient(160deg, rgba(0, 229, 255, 0.06) 0%, transparent 50%);

  /* Layout */
  --max-width: 1280px;
  --nav-height: 72px;
  --section-padding: 100px 0;
  --border-radius: 16px;
  --border-radius-sm: 8px;
  --border-radius-lg: 24px;

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: 0.2s var(--ease-out);
  --transition-normal: 0.4s var(--ease-out);
  --transition-slow: 0.6s var(--ease-out);
}

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

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-primary);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: 'Outfit', 'Inter', sans-serif;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

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

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

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

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

/* .section-label::before {
  content: '';
  width: 32px;
  height: 2px;
  background: var(--accent);
  border-radius: 1px;
} */

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 640px;
  line-height: 1.7;
}

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

.gradient-text {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.brand-ring {
  color: var(--accent);
}

.brand-shot {
  color: #ffffff !important;
}

/* ---------- Navigation ---------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  z-index: 1000;
  transition: background var(--transition-normal), box-shadow var(--transition-normal);
}

.nav.scrolled {
  background: rgba(10, 12, 16, 0.92);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.04);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav__logo img {
  height: 40px;
  width: auto;
}

.nav__logo-text {
  font-family: 'Outfit', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.nav__logo-text span {
  color: var(--accent);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav__links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color var(--transition-fast);
  position: relative;
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  border-radius: 1px;
  transition: width var(--transition-normal);
}

.nav__links a:hover {
  color: var(--text-primary);
}

.nav__links a:hover::after {
  width: 100%;
}

.nav__cta {
  padding: 10px 24px;
  background: var(--gradient-brand);
  border: none;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--dark-950) !important;
  cursor: pointer;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.nav__cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(0, 229, 255, 0.25);
}

.nav__cta::after {
  display: none !important;
}

/* Mobile menu toggle */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav__toggle span {
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: transform var(--transition-fast), opacity var(--transition-fast);
}

/* ---------- Hero Section ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
}

.hero__video-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 12, 16, 0.4) 0%, rgba(10, 12, 16, 0.1) 30%, rgba(10, 12, 16, 0.6) 70%, var(--dark-950) 100%),
    linear-gradient(90deg, rgba(10, 12, 16, 0.7) 0%, transparent 50%);
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  padding-top: var(--nav-height);
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(0, 229, 255, 0.08);
  border: 1px solid rgba(0, 229, 255, 0.15);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--accent);
  margin-bottom: 28px;
  animation: fadeInUp 0.8s var(--ease-out);
}

.hero__badge svg {
  width: 14px;
  height: 14px;
}

.hero__title {
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1.08;
  margin-bottom: 24px;
  max-width: 720px;
  animation: fadeInUp 0.8s var(--ease-out) 0.1s both;
}

.hero__desc {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 520px;
  margin-bottom: 40px;
  line-height: 1.75;
  animation: fadeInUp 0.8s var(--ease-out) 0.2s both;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s var(--ease-out) 0.3s both;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
  text-decoration: none;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--primary {
  background: var(--gradient-brand);
  color: var(--dark-950);
  box-shadow: 0 4px 16px rgba(0, 229, 255, 0.2);
}

.btn--primary:hover {
  box-shadow: 0 8px 32px rgba(0, 229, 255, 0.35);
}

.btn--outline {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--dark-400);
}

.btn--outline:hover {
  border-color: var(--accent);
  box-shadow: 0 4px 16px rgba(0, 229, 255, 0.1);
}

.btn svg {
  width: 18px;
  height: 18px;
}

.hero__stats {
  display: flex;
  gap: 48px;
  margin-top: 64px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  animation: fadeInUp 0.8s var(--ease-out) 0.4s both;
}

.hero__stat-value {
  font-family: 'Outfit', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
}

.hero__stat-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ---------- Feature Highlights (Grid) ---------- */
.features-grid {
  padding: var(--section-padding);
}

.features-grid__header {
  text-align: center;
  margin-bottom: 64px;
}

.features-grid__header .section-subtitle {
  margin: 0 auto;
}

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

.feature-card {
  position: relative;
  padding: 36px 32px;
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: var(--border-radius);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal), border-color var(--transition-normal);
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-brand);
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 229, 255, 0.12);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 40px var(--accent-glow);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-card__icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 229, 255, 0.08);
  border-radius: 14px;
  margin-bottom: 24px;
  color: var(--accent);
}

.feature-card__icon svg {
  width: 24px;
  height: 24px;
}

.feature-card__title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.feature-card__desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ---------- Showcase Section (split layout) ---------- */
.showcase {
  padding: var(--section-padding);
}

.showcase__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 120px;
}

.showcase__row:last-child {
  margin-bottom: 0;
}

.showcase__row--reverse {
  direction: rtl;
}

.showcase__row--reverse>* {
  direction: ltr;
}

.showcase__media {
  position: relative;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--bg-card);
}

.showcase__media video,
.showcase__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.showcase__media::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--border-radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.06);
  pointer-events: none;
}

.showcase__media-glow {
  position: absolute;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(0, 229, 255, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  top: -60px;
  right: -60px;
  pointer-events: none;
}

.showcase__text .section-label {
  margin-bottom: 12px;
}

.showcase__text .section-title {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 20px;
}

.showcase__text p {
  color: var(--text-secondary);
  margin-bottom: 32px;
  line-height: 1.8;
}

.showcase__checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.showcase__checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.showcase__checklist li svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--accent);
  margin-top: 2px;
}

/* ---------- Comparison Table ---------- */
.comparison {
  padding: var(--section-padding);
}

.comparison__header {
  text-align: center;
  margin-bottom: 64px;
}

.comparison__header .section-subtitle {
  margin: 0 auto;
}

.comparison__table-wrapper {
  overflow-x: auto;
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--border-radius-lg);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  text-align: center;
  min-width: 760px;
}

.comparison-table thead th {
  font-family: 'Outfit', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-secondary);
  padding: 28px 24px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.015);
}

/* RingShot column highlight */
.ct-highlight-col {
  background: rgba(0, 229, 255, 0.04) !important;
  position: relative;
}

.comparison-table thead .ct-highlight-col {
  color: var(--accent) !important;
  font-size: 1.15rem !important;
}

.ct-header-brand {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 18px;
  background: rgba(0, 229, 255, 0.1);
  border: 1px solid rgba(0, 229, 255, 0.2);
  border-radius: 50px;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--accent);
}

/* Feature column */
.ct-feature-col {
  text-align: left !important;
}

.comparison-table tbody td {
  padding: 22px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  vertical-align: middle;
}

.comparison-table tbody tr:last-child td {
  border-bottom: none;
}

.comparison-table tbody tr {
  transition: background var(--transition-fast);
}

.comparison-table tbody tr:hover td {
  background: rgba(255, 255, 255, 0.015);
}

.comparison-table tbody tr:hover .ct-highlight-col {
  background: rgba(0, 229, 255, 0.06) !important;
}

/* Feature name cell */
.ct-feature {
  text-align: left !important;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
}

.ct-feature__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  border-radius: 10px;
  background: rgba(0, 229, 255, 0.07);
  color: var(--accent);
  vertical-align: middle;
  margin-right: 14px;
}

.ct-feature__icon svg {
  width: 18px;
  height: 18px;
}

/* ---- Status Icons ---- */
.ct-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  margin-bottom: 6px;
}

.ct-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Green checkmark */
.ct-icon--check {
  background: rgba(34, 197, 94, 0.12);
  color: #22c55e;
  box-shadow: 0 0 12px rgba(34, 197, 94, 0.15);
}

/* Red cross */
.ct-icon--cross {
  background: rgba(239, 68, 68, 0.12);
  color: #ef4444;
  box-shadow: 0 0 12px rgba(239, 68, 68, 0.1);
}

/* Orange partial circle */
.ct-icon--partial {
  background: rgba(251, 146, 60, 0.12);
  color: #fb923c;
  box-shadow: 0 0 12px rgba(251, 146, 60, 0.12);
}

.ct-icon--partial svg {
  fill: #fb923c;
  stroke: none;
}

/* Small size for legend */
.ct-icon--sm {
  width: 24px;
  height: 24px;
  margin-bottom: 0;
}

.ct-icon--sm svg {
  width: 12px;
  height: 12px;
}

/* Context label under icon */
.ct-label {
  display: block;
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.3;
  letter-spacing: 0.01em;
}

/* RingShot column labels are brighter */
.ct-highlight-col .ct-label {
  color: var(--text-secondary);
}

/* ---- Legend ---- */
.comparison__legend {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-top: 28px;
}

.ct-legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ---------- Specs / Resolution Section ---------- */
.specs {
  padding: var(--section-padding);
  background: var(--bg-secondary);
  position: relative;
  overflow: hidden;
}

.specs::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 229, 255, 0.05) 0%, transparent 65%);
  pointer-events: none;
}

.specs__header {
  text-align: center;
  margin-bottom: 64px;
}

.specs__header .section-subtitle {
  margin: 0 auto;
}

.specs__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.spec-card {
  position: relative;
  padding: 40px 32px;
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--border-radius);
  text-align: center;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  overflow: hidden;
}

.spec-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}

.spec-card--featured {
  border-color: rgba(0, 229, 255, 0.2);
  background: linear-gradient(160deg, rgba(0, 229, 255, 0.06) 0%, var(--bg-card) 50%);
}

.spec-card__badge {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 4px 12px;
  background: var(--gradient-brand);
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--dark-950);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.spec-card__media {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--border-radius-sm);
  overflow: hidden;
  margin-bottom: 24px;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.spec-card__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-muted);
  font-family: 'Outfit', sans-serif;
  line-height: 1.4;
  background: repeating-linear-gradient(45deg, rgba(255,255,255,0.02), rgba(255,255,255,0.02) 10px, transparent 10px, transparent 20px);
}

.spec-card__resolution {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.spec-card__fps {
  font-family: 'Outfit', sans-serif;
  font-size: 3rem;
  font-weight: 900;
  color: var(--accent);
  margin-bottom: 4px;
}

.spec-card__fps-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.spec-card__divider {
  width: 48px;
  height: 2px;
  background: rgba(255, 255, 255, 0.08);
  margin: 24px auto;
  border-radius: 1px;
}

.spec-card__desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ---------- Automation / Process Flow ---------- */
.automation {
  padding: var(--section-padding);
  background: var(--bg-secondary);
  position: relative;
  overflow: hidden;
}

.automation::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(0, 229, 255, 0.03) 0%, transparent 60%);
  pointer-events: none;
}

.automation__header {
  text-align: center;
  margin-bottom: 72px;
}

.automation__header .section-subtitle {
  margin: 0 auto;
}

/* ---- Process Flow (horizontal timeline) ---- */
.process-flow {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  position: relative;
  padding: 0 16px;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1 1 0;
  max-width: 240px;
  position: relative;
  transition-delay: var(--step-delay, 0s);
}

/* ---- Icon circle with pulse ---- */
.process-step__icon-wrap {
  position: relative;
  margin-bottom: 28px;
}

.process-step__icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(0, 229, 255, 0.12) 0%, rgba(0, 229, 255, 0.04) 100%);
  border: 2px solid rgba(0, 229, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  position: relative;
  z-index: 2;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal), border-color var(--transition-normal);
}

.process-step__icon svg {
  width: 32px;
  height: 32px;
}

.process-step:hover .process-step__icon {
  transform: scale(1.08);
  border-color: var(--accent);
  box-shadow: 0 0 32px rgba(0, 229, 255, 0.25), 0 0 64px rgba(0, 229, 255, 0.08);
}

/* Pulse ring animation */
.process-step__pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 1.5px solid var(--accent);
  transform: translate(-50%, -50%);
  opacity: 0;
  z-index: 1;
  animation: pulseRing 3s var(--ease-out) infinite;
  animation-delay: var(--step-delay, 0s);
}

@keyframes pulseRing {
  0% {
    width: 80px;
    height: 80px;
    opacity: 0.5;
  }

  100% {
    width: 130px;
    height: 130px;
    opacity: 0;
  }
}

/* Step number badge */
.process-step__number {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gradient-brand);
  color: var(--dark-950);
  font-family: 'Outfit', sans-serif;
  font-size: 0.7rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* ---- Text ---- */
.process-step__title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.process-step__desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 220px;
}

/* ============================================
   PROCESS ARROWS — standalone flex children
   ============================================ */
.process-arrow {
  display: flex;
  align-items: center;
  /* align with center of icon: icon is 80px, icon-wrap has 28px margin-bottom */
  margin-top: 40px;
  transform: translateY(-50%);
  flex: 0 1 80px;
  min-width: 40px;
  position: relative;
  transition-delay: var(--step-delay, 0s);
}

/* Dashed line */
.process-arrow__line {
  flex: 1;
  height: 2px;
  background-image: repeating-linear-gradient(90deg,
      var(--accent) 0px,
      var(--accent) 8px,
      transparent 8px,
      transparent 14px);
  opacity: 0.5;
  position: relative;
  overflow: visible;
}

/* Animated traveling dot */
.process-arrow__dot {
  position: absolute;
  top: 50%;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent), 0 0 4px var(--accent);
  transform: translateY(-50%);
  animation: arrowTravelDot 2.8s ease-in-out infinite;
}

@keyframes arrowTravelDot {
  0% {
    left: -4px;
    opacity: 0;
  }

  8% {
    opacity: 1;
  }

  85% {
    opacity: 1;
  }

  100% {
    left: calc(100% - 4px);
    opacity: 0;
  }
}

/* Chevron arrowhead */
.process-arrow__head {
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 10px solid var(--accent);
  flex-shrink: 0;
  opacity: 0.7;
  filter: drop-shadow(0 0 4px rgba(0, 229, 255, 0.4));
}

/* ---- Return loop indicator ---- */
.process-return {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 40px;
  gap: 12px;
}

.process-return__track {
  width: 80%;
  max-width: 900px;
  height: 40px;
  position: relative;
  overflow: visible;
}

.process-return__svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.process-return__dot {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent);
  animation: returnDotCSS 3.5s linear infinite;
  margin-left: -4px;
  margin-top: -4px;
  z-index: 2;
}

.process-return__dot--trail {
  width: 14px;
  height: 14px;
  margin-left: -7px;
  margin-top: -7px;
  background: rgba(0, 229, 255, 0.25);
  box-shadow: none;
  animation: returnDotCSS 3.5s linear infinite, returnDotTrail 3.5s linear infinite;
  z-index: 1;
}

@keyframes returnDotCSS {
  0% { left: 98.00%; top: 4.54%; opacity: 0; }
  2% { opacity: 1; }
  3.7% { left: 98.00%; top: 22.72%; opacity: 1; }
  7.6% { left: 97.07%; top: 52.57%; opacity: 1; }
  11.5% { left: 94.25%; top: 73.86%; opacity: 1; }
  15.4% { left: 89.57%; top: 86.66%; opacity: 1; }
  19.4% { left: 83.00%; top: 90.91%; opacity: 1; }
  80.5% { left: 17.00%; top: 90.91%; opacity: 1; }
  84.4% { left: 10.43%; top: 86.66%; opacity: 1; }
  88.3% { left: 5.75%; top: 73.86%; opacity: 1; }
  92.2% { left: 2.93%; top: 52.57%; opacity: 1; }
  96.2% { left: 2.00%; top: 22.72%; opacity: 1; }
  98% { opacity: 1; }
  100% { left: 2.00%; top: 4.54%; opacity: 0; }
}

@keyframes returnDotTrail {
  0% { opacity: 0; }
  2% { opacity: 0.5; }
  98% { opacity: 0.5; }
  100% { opacity: 0; }
}


.process-return__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  opacity: 0.7;
}

.process-return__label svg {
  animation: spinSlow 6s linear infinite;
}

/* ---- Cycle badge at bottom ---- */
.process-cycle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}

.process-cycle__line {
  flex: 1;
  max-width: 160px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 229, 255, 0.2), transparent);
}

.process-cycle__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 24px;
  background: rgba(0, 229, 255, 0.06);
  border: 1px solid rgba(0, 229, 255, 0.12);
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--accent);
  white-space: nowrap;
}

.process-cycle__badge svg {
  flex-shrink: 0;
  animation: spinSlow 6s linear infinite;
}

@keyframes spinSlow {
  to {
    transform: rotate(360deg);
  }
}

/* ---- Responsive: vertical stack ---- */
@media (max-width: 900px) {
  .process-flow {
    flex-direction: column;
    align-items: center;
    gap: 0;
    padding: 0;
  }

  .process-step {
    max-width: 100%;
    width: 100%;
    flex-direction: row;
    text-align: left;
    gap: 20px;
    padding: 20px;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: var(--border-radius);
  }

  .process-step__icon-wrap {
    margin-bottom: 0;
    flex-shrink: 0;
  }

  .process-step__icon {
    width: 60px;
    height: 60px;
  }

  .process-step__icon svg {
    width: 26px;
    height: 26px;
  }

  .process-step__pulse {
    display: none;
  }

  .process-step__desc {
    max-width: 100%;
  }

  /* Arrows become vertical */
  .process-arrow {
    flex-direction: column;
    margin-top: 0;
    transform: none;
    min-width: unset;
    width: 2px;
    height: 28px;
    flex: 0 0 28px;
  }

  .process-arrow__line {
    width: 2px;
    height: 100%;
    flex: 1;
    background-image: repeating-linear-gradient(180deg,
        var(--accent) 0px,
        var(--accent) 6px,
        transparent 6px,
        transparent 10px);
  }

  .process-arrow__dot {
    display: none;
  }

  .process-arrow__head {
    border-top: 10px solid var(--accent);
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-bottom: none;
  }

  .process-return__track {
    width: 60%;
    height: 30px;
  }

  .process-cycle {
    margin-top: 24px;
  }

  .process-cycle__badge {
    white-space: normal;
    text-align: center;
    font-size: 0.78rem;
  }
}

/* ---------- CTA Section ---------- */
.cta {
  padding: var(--section-padding);
}

.cta__box {
  position: relative;
  padding: 80px 60px;
  background: linear-gradient(135deg, var(--dark-700) 0%, var(--dark-800) 100%);
  border: 1px solid rgba(0, 229, 255, 0.1);
  border-radius: var(--border-radius-lg);
  text-align: center;
  overflow: hidden;
}

.cta__box::before {
  content: '';
  position: absolute;
  top: -160px;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 229, 255, 0.08) 0%, transparent 55%);
  pointer-events: none;
}

.cta__title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 20px;
  position: relative;
}

.cta__desc {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto 36px;
  position: relative;
}

.cta__actions {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.cta__phone {
  margin-top: 24px;
  font-size: 0.95rem;
  color: var(--text-secondary);
  position: relative;
}

.cta__phone a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 600;
  transition: opacity var(--transition-fast);
}

.cta__phone a:hover {
  opacity: 0.8;
}

/* ---------- Legal Pages (Impressum, Datenschutz) ---------- */
.legal-page {
  padding: 160px 0 80px;
  min-height: 80vh;
}

.legal-page__header {
  margin-bottom: 48px;
}

.legal-page__content {
  max-width: 820px;
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--border-radius-lg);
  padding: 48px 56px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.legal-page__content h2 {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 40px 0 16px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.legal-page__content h2:first-of-type {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.legal-page__content h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 28px 0 12px;
}

.legal-page__content p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.legal-page__content a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: opacity var(--transition-fast);
}

.legal-page__content a:hover {
  opacity: 0.8;
}

.legal-page__content ul {
  list-style: none;
  padding: 0;
  margin: 16px 0;
}

.legal-page__content > ul > li {
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  font-size: 0.93rem;
  line-height: 1.75;
  color: var(--text-secondary);
}

.legal-page__content > ul > li:last-child {
  border-bottom: none;
}

.legal-page__content > ul > li strong {
  display: block;
  color: var(--text-primary);
  margin-bottom: 6px;
}

/* Nested lists (sub-points within rights section) */
.legal-page__content ul ul {
  list-style: disc;
  padding-left: 24px;
  margin: 12px 0;
}

.legal-page__content ul ul li {
  padding: 4px 0;
  border-bottom: none;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.legal-page__credit {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.82rem !important;
  color: var(--text-muted) !important;
}

@media (max-width: 768px) {
  .legal-page {
    padding: 120px 0 60px;
  }

  .legal-page__content {
    padding: 28px 24px;
  }
}

/* ---------- Video Modal ---------- */
.video-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0.3s, opacity 0.3s;
}

.video-modal.active {
  visibility: visible;
  opacity: 1;
}

.video-modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
}

.video-modal__content {
  position: relative;
  width: 90%;
  max-width: 1200px;
  z-index: 1;
  aspect-ratio: 16 / 9;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.8);
  transform: scale(0.95);
  transition: transform 0.3s;
}

.video-modal.active .video-modal__content {
  transform: scale(1);
}

.video-modal__content video {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: var(--border-radius-sm);
  background: #000;
}

.video-modal__close {
  position: absolute;
  top: -45px;
  right: -10px;
  background: none;
  border: none;
  color: #fff;
  font-size: 40px;
  line-height: 1;
  cursor: pointer;
  transition: color var(--transition-fast), transform var(--transition-fast);
}

.video-modal__close:hover {
  color: var(--accent);
  transform: scale(1.1);
}

/* ---------- Contact Modal ---------- */
.contact-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0.3s, opacity 0.3s;
}

.contact-modal.active {
  visibility: visible;
  opacity: 1;
}

.contact-modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
}

.contact-modal__content {
  position: relative;
  background: var(--bg-card);
  width: 90%;
  max-width: 500px;
  border-radius: var(--border-radius-lg);
  padding: 40px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transform: translateY(20px);
  transition: transform 0.3s;
  z-index: 1;
}

.contact-modal.active .contact-modal__content {
  transform: translateY(0);
}

.contact-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  transition: color var(--transition-fast);
}

.contact-modal__close:hover {
  color: var(--text-primary);
}

.contact-modal__title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.contact-modal__desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.contact-form .form-group {
  margin-bottom: 20px;
}

.contact-form label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius-sm);
  color: var(--text-primary);
  font-family: inherit;
  font-size: 1rem;
  transition: border-color var(--transition-fast), background var(--transition-fast);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--accent);
}

.contact-form .checkbox-group {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.contact-form .checkbox-group input[type="checkbox"] {
  width: auto;
  margin: 0;
  cursor: pointer;
  accent-color: var(--accent);
}

.contact-form .checkbox-group label {
  margin: 0;
  text-transform: none;
  font-weight: 400;
  font-size: 0.9rem;
}

.contact-form .checkbox-group a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.contact-form .checkbox-group a:hover {
  opacity: 0.8;
}

.contact-form .btn--full {
  width: 100%;
}

.form-status {
  margin-top: 16px;
  font-size: 0.9rem;
  text-align: center;
}

.form-status.success {
  color: #4caf50;
}

.form-status.error {
  color: #f44336;
}

.form-status.info {
  color: var(--accent);
}

/* ---------- Footer ---------- */
.footer {
  padding: 64px 0 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer__brand p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: 16px;
  max-width: 320px;
  line-height: 1.7;
}

.footer__col-title {
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.footer__col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__col ul a {
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: color var(--transition-fast);
}

.footer__col ul a:hover {
  color: var(--accent);
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  font-size: 0.82rem;
  color: var(--text-muted);
}

.footer__legal-links {
  display: flex;
  gap: 24px;
}

.footer__legal-links a {
  color: var(--text-muted);
  transition: color var(--transition-fast);
}

.footer__legal-links a:hover {
  color: var(--accent);
}

/* ---------- Cookie Consent Banner ---------- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bg-card);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 20px 24px;
  z-index: 9999;
  display: none;
  backdrop-filter: blur(20px);
}

.cookie-banner.active {
  display: block;
  animation: slideUp 0.5s var(--ease-out);
}

.cookie-banner__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-banner__text {
  font-size: 0.88rem;
  color: var(--text-secondary);
  flex: 1;
  min-width: 280px;
}

.cookie-banner__text a {
  color: var(--accent);
  text-decoration: underline;
}

.cookie-banner__actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.cookie-banner__btn {
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: transform var(--transition-fast);
}

.cookie-banner__btn:hover {
  transform: translateY(-1px);
}

.cookie-banner__btn--accept {
  background: var(--gradient-brand);
  color: var(--dark-950);
}

.cookie-banner__btn--decline {
  background: var(--dark-600);
  color: var(--text-secondary);
}

/* ---------- Animations ---------- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

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

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .features-grid__items {
    grid-template-columns: repeat(2, 1fr);
  }

  .showcase__row {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .showcase__row--reverse {
    direction: ltr;
  }

  .specs__cards {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 768px) {
  :root {
    --section-padding: 64px 0;
    --nav-height: 64px;
  }

  .nav__links {
    display: none;
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 12, 16, 0.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 32px;
  }

  .nav__links.open {
    display: flex;
  }

  .nav__toggle {
    display: flex;
  }

  .features-grid__items {
    grid-template-columns: 1fr;
  }

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

  .hero__stats {
    gap: 32px;
    flex-wrap: wrap;
  }

  .cta__box {
    padding: 48px 24px;
  }

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

  .footer__bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero__title {
    font-size: 2.2rem;
  }

  .hero__actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ---------- Logo Animation Section ---------- */
.logo-anim-section {
  padding: 40px 0;
  display: flex;
  justify-content: center;
}

.logo-anim-section video {
  max-width: 340px;
  border-radius: var(--border-radius);
}

/* ---------- Scroll to top ---------- */
.scroll-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity var(--transition-normal), transform var(--transition-normal), visibility var(--transition-normal);
  z-index: 999;
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top:hover {
  background: var(--accent);
  color: var(--dark-950);
}

.scroll-top svg {
  width: 20px;
  height: 20px;
}