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

:root {
  --orange: #f26522;
  --navy: #2d3e50;
  --grey: #6b7280;
}

html, body {
  height: 100%;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  background: var(--navy);
  color: #fff;
  overflow: hidden;
}

body {
  display: flex;
  flex-direction: column;
  height: 100vh;
}

.page {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4rem;
  padding: 2.5rem 3rem 2rem;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  min-height: 0;
}

.top {
  flex-shrink: 0;
}

.logo {
  height: 28px;
  width: auto;
  filter: brightness(0) invert(1);
  display: block;
}

.middle {
  display: flex;
  flex-direction: column;
  max-width: 640px;
}

.eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--orange);
  margin-bottom: 1rem;
}

.middle h1 {
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1.25rem;
}

.tagline {
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
}

.bottom {
  flex-shrink: 0;
  padding-bottom: 1rem;
}

.brand-grid {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.brand-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 1.5rem 1.75rem;
  text-decoration: none;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
  width: 280px;
  transition: background 0.2s, border-color 0.2s;
}

.brand-card:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
}

.brand-logo {
  height: 24px;
  width: auto;
  object-fit: contain;
  object-position: left;
}

.brand-desc {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
  flex: 1;
}

.brand-link {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--orange);
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.brand-link svg { width: 13px; height: 13px; }

