*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --green:        #00ff00;
  --green-dim:    #00aa00;
  --green-glow:   rgba(0, 255, 0, 0.15);
  --green-glow2:  rgba(0, 255, 0, 0.05);
  --green-glow3:  rgba(0, 255, 0, 0.08);
  --amber:        #ffaa00;
  --amber-glow:   rgba(255, 170, 0, 0.08);
  --bg:           #0a0a0a;
  --bg-card:      #111111;
  --bg-card2:     #141414;
  --bg-card3:     #0e0e0e;
  --border:       #1e1e1e;
  --border-hi:    #2a2a2a;
  --border-hi2:   #333333;
  --white:        #ffffff;
  --off-white:    #e8e8e8;
  --muted:        #7a7a7a;
  --muted2:       #444444;
  --muted3:       #999999;
  --radius:       8px;
  --radius-sm:    5px;
  --max:          1140px;
  --section-pad:  120px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Courier New', 'Consolas', 'Monaco', monospace;
  background: var(--bg);
  color: var(--white);
  line-height: 1.65;
}

a { color: var(--green); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ── NAV ─────────────────────────────────────── */
nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(10,10,10,0.94);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
}
.nav-inner {
  max-width: var(--max); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 62px; padding: 0 28px;
}
.nav-brand {
  display: flex; align-items: center; gap: 10px;
  color: var(--green); font-weight: 700; font-size: 0.95rem; letter-spacing: 0.04em;
}
.nav-brand-icon {
  width: 28px; height: 28px;
  border: 1.5px solid var(--green); border-radius: 5px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.68rem; font-weight: 900; color: var(--green); letter-spacing: -0.02em;
  box-shadow: 0 0 10px var(--green-glow);
}
.nav-links { display: flex; gap: 32px; margin-left: auto; margin-right: 24px; }
.nav-links a { color: var(--muted); font-size: 0.83rem; transition: color 0.15s; }
.nav-links a:hover { color: var(--white); text-decoration: none; }
.nav-links a.is-active { color: var(--green); }
.nav-right { display: flex; align-items: center; gap: 12px; }
.nav-cta {
  background: var(--green); color: #000; border: none;
  padding: 8px 18px; border-radius: var(--radius-sm);
  font-family: inherit; font-size: 0.82rem; font-weight: 700;
  cursor: pointer; letter-spacing: 0.02em;
  display: inline-flex; align-items: center; gap: 6px;
  transition: background 0.15s;
}
.nav-cta:hover { background: #00dd00; text-decoration: none; }

/* ── LAYOUT ──────────────────────────────────── */
.container { max-width: var(--max); margin: 0 auto; padding: 0 28px; }
.section { padding: var(--section-pad) 0; }
.section-alt { background: var(--bg-card3); }

.label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--green);
  margin-bottom: 20px;
}
.label::before { content: '//'; color: var(--green-dim); }

h2 {
  font-size: clamp(1.6rem, 3.2vw, 2.3rem);
  font-weight: 700; color: var(--white);
  line-height: 1.18; margin-bottom: 20px;
  letter-spacing: -0.01em;
}
.sub {
  font-size: 1rem; color: var(--muted3);
  max-width: 580px; line-height: 1.8;
}

.check   { color: var(--green); }
.cross   { color: var(--muted2); }
.partial { color: #666; }
.soon    { color: var(--amber); font-size: 0.75rem; }

/* ── HERO ────────────────────────────────────── */
.hero {
  padding: 120px 0 100px;
  border-bottom: 1px solid var(--border);
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; top: -200px; left: -100px;
  width: 800px; height: 800px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,255,0,0.035) 0%, transparent 65%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute; bottom: -100px; right: -50px;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,255,0,0.02) 0%, transparent 65%);
  pointer-events: none;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  border: 1px solid var(--border-hi2); border-radius: 99px;
  padding: 6px 16px; font-size: 0.76rem; color: var(--muted);
  margin-bottom: 36px;
}
.hero-eyebrow .dot { color: var(--green); animation: blink 2s step-end infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }
h1 {
  font-size: clamp(2.2rem, 5.5vw, 3.8rem);
  font-weight: 700; line-height: 1.1;
  letter-spacing: -0.025em;
  max-width: 760px; margin-bottom: 28px;
}
h1 em { font-style: normal; color: var(--green); text-shadow: 0 0 30px var(--green-glow); }
.hero-sub {
  font-size: 1.08rem; color: var(--muted3);
  max-width: 560px; line-height: 1.8; margin-bottom: 48px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.btn-primary {
  background: var(--green); color: #000;
  padding: 13px 26px; border-radius: var(--radius-sm);
  font-family: inherit; font-size: 0.9rem; font-weight: 700;
  border: none; cursor: pointer;
  display: inline-flex; align-items: center; gap: 8px;
  transition: background 0.15s, box-shadow 0.15s;
  box-shadow: 0 0 20px rgba(0,255,0,0.2);
}
.btn-primary:hover { background: #00dd00; text-decoration: none; box-shadow: 0 0 30px rgba(0,255,0,0.3); }
.btn-secondary {
  background: transparent; color: var(--off-white);
  padding: 13px 26px; border-radius: var(--radius-sm);
  font-family: inherit; font-size: 0.9rem; font-weight: 700;
  border: 1px solid var(--border-hi2); cursor: pointer;
  display: inline-flex; align-items: center; gap: 8px;
  transition: border-color 0.15s, color 0.15s;
}
.btn-secondary:hover { border-color: var(--green); color: var(--green); text-decoration: none; }

/* ── CONTEXT BAR ─────────────────────────────── */
.context-bar {
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
  background: var(--bg-card);
}
.context-bar-inner {
  max-width: var(--max); margin: 0 auto; padding: 0 28px;
  display: flex; flex-wrap: wrap; gap: 0; align-items: center;
}
.cb-item {
  font-size: 0.79rem; color: var(--muted);
  display: flex; align-items: center; gap: 8px;
  padding: 4px 28px 4px 0;
}
.cb-item:not(:last-child) { border-right: 1px solid var(--border-hi); margin-right: 28px; }
.cb-item img { opacity: 0.5; width: 14px; height: 14px; }
.cb-dot { color: var(--green); }

/* ── PROBLEM ─────────────────────────────────── */
.problem-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px; margin-top: 56px;
}
.problem-col {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 36px;
}
.problem-col h3 {
  font-size: 0.78rem; color: var(--muted); margin-bottom: 24px;
  letter-spacing: 0.1em; text-transform: uppercase;
}
.problem-col ul { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.problem-col ul li {
  font-size: 0.88rem; color: var(--muted3);
  padding-left: 20px; position: relative; line-height: 1.6;
}
.problem-col ul li::before { content: '—'; position: absolute; left: 0; color: var(--muted2); }
.problem-col.good { border-color: rgba(0,255,0,0.15); }
.problem-col.good h3 { color: var(--green); }
.problem-col.good ul li::before { content: '✓'; color: var(--green); }
.problem-col.good ul li { color: var(--off-white); }

/* ── FEATURE GRID ────────────────────────────── */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden; margin-top: 56px;
}
.feature-card {
  background: var(--bg-card); padding: 36px 36px 40px;
  transition: background 0.15s;
}
.feature-card:hover { background: var(--bg-card2); }
.feature-icon { font-size: 1.6rem; margin-bottom: 18px; }
.feature-card h3 {
  font-size: 0.88rem; color: var(--green); margin-bottom: 14px;
  letter-spacing: 0.03em; text-transform: uppercase;
}
.feature-card ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.feature-card ul li {
  font-size: 0.82rem; color: var(--muted3);
  padding-left: 16px; position: relative; line-height: 1.55;
}
.feature-card ul li::before { content: '>'; position: absolute; left: 0; color: var(--muted2); font-size: 0.72rem; top: 2px; }

/* ── HOW IT WORKS ────────────────────────────── */
.steps { display: flex; flex-direction: column; gap: 0; margin-top: 56px; max-width: 740px; }
.step {
  display: grid; grid-template-columns: 56px 1fr;
  gap: 24px; padding: 32px 0;
  border-bottom: 1px solid var(--border);
}
.step:last-child { border-bottom: none; }
.step-num {
  width: 44px; height: 44px;
  border: 1px solid var(--green-dim); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem; font-weight: 700; color: var(--green);
  flex-shrink: 0; margin-top: 2px;
  background: var(--green-glow2);
}
.step h3 { font-size: 0.92rem; color: var(--white); margin-bottom: 8px; font-weight: 600; }
.step p { font-size: 0.85rem; color: var(--muted3); line-height: 1.7; }
.step blockquote {
  margin-top: 12px; padding: 12px 18px;
  border-left: 2px solid var(--green);
  background: var(--green-glow2);
  font-size: 0.82rem; color: var(--muted3); font-style: italic;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

/* ── INTEGRATIONS ────────────────────────────── */
.integ-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px; margin-top: 52px;
}
.integ-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 22px 16px 20px;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  transition: border-color 0.2s, background 0.2s;
}
.integ-card:hover { border-color: var(--border-hi2); background: var(--bg-card2); }
.integ-card img { width: 32px; height: 32px; opacity: 0.65; transition: opacity 0.2s; }
.integ-card:hover img { opacity: 1; }
.integ-card svg { width: 32px; height: 32px; opacity: 0.65; transition: opacity 0.2s; }
.integ-card:hover svg { opacity: 1; }
.integ-card span { font-size: 0.72rem; color: var(--muted); text-align: center; line-height: 1.4; }
.integ-note { margin-top: 24px; font-size: 0.8rem; color: var(--muted2); }

/* ── SECURITY ────────────────────────────────── */
.security-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 16px; margin-top: 52px;
}
.sec-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 30px 28px 32px;
}
.sec-card-icon { font-size: 1.3rem; margin-bottom: 14px; }
.sec-card h3 { font-size: 0.85rem; color: var(--white); margin-bottom: 10px; font-weight: 600; }
.sec-card p { font-size: 0.82rem; color: var(--muted3); line-height: 1.7; }
.sec-highlight {
  margin-top: 28px; padding: 28px 32px;
  border: 1px solid rgba(0,255,0,0.2);
  border-radius: var(--radius);
  background: var(--green-glow2);
}
.sec-highlight-label { font-size: 0.7rem; color: var(--green); letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 10px; }
.sec-highlight p { font-size: 0.88rem; color: var(--muted3); line-height: 1.8; }
.sec-highlight strong { color: var(--white); }

/* ── USE CASE FLOWS ──────────────────────────── */
.uc-cards {
  display: flex; flex-direction: column; gap: 24px;
  margin-top: 56px;
}
.uc-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
}
.uc-header {
  padding: 28px 32px 26px;
  display: flex; gap: 32px; justify-content: space-between; align-items: flex-start;
  border-bottom: 1px solid var(--border);
}
.uc-meta { flex: 1; min-width: 0; }
.uc-num {
  font-size: 0.68rem; color: var(--green); letter-spacing: 0.14em;
  text-transform: uppercase; margin-bottom: 8px; display: flex; align-items: center; gap: 8px;
}
.uc-num::before { content: '//'; color: var(--green-dim); }
.uc-title { font-size: 1.05rem; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.uc-desc { font-size: 0.84rem; color: var(--muted3); line-height: 1.7; max-width: 520px; }
.uc-tags { display: flex; gap: 6px; flex-wrap: wrap; flex-shrink: 0; padding-top: 4px; }
.uc-tag {
  font-size: 0.66rem; padding: 3px 10px; border-radius: 99px;
  border: 1px solid var(--border-hi); color: var(--muted);
  white-space: nowrap;
}

/* ── FLOW STRIP ──────────────────────────────── */
.uc-flow {
  padding: 24px 32px 28px;
  overflow-x: auto;
  background: var(--bg);
}
.flow-steps {
  display: flex; align-items: stretch; gap: 0;
  min-width: max-content;
}
.flow-step {
  min-width: 118px; max-width: 140px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 12px 14px;
  display: flex; flex-direction: column; align-items: center;
  gap: 7px; text-align: center;
  background: var(--bg-card);
  position: relative;
}
.flow-step.is-auto { border-color: rgba(0,255,0,0.18); }
.flow-step.is-you  { border-color: rgba(255,170,0,0.25); }
.flow-step-icon { font-size: 1.6rem; line-height: 1; }
.flow-step-name {
  font-size: 0.71rem; color: var(--off-white);
  line-height: 1.35; font-weight: 600;
}
.flow-step-sub {
  font-size: 0.65rem; color: var(--muted);
  line-height: 1.3;
}
.flow-badge {
  font-size: 0.58rem; letter-spacing: 0.07em; text-transform: uppercase;
  padding: 2px 8px; border-radius: 99px; font-weight: 700;
  margin-top: 2px;
}
.flow-badge.auto { background: rgba(0,255,0,0.1); color: var(--green); border: 1px solid rgba(0,255,0,0.2); }
.flow-badge.you  { background: rgba(255,170,0,0.1); color: var(--amber); border: 1px solid rgba(255,170,0,0.2); }
.flow-connector {
  display: flex; align-items: center; justify-content: center;
  color: var(--muted2); padding: 0 6px; flex-shrink: 0;
  font-size: 0.9rem; margin-top: -10px;
  position: relative;
}
.flow-connector::before, .flow-connector::after {
  content: '';
  display: block; height: 1px; width: 10px;
  background: var(--border-hi);
}
.flow-connector-arrow {
  font-size: 0.75rem; color: var(--border-hi2); padding: 0 2px;
}
.uc-legend {
  padding: 12px 32px;
  border-top: 1px solid var(--border);
  display: flex; gap: 20px; align-items: center;
}
.uc-legend-item {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.7rem; color: var(--muted);
}
.uc-legend-dot {
  width: 8px; height: 8px; border-radius: 50%;
}
.uc-legend-dot.auto { background: var(--green); }
.uc-legend-dot.you  { background: var(--amber); }

/* ── COMPARISON TABLE ────────────────────────── */
.table-wrap { overflow-x: auto; margin-top: 52px; }
table {
  width: 100%; border-collapse: collapse;
  font-size: 0.82rem;
}
thead tr { border-bottom: 1px solid var(--border-hi); }
th {
  padding: 14px 18px; text-align: left;
  color: var(--muted); font-weight: 600;
  white-space: nowrap;
}
th.col-us { color: var(--green); }
td { padding: 14px 18px; border-bottom: 1px solid var(--border); color: var(--muted); white-space: nowrap; }
tr:last-child td { border-bottom: none; }
tr:hover td { background: var(--bg-card); }
td.col-us { color: var(--white); font-weight: 600; }
.table-note { font-size: 0.75rem; color: var(--muted2); margin-top: 14px; }

/* ── QUICKSTART ──────────────────────────────── */
.quickstart-wrap { margin-top: 52px; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; align-items: start; }
pre {
  background: #000; border: 1px solid var(--border-hi);
  border-radius: var(--radius); padding: 28px;
  font-size: 0.8rem; color: #bbb; overflow-x: auto; line-height: 2;
}
pre .cm { color: var(--muted2); }
pre .kw { color: var(--green); }
.qs-notes { display: flex; flex-direction: column; gap: 20px; }
.qs-note { display: flex; gap: 16px; align-items: flex-start; }
.qs-note-num {
  flex-shrink: 0; width: 24px; height: 24px;
  background: var(--green); color: #000;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 0.72rem; font-weight: 700; margin-top: 1px;
}
.qs-note p { font-size: 0.85rem; color: var(--muted3); line-height: 1.7; }
.qs-note code { color: var(--green); }

/* ── INSTALL BAR ─────────────────────────────── */
.install-bar {
  border-top: 1px solid var(--border-hi);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
  background: #000;
  scroll-margin-top: 80px; /* offset for sticky nav */
  margin-bottom: 1px; /* hairline gap before context bar */
}
.install-bar-inner {
  max-width: var(--max); margin: 0 auto; padding: 0 28px;
  display: flex; align-items: center; gap: 20px;
}
.install-bar-label {
  font-size: 0.72rem; color: var(--green-dim);
  letter-spacing: 0.1em; white-space: nowrap; flex-shrink: 0;
}
.install-bar-cmd {
  font-family: inherit; font-size: 0.8rem; color: var(--green);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  flex: 1; min-width: 0;
}
.install-bar-copy {
  background: var(--border-hi2); border: 1px solid var(--border-hi2);
  border-radius: var(--radius-sm); color: var(--muted);
  font-family: inherit; font-size: 0.72rem; font-weight: 600;
  padding: 5px 14px; cursor: pointer; flex-shrink: 0;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.install-bar-copy:hover,
.install-bar-copy.copied { background: var(--green); color: #000; border-color: var(--green); }
.install-bar-link {
  font-size: 0.75rem; color: var(--muted2); white-space: nowrap; flex-shrink: 0;
}
.install-bar-link:hover { color: var(--green); text-decoration: none; }

/* ── MANAGED ─────────────────────────────────── */
.managed-simple { margin-top: 48px; }
.managed-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 40px;
  max-width: 520px;
}
.managed-price {
  font-size: 2.4rem; font-weight: 700; color: var(--white);
  letter-spacing: -0.02em; margin-bottom: 16px; line-height: 1;
}
.managed-price span { font-size: 1rem; color: var(--muted); font-weight: 400; letter-spacing: 0; }
.managed-card p { font-size: 0.85rem; color: var(--muted3); line-height: 1.75; }
.hetzner-badge {
  display: inline-flex; align-items: center; gap: 10px;
  border: 1px solid var(--border-hi2); border-radius: var(--radius-sm);
  padding: 8px 14px; font-size: 0.76rem; color: var(--muted3);
  margin-bottom: 24px; background: var(--bg);
  letter-spacing: 0.02em;
}
.hetzner-badge-flag { font-size: 1.05rem; line-height: 1; }
.hetzner-badge img { width: 14px; height: 14px; opacity: 0.55; }
.managed-promo {
  display: flex; align-items: flex-start; gap: 14px;
  margin: 20px 0 4px; padding: 16px 18px;
  border: 1px solid var(--amber); border-radius: var(--radius-sm);
  background: var(--amber-glow);
}
.managed-promo-tag {
  flex-shrink: 0; font-size: 1.4rem; line-height: 1.2;
}
.managed-promo-body { font-size: 0.85rem; color: var(--off-white); line-height: 1.6; }
.managed-promo-body strong { color: var(--amber); font-weight: 700; }
.managed-promo-code {
  display: inline-block; margin: 6px 0 4px;
  padding: 3px 10px; border: 1px dashed var(--amber);
  border-radius: 4px; background: rgba(255, 170, 0, 0.06);
  font-weight: 700; letter-spacing: 0.08em; color: var(--amber);
}
.managed-promo-note { color: var(--muted3); }
.enterprise-line {
  margin-top: 24px; font-size: 0.83rem; color: var(--muted2); line-height: 1.6;
}
.enterprise-line a { color: var(--muted); }
.enterprise-line a:hover { color: var(--green); }

/* ── DEVELOPER SECTION ───────────────────────── */
.dev-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; margin-top: 52px; align-items: start; }
.dev-list { list-style: none; display: flex; flex-direction: column; gap: 16px; }
.dev-list li { display: flex; gap: 12px; font-size: 0.85rem; color: var(--muted3); line-height: 1.6; }
.dev-list li .arrow { color: var(--green); flex-shrink: 0; }
.dev-box {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px;
}
.dev-box h3 { font-size: 0.8rem; color: var(--green); margin-bottom: 20px; letter-spacing: 0.1em; text-transform: uppercase; }
.agent-list { display: flex; flex-direction: column; gap: 0; }
.agent-row {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.8rem; padding: 11px 0;
  border-bottom: 1px solid var(--border);
}
.agent-row:last-child { border-bottom: none; }
.agent-name { color: var(--off-white); }
.agent-tools { color: var(--muted); font-size: 0.74rem; }
.contribute-banner {
  margin-top: 48px; padding: 28px 32px;
  border: 1px solid rgba(0,255,0,0.15);
  border-radius: var(--radius);
  background: var(--green-glow2);
  display: flex; gap: 20px; align-items: flex-start;
}
.contribute-arrow {
  color: var(--green); font-size: 1.1rem; flex-shrink: 0; margin-top: 2px;
}
.contribute-banner h3 {
  font-size: 0.88rem; color: var(--white); margin-bottom: 8px; font-weight: 600;
}
.contribute-banner p {
  font-size: 0.83rem; color: var(--muted3); line-height: 1.7;
}

/* ── FOOTER CTA ──────────────────────────────── */
.footer-cta {
  text-align: center; padding: 120px 28px;
  position: relative; overflow: hidden;
}
.footer-cta::before {
  content: '';
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,255,0,0.04) 0%, transparent 70%);
  pointer-events: none;
}
.footer-cta h2 { max-width: 480px; margin: 0 auto 18px; }
.footer-cta p { color: var(--muted3); font-size: 0.92rem; max-width: 400px; margin: 0 auto 44px; line-height: 1.75; }
.footer-cta .actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

footer {
  border-top: 1px solid var(--border);
  padding: 28px;
  text-align: center;
}
.footer-social { display: flex; gap: 20px; justify-content: center; margin-top: 18px; }
.footer-social a { color: var(--muted2); display: flex; }
.footer-social a:hover { color: var(--muted3); }
.footer-social svg { width: 18px; height: 18px; fill: currentColor; }
.footer-links { display: flex; gap: 28px; justify-content: center; flex-wrap: wrap; }
.footer-links a { font-size: 0.78rem; color: var(--muted2); }
.footer-links a:hover { color: var(--muted3); text-decoration: none; }
.footer-domain { font-size: 0.78rem; color: var(--muted2); margin-bottom: 16px; letter-spacing: 0.06em; }

/* ── PROFESSIONAL SERVICES ───────────────────── */
.svc-grid { grid-template-columns: repeat(4, 1fr); }
.svc-grid .feature-card { display: flex; flex-direction: column; }
.svc-grid .feature-card ul { flex: 1; }
.svc-card-cta {
  display: inline-block; margin-top: 22px;
  font-size: 0.78rem; font-weight: 700; color: var(--green);
  letter-spacing: 0.02em;
}
.svc-card-cta:hover { text-decoration: none; color: #00dd00; }
.svc-contact-domains {
  display: flex; gap: 10px; flex-wrap: wrap; justify-content: center;
  margin-top: 28px; position: relative;
}
.svc-contact-domains a {
  font-size: 0.74rem; color: var(--muted3);
  border: 1px solid var(--border-hi2); border-radius: 99px;
  padding: 6px 16px; transition: border-color 0.15s, color 0.15s;
}
.svc-contact-domains a:hover { border-color: var(--green); color: var(--green); text-decoration: none; }

/* ── SERVICES OPTION CARDS ───────────────────── */
.option-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 44px auto 20px;
  max-width: 680px;
  width: 100%;
}
.option-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.option-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.35;
  margin: 0;
}
.option-card p {
  font-size: 0.85rem;
  color: var(--muted3);
  line-height: 1.7;
  flex: 1;
  margin: 0;
}

/* ── COMING SOON TEASER ──────────────────────── */
.coming-soon {
  padding: var(--section-pad) 24px;
  text-align: center;
  background: var(--bg-card3);
}
.coming-soon .label { display: inline-flex; margin-bottom: 20px; }
.coming-soon h2 { max-width: 420px; margin: 0 auto 14px; }
.coming-soon p {
  color: var(--muted3);
  font-size: 0.92rem;
  max-width: 360px;
  margin: 0 auto;
  line-height: 1.75;
}

/* ── RESPONSIVE ──────────────────────────────── */
@media (max-width: 1024px) {
  .integ-grid    { grid-template-columns: repeat(4, 1fr); }
  .feature-grid  { grid-template-columns: repeat(2, 1fr); }
  .security-grid { grid-template-columns: repeat(2, 1fr); }
  .uc-header     { flex-direction: column; gap: 16px; }
}
@media (max-width: 768px) {
  :root { --section-pad: 72px; }
  .nav-links       { display: none; }
  .problem-grid    { grid-template-columns: 1fr; }
  .feature-grid    { grid-template-columns: 1fr; }
  .integ-grid      { grid-template-columns: repeat(3, 1fr); }
  .security-grid   { grid-template-columns: 1fr; }
  .quickstart-wrap { grid-template-columns: 1fr; }
  .option-grid     { grid-template-columns: 1fr; }
  .dev-grid        { grid-template-columns: 1fr; }

  .uc-header       { padding: 20px 20px 18px; }
  .uc-flow         { padding: 20px 20px 24px; }
  .uc-legend       { padding: 10px 20px; }
  .install-bar-inner { flex-wrap: wrap; gap: 10px; }
  .contribute-banner { flex-direction: column; gap: 12px; }
}
@media (max-width: 480px) {
  .integ-grid { grid-template-columns: repeat(2, 1fr); }
  h1 { font-size: 2rem; }
}
