/* ───────────────────────────────────────────────────────
   Kayserlich Website — Design System CSS
   Tokens sourced from colors_and_type.css (Kayserlich Design System)
   Font: Figtree (closest web substitute for SF Pro Rounded)
─────────────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,400&display=swap');

/* ── Custom Properties ─────────────────────────────── */
:root {
  --bg:           #080F24;
  --bg-2:         #0A1530;
  --card:         #0D1F40;
  --card-hover:   #112348;
  --border:       #1A3866;
  --border-acc:   rgba(0,181,232,0.35);
  --text:         #FFFFFF;
  --text-2:       #6E91B8;
  --text-3:       rgba(110,145,184,0.55);
  --accent:       #00B5E8;
  --accent-dim:   rgba(0,181,232,0.12);
  --accent-glow:  rgba(0,181,232,0.18);
  --success:      #34C759;
  --warning:      #FFD60A;
  --danger:       #FF3B30;

  --font: "Figtree", system-ui, -apple-system, sans-serif;

  --r-sm:   8px;
  --r-md:   12px;
  --r-lg:   16px;
  --r-xl:   20px;
  --r-2xl:  28px;
  --r-pill: 9999px;

  --t-fast: 150ms ease;
  --t-std:  250ms ease;
  --t-slow: 400ms ease;

  --max-w:  1180px;
  --pad-x:  clamp(20px, 5vw, 80px);
  --nav-h:  68px;
}

/* ── Reset ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  overflow-x: hidden;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; color: inherit; }
ul { list-style: none; }
input, textarea, select { font: inherit; color: inherit; }

/* Custom scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: var(--r-pill); }
::-webkit-scrollbar-thumb:hover { background: var(--text-2); }

/* ── Typography ────────────────────────────────────── */
h1, h2, h3, h4 {
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); font-weight: 700; }
h4 { font-size: 1.05rem; font-weight: 700; }
p  { font-size: 1.0625rem; line-height: 1.7; color: var(--text-2); }
.label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--border-acc);
  background: var(--accent-dim);
  padding: 5px 12px;
  border-radius: var(--r-pill);
}
.eyebrow::before {
  content: '';
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

/* ── Layout Utilities ──────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}
.section {
  padding: clamp(44px, 6vw, 80px) var(--pad-x);
  max-width: var(--max-w);
  margin: 0 auto;
}
.section-full {
  padding: clamp(44px, 6vw, 80px) var(--pad-x);
}
.section__header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.section__header h2 { color: var(--text); }
.section__header p  { font-size: 1.125rem; }

.grid {
  display: grid;
  gap: 16px;
}
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.flex { display: flex; }
.flex--center { align-items: center; justify-content: center; }
.flex--gap { gap: 12px; }

/* ── Scroll Animations ─────────────────────────────── */
.animate-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.animate-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.animate-in--delay-1 { transition-delay: 80ms; }
.animate-in--delay-2 { transition-delay: 160ms; }
.animate-in--delay-3 { transition-delay: 240ms; }
.animate-in--delay-4 { transition-delay: 320ms; }

/* ── Navigation ────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  padding: 0 var(--pad-x);
  background: rgba(8,15,36,0.80);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(26,56,102,0.6);
  transition: background var(--t-std);
}
.nav--scrolled { background: rgba(8,15,36,0.96); }
.nav__inner {
  max-width: var(--max-w);
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  text-decoration: none;
}
.nav__logo img {
  width: 32px; height: 32px;
  border-radius: 8px;
}
.nav__logo-name {
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
}
.nav__link {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-2);
  padding: 6px 12px;
  border-radius: var(--r-md);
  transition: color var(--t-fast), background var(--t-fast);
  white-space: nowrap;
}
.nav__link:hover, .nav__link.active {
  color: var(--text);
  background: rgba(255,255,255,0.06);
}
.nav__right {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
}

/* Language Switcher */
.lang-switcher {
  position: relative;
}
.lang-switcher__btn {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-2);
  padding: 6px 10px;
  border-radius: var(--r-md);
  border: 1px solid var(--border);
  background: var(--card);
  transition: all var(--t-fast);
  cursor: pointer;
}
.lang-switcher__btn:hover {
  border-color: var(--border-acc);
  color: var(--text);
}
.lang-switcher__btn svg {
  width: 12px; height: 12px;
  opacity: 0.6;
  transition: transform var(--t-fast);
}
.lang-switcher.open .lang-switcher__btn svg { transform: rotate(180deg); }
.lang-switcher__dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 6px;
  min-width: 180px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.5);
  display: none;
  z-index: 200;
}
.lang-switcher.open .lang-switcher__dropdown { display: block; }
.lang-option {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 8px 12px;
  border-radius: var(--r-md);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-2);
  transition: all var(--t-fast);
  cursor: pointer;
}
.lang-option:hover { background: rgba(255,255,255,0.07); color: var(--text); }
.lang-option.selected { color: var(--accent); background: var(--accent-dim); }
.lang-flag { font-size: 1.1em; }

/* Mobile nav toggle */
.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 36px; height: 36px;
  border-radius: var(--r-md);
  background: var(--card);
  border: 1px solid var(--border);
}
.nav__toggle span {
  display: block;
  width: 16px; height: 2px;
  background: var(--text-2);
  border-radius: 2px;
  transition: all var(--t-std);
}
.nav__toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.open span:nth-child(2) { opacity: 0; }
.nav__toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav__mobile {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: rgba(8,15,36,0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 20px var(--pad-x);
  z-index: 99;
}
.nav__mobile.open { display: flex; flex-direction: column; gap: 4px; }
.nav__mobile .nav__link { font-size: 1.0625rem; padding: 12px 14px; }
.nav__mobile-bottom {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

/* ── Buttons ───────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 1rem;
  font-weight: 700;
  padding: 13px 28px;
  border-radius: var(--r-pill);
  transition: all var(--t-std);
  white-space: nowrap;
  letter-spacing: -0.01em;
}
.btn--primary {
  background: var(--accent);
  color: #000;
}
.btn--primary:hover {
  background: #1ac5f5;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(0,181,232,0.35);
}
.btn--secondary {
  background: var(--accent-dim);
  color: var(--accent);
  border: 1px solid var(--border-acc);
}
.btn--secondary:hover {
  background: rgba(0,181,232,0.20);
  transform: translateY(-1px);
}
.btn--ghost {
  color: var(--text-2);
  padding: 13px 20px;
}
.btn--ghost:hover { color: var(--text); }
.btn--sm { font-size: 0.875rem; padding: 9px 20px; }
.btn--disabled, .btn[disabled] {
  opacity: 0.45;
  cursor: not-allowed;
  pointer-events: none;
}

/* ── Cards ─────────────────────────────────────────── */
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 24px;
  transition: border-color var(--t-std), transform var(--t-std), box-shadow var(--t-std);
}
.card--hover:hover {
  border-color: var(--border-acc);
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.4);
}
.card--accent {
  border-color: var(--border-acc);
  background: linear-gradient(135deg, rgba(0,181,232,0.08) 0%, var(--card) 100%);
}
.card__icon {
  width: 40px; height: 40px;
  background: var(--accent-dim);
  border: 1px solid var(--border-acc);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 1.1rem;
  color: var(--accent);
}
.card__title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.card__body {
  font-size: 0.9375rem;
  color: var(--text-2);
  line-height: 1.65;
}

/* Metric card (mirrors app card design) */
.metric-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-height: 110px;
  position: relative;
  overflow: hidden;
}
.metric-card__icon {
  font-size: 0.8125rem;
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 6px;
}
.metric-card__icon svg { width: 13px; height: 13px; }
.metric-card__value {
  font-size: 1.875rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
  letter-spacing: -0.04em;
}
.metric-card__unit {
  font-size: 0.8125rem;
  color: var(--accent);
  font-weight: 500;
}
.metric-card__label {
  font-size: 0.6875rem;
  color: var(--text-3);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: auto;
}
.metric-card--live { border-color: var(--border-acc); }

/* ── Phone Mockup ──────────────────────────────────── */
.phone-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.phone-wrap::before {
  content: '';
  position: absolute;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(0,181,232,0.25) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  pointer-events: none;
  border-radius: 50%;
  filter: blur(40px);
}
.phone {
  position: relative;
  width: clamp(200px, 22vw, 270px);
  background: #06101e;
  border-radius: 46px;
  border: 2px solid rgba(255,255,255,0.15);
  box-shadow:
    0 0 0 6px rgba(255,255,255,0.04),
    0 40px 80px rgba(0,0,0,0.7),
    inset 0 1px 0 rgba(255,255,255,0.1);
  overflow: hidden;
  aspect-ratio: 9/19.5;
}
.phone::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  z-index: 10;
}
.phone__island {
  position: absolute;
  top: 10px;
  left: 50%; transform: translateX(-50%);
  width: 30%; max-width: 82px; height: 18px;
  background: #000;
  border-radius: 10px;
  z-index: 10;
}
.phone__screen {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top;
}
.phone__stack {
  display: flex;
  gap: -24px;
  justify-content: center;
}
.phone--rotated-left  { transform: rotate(-6deg) translateX(-15px); z-index: 1; }
.phone--rotated-right { transform: rotate(6deg) translateX(15px); z-index: 1; }
.phone--center { z-index: 2; }

/* Multiple phone layout */
.phones-showcase {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 16px;
  position: relative;
  padding: 40px 0 20px;
}
.phones-showcase::before {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 80%; height: 100px;
  background: radial-gradient(ellipse, rgba(0,181,232,0.15) 0%, transparent 70%);
  filter: blur(20px);
  pointer-events: none;
}
.phones-showcase .phone:nth-child(1) {
  transform: rotate(-8deg) translateY(20px) scale(0.88);
  opacity: 0.85;
  z-index: 1;
}
.phones-showcase .phone:nth-child(2) {
  transform: rotate(0deg) scale(1);
  z-index: 3;
}
.phones-showcase .phone:nth-child(3) {
  transform: rotate(8deg) translateY(20px) scale(0.88);
  opacity: 0.85;
  z-index: 1;
}

/* ── Hero Section ──────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: var(--nav-h);
  overflow: hidden;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 20%, rgba(0,181,232,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(0,30,80,0.6) 0%, transparent 60%);
  pointer-events: none;
}
.hero__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: clamp(40px,6vw,80px) var(--pad-x);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  position: relative;
  z-index: 1;
}
.hero__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}
.hero__title {
  color: var(--text);
}
.hero__title em {
  font-style: normal;
  color: var(--accent);
}
.hero__sub {
  font-size: 1.125rem;
  max-width: 480px;
}
.hero__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-2);
  background: var(--card);
  border: 1px solid var(--border);
  padding: 4px 10px;
  border-radius: var(--r-pill);
}
.hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

/* Grid dots background */
.hero__bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(110,145,184,0.12) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 0%, transparent 100%);
  pointer-events: none;
}

/* ── Feature Showcase ──────────────────────────────── */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(40px, 6vw, 80px);
  padding: clamp(60px,8vw,100px) 0;
  border-bottom: 1px solid var(--border);
}
.feature-row:last-child { border-bottom: none; }
.feature-row--reverse { direction: rtl; }
.feature-row--reverse > * { direction: ltr; }
.feature-row__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.feature-row__content .label { margin-bottom: -4px; }
.feature-row__content h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); }
.feature-row__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 4px;
}
.feature-row__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9375rem;
  color: var(--text-2);
}
.feature-row__item::before {
  content: '';
  flex-shrink: 0;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--accent-dim);
  border: 1px solid var(--border-acc);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='8' viewBox='0 0 10 8'%3E%3Cpath d='M1 4l2.5 2.5L9 1' stroke='%2300B5E8' stroke-width='1.8' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  margin-top: 1px;
}
.feature-row__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.feature-row__visual .phone-wrap { width: 100%; max-width: min(260px, 70vw); margin: 0 auto; }
.feature-row__visual .phone-wrap .phone { width: 100%; }

/* ── Metrics Grid ──────────────────────────────────── */
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 12px;
}

/* ── Why Section ───────────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.why-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color var(--t-std), transform var(--t-std);
}
.why-card:hover { border-color: var(--border-acc); transform: translateY(-4px); }
.why-card__number {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}
.why-card h3 { color: var(--text); font-size: 1.25rem; letter-spacing: -0.03em; }
.why-card p  { font-size: 0.9375rem; }

/* ── CTA Section ───────────────────────────────────── */
.cta-section {
  text-align: center;
  background: linear-gradient(135deg, rgba(0,181,232,0.07) 0%, rgba(13,31,64,0.5) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: clamp(60px,8vw,120px) var(--pad-x);
}
.cta-section .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.cta-section h2 { color: var(--text); }
.cta-section p { max-width: 520px; }
.cta-section .hero__actions { justify-content: center; }

/* ── Features Page ─────────────────────────────────── */
.features-hero {
  padding: calc(var(--nav-h) + 60px) var(--pad-x) 60px;
  text-align: center;
}
.features-hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.features-hero h1 { max-width: 700px; }
.features-hero p  { max-width: 560px; font-size: 1.125rem; }

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.feature-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color var(--t-std), transform var(--t-std);
}
.feature-card:hover {
  border-color: var(--border-acc);
  transform: translateY(-3px);
}
.feature-card.featured {
  border-color: var(--border-acc);
  background: linear-gradient(135deg, rgba(0,181,232,0.1) 0%, var(--card) 100%);
}
.feature-card__tag {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}
.feature-card h3 { color: var(--text); letter-spacing: -0.02em; }
.feature-card p  { font-size: 0.9375rem; }

/* ── Pricing Page ──────────────────────────────────── */
.pricing-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  max-width: 720px;
  margin: 0 auto;
}
.pricing-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-2xl);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  overflow: hidden;
}
.pricing-card--featured {
  border-color: var(--border-acc);
  background: linear-gradient(135deg, rgba(0,181,232,0.10) 0%, var(--card) 60%);
}
.pricing-card__badge {
  position: absolute;
  top: 20px; right: 20px;
  background: var(--accent);
  color: #000;
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--r-pill);
}
.pricing-card__name {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}
.pricing-card__price {
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.pricing-card__amount {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--text);
  letter-spacing: -0.06em;
  line-height: 1;
}
.pricing-card__period {
  font-size: 1rem;
  color: var(--text-2);
}
.pricing-card__desc {
  font-size: 0.9375rem;
  color: var(--text-2);
  line-height: 1.6;
}
.pricing-card__features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 4px;
  border-top: 1px solid var(--border);
}
.pricing-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9375rem;
  color: var(--text-2);
}
.pricing-feature--yes::before {
  content: '';
  flex-shrink: 0;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: rgba(52,199,89,0.15);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='8' viewBox='0 0 10 8'%3E%3Cpath d='M1 4l2.5 2.5L9 1' stroke='%2334C759' stroke-width='1.8' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  margin-top: 1px;
}
.req-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.req-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 20px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
}
.req-item__num {
  flex-shrink: 0;
  width: 28px; height: 28px;
  background: var(--accent-dim);
  border: 1px solid var(--border-acc);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--accent);
}
.req-item p {
  font-size: 0.9375rem;
  color: var(--text-2);
  line-height: 1.55;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.faq-item + .faq-item { margin-top: 6px; }
.faq-item__q {
  width: 100%;
  text-align: left;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text);
  background: var(--card);
  transition: background var(--t-fast);
}
.faq-item__q:hover { background: var(--card-hover); }
.faq-item__q svg {
  flex-shrink: 0;
  width: 16px; height: 16px;
  color: var(--accent);
  transition: transform var(--t-std);
}
.faq-item.open .faq-item__q svg { transform: rotate(45deg); }
.faq-item__a {
  display: none;
  padding: 0 20px 18px;
  background: var(--card);
  font-size: 0.9375rem;
  color: var(--text-2);
  line-height: 1.65;
}
.faq-item.open .faq-item__a { display: block; }

/* ── Competition Page ──────────────────────────────── */
.comp-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
}
.comp-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
}
.comp-table th, .comp-table td {
  padding: 14px 20px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  font-size: 0.9375rem;
}
.comp-table th {
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-2);
  background: var(--card);
  position: sticky;
  top: 0;
}
.comp-table th:first-child { border-radius: var(--r-xl) 0 0 0; }
.comp-table th:last-child  { border-radius: 0 var(--r-xl) 0 0; }
.comp-table th.col-kayserlich {
  color: var(--accent);
  background: rgba(0,181,232,0.07);
}
.comp-table td:first-child {
  font-weight: 600;
  color: var(--text);
}
.comp-table td.col-kayserlich {
  background: rgba(0,181,232,0.04);
}
.comp-table tr:last-child td { border-bottom: none; }
.comp-table tr:hover td { background: rgba(255,255,255,0.025); }
.comp-table tr:hover td.col-kayserlich { background: rgba(0,181,232,0.06); }
.comp-yes  { color: var(--success); font-weight: 700; }
.comp-no   { color: var(--text-3); }
.comp-partial { color: var(--warning); font-size: 0.875rem; }
.comp-best {
  background: rgba(0,181,232,0.1);
  border-radius: var(--r-sm);
  padding: 2px 8px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.05em;
  margin-left: 6px;
  vertical-align: middle;
}
.comp-note {
  font-size: 0.8125rem;
  color: var(--text-3);
  margin-top: 12px;
}

/* ── Contact Page ──────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 48px;
  align-items: start;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contact-info h2 { color: var(--text); font-size: clamp(1.8rem, 3vw, 2.4rem); }
.contact-info p  { font-size: 1rem; }
.contact-detail {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  font-size: 0.9375rem;
  color: var(--text-2);
}
.contact-detail__icon {
  width: 36px; height: 36px;
  background: var(--accent-dim);
  border: 1px solid var(--border-acc);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}

/* Form */
.form {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-2xl);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form__group { display: flex; flex-direction: column; gap: 8px; }
.form__label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-2);
}
.form__input, .form__textarea, .form__select {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 12px 14px;
  font-size: 0.9375rem;
  color: var(--text);
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
  width: 100%;
}
.form__input:focus, .form__textarea:focus, .form__select:focus {
  outline: none;
  border-color: var(--border-acc);
  box-shadow: 0 0 0 3px rgba(0,181,232,0.12);
}
.form__input::placeholder, .form__textarea::placeholder { color: var(--text-3); }
.form__textarea { resize: vertical; min-height: 140px; }
.form__captcha {
  background: rgba(0,181,232,0.05);
  border: 1px solid var(--border-acc);
  border-radius: var(--r-md);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.form__captcha-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
}
.form__captcha .form__input {
  max-width: 100px;
  text-align: center;
}
.form__captcha-hint {
  font-size: 0.8125rem;
  color: var(--text-3);
}
.honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
  overflow: hidden;
  pointer-events: none;
  tab-index: -1;
}
.form__submit { margin-top: 4px; }
.form__status {
  padding: 12px 16px;
  border-radius: var(--r-md);
  font-size: 0.9375rem;
  font-weight: 600;
  display: none;
}
.form__status--success {
  background: rgba(52,199,89,0.12);
  border: 1px solid rgba(52,199,89,0.3);
  color: var(--success);
}
.form__status--error {
  background: rgba(255,59,48,0.12);
  border: 1px solid rgba(255,59,48,0.3);
  color: var(--danger);
}
.form__status.visible { display: block; }

/* ── Footer ────────────────────────────────────────── */
.footer {
  border-top: 1px solid var(--border);
  padding: 48px var(--pad-x) 32px;
}
.footer__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer__brand { display: flex; flex-direction: column; gap: 14px; }
.footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer__logo img { width: 32px; height: 32px; border-radius: 8px; }
.footer__logo-name {
  font-size: 1.0625rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.footer__tagline { font-size: 0.875rem; color: var(--text-3); line-height: 1.5; }
.footer__col h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-2);
  margin-bottom: 14px;
}
.footer__links { display: flex; flex-direction: column; gap: 10px; }
.footer__link {
  font-size: 0.9rem;
  color: var(--text-3);
  transition: color var(--t-fast);
}
.footer__link:hover { color: var(--text); }
.footer__bottom {
  max-width: var(--max-w);
  margin: 32px auto 0;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer__copy { font-size: 0.8125rem; color: var(--text-3); }
.footer__made {
  font-size: 0.8125rem;
  color: var(--text-3);
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer__made a { color: var(--accent); }

/* LIVE dot animation */
.live-dot {
  display: inline-block;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 2px rgba(52,199,89,0.3);
  animation: pulse-dot 1.5s ease-in-out infinite alternate;
}
@keyframes pulse-dot {
  from { box-shadow: 0 0 0 2px rgba(52,199,89,0.3); }
  to   { box-shadow: 0 0 0 5px rgba(52,199,89,0.05); }
}

/* App Store badge placeholder */
.appstore-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 10px 18px;
  transition: all var(--t-std);
}
.appstore-btn:hover { border-color: var(--border-acc); transform: translateY(-2px); }
.appstore-btn__icon { font-size: 1.6rem; }
.appstore-btn__text { text-align: left; }
.appstore-btn__sub {
  display: block;
  font-size: 0.6875rem;
  color: var(--text-3);
  letter-spacing: 0.05em;
}
.appstore-btn__name {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
}

/* Version badge */
.version-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-3);
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-pill);
  padding: 4px 10px;
}

/* Page hero (non-home) */
.page-hero {
  padding: calc(var(--nav-h) + 56px) var(--pad-x) 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 400px;
  background: radial-gradient(ellipse, rgba(0,181,232,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  position: relative;
}
.page-hero h1 { max-width: 720px; }
.page-hero p  { font-size: 1.125rem; max-width: 560px; }

/* Dividers */
.divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0;
}

/* ── Responsive ────────────────────────────────────── */
@media (max-width: 900px) {
  .hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 32px;
  }
  .hero__content { align-items: center; }
  .hero__sub { max-width: 100%; }
  .hero__visual { margin-top: 0; }
  .hero__actions { justify-content: center; }

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

  .feature-row {
    grid-template-columns: 1fr;
    text-align: center;
    direction: ltr;
    gap: 28px;
  }
  .feature-row__visual { order: -1; }
  .feature-row__list { align-items: center; }
  .feature-row__item { text-align: left; }

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

  /* Tighten phones-showcase on tablet */
  .phones-showcase { gap: 10px; }
  .phones-showcase .phone:nth-child(1),
  .phones-showcase .phone:nth-child(3) {
    transform: rotate(0deg) translateY(0) scale(0.82);
  }
}

@media (max-width: 700px) {
  .nav__links { display: none; }
  .lang-switcher { display: none; }
  .nav__toggle { display: flex; }

  .why-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .form__row { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
  .metrics-grid { grid-template-columns: 1fr 1fr; }

  /* Show only center phone on mobile */
  .phones-showcase .phone:nth-child(1),
  .phones-showcase .phone:nth-child(3) { display: none; }
  /* Center phone takes full width, capped at legible size */
  .phones-showcase .phone:nth-child(2) {
    width: clamp(220px, 60vw, 280px);
  }

  .page-hero { padding-top: calc(var(--nav-h) + 36px); padding-bottom: 36px; }
  .page-hero h1 { font-size: clamp(1.75rem, 7vw, 3rem); }
  .page-hero p  { font-size: 1rem; }
}

@media (max-width: 480px) {
  :root { --pad-x: 16px; }
  .metrics-grid { grid-template-columns: 1fr 1fr; }
  .hero__actions { flex-direction: column; width: 100%; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .hero__title { font-size: clamp(1.8rem, 8vw, 3rem); }
  .hero__sub   { font-size: 1rem; }

  /* Single column on very small phones */
  .why-card { padding: 24px; }
  .comp-table-wrap { font-size: 0.8125rem; }
}

/* ═══════════════════════════════════════════════════════
   ILLUSTRATION-INSPIRED VISUAL ENHANCEMENTS
   Based on Kayserlich design illustrations (Apr 2026):
   wind particle flows, radar overlays, floating data
   cards, location status strip, section mood treatments.
═══════════════════════════════════════════════════════ */

/* ── Hero canvas (particle wind field) ──────────────── */
.hero-viz-wrap {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
/* Particle canvas — absolutely positioned, overlays the hero background.
   z-index 1: above the dark overlay (z-index 0), below the hero content (z-index 2). */
.hero-canvas {
  position: absolute;
  inset: 0;
  display: block;
  pointer-events: none;
  z-index: 1;
}

/* ── Floating data cards ─────────────────────────────── */
.hero-float-cards {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 4;
}
.hero-fc {
  position: absolute;
  background: rgba(8, 18, 45, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 12px 15px;
  min-width: 160px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  box-shadow: 0 8px 28px rgba(0,0,0,0.5);
  pointer-events: none;
  animation: fc-float 5s ease-in-out infinite;
}
/* Unique float offsets so cards don't move in sync */
.hero-fc--a { animation-delay: 0s;    top: 6%;  left: -10px; }
.hero-fc--b { animation-delay: 1.7s;  bottom: 14%; right: -10px; }
.hero-fc--c { animation-delay: 3.1s;  top: 48%; left: -20px; }

@keyframes fc-float {
  0%,100% { transform: translateY(0px);  }
  50%      { transform: translateY(-7px); }
}
.hero-fc__label {
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-3);
  display: flex;
  align-items: center;
  gap: 5px;
}
.hero-fc__label .live-dot { width: 5px; height: 5px; }
.hero-fc__value {
  font-size: 1.375rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.04em;
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 3px;
}
.hero-fc__value span {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0;
}
.hero-fc__sub {
  font-size: 0.6875rem;
  color: var(--text-3);
  line-height: 1.4;
  white-space: nowrap;
}
.hero-fc__row {
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.hero-fc__dir {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent);
  border: 1px solid var(--border-acc);
  background: var(--accent-dim);
  padding: 1px 6px;
  border-radius: var(--r-pill);
}
.hero-fc__divider {
  height: 1px;
  background: var(--border);
  margin: 4px 0;
}
/* Glow border accent on float cards */
.hero-fc--a { border-color: rgba(45, 212, 191, 0.35); }  /* teal tint */
.hero-fc--b { border-color: var(--border-acc); }
.hero-fc--c { border-color: rgba(110, 145, 184, 0.35); }

/* ── Location status strip ───────────────────────────── */
.hero-status-strip {
  width: 100%;
  margin-top: 16px;
  background: rgba(8,15,36,0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 10px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  position: relative;
  z-index: 5;
}
.hero-status-strip__loc {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--text);
  white-space: nowrap;
}
.hero-status-strip__loc svg { color: var(--accent); flex-shrink: 0; }
.hero-status-strip__items {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-status-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-2);
  white-space: nowrap;
}
.hero-status-item svg { color: var(--accent); opacity: 0.8; }
.hero-status-item strong { color: var(--text); }

/* ── Phones z-index in viz wrap ─────────────────────── */
.hero-viz-wrap .phones-showcase { position: relative; z-index: 2; }

/* ── Pulsing location dot ────────────────────────────── */
.hero-loc-dot {
  position: absolute;
  z-index: 3;
  bottom: 32%;
  left: 50%;
  transform: translate(-50%, 0);
  pointer-events: none;
}
.hero-loc-dot__ring {
  position: absolute;
  width: 48px; height: 48px;
  border: 1px solid rgba(0, 181, 232, 0.3);
  border-radius: 50%;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation: loc-ring 2.4s ease-out infinite;
}
.hero-loc-dot__ring:nth-child(2) { animation-delay: 0.8s; }
.hero-loc-dot__ring:nth-child(3) { animation-delay: 1.6s; width: 70px; height: 70px; }
@keyframes loc-ring {
  0%   { transform: translate(-50%,-50%) scale(0.5); opacity: 0.8; }
  100% { transform: translate(-50%,-50%) scale(2.2); opacity: 0;   }
}
.hero-loc-dot__core {
  position: relative;
  width: 10px; height: 10px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(0,181,232,0.2), 0 0 14px rgba(0,181,232,0.5);
  margin: 0 auto;
}

/* ── Section: Wind (canvas particle background) ──────── */
.section-wind-bg {
  position: relative;
  overflow: hidden;
}
.section-wind-bg canvas {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
}
.section-wind-bg > * { position: relative; z-index: 1; }

/* ── Section: Rain / Radar ───────────────────────────── */
.section-rain-bg {
  position: relative;
  overflow: hidden;
}
.section-rain-bg::before {
  content: '';
  position: absolute;
  top: -30%; right: -10%;
  width: 700px; height: 700px;
  background: radial-gradient(
    circle,
    rgba(255, 60, 30, 0.07) 0%,
    rgba(255, 120, 0,  0.04) 30%,
    transparent 65%
  );
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.section-rain-bg::after {
  content: '';
  position: absolute;
  bottom: -20%; left: -5%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(0,181,232,0.05) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.section-rain-bg canvas {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
}
.section-rain-bg > * { position: relative; z-index: 1; }

/* Rain section headline styling (like illustration 2) */
.rain-hero-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}
.rain-radar-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #ff4500;
  box-shadow: 0 0 8px rgba(255,69,0,0.7);
  animation: pulse-dot 1.2s ease-in-out infinite alternate;
}

/* ── Section: Satellite – cosmic background ──────────── */
.section-satellite-bg {
  position: relative;
  background: linear-gradient(
    160deg,
    rgba(4,10,28,1) 0%,
    rgba(8,15,36,1) 50%,
    rgba(5,12,30,1) 100%
  );
  overflow: hidden;
}
.section-satellite-bg::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-image:
    radial-gradient(1px 1px at 15% 20%, rgba(110,145,184,0.5) 0%, transparent 100%),
    radial-gradient(1px 1px at 35% 70%, rgba(110,145,184,0.4) 0%, transparent 100%),
    radial-gradient(1px 1px at 55% 15%, rgba(110,145,184,0.6) 0%, transparent 100%),
    radial-gradient(1px 1px at 75% 55%, rgba(110,145,184,0.4) 0%, transparent 100%),
    radial-gradient(1px 1px at 90% 85%, rgba(110,145,184,0.5) 0%, transparent 100%),
    radial-gradient(1px 1px at 25% 45%, rgba(0,181,232,0.3)   0%, transparent 100%),
    radial-gradient(1px 1px at 65% 80%, rgba(0,181,232,0.2)   0%, transparent 100%),
    radial-gradient(2px 2px at 82% 12%, rgba(255,255,255,0.15) 0%, transparent 100%),
    radial-gradient(2px 2px at 10% 88%, rgba(255,255,255,0.10) 0%, transparent 100%);
  pointer-events: none;
}
.section-satellite-bg::after {
  content: '';
  position: absolute;
  top: 10%; left: 5%;
  width: 500px; height: 300px;
  background: radial-gradient(ellipse, rgba(0,181,232,0.06) 0%, transparent 70%);
  pointer-events: none;
}

/* ── Illustration image panels ───────────────────────── */
.illust-panel {
  border-radius: var(--r-xl);
  overflow: hidden;
  position: relative;
  border: 1px solid var(--border);
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}
.illust-panel img {
  width: 100%;
  display: block;
}
.illust-panel::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 40%,
    rgba(8,15,36,0.7) 100%
  );
  pointer-events: none;
}
.illust-panel__caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 16px 20px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 8px;
}
.illust-panel__badge {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
  background: rgba(0,181,232,0.18);
  border: 1px solid rgba(0,181,232,0.3);
  padding: 3px 10px;
  border-radius: var(--r-pill);
}

/* ── Arc gauge decorative element ────────────────────── */
.arc-gauge {
  position: relative;
  width: 120px; height: 75px;
  flex-shrink: 0;
}
.arc-gauge svg { width: 100%; height: 100%; overflow: visible; }
.arc-gauge__track {
  fill: none;
  stroke: var(--border);
  stroke-width: 6;
  stroke-linecap: round;
}
.arc-gauge__fill {
  fill: none;
  stroke: #2dd4bf;
  stroke-width: 6;
  stroke-linecap: round;
  stroke-dasharray: 188;
  stroke-dashoffset: 56;  /* ~70% filled, representing 21°C */
  transition: stroke-dashoffset 1.5s ease, stroke 0.5s ease;
}
.arc-gauge__label {
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.05em;
  white-space: nowrap;
}

/* ── Feature row: enhanced visual accent ─────────────── */
.feature-row--rain {
  border-left: none;
  position: relative;
}
.feature-row--rain::before {
  content: '';
  position: absolute;
  top: -1px; bottom: -1px;
  left: 0; right: 0;
  background: radial-gradient(
    ellipse 60% 80% at 85% 50%,
    rgba(255, 80, 20, 0.05) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.feature-row--wind {
  position: relative;
}
.feature-row--wind::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 50% 80% at 20% 50%,
    rgba(0, 181, 232, 0.05) 0%,
    transparent 70%
  );
  pointer-events: none;
}

/* ── Data label strip (inline metric rows) ───────────── */
.data-strip {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(0,0,0,0.2);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  flex-wrap: nowrap;
}
.data-strip__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 12px 18px;
  flex: 1;
  border-right: 1px solid var(--border);
  min-width: 0;
}
.data-strip__item:last-child { border-right: none; }
.data-strip__label {
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-3);
}
.data-strip__value {
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.04em;
  line-height: 1;
}
.data-strip__unit {
  font-size: 0.625rem;
  color: var(--accent);
  font-weight: 600;
}

/* ── "Dashboard preview" full-bleed illustration ──────── */
.dashboard-preview {
  position: relative;
  border-radius: var(--r-2xl);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow:
    0 0 0 1px rgba(0,181,232,0.08),
    0 30px 80px rgba(0,0,0,0.7);
  width: 100%;
}
.dashboard-preview img {
  width: 100%;
  display: block;
  transition: transform 0.6s ease;
}
.dashboard-preview:hover img { transform: scale(1.015); }
.dashboard-preview__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(8,15,36,0.5) 0%,
    transparent 50%,
    rgba(8,15,36,0.3) 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  gap: 8px;
}
.dashboard-preview__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(0,181,232,0.15);
  border: 1px solid rgba(0,181,232,0.3);
  padding: 4px 12px;
  border-radius: var(--r-pill);
  width: fit-content;
}
.dashboard-preview__title {
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.03em;
  text-shadow: 0 2px 12px rgba(0,0,0,0.8);
}
.dashboard-preview__sub {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.7);
  max-width: 380px;
  line-height: 1.5;
  text-shadow: 0 1px 8px rgba(0,0,0,0.6);
}

/* ── "Showcase" grid: illustration panels with text ───── */
.showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
}
.showcase-grid .dashboard-preview:first-child {
  grid-column: 1 / -1;
}

/* ── Metric card: glow on hover ──────────────────────── */
.metric-card:hover {
  border-color: var(--border-acc);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.4), 0 0 0 1px rgba(0,181,232,0.12);
  transition: all 0.2s ease;
}

/* ── Animated count-up on metric cards ───────────────── */
.metric-card__value[data-count] {
  transition: opacity 0.3s ease;
}

/* ── Wind compass mini (decorative) ─────────────────── */
.mini-compass {
  position: relative;
  width: 52px; height: 52px;
  flex-shrink: 0;
}
.mini-compass svg { width: 52px; height: 52px; }

/* ── Responsive: hide float cards on very small screens ─ */
@media (max-width: 1100px) {
  .hero-fc--a, .hero-fc--c { display: none; }
  .hero-fc--b { bottom: -20px; left: 50%; transform: translateX(-50%); right: auto; }
}
@media (max-width: 900px) {
  .hero-fc { display: none; }
  .hero-status-strip__items { display: none; }
}
@media (max-width: 700px) {
  .hero-status-strip { display: none; }
  .data-strip { flex-wrap: wrap; }
  .data-strip__item { min-width: 50%; }
  .showcase-grid { grid-template-columns: 1fr; }
  .showcase-grid .dashboard-preview:first-child { grid-column: auto; }
}

/* ═══════════════════════════════════════════════════════
   PHOTO BACKGROUND UTILITIES
   Usage: add class="photo-bg" and style="background-image:url(...)"
   A dark overlay is applied automatically via ::before.
══════════════════════════════════════════════════════ */

/* General section photo background */
.photo-bg {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
}
.photo-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(4,10,28,0.75) 0%,
    rgba(4,10,28,0.72) 50%,
    rgba(8,15,36,0.66) 100%
  );
  pointer-events: none;
  z-index: 0;
}
.photo-bg > * { position: relative; z-index: 1; }
.photo-bg p,
.photo-bg .feature-row__item { color: rgba(255,255,255,0.88); }

/* Hero (index.html) photo background */
.hero--photo {
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}
/* Uses ::after so the existing ::before radial glow is preserved */
.hero--photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(4,10,28,0.75) 0%,
    rgba(4,10,28,0.70) 40%,
    rgba(8,15,36,0.58) 70%,
    rgba(8,15,36,0.44) 100%
  );
  pointer-events: none;
  z-index: 0;
}
/* Hero inner sits above overlay; canvas (z-index:3) floats above everything */
.hero--photo .hero__inner  { position: relative; z-index: 2; }

/* Page-hero (subpages) photo background */
.page-hero--photo {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
/* Use ::after; ::before is the existing radial glow */
.page-hero--photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(4,10,28,0.70);
  pointer-events: none;
  z-index: 0;
}
.page-hero--photo .container { position: relative; z-index: 1; }

/* Text shadow on headings inside photo sections for maximum readability */
.hero--photo h1,
.hero--photo .hero__sub,
.hero--photo .eyebrow,
.page-hero--photo h1,
.page-hero--photo p,
.photo-bg h2,
.photo-bg p,
.photo-bg .label {
  text-shadow: 0 1px 12px rgba(0,0,0,0.85), 0 1px 3px rgba(0,0,0,0.6);
}

/* ═══════════════════════════════════════════════════════
   LEGAL PAGES (Privacy Policy, Imprint)
══════════════════════════════════════════════════════ */

.legal-body {
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(40px, 6vw, 80px) 0;
}
.legal-intro {
  font-size: 1.125rem;
  color: var(--text-2);
  margin-bottom: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
}
.legal-body h2 {
  font-size: clamp(1.3rem, 2.5vw, 1.75rem);
  margin-top: 48px;
  margin-bottom: 12px;
  color: var(--text);
}
.legal-body h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin-top: 24px;
  margin-bottom: 8px;
}
.legal-body p {
  margin-bottom: 16px;
  line-height: 1.75;
}
.legal-list {
  margin: 12px 0 16px 0;
  padding-left: 20px;
  list-style: disc;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.legal-list li {
  color: var(--text-2);
  font-size: 1.0625rem;
  line-height: 1.65;
}
.legal-link {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.legal-link:hover { opacity: 0.8; }
.legal-ref {
  color: var(--text-2);
  font-style: italic;
}
.legal-body code {
  font-family: monospace;
  background: var(--card);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.9em;
}
