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

:root {
  /* Surfaces */
  --ink: #07090f;
  --ink-mid: #0d1120;
  --ink-card: #0f1422;
  --ink-deep: #04050a;

  /* Editorial off-white */
  --bone: #F4EFE6;
  --bone-80: rgba(244, 239, 230, 0.82);
  --bone-60: rgba(244, 239, 230, 0.6);
  --bone-40: rgba(244, 239, 230, 0.4);
  --bone-20: rgba(244, 239, 230, 0.18);
  --bone-08: rgba(244, 239, 230, 0.08);
  --bone-04: rgba(244, 239, 230, 0.04);

  /* PRIMARY BRAND — Royal Blue (matches the product) */
  --blue: #0f52ba;
  --blue-bright: #3b7ddb;
  --blue-deep: #0a3d8a;
  --blue-soft: rgba(15, 82, 186, 0.12);
  --blue-line: rgba(15, 82, 186, 0.32);
  --blue-glow: rgba(15, 82, 186, 0.18);

  /* HERITAGE ACCENT — Editorial Gold (reserved for cultural / band moments) */
  --gold: #C8A96E;
  --gold-bright: #DCBE82;
  --gold-soft: rgba(200, 169, 110, 0.12);
  --gold-line: rgba(200, 169, 110, 0.32);

  /* Heraldic deep */
  --burgundy: #4A1822;

  /* Legacy aliases — keep terms.html / privacy.html readable */
  --white: #ffffff;
  --white-80: rgba(244, 239, 230, 0.82);
  --serif: 'Fraunces', Georgia, serif;

  /* Type system */
  --display: 'Fraunces', Georgia, serif;
  --sans: 'Manrope', system-ui, -apple-system, sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, 'SF Mono', monospace;

  /* Composition */
  --content: 1280px;
  --rule: rgba(244, 239, 230, 0.08);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--ink);
  color: var(--bone);
  line-height: 1.6;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

::selection { background: var(--blue); color: var(--bone); }

a { color: inherit; }

/* Grain overlay — editorial paper feel */
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.05;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 3rem;
  background: rgba(7, 9, 15, 0.85);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom: 1px solid var(--rule);
}

.nav-logo,
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--display);
  font-weight: 500;
  text-decoration: none;
  letter-spacing: 0.005em;
}

.nav-logo {
  font-size: 1.05rem;
  color: var(--bone);
}

.nav-logo em,
.footer-logo em {
  font-style: italic;
  font-weight: 400;
  color: var(--blue-bright);
  font-variation-settings: 'opsz' 144;
}

/* The literal "Blue Columns" — brand mark */
.logo-mark {
  display: inline-flex;
  align-items: flex-end;
  gap: 2px;
  height: 16px;
}
.logo-mark .col {
  width: 3px;
  background: var(--blue-bright);
  height: 100%;
}
.logo-mark .col:nth-child(2) { height: 75%; }
.logo-mark .col:nth-child(3) { height: 90%; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.25rem;
  list-style: none;
}

.nav-links a {
  position: relative;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--bone-60);
  text-decoration: none;
  transition: color 0.2s;
  padding-bottom: 3px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; right: 100%;
  bottom: 0;
  height: 1px;
  background: var(--blue-bright);
  transition: right 0.3s ease;
}

.nav-links a:hover { color: var(--bone); }
.nav-links a:hover::after { right: 0; }

.nav-links a.nav-cta {
  color: var(--blue-bright);
  font-weight: 500;
  letter-spacing: 0.04em;
}
.nav-links a.nav-cta:hover { color: var(--bone); }
.nav-links a.nav-cta::after { display: none; }

.nav-mobile-cta {
  display: none;
  font-family: var(--mono);
  font-size: 0.72rem;
  color: var(--blue-bright);
  font-weight: 500;
  text-decoration: none;
  border: 1px solid var(--blue-line);
  padding: 0.45rem 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.nav-mobile-cta:hover { color: var(--bone); border-color: var(--blue-bright); }

@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-mobile-cta { display: inline-block; }
  nav { padding: 1rem 1.5rem; }
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 8rem 3rem 5rem;
  overflow: hidden;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--content);
  margin: 0 auto;
  width: 100%;
}

/* Blue-dominant atmospheric — the company name carries here */
.hero::before {
  content: '';
  position: absolute;
  top: -10%; left: -10%;
  width: 75%; height: 85%;
  background: radial-gradient(ellipse at 30% 30%, rgba(15, 82, 186, 0.22) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

/* Subtle gold warmth balancing opposite */
.hero::after {
  content: '';
  position: absolute;
  top: 30%; right: -5%;
  width: 50%; height: 60%;
  background: radial-gradient(ellipse at 70% 50%, rgba(200, 169, 110, 0.06) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  font-family: var(--mono);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue-bright);
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp 0.7s ease forwards 0.15s;
}

.rule {
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--blue-bright);
  flex-shrink: 0;
}

h1 {
  font-family: var(--display);
  font-size: clamp(3rem, 7vw, 5.75rem);
  font-weight: 400;
  font-variation-settings: 'opsz' 144;
  line-height: 1.02;
  letter-spacing: -0.022em;
  color: var(--bone);
  margin-bottom: 2rem;
  max-width: 16ch;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.25s;
}

h1 em {
  font-style: italic;
  font-weight: 400;
  color: var(--blue-bright);
  font-variation-settings: 'opsz' 144;
}

.hero-sub {
  font-family: var(--sans);
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--bone-60);
  max-width: 56ch;
  line-height: 1.7;
  margin-bottom: 2.75rem;
  opacity: 0;
  animation: fadeUp 0.7s ease forwards 0.4s;
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  margin-bottom: 4rem;
  opacity: 0;
  animation: fadeUp 0.7s ease forwards 0.55s;
  flex-wrap: wrap;
}

/* PRIMARY CTA — Royal Blue, the brand's color */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: var(--blue);
  color: var(--bone);
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 0.95rem 1.85rem;
  text-decoration: none;
  border: 1px solid var(--blue);
  transition: background 0.2s, color 0.2s, transform 0.2s, border-color 0.2s;
  cursor: pointer;
  text-transform: uppercase;
}

.btn-primary:hover {
  background: var(--blue-bright);
  border-color: var(--blue-bright);
  transform: translateY(-1px);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--bone-60);
  text-decoration: none;
  padding: 0.75rem 0;
  position: relative;
  border: none;
  background: none;
  font-family: inherit;
  cursor: pointer;
  transition: color 0.2s;
}

.btn-ghost::after {
  content: '';
  position: absolute;
  left: 0; right: 100%;
  bottom: 0.55rem;
  height: 1px;
  background: var(--bone);
  transition: right 0.3s ease;
}

.btn-ghost:hover { color: var(--bone); }
.btn-ghost:hover::after { right: 0; }

/* Hero meta strip */
.hero-meta {
  display: flex;
  gap: 4rem;
  padding-top: 2rem;
  border-top: 1px solid var(--rule);
  opacity: 0;
  animation: fadeUp 0.7s ease forwards 0.7s;
  flex-wrap: wrap;
}

.hero-meta > div {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.hero-meta-label {
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bone-40);
}

.hero-meta-val {
  font-family: var(--display);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--bone);
  font-weight: 400;
  font-variation-settings: 'opsz' 24;
}

/* Hero ornament — three columns, BLUE per the company name */
.hero-ornament {
  position: absolute;
  right: 4rem;
  bottom: 6rem;
  display: flex;
  align-items: flex-end;
  gap: 14px;
  opacity: 0.7;
  z-index: 1;
  pointer-events: none;
}

.hero-ornament .col {
  width: 4px;
  background: linear-gradient(to top, var(--blue-bright) 0%, transparent 100%);
}
.hero-ornament .tall { height: 320px; }
.hero-ornament .med { height: 240px; }
.hero-ornament .short { height: 160px; }

@media (max-width: 1100px) {
  .hero-ornament { display: none; }
}

/* ── EDITORIAL BAND — heritage warm moment, gold-tinted ── */
.band {
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  background: rgba(200, 169, 110, 0.025);
  padding: 3.5rem 3rem;
  position: relative;
  z-index: 2;
}

.band-inner {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}

.band-quote {
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-variation-settings: 'opsz' 144;
  font-size: clamp(1.25rem, 2.4vw, 1.85rem);
  line-height: 1.45;
  color: var(--bone-80);
  letter-spacing: -0.005em;
  display: inline-block;
}

.band-mark {
  font-family: var(--display);
  font-style: normal;
  color: var(--gold);
  margin-right: 0.55rem;
  font-size: 1.4em;
  line-height: 0;
  vertical-align: -0.18em;
}

/* ── SECTIONS ── */
section {
  position: relative;
  z-index: 2;
  max-width: var(--content);
  margin: 0 auto;
  padding: 7rem 3rem;
}

.section-head {
  max-width: 760px;
  margin-bottom: 4rem;
}

.section-label {
  font-family: var(--mono);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue-bright);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

h2 {
  font-family: var(--display);
  font-size: clamp(2.25rem, 4.6vw, 3.5rem);
  font-weight: 400;
  font-variation-settings: 'opsz' 144;
  line-height: 1.05;
  letter-spacing: -0.018em;
  color: var(--bone);
  margin-bottom: 1.5rem;
  max-width: 22ch;
}

h2 em {
  font-style: italic;
  color: var(--blue-bright);
}

.section-body {
  font-size: 1.02rem;
  font-weight: 300;
  color: var(--bone-60);
  line-height: 1.75;
  max-width: 60ch;
}

.divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--rule) 25%, var(--rule) 75%, transparent);
  position: relative;
  z-index: 2;
}

/* ── PRODUCT SHOWCASE ── */
.showcase {
  display: grid;
  grid-template-columns: 1.05fr 1.2fr 0.85fr;
  gap: 2.5rem;
  align-items: stretch;
}

@media (max-width: 1100px) {
  .showcase { grid-template-columns: 1fr 1fr; }
  .showcase-modules { grid-column: 1 / -1; }
}
@media (max-width: 760px) {
  .showcase { grid-template-columns: 1fr; gap: 2rem; }
}

.showcase-copy { padding-top: 1rem; }

.product-tag {
  display: inline-block;
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue-bright);
  border: 1px solid var(--blue-line);
  padding: 0.32rem 0.85rem;
  margin-bottom: 1.5rem;
}

.showcase-copy h3 {
  font-family: var(--display);
  font-size: 2.4rem;
  font-weight: 400;
  font-variation-settings: 'opsz' 144;
  margin-bottom: 0.85rem;
  color: var(--bone);
  letter-spacing: -0.015em;
  line-height: 1.05;
}

.showcase-lede {
  font-size: 1rem;
  font-weight: 300;
  color: var(--bone-80);
  line-height: 1.7;
  margin-bottom: 1.75rem;
}

.feature-list {
  list-style: none;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.feature-list li {
  display: flex;
  align-items: baseline;
  gap: 0.85rem;
  font-size: 0.92rem;
  font-weight: 400;
  color: var(--bone-80);
  line-height: 1.55;
  padding-left: 0.85rem;
  position: relative;
}

.feature-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.65em;
  width: 6px;
  height: 1px;
  background: var(--blue-bright);
}

.product-cta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

/* Synthetic dashboard mock */
.showcase-mock {
  display: flex;
  align-items: center;
  justify-content: center;
}

.mock-frame {
  background: var(--ink-mid);
  border: 1px solid var(--rule);
  width: 100%;
  max-width: 540px;
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.65), 0 0 0 1px var(--bone-04) inset;
  position: relative;
  overflow: hidden;
}

.mock-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15, 82, 186, 0.07) 0%, transparent 60%);
  pointer-events: none;
}

.mock-chrome {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.1rem;
  border-bottom: 1px solid var(--rule);
  background: var(--ink-deep);
}

.mock-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--bone-20);
}
.mock-dot:nth-child(1) { background: rgba(255, 100, 100, 0.5); }
.mock-dot:nth-child(2) { background: rgba(255, 200, 100, 0.5); }
.mock-dot:nth-child(3) { background: rgba(120, 200, 140, 0.55); }

.mock-url {
  margin-left: 0.85rem;
  font-family: var(--mono);
  font-size: 0.7rem;
  color: var(--bone-40);
  letter-spacing: 0.04em;
}

.mock-body {
  padding: 1.4rem 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 1.3rem;
  position: relative;
}

.mock-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}

.mock-stat {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1rem;
  border: 1px solid var(--rule);
  background: rgba(244, 239, 230, 0.02);
}

.mock-stat-label {
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bone-40);
}

.mock-stat-num {
  font-family: var(--display);
  font-size: 1.75rem;
  font-weight: 400;
  font-variation-settings: 'opsz' 144;
  color: var(--bone);
  line-height: 1;
  letter-spacing: -0.01em;
}

.mock-stat-unit { font-size: 0.85rem; color: var(--blue-bright); }

.mock-stat-bar {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--bone-08);
  position: relative;
  overflow: hidden;
}
.mock-stat-bar > span {
  position: absolute;
  left: 0; top: 0; height: 100%;
  background: var(--blue-bright);
  animation: fillBar 1.4s ease-out 0.5s both;
}

@keyframes fillBar {
  from { transform: scaleX(0); transform-origin: left; }
  to   { transform: scaleX(1); transform-origin: left; }
}

.mock-stat-trend {
  font-family: var(--mono);
  font-size: 0.7rem;
  color: rgba(120, 200, 140, 0.85);
}

.mock-table {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--rule);
}

.mock-tr {
  display: grid;
  grid-template-columns: 1.6fr 1fr 0.7fr;
  gap: 0.5rem;
  padding: 0.7rem 0.9rem;
  font-size: 0.78rem;
  border-bottom: 1px solid var(--rule);
  color: var(--bone-80);
  align-items: center;
}
.mock-tr:last-child { border-bottom: none; }
.mock-tr.mock-th {
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bone-40);
  background: rgba(244, 239, 230, 0.02);
}

.pill {
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.2rem 0.55rem;
  display: inline-block;
  width: fit-content;
}
.pill.ok { color: rgba(140, 210, 155, 0.95); border: 1px solid rgba(120, 200, 140, 0.3); }
.pill.warn { color: var(--gold); border: 1px solid var(--gold-line); }
.pill.bad { color: rgba(255, 145, 145, 0.95); border: 1px solid rgba(255, 130, 130, 0.3); }

/* Module map */
.showcase-modules {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
}

.module-group {
  background: var(--ink);
  padding: 1.5rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  transition: background 0.25s;
  flex: 1;
}

.module-group:hover { background: var(--ink-mid); }

.module-group-num {
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  color: var(--blue-bright);
}

.module-group-title {
  font-family: var(--display);
  font-style: italic;
  font-size: 1.45rem;
  font-weight: 400;
  font-variation-settings: 'opsz' 144;
  color: var(--bone);
  letter-spacing: -0.005em;
}

.module-group-items {
  font-size: 0.82rem;
  color: var(--bone-60);
  line-height: 1.55;
}

/* ── CULTURE GRID — heritage section, GOLD accent (intentional) ── */
.culture-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

@media (max-width: 900px) {
  .culture-grid { grid-template-columns: 1fr; }
}

.culture-card {
  background: var(--ink-mid);
  border: 1px solid var(--rule);
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s, background 0.3s;
}

.culture-card::after {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 2px;
  background: var(--gold);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.45s ease;
}

.culture-card:hover {
  border-color: var(--gold-line);
  transform: translateY(-2px);
  background: rgba(15, 20, 34, 0.85);
}
.culture-card:hover::after { transform: scaleY(1); }

.culture-card-num {
  font-family: var(--display);
  font-size: 3.5rem;
  font-weight: 400;
  font-style: italic;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 1.5rem;
  font-variation-settings: 'opsz' 144;
}

.culture-card h4 {
  font-family: var(--display);
  font-size: 1.55rem;
  font-weight: 400;
  font-variation-settings: 'opsz' 144;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-bottom: 1rem;
  color: var(--bone);
}

.culture-card h4 em { font-style: italic; color: var(--gold); }

.culture-card p {
  font-size: 0.92rem;
  font-weight: 300;
  color: var(--bone-60);
  line-height: 1.7;
}

/* ── VALUES (About) ── */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--rule);
}

@media (max-width: 900px) {
  .values-grid { grid-template-columns: 1fr; }
}

.value-item {
  padding: 2.5rem 2rem;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  background: rgba(244, 239, 230, 0.012);
}

.value-item:last-child { border-right: none; }

@media (max-width: 900px) {
  .value-item { border-right: none; }
}

.value-num {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  color: var(--blue-bright);
  margin-bottom: 1.25rem;
  text-transform: uppercase;
}

.value-item h4 {
  font-family: var(--display);
  font-size: 1.55rem;
  font-weight: 400;
  font-style: italic;
  font-variation-settings: 'opsz' 144;
  margin-bottom: 0.85rem;
  color: var(--bone);
  letter-spacing: -0.005em;
}

.value-item p {
  font-size: 0.92rem;
  font-weight: 300;
  color: var(--bone-60);
  line-height: 1.7;
}

/* ── CONTACT ── */
.contact-card {
  background: var(--ink-mid);
  border: 1px solid var(--rule);
  padding: 3.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
}

.contact-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--blue);
}

@media (max-width: 760px) {
  .contact-card { grid-template-columns: 1fr; gap: 2rem; padding: 2rem 1.75rem; }
}

.contact-info { display: flex; flex-direction: column; gap: 1.35rem; }

.contact-row {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.contact-label {
  font-family: var(--mono);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bone-40);
}

.contact-value {
  font-family: var(--display);
  font-size: 1.1rem;
  font-style: italic;
  font-weight: 400;
  font-variation-settings: 'opsz' 24;
  color: var(--bone);
}

.contact-value a {
  color: var(--blue-bright);
  text-decoration: none;
  border-bottom: 1px solid var(--blue-line);
  transition: border-color 0.2s, color 0.2s;
}

.contact-value a:hover { border-color: var(--blue-bright); color: var(--bone); }

.contact-intro {
  font-size: 0.95rem;
  color: var(--bone-60);
  line-height: 1.75;
  margin-bottom: 1.85rem;
  font-weight: 300;
}

/* ── FOOTER ── */
footer {
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--rule);
  padding: 2.75rem 3rem;
}

.footer-inner {
  max-width: var(--content);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-logo {
  font-size: 0.95rem;
  color: var(--bone-60);
}

.footer-logo .logo-mark { height: 14px; }

.footer-links {
  display: flex;
  align-items: center;
  gap: 1.85rem;
  list-style: none;
  flex-wrap: wrap;
}

.footer-links a {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  color: var(--bone-40);
  text-decoration: none;
  transition: color 0.2s;
  text-transform: uppercase;
}

.footer-links a:hover { color: var(--bone); }

.footer-copy {
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.04em;
  color: var(--bone-20);
}

/* ── REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-eyebrow, h1, .hero-sub, .hero-cta, .hero-meta { animation: none; opacity: 1; }
  .mock-stat-bar > span { animation: none; transform: scaleX(1); }
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── LEGAL PAGES (terms.html / privacy.html) ── */
.legal-section {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  padding: 8rem 3rem 5rem;
}

.legal-section h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  animation: none;
  opacity: 1;
  max-width: none;
}

.legal-date {
  font-family: var(--mono);
  font-size: 0.75rem;
  color: var(--bone-40);
  margin-bottom: 3rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.legal-body h2 {
  font-size: 1.3rem;
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
  max-width: none;
}

.legal-body p, .legal-body li {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--bone-80);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.legal-body ul { padding-left: 1.5rem; }
.legal-body li { margin-bottom: 0.5rem; }

/* Termly embed overrides — anchored to .legal-section so they survive Termly DOM mutation */
.legal-section,
.legal-section * {
  color: var(--bone-80) !important;
  background-color: transparent !important;
}

.legal-section h1,
.legal-section h2,
.legal-section h3,
.legal-section h4,
.legal-section h5,
.legal-section h6 {
  color: var(--bone) !important;
  font-family: var(--display);
  font-weight: 500;
}

.legal-section strong,
.legal-section b {
  color: var(--bone) !important;
  font-weight: 500;
}

.legal-section a {
  color: var(--blue-bright) !important;
  text-decoration: underline;
}

.legal-section a:hover {
  color: var(--bone) !important;
}

/* Mobile padding */
@media (max-width: 760px) {
  section { padding: 5rem 1.5rem; }
  .hero { padding: 7rem 1.5rem 4rem; }
  .band { padding: 2.75rem 1.5rem; }
  footer { padding: 2.25rem 1.5rem; }
  .hero-meta { gap: 2rem; }
  .legal-section { padding: 6rem 1.5rem 4rem; }
  .contact-card { padding: 2rem 1.75rem; }
  .section-head { margin-bottom: 2.5rem; }
}
