@font-face {
  font-family: 'Urbane Condensed';
  src: url('/fonts/UrbaneCondensed-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Urbane Condensed';
  src: url('/fonts/UrbaneCondensed-DemiBold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Urbane Condensed';
  src: url('/fonts/UrbaneCondensed-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Urbane Condensed';
  src: url('/fonts/UrbaneCondensed-Heavy.woff2') format('woff2');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #0d0f12;
  --bg-elevated: #12151a;
  --surface: #171b21;
  --surface-glass: rgba(30, 36, 44, 0.72);
  --primary: #5f8fe6;
  --primary-deep: #4d7bd1;
  --primary-glow: rgba(95, 143, 230, 0.38);
  --secondary: #7ca6f1;
  --text: #fafafa;
  --text-muted: #a2a9b4;
  --accent: #e5b957;
  --accent-dark: #c99739;
  --accent-soft: rgba(229, 185, 87, 0.16);
  --border: rgba(255, 255, 255, 0.1);
  --card-border: rgba(95, 143, 230, 0.28);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: 'Urbane Condensed', ui-sans-serif, system-ui, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--text);
  background: var(--bg);
}

.page-home {
  position: relative;
  overflow-x: hidden;
}

.hero-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 100% 70% at 50% -15%, rgba(229, 185, 87, 0.12), transparent 50%),
    radial-gradient(ellipse 80% 55% at 100% 35%, rgba(95, 143, 230, 0.35), transparent 52%),
    radial-gradient(ellipse 70% 50% at 0% 85%, rgba(124, 166, 241, 0.12), transparent 48%),
    linear-gradient(168deg, var(--bg) 0%, #141922 42%, var(--bg-elevated) 100%);
}

.hero {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  padding: clamp(1.25rem, 4vw, 2.75rem) 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-card {
  position: relative;
  width: min(100%, 480px);
  padding: clamp(1.75rem, 4.5vw, 2.75rem) clamp(1.35rem, 4vw, 2rem);
  text-align: center;
  border-radius: 1.35rem;
  background: var(--surface-glass);
  border: 1px solid var(--border);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.04) inset,
    0 28px 64px -20px rgba(0, 0, 0, 0.65),
    0 0 80px -30px rgba(95, 143, 230, 0.35);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.hero-card::after {
  content: '';
  position: absolute;
  left: 1.25rem;
  right: 1.25rem;
  bottom: 0;
  height: 3px;
  border-radius: 3px 3px 0 0;
  background: linear-gradient(
    90deg,
    transparent,
    var(--accent-dark),
    var(--accent),
    var(--accent-dark),
    transparent
  );
  opacity: 0.85;
}

.logo-glow {
  position: absolute;
  top: 2.25rem;
  left: 50%;
  transform: translateX(-50%);
  width: min(320px, 82vw);
  height: 120px;
  background: radial-gradient(ellipse closest-side, var(--primary-glow), transparent 72%);
  filter: blur(28px);
  opacity: 0.5;
  pointer-events: none;
}

.logo-wrap {
  position: relative;
  z-index: 1;
  margin-bottom: 0.35rem;
}

.brand-logo {
  display: block;
  width: min(340px, 88vw);
  height: auto;
  max-height: min(140px, 22vh);
  margin: 0 auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.45));
}

.brand-logo--landscape {
  max-height: min(100px, 18vh);
}

.hero-eyebrow {
  margin: 0 0 0.4rem;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bg);
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  border: 1px solid rgba(229, 185, 87, 0.45);
  display: inline-block;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  box-shadow: 0 2px 12px rgba(229, 185, 87, 0.2);
}

.hero-title {
  margin: 0 0 0.45rem;
  font-size: clamp(2.35rem, 8vw, 3rem);
  font-weight: 800;
  letter-spacing: 0.06em;
  line-height: 1.05;
  color: var(--text);
  text-shadow: 0 0 40px rgba(95, 143, 230, 0.35);
}

.hero-lead {
  margin: 0 0 1.1rem;
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  font-weight: 600;
  line-height: 1.45;
  color: var(--text-muted);
  max-width: 30ch;
  margin-left: auto;
  margin-right: auto;
}

.brand-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.65rem 1rem;
  margin: 0 0 1.35rem;
  padding: 0.65rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.brand-strip__img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  opacity: 0.92;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.35));
}

.brand-strip__img--tile {
  border-radius: 12px;
}

.brand-strip__img--portrait {
  width: auto;
  height: 72px;
  max-width: min(200px, 55vw);
  object-fit: contain;
}

.domain {
  display: inline-block;
  padding: 0.75rem 1.35rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  color: #1b1b1b;
  border: 2px solid var(--accent-dark);
  background: linear-gradient(180deg, var(--accent) 0%, var(--accent-dark) 100%);
  box-shadow:
    0 2px 0 rgba(0, 0, 0, 0.2),
    0 12px 32px rgba(95, 143, 230, 0.25);
  transition: transform 140ms ease, box-shadow 140ms ease, filter 140ms ease;
}

.domain:hover {
  filter: brightness(1.06);
  transform: translateY(-2px);
  box-shadow:
    0 3px 0 rgba(0, 0, 0, 0.18),
    0 18px 40px rgba(95, 143, 230, 0.35);
}

.domain:active {
  transform: translateY(0);
}

h1 {
  margin: 0;
  font-size: clamp(2rem, 4.6vw, 3rem);
  color: var(--text);
  letter-spacing: 0.04em;
  font-weight: 800;
}

p {
  margin: 0 0 0.65rem;
  font-size: clamp(1rem, 2.3vw, 1.15rem);
  font-weight: 500;
  color: var(--text-muted);
  line-height: 1.55;
}

.legal-nav {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1rem;
  background: rgba(18, 21, 26, 0.92);
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.legal-nav a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 700;
}

.legal-nav a:hover {
  text-decoration: underline;
  color: #ffe566;
}

.legal-page {
  max-width: 720px;
  margin: 0 auto;
  padding: 2rem 1.5rem 4rem;
}

.legal-page h1 {
  font-size: 1.85rem;
  margin-bottom: 0.25rem;
  color: var(--text);
}

.legal-page .updated {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 2rem;
}

.legal-page section {
  margin-bottom: 2rem;
}

.legal-page h2 {
  font-size: 1.15rem;
  color: var(--text);
  font-weight: 800;
  letter-spacing: 0.04em;
  margin-bottom: 0.5rem;
}

.legal-page p,
.legal-page ul {
  margin: 0 0 0.75rem;
  line-height: 1.6;
  color: var(--text-muted);
}

.legal-page ul {
  padding-left: 1.5rem;
}

.legal-page a {
  color: var(--secondary);
  text-decoration: underline;
  font-weight: 600;
}

.legal-page a:hover {
  color: #9bb8f5;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.65rem;
  justify-content: center;
  align-items: center;
  margin-top: 1.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 0.25rem 0.4rem;
  border-radius: 0.35rem;
  transition: color 120ms ease, background 120ms ease;
}

.footer-links a:hover {
  color: var(--accent);
  background: var(--accent-soft);
}

.footer-links a:not(:last-child)::after {
  content: '·';
  margin-left: 0.65rem;
  color: rgba(255, 255, 255, 0.2);
  font-weight: 700;
  pointer-events: none;
}
