/* =========================================
   Architekten.ai – Design Tokens & Base
   ========================================= */

:root {
  --bg: #06070a;
  --panel: #0b0e14;
  --panel2: #0f1420;
  --text: #e9eefc;
  --muted: #a7b0c8;
  --faint: #6d7690;
  --line: rgba(255, 255, 255, 0.10);
  --line2: rgba(255, 255, 255, 0.14);
  --accent: #7c5cff;
  --accent2: #24e0ff;
  --good: #36f1a7;
  --warn: #ffcc66;
  --shadow: 0 20px 70px rgba(0, 0, 0, 0.55);
  --radius: 20px;
  --radius-lg: 28px;
  --max-w: 1180px;
  --mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  --sans: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
}

*, *::before, *::after { box-sizing: border-box; }
html, body { height: 100%; }

body {
  margin: 0;
  font-family: var(--sans);
  background:
    radial-gradient(1200px 700px at 65% -10%, rgba(124, 92, 255, 0.28), transparent 55%),
    radial-gradient(900px 600px at 20% 10%, rgba(36, 224, 255, 0.14), transparent 60%),
    radial-gradient(700px 500px at 80% 40%, rgba(54, 241, 167, 0.10), transparent 60%),
    linear-gradient(180deg, #05060a 0%, #05060a 40%, #070a12 100%);
  color: var(--text);
  overflow-x: hidden;
}

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

.bg-grid {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 64px 64px;
  opacity: 0.06;
  mask-image: radial-gradient(600px 400px at 50% 15%, black 0%, transparent 65%);
}


/* =========================================
   Layout
   ========================================= */

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 28px;
}

section {
  padding: 88px 0;
  position: relative;
  overflow: hidden;
}


/* =========================================
   Decorative Orbs (between sections)
   ========================================= */

.orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
  opacity: 0.35;
}

.orb--accent {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--accent), transparent 70%);
}

.orb--cyan {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, var(--accent2), transparent 70%);
}

.orb--green {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, var(--good), transparent 70%);
}


/* =========================================
   Shared Glass Card
   ========================================= */

.glass {
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.015));
  border-radius: var(--radius);
  box-shadow: 0 14px 50px rgba(0, 0, 0, 0.35);
  position: relative;
  overflow: hidden;
}

.glass > * { position: relative; }

.glass::before {
  content: "";
  position: absolute;
  inset: -1px;
  background:
    radial-gradient(500px 250px at 20% 0%, rgba(36, 224, 255, 0.08), transparent 55%),
    radial-gradient(500px 250px at 80% 20%, rgba(124, 92, 255, 0.10), transparent 60%);
  pointer-events: none;
  opacity: 0.65;
}


/* =========================================
   Section Divider
   ========================================= */

.divider {
  height: 1px;
  border: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08) 20%, rgba(124, 92, 255, 0.15) 50%, rgba(255, 255, 255, 0.08) 80%, transparent);
  margin: 0;
}


/* =========================================
   Top Bar
   ========================================= */

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
  background: rgba(6, 7, 10, 0.55);
  border-bottom: 1px solid var(--line);
}

.topbar .row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 14px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 750;
  letter-spacing: 0.2px;
}

.brand-name { font-size: 15px; line-height: 1.1; }
.brand-sub  { font-size: 12px; color: var(--faint); font-weight: 600; margin-top: 2px; }

.logo {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background:
    radial-gradient(circle at 30% 30%, rgba(36, 224, 255, 0.9), rgba(124, 92, 255, 0.85) 55%, rgba(6, 7, 10, 0.1) 70%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.10), rgba(255, 255, 255, 0));
  box-shadow: 0 10px 30px rgba(124, 92, 255, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.10);
  position: relative;
  overflow: hidden;
}

.logo::after {
  content: "";
  position: absolute;
  inset: -60%;
  background: conic-gradient(from 180deg, transparent, rgba(255, 255, 255, 0.10), transparent);
  animation: spin 7s linear infinite;
}

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

nav {
  display: flex;
  gap: 16px;
  align-items: center;
  color: var(--muted);
  font-size: 14px;
}

nav a { padding: 8px 10px; border-radius: 10px; }
nav a:hover { background: rgba(255, 255, 255, 0.06); color: var(--text); }

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


/* =========================================
   Buttons & Pills
   ========================================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 14px;
  padding: 12px 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  font-weight: 650;
  font-size: 14px;
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease;
  cursor: pointer;
  user-select: none;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.22);
}

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

.btn.primary {
  border: 1px solid rgba(124, 92, 255, 0.55);
  background: linear-gradient(135deg, rgba(124, 92, 255, 0.95), rgba(36, 224, 255, 0.65));
  box-shadow: 0 14px 40px rgba(124, 92, 255, 0.22);
  color: #071022;
}

.btn.primary:hover { filter: brightness(1.05); }

.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  padding: 9px 14px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 13px;
}

.dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--good), rgba(54, 241, 167, 0.15));
  box-shadow: 0 0 20px rgba(54, 241, 167, 0.35);
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  padding: 6px 10px;
  border-radius: 999px;
}

.tag b { color: var(--text); }

.badge {
  font-size: 12px;
  color: #071022;
  background: linear-gradient(135deg, rgba(54, 241, 167, 0.95), rgba(36, 224, 255, 0.75));
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 800;
}

.kbd {
  font-family: var(--mono);
  font-size: 12px;
  color: #cfd6f0;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  padding: 4px 7px;
  border-radius: 10px;
}


/* =========================================
   Checkmark Icon (pure CSS)
   ========================================= */

.check {
  width: 16px;
  height: 16px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(54, 241, 167, 0.10);
  box-shadow: 0 0 0 3px rgba(54, 241, 167, 0.05);
  position: relative;
}

.check::after {
  content: "";
  position: absolute;
  left: 4px; top: 3px;
  width: 6px; height: 3px;
  border-left: 2px solid rgba(54, 241, 167, 0.95);
  border-bottom: 2px solid rgba(54, 241, 167, 0.95);
  transform: rotate(-45deg);
}


/* =========================================
   Section Headings
   ========================================= */

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--accent2);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
}

.section-label::before,
.section-label::after {
  content: "";
  width: 24px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent2));
}

.section-label::after {
  background: linear-gradient(90deg, var(--accent2), transparent);
}

.section-title {
  font-size: clamp(26px, 3vw, 36px);
  margin: 0 0 16px;
  letter-spacing: -0.5px;
  line-height: 1.15;
}

.section-sub {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
  font-size: 16px;
}


/* =========================================
   Hero
   ========================================= */

.hero {
  padding: 72px 0 48px;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}

.h-title {
  font-size: clamp(36px, 4.2vw, 58px);
  line-height: 1.05;
  margin: 20px 0 20px;
  letter-spacing: -0.8px;
}

.h-title .grad {
  background: linear-gradient(135deg, rgba(36, 224, 255, 1), rgba(124, 92, 255, 1) 55%, rgba(54, 241, 167, 1));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lead {
  font-size: clamp(16px, 1.5vw, 18px);
  line-height: 1.6;
  color: var(--muted);
  margin: 0 0 28px;
  max-width: 60ch;
}

.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.micro {
  margin-top: 24px;
  color: var(--faint);
  font-size: 13px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.micro span { display: inline-flex; align-items: center; gap: 8px; }

.hero-card {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  min-height: 420px;
}

.hero-card::before {
  background:
    radial-gradient(700px 400px at 20% 0%, rgba(36, 224, 255, 0.18), transparent 55%),
    radial-gradient(700px 400px at 90% 20%, rgba(124, 92, 255, 0.22), transparent 60%),
    radial-gradient(700px 400px at 70% 110%, rgba(54, 241, 167, 0.10), transparent 55%);
  inset: -2px;
}

.hero-card .inner { position: relative; padding: 22px; }

.hero-tags { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 16px; }


/* =========================================
   Terminal
   ========================================= */

.terminal {
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(8, 10, 15, 0.65);
  overflow: hidden;
}

.termbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted);
  font-size: 12px;
}

.term-dots { display: flex; gap: 6px; }
.term-dots i { width: 9px; height: 9px; border-radius: 50%; display: block; background: rgba(255, 255, 255, 0.18); }
.term-dots i:nth-child(1) { background: rgba(255, 99, 99, 0.7); }
.term-dots i:nth-child(2) { background: rgba(255, 204, 102, 0.7); }
.term-dots i:nth-child(3) { background: rgba(54, 241, 167, 0.55); }

.term {
  padding: 16px;
  font-family: var(--mono);
  font-size: 12.8px;
  line-height: 1.55;
  color: #d7def6;
  white-space: pre-wrap;
}


/* =========================================
   Bento Grid ("Why" section)
   ========================================= */

.bento {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  grid-template-rows: auto auto;
  gap: 20px;
}

.bento-wide {
  grid-row: 1 / 3;
  padding: 32px;
  display: flex;
  flex-direction: column;
}

.bento-wide .bento-graphic {
  flex: 1;
  min-height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 24px 0;
}

.bento-sm {
  padding: 28px;
}

/* CSS-only architecture graphic for the wide card */
.arch-graphic {
  width: 100%;
  max-width: 320px;
  aspect-ratio: 16 / 9;
  position: relative;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.25);
  overflow: hidden;
}

.arch-graphic::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 31%, rgba(124, 92, 255, 0.12) 31%, rgba(124, 92, 255, 0.12) 32%, transparent 32%),
    linear-gradient(90deg, transparent 64%, rgba(36, 224, 255, 0.12) 64%, rgba(36, 224, 255, 0.12) 65%, transparent 65%),
    linear-gradient(0deg, transparent 45%, rgba(255, 255, 255, 0.06) 45%, rgba(255, 255, 255, 0.06) 46%, transparent 46%);
}

.arch-node {
  position: absolute;
  border-radius: 10px;
  border: 1px solid;
  padding: 8px 12px;
  font-family: var(--mono);
  font-size: 10px;
  white-space: nowrap;
  backdrop-filter: blur(4px);
}

.arch-node--agent {
  top: 14%;
  left: 8%;
  border-color: rgba(124, 92, 255, 0.4);
  background: rgba(124, 92, 255, 0.12);
  color: rgba(200, 180, 255, 0.9);
  box-shadow: 0 0 20px rgba(124, 92, 255, 0.15);
}

.arch-node--data {
  top: 14%;
  right: 8%;
  border-color: rgba(36, 224, 255, 0.4);
  background: rgba(36, 224, 255, 0.12);
  color: rgba(150, 230, 255, 0.9);
  box-shadow: 0 0 20px rgba(36, 224, 255, 0.15);
}

.arch-node--gov {
  bottom: 16%;
  left: 50%;
  transform: translateX(-50%);
  border-color: rgba(54, 241, 167, 0.4);
  background: rgba(54, 241, 167, 0.10);
  color: rgba(150, 255, 200, 0.9);
  box-shadow: 0 0 20px rgba(54, 241, 167, 0.12);
}

/* Animated pulse on nodes */
.arch-node::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: pulse 3s ease-in-out infinite;
}

.arch-node--agent::after { background: var(--accent); }
.arch-node--data::after  { background: var(--accent2); }
.arch-node--gov::after   { background: var(--good); }

@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 currentColor; }
  50%      { opacity: 0.6; box-shadow: 0 0 12px 4px currentColor; }
}

/* Small bento card icons (CSS shapes) */
.bento-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  margin-bottom: 16px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bento-icon--shield {
  background: linear-gradient(135deg, rgba(54, 241, 167, 0.15), rgba(36, 224, 255, 0.10));
  border: 1px solid rgba(54, 241, 167, 0.25);
}

.bento-icon--shield::after {
  content: "";
  width: 18px;
  height: 20px;
  border: 2px solid rgba(54, 241, 167, 0.7);
  border-radius: 3px 3px 10px 10px;
}

.bento-icon--bolt {
  background: linear-gradient(135deg, rgba(255, 204, 102, 0.15), rgba(124, 92, 255, 0.10));
  border: 1px solid rgba(255, 204, 102, 0.25);
}

.bento-icon--bolt::after {
  content: "⚡";
  font-size: 20px;
  filter: saturate(0.5) brightness(1.5);
}


/* =========================================
   Product Cards (with accent tops)
   ========================================= */

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

.product-card {
  padding: 0;
  border-radius: var(--radius-lg);
}

.product-accent {
  height: 4px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.product-accent--lab       { background: linear-gradient(90deg, var(--accent2), var(--accent)); }
.product-accent--executive { background: linear-gradient(90deg, var(--accent), var(--warn)); }
.product-accent--blueprint { background: linear-gradient(90deg, var(--good), var(--accent2)); }

.product-body {
  padding: 28px 24px 24px;
}

.product-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.product-icon--lab {
  background: linear-gradient(135deg, rgba(36, 224, 255, 0.12), rgba(124, 92, 255, 0.08));
  border: 1px solid rgba(36, 224, 255, 0.2);
}

.product-icon--lab::before {
  content: "";
  width: 22px;
  height: 18px;
  border: 2px solid rgba(36, 224, 255, 0.6);
  border-radius: 4px;
  position: relative;
}

.product-icon--lab::after {
  content: "";
  position: absolute;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(36, 224, 255, 0.3);
  box-shadow: 0 0 12px rgba(36, 224, 255, 0.4);
}

.product-icon--exec {
  background: linear-gradient(135deg, rgba(124, 92, 255, 0.12), rgba(255, 204, 102, 0.08));
  border: 1px solid rgba(124, 92, 255, 0.2);
}

.product-icon--exec::before {
  content: "";
  width: 0;
  height: 0;
  border-left: 10px solid rgba(124, 92, 255, 0.6);
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  margin-left: 3px;
}

.product-icon--bp {
  background: linear-gradient(135deg, rgba(54, 241, 167, 0.12), rgba(36, 224, 255, 0.08));
  border: 1px solid rgba(54, 241, 167, 0.2);
}

.product-icon--bp::before {
  content: "";
  width: 20px;
  height: 20px;
  background:
    linear-gradient(90deg, rgba(54, 241, 167, 0.5) 1px, transparent 1px),
    linear-gradient(0deg, rgba(54, 241, 167, 0.5) 1px, transparent 1px);
  background-size: 7px 7px;
}

.kicker {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 750;
  letter-spacing: -0.3px;
}

.desc {
  margin: 0 0 20px;
  color: var(--muted);
  line-height: 1.6;
}


/* =========================================
   Clean List
   ========================================= */

ul.clean {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

ul.clean li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: #cfd6f0;
  line-height: 1.5;
}

ul.clean li i {
  width: 18px;
  height: 18px;
  border-radius: 7px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(124, 92, 255, 0.10);
  box-shadow: 0 0 0 3px rgba(124, 92, 255, 0.05);
  margin-top: 2px;
  position: relative;
  flex: 0 0 18px;
}

ul.clean li i::after {
  content: "";
  position: absolute;
  left: 5px; top: 4px;
  width: 7px; height: 4px;
  border-left: 2px solid rgba(36, 224, 255, 0.95);
  border-bottom: 2px solid rgba(36, 224, 255, 0.95);
  transform: rotate(-45deg);
}


/* =========================================
   Timeline (Method section)
   ========================================= */

.timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
  padding-top: 40px;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 58px;
  left: 16.66%;
  right: 16.66%;
  height: 2px;
  background: linear-gradient(90deg,
    rgba(36, 224, 255, 0.5),
    rgba(124, 92, 255, 0.5) 50%,
    rgba(54, 241, 167, 0.5)
  );
  border-radius: 2px;
}

.timeline-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 20px;
}

.timeline-node {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  position: relative;
  z-index: 2;
}

.timeline-node::after {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.timeline-step:nth-child(1) .timeline-node {
  border-color: rgba(36, 224, 255, 0.5);
  background: rgba(36, 224, 255, 0.08);
  box-shadow: 0 0 30px rgba(36, 224, 255, 0.2);
}

.timeline-step:nth-child(1) .timeline-node::after {
  background: var(--accent2);
  box-shadow: 0 0 12px var(--accent2);
}

.timeline-step:nth-child(2) .timeline-node {
  border-color: rgba(124, 92, 255, 0.5);
  background: rgba(124, 92, 255, 0.08);
  box-shadow: 0 0 30px rgba(124, 92, 255, 0.2);
}

.timeline-step:nth-child(2) .timeline-node::after {
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent);
}

.timeline-step:nth-child(3) .timeline-node {
  border-color: rgba(54, 241, 167, 0.5);
  background: rgba(54, 241, 167, 0.08);
  box-shadow: 0 0 30px rgba(54, 241, 167, 0.2);
}

.timeline-step:nth-child(3) .timeline-node::after {
  background: var(--good);
  box-shadow: 0 0 12px var(--good);
}

.timeline-label {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--faint);
  margin-bottom: 8px;
}

.timeline-step h4 {
  margin: 0 0 12px;
  font-size: 18px;
  letter-spacing: -0.2px;
}

.timeline-step p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
  font-size: 14.5px;
  max-width: 30ch;
}


/* =========================================
   Pricing
   ========================================= */

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

.price-card {
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.price-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.5);
}

.price-card::before {
  background:
    radial-gradient(600px 240px at 20% 0%, rgba(36, 224, 255, 0.10), transparent 58%),
    radial-gradient(600px 240px at 85% 20%, rgba(124, 92, 255, 0.12), transparent 60%);
  opacity: 0.5;
}

.price-card.featured {
  border-color: rgba(124, 92, 255, 0.35);
  box-shadow: 0 22px 80px rgba(124, 92, 255, 0.18);
}

.price-card.featured::before {
  background:
    radial-gradient(600px 300px at 30% -20%, rgba(124, 92, 255, 0.25), transparent 55%),
    radial-gradient(600px 300px at 80% 80%, rgba(36, 224, 255, 0.15), transparent 60%);
  opacity: 0.8;
}

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

.price-title h3 { margin: 0; font-size: 17px; letter-spacing: -0.2px; }

.amount {
  margin: 16px 0 8px;
  font-size: 32px;
  font-weight: 850;
  letter-spacing: -0.6px;
}

.amount small { font-size: 14px; font-weight: 650; color: var(--muted); }

.price-desc {
  margin: 0 0 20px;
  color: var(--muted);
  line-height: 1.6;
}

.price-card .btn {
  width: 100%;
  margin-top: 20px;
}

.price-foot {
  margin-top: 16px;
  font-size: 12px;
  color: var(--faint);
  line-height: 1.55;
}


/* =========================================
   Contact Form
   ========================================= */

.contact {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 32px;
  align-items: start;
}

.form {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  overflow: hidden;
}

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

label {
  display: block;
  font-size: 13px;
  color: var(--muted);
  margin: 16px 0 6px;
}

input, textarea, select {
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(7, 9, 14, 0.65);
  color: var(--text);
  padding: 13px 14px;
  outline: none;
  transition: border-color 0.15s ease, background 0.15s ease;
  font-family: var(--sans);
  font-size: 14px;
}

textarea { min-height: 110px; resize: vertical; }

input:focus, textarea:focus, select:focus {
  border-color: rgba(36, 224, 255, 0.40);
  background: rgba(7, 9, 14, 0.80);
}

.form-hint {
  margin-top: 12px;
  font-size: 12px;
  color: var(--faint);
  line-height: 1.55;
}


/* =========================================
   Sidebar Note / Quote
   ========================================= */

.note {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: 0 14px 50px rgba(0, 0, 0, 0.35);
}

.note h3 { margin: 0 0 12px; font-size: 18px; }
.note p  { margin: 0 0 16px; color: var(--muted); line-height: 1.65; }

.note-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 16px; }
.note-hint    { margin-top: 16px; color: var(--faint); font-size: 12px; line-height: 1.55; }

.quote {
  font-family: var(--mono);
  font-size: 12.5px;
  color: #d7def6;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  padding: 16px;
  border-radius: 16px;
  line-height: 1.6;
}


/* =========================================
   Footer
   ========================================= */

footer {
  padding: 36px 0 48px;
  border-top: 1px solid var(--line);
  color: var(--faint);
  font-size: 13px;
}

.footrow {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

.footlinks { display: flex; gap: 16px; flex-wrap: wrap; }
.footlinks a { color: var(--muted); }
.footlinks a:hover { color: var(--text); }


/* =========================================
   Modal
   ========================================= */

.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(8px);
}

.modal-wrap {
  max-width: 860px;
  margin: 6vh auto;
  padding: 0 18px;
}

.modal-box {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(10, 12, 18, 0.92);
  border-radius: 22px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.modal-header h3 { margin: 0; font-weight: 800; }

.modal-body {
  padding: 20px;
  color: var(--muted);
  line-height: 1.65;
}


/* =========================================
   Toast
   ========================================= */

.toast {
  position: fixed;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  padding: 10px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(12, 14, 20, 0.92);
  color: var(--text);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.55);
  z-index: 1000;
  font-size: 13px;
  opacity: 0;
  transition: opacity 0.18s ease, transform 0.18s ease;
  pointer-events: none;
}

.toast.visible {
  opacity: 1;
  transform: translateX(-50%) translateY(-2px);
}


/* =========================================
   Stats Row
   ========================================= */

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.stat {
  padding: 32px 28px;
  background: rgba(6, 7, 10, 0.85);
  text-align: center;
}

.stat-number {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 850;
  letter-spacing: -1px;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-number--accent  { color: var(--accent); }
.stat-number--cyan    { color: var(--accent2); }
.stat-number--green   { color: var(--good); }

.stat-label {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
}


/* =========================================
   Problem Section
   ========================================= */

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

.problem-item {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.02);
}

.problem-number {
  font-family: var(--mono);
  font-size: 48px;
  font-weight: 850;
  line-height: 1;
  margin-bottom: 16px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.04));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.problem-item h3 {
  font-size: 17px;
  margin: 0 0 10px;
  letter-spacing: -0.2px;
}

.problem-item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
  font-size: 14.5px;
}


/* =========================================
   OpenClaw Showcase
   ========================================= */

.showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.showcase-visual {
  position: relative;
}

.showcase-text h3 {
  font-size: clamp(22px, 2.5vw, 30px);
  margin: 0 0 16px;
  letter-spacing: -0.4px;
  line-height: 1.2;
}

.showcase-text .lead {
  margin-bottom: 24px;
}

.showcase-highlight {
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 800;
  letter-spacing: -0.4px;
  margin: 24px 0;
  padding: 20px 24px;
  border-radius: var(--radius);
  border: 1px solid rgba(36, 224, 255, 0.2);
  background: rgba(36, 224, 255, 0.04);
}

.showcase-highlight .amount-inline {
  color: var(--accent2);
}

.lab-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 32px;
}

.lab-step {
  padding: 20px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.025);
  text-align: center;
}

.lab-step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  font-family: var(--mono);
  font-size: 14px;
  font-weight: 700;
}

.lab-step:nth-child(1) .lab-step-num {
  border: 1px solid rgba(36, 224, 255, 0.3);
  background: rgba(36, 224, 255, 0.08);
  color: var(--accent2);
}

.lab-step:nth-child(2) .lab-step-num {
  border: 1px solid rgba(124, 92, 255, 0.3);
  background: rgba(124, 92, 255, 0.08);
  color: var(--accent);
}

.lab-step:nth-child(3) .lab-step-num {
  border: 1px solid rgba(54, 241, 167, 0.3);
  background: rgba(54, 241, 167, 0.08);
  color: var(--good);
}

.lab-step h4 {
  margin: 0 0 6px;
  font-size: 15px;
}

.lab-step p {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}


/* =========================================
   Trust Section
   ========================================= */

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

.trust-card {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.02);
  text-align: center;
}

.trust-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.trust-icon--tech {
  background: linear-gradient(135deg, rgba(36, 224, 255, 0.10), rgba(124, 92, 255, 0.08));
  border: 1px solid rgba(36, 224, 255, 0.2);
}

.trust-icon--secure {
  background: linear-gradient(135deg, rgba(54, 241, 167, 0.10), rgba(36, 224, 255, 0.08));
  border: 1px solid rgba(54, 241, 167, 0.2);
}

.trust-icon--speed {
  background: linear-gradient(135deg, rgba(124, 92, 255, 0.10), rgba(255, 204, 102, 0.08));
  border: 1px solid rgba(124, 92, 255, 0.2);
}

.trust-card h4 {
  margin: 0 0 8px;
  font-size: 16px;
}

.trust-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
  font-size: 14px;
}


/* =========================================
   Claim / Positionierung
   ========================================= */

.claim {
  text-align: center;
  padding: 0;
}

.claim-text {
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.6px;
  max-width: 800px;
  margin: 0 auto;
}

.claim-text .grad {
  background: linear-gradient(135deg, var(--accent2), var(--accent) 55%, var(--good));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}


/* =========================================
   Sequence Visual (Der richtige Einstieg)
   ========================================= */

.sequence {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 0;
}

.sequence-step {
  flex: 1;
  max-width: 320px;
  padding: 28px 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
  text-align: center;
  position: relative;
}

.sequence-step:first-child { border-radius: var(--radius) 0 0 var(--radius); }
.sequence-step:last-child  { border-radius: 0 var(--radius) var(--radius) 0; }

.sequence-step:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -14px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 14px solid rgba(255, 255, 255, 0.08);
  z-index: 2;
}

.sequence-num {
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 12px;
}

.sequence-step:nth-child(1) .sequence-num { color: var(--accent2); }
.sequence-step:nth-child(2) .sequence-num { color: var(--accent); }
.sequence-step:nth-child(3) .sequence-num { color: var(--good); }

.sequence-step h4 {
  margin: 0 0 6px;
  font-size: 17px;
  letter-spacing: -0.2px;
}

.sequence-step p {
  margin: 0;
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.55;
}

.sequence-hint {
  text-align: center;
  margin-top: 20px;
  font-size: 13px;
  color: var(--faint);
}


/* =========================================
   FAQ Accordion
   ========================================= */

.faq {
  max-width: 780px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

.faq-item {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.02);
  overflow: hidden;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 20px 24px;
  border: none;
  background: none;
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 650;
  text-align: left;
  cursor: pointer;
  transition: background 0.15s ease;
}

.faq-question:hover {
  background: rgba(255, 255, 255, 0.03);
}

.faq-question::after {
  content: "+";
  font-family: var(--mono);
  font-size: 20px;
  color: var(--faint);
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.faq-item.open .faq-question::after {
  transform: rotate(45deg);
  color: var(--accent2);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer-inner {
  padding: 0 24px 20px;
  color: var(--muted);
  line-height: 1.65;
  font-size: 15px;
}


/* =========================================
   Subpage Hero
   ========================================= */

.page-hero {
  padding: 72px 0 56px;
  text-align: center;
  position: relative;
}

.page-hero .h-title {
  max-width: 800px;
  margin: 16px auto 20px;
}

.page-hero .lead {
  max-width: 65ch;
  margin: 0 auto 28px;
  text-align: center;
}


/* =========================================
   Subpage Content Sections
   ========================================= */

.page-section {
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.content-grid h3 {
  font-size: clamp(20px, 2.2vw, 26px);
  margin: 0 0 16px;
  letter-spacing: -0.3px;
  line-height: 1.2;
}

.deliverables {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 24px;
}

.deliverable {
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.02);
}

.deliverable h4 {
  margin: 0 0 6px;
  font-size: 15px;
}

.deliverable p {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.55;
}

.page-pricing {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}

.page-pricing .price-card {
  text-align: left;
}

.format-list {
  display: grid;
  gap: 16px;
  counter-reset: fmt;
}

.format-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.format-item::before {
  counter-increment: fmt;
  content: counter(fmt);
  flex: 0 0 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-size: 14px;
  font-weight: 700;
  border: 1px solid rgba(124, 92, 255, 0.3);
  background: rgba(124, 92, 255, 0.08);
  color: var(--accent);
}

.format-item h4 {
  margin: 0 0 4px;
  font-size: 15px;
}

.format-item p {
  margin: 0;
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.55;
}


/* =========================================
   Responsive
   ========================================= */

@media (max-width: 980px) {
  section { padding: 56px 0; }

  .hero-grid        { grid-template-columns: 1fr; gap: 32px; }
  .stats            { grid-template-columns: 1fr; }
  .problems         { grid-template-columns: 1fr; }
  .showcase         { grid-template-columns: 1fr; gap: 32px; }
  .lab-steps        { grid-template-columns: 1fr; }
  .bento            { grid-template-columns: 1fr; }
  .bento-wide       { grid-row: auto; }
  .products         { grid-template-columns: 1fr; }
  .timeline         { grid-template-columns: 1fr; gap: 40px; padding-top: 0; }
  .timeline::before { display: none; }
  .pricing          { grid-template-columns: 1fr; }
  .trust-grid       { grid-template-columns: 1fr; }
  .contact          { grid-template-columns: 1fr; }
  .sequence         { flex-direction: column; align-items: stretch; }
  .sequence-step    { max-width: none; border-radius: var(--radius) !important; }
  .sequence-step:not(:last-child)::after { display: none; }
  .deliverables     { grid-template-columns: 1fr; }
  .content-grid     { grid-template-columns: 1fr; }
  nav               { display: none; }
  .hero-card        { min-height: auto; }
  .section-header   { margin-bottom: 40px; }
}
