@import "tailwindcss";

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

:root {
  --navy: oklch(11% 0.04 260);
  --navy-mid: oklch(16% 0.05 255);
  --navy-card: oklch(18% 0.04 258);
  --navy-border: oklch(28% 0.05 258);
  --lime: oklch(88% 0.22 130);
  --lime-dim: oklch(80% 0.18 130);
  --white: oklch(97% 0.005 260);
  --muted: oklch(65% 0.03 255);
  --font-display: 'Syne', sans-serif;
  --font-body: 'Inter', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-body);
  overflow-x: hidden;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ── MESH BACKGROUND ── */
.mesh-bg {
  position: fixed; inset: 0; pointer-events: none; z-index: 0;
  overflow: hidden;
}
.orb {
  position: absolute; border-radius: 50%;
  filter: blur(120px); opacity: 0.18;
  animation: floatOrb 14s ease-in-out infinite alternate;
}
.orb-1 { width: 600px; height: 600px; background: oklch(55% 0.22 260); top: -100px; right: 5%; }
.orb-2 { width: 400px; height: 400px; background: oklch(60% 0.18 200); bottom: 20%; left: -5%; animation-delay: -5s; }
.orb-3 { width: 350px; height: 350px; background: oklch(85% 0.20 130); top: 30%; right: 30%; opacity: 0.10; animation-delay: -9s; }
@keyframes floatOrb { 0% { transform: translate(0,0) scale(1); } 100% { transform: translate(40px, 30px) scale(1.08); } }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%;
  height: 72px;
  backdrop-filter: blur(20px);
  background: oklch(11% 0.04 260 / 0.85);
  border-bottom: 1px solid oklch(100% 0 0 / 0.06);
  transition: background 0.3s, border-color 0.3s;
}
.nav-logo {
  font-family: var(--font-display);
  font-weight: 800; font-size: 1.1rem;
  display: flex; align-items: center; gap: 8px;
  letter-spacing: -0.02em;
}
.nav-logo span.accent { color: var(--lime); }
.nav-logo .cloud-badge {
  background: var(--lime); color: var(--navy);
  font-size: 0.55rem; font-weight: 700; letter-spacing: 0.08em;
  padding: 2px 6px; border-radius: 4px; text-transform: uppercase;
}
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a {
  color: oklch(80% 0.02 260); font-size: 0.875rem;
  text-decoration: none; transition: color 0.2s;
  font-weight: 400;
}
.nav-links a:hover { color: var(--white); }

/* ── MODE SWITCHER ── */
.mode-switcher {
  display: flex; align-items: center;
  background: oklch(22% 0.05 258);
  border-radius: 100px;
  padding: 4px;
  gap: 0;
}
.mode-btn {
  padding: 7px 18px; border-radius: 100px; border: none; cursor: pointer;
  font-family: var(--font-body); font-size: 0.8rem; font-weight: 500;
  transition: all 0.3s ease;
  background: transparent; color: var(--muted);
  white-space: nowrap;
}
.mode-btn.active {
  background: var(--lime); color: var(--navy);
  font-weight: 600;
}
.nav-actions { display: flex; align-items: center; gap: 10px; }
.btn-ghost {
  padding: 8px 20px; border-radius: 100px;
  border: 1px solid var(--navy-border);
  background: transparent; color: var(--white);
  font-family: var(--font-body); font-size: 0.8rem; cursor: pointer;
  transition: all 0.2s;
}
.btn-ghost:hover { border-color: oklch(50% 0.05 258); }
.btn-primary {
  padding: 8px 20px; border-radius: 100px;
  border: none; background: var(--lime); color: var(--navy);
  font-family: var(--font-body); font-size: 0.8rem; font-weight: 600;
  cursor: pointer; transition: all 0.2s;
}
.btn-primary:hover { background: var(--lime-dim); }

/* ── VIEWS ── */
.view { display: none; }
.view.active { display: block; animation: fadeView 0.5s ease; }
@keyframes fadeView { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }

/* ── HERO ── */
.hero {
  position: relative; z-index: 1;
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 120px 5% 80px;
  overflow: hidden;
}
.hero-content { max-width: 640px; position: relative; z-index: 2; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: oklch(22% 0.06 258); border: 1px solid oklch(35% 0.08 255);
  border-radius: 100px; padding: 6px 14px;
  font-size: 0.75rem; font-weight: 500; color: var(--lime);
  margin-bottom: 28px; letter-spacing: 0.04em; text-transform: uppercase;
}
.eyebrow-dot { width: 6px; height: 6px; background: var(--lime); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { opacity:1; } 50% { opacity: 0.3; } }
.hero h1 {
  font-family: var(--font-display); font-size: clamp(2.6rem, 5vw, 4.2rem);
  font-weight: 800; line-height: 1.08; letter-spacing: -0.03em;
  margin-bottom: 24px;
}
.hero h1 .hl { color: var(--lime); }
.hero-sub {
  font-size: 1.05rem; color: var(--muted); max-width: 520px;
  margin-bottom: 40px; line-height: 1.7; font-weight: 300;
}
.hero-actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.cta-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--lime); color: var(--navy);
  padding: 14px 28px; border-radius: 100px;
  font-family: var(--font-body); font-size: 0.95rem; font-weight: 700;
  border: none; cursor: pointer; transition: all 0.25s;
  text-decoration: none;
}
.cta-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 40px oklch(88% 0.22 130 / 0.3); }
.cta-arrow {
  width: 28px; height: 28px; background: var(--navy); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
}
.social-proof {
  display: flex; align-items: center; gap: 12px;
  font-size: 0.82rem; color: var(--muted);
}
.stars { color: var(--lime); font-size: 0.85rem; letter-spacing: 1px; }
.avatar-stack { display: flex; }
.avatar-stack span {
  width: 30px; height: 30px; border-radius: 50%;
  border: 2px solid var(--navy);
  background: oklch(40% 0.08 260);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.65rem; font-weight: 600; color: var(--white);
}
.avatar-stack span:not(:first-child) { margin-left: -8px; }

/* ── HERO VISUAL ── */
.hero-visual {
  position: absolute; right: 3%; top: 50%; transform: translateY(-50%);
  z-index: 2; width: 480px;
}
.phone-wrap { position: relative; display: flex; justify-content: center; overflow: visible; }
.phone-frame {
  width: 240px; height: 490px;
  background: oklch(14% 0.04 258);
  border-radius: 36px;
  border: 2px solid oklch(35% 0.06 258);
  overflow: hidden; position: relative;
  box-shadow: 0 40px 100px oklch(8% 0.05 260 / 0.8), 0 0 0 1px oklch(40% 0.05 258 / 0.3);
}
.phone-notch {
  width: 80px; height: 22px;
  background: oklch(10% 0.03 260);
  border-radius: 0 0 14px 14px;
  margin: 0 auto 16px;
}
.phone-step {
  position: absolute; inset: 0;
  padding: 16px 16px;
  opacity: 0; transition: opacity 0.5s ease;
  display: flex; flex-direction: column;
}
.phone-step.show { opacity: 1; }
.step-label {
  font-size: 0.58rem; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--lime); margin-bottom: 10px;
  margin-top: 40px;
}
.step-title {
  font-family: var(--font-display); font-weight: 700; font-size: 0.95rem;
  margin-bottom: 14px; line-height: 1.3;
}
.q-card {
  background: oklch(22% 0.05 258);
  border-radius: 12px; padding: 12px;
  margin-bottom: 8px; border: 1px solid oklch(30% 0.04 258);
  font-size: 0.72rem; color: var(--muted); line-height: 1.4;
}
.q-card .q { font-weight: 600; color: var(--white); margin-bottom: 6px; font-size: 0.7rem; }
.answer-btn {
  background: var(--lime); color: var(--navy); border: none;
  border-radius: 8px; padding: 8px 12px; font-size: 0.7rem; font-weight: 700;
  width: 100%; cursor: pointer; margin-top: 4px;
}
.answer-ghost {
  background: oklch(25% 0.05 258); color: var(--muted); border: none;
  border-radius: 8px; padding: 8px 12px; font-size: 0.7rem;
  width: 100%; cursor: pointer; margin-top: 4px;
}
.progress-bar {
  height: 3px; background: oklch(25% 0.04 258); border-radius: 2px;
  margin-bottom: 12px; overflow: hidden;
}
.progress-fill {
  height: 100%; background: var(--lime); border-radius: 2px;
  transition: width 0.5s ease;
}
.match-card {
  background: linear-gradient(135deg, oklch(20% 0.08 260), oklch(18% 0.05 250));
  border: 1px solid oklch(35% 0.10 260);
  border-radius: 14px; padding: 14px; margin-top: 8px;
}
.match-pct {
  font-family: var(--font-display); font-size: 2rem; font-weight: 800;
  color: var(--lime); line-height: 1;
}
.match-label { font-size: 0.65rem; color: var(--muted); margin-top: 2px; }
.match-row { display: flex; justify-content: space-between; align-items: flex-end; }
.cal-slot {
  background: oklch(22% 0.05 258); border-radius: 10px; padding: 10px;
  margin-top: 8px; display: flex; align-items: center; gap: 10px;
  border: 1px solid oklch(30% 0.04 258);
}
.cal-icon { font-size: 1.2rem; }
.cal-text { font-size: 0.68rem; }
.cal-text strong { display: block; color: var(--white); font-size: 0.72rem; }

/* Floating badges */
.float-badge {
  position: absolute; background: oklch(20% 0.06 258);
  border: 1px solid oklch(32% 0.07 258);
  border-radius: 12px; padding: 8px 14px;
  font-size: 0.72rem; font-weight: 500;
  backdrop-filter: blur(10px);
  animation: badgeFloat 4s ease-in-out infinite alternate;
  white-space: nowrap;
  z-index: 10;
}
.float-badge.left { left: -10px; }
.float-badge.right { right: -10px; }
.float-badge span.num { font-family: var(--font-display); font-weight: 800; color: var(--lime); margin-right: 4px; }
@keyframes badgeFloat { 0%{transform:translateY(0)} 100%{transform:translateY(-10px)} }

/* Dashboard mockup */
.dashboard-wrap {
  width: 100%;
  background: oklch(14% 0.04 258);
  border-radius: 20px; border: 1px solid oklch(28% 0.05 258);
  overflow: hidden;
  box-shadow: 0 40px 100px oklch(8% 0.05 260 / 0.8);
}
.db-header {
  background: oklch(12% 0.03 258); padding: 12px 18px;
  display: flex; align-items: center; gap: 8px;
  border-bottom: 1px solid oklch(22% 0.04 258);
}
.db-dot { width: 10px; height: 10px; border-radius: 50%; }
.db-title { font-size: 0.72rem; color: var(--muted); margin-left: 8px; font-weight: 500; }
.db-body { padding: 14px; }
.db-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; margin-bottom: 12px; }
.stat-card {
  background: oklch(19% 0.05 258); border-radius: 10px; padding: 10px;
  border: 1px solid oklch(26% 0.04 258);
}
.stat-n { font-family: var(--font-display); font-size: 1.3rem; font-weight: 800; color: var(--lime); }
.stat-l { font-size: 0.6rem; color: var(--muted); margin-top: 2px; }
.kanban { display: grid; grid-template-columns: repeat(3,1fr); gap: 6px; }
.kb-col { background: oklch(17% 0.04 258); border-radius: 10px; padding: 8px; }
.kb-head { font-size: 0.6rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted); margin-bottom: 6px; }
.kb-card {
  background: oklch(22% 0.05 258); border-radius: 8px; padding: 8px;
  margin-bottom: 5px; border: 1px solid oklch(28% 0.04 258);
  font-size: 0.62rem; cursor: grab;
  transition: transform 0.15s, box-shadow 0.15s;
}
.kb-card:hover { transform: translateY(-2px); box-shadow: 0 6px 20px oklch(5% 0.04 260 / 0.5); }
.kb-card .name { font-weight: 600; color: var(--white); margin-bottom: 2px; font-size: 0.65rem; }
.kb-card .role { color: var(--muted); }
.kb-card .tag {
  display: inline-block; background: oklch(88% 0.22 130 / 0.15); color: var(--lime);
  border-radius: 4px; padding: 1px 5px; font-size: 0.55rem; font-weight: 600;
  margin-top: 4px;
}
.kb-card.dragging { opacity: 0.5; transform: rotate(2deg); }

/* ── LOGOS ── */
.logos-band {
  position: relative; z-index: 1;
  padding: 32px 5%;
  border-top: 1px solid oklch(100% 0 0 / 0.06);
  border-bottom: 1px solid oklch(100% 0 0 / 0.06);
  display: flex; align-items: center; justify-content: center; gap: 60px;
  flex-wrap: wrap;
}
.logo-item {
  font-family: var(--font-display); font-weight: 800; font-size: 1rem;
  color: oklch(50% 0.03 258); letter-spacing: 0.05em; text-transform: uppercase;
  transition: color 0.2s;
}
.logo-item:hover { color: oklch(70% 0.03 258); }

/* ── FEATURES ── */
.features-section { position: relative; z-index: 1; padding: 100px 5%; }
.section-tag {
  display: inline-block; background: oklch(22% 0.06 258);
  border: 1px solid oklch(35% 0.08 255); border-radius: 100px;
  padding: 5px 14px; font-size: 0.72rem; font-weight: 600;
  color: var(--lime); letter-spacing: 0.06em; text-transform: uppercase;
  margin-bottom: 20px;
}
.section-title {
  font-family: var(--font-display); font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800; letter-spacing: -0.03em; line-height: 1.1;
  margin-bottom: 16px; max-width: 640px;
}
.section-sub {
  color: var(--muted); font-size: 1rem; max-width: 520px;
  margin-bottom: 60px; line-height: 1.7; font-weight: 300;
}
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feat-card {
  background: var(--navy-card); border: 1px solid var(--navy-border);
  border-radius: 20px; padding: 32px 28px;
  transition: all 0.3s ease;
  position: relative; overflow: hidden;
}
.feat-card:hover { border-color: oklch(40% 0.08 255); transform: translateY(-4px); }
.feat-icon {
  width: 44px; height: 44px;
  background: oklch(22% 0.08 260); border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; font-size: 1.2rem;
}
.feat-title {
  font-family: var(--font-display); font-weight: 700; font-size: 1.1rem;
  margin-bottom: 10px; letter-spacing: -0.01em;
}
.feat-desc { color: var(--muted); font-size: 0.875rem; line-height: 1.65; font-weight: 300; }

/* ── FLOW SECTION ── */
.flow-section {
  position: relative; z-index: 1; padding: 80px 5%;
  background: linear-gradient(180deg, transparent, oklch(14% 0.05 262) 30%, oklch(14% 0.05 262) 70%, transparent);
}
.flow-steps {
  display: flex; gap: 0; margin-top: 50px; position: relative;
}
.flow-steps::before {
  content: ''; position: absolute; top: 32px; left: 10%; right: 10%;
  height: 1px; background: linear-gradient(90deg, transparent, var(--navy-border) 20%, var(--navy-border) 80%, transparent);
}
.flow-step { flex: 1; text-align: center; padding: 0 20px; }
.flow-num {
  width: 64px; height: 64px; border-radius: 50%;
  background: oklch(20% 0.06 258); border: 1px solid var(--navy-border);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 1.3rem; font-weight: 800; color: var(--lime);
  margin: 0 auto 20px;
  position: relative; z-index: 1;
  transition: all 0.3s;
}
.flow-step:hover .flow-num { background: var(--lime); color: var(--navy); border-color: var(--lime); }
.flow-step-title { font-family: var(--font-display); font-weight: 700; font-size: 1rem; margin-bottom: 8px; }
.flow-step-desc { font-size: 0.82rem; color: var(--muted); line-height: 1.6; }

/* ── COMPARE TABLE ── */
.compare-section { position: relative; z-index: 1; padding: 100px 5%; }
.compare-table {
  width: 100%; max-width: 800px; margin: 50px auto 0;
  border-collapse: collapse;
  border-radius: 16px; overflow: hidden;
  border: 1px solid var(--navy-border);
}
.compare-table th {
  background: oklch(18% 0.05 258); padding: 16px 24px;
  font-family: var(--font-display); font-size: 0.9rem; font-weight: 700;
  text-align: left;
}
.compare-table th.col-aeco { color: var(--lime); }
.compare-table td {
  padding: 14px 24px; font-size: 0.875rem;
  border-top: 1px solid oklch(100% 0 0 / 0.06);
}
.compare-table tr:nth-child(even) td { background: oklch(15% 0.04 258 / 0.5); }
.compare-table td.col-classic { color: var(--muted); }
.compare-table td.col-aeco { color: var(--white); font-weight: 500; }
.check { color: var(--lime); font-weight: 700; }
.cross { color: oklch(60% 0.15 15); }

/* ── CTA SECTION ── */
.cta-section {
  position: relative; z-index: 1; padding: 120px 5%;
  text-align: center; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute;
  width: 600px; height: 600px; border-radius: 50%;
  background: var(--lime); opacity: 0.06; filter: blur(100px);
  top: 50%; left: 50%; transform: translate(-50%,-50%);
}
.cta-section h2 {
  font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800; letter-spacing: -0.03em; margin-bottom: 20px;
  line-height: 1.1;
}
.cta-section p { color: var(--muted); font-size: 1.05rem; margin-bottom: 40px; max-width: 500px; margin-left: auto; margin-right: auto; }

/* ── FOOTER ── */
footer {
  position: relative; z-index: 1;
  border-top: 1px solid oklch(100% 0 0 / 0.07);
  padding: 40px 5%;
  display: flex; align-items: center; justify-content: space-between;
}
.footer-logo { font-family: var(--font-display); font-weight: 800; font-size: 0.9rem; }
.footer-logo span { color: var(--lime); }
footer p { font-size: 0.78rem; color: var(--muted); }

/* ── FAQ ── */
.faq-section { position: relative; z-index: 1; padding: 100px 5%; }
.faq-list { max-width: 760px; margin: 50px auto 0; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--navy-card); border: 1px solid var(--navy-border);
  border-radius: 16px; overflow: hidden;
  transition: border-color 0.25s;
}
.faq-item.open { border-color: oklch(40% 0.10 258); }
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  padding: 22px 28px; cursor: pointer; gap: 20px;
  font-family: var(--font-display); font-weight: 600; font-size: 0.95rem;
  user-select: none;
}
.faq-q:hover { color: var(--lime); }
.faq-icon {
  width: 28px; height: 28px; border-radius: 50%;
  background: oklch(22% 0.06 258); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; transition: transform 0.3s, background 0.3s;
  color: var(--lime);
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--lime); color: var(--navy); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 28px; color: var(--muted); font-size: 0.9rem; line-height: 1.75; font-weight: 300;
}
.faq-item.open .faq-a { max-height: 300px; padding: 0 28px 22px; }

/* ── ABOUT ── */
.about-section {
  position: relative; z-index: 1; padding: 100px 5%;
  background: linear-gradient(180deg, transparent, oklch(14% 0.05 262) 20%, oklch(14% 0.05 262) 80%, transparent);
}
.about-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
  max-width: 1200px; margin: 0 auto;
}
.about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 40px; }
.about-stat {
  background: var(--navy-card); border: 1px solid var(--navy-border);
  border-radius: 16px; padding: 24px;
}
.about-stat-n {
  font-family: var(--font-display); font-size: 2.2rem; font-weight: 800;
  color: var(--lime); line-height: 1;
}
.about-stat-l { font-size: 0.8rem; color: var(--muted); margin-top: 6px; line-height: 1.4; }
.about-card {
  background: var(--navy-card); border: 1px solid var(--navy-border);
  border-radius: 20px; padding: 32px; position: relative; overflow: hidden;
}
.about-card::before {
  content: ''; position: absolute; top: -60px; right: -60px;
  width: 200px; height: 200px; border-radius: 50%;
  background: var(--lime); opacity: 0.06; filter: blur(40px);
}
.about-team { display: flex; flex-direction: column; gap: 14px; margin-top: 20px; }
.team-member {
  display: flex; align-items: center; gap: 14px;
  padding: 12px; background: oklch(20% 0.05 258); border-radius: 12px;
  border: 1px solid oklch(26% 0.04 258);
}
.team-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, oklch(40% 0.12 260), oklch(30% 0.08 220));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; font-size: 0.8rem;
  flex-shrink: 0; color: var(--white);
}
.team-info { flex: 1; }
.team-name { font-weight: 600; font-size: 0.85rem; }
.team-role { font-size: 0.75rem; color: var(--muted); }
.team-tag {
  background: oklch(88% 0.22 130 / 0.12); color: var(--lime);
  border-radius: 6px; padding: 2px 8px; font-size: 0.65rem; font-weight: 600;
}
.about-quote {
  margin-top: 20px; padding: 18px 20px;
  background: oklch(20% 0.05 258); border-left: 3px solid var(--lime);
  border-radius: 0 12px 12px 0;
  font-size: 0.875rem; color: var(--muted); line-height: 1.7; font-style: italic;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero-visual { display: none; }
  .features-grid { grid-template-columns: 1fr; }
  .flow-steps { flex-direction: column; gap: 30px; }
  .flow-steps::before { display: none; }
  .nav-links { display: none; }
  .logos-band { gap: 30px; }
  .kanban { grid-template-columns: repeat(2,1fr); }
  .about-inner { grid-template-columns: 1fr; gap: 40px; }
  .about-stats { grid-template-columns: repeat(2, 1fr); }
}

/* ── BETA BANNER ── */
.beta-banner {
  position: relative; z-index: 99;
  background: oklch(22% 0.06 258);
  border-bottom: 1px solid oklch(88% 0.22 130 / 0.2);
  padding: 10px 5%;
  display: flex; align-items: center; gap: 12px;
  font-size: 0.8rem; color: var(--muted);
  flex-wrap: wrap;
}
.beta-banner strong { color: var(--white); }
.beta-dot {
  width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0;
  background: var(--lime); animation: pulse 2s infinite;
}
.beta-link {
  margin-left: auto; color: var(--lime); text-decoration: none;
  font-weight: 600; font-size: 0.8rem; white-space: nowrap;
}
.beta-link:hover { text-decoration: underline; }

/* ── BRANCHEN SECTION ── */
.branchen-section {
  position: relative; z-index: 1;
  padding: 80px 5%;
  border-top: 1px solid oklch(100% 0 0 / 0.06);
  border-bottom: 1px solid oklch(100% 0 0 / 0.06);
}
.branchen-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.branchen-card {
  background: var(--navy-card); border: 1px solid var(--navy-border);
  border-radius: 20px; padding: 28px 24px;
  transition: all 0.3s ease;
}
.branchen-card:hover { border-color: oklch(40% 0.08 255); transform: translateY(-4px); }
.branchen-icon {
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.branchen-title {
  font-family: var(--font-display); font-weight: 700; font-size: 1rem;
  margin-bottom: 8px; letter-spacing: -0.01em;
}
.branchen-desc { color: var(--muted); font-size: 0.82rem; line-height: 1.6; font-weight: 300; }

/* ── ROI RECHNER ── */
.roi-section {
  position: relative; z-index: 1; padding: 100px 5%;
  background: linear-gradient(180deg, transparent, oklch(14% 0.05 262) 20%, oklch(14% 0.05 262) 80%, transparent);
}
.roi-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start;
  max-width: 1100px; margin: 0 auto;
}
.roi-sliders { display: flex; flex-direction: column; gap: 32px; }
.roi-slider-group { display: flex; flex-direction: column; gap: 10px; }
.roi-slider-label {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.875rem; color: var(--muted);
}
.roi-val {
  font-family: var(--font-display); font-weight: 700; font-size: 1rem;
  color: var(--lime);
}
.roi-range {
  -webkit-appearance: none; appearance: none;
  width: 100%; height: 4px;
  background: oklch(28% 0.05 258); border-radius: 2px; outline: none;
  cursor: pointer;
}
.roi-range::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--lime); cursor: pointer;
  border: 2px solid var(--navy);
  box-shadow: 0 0 0 3px oklch(88% 0.22 130 / 0.2);
}
.roi-range::-moz-range-thumb {
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--lime); cursor: pointer; border: 2px solid var(--navy);
}
.roi-range-ends {
  display: flex; justify-content: space-between;
  font-size: 0.72rem; color: oklch(45% 0.03 258);
}
.roi-results { display: flex; flex-direction: column; gap: 14px; }
.roi-card {
  background: var(--navy-card); border: 1px solid var(--navy-border);
  border-radius: 16px; padding: 22px 24px;
}
.roi-card-main {
  background: oklch(14% 0.06 260);
  border-color: oklch(88% 0.22 130 / 0.3);
}
.roi-card-label { font-size: 0.75rem; color: var(--muted); margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.05em; }
.roi-card-value {
  font-family: var(--font-display); font-size: 2rem; font-weight: 800;
  color: var(--white); line-height: 1;
}
.roi-card-main .roi-card-value { color: var(--lime); font-size: 2.4rem; }
.roi-card-sub { font-size: 0.75rem; color: var(--muted); margin-top: 4px; }
.roi-hinweis {
  font-size: 0.7rem; color: oklch(40% 0.03 258); line-height: 1.5;
  padding: 0 4px;
}

/* ── RESPONSIVE ADDITIONS ── */
@media (max-width: 900px) {
  .branchen-grid { grid-template-columns: repeat(2, 1fr); }
  .roi-inner { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 600px) {
  .branchen-grid { grid-template-columns: 1fr; }
  .beta-banner { font-size: 0.72rem; }
  .beta-link { margin-left: 0; }
}

/* ── HEADLINE SIZE -16px total ── */
.hero h1 { font-size: clamp(1.9rem, 3.8vw, 3.35rem) !important; }
.section-title { font-size: clamp(1.45rem, 2.7vw, 2.35rem) !important; }
.cta-section h2 { font-size: clamp(1.45rem, 3.1vw, 2.8rem) !important; }

/* ── FOOTER LINKS ── */
.footer-link {
  color: oklch(40% 0.03 258); text-decoration: none;
  transition: color 0.2s;
}
.footer-link:hover { color: var(--lime); }

/* ── COMPARE LAYOUT (table + visuals) ── */
.compare-layout {
  display: grid;
  grid-template-columns: 200px 1fr 200px;
  gap: 24px;
  align-items: center;
  max-width: 1100px;
  margin: 50px auto 0;
}
.compare-visual {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
}
.cv-label {
  font-family: var(--font-display); font-weight: 700; font-size: 0.85rem;
  text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--muted); margin-bottom: 8px;
}
.cv-card {
  width: 100%; border-radius: 12px; padding: 10px 12px;
  display: flex; flex-direction: column; align-items: center; gap: 3px;
  border: 1px solid;
  transition: transform 0.2s;
}
.cv-card:hover { transform: translateY(-2px); }
.cv-card-bad {
  background: oklch(18% 0.04 15 / 0.4);
  border-color: oklch(50% 0.12 15 / 0.3);
}
.cv-card-good {
  background: oklch(18% 0.06 130 / 0.25);
  border-color: oklch(88% 0.22 130 / 0.2);
}
.cv-icon { font-size: 1.2rem; }
.cv-step { font-size: 0.7rem; font-weight: 600; color: var(--white); text-align: center; }
.cv-time { font-size: 0.65rem; color: var(--muted); }
.cv-arrow {
  font-size: 1rem; color: var(--muted); line-height: 1;
}
.cv-result {
  margin-top: 6px; padding: 6px 12px; border-radius: 8px;
  font-size: 0.72rem; font-weight: 700; text-align: center;
  width: 100%;
}
.cv-result-bad {
  background: oklch(25% 0.08 15 / 0.4);
  color: oklch(65% 0.15 15);
}
.cv-result-good {
  background: oklch(20% 0.08 130 / 0.3);
  color: var(--lime);
}

/* ── MODALS ── */
.modal-overlay {
  position: fixed; inset: 0; z-index: 10000;
  background: oklch(5% 0.03 260 / 0.85);
  backdrop-filter: blur(12px);
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s ease;
}
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal-box {
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: 24px;
  width: 100%; max-width: 620px;
  max-height: 85vh;
  display: flex; flex-direction: column;
  transform: translateY(20px) scale(0.97);
  transition: transform 0.3s cubic-bezier(0.22,1,0.36,1);
  overflow: hidden;
}
.modal-overlay.open .modal-box { transform: translateY(0) scale(1); }
.modal-header {
  display: flex; justify-content: space-between; align-items: center;
  padding: 24px 28px 20px;
  border-bottom: 1px solid var(--navy-border);
  flex-shrink: 0;
}
.modal-title {
  font-family: var(--font-display); font-weight: 700; font-size: 1.15rem;
  letter-spacing: -0.02em;
}
.modal-close {
  width: 32px; height: 32px; border-radius: 50%;
  background: oklch(25% 0.05 258); border: none; cursor: pointer;
  color: var(--white); font-size: 0.9rem;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.modal-close:hover { background: var(--lime); color: var(--navy); }
.modal-body {
  padding: 24px 28px; overflow-y: auto; flex: 1;
  font-size: 0.875rem; color: var(--muted); line-height: 1.7;
}
.modal-body h4 {
  font-family: var(--font-display); font-weight: 700;
  color: var(--white); font-size: 0.9rem;
  margin: 20px 0 6px; letter-spacing: -0.01em;
}
.modal-body h4:first-child { margin-top: 0; }
.modal-body p { margin-bottom: 0; }
.modal-body a { color: var(--lime); text-decoration: none; }
.modal-body a:hover { text-decoration: underline; }

/* ── COOKIE BANNER ── */
#cookie-overlay {
  position: fixed; inset: 0; z-index: 9998;
  background: oklch(5% 0.03 260 / 0.6);
  backdrop-filter: blur(8px);
  display: flex; align-items: flex-end; justify-content: center;
  padding: 24px;
}
#cookie-banner {
  background: var(--navy-card);
  border: 1px solid oklch(88% 0.22 130 / 0.25);
  border-radius: 20px;
  padding: 28px 32px;
  max-width: 580px; width: 100%;
  box-shadow: 0 24px 80px oklch(5% 0.04 260 / 0.8);
}
.cookie-icon { font-size: 1.8rem; margin-bottom: 10px; }
.cookie-title {
  font-family: var(--font-display); font-weight: 700; font-size: 1.05rem;
  margin-bottom: 10px; letter-spacing: -0.02em;
}
.cookie-text {
  font-size: 0.82rem; color: var(--muted); line-height: 1.65; margin-bottom: 20px;
}
.cookie-text a { color: var(--lime); text-decoration: none; }
.cookie-text a:hover { text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; justify-content: flex-end; flex-wrap: wrap; }
.cookie-btn-secondary {
  padding: 9px 20px; border-radius: 100px;
  border: 1px solid var(--navy-border); background: transparent;
  color: var(--muted); font-family: var(--font-body); font-size: 0.82rem;
  cursor: pointer; transition: all 0.2s;
}
.cookie-btn-secondary:hover { border-color: oklch(50% 0.05 258); color: var(--white); }
.cookie-btn-primary {
  padding: 9px 24px; border-radius: 100px;
  border: none; background: var(--lime); color: var(--navy);
  font-family: var(--font-body); font-size: 0.82rem; font-weight: 700;
  cursor: pointer; transition: all 0.2s;
}
.cookie-btn-primary:hover { background: var(--lime-dim); }

/* ── RESPONSIVE compare ── */
@media (max-width: 900px) {
  .compare-layout { grid-template-columns: 1fr; }
  .compare-visual { flex-direction: row; flex-wrap: wrap; justify-content: center; }
  .cv-card { width: auto; min-width: 120px; }
  .cv-arrow { transform: rotate(-90deg); }
}

/* ── BRANCHEN IMAGE PLACEHOLDERS ── */
.branchen-img {
  width: 100%; aspect-ratio: 16/9;
  border-radius: 12px; overflow: hidden;
  margin-bottom: 16px;
  background: oklch(22% 0.05 258);
  border: 1px solid var(--navy-border);
  position: relative;
}
.branchen-img img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.branchen-img-placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 8px; color: var(--muted); font-size: 0.75rem;
  background: linear-gradient(135deg, oklch(20% 0.05 258), oklch(16% 0.04 258));
}
.branchen-img-placeholder .ph-icon { font-size: 2rem; opacity: 0.5; }
.branchen-img-placeholder .ph-label { font-size: 0.65rem; letter-spacing: 0.05em; text-transform: uppercase; opacity: 0.5; }

/* ── FEAT IMAGE PLACEHOLDERS (Unternehmen features) ── */
.feat-img {
  width: 100%; aspect-ratio: 16/9;
  border-radius: 10px; overflow: hidden;
  margin-bottom: 18px;
  background: oklch(22% 0.05 258);
  border: 1px solid var(--navy-border);
}
.feat-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.feat-img-placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 6px; color: var(--muted);
  background: linear-gradient(135deg, oklch(20% 0.06 260), oklch(15% 0.04 255));
}
.feat-img-placeholder .ph-icon { font-size: 1.6rem; opacity: 0.4; }
.feat-img-placeholder .ph-label { font-size: 0.6rem; letter-spacing: 0.06em; text-transform: uppercase; opacity: 0.4; }

/* ── ÜBER UNS (Unternehmen) ── */
.about-section {
  position: relative; z-index: 1; padding: 100px 5%;
  background: linear-gradient(180deg, transparent, oklch(14% 0.05 262) 20%, oklch(14% 0.05 262) 80%, transparent);
}
.about-inner-u {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: center;
  max-width: 1100px; margin: 0 auto;
  perspective: 1000px;
}
.about-img-wrap {
  position: relative;
}
.about-img-placeholder {
  width: 100%; aspect-ratio: 4/3;
  border-radius: 20px; overflow: hidden;
  background: linear-gradient(135deg, oklch(20% 0.06 260), oklch(15% 0.04 255));
  border: 1px solid var(--navy-border);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 10px; color: var(--muted);
}
.about-img-placeholder .ph-icon { font-size: 3rem; opacity: 0.35; }
.about-img-placeholder .ph-label { font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; opacity: 0.4; }
.about-text { display: flex; flex-direction: column; }
.about-stats-u {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 14px; margin-top: 0;
}
.about-stat-u {
  background: var(--navy-card); border: 1px solid var(--navy-border);
  border-radius: 14px; padding: 18px 16px;
}
.about-stat-n {
  font-family: var(--font-display); font-size: 1.5rem; font-weight: 800;
  color: var(--lime); line-height: 1;
}
.about-stat-l { font-size: 0.72rem; color: var(--muted); margin-top: 5px; line-height: 1.4; }

@media (max-width: 900px) {
  .about-inner-u { grid-template-columns: 1fr; gap: 40px; }
  .about-stats-u { grid-template-columns: repeat(2, 1fr); }
}