/* TwinXLab — "coming soon" holding page
   Self-contained styles (own tokens + fonts) so this page can ship on its
   own while the full site is in development. Mirrors the main brand theme. */

:root {
  --bg: #061C30;
  --panel: #0B2C4A;
  --border: #1B4A73;
  --text: #F2F6FA;
  --text-muted: #A9BBCB;
  --text-dim: #7C93A8;
  --text-grey: #A8AFB6;
  --link: #33A3E8;
  --brand: #0078B8;
  --brand-dark: #005088;
  --font-body: Barlow, Helvetica, Arial, sans-serif;
  --font-head: "Barlow Semi Condensed", Barlow, sans-serif;
  --font-mono: ui-monospace, SFMono-Regular, Menlo, monospace;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  /* Subtle brand glow + faint diagonal texture, consistent with the site */
  background-image:
    radial-gradient(1100px 620px at 50% -10%, rgba(0, 120, 184, 0.22), transparent 70%),
    repeating-linear-gradient(135deg, rgba(168, 175, 182, 0.04) 0 14px, transparent 14px 28px);
  color: var(--text);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  display: flex;
  flex-direction: column;
}

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

img { max-width: 100%; }

.wrap {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 64px 24px;
  max-width: 720px;
  margin: 0 auto;
}

.logo { width: auto; height: 96px; display: block; margin-bottom: 40px; }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--link);
  margin: 0 0 20px;
}

.title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(34px, 6vw, 60px);
  line-height: 1.05;
  letter-spacing: -0.5px;
  margin: 0;
}
.title span { color: var(--text-grey); }

.lead {
  font-size: clamp(16px, 2.4vw, 19px);
  line-height: 1.6;
  color: var(--text-muted);
  max-width: 560px;
  margin: 24px 0 0;
  text-wrap: pretty;
}

.rule {
  width: 60px;
  height: 3px;
  background: var(--brand);
  margin: 36px 0 0;
}

.actions { margin-top: 34px; }

.btn {
  display: inline-block;
  font-weight: 600;
  font-size: 16px;
  padding: 13px 26px;
  background: var(--brand);
  color: var(--text);
  border: 1px solid var(--brand);
}
.btn:hover {
  background: var(--link);
  border-color: var(--link);
  color: var(--bg);
}

.contact {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-dim);
  margin: 22px 0 0;
}
.contact a { color: var(--text-muted); }

/* Footer pinned to the bottom of the viewport */
.footer {
  border-top: 1px solid var(--border);
  background: rgba(6, 28, 48, 0.6);
}
.footer__inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px 32px;
  align-items: center;
  justify-content: space-between;
}
.footer__brand { display: flex; align-items: center; gap: 12px; }
.footer__brand img { height: 32px; width: auto; display: block; }
.footer__brand span { font-size: 13px; color: var(--text-dim); }
.footer__links { display: flex; gap: 20px; font-size: 13px; }
.footer__links a { color: var(--text-muted); }

@media (max-width: 520px) {
  .logo { height: 72px; margin-bottom: 32px; }
  .actions { width: 100%; }
  .btn { display: block; text-align: center; }
  .footer__inner { justify-content: center; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
