:root {
  --br-navy: #0e2439;
  --br-navy-deep: #081523;
  --br-navy-soft: #1b3856;
  --br-pine: #1e4d36;
  --br-blue: #0b86d1;
  --br-blue-dark: #07669f;
  --br-blue-soft: #bfe3f8;
  --br-cream: #f5efe2;
  --br-cream-warm: #ece2cb;
  --br-sky-wash: #eaf3f9;
  --br-sky-soft: #d7e9f5;
  --br-ink: #0b1420;
  --br-stone-700: #3c4857;
  --br-stone-500: #6b7785;
  --br-stone-300: #b7bec7;
  --br-stone-100: #eceef1;
  --br-white: #fff;
  --bg: var(--br-sky-wash);
  --surface: var(--br-white);
  --fg1: var(--br-ink);
  --fg2: var(--br-stone-700);
  --fg3: var(--br-stone-500);
  --border: #e2ddcf;
  --border-strong: #c8c1af;
  --border-navy: #22416a;
  --shadow-sm: 0 1px 2px rgba(11, 20, 32, 0.08);
  --shadow-md: 0 6px 18px -6px rgba(11, 20, 32, 0.18), 0 2px 4px rgba(11, 20, 32, 0.06);
  --shadow-lg: 0 24px 48px -16px rgba(11, 20, 32, 0.28), 0 8px 16px -8px rgba(11, 20, 32, 0.12);
  --r-xs: 4px;
  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 16px;
  --r-pill: 999px;
  --font-display: "Oswald", "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  --font-serif: "Bitter", Georgia, "Times New Roman", serif;
  --font-ui: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --ease: cubic-bezier(0.2, 0.7, 0.3, 1);
}

* { box-sizing: border-box; }

html {
  color-scheme: light;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--fg1);
  font-family: var(--font-ui);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: var(--br-navy); }

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--br-blue);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 3;
  padding: 10px 14px;
  border-radius: var(--r-sm);
  background: var(--br-white);
  color: var(--br-navy);
  font-weight: 700;
  transform: translateY(-150%);
  transition: transform 150ms var(--ease);
}

.skip-link:focus { transform: translateY(0); }

.site-header {
  background: var(--br-navy);
  color: var(--br-cream);
}

.nav {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 28px;
}

.brand-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--br-cream);
  text-decoration: none;
}

.brand-link img {
  width: auto;
  height: 52px;
  display: block;
  padding: 5px 8px;
  border-radius: var(--r-sm);
  background: var(--br-sky-wash);
  box-shadow: var(--shadow-sm);
  object-fit: contain;
}

.product-name {
  padding-left: 14px;
  border-left: 1px solid var(--border-navy);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.user-nav {
  display: flex;
  align-items: center;
  gap: 16px;
  color: #b9c6d4;
  font-size: 13px;
}

.nav-link {
  color: var(--br-blue-soft);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
  text-transform: uppercase;
  transition: color 180ms var(--ease);
}

.nav-link:hover { color: var(--br-white); }

.page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--br-blue-dark);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin-top: 0;
  font-family: var(--font-display);
  text-transform: uppercase;
  text-wrap: balance;
}

h1 {
  margin-bottom: 20px;
  font-size: clamp(42px, 7vw, 72px);
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.05;
}

.lede {
  max-width: 64ch;
  margin: 0;
  color: var(--fg2);
  font-family: var(--font-serif);
  font-size: clamp(18px, 2vw, 20px);
  line-height: 1.7;
  text-wrap: pretty;
}

.button {
  display: inline-flex;
  width: fit-content;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border: 0;
  border-radius: var(--r-pill);
  background: var(--br-navy);
  box-shadow: var(--shadow-md);
  color: var(--br-cream);
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 200ms var(--ease), box-shadow 200ms var(--ease), transform 150ms var(--ease);
}

.button:hover { background: var(--br-navy-deep); }
.button:active { box-shadow: var(--shadow-sm); transform: scale(0.98); }
.button.secondary {
  border: 1.5px solid var(--br-navy);
  background: transparent;
  box-shadow: none;
  color: var(--br-navy);
}
.button.secondary:hover { background: var(--br-sky-soft); }
.button:disabled { cursor: not-allowed; opacity: 0.4; }

.site-footer {
  margin-top: 80px;
  background: var(--br-navy);
  color: #b9c6d4;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 28px;
  font-size: 12px;
}

.footer-inner img { width: 52px; height: 52px; object-fit: contain; }
.footer-tag {
  color: var(--br-blue-soft);
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

@media (max-width: 700px) {
  .nav { align-items: flex-start; padding: 10px 18px; }
  .brand-link img { height: 44px; }
  .product-name { display: none; }
  .user-nav { align-items: flex-end; flex-direction: column; gap: 4px; }
  .page { padding: 0 18px; }
  .footer-inner { align-items: flex-start; flex-direction: column; padding: 24px 18px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: 0.01ms !important; }
}
