:root {
  --bg: #f7f9fc;
  --bg-alt: #f0f4f8;
  --ink: #0b1a2e;
  --muted: #5a6f8c;
  --brand: #00d4aa;
  --brand-ink: #1d4ed8;
  --brand-2: #0a8cff;
  --brand-2-ink: #0066cc;
  --accent: #ff6b35;
  --line: #d1dce8;
  --surface: rgba(255, 255, 255, 0.8);
  --surface-2: #ffffff;
  --shadow: 0 20px 60px rgba(10, 22, 40, 0.08);
  --glow: 0 0 30px rgba(0, 212, 170, 0.25);
  --glow-blue: 0 0 30px rgba(10, 140, 255, 0.25);
  --green: #10b981;
  --green-ink: #1d4ed8;
}

body[data-theme="dark"] {
  --bg: #0a1628;
  --bg-alt: #0d1f3c;
  --ink: #e8f0ff;
  --muted: #8ba5c7;
  --brand: #00e6b8;
  --brand-ink: #00e6b8;
  --brand-2: #3daaff;
  --brand-2-ink: #3daaff;
  --green-ink: #34d399;
  --accent: #ff8555;
  --line: #1e3a5f;
  --surface: rgba(13, 31, 60, 0.8);
  --surface-2: #0d1f3c;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  --glow: 0 0 40px rgba(0, 230, 184, 0.35);
  --glow-blue: 0 0 40px rgba(61, 170, 255, 0.35);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.2;
  pointer-events: none;
  z-index: 0;
}

h1, h2, h3, h4, .brand, .nav-links a, .btn, .scroll-progress {
  font-family: "Sora", sans-serif;
  letter-spacing: -0.03em;
}
.container {
  width: min(1200px, 92vw);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* ===== Scroll Progress ===== */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px;
  background: linear-gradient(90deg, var(--brand), var(--brand-2));
  z-index: 1001; transition: width 0.1s linear;
}

/* ===== Announcement Bar ===== */
.announcement-bar {
  background: linear-gradient(90deg, var(--brand), var(--brand-2));
  color: #fff; text-align: center; padding: 0.6rem 2rem;
  font-size: 0.85rem; font-weight: 600; position: relative; z-index: 200;
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
}
.announcement-bar a { color: #fff; font-weight: 700; text-decoration: underline; }
.announcement-bar a:hover { opacity: 0.85; }
.ann-close {
  position: absolute; right: 1rem; top: 50%; transform: translateY(-50%);
  background: none; border: none; color: rgba(255,255,255,0.8);
  cursor: pointer; font-size: 1rem; padding: 0.25rem 0.5rem;
  transition: opacity 0.2s;
}
.ann-close:hover { opacity: 1; }

/* ===== Header ===== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  backdrop-filter: blur(20px);
  background: color-mix(in oklab, var(--bg) 85%, transparent);
  border-bottom: 1px solid color-mix(in oklab, var(--line) 60%, transparent);
  transition: all 0.3s ease;
}
.site-header.scrolled { box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1); }
.nav-wrap {
  min-height: 72px; display: flex; gap: 1rem;
  align-items: center; justify-content: space-between;
}
.brand {
  font-size: 1.4rem; font-weight: 800; color: var(--ink); text-decoration: none;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; display: flex; align-items: center;
}
.nav-links { display: flex; align-items: center; gap: 0.2rem; flex-wrap: wrap; }
.nav-links a {
  color: var(--ink); text-decoration: none; font-weight: 500;
  padding: 0.45rem 0.75rem; border-radius: 8px;
  transition: all 0.3s ease; font-size: 0.88rem;
}
.nav-links a:hover { background: color-mix(in oklab, var(--brand) 12%, transparent); color: var(--brand); }
.nav-cta {
  background: linear-gradient(135deg, var(--brand), var(--brand-2)) !important;
  color: #fff !important; font-weight: 600 !important;
  -webkit-text-fill-color: #fff !important;
  padding: 0.5rem 1rem !important;
}
.nav-cta:hover { box-shadow: var(--glow-blue); transform: translateY(-1px); }

.nav-right { display: flex; align-items: center; gap: 0.5rem; }
.theme-toggle {
  border: 1px solid var(--line); background: var(--surface-2); color: var(--ink);
  border-radius: 10px; padding: 0.5rem; cursor: pointer; transition: all 0.3s ease;
  display: flex; align-items: center; justify-content: center;
}
.theme-toggle:hover { border-color: var(--brand); box-shadow: var(--glow); }
.theme-toggle .icon-moon { display: none; }
body[data-theme="dark"] .theme-toggle .icon-sun { display: none; }
body[data-theme="dark"] .theme-toggle .icon-moon { display: block; }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; justify-content: center;
  gap: 5px; width: 38px; height: 38px; background: none;
  border: 1px solid var(--line); border-radius: 8px; cursor: pointer;
  padding: 0.4rem; transition: all 0.3s ease;
}
.hamburger span {
  display: block; height: 2px; background: var(--ink);
  border-radius: 2px; transition: all 0.3s ease;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== Hero ===== */
.hero {
  padding: 7rem 0 5rem; position: relative;
  background:
    radial-gradient(circle at 20% 30%, rgba(0, 212, 170, 0.1), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(10, 140, 255, 0.08), transparent 50%),
    linear-gradient(180deg, transparent, color-mix(in oklab, var(--brand) 3%, var(--bg)));
}
.hero-bg-shapes .shape {
  position: absolute; border-radius: 50%; pointer-events: none;
}
.shape-1 {
  width: 500px; height: 500px; top: -20%; right: -10%;
  background: radial-gradient(circle, rgba(0, 212, 170, 0.12), transparent 70%);
  animation: float 6s ease-in-out infinite;
}
.shape-2 {
  width: 400px; height: 400px; bottom: -10%; left: -5%;
  background: radial-gradient(circle, rgba(10, 140, 255, 0.1), transparent 70%);
  animation: float 8s ease-in-out infinite reverse;
}
.shape-3 {
  width: 300px; height: 300px; top: 40%; right: 30%;
  background: radial-gradient(circle, rgba(255, 107, 53, 0.08), transparent 70%);
  animation: float 7s ease-in-out infinite;
}
@keyframes float { 0%, 100% { transform: translateY(0) scale(1); } 50% { transform: translateY(-20px) scale(1.05); } }

.hero-grid { display: grid; grid-template-columns: 1.3fr 0.7fr; gap: 3rem; align-items: center; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: color-mix(in oklab, var(--brand) 12%, var(--surface-2));
  border: 1px solid color-mix(in oklab, var(--brand) 30%, var(--line));
  padding: 0.4rem 1rem; border-radius: 100px;
  font-size: 0.78rem; font-weight: 600; color: var(--brand); margin-bottom: 1.5rem;
}
.badge-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--brand); animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }

h1 {
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  margin: 0 0 1.2rem; line-height: 1.08; font-weight: 800;
  background: linear-gradient(135deg, var(--ink) 0%, var(--muted) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
body[data-theme="dark"] h1 {
  background: linear-gradient(135deg, var(--ink) 0%, var(--brand) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-highlight {
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.lead { margin: 0 0 2rem; color: var(--muted); font-size: 1.1rem; max-width: 58ch; line-height: 1.75; }
.hero-actions { display: flex; flex-wrap: nowrap; gap: 1rem; }
.hero-actions .btn { white-space: nowrap; }

.hero-trust-row { display: flex; align-items: center; flex-wrap: wrap; gap: 1.5rem; margin-top: 2rem; }
.hero-social-proof { display: flex; align-items: center; gap: 0.75rem; }
.avatars { display: flex; }
.avatar {
  width: 32px; height: 32px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.6rem; font-weight: 700; color: var(--ink);
  margin-left: -8px; border: 2px solid var(--surface-2);
}
.avatar:first-child { margin-left: 0; }
.hero-social-proof span { font-size: 0.83rem; color: var(--muted); }
.hero-social-proof strong { color: var(--ink); }
.hero-guarantee {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.8rem; font-weight: 700; color: var(--brand);
  background: color-mix(in oklab, var(--brand) 10%, var(--surface-2));
  border: 1px solid color-mix(in oklab, var(--brand) 25%, var(--line));
  padding: 0.3rem 0.8rem; border-radius: 100px;
}

/* Hero right */
.hero-right { position: relative; display: flex; flex-direction: column; gap: 1rem; }
.hero-stat-card {
  background: linear-gradient(160deg, var(--surface-2), color-mix(in oklab, var(--brand-2) 8%, var(--surface-2)));
  border: 1px solid color-mix(in oklab, var(--line) 50%, transparent);
  border-radius: 24px; box-shadow: var(--shadow); padding: 1.5rem;
  position: relative; overflow: hidden;
}
.hero-stat-card::before {
  content: ''; position: absolute; top: -50%; right: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle, rgba(0, 212, 170, 0.08), transparent 50%);
  animation: rotate 20s linear infinite;
}
@keyframes rotate { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

.impact-label {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.8rem; font-weight: 700; color: var(--muted);
  margin-bottom: 1rem; position: relative;
}
.impact-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--green);
  box-shadow: 0 0 8px var(--green); animation: pulse-dot 1.5s ease-in-out infinite;
}

.stat-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0.75rem; position: relative; }
.stat-grid article {
  background: var(--surface); border: 1px solid color-mix(in oklab, var(--line) 40%, transparent);
  border-radius: 14px; padding: 0.9rem; transition: all 0.3s ease;
}
.stat-grid article:hover { transform: translateY(-3px); border-color: var(--brand); box-shadow: var(--glow); }
.stat-grid strong { font-size: 1.35rem; color: var(--brand); display: block; font-weight: 800; }
.stat-grid span { color: var(--muted); font-size: 0.75rem; margin-top: 0.2rem; display: block; }

.hero-mini-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
.mini-stat {
  background: var(--surface); border: 1px solid color-mix(in oklab, var(--line) 40%, transparent);
  border-radius: 16px; padding: 1rem; text-align: center;
}
.mini-num { font-size: 1.4rem; font-weight: 800; color: var(--brand-2); font-family: "Sora", sans-serif; }
.mini-stat span:last-child { font-size: 0.75rem; color: var(--muted); margin-top: 0.25rem; display: block; }

.hero-uptime-badge {
  display: flex; align-items: center; gap: 0.6rem;
  background: color-mix(in oklab, var(--green) 8%, var(--surface-2));
  border: 1px solid color-mix(in oklab, var(--green) 20%, var(--line));
  border-radius: 12px; padding: 0.6rem 1rem;
  font-size: 0.78rem; color: var(--muted); font-weight: 600;
}
.uptime-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--green);
  box-shadow: 0 0 8px var(--green); flex-shrink: 0;
  animation: pulse-dot 2s ease-in-out infinite;
}

/* ===== Buttons ===== */
.btn {
  border: 0; border-radius: 12px; padding: 0.85rem 1.4rem; font-weight: 700;
  text-decoration: none; cursor: pointer; display: inline-flex;
  align-items: center; justify-content: center;
  transition: all 0.3s ease; position: relative; overflow: hidden; font-size: 0.95rem;
}
.btn::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, transparent, rgba(255,255,255,0.15));
  opacity: 0; transition: opacity 0.3s ease;
}
.btn:hover::before { opacity: 1; }
.btn-primary {
  color: #fff; background: linear-gradient(135deg, var(--brand), var(--brand-2));
  box-shadow: 0 8px 30px color-mix(in oklab, var(--brand-2) 40%, transparent);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--glow-blue), 0 12px 40px color-mix(in oklab, var(--brand-2) 50%, transparent); }
.btn-outline { color: var(--ink); background: transparent; border: 2px solid var(--line); }
.btn-outline:hover { border-color: var(--brand); color: var(--brand); box-shadow: var(--glow); transform: translateY(-2px); }
.btn-lg { padding: 1rem 2rem; font-size: 1rem; }

/* ===== Ticker ===== */
.ticker-section {
  padding: 1.2rem 0; overflow: hidden;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  background: var(--surface);
}
.ticker-track { display: flex; gap: 2.5rem; animation: ticker 35s linear infinite; width: max-content; }
.ticker-item {
  font-family: "Sora", sans-serif; font-weight: 600; font-size: 0.85rem;
  color: var(--muted); white-space: nowrap;
}
.ticker-item::before { content: '◆ '; color: var(--brand); }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ===== Featured In ===== */
.featured-section {
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--line);
  background: color-mix(in oklab, var(--bg-alt) 60%, var(--surface-2));
}
.featured-label {
  text-align: center; font-size: 0.8rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); margin-bottom: 1.5rem;
}
.featured-logos {
  display: flex; flex-wrap: wrap; justify-content: center;
  align-items: center; gap: 1.5rem 3rem;
}
.featured-logo {
  font-family: "Sora", sans-serif; font-weight: 800; font-size: 1.1rem;
  color: var(--muted); opacity: 0.65; transition: opacity 0.3s ease;
  display: flex; flex-direction: column; align-items: center; line-height: 1.1;
  filter: grayscale(1);
}
.featured-logo:hover { opacity: 1; filter: grayscale(0); }
.featured-logo span { font-size: 0.65rem; font-weight: 600; letter-spacing: 0.05em; margin-top: 2px; }

/* ===== Stats Banner ===== */
.stats-banner {
  padding: 3rem 0;
  background: linear-gradient(180deg, var(--surface), color-mix(in oklab, var(--brand) 5%, var(--bg)));
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; text-align: center; }
.stat-item { padding: 1rem; }
.stat-number { font-size: clamp(2.2rem, 4vw, 3.2rem); font-weight: 800; color: var(--brand); font-family: "Sora", sans-serif; }
.stat-suffix { font-size: clamp(1.5rem, 3vw, 2.5rem); font-weight: 700; color: var(--brand); font-family: "Sora", sans-serif; }
.stat-label { display: block; font-size: 0.83rem; color: var(--muted); margin-top: 0.3rem; }

/* ===== Problem Section ===== */
.problem-section { padding: 6rem 0; }
.problem-header { max-width: 780px; margin: 0 auto 3.5rem; text-align: center; }
.problem-badge {
  display: inline-block; background: color-mix(in oklab, var(--accent) 12%, var(--surface-2));
  border: 1px solid color-mix(in oklab, var(--accent) 30%, var(--line));
  color: var(--accent); font-size: 0.75rem; font-weight: 700;
  padding: 0.3rem 0.9rem; border-radius: 100px; margin-bottom: 1.2rem;
  text-transform: uppercase; letter-spacing: 0.1em;
}
.pain-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.pain-card {
  background: var(--surface-2); border: 1px solid var(--line);
  border-radius: 20px; padding: 1.8rem 1.5rem;
  transition: all 0.3s ease; text-align: center;
  border-top: 3px solid var(--accent);
}
.pain-card:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(255, 107, 53, 0.1); }
.pain-icon { font-size: 2rem; margin-bottom: 1rem; }
.pain-stat {
  font-family: "Sora", sans-serif; font-size: 1.8rem; font-weight: 800;
  color: var(--accent); margin-bottom: 0.4rem; line-height: 1;
}
.pain-title { font-weight: 700; font-size: 0.95rem; color: var(--ink); margin-bottom: 0.75rem; }
.pain-card p { color: var(--muted); font-size: 0.85rem; line-height: 1.6; margin: 0; }

.problem-transition {
  display: flex; align-items: center; gap: 2rem; margin-top: 4rem;
}
.transition-line { flex: 1; height: 1px; background: linear-gradient(90deg, transparent, var(--line), transparent); }
.transition-text { text-align: center; max-width: 480px; flex-shrink: 0; }
.transition-badge {
  display: inline-block; background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #fff; font-size: 0.8rem; font-weight: 700; padding: 0.3rem 1rem;
  border-radius: 100px; margin-bottom: 0.75rem;
}
.transition-text p { color: var(--muted); font-size: 0.95rem; line-height: 1.65; margin: 0; }

/* ===== Section Common ===== */
.section { padding: 6rem 0; position: relative; }
.section-alt { background: var(--bg-alt); }
.section h2 {
  margin: 0 0 1rem; font-size: clamp(calc(2rem + 1px), 3.5vw, calc(2.8rem + 1px)); font-weight: 800;
  background: linear-gradient(135deg, var(--ink), var(--brand-2));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
body[data-theme="dark"] .section h2 {
  background: linear-gradient(135deg, var(--ink), var(--brand));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.section-copy { color: var(--muted); margin: 0 0 3rem; font-size: 1.05rem; max-width: 62ch; }

/* ===== RaaS Steps ===== */
.raas-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.raas-step {
  background: var(--surface); border: 1px solid color-mix(in oklab, var(--line) 50%, transparent);
  border-radius: 20px; padding: 2rem; position: relative;
  transition: all 0.3s ease;
}
.raas-step:hover { transform: translateY(-6px); border-color: var(--brand); box-shadow: var(--glow); }
.step-number {
  font-family: "Sora", sans-serif; font-size: 2.8rem; font-weight: 800;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  opacity: 0.6; margin-bottom: 0.5rem;
}
.raas-step h3 { margin: 0 0 0.5rem; font-size: 1.1rem; }
.raas-step p { margin: 0 0 0.75rem; color: var(--muted); font-size: calc(0.88rem + 1px); line-height: 1.6; }
.step-detail {
  display: inline-block; font-size: 0.75rem; font-weight: 700;
  color: var(--brand); background: color-mix(in oklab, var(--brand) 10%, var(--surface-2));
  border: 1px solid color-mix(in oklab, var(--brand) 25%, var(--line));
  padding: 0.2rem 0.6rem; border-radius: 100px;
}

/* ===== Cards ===== */
.cards { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.5rem; }
.cards.three-up { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.card, .sim-card {
  background: var(--surface); border: 1px solid color-mix(in oklab, var(--line) 50%, transparent);
  box-shadow: var(--shadow); backdrop-filter: blur(10px); border-radius: 20px;
  transform: translateY(30px); opacity: 0;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative; overflow: hidden;
}
.card::before, .sim-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--brand), var(--brand-2));
  transform: scaleX(0); transition: transform 0.3s ease;
}
.card:hover::before, .sim-card:hover::before { transform: scaleX(1); }
.card.in, .sim-card.in { transform: translateY(0); opacity: 1; }
.card { padding: 2rem; }
.card:hover { transform: translateY(-8px); border-color: var(--brand); box-shadow: var(--glow), 0 20px 60px rgba(0, 0, 0, 0.12); }
.card h3 { font-size: 1.2rem; margin-bottom: 0.75rem; color: var(--ink); }
.card p { color: var(--muted); line-height: 1.7; font-size: 0.93rem; }
.card-icon {
  width: 60px; height: 60px; border-radius: 16px;
  background: color-mix(in oklab, var(--brand) 10%, var(--bg-alt));
  display: flex; align-items: center; justify-content: center; margin-bottom: 1.2rem;
}
.card-stat {
  display: inline-block; margin-top: 1rem; font-size: 0.75rem; font-weight: 700;
  color: var(--brand-2); background: color-mix(in oklab, var(--brand-2) 8%, var(--surface-2));
  border: 1px solid color-mix(in oklab, var(--brand-2) 20%, var(--line));
  padding: 0.25rem 0.75rem; border-radius: 100px;
}

/* ===== Comparison Table ===== */
.comparison-section { }
.comparison-wrap { overflow-x: auto; border-radius: 20px; box-shadow: var(--shadow); }
.comparison-table { min-width: 640px; border-radius: 20px; overflow: hidden; border: 1px solid var(--line); }
.comparison-header {
  display: grid; grid-template-columns: 2fr 1.5fr 1.5fr;
  background: linear-gradient(135deg, var(--ink), color-mix(in oklab, var(--ink) 80%, var(--brand-2)));
  padding: 1.25rem 1.5rem; gap: 1rem;
}
.comp-col { font-family: "Sora", sans-serif; font-size: 0.9rem; font-weight: 700; }
.comp-label-col { color: rgba(255,255,255,0.6); }
.comp-head-old { color: #ff8888; }
.comp-head-new { color: #fff; }
.comparison-row {
  display: grid; grid-template-columns: 2fr 1.5fr 1.5fr;
  padding: 1rem 1.5rem; gap: 1rem;
  border-top: 1px solid var(--line);
  background: var(--surface-2); transition: background 0.2s ease;
  align-items: center;
}
.comparison-row:nth-child(odd) { background: color-mix(in oklab, var(--bg-alt) 60%, var(--surface-2)); }
.comparison-row:hover { background: color-mix(in oklab, var(--brand) 5%, var(--surface-2)); }
.comp-label { font-weight: 600; font-size: 0.9rem; color: var(--ink); }
.comp-old-val { font-size: 0.88rem; color: var(--muted); }
.comp-new-val {
  font-size: 0.88rem; font-weight: 700; color: var(--brand-ink);
  background: color-mix(in oklab, var(--brand) 8%, transparent);
  padding: 0.25rem 0.6rem; border-radius: 8px; display: inline-block;
}

/* ===== Pricing ===== */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.pricing-value-note {
  display: flex; align-items: center; gap: 0.6rem;
  background: color-mix(in oklab, var(--brand) 8%, var(--surface-2));
  border: 1px solid color-mix(in oklab, var(--brand) 20%, var(--line));
  border-radius: 12px; padding: 0.75rem 1.2rem;
  font-size: 0.88rem; color: var(--muted); margin-bottom: 2rem;
}
.pricing-value-note strong { color: var(--ink); }
.pricing-card {
  background: var(--surface); border: 1px solid color-mix(in oklab, var(--line) 50%, transparent);
  border-radius: 24px; padding: 2rem; position: relative;
  transition: all 0.3s ease; display: flex; flex-direction: column;
}
.pricing-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.pricing-card.featured {
  border-color: var(--brand);
  background: linear-gradient(160deg, var(--surface-2), color-mix(in oklab, var(--brand) 6%, var(--surface-2)));
  box-shadow: var(--glow);
}
.pricing-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #fff; font-size: 0.72rem; font-weight: 700; padding: 0.3rem 1rem;
  border-radius: 100px;
}
.pricing-label { font-family: "Sora", sans-serif; font-size: 0.82rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); }
.pricing-price { font-size: 2.4rem; font-weight: 800; color: var(--ink); margin: 0.5rem 0 0.25rem; }
.pricing-price span { font-size: 1rem; color: var(--muted); font-weight: 500; }
.pricing-savings {
  font-size: 0.78rem; font-weight: 700; color: var(--green-ink);
  margin-bottom: 0.75rem;
}
.pricing-desc { color: var(--muted); margin-bottom: 1.5rem; font-size: 0.9rem; }
.pricing-features { list-style: none; padding: 0; margin: 0 0 1.5rem; flex-grow: 1; }
.pricing-features li {
  padding: 0.45rem 0; color: var(--muted); font-size: 0.88rem;
  position: relative; padding-left: 1.4rem;
}
.pricing-features li::before {
  content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 6px; height: 6px; border-radius: 50%; background: var(--brand);
}

/* ===== ROI Calculator ===== */
.roi-section { }
.roi-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem;
  background: var(--surface-2); border: 1px solid var(--line);
  border-radius: 24px; padding: 2.5rem; box-shadow: var(--shadow);
}
.roi-field { margin-bottom: 1.5rem; }
.roi-field label {
  display: block; font-weight: 700; font-size: 0.9rem;
  color: var(--ink); margin-bottom: 0.75rem;
}
.roi-slider-wrap { display: flex; align-items: center; gap: 1.5rem; }
.roi-slider {
  flex: 1; -webkit-appearance: none; appearance: none;
  height: 6px; border-radius: 3px;
  background: linear-gradient(90deg, var(--brand), var(--brand-2));
  outline: none; cursor: pointer;
}
.roi-slider::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--brand-2); border: 3px solid var(--surface-2);
  box-shadow: 0 2px 10px rgba(10, 140, 255, 0.4); cursor: pointer;
}
.roi-slider::-moz-range-thumb {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--brand-2); border: 3px solid var(--surface-2); cursor: pointer;
}
.roi-slider-val {
  min-width: 100px; font-family: "Sora", sans-serif;
  font-weight: 800; font-size: 1rem; color: var(--brand-2);
  text-align: right;
}
.roi-ops { display: flex; flex-direction: column; gap: 0.6rem; }
.roi-op-label {
  display: flex; align-items: center; gap: 0.75rem;
  cursor: pointer; padding: 0.65rem 1rem;
  border: 1px solid var(--line); border-radius: 12px;
  transition: all 0.2s ease; font-size: 0.9rem; font-weight: 600;
}
.roi-op-label:hover { border-color: var(--brand); background: color-mix(in oklab, var(--brand) 6%, var(--surface-2)); }
.roi-op-label input { accent-color: var(--brand); width: 16px; height: 16px; }
.roi-note { font-size: 0.78rem; color: var(--muted); margin-top: 0.5rem; font-style: italic; }
.roi-results { display: flex; flex-direction: column; }
.roi-results-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.roi-result-card {
  background: color-mix(in oklab, var(--bg-alt) 80%, transparent);
  border: 1px solid var(--line); border-radius: 16px; padding: 1.25rem;
  text-align: center; transition: all 0.3s ease;
}
.roi-result-card:hover { border-color: var(--brand); box-shadow: var(--glow); }
.roi-result-num {
  font-family: "Sora", sans-serif; font-size: 1.8rem;
  font-weight: 800; color: var(--brand); line-height: 1;
  margin-bottom: 0.25rem;
}
.roi-result-num.accent { color: var(--accent); }
.roi-result-num.green { color: var(--green); }
.roi-result-num.blue { color: var(--brand-2); }
.roi-result-label { font-size: 0.78rem; color: var(--muted); font-weight: 600; }
.roi-plan-rec {
  text-align: center; font-size: 0.9rem; color: var(--muted);
  padding: 0.75rem; background: color-mix(in oklab, var(--brand) 8%, transparent);
  border-radius: 12px; border: 1px solid color-mix(in oklab, var(--brand) 20%, var(--line));
}
.roi-plan-rec strong { color: var(--brand); font-size: 1rem; }
.roi-disclaimer {
  text-align: center; margin-top: 1.5rem;
  font-size: 0.78rem; color: var(--muted); font-style: italic;
}

/* ===== Simulations ===== */
.section-sim {
  background:
    linear-gradient(180deg, color-mix(in oklab, var(--brand-2) 5%, var(--bg)), var(--bg)),
    radial-gradient(circle at 80% 50%, color-mix(in oklab, var(--brand) 15%, transparent), transparent 50%);
}
.sim-cards { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.5rem; }
.sim-card { padding: 1.25rem; }
.sim-card h3 { margin: 0 0 1rem; font-size: 1.05rem; }
#laundryCanvas, #frontdeskCanvas, #parkingCanvas, #modalCanvas {
  width: 100%; display: block; border-radius: 12px;
  background: var(--surface-2); border: 1px solid var(--line);
}
.kpi-row { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: 1rem; }
.kpi-row span {
  font-size: 0.75rem; font-weight: 700; padding: 0.35rem 0.75rem;
  border-radius: 20px; border: 1px solid color-mix(in oklab, var(--line) 60%, transparent);
  background: color-mix(in oklab, var(--brand) 8%, var(--surface-2));
  color: var(--brand-ink);
}
.open-demo { margin-top: 1rem; width: 100%; text-align: center; }

/* ===== Tech Grid ===== */
.tech-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.tech-item {
  background: var(--surface); border: 1px solid color-mix(in oklab, var(--line) 40%, transparent);
  border-radius: 16px; padding: 1.5rem 1rem; text-align: center;
  transition: all 0.3s ease;
}
.tech-item:hover { transform: translateY(-4px); border-color: var(--brand); box-shadow: var(--glow); }
.tech-icon { font-size: 1.6rem; margin-bottom: 0.5rem; display: block; }
.tech-name { display: block; font-family: "Sora", sans-serif; font-weight: 700; font-size: 0.95rem; color: var(--ink); }
.tech-desc { display: block; font-size: 0.75rem; color: var(--muted); margin-top: 0.2rem; }

/* ===== Testimonials ===== */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.testimonial-card {
  background: var(--surface); border: 1px solid color-mix(in oklab, var(--line) 50%, transparent);
  border-radius: 20px; padding: 1.75rem;
  transition: all 0.3s ease; display: flex; flex-direction: column;
}
.testimonial-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.testimonial-stars { color: #f59e0b; font-size: 0.95rem; margin-bottom: 1rem; letter-spacing: 2px; }
.testimonial-text { font-size: 0.95rem; line-height: 1.7; color: var(--ink); font-weight: 500; margin: 0 0 1.25rem; flex: 1; }
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.75rem; }
.tauthor-avatar {
  width: 36px; height: 36px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  display: flex; align-items: center; justify-content: center;
  font-size: 0.65rem; font-weight: 800; color: #fff;
}
.tauthor-info strong { display: block; font-size: 0.88rem; color: var(--ink); }
.tauthor-info span { display: block; font-size: 0.75rem; color: var(--muted); }
.testimonial-metric {
  font-size: 0.75rem; font-weight: 700; color: var(--brand-ink);
  background: color-mix(in oklab, var(--brand) 8%, var(--surface-2));
  border: 1px solid color-mix(in oklab, var(--brand) 20%, var(--line));
  border-radius: 8px; padding: 0.3rem 0.7rem; display: inline-block;
}

/* ===== Awards ===== */
.awards-section {
  padding: 3rem 0;
  background: linear-gradient(180deg, var(--bg-alt), var(--surface));
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.awards-label {
  text-align: center; font-size: 0.78rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); margin-bottom: 1.75rem;
}
.awards-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 1rem; }
.award-badge {
  background: var(--surface-2); border: 1px solid var(--line);
  border-radius: 16px; padding: 1.25rem 1rem; text-align: center;
  transition: all 0.3s ease;
}
.award-badge:hover { transform: translateY(-4px); border-color: var(--brand); box-shadow: var(--glow); }
.award-icon { font-size: 1.5rem; margin-bottom: 0.5rem; display: block; }
.award-name { font-size: 0.82rem; font-weight: 700; color: var(--ink); display: block; margin-bottom: 0.2rem; }
.award-year { font-size: 0.72rem; color: var(--muted); display: block; }

/* ===== FAQ ===== */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-question {
  width: 100%; background: none; border: none; padding: 1.4rem 0;
  display: flex; justify-content: space-between; align-items: center;
  cursor: pointer; text-align: left; font-family: "Sora", sans-serif;
  font-size: 1.05rem; font-weight: 600; color: var(--ink); gap: 1rem;
  transition: color 0.3s ease;
}
.faq-question:hover { color: var(--brand); }
.faq-question svg { transition: transform 0.3s ease; flex-shrink: 0; }
.faq-question[aria-expanded="true"] svg { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.4s ease; }
.faq-item.active .faq-answer { max-height: 250px; padding-bottom: 1.5rem; }
.faq-answer p { margin: 0; color: var(--muted); line-height: 1.75; font-size: 0.93rem; }

/* ===== Contact ===== */
.contact-section { padding: 6rem 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 4rem; align-items: start; }
.contact-badge {
  display: inline-block; background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #fff; font-size: 0.75rem; font-weight: 700;
  padding: 0.3rem 0.9rem; border-radius: 100px; margin-bottom: 1rem;
}
.contact-info h2 { margin: 0 0 1rem; }
.contact-details { margin-top: 1.75rem; display: flex; flex-direction: column; gap: 1rem; }
.contact-detail { display: flex; align-items: flex-start; gap: 0.75rem; color: var(--muted); font-size: 0.9rem; }
.contact-detail svg { flex-shrink: 0; margin-top: 1px; }
.contact-urgency {
  display: flex; align-items: center; gap: 0.6rem;
  margin-top: 2rem; padding: 0.75rem 1rem;
  background: color-mix(in oklab, var(--accent) 8%, var(--surface-2));
  border: 1px solid color-mix(in oklab, var(--accent) 20%, var(--line));
  border-radius: 12px; font-size: 0.85rem; color: var(--muted);
}
.urgency-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--accent);
  box-shadow: 0 0 8px var(--accent); animation: pulse-dot 1.5s ease-in-out infinite; flex-shrink: 0;
}
.contact-urgency strong { color: var(--accent); }

.contact-form {
  background: var(--surface); border: 1px solid color-mix(in oklab, var(--line) 50%, transparent);
  border-radius: 24px; padding: 2rem; box-shadow: var(--shadow); display: grid; gap: 0.9rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.9rem; }
.form-row-three { grid-template-columns: repeat(3, 1fr); }
.contact-form label { display: grid; gap: 0.4rem; font-weight: 600; font-size: 0.88rem; }
.contact-form input, .contact-form select, .contact-form textarea {
  border: 2px solid var(--line); border-radius: 10px; padding: 0.75rem 0.9rem;
  background: var(--surface-2); color: var(--ink); font: inherit;
  transition: all 0.3s ease; width: 100%;
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
  outline: none; border-color: var(--brand); box-shadow: var(--glow);
}
.contact-form textarea { resize: vertical; min-height: 110px; }
.form-status { min-height: 1.2em; margin: 0; color: var(--brand); font-weight: 600; font-size: 0.9rem; }
.small-help { margin: 0; color: var(--muted); font-size: 0.82rem; }
.small-help a { color: var(--brand-ink); text-decoration: none; }
.small-help a:hover { text-decoration: underline; }
.btn-submit { position: relative; }
.btn-loader { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); }
.btn-loader .loader-path { stroke-dasharray: 20; animation: loader-anim 1s linear infinite; }
@keyframes loader-anim { to { stroke-dashoffset: -40; } }

/* ===== CTA Banner ===== */
.cta-banner {
  padding: 5.5rem 0; text-align: center;
  background: linear-gradient(135deg,
    color-mix(in oklab, var(--brand-2) 8%, var(--bg)),
    color-mix(in oklab, var(--brand) 5%, var(--bg)));
  border-top: 1px solid var(--line);
}
.cta-eyebrow {
  display: inline-block; font-size: 0.75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--accent); margin-bottom: 1rem;
  background: color-mix(in oklab, var(--accent) 10%, var(--surface-2));
  border: 1px solid color-mix(in oklab, var(--accent) 25%, var(--line));
  padding: 0.3rem 0.9rem; border-radius: 100px;
}
.cta-banner h2 { margin: 0 0 1rem; font-size: clamp(1.8rem, 3vw, 2.6rem); }
.cta-banner p { color: var(--muted); margin: 0 0 2rem; font-size: 1.05rem; }
.cta-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 1rem; margin-bottom: 2rem; }
.cta-trust {
  display: flex; justify-content: center; flex-wrap: wrap; gap: 1.5rem;
  font-size: 0.85rem; color: var(--muted); font-weight: 600;
}

/* ===== Modal ===== */
.modal {
  position: fixed; inset: 0; background: rgba(0,0,0,0.85);
  display: none; align-items: center; justify-content: center;
  padding: 1rem; z-index: 1000; backdrop-filter: blur(10px);
}
.modal.open { display: flex; }
.modal-panel {
  width: min(1300px, 95vw); background: var(--surface-2);
  border: 1px solid var(--line); border-radius: 24px; overflow: hidden;
  box-shadow: 0 40px 120px rgba(0,0,0,0.5);
}
.modal-head {
  padding: 1rem 1.5rem; border-bottom: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: center;
}
.modal-head h3 { margin: 0; font-size: 1.2rem; }

/* ===== Scroll Top ===== */
.scroll-top {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 999;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: white; border: none; border-radius: 50%;
  width: 48px; height: 48px; cursor: pointer; box-shadow: var(--glow);
  opacity: 0; transform: translateY(20px); transition: all 0.3s ease;
  display: flex; align-items: center; justify-content: center;
}
.scroll-top.visible { opacity: 1; transform: translateY(0); }
.scroll-top:hover { transform: translateY(-3px); box-shadow: var(--glow-blue); }

/* ===== Footer ===== */
.site-footer {
  border-top: 1px solid color-mix(in oklab, var(--line) 50%, transparent);
  background: color-mix(in oklab, var(--surface-2) 80%, transparent);
  padding: 3.5rem 0 2rem;
}
.footer-content { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 2rem; margin-bottom: 2.5rem; }
.footer-brand { max-width: 280px; }
.footer-logo { display: block; font-family: "Sora", sans-serif; font-size: 1.3rem; font-weight: 800; color: var(--ink); margin-bottom: 0.5rem; }
.footer-brand p { color: var(--muted); font-size: 0.87rem; line-height: 1.6; margin-bottom: 1rem; }
.footer-social { display: flex; gap: 0.6rem; }
.social-link {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 10px;
  border: 1px solid var(--line); color: var(--muted);
  transition: all 0.3s ease; text-decoration: none;
}
.social-link:hover { border-color: var(--brand); color: var(--brand); box-shadow: var(--glow); transform: translateY(-2px); }
.footer-links { display: flex; gap: 3rem; flex-wrap: wrap; }
.footer-col h4 { font-family: "Sora", sans-serif; font-size: 0.82rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--ink); margin: 0 0 0.75rem; }
.footer-col a { display: block; color: var(--muted); text-decoration: none; font-size: 0.87rem; padding: 0.2rem 0; transition: color 0.3s ease; }
.footer-col a:hover { color: var(--brand); }
.footer-bottom { border-top: 1px solid var(--line); padding-top: 1.5rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-bottom p { margin: 0; color: var(--muted); font-size: 0.83rem; }
.footer-trust-row { display: flex; gap: 1.25rem; flex-wrap: wrap; font-size: 0.78rem; color: var(--muted); font-weight: 600; }

/* ===== Animations ===== */
.float { animation: bob 3s ease-in-out infinite; }
@keyframes bob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

.reveal { transform: translateY(30px); opacity: 0; transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1); }
.reveal.in { transform: translateY(0); opacity: 1; }

.robot-bg-sim canvas { position: absolute; inset: 0; opacity: 0.5; pointer-events: none; }

/* ===== Responsive ===== */
@media (max-width: 1100px) {
  .pain-grid { grid-template-columns: repeat(2, 1fr); }
  .awards-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 1040px) {
  .cards.three-up, .sim-cards, .pricing-grid, .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .tech-grid { grid-template-columns: repeat(3, 1fr); }
  .raas-steps { grid-template-columns: repeat(2, 1fr); }
  .roi-grid { grid-template-columns: 1fr; }
  .roi-results-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 900px) {
  .hero-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero { padding: 5rem 0 3rem; }
  .hero-actions { flex-wrap: wrap; }
  .section { padding: 4rem 0; }
  .nav-links { display: none; position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; background: var(--surface-2); border: 1px solid var(--line); border-top: none; padding: 1rem; gap: 0.25rem; box-shadow: 0 20px 40px rgba(0,0,0,0.1); z-index: 200; }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .form-row { grid-template-columns: 1fr; }
  .problem-transition { flex-direction: column; gap: 1rem; }
  .transition-line { display: none; }
}
@media (max-width: 700px) {
  .awards-grid { grid-template-columns: repeat(2, 1fr); }
  .roi-results-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .cards.three-up, .sim-cards, .pricing-grid, .testimonials-grid,
  .stats-grid, .tech-grid, .raas-steps, .pain-grid { grid-template-columns: 1fr; }
  h1 { font-size: 2.1rem; }
  .hero-mini-stats { grid-template-columns: 1fr 1fr; }
  .footer-links { gap: 1.5rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-trust-row { justify-content: center; }
  .cta-actions { flex-direction: column; align-items: center; }
  .featured-logos { gap: 1rem 2rem; }
  .announcement-bar { font-size: 0.75rem; padding: 0.5rem 2.5rem 0.5rem 1rem; }
}
