/* Cloud02 edge landing — self-contained (no hero image deps) */
:root {
  --navy: #0f172a;
  --beige: #f2ebe2;
  --bg: #faf9f7;
  --bg-white: #ffffff;
  --text: #0f172a;
  --muted: #64748b;
  --link: #1e3a5f;
  --border: #e2e8f0;
  --header-bg: #0f172a;
  --header-text: #f1f5f9;
  --header-muted: #94a3b8;
  --max: 68rem;
  --font: "Segoe UI", system-ui, -apple-system, sans-serif;
  --radius: 12px;
}

*,
*::before,
*::after { box-sizing: border-box; }

body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg-white);
  color: var(--text);
  line-height: 1.65;
}

a { color: var(--link); text-decoration: none; }
a:hover { text-decoration: underline; }

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
}
.skip-link:focus {
  left: 1rem;
  top: 1rem;
  z-index: 100;
  background: #fff;
  padding: 0.5rem 0.75rem;
}

.site-header { background: var(--header-bg); color: var(--header-text); }
.site-topbar { border-bottom: 1px solid rgba(255,255,255,0.08); font-size: 0.875rem; }
.site-topbar__inner,
.site-navbar__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.55rem 1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  align-items: center;
}
.site-topbar a { color: var(--header-muted); }
.site-topbar__actions { margin-left: auto; }
.site-topbar__portal {
  color: var(--header-text) !important;
  font-weight: 600;
  text-decoration: none !important;
}
.site-logo {
  color: var(--header-text) !important;
  font-weight: 700;
  font-size: 1.25rem;
  text-decoration: none !important;
}
.site-nav { display: flex; flex-wrap: wrap; gap: 0.75rem 1rem; margin-left: 1rem; }
.site-nav a { color: var(--header-muted); }
.site-nav .nav-link--active { color: var(--header-text); font-weight: 600; }

.hero {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 55%, #334155 100%);
  color: #f8fafc;
  padding: 3.5rem 1.25rem;
}
.hero__inner { max-width: var(--max); margin: 0 auto; }
.hero h1 { margin: 0 0 1rem; font-size: clamp(1.6rem, 3vw, 2.2rem); line-height: 1.25; }
.hero__intro { max-width: 40rem; color: #cbd5e1; }
.hero__intro a { color: #e2e8f0; text-decoration: underline; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.5rem; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.15rem;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none !important;
}
.btn--light { background: #fff; color: var(--navy); }
.btn--ghost { border: 1px solid rgba(255,255,255,0.45); color: #fff; }

main { max-width: var(--max); margin: 0 auto; padding: 2rem 1.25rem 3rem; }
.section-title { font-size: 1.35rem; margin: 0 0 0.75rem; }
.prose { color: var(--text); max-width: 42rem; }
.prose p { margin: 0 0 0.85rem; color: var(--muted); }

.site-footer {
  background: var(--beige);
  border-top: 1px solid var(--border);
  padding: 1.5rem 1.25rem;
}
.site-footer__inner { max-width: var(--max); margin: 0 auto; }
.site-footer__brand { font-weight: 700; margin: 0; }
.site-footer__meta { margin: 0.25rem 0 0; color: var(--muted); font-size: 0.9rem; }
.site-footer__bottom {
  max-width: var(--max);
  margin: 1rem auto 0;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.85rem;
}
