:root {
  --bg: #0b1020;
  --bg-soft: #11182e;
  --panel: #151d36;
  --ink: #eef2ff;
  --muted: #9aa6c7;
  --line: rgba(255, 255, 255, 0.08);
  --accent: #ffb22e;
  --accent-2: #ff7a59;
  --accent-3: #5b8cff;
  --radius: 18px;
  --container: 1120px;
  --font-display: "Sora", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(1200px 600px at 80% -10%, rgba(91, 140, 255, 0.18), transparent 60%),
    radial-gradient(900px 500px at -10% 20%, rgba(255, 122, 89, 0.12), transparent 55%),
    var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { font-family: var(--font-display); line-height: 1.12; margin: 0 0 0.5em; }

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

.container { width: min(var(--container), 92%); margin-inline: auto; }

.skip-link {
  position: absolute; left: -999px; top: 0; background: var(--accent); color: #1a1300;
  padding: 10px 16px; border-radius: 0 0 10px 0; font-weight: 600; z-index: 100;
}
.skip-link:focus { left: 0; }

.eyebrow {
  text-transform: uppercase; letter-spacing: 0.16em; font-size: 0.78rem;
  font-weight: 600; color: var(--accent); margin: 0 0 0.8rem;
}
.hl {
  background: linear-gradient(120deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* HEADER / NAV */
.site-header {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(12px);
  background: rgba(11, 16, 32, 0.72);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 70px; }
.brand { display: flex; align-items: center; gap: 12px; font-family: var(--font-display); font-weight: 700; }
.bee-mark { width: 34px; height: 34px; display: block; flex: none; }
.brand .bee-mark { transition: transform 0.25s ease; }
.brand:hover .bee-mark { transform: rotate(-8deg) scale(1.06); }
.footer-brand .bee-mark { width: 38px; height: 38px; }
.brand-text { font-size: 1.12rem; letter-spacing: -0.01em; }
.brand-sub { color: var(--muted); font-weight: 600; margin-left: 6px; }
.nav-links { display: flex; align-items: center; gap: 28px; font-weight: 500; }
.nav-links a { color: var(--muted); transition: color 0.18s; }
.nav-links a:hover { color: var(--ink); }
.nav-cta {
  background: var(--ink); color: #0b1020 !important; padding: 9px 16px; border-radius: 999px;
  font-weight: 600;
}
.nav-cta:hover { background: var(--accent); }

/* BUTTONS */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 22px; border-radius: 999px; font-weight: 600; font-family: var(--font-display);
  border: 1px solid transparent; cursor: pointer; transition: transform 0.15s, box-shadow 0.2s, background 0.2s;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(120deg, var(--accent), var(--accent-2));
  color: #1a1300; box-shadow: 0 12px 30px -10px rgba(255, 122, 89, 0.6);
}
.btn-ghost { border-color: var(--line); color: var(--ink); background: rgba(255, 255, 255, 0.03); }
.btn-ghost:hover { border-color: rgba(255, 255, 255, 0.25); }
.btn-lg { padding: 16px 30px; font-size: 1.05rem; }
.btn-block { display: flex; width: 100%; margin-top: 18px; }

/* HERO */
.hero { padding: 72px 0 40px; }
.hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; align-items: center; }
.hero-copy h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 800; letter-spacing: -0.02em; }
.lede { color: var(--muted); font-size: 1.12rem; max-width: 36ch; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin: 28px 0 26px; }
.hero-points { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.hero-points li { position: relative; padding-left: 28px; color: var(--ink); }
.hero-points li::before {
  content: "✓"; position: absolute; left: 0; top: 0; color: var(--accent); font-weight: 800;
}

/* HERO ART */
.hero-art { display: grid; place-items: center; min-height: 320px; }
.orbit {
  position: relative; width: 320px; height: 320px; border-radius: 50%;
  background: radial-gradient(circle at 50% 40%, rgba(91, 140, 255, 0.18), transparent 60%);
  border: 1px solid var(--line);
}
.orbit::before, .orbit::after {
  content: ""; position: absolute; inset: 30px; border: 1px dashed rgba(255, 255, 255, 0.1);
  border-radius: 50%; animation: spin 26s linear infinite;
}
.orbit::after { inset: 70px; animation-duration: 18s; animation-direction: reverse; }
@keyframes spin { to { transform: rotate(360deg); } }
.dot { position: absolute; width: 12px; height: 12px; border-radius: 50%; }
.dot-1 { background: var(--accent); top: 18px; left: 50%; }
.dot-2 { background: var(--accent-2); bottom: 40px; left: 28px; }
.dot-3 { background: var(--accent-3); bottom: 60px; right: 30px; }
.orbit-card {
  position: absolute; background: var(--panel); border: 1px solid var(--line);
  padding: 10px 14px; border-radius: 12px; font-size: 0.82rem; font-weight: 600;
  box-shadow: 0 16px 40px -18px rgba(0, 0, 0, 0.7); white-space: nowrap;
}
.card-a { top: 30px; left: -28px; }
.card-b { bottom: 36px; right: -24px; color: var(--accent); }
.card-c { bottom: -10px; left: 30px; }

/* STRIP */
.strip { border-block: 1px solid var(--line); background: rgba(255, 255, 255, 0.02); }
.strip-inner {
  display: flex; align-items: center; justify-content: center; gap: 22px;
  padding: 16px 0; color: var(--muted); font-family: var(--font-display); font-weight: 600;
  letter-spacing: 0.04em; text-transform: uppercase; font-size: 0.85rem; flex-wrap: wrap;
}

/* SECTIONS */
.section { padding: 84px 0; }
.section-alt { background: var(--bg-soft); border-block: 1px solid var(--line); }
.section-head { max-width: 640px; margin-bottom: 48px; }
.section-head h2 { font-size: clamp(1.8rem, 3.6vw, 2.6rem); }
.section-sub { color: var(--muted); font-size: 1.08rem; }

/* CARDS */
.cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.card {
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px; transition: transform 0.2s, border-color 0.2s;
}
.card:hover { transform: translateY(-4px); border-color: rgba(255, 178, 46, 0.35); }
.card-icon {
  width: 52px; height: 52px; display: grid; place-items: center; font-size: 1.5rem;
  border-radius: 14px; background: rgba(255, 178, 46, 0.12); margin-bottom: 18px;
}
.card h3 { font-size: 1.3rem; }
.card p { color: var(--muted); }
.card-list { list-style: none; padding: 0; margin: 18px 0 0; display: grid; gap: 8px; }
.card-list li { position: relative; padding-left: 22px; font-size: 0.95rem; }
.card-list li::before { content: "→"; position: absolute; left: 0; color: var(--accent); }

/* STEPS */
.steps {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; counter-reset: step;
}
.step {
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px;
}
.step-num {
  display: grid; place-items: center; width: 40px; height: 40px; border-radius: 12px;
  font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; margin-bottom: 14px;
  background: linear-gradient(120deg, var(--accent), var(--accent-2)); color: #1a1300;
}
.step h3 { font-size: 1.15rem; }
.step p { color: var(--muted); font-size: 0.96rem; margin: 0; }

/* ABOUT */
.about-grid { display: grid; grid-template-columns: 1.3fr 0.7fr; gap: 48px; align-items: start; }
.about-grid h2 { font-size: clamp(1.8rem, 3.4vw, 2.4rem); }
.about-grid p { color: var(--muted); }
.about-stats { display: flex; gap: 30px; margin-top: 30px; flex-wrap: wrap; }
.stat { display: grid; }
.stat-num { font-family: var(--font-display); font-weight: 800; font-size: 1.7rem; color: var(--ink); }
.stat-label { color: var(--muted); font-size: 0.9rem; }
.about-card {
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px;
}
.about-card h3 { font-size: 1.2rem; }
.check-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.check-list li { position: relative; padding-left: 30px; color: var(--ink); }
.check-list li::before {
  content: "✓"; position: absolute; left: 0; top: 0; width: 20px; height: 20px;
  display: grid; place-items: center; border-radius: 6px; font-size: 0.75rem; font-weight: 800;
  background: rgba(255, 178, 46, 0.15); color: var(--accent);
}

/* CTA */
.cta { text-align: center; }
.cta-inner { max-width: 640px; margin-inline: auto; }
.cta h2 { font-size: clamp(2rem, 4vw, 2.8rem); }
.cta p { color: var(--muted); font-size: 1.1rem; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin: 28px 0 16px; }
.cta-email { font-size: 0.95rem; }
.cta-email a { color: var(--accent); }

/* FOOTER */
.site-footer { border-top: 1px solid var(--line); background: var(--bg-soft); padding-top: 50px; }
.footer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; padding-bottom: 36px; }
.footer-brand { display: flex; gap: 14px; align-items: flex-start; }
.footer-brand strong { font-family: var(--font-display); }
.footer-brand p { color: var(--muted); margin: 4px 0 0; max-width: 34ch; }
.footer-meta { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.footer-meta p { margin: 0; color: var(--muted); font-size: 0.95rem; }
.footer-meta strong { color: var(--ink); }
.footer-meta a { color: var(--accent); }
.footer-bar {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  border-top: 1px solid var(--line); padding: 20px 0; color: var(--muted); font-size: 0.88rem;
  flex-wrap: wrap;
}

/* RESPONSIVE */
@media (max-width: 920px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-art { order: -1; min-height: 260px; }
  .cards { grid-template-columns: 1fr; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .nav-links a:not(.nav-cta) { display: none; }
  .steps { grid-template-columns: 1fr; }
  .footer-meta { grid-template-columns: 1fr; }
  .section { padding: 60px 0; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto; }
  .btn:hover, .card:hover, .split-panel:hover, .brand-feature:hover { transform: none; }
}

/* ============================================================
   GROUP HUB / SPLIT  (added for two-company homepage)
   ============================================================ */
:root { --pink: #ff4d8d; }

.eyebrow-pink { color: var(--pink); }

.btn-pink {
  background: linear-gradient(120deg, var(--pink), var(--accent-2));
  color: #2a0014; box-shadow: 0 12px 30px -10px rgba(255, 77, 141, 0.55);
}

/* HERO HUB */
.hero-hub { padding: 64px 0 72px; }
.hub-head { text-align: center; max-width: 760px; margin: 0 auto 44px; }
.hub-head h1 { font-size: clamp(2.1rem, 5vw, 3.4rem); font-weight: 800; letter-spacing: -0.02em; }
.lede-center { color: var(--muted); font-size: 1.12rem; max-width: 52ch; margin: 0 auto; }

/* SPLIT PANELS */
.split {
  display: grid; grid-template-columns: 1fr auto 1fr; gap: 22px; align-items: stretch;
}
.split-panel {
  position: relative; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 34px; background: var(--panel); display: flex; flex-direction: column;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.split-panel:hover { transform: translateY(-4px); box-shadow: 0 26px 60px -30px rgba(0, 0, 0, 0.8); }
.panel-a {
  background:
    radial-gradient(600px 300px at 20% -20%, rgba(255, 77, 141, 0.18), transparent 60%),
    var(--panel);
}
.panel-a:hover { border-color: rgba(255, 77, 141, 0.45); }
.panel-b {
  background:
    radial-gradient(600px 300px at 80% -20%, rgba(255, 178, 46, 0.18), transparent 60%),
    var(--panel);
}
.panel-b:hover { border-color: rgba(255, 178, 46, 0.45); }
.panel-tag {
  text-transform: uppercase; letter-spacing: 0.14em; font-size: 0.74rem; font-weight: 700;
  color: var(--muted); margin: 0 0 12px;
}
.panel-a .panel-tag { color: var(--pink); }
.panel-b .panel-tag { color: var(--accent); }
.split-panel h2 { font-size: clamp(1.4rem, 2.4vw, 1.9rem); }
.split-panel > p { color: var(--muted); }
.panel-list { list-style: none; padding: 0; margin: 16px 0 22px; display: grid; gap: 8px; }
.panel-list li { position: relative; padding-left: 22px; font-size: 0.96rem; }
.panel-list li::before { content: "→"; position: absolute; left: 0; color: var(--pink); }
.split-panel .btn-block { margin-top: auto; }
.split-or {
  align-self: center; font-family: var(--font-display); font-weight: 700; color: var(--muted);
  background: var(--bg); border: 1px solid var(--line); border-radius: 999px;
  width: 46px; height: 46px; display: grid; place-items: center; font-size: 0.85rem;
}
.brand-pill {
  display: inline-block; align-self: flex-start; margin: 4px 0 22px;
  padding: 7px 14px; border-radius: 999px; font-size: 0.85rem; font-weight: 600;
  background: rgba(255, 178, 46, 0.14); color: var(--accent); border: 1px solid rgba(255, 178, 46, 0.3);
}
.brand-pill strong { font-weight: 700; }

/* COMPANY SECTIONS */
.company { padding: 84px 0; }
.company-alt { background: var(--bg-soft); border-block: 1px solid var(--line); }
.company-head { max-width: 680px; margin-bottom: 44px; }
.company-head h2 { font-size: clamp(1.9rem, 3.6vw, 2.6rem); }

/* BLURBS */
.blurb-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-bottom: 32px; }
.blurb { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; }
.blurb h3 { font-size: 1.2rem; }
.blurb p { color: var(--muted); margin: 0; }

/* CHIPS */
.chips { list-style: none; padding: 0; margin: 0 0 40px; display: flex; flex-wrap: wrap; gap: 10px; }
.chips li {
  border: 1px solid var(--line); border-radius: 999px; padding: 8px 16px; font-size: 0.9rem;
  font-weight: 500; background: rgba(255, 255, 255, 0.03);
}

/* CLIENTS */
.clients { border-top: 1px solid var(--line); padding-top: 28px; }
.clients-label {
  text-transform: uppercase; letter-spacing: 0.16em; font-size: 0.75rem; font-weight: 600;
  color: var(--muted); margin: 0 0 16px;
}
.clients-list {
  list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 12px 28px;
}
.clients-list li {
  font-family: var(--font-display); font-weight: 600; font-size: 1.05rem; color: var(--ink);
  opacity: 0.78; transition: opacity 0.18s, color 0.18s;
}
.clients-list li:hover { opacity: 1; color: var(--pink); }

/* BRAND FEATURE (customerjourneys.ai) */
.brand-feature {
  display: flex; align-items: center; gap: 22px; margin-bottom: 32px;
  background: linear-gradient(120deg, rgba(91, 140, 255, 0.12), rgba(255, 178, 46, 0.1));
  border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 30px;
  transition: transform 0.2s, border-color 0.2s;
}
.brand-feature:hover { transform: translateY(-3px); border-color: rgba(91, 140, 255, 0.5); }
.brand-feature-mark {
  flex: none; width: 58px; height: 58px; border-radius: 16px; display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 800; font-size: 1.3rem; color: #0b1020;
  background: conic-gradient(from 140deg, var(--accent), var(--accent-2), var(--accent-3), var(--accent));
}
.brand-feature-body { flex: 1; }
.brand-feature-tag {
  text-transform: uppercase; letter-spacing: 0.14em; font-size: 0.72rem; font-weight: 700;
  color: var(--accent-3); margin: 0 0 4px;
}
.brand-feature-body h3 { font-size: 1.35rem; margin: 0 0 6px; }
.brand-feature-body p { color: var(--muted); margin: 0; }
.brand-feature-cta {
  flex: none; font-family: var(--font-display); font-weight: 700; color: var(--accent-3);
  white-space: nowrap;
}

.steps-tight { margin-top: 8px; }
.footer-office { font-size: 0.92rem; margin-top: 10px !important; }
.footer-office a { color: var(--accent); }

@media (max-width: 920px) {
  .split { grid-template-columns: 1fr; }
  .split-or { justify-self: center; }
  .blurb-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .brand-feature { flex-direction: column; text-align: center; }
  .clients-list { gap: 10px 18px; }
  .company { padding: 60px 0; }
}
