/* ============================================================
   COMMAND BRIDGE — Landing Page
   Aesthetic: Confident, mission-driven. Bold orange brand,
   structural bridge motifs, editorial typography, generous
   whitespace, with utilitarian "operations" details (mono
   labels, status dots, version pills).
   ============================================================ */

:root {
  /* Brand orange — pulled from the Command Bridge feature image */
  --orange-50:  #fff4ec;
  --orange-100: #ffe1cc;
  --orange-200: #ffc299;
  --orange-300: #ffa066;
  --orange-400: #ff8a3d;
  --orange-500: #ff7a26;     /* primary brand */
  --orange-600: #f25f0d;
  --orange-700: #c64a05;
  --orange-800: #8f3500;

  --ink-900: #160a05;
  --ink-800: #2a1610;
  --ink-700: #44261b;
  --ink-600: #6b3d2c;
  --ink-500: #8a5640;
  --ink-400: #b48772;
  --ink-300: #d9bcab;
  --ink-200: #ecdcd0;
  --ink-100: #f6ece5;
  --ink-50:  #fbf6f2;

  --paper:    #fdf9f5;
  --paper-2:  #f7efe7;
  --white:    #ffffff;

  --green:    #1f9d55;
  --red:      #e63946;

  --grad-hero: linear-gradient(115deg, #ff5a1f 0%, #ff7a26 35%, #ff9b4a 70%, #ffba74 100%);
  --grad-soft: linear-gradient(135deg, #fff4ec 0%, #ffe1cc 100%);

  --font-display: 'Bricolage Grotesque', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --font-body:    'Bricolage Grotesque', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --font-mono:    'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;

  --shadow-sm:  0 2px 6px rgba(40, 18, 8, 0.06);
  --shadow-md:  0 12px 32px rgba(40, 18, 8, 0.08);
  --shadow-lg:  0 28px 64px rgba(40, 18, 8, 0.18);
  --shadow-orange: 0 24px 60px rgba(255, 95, 13, 0.32);

  --maxw: 1240px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-feature-settings: "ss01", "ss02";
  background: var(--paper);
  color: var(--ink-900);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.55;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

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

/* ========== Buttons ========== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.01em;
  border: 1px solid transparent;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
  cursor: pointer;
  white-space: nowrap;
}
.btn-lg { padding: 16px 28px; font-size: 16px; }
.btn-primary {
  background: var(--ink-900);
  color: var(--paper);
  box-shadow: 0 6px 0 var(--ink-800), 0 12px 28px rgba(20, 8, 4, 0.18);
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 7px 0 var(--ink-800), 0 16px 36px rgba(20, 8, 4, 0.24); }
.btn-primary:active { transform: translateY(2px); box-shadow: 0 2px 0 var(--ink-800), 0 6px 14px rgba(20,8,4,0.18); }

.btn-ghost {
  background: transparent;
  color: var(--ink-900);
  padding: 12px 16px;
}
.btn-ghost:hover { background: var(--ink-100); }

.btn-outline {
  background: transparent;
  color: var(--ink-900);
  border-color: var(--ink-900);
}
.btn-outline:hover { background: var(--ink-900); color: var(--paper); }

/* ========== Status Strip ========== */
.status-strip {
  background: var(--ink-900);
  color: var(--ink-200);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  border-bottom: 1px solid #000;
}
.status-inner {
  display: flex;
  align-items: center;
  gap: 14px;
  height: 36px;
}
.status-spacer { flex: 1; }
.status-link {
  color: var(--orange-300);
  text-transform: uppercase;
  border: 1px solid rgba(255, 122, 38, 0.3);
  padding: 3px 10px;
  border-radius: 999px;
  transition: background .2s ease, color .2s ease;
}
.status-link:hover { background: var(--orange-500); color: #fff; border-color: var(--orange-500); }
.pulse-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 0 0 rgba(74,222,128,0.7);
  animation: pulse 1.8s infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(74,222,128,0.7); }
  70%  { box-shadow: 0 0 0 10px rgba(74,222,128,0); }
  100% { box-shadow: 0 0 0 0 rgba(74,222,128,0); }
}

/* ========== Navigation ========== */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  transition: background .3s ease, box-shadow .3s ease, backdrop-filter .3s ease;
}
.nav-scrolled {
  background: rgba(253, 249, 245, 0.85);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  box-shadow: 0 1px 0 rgba(20,8,4,0.06);
}
.nav-inner {
  display: flex;
  align-items: center;
  height: 76px;
  gap: 32px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand-mark {
  width: 38px; height: 38px;
  border-radius: 10px;
  box-shadow: 0 6px 14px rgba(255, 95, 13, 0.28);
}
.brand-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 21px;
  letter-spacing: -0.02em;
  color: var(--ink-900);
}
.brand-accent { color: var(--orange-600); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
  font-size: 15px;
  color: var(--ink-700);
}
.nav-links a { position: relative; padding: 6px 0; }
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: 0;
  height: 2px;
  background: var(--orange-500);
  transition: right .25s ease;
}
.nav-links a:hover { color: var(--ink-900); }
.nav-links a:hover::after { right: 0; }

.nav-cta {
  display: flex;
  gap: 8px;
  align-items: center;
}

/* ========== Hero ========== */
.hero {
  position: relative;
  background: var(--grad-hero);
  color: var(--white);
  padding: 80px 0 0;
  overflow: hidden;
  isolation: isolate;
}
.hero-bg {
  position: absolute; inset: 0;
  pointer-events: none;
  z-index: 0;
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at 70% 30%, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at 70% 30%, black 30%, transparent 70%);
}
.hero-bridge {
  position: absolute;
  left: -5%;
  right: -5%;
  bottom: 0;
  width: 110%;
  opacity: 0.85;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  padding-bottom: 80px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 28px;
}
.eyebrow-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 8px rgba(255,255,255,0.9);
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(48px, 7.4vw, 104px);
  line-height: 0.95;
  letter-spacing: -0.035em;
  margin: 0 0 24px;
  color: #fff;
}
.hero-title em {
  font-style: italic;
  font-weight: 500;
  color: rgba(255,255,255,0.92);
}
.hero-accent {
  display: inline-block;
  padding: 0 0.06em;
  background: var(--ink-900);
  color: var(--orange-300);
  border-radius: 14px;
  transform: rotate(-1.2deg);
  font-style: italic;
}

.hero-sub {
  font-size: 19px;
  line-height: 1.55;
  color: rgba(255,255,255,0.92);
  max-width: 560px;
  margin: 0 0 36px;
}

.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.hero-cta .btn-primary {
  background: var(--white);
  color: var(--ink-900);
  box-shadow: 0 6px 0 var(--ink-900), 0 18px 38px rgba(20, 8, 4, 0.32);
}
.hero-cta .btn-primary:hover {
  box-shadow: 0 7px 0 var(--ink-900), 0 22px 48px rgba(20, 8, 4, 0.4);
}
.hero-cta .btn-outline {
  border-color: rgba(255,255,255,0.6);
  color: #fff;
}
.hero-cta .btn-outline:hover {
  background: rgba(0,0,0,0.18);
  color: #fff;
  border-color: #fff;
}

.hero-stats {
  display: flex;
  gap: 40px;
  list-style: none;
  padding: 0; margin: 0;
  border-top: 1px solid rgba(255,255,255,0.22);
  padding-top: 22px;
  max-width: 560px;
}
.hero-stats li {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.hero-stats strong {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 28px;
  letter-spacing: -0.02em;
  color: #fff;
}
.hero-stats span {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.78);
}

/* Hero Visual — Pre-composed chief-in-phone SVG */
.hero-visual {
  position: relative;
  width: 100%;
  height: 680px;
  /* Min-height fallback in case grid track collapses */
  min-height: 520px;
}
.chief-stage {
  position: absolute;
  right: 0;
  top: 50%;
  /* Size: take available width up to a max; stay tall enough to fit
     the SVG's intrinsic 1:1 aspect ratio comfortably. */
  width: min(560px, 100%);
  aspect-ratio: 1 / 1.18;     /* matches the SVG's effective composition */
  max-height: 660px;
  transform: translateY(-50%) rotate(2deg);
  transform-origin: center center;
  filter: drop-shadow(0 50px 80px rgba(20, 8, 4, 0.4));
  animation: floatPhone 7s ease-in-out infinite;
}
@keyframes floatPhone {
  0%, 100% { transform: translateY(-50%) rotate(2deg); }
  50%      { transform: translateY(calc(-50% - 12px)) rotate(1.6deg); }
}
.chief-svg {
  display: block;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

/* Floating cards */
.float-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink-900);
  border-radius: 14px;
  padding: 14px 16px;
  box-shadow: 0 22px 48px rgba(20,8,4,0.28);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.5);
  min-width: 240px;
  z-index: 2;
}
.float-card-1 {
  left: -10px;
  bottom: 6%;
  animation: floatCard1 6s ease-in-out infinite;
}
.float-card-2 {
  right: -30px;
  top: 6%;
  animation: floatCard2 7.5s ease-in-out infinite;
}
@keyframes floatCard1 {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}
@keyframes floatCard2 {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(8px); }
}
.fc-row { display: flex; align-items: center; gap: 8px; }
.fc-dot {
  width: 8px; height: 8px; border-radius: 50%;
}
.fc-dot-green { background: var(--green); box-shadow: 0 0 0 4px rgba(31,157,85,0.16); }
.fc-dot-red   { background: var(--red);   box-shadow: 0 0 0 4px rgba(230,57,70,0.16); animation: pulseRed 1.4s infinite; }
@keyframes pulseRed {
  0%,100% { box-shadow: 0 0 0 4px rgba(230,57,70,0.16); }
  50%     { box-shadow: 0 0 0 8px rgba(230,57,70,0.05); }
}
.fc-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: var(--ink-900);
}
.fc-meta {
  margin-top: 4px;
  font-size: 13px;
  color: var(--ink-600);
}

/* Marquee */
.marquee {
  position: relative;
  z-index: 1;
  background: var(--ink-900);
  color: var(--orange-300);
  padding: 18px 0;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.marquee-track {
  display: flex;
  gap: 36px;
  white-space: nowrap;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 28px;
  letter-spacing: -0.01em;
  animation: scroll 40s linear infinite;
  width: max-content;
}
.marquee-track .dot { color: var(--orange-600); font-size: 18px; line-height: 1.7; }
@keyframes scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ========== Section primitives ========== */
.section-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange-700);
  padding: 6px 12px;
  border: 1px solid var(--orange-200);
  border-radius: 999px;
  background: var(--orange-50);
  margin-bottom: 22px;
}
.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(34px, 4.4vw, 56px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin: 0 0 18px;
  color: var(--ink-900);
  max-width: 22ch;
}
.section-lead {
  font-size: 18px;
  color: var(--ink-700);
  max-width: 60ch;
  margin: 0;
}
.section-head { margin-bottom: 64px; }

/* ========== Why ========== */
.why { padding: 120px 0; background: var(--paper); }
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: start;
}
.why-pillars {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.pillar {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 28px;
  padding: 28px 0;
  border-top: 1px solid var(--ink-200);
  align-items: start;
}
.pillar:last-child { border-bottom: 1px solid var(--ink-200); }
.pillar-num {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.12em;
  color: var(--orange-600);
  font-weight: 700;
  padding-top: 6px;
}
.pillar h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.015em;
  margin: 0 0 6px;
  color: var(--ink-900);
}
.pillar p {
  margin: 0;
  color: var(--ink-700);
  font-size: 16px;
}

/* ========== Features ========== */
.features {
  padding: 120px 0;
  background: var(--ink-900);
  color: var(--paper);
  position: relative;
  overflow: hidden;
}
.features::before {
  content: "";
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--orange-600) 0%, transparent 65%);
  opacity: 0.4;
  filter: blur(40px);
  pointer-events: none;
}
.features .section-tag {
  background: rgba(255, 122, 38, 0.12);
  color: var(--orange-300);
  border-color: rgba(255, 122, 38, 0.3);
}
.features .section-title {
  color: #fff;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.feature {
  position: relative;
  background: linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.01) 100%);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 22px;
  padding: 32px;
  min-height: 240px;
  display: flex;
  flex-direction: column;
  transition: transform .35s ease, border-color .35s ease, background .35s ease;
}
.feature:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 122, 38, 0.5);
  background: linear-gradient(180deg, rgba(255, 122, 38, 0.06) 0%, rgba(255, 122, 38, 0.02) 100%);
}
.feature-lg { grid-column: span 2; }
.feature-icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: rgba(255, 122, 38, 0.14);
  color: var(--orange-300);
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  border: 1px solid rgba(255, 122, 38, 0.22);
}
.feature-icon svg { width: 24px; height: 24px; }
.feature h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.015em;
  margin: 0 0 10px;
  color: #fff;
}
.feature p {
  margin: 0;
  color: rgba(255, 236, 220, 0.78);
  font-size: 15.5px;
}
.feature-tag {
  position: absolute;
  top: 24px; right: 24px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  font-weight: 700;
  color: var(--orange-300);
  padding: 4px 9px;
  border-radius: 999px;
  background: rgba(255, 122, 38, 0.14);
  border: 1px solid rgba(255, 122, 38, 0.32);
}

/* ========== Workflow ========== */
.workflow {
  padding: 140px 0 120px;
  background: var(--paper);
  position: relative;
}
.workflow-rail {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  padding-top: 60px;
}
.rail-line {
  position: absolute;
  top: 38px;
  left: 5%;
  right: 5%;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--orange-400) 0 8px, transparent 8px 16px);
}
.step {
  position: relative;
}
.step-mark {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 76px; height: 76px;
  border-radius: 50%;
  background: var(--paper);
  color: var(--orange-600);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 24px;
  letter-spacing: -0.02em;
  border: 2px solid var(--orange-500);
  margin-bottom: 22px;
  box-shadow: 0 8px 0 var(--orange-100);
}
.step-card {
  background: var(--white);
  border: 1px solid var(--ink-200);
  border-radius: 18px;
  padding: 24px;
  box-shadow: var(--shadow-sm);
}
.step-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.015em;
  margin: 0 0 10px;
  color: var(--ink-900);
}
.step-card p {
  margin: 0 0 14px;
  color: var(--ink-700);
  font-size: 15.5px;
}
.step-meta {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange-700);
  padding-top: 12px;
  border-top: 1px dashed var(--ink-200);
}

/* ========== Callout ========== */
.callout {
  padding: 100px 0;
  background: var(--grad-hero);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.callout::before, .callout::after {
  content: "";
  position: absolute;
  width: 1px;
  background: rgba(255,255,255,0.18);
  top: 0; bottom: 0;
}
.callout::before { left: 8%; }
.callout::after  { right: 8%; }

.callout blockquote {
  margin: 0 auto;
  max-width: 980px;
  font-family: var(--font-display);
  font-weight: 500;
  font-style: italic;
  font-size: clamp(28px, 3.8vw, 48px);
  line-height: 1.18;
  letter-spacing: -0.02em;
  position: relative;
  padding-left: 80px;
}
.quote-mark {
  position: absolute;
  left: 0; top: -20px;
  font-family: var(--font-display);
  font-size: 140px;
  line-height: 1;
  color: rgba(255,255,255,0.4);
}
.callout cite {
  display: block;
  margin-top: 28px;
  font-family: var(--font-mono);
  font-style: normal;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
}

/* ========== Integrations ========== */
.integrations {
  padding: 140px 0;
  background: var(--paper-2);
}
.integrations-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.int-list {
  list-style: none;
  padding: 0;
  margin: 32px 0 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 17px;
  color: var(--ink-800);
}
.int-list li { display: flex; align-items: center; gap: 14px; }
.int-dot {
  width: 10px; height: 10px;
  border-radius: 3px;
  background: var(--orange-500);
  transform: rotate(45deg);
}

.int-visual { display: grid; place-items: center; min-height: 480px; }
.orbit {
  position: relative;
  width: 460px;
  height: 460px;
  display: grid;
  place-items: center;
}
.orbit-core {
  width: 130px; height: 130px;
  border-radius: 30px;
  background: var(--grad-hero);
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-orange);
  z-index: 3;
  position: relative;
}
.orbit-core img {
  width: 86px; height: 86px;
  border-radius: 18px;
}
.orbit-ring {
  position: absolute;
  border: 1.5px dashed var(--orange-300);
  border-radius: 50%;
  animation: spin 40s linear infinite;
}
.orbit-ring-1 { width: 220px; height: 220px; }
.orbit-ring-2 { width: 340px; height: 340px; animation-direction: reverse; animation-duration: 60s; }
.orbit-ring-3 { width: 460px; height: 460px; animation-duration: 80s; }
@keyframes spin { to { transform: rotate(360deg); } }

.orbit-tag {
  position: absolute;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--white);
  color: var(--ink-900);
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--ink-200);
  box-shadow: var(--shadow-sm);
  font-weight: 700;
}
.orbit-tag-1 { top: 22%; left: 12%; }
.orbit-tag-2 { top: 8%;  right: 18%; }
.orbit-tag-3 { bottom: 16%; left: 6%; }
.orbit-tag-4 { bottom: 8%; right: 22%; }
.orbit-tag-5 { top: 50%; right: 0%; }
.orbit-tag-6 { top: 46%; left: 0%; }

/* ========== Trust ========== */
.trust {
  padding: 140px 0;
  background: var(--paper);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.trust-card {
  background: var(--white);
  border: 1px solid var(--ink-200);
  border-radius: 22px;
  padding: 32px 26px;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.trust-card:hover {
  transform: translateY(-4px);
  border-color: var(--orange-300);
  box-shadow: var(--shadow-md);
}
.trust-num {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  font-weight: 700;
  color: var(--orange-600);
  margin-bottom: 18px;
}
.trust-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 19px;
  letter-spacing: -0.015em;
  margin: 0 0 8px;
  color: var(--ink-900);
}
.trust-card p {
  margin: 0;
  color: var(--ink-700);
  font-size: 14.5px;
}

/* ========== CTA ========== */
.cta {
  background: var(--ink-900);
  color: #fff;
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 50%, rgba(255, 122, 38, 0.45), transparent 50%),
    radial-gradient(circle at 20% 90%, rgba(255, 95, 13, 0.35), transparent 55%);
  pointer-events: none;
}
.cta-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  align-items: center;
  gap: 60px;
}
.cta-copy h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(40px, 5.8vw, 80px);
  line-height: 0.98;
  letter-spacing: -0.03em;
  margin: 0 0 18px;
  color: #fff;
}
.cta-copy p {
  font-size: 19px;
  color: rgba(255,255,255,0.78);
  max-width: 560px;
  margin: 0 0 36px;
}
.cta-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 24px;
  background: #fff;
  color: var(--ink-900);
  border-radius: 14px;
  font-family: var(--font-display);
  transition: transform .2s ease, box-shadow .2s ease;
  box-shadow: 0 6px 0 rgba(0,0,0,0.18);
}
.store-btn:hover { transform: translateY(-1px); box-shadow: 0 7px 0 rgba(0,0,0,0.22); }
.store-btn svg { width: 28px; height: 28px; }
.store-btn span { display: flex; flex-direction: column; line-height: 1.1; }
.store-btn small { font-size: 11px; color: var(--ink-600); font-weight: 500; }
.store-btn strong { font-size: 17px; font-weight: 700; letter-spacing: -0.01em; }

.cta-bridge {
  position: relative;
}
.cta-bridge img {
  width: 100%;
  max-width: 320px;
  border-radius: 32px;
  box-shadow: var(--shadow-orange);
  transform: rotate(-4deg);
  transition: transform .4s ease;
}
.cta-bridge img:hover { transform: rotate(0deg) scale(1.02); }

/* ========== FAQ ========== */
.faq { padding: 140px 0; background: var(--paper); }
.faq-list {
  max-width: 880px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--ink-200);
}
.faq details {
  border-bottom: 1px solid var(--ink-200);
  padding: 24px 0;
  transition: padding .2s ease;
}
.faq summary {
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 21px;
  letter-spacing: -0.01em;
  color: var(--ink-900);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.faq summary::after {
  content: "+";
  font-family: var(--font-mono);
  font-size: 24px;
  color: var(--orange-600);
  transition: transform .2s ease;
}
.faq details[open] summary::after { content: "−"; }
.faq summary::-webkit-details-marker { display: none; }
.faq details p {
  margin: 12px 0 0;
  color: var(--ink-700);
  font-size: 16px;
  max-width: 70ch;
}

/* ========== Footer ========== */
.site-footer {
  background: var(--ink-900);
  color: var(--ink-300);
  padding: 80px 0 32px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.foot-logo-row {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 14px;
}
.foot-mark {
  width: 40px; height: 40px;
  border-radius: 10px;
}
.foot-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  color: #fff;
  letter-spacing: -0.02em;
}
.foot-tag {
  margin: 0 0 28px;
  color: rgba(255,255,255,0.6);
  font-size: 15px;
  max-width: 32ch;
}
.foot-by {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  width: fit-content;
}
.foot-by span {
  font-size: 13px;
  line-height: 1.45;
  color: rgba(255,255,255,0.7);
}
.foot-dp {
  height: 56px;
  width: 56px;
  flex-shrink: 0;
}
.foot-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.foot-col h4 {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange-300);
  margin: 0 0 18px;
  font-weight: 700;
}
.foot-col a {
  display: block;
  padding: 6px 0;
  color: rgba(255,255,255,0.7);
  font-size: 15px;
  transition: color .15s ease;
}
.foot-col a:hover { color: #fff; }

.foot-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 28px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.4);
}

/* ========== Reveal Animation ========== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s ease, transform .8s ease;
}
.reveal.is-in {
  opacity: 1;
  transform: translateY(0);
}

/* ========== Responsive ========== */
@media (max-width: 1100px) {
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-lg { grid-column: span 2; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .workflow-rail { grid-template-columns: repeat(2, 1fr); }
  .rail-line { display: none; }
}
@media (max-width: 880px) {
  .nav-links { display: none; }
  .nav-cta .btn-ghost { display: none; }

  .hero { padding-top: 56px; }
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-bottom: 60px;
  }
  .hero-visual {
    height: auto;
    min-height: 440px;
    max-width: 460px;
    margin: 0 auto;
  }
  .chief-stage {
    /* Center on mobile instead of right-anchored */
    right: auto;
    left: 50%;
    transform: translate(-50%, -50%) rotate(1.5deg);
  }
  @keyframes floatPhone {
    0%, 100% { transform: translate(-50%, -50%) rotate(1.5deg); }
    50%      { transform: translate(-50%, calc(-50% - 10px)) rotate(1deg); }
  }
  .float-card-1 { left: 0; bottom: 4%; min-width: 200px; }
  .float-card-2 { right: 0; top: 8%; min-width: 200px; }

  .why-grid, .integrations-grid, .cta-inner, .footer-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-lg { grid-column: auto; }
  .workflow-rail { grid-template-columns: 1fr; gap: 32px; }
  .trust-grid { grid-template-columns: 1fr; }
  .foot-cols { grid-template-columns: repeat(2, 1fr); }

  .orbit { width: 320px; height: 320px; }
  .orbit-ring-3 { width: 320px; height: 320px; }
  .orbit-ring-2 { width: 230px; height: 230px; }
  .orbit-ring-1 { width: 150px; height: 150px; }
  .orbit-core { width: 100px; height: 100px; }
  .orbit-core img { width: 64px; height: 64px; }

  .hero-stats { gap: 24px; flex-wrap: wrap; }
  .marquee-track { font-size: 22px; }
  .foot-bottom { flex-direction: column; gap: 8px; }
}
@media (max-width: 480px) {
  .container { padding: 0 20px; }
  .status-text { display: none; }
  .brand-name { font-size: 17px; }
  .nav-cta .btn-primary { padding: 10px 14px; font-size: 13px; }
  .hero-stats strong { font-size: 22px; }
  .float-card { min-width: 180px; padding: 12px; }
  .fc-meta { font-size: 12px; }
  .callout blockquote { padding-left: 0; }
  .quote-mark { position: static; display: block; line-height: 0.6; margin-bottom: 16px; }
}
