/* Space SSD — offset stagger, split hero, z-pattern cards */
:root {
  --space: #0f172a;
  --space-light: #1e2a45;
  --cyan: #22d3ee;
  --cyan-dark: #0ea5e9;
  --pearl: #f8f5f1;
  --silver: #94a3b8;
  --text: #0f172a;
  --text-light: #475569;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--text); background: var(--pearl);
  line-height: 1.65;
}

nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 10%; background: var(--white);
  position: sticky; top: 0; z-index: 100;
  background: rgba(248,245,241,0.92); backdrop-filter: blur(4px);
  border-bottom: 1px solid rgba(0,0,0,0.03);
}
nav .brand { font-size: 0.9rem; font-weight: 700; color: var(--space); letter-spacing: -0.3px; }
nav .brand .s { color: var(--cyan); }
nav .sl { display: flex; gap: 18px; }
nav .sl a { font-size: 0.68rem; font-weight: 500; color: var(--text-light); text-decoration: none; text-transform: uppercase; letter-spacing: 1.5px; transition: 0.2s; }
nav .sl a:hover { color: var(--cyan-dark); }

/* Split hero */
.hero-split {
  display: flex; min-height: 75vh;
  padding: 0 10%; background: var(--pearl);
}
.hero-l { flex: 1; display: flex; align-items: center; justify-content: flex-end; padding-right: 30px; }
.hero-r { flex: 1; display: flex; align-items: center; padding-left: 30px; }
.hero-l h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; letter-spacing: -0.5px; line-height: 1.08; max-width: 360px; text-align: right; }
.hero-l h1 .hl { color: var(--cyan); }
.hero-l p { text-align: right; font-size: 0.82rem; color: var(--text-light); max-width: 360px; margin-top: 10px; margin-left: auto; }
.hero-shape { width: 200px; height: 200px; background: linear-gradient(135deg, var(--cyan), var(--cyan-dark)); border-radius: 30% 70% 70% 30%; transform: rotate(-15deg); flex-shrink: 0; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.1); font-size: 4rem; font-weight: 800; }

/* Band */
.band-s {
  padding: 40px 10%; background: linear-gradient(135deg, var(--space), var(--space-light));
  text-align: center;
}
.band-s p { color: rgba(255,255,255,0.3); font-size: 0.65rem; text-transform: uppercase; letter-spacing: 3px; }
.band-s h3 { color: var(--white); font-size: clamp(1rem, 1.8vw, 1.3rem); font-weight: 500; max-width: 600px; margin: 5px auto 0; }
.band-s .hl { color: var(--cyan); font-weight: 700; }

/* Offset stagger cards */
.stagger { padding: 70px 10%; }
.stag-inner { max-width: 800px; margin: 0 auto; }
.stag-c { display: flex; gap: 30px; margin-bottom: 60px; }
.stag-c:last-child { margin-bottom: 0; }
.stag-c.off-right { flex-direction: row-reverse; margin-left: 60px; }
.stag-c.off-left { margin-right: 60px; }
.stag-box { flex: 0 0 160px; height: 140px; border-radius: 4px; background: linear-gradient(135deg, var(--space), var(--space-light)); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.15); font-size: 2.5rem; font-weight: 800; }
.stag-txt { flex: 1; }
.stag-txt .st-tag { font-size: 0.55rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2.5px; color: var(--cyan); margin-bottom: 3px; }
.stag-txt h3 { font-size: 0.95rem; margin-bottom: 5px; }
.stag-txt p { font-size: 0.8rem; color: var(--text-light); line-height: 1.65; }

/* Arrow flow */
.flow { padding: 50px 10%; background: var(--white); }
.flow-inner { max-width: 800px; margin: 0 auto; display: flex; align-items: flex-start; gap: 0; }
.flow-step { text-align: center; flex: 1; }
.flow-step .fs-n { font-size: 0.55rem; font-weight: 700; color: var(--cyan); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 2px; }
.flow-step .fs-t { font-size: 0.75rem; font-weight: 600; color: var(--text); }
.flow-step .fs-d { font-size: 0.7rem; color: var(--text-light); margin-top: 2px; }
.flow-arrow { flex: 0 0 24px; display: flex; align-items: center; justify-content: center; color: var(--cyan); font-size: 1rem; padding-top: 10px; }

/* Round badges */
.badges { padding: 50px 10%; background: var(--pearl); display: flex; justify-content: center; gap: 50px; flex-wrap: wrap; }
.badge { text-align: center; }
.badge .bc {
  width: 90px; height: 90px; border-radius: 50%;
  background: var(--white); border: 2px solid var(--cyan);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 6px; font-size: 1.2rem; font-weight: 700; color: var(--space);
}
.badge .bl { font-size: 0.7rem; color: var(--text-light); font-weight: 500; }

/* Testimonial */
.tquote { padding: 60px 10%; background: var(--white); text-align: center; }
.tquote blockquote { max-width: 560px; margin: 0 auto; font-size: clamp(1rem, 1.8vw, 1.2rem); color: var(--text); line-height: 1.6; font-style: italic; }
.tquote blockquote .qm { color: var(--cyan); font-size: 2rem; line-height: 0; vertical-align: -8px; }
.tquote cite { display: block; margin-top: 14px; font-style: normal; font-size: 0.75rem; color: var(--text-light); }

/* CTA */
.cta {
  padding: 70px 10%; background: linear-gradient(135deg, var(--space), var(--space-light)); text-align: center;
}
.cta h2 { font-size: clamp(1.2rem, 2.2vw, 1.5rem); color: var(--white); margin-bottom: 5px; }
.cta p { color: var(--silver); font-size: 0.82rem; margin-bottom: 18px; }
.cta .btn {
  display: inline-block; padding: 10px 28px; border-radius: 4px;
  background: var(--cyan); color: var(--space); text-decoration: none;
  font-size: 0.72rem; font-weight: 700; transition: 0.3s;
}
.cta .btn:hover { box-shadow: 0 0 20px rgba(34,211,238,0.3); }

/* Footer */
footer { padding: 30px 10%; background: var(--space); }
.ft-c { max-width: 800px; margin: 0 auto; display: flex; gap: 40px; }
.ft-col { flex: 1; }
.ft-col h4 { font-size: 0.6rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: var(--silver); margin-bottom: 6px; }
.ft-col p, .ft-col a { font-size: 0.72rem; color: rgba(255,255,255,0.3); text-decoration: none; display: block; line-height: 1.6; }
.ft-col a:hover { color: var(--cyan); }
.ft-bot { text-align: center; padding-top: 16px; margin-top: 16px; border-top: 1px solid rgba(255,255,255,0.05); font-size: 0.6rem; color: rgba(255,255,255,0.15); }

/* Pages */
.p-hero { padding: 70px 10% 20px; background: var(--white); }
.p-hero h1 { font-size: clamp(1.4rem, 2.5vw, 1.8rem); color: var(--space); margin-bottom: 4px; }
.p-hero h1 .hl { color: var(--cyan); }
.p-hero p { color: var(--text-light); font-size: 0.85rem; max-width: 460px; }
.p-body { padding: 16px 10% 70px; background: var(--white); }
.p-bi { max-width: 700px; }
.p-bi h2 { font-size: 0.95rem; margin: 22px 0 6px; color: var(--space); }
.p-bi h2 .a { color: var(--cyan); }
.p-bi p, .p-bi li { font-size: 0.82rem; color: var(--text-light); line-height: 1.75; }
.p-bi ul { padding-left: 16px; margin: 4px 0 10px; }
.cf { max-width: 520px; }
.cf .fg { margin-bottom: 12px; }
.cf label { display: block; font-size: 0.68rem; font-weight: 600; margin-bottom: 2px; }
.cf input, .cf textarea { width: 100%; padding: 8px 12px; border: 1px solid rgba(0,0,0,0.05); border-radius: 4px; font-size: 0.85rem; font-family: inherit; background: var(--pearl); }
.cf input:focus, .cf textarea:focus { outline: none; border-color: var(--cyan); }
.cf textarea { height: 70px; }
.cf .btn { padding: 10px 28px; border: none; border-radius: 4px; background: var(--cyan); color: var(--space); font-size: 0.72rem; font-weight: 700; cursor: pointer; transition: 0.3s; }
.cf .btn:hover { box-shadow: 0 0 20px rgba(34,211,238,0.2); }
.cd { margin-top: 28px; font-size: 0.8rem; color: var(--text-light); line-height: 1.6; border-top: 1px solid rgba(0,0,0,0.04); padding-top: 18px; }
.cd strong { color: var(--text); }

@media (max-width: 768px) {
  .hero-split { flex-direction: column; min-height: auto; padding: 50px 8%; }
  .hero-l { padding-right: 0; justify-content: center; }
  .hero-l h1 { text-align: center; }
  .hero-l p { text-align: center; margin: 10px auto 0; }
  .hero-r { padding-left: 0; justify-content: center; margin-top: 30px; }
  .stag-c { flex-direction: column !important; margin-left: 0 !important; margin-right: 0 !important; text-align: center; }
  .stag-box { align-self: center; }
  .flow-inner { flex-wrap: wrap; justify-content: center; gap: 16px; }
  .flow-step { flex: 0 0 100%; }
  .flow-arrow { display: none; }
  .ft-c { flex-direction: column; gap: 20px; }
}
