@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@500;600;700;800&family=Inter:wght@400;500;600;700&display=swap');

:root {
  /* Brand */
  --ink: #0f1f37;
  --ink-soft: #4b5768;
  --muted: #6b7688;

  --saffron: #f5860f;
  --saffron-ink: #a85a05;
  --green: #2f7a45;

  /* Surfaces */
  --paper: #ffffff;
  --paper-soft: #f7f6f2;
  --line: #e6e4dd;

  --font-display: "Plus Jakarta Sans", "Inter", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;

  --radius-lg: 18px;
  --radius-sm: 999px;
}

* { box-sizing: border-box; }
html, body { margin: 0; height: 100%; }

body {
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--ink);
  overflow-x: hidden;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}

::selection { background: rgba(245, 134, 15, .18); color: var(--ink); }
a { color: inherit; text-decoration: none; }

/* ---------- Nav ---------- */
.nav {
  height: 148px;
  flex: 0 0 auto;
  padding: 0 clamp(22px, 5vw, 76px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 6px 0;
}
.brand-mark {
  display: block;
  height: 120px;
  width: auto;
  flex: 0 0 auto;
}

.status {
  color: var(--muted);
  font-size: 12.5px;
  font-weight: 500;
  display: flex;
  gap: 9px;
  align-items: center;
}
.dot {
  width: 7px;
  height: 7px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(47, 122, 69, .13);
}

/* ---------- Hero ---------- */
main {
  flex: 1 1 auto;
  display: flex;
  min-height: 0;
}
.hero {
  flex: 1 1 auto;
  width: 100%;
  min-height: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 64px clamp(22px, 7vw, 110px);
  overflow-y: auto;
  background:
    radial-gradient(ellipse 60% 45% at 50% 0%, rgba(245, 134, 15, .05), transparent 60%),
    var(--paper);
}

.eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: var(--saffron-ink);
  letter-spacing: .18em;
  font-size: 12.5px;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0 0 26px;
}
.rule {
  width: 30px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--saffron));
  flex: 0 0 auto;
}
.rule:last-child { background: linear-gradient(90deg, var(--green), transparent); }

h1 {
  font-family: var(--font-display);
  font-size: clamp(34px, 4.4vw, 58px);
  line-height: 1.16;
  letter-spacing: -.025em;
  margin: 0 auto;
  max-width: 1040px;
  font-weight: 700;
  color: var(--ink);
}
h1 span { color: var(--saffron-ink); }

.intro {
  max-width: 560px;
  color: var(--ink-soft);
  font-size: clamp(16px, 1.4vw, 18.5px);
  line-height: 1.7;
  margin: 24px 0;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 24px 0 34px;
  padding: 0;
  list-style: none;
}
.pill-row li {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 9px 16px 9px 13px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--paper);
  color: var(--ink-soft);
  font-size: 12.5px;
  font-weight: 600;
}
.pill-row svg { width: 15px; height: 15px; opacity: .8; }
.pill-row li.is-accent {
  border-color: rgba(245, 134, 15, .38);
  color: var(--saffron-ink);
  background: rgba(245, 134, 15, .06);
}

.launch-card {
  max-width: 600px;
  width: 100%;
  padding: 20px 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--paper-soft);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  box-shadow: 0 16px 40px rgba(15, 31, 55, .06);
}
.launch-label {
  margin: 0 0 6px;
  font-size: 10.5px;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--muted);
  text-align: left;
}
.launch-card h2 {
  font-family: var(--font-display);
  margin: 0;
  font-size: clamp(15.5px, 2vw, 19px);
  font-weight: 700;
  letter-spacing: -.01em;
  color: var(--ink);
  text-align: left;
}
.loader { display: flex; gap: 5px; flex-shrink: 0; }
.loader span {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--saffron);
  animation: pulse 1.5s infinite ease-in-out;
}
.loader span:nth-child(2) { animation-delay: .2s; background: #d9a441; }
.loader span:nth-child(3) { animation-delay: .4s; background: var(--green); }
@keyframes pulse { 0%, 100% { transform: scale(.6); opacity: .4; } 50% { transform: scale(1); opacity: 1; } }

/* ---------- Footer ---------- */
footer {
  flex: 0 0 auto;
  padding: 18px clamp(22px, 5vw, 76px);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
  background: var(--paper);
}
.foot-brand { color: var(--ink-soft); font-weight: 500; }
.foot-dot { color: var(--line); }

/* ---------- Responsive ---------- */
@media (max-width: 850px) {
  .nav { height: 112px; }
  .brand-mark { height: 88px; }
  .status { display: none; }
}
@media (max-width: 520px) {
  h1 { font-size: 34px; }
  .eyebrow { gap: 8px; font-size: 11px; }
  .rule { width: 18px; }
  .launch-card { flex-direction: column; align-items: flex-start; gap: 14px; }
  .launch-label, .launch-card h2 { text-align: left; }
  .loader { display: none; }
  footer { font-size: 11px; }
}
@media (max-height: 780px) {
  .nav { height: 104px; }
  .brand-mark { height: 81px; }
  .hero { padding-top: 32px; padding-bottom: 32px; }
  h1 { font-size: clamp(30px, 4.4vw, 52px); }
  .eyebrow { margin-bottom: 16px; }
  .intro { margin: 14px 0; }
  .pill-row { margin: 14px 0 22px; }
  .launch-card { padding: 14px 20px; }
}
@media (prefers-reduced-motion: reduce) {
  .loader span { animation: none; }
}
