/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
img, svg { display: block; max-width: 100%; }
button { cursor: pointer; font: inherit; border: none; background: none; }

/* ── Tokens ────────────────────────────────────────────────── */
:root {
  --r360-ink:          #0B1118;
  --r360-graphite:     #161D26;
  --r360-slate:        #2A323C;
  --r360-steel:        #4A5563;
  --r360-fog:          #8A95A1;
  --r360-mist:         #D6D3CB;
  --r360-bone:         #F6F4EF;
  --r360-paper:        #FFFFFF;

  --r360-signal:       #7B5BFF;
  --r360-signal-deep:  #5638E0;
  --r360-signal-soft:  #C2B5FF;
  --r360-signal-tint:  #ECE7FF;

  --r360-cipher:       #00C2B0;
  --r360-cipher-deep:  #008C7E;

  --r360-critical:     #FF2D5F;
  --r360-warn:         #FFB820;
  --r360-verified:     #1FB67D;
  --r360-chain:        #FF4DC4;

  --r360-font-display: "Space Grotesk", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --r360-font-text:    "Geist", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --r360-font-mono:    "Geist Mono", "JetBrains Mono", "SF Mono", Menlo, monospace;

  --r360-radius-sm:    4px;
  --r360-radius-md:    6px;
  --r360-radius-lg:    10px;
  --r360-radius-xl:    16px;

  --r360-shadow-card:  0 1px 3px rgba(11,17,24,.06), 0 8px 24px rgba(11,17,24,.06);
  --r360-shadow-pop:   0 8px 32px rgba(11,17,24,.18);

  --r360-ease:         cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* ── Base ──────────────────────────────────────────────────── */
html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  background: var(--r360-bone);
  color: var(--r360-ink);
  font-family: var(--r360-font-text);
  font-weight: 400;
  line-height: 1.625;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--r360-font-display);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

a {
  color: var(--r360-signal-deep);
  text-decoration: none;
  transition: color 120ms var(--r360-ease);
}
a:hover { color: var(--r360-signal); }
a:focus-visible {
  outline: 2px solid var(--r360-signal);
  outline-offset: 3px;
  border-radius: 2px;
}

code, pre, .mono {
  font-family: var(--r360-font-mono);
}

/* ── Layout ────────────────────────────────────────────────── */
.container {
  max-width: 1152px;
  margin: 0 auto;
  padding: 0 24px;
}

.container--narrow {
  max-width: 768px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Eyebrow ───────────────────────────────────────────────── */
.eyebrow {
  font-family: var(--r360-font-mono);
  font-weight: 500;
  font-size: 12px;
  line-height: 1.333;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--r360-fog);
  display: block;
  margin-bottom: 16px;
}
.eyebrow--signal { color: var(--r360-signal); }

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--r360-font-text);
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  padding: 12px 20px;
  border-radius: var(--r360-radius-sm);
  border: 1px solid transparent;
  transition:
    background 120ms var(--r360-ease),
    color 120ms var(--r360-ease),
    border-color 120ms var(--r360-ease),
    transform 120ms var(--r360-ease);
  text-decoration: none;
  cursor: pointer;
  min-height: 44px;
  white-space: nowrap;
}
.btn:active { transform: scale(0.97); }
.btn:focus-visible {
  outline: 2px solid var(--r360-signal-soft);
  outline-offset: 3px;
}

.btn--primary {
  background: var(--r360-signal);
  color: var(--r360-paper);
  border-color: var(--r360-signal);
}
.btn--primary:hover {
  background: var(--r360-signal-deep);
  border-color: var(--r360-signal-deep);
  color: var(--r360-paper);
}

.btn--secondary {
  background: transparent;
  color: var(--r360-ink);
  border-color: var(--r360-ink);
}
.btn--secondary:hover {
  background: var(--r360-mist);
  color: var(--r360-ink);
}

.btn--ghost {
  background: transparent;
  color: var(--r360-bone);
  border-color: rgba(246,244,239,0.3);
}
.btn--ghost:hover {
  border-color: var(--r360-bone);
  color: var(--r360-bone);
}

/* ── Site Header ───────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--r360-bone);
  border-bottom: 1px solid var(--r360-mist);
  transition: box-shadow 240ms var(--r360-ease);
}
.site-header.scrolled {
  box-shadow: 0 1px 16px rgba(11,17,24,.08);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  max-width: 1152px;
  margin: 0 auto;
  padding: 0 24px;
}

.site-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}
.site-logo:hover { opacity: 0.85; }
.site-logo:focus-visible { outline-offset: 6px; }

.site-nav {
  display: flex;
  align-items: center;
}
.site-nav ul {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-nav li { list-style: none; }
.site-nav a {
  font-family: var(--r360-font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--r360-steel);
  text-decoration: none;
  transition: color 120ms var(--r360-ease);
}
.site-nav a:hover { color: var(--r360-ink); }
.site-nav .nav-current a {
  color: var(--r360-ink);
  position: relative;
}
.site-nav .nav-current a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--r360-signal);
  border-radius: 1px;
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.site-header__signin {
  font-size: 14px;
  font-weight: 500;
  color: var(--r360-steel);
  text-decoration: none;
  transition: color 120ms var(--r360-ease);
}
.site-header__signin:hover { color: var(--r360-ink); }

/* ── Hero ──────────────────────────────────────────────────── */
.hero {
  background: var(--r360-ink);
  color: var(--r360-bone);
  padding: 96px 0 112px;
  position: relative;
  overflow: hidden;
}

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

.hero__content { position: relative; z-index: 1; }

.hero__eyebrow {
  font-family: var(--r360-font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--r360-signal);
  display: block;
  margin-bottom: 24px;
}

.hero__headline {
  font-family: var(--r360-font-display);
  font-size: clamp(36px, 4.5vw, 60px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--r360-bone);
  margin-bottom: 24px;
}

.hero__sub {
  font-size: 18px;
  line-height: 1.65;
  color: var(--r360-fog);
  margin-bottom: 40px;
  max-width: 480px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.hero__visual {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Rotating aperture background mark */
.hero__aperture {
  width: 480px;
  height: 480px;
  opacity: 0.06;
  position: absolute;
  right: -120px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}
@media (prefers-reduced-motion: no-preference) {
  .hero__aperture {
    animation: aperture-spin 16s linear infinite;
  }
}
@keyframes aperture-spin {
  from { transform: translateY(-50%) rotate(0deg); }
  to   { transform: translateY(-50%) rotate(360deg); }
}

/* Terminal demo card */
.hero__terminal {
  background: var(--r360-graphite);
  border: 1px solid var(--r360-slate);
  border-radius: var(--r360-radius-lg);
  padding: 24px;
  width: 100%;
  max-width: 440px;
  box-shadow: var(--r360-shadow-pop);
  position: relative;
  z-index: 1;
}

.terminal__bar {
  display: flex;
  gap: 6px;
  margin-bottom: 20px;
}
.terminal__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--r360-slate);
}
.terminal__dot:nth-child(1) { background: var(--r360-critical); opacity: 0.7; }
.terminal__dot:nth-child(2) { background: var(--r360-warn); opacity: 0.7; }
.terminal__dot:nth-child(3) { background: var(--r360-verified); opacity: 0.7; }

.terminal__label {
  font-family: var(--r360-font-mono);
  font-size: 11px;
  color: var(--r360-fog);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.terminal__row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px solid var(--r360-slate);
}
.terminal__row:last-child { border-bottom: none; }

.terminal__key {
  font-family: var(--r360-font-mono);
  font-size: 11px;
  color: var(--r360-fog);
  min-width: 72px;
  flex-shrink: 0;
  letter-spacing: 0.04em;
}
.terminal__val {
  font-family: var(--r360-font-mono);
  font-size: 12px;
  color: var(--r360-bone);
  word-break: break-all;
}
.terminal__val--signal  { color: var(--r360-signal); }
.terminal__val--cipher  { color: var(--r360-cipher); }
.terminal__val--critical { color: var(--r360-critical); }
.terminal__val--warn    { color: var(--r360-warn); }
.terminal__val--verified { color: var(--r360-verified); }

/* ── Trust bar ─────────────────────────────────────────────── */
.trust-bar {
  background: var(--r360-bone);
  border-bottom: 1px solid var(--r360-mist);
  padding: 20px 0;
}
.trust-bar__inner {
  max-width: 1152px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.trust-bar__label {
  font-family: var(--r360-font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--r360-fog);
  flex-shrink: 0;
}
.trust-bar__services {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-items: center;
}
.trust-bar__service {
  font-family: var(--r360-font-mono);
  font-size: 12px;
  color: var(--r360-steel);
  letter-spacing: 0.02em;
}

/* ── Features ──────────────────────────────────────────────── */
.features {
  padding: 96px 0;
  background: var(--r360-bone);
}
.features__header {
  text-align: center;
  margin-bottom: 64px;
}
.features__title {
  font-size: clamp(26px, 3vw, 40px);
  letter-spacing: -0.015em;
  color: var(--r360-ink);
}
.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature-card {
  background: var(--r360-paper);
  border: 1px solid var(--r360-mist);
  border-radius: var(--r360-radius-lg);
  padding: 32px;
  box-shadow: var(--r360-shadow-card);
  transition:
    box-shadow 240ms var(--r360-ease),
    transform 240ms var(--r360-ease);
}
.feature-card:hover {
  box-shadow: var(--r360-shadow-pop);
  transform: translateY(-2px);
}

.feature-card__icon {
  width: 32px;
  height: 32px;
  margin-bottom: 20px;
  color: var(--r360-signal);
}
.feature-card__title {
  font-size: 17px;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.feature-card__body {
  font-size: 15px;
  line-height: 1.65;
  color: var(--r360-steel);
}

/* ── How it works ──────────────────────────────────────────── */
.how-it-works {
  background: var(--r360-graphite);
  color: var(--r360-bone);
  padding: 96px 0;
}
.how-it-works__header {
  text-align: center;
  margin-bottom: 64px;
}
.how-it-works__title {
  font-size: clamp(26px, 3vw, 40px);
  color: var(--r360-bone);
  letter-spacing: -0.015em;
}
.how-it-works__header .eyebrow { color: var(--r360-signal); }

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}
.steps::before {
  content: "";
  position: absolute;
  top: 23px;
  left: calc(12.5% + 4px);
  right: calc(12.5% + 4px);
  height: 1px;
  background: var(--r360-slate);
  pointer-events: none;
}

.step__num {
  font-family: var(--r360-font-mono);
  font-size: 11px;
  font-weight: 500;
  color: var(--r360-signal);
  letter-spacing: 0.08em;
  width: 48px;
  height: 48px;
  border: 1px solid var(--r360-slate);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  background: var(--r360-graphite);
  position: relative;
  z-index: 1;
}
.step__title {
  font-size: 16px;
  font-weight: 600;
  color: var(--r360-bone);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.step__body {
  font-size: 14px;
  line-height: 1.65;
  color: var(--r360-fog);
}

/* ── CTA section ───────────────────────────────────────────── */
.cta-section {
  background: var(--r360-ink);
  color: var(--r360-bone);
  padding: 112px 24px;
  text-align: center;
}
.cta-section__eyebrow {
  color: var(--r360-signal);
  display: block;
  margin-bottom: 24px;
}
.cta-section__title {
  font-size: clamp(28px, 4vw, 48px);
  color: var(--r360-bone);
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.cta-section__target {
  color: var(--r360-signal);
}
.cta-section__body {
  font-size: 18px;
  color: var(--r360-fog);
  margin-bottom: 40px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.cta-section__actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Footer ────────────────────────────────────────────────── */
.site-footer {
  background: var(--r360-ink);
  border-top: 1px solid var(--r360-slate);
  padding: 48px 0 32px;
}
.site-footer__inner {
  max-width: 1152px;
  margin: 0 auto;
  padding: 0 24px;
}
.site-footer__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.site-footer__logo { margin-bottom: 12px; }
.site-footer__tagline {
  font-family: var(--r360-font-mono);
  font-size: 12px;
  color: var(--r360-fog);
  letter-spacing: 0.04em;
}
.site-footer__links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  align-items: flex-start;
  padding-top: 4px;
}
.site-footer__links a {
  font-family: var(--r360-font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--r360-signal-soft);
  text-decoration: none;
  transition: color 120ms var(--r360-ease);
}
.site-footer__links a:hover { color: var(--r360-signal); }
.site-footer__links a:focus-visible { outline-color: var(--r360-signal-soft); }

.site-footer__bottom {
  border-top: 1px solid var(--r360-slate);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.site-footer__copy {
  font-family: var(--r360-font-mono);
  font-size: 11px;
  color: var(--r360-fog);
  letter-spacing: 0.04em;
}
.site-footer__disclaimer {
  font-family: var(--r360-font-mono);
  font-size: 11px;
  color: var(--r360-steel);
  letter-spacing: 0.02em;
}

/* ── Post / Page ───────────────────────────────────────────── */
.post-layout {
  max-width: 720px;
  margin: 0 auto;
  padding: 64px 24px 96px;
}
.post-header {
  margin-bottom: 48px;
}
.post-title {
  font-size: clamp(28px, 4vw, 44px);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  line-height: 1.15;
}
.post-meta {
  font-family: var(--r360-font-mono);
  font-size: 12px;
  color: var(--r360-fog);
  letter-spacing: 0.04em;
}
.post-feature-image {
  margin-bottom: 48px;
}
.post-feature-image img {
  width: 100%;
  border-radius: var(--r360-radius-md);
}
.post-content {
  font-size: 17px;
  line-height: 1.75;
  color: var(--r360-ink);
}
.post-content h2 {
  font-size: 26px;
  margin: 48px 0 16px;
}
.post-content h3 {
  font-size: 20px;
  margin: 32px 0 12px;
}
.post-content p { margin-bottom: 24px; }
.post-content ul,
.post-content ol { margin: 0 0 24px 24px; }
.post-content li { margin-bottom: 8px; }
.post-content a { color: var(--r360-signal-deep); }
.post-content a:hover { color: var(--r360-signal); }
.post-content code {
  font-family: var(--r360-font-mono);
  font-size: 0.875em;
  background: var(--r360-signal-tint);
  color: var(--r360-signal-deep);
  padding: 2px 6px;
  border-radius: 3px;
}
.post-content pre {
  background: var(--r360-graphite);
  color: var(--r360-bone);
  padding: 24px;
  border-radius: var(--r360-radius-md);
  overflow-x: auto;
  margin-bottom: 24px;
  font-size: 14px;
  line-height: 1.65;
}
.post-content pre code {
  background: none;
  color: inherit;
  padding: 0;
}
.post-content blockquote {
  border-left: 3px solid var(--r360-signal);
  padding-left: 20px;
  margin: 0 0 24px;
  color: var(--r360-steel);
  font-style: italic;
}
.post-content img {
  border-radius: var(--r360-radius-md);
  margin-bottom: 24px;
  width: 100%;
}
.post-content hr {
  border: none;
  border-top: 1px solid var(--r360-mist);
  margin: 48px 0;
}

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 960px) {
  .hero__inner {
    grid-template-columns: 1fr;
  }
  .hero__visual { display: none; }
  .hero { padding: 72px 24px 88px; }

  .features__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }
  .steps::before { display: none; }

  .adv-caps__grid {
    grid-template-columns: 1fr;
  }

  .perf-strip__inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 0;
  }
  .perf-stat + .perf-stat::before {
    display: none;
  }
  .perf-stat:nth-child(odd) { border-right: 1px solid var(--r360-mist); }

  .fleet-section__inner {
    grid-template-columns: 1fr;
  }
  .fleet-section__visual { display: none; }
}

@media (max-width: 640px) {
  .site-nav { display: none; }

  .features__grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }

  .perf-strip__inner {
    grid-template-columns: 1fr;
  }
  .perf-stat:nth-child(odd) { border-right: none; }
  .perf-stat { padding: 16px 0; }
  .perf-stat + .perf-stat {
    border-top: 1px solid var(--r360-mist);
  }

  .site-footer__top { flex-direction: column; }
  .site-footer__bottom { flex-direction: column; align-items: flex-start; }

  .trust-bar__inner { flex-direction: column; align-items: flex-start; gap: 12px; }
}

/* ── Dev status badge & hero meta ──────────────────────────── */
.hero__eyebrow-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}
.hero__eyebrow-row .hero__eyebrow {
  margin-bottom: 0;
}

.dev-badge {
  font-family: var(--r360-font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--r360-warn);
  background: rgba(255,184,32,.12);
  border: 1px solid rgba(255,184,32,.3);
  border-radius: 3px;
  padding: 3px 8px;
  white-space: nowrap;
  flex-shrink: 0;
}

.hero__sub--meta {
  font-size: 14px;
  line-height: 1.6;
  color: var(--r360-fog);
  margin-top: -16px;
  margin-bottom: 40px;
}
.hero__target {
  color: var(--r360-signal);
  font-weight: 500;
}

/* ── Features sub ───────────────────────────────────────────── */
.features__sub {
  font-family: var(--r360-font-mono);
  font-size: 12px;
  color: var(--r360-fog);
  letter-spacing: 0.04em;
  margin-top: 12px;
}

/* ── Advanced Capabilities ─────────────────────────────────── */
.adv-caps {
  background: var(--r360-bone);
  border-top: 1px solid var(--r360-mist);
  padding: 96px 0;
}
.adv-caps__header {
  text-align: center;
  margin-bottom: 64px;
}
.adv-caps__title {
  font-size: clamp(26px, 3vw, 40px);
  letter-spacing: -0.015em;
  color: var(--r360-ink);
}
.adv-caps__sub {
  font-size: 17px;
  line-height: 1.65;
  color: var(--r360-steel);
  max-width: 560px;
  margin: 16px auto 0;
}
.adv-caps__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.adv-cap {
  background: var(--r360-paper);
  border: 1px solid var(--r360-mist);
  border-top: 2px solid var(--r360-signal);
  border-radius: var(--r360-radius-lg);
  padding: 40px;
  box-shadow: var(--r360-shadow-card);
  transition: box-shadow 240ms var(--r360-ease);
}
.adv-cap:hover {
  box-shadow: var(--r360-shadow-pop);
}
.adv-cap__icon {
  width: 28px;
  height: 28px;
  margin-bottom: 20px;
  color: var(--r360-signal);
}
.adv-cap__title {
  font-size: 18px;
  letter-spacing: -0.01em;
  color: var(--r360-ink);
  margin-bottom: 12px;
}
.adv-cap__body {
  font-size: 15px;
  line-height: 1.7;
  color: var(--r360-steel);
}

/* ── Performance strip ─────────────────────────────────────── */
.perf-strip {
  background: var(--r360-bone);
  border-top: 1px solid var(--r360-mist);
  border-bottom: 1px solid var(--r360-mist);
  padding: 56px 24px;
}
.perf-strip__inner {
  max-width: 1152px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.perf-stat {
  text-align: center;
  padding: 0 32px;
  position: relative;
}
.perf-stat + .perf-stat::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 44px;
  background: var(--r360-mist);
}
.perf-stat__num {
  display: block;
  font-family: var(--r360-font-display);
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 600;
  color: var(--r360-signal);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  line-height: 1;
}
.perf-stat__label {
  display: block;
  font-family: var(--r360-font-mono);
  font-size: 11px;
  color: var(--r360-steel);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.4;
}

/* ── Fleet / MSP section ───────────────────────────────────── */
.fleet-section {
  background: var(--r360-ink);
  padding: 96px 0;
}
.fleet-section__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.fleet-section__content { position: relative; }
.fleet-section__title {
  font-size: clamp(26px, 3vw, 40px);
  color: var(--r360-bone);
  letter-spacing: -0.015em;
  margin-bottom: 16px;
}
.fleet-section__body {
  font-size: 17px;
  line-height: 1.65;
  color: var(--r360-fog);
  margin-bottom: 28px;
}
.fleet-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.fleet-list li {
  font-size: 14px;
  line-height: 1.55;
  color: var(--r360-fog);
  padding-left: 20px;
  position: relative;
}
.fleet-list li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--r360-cipher);
}
.fleet-section__visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Connector SDK grid */
.connector-grid {
  width: 100%;
  max-width: 380px;
}
.connector-grid__label {
  font-family: var(--r360-font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--r360-fog);
  margin-bottom: 12px;
}
.connector-tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.connector-tile {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 12px 14px;
  background: rgba(246,244,239,.05);
  border: 1px solid rgba(246,244,239,.1);
  border-radius: var(--r360-radius-md);
}
.connector-tile__name {
  font-family: var(--r360-font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--r360-bone);
  line-height: 1.2;
}
.connector-tile__cat {
  font-family: var(--r360-font-mono);
  font-size: 10px;
  color: var(--r360-cipher);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ── .eyebrow--cipher variant ──────────────────────────────── */
.eyebrow--cipher { color: var(--r360-cipher); }

/* ── Interest form ─────────────────────────────────────────── */
.interest-form {
  max-width: 420px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.interest-form__fields {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.interest-form__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: left;
}

.interest-form__label {
  font-size: 13px;
  font-weight: 600;
  color: var(--r360-mist);
  letter-spacing: 0.01em;
}

.interest-form__input {
  background: var(--r360-graphite);
  border: 1px solid var(--r360-slate);
  border-radius: var(--r360-radius-sm);
  color: var(--r360-bone);
  font-family: var(--r360-font-text);
  font-size: 15px;
  padding: 11px 14px;
  width: 100%;
  transition: border-color 120ms var(--r360-ease);
}

.interest-form__input::placeholder {
  color: var(--r360-steel);
}

.interest-form__input:focus {
  outline: none;
  border-color: var(--r360-signal);
  box-shadow: 0 0 0 3px rgba(123, 91, 255, 0.15);
}

.interest-form__submit {
  width: 100%;
}

.interest-form__message {
  font-size: 14px;
  line-height: 1.5;
  min-height: 20px;
  margin: 0;
  text-align: center;
}

.interest-form__message--success {
  color: var(--r360-verified);
}

.interest-form__message--error {
  color: var(--r360-critical);
}

/* ── Koenig editor image widths ────────────────────────────── */
.kg-width-wide {
  width: 85vw;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.kg-width-full {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

/* ── Reduced motion ────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
