/* ==========================================================================
   GOSEO Labs — Design System
   Color tokens, typography, and shared components reused across ~13 pages.
   ========================================================================== */

:root {
  --orange: #EE8B2E;
  --blue: #33469A;
  --ink: #1B2836;
  --ink-deep: #101923;
  --paper: #F6F7F9;
  --slate: #6B7280;

  --signal-gradient: linear-gradient(90deg, var(--orange) 0%, var(--blue) 100%);

  --font-display: 'Fraunces', serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  --container-w: 1180px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --shadow-sm: 0 1px 2px rgba(16, 25, 35, 0.06), 0 1px 3px rgba(16, 25, 35, 0.08);
  --shadow-md: 0 4px 12px rgba(16, 25, 35, 0.08), 0 2px 4px rgba(16, 25, 35, 0.06);
  --shadow-lg: 0 12px 32px rgba(16, 25, 35, 0.14);
}

/* ------------------------------ Reset --------------------------------- */

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink);
  line-height: 1.15;
  margin: 0 0 0.5em;
  font-weight: 600;
}

h1 { font-size: clamp(2.1rem, 4.5vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }

p { margin: 0 0 1em; color: var(--ink); }

ul { padding-left: 1.2em; }

/* Accessibility: visible focus states everywhere */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 2px;
  border-radius: 4px;
}

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

/* ----------------------------- Layout ---------------------------------- */

.container {
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 24px;
}

section { padding: 72px 0; }

.section-tight { padding: 48px 0; }

.section-dark {
  background: var(--ink-deep);
  color: #E7EAEE;
}

.section-dark h1, .section-dark h2, .section-dark h3 { color: #fff; }
.section-dark p { color: #B7C0CC; }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  display: inline-block;
  margin-bottom: 0.8em;
}

.section-dark .eyebrow { color: var(--orange); }

.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.max-w-prose { max-width: 68ch; }

.rule {
  height: 3px;
  width: 64px;
  background: var(--signal-gradient);
  border: none;
  border-radius: 2px;
  margin: 1.2em 0;
}

.text-center .rule { margin-left: auto; margin-right: auto; }

/* ------------------------------ Buttons --------------------------------- */

.btn-primary,
.btn-accent,
.btn-outline,
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.85em 1.6em;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
  text-align: center;
}

.btn-primary {
  background: var(--ink);
  color: #fff;
}
.btn-primary:hover { background: var(--ink-deep); transform: translateY(-1px); box-shadow: var(--shadow-md); }

.btn-accent {
  background: var(--orange);
  color: #fff;
}
.btn-accent:hover { background: #d97b1f; transform: translateY(-1px); box-shadow: var(--shadow-md); }

.btn-outline {
  background: transparent;
  border-color: var(--ink);
  color: var(--ink);
}
.btn-outline:hover { background: var(--ink); color: #fff; }

.section-dark .btn-outline { border-color: #fff; color: #fff; }
.section-dark .btn-outline:hover { background: #fff; color: var(--ink-deep); }
.cta-band .btn-outline { border-color: #fff; color: #fff; }
.cta-band .btn-outline:hover { background: #fff; color: var(--ink-deep); }

.btn-ghost {
  background: transparent;
  color: var(--blue);
  padding: 0.85em 0.2em;
}
.btn-ghost:hover { color: var(--orange); }
.btn-ghost::after { content: '→'; margin-left: 0.3em; transition: transform 0.15s ease; }
.btn-ghost:hover::after { transform: translateX(3px); }

.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }

/* ------------------------------- Nav ------------------------------------ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(246, 247, 249, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(27, 40, 54, 0.08);
}

.nav-wrap {
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--ink);
}
.brand-logo-img { height: 36px; width: auto; display: block; }

.main-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  flex: 1;
  justify-content: center;
}

.main-nav > ul {
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.main-nav a {
  display: inline-block;
  color: var(--ink);
  font-weight: 500;
  font-size: 0.94rem;
  padding: 10px 14px;
  border-radius: 8px;
  position: relative;
}

.main-nav a:hover { color: var(--blue); }

.main-nav a.active::after,
.main-nav a:hover::after {
  content: '';
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 4px;
  height: 2px;
  background: var(--signal-gradient);
  border-radius: 2px;
}

.nav-item-dropdown { position: relative; }

.dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: none;
  border: none;
  font: inherit;
  color: var(--ink);
  font-weight: 500;
  font-size: 0.94rem;
  padding: 10px 14px;
  border-radius: 8px;
  cursor: pointer;
}
.dropdown-toggle:hover { color: var(--blue); }
.dropdown-toggle .caret { font-size: 0.7em; transition: transform 0.15s ease; }

.dropdown-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 280px;
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(27,40,54,0.06);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 0.15s ease, transform 0.15s ease, visibility 0.15s ease;
}

.nav-item-dropdown:hover .dropdown-menu,
.nav-item-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-item-dropdown:hover .caret { transform: rotate(180deg); }

.dropdown-menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 0.92rem;
  color: var(--ink);
}
.dropdown-menu a:hover { background: var(--paper); color: var(--blue); }
.dropdown-menu a::after { display: none; }

.dropdown-menu .dd-tag {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--slate);
  margin-top: 2px;
}

.nav-cta { flex-shrink: 0; }
.nav-cta-mobile { display: none; }
.nav-cta .btn-accent { padding: 0.7em 1.3em; font-size: 0.88rem; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  content: '';
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  position: relative;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-toggle span::before { position: absolute; top: -7px; }
.nav-toggle span::after { position: absolute; top: 7px; }

.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--paper);
    flex-direction: column;
    justify-content: flex-start;
    padding: 8px 16px 20px;
    box-shadow: var(--shadow-lg);
    border-bottom: 1px solid rgba(27, 40, 54, 0.08);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
  }
  .main-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .main-nav > ul { flex-direction: column; align-items: stretch; width: 100%; gap: 2px; }
  .main-nav a { padding: 12px 10px; font-size: 1.02rem; }
  .dropdown-menu {
    position: static;
    opacity: 1; visibility: visible; transform: none;
    display: none;
    box-shadow: none;
    border: none;
    background: transparent;
    padding: 0 0 0 12px;
  }
  .nav-item-dropdown.is-open .dropdown-menu { display: block; }
  .nav-cta { display: none; }
  .main-nav .nav-cta-mobile { display: block; margin: 12px 0 4px; }
}

/* ------------------------------- Hero ------------------------------------ */

.hero {
  padding: 88px 0 64px;
  background:
    radial-gradient(circle at 85% 10%, rgba(238,139,46,0.10), transparent 45%),
    radial-gradient(circle at 10% 90%, rgba(51,70,154,0.10), transparent 45%),
    var(--paper);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}

.hero h1 { margin-bottom: 0.4em; }
.hero .lede { font-size: 1.15rem; color: var(--slate); max-width: 56ch; }

.hero-art {
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-lg);
  background: #fff;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(27, 40, 54, 0.06);
}
.hero-art::before {
  content: '';
  position: absolute;
  inset: -30%;
  background: var(--signal-gradient);
  opacity: 0.12;
  filter: blur(50px);
  z-index: 0;
}
.hero-art img { position: relative; z-index: 1; width: 100%; height: 100%; object-fit: cover; }
.hero-art svg { position: relative; z-index: 1; width: 55%; height: 55%; }

@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-art { max-width: 320px; margin: 0 auto; }
}

/* --------------------------- Stat strip (dark) ---------------------------- */

.stat-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.stat-item .stat-num {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  color: var(--orange);
  font-weight: 600;
}
.stat-item .stat-label {
  font-size: 0.88rem;
  color: #B7C0CC;
  margin-top: 4px;
}

@media (max-width: 760px) {
  .stat-strip { grid-template-columns: repeat(2, 1fr); }
}

/* ------------------------------ Cards ------------------------------------ */

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.card-grid--minor {
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 20px;
}

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

.service-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(27,40,54,0.06);
  display: flex;
  flex-direction: column;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.service-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

.service-card .framework-tag { margin-bottom: 14px; }
.service-card h3 { margin-bottom: 0.4em; }
.service-card p { color: var(--slate); flex-grow: 1; }
.service-card .btn-ghost { margin-top: 8px; align-self: flex-start; }

.service-card--minor {
  padding: 24px 22px;
}
.service-card--minor h4 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.05rem;
  margin-bottom: 0.3em;
}
.service-card--minor p { font-size: 0.92rem; color: var(--slate); margin-bottom: 0.6em; }

/* Framework tag badge — mono font, ties Services back to the four-layer story */
.framework-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 6px;
  background: var(--paper);
  color: var(--blue);
  border: 1px solid rgba(51,70,154,0.18);
}

/* ---------------------------- Layer strip -------------------------------- */

.layer-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

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

.layer-cell {
  border-radius: var(--radius-lg);
  padding: 26px 22px;
  color: #fff;
  position: relative;
  min-height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}

/* Gradient progression — encodes "raw insight maturing into engineered system" */
.layer-cell--1 { background: linear-gradient(160deg, #EE8B2E 0%, #d97b1f 100%); }
.layer-cell--2 { background: linear-gradient(160deg, #dd8a4a 0%, #8b6b78 100%); }
.layer-cell--3 { background: linear-gradient(160deg, #6c6f9a 0%, #40529e 100%); }
.layer-cell--4 { background: linear-gradient(160deg, #33469A 0%, #1B2836 100%); }

.layer-cell .layer-num {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  opacity: 0.85;
}
.layer-cell h4 {
  font-family: var(--font-display);
  color: #fff;
  font-size: 1.15rem;
  margin: 10px 0 8px;
}
.layer-cell p { color: rgba(255,255,255,0.88); font-size: 0.88rem; margin-bottom: 0; }
.layer-cell a { color: #fff; text-decoration: underline; text-underline-offset: 3px; }

/* Full layer sections used on Our Growth Story page */
.layer-section {
  border-radius: var(--radius-lg);
  padding: 40px;
  margin-bottom: 24px;
  border: 1px solid rgba(27,40,54,0.08);
  background: #fff;
}
.layer-section .layer-tag {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  padding: 6px 12px;
  border-radius: 999px;
  color: #fff;
  display: inline-block;
  margin-bottom: 16px;
}
.layer-section--1 .layer-tag { background: linear-gradient(90deg, #EE8B2E, #d97b1f); }
.layer-section--2 .layer-tag { background: linear-gradient(90deg, #dd8a4a, #8b6b78); }
.layer-section--3 .layer-tag { background: linear-gradient(90deg, #6c6f9a, #40529e); }
.layer-section--4 .layer-tag { background: linear-gradient(90deg, #33469A, #1B2836); }

.layer-section .layer-what {
  font-size: 0.95rem;
  color: var(--slate);
  border-left: 3px solid var(--paper);
  padding-left: 16px;
  margin-bottom: 20px;
}

.gap-note {
  background: var(--paper);
  border-left: 3px solid var(--orange);
  padding: 14px 18px;
  border-radius: 8px;
  font-size: 0.94rem;
  color: var(--ink);
}

/* ----------------------------- Proof strip -------------------------------- */

.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.proof-item {
  padding: 22px 14px;
  border-radius: var(--radius-md);
  background: #fff;
  border: 1px solid rgba(27,40,54,0.06);
}
.proof-item .proof-num {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--blue);
}
.proof-item .proof-label {
  font-size: 0.85rem;
  color: var(--slate);
  margin-top: 4px;
}
@media (max-width: 760px) {
  .proof-strip { grid-template-columns: repeat(2, 1fr); }
}

/* ------------------------------ CTA band --------------------------------- */

.cta-band {
  background: var(--ink-deep);
  border-radius: var(--radius-lg);
  padding: 56px 40px;
  text-align: center;
  color: #fff;
}
.cta-band h2 { color: #fff; }
.cta-band p { color: #B7C0CC; }
.cta-band .btn-row { justify-content: center; }

.cta-band-wrap { padding: 0 0 72px; }

/* ------------------------------- Footer ----------------------------------- */

.site-footer {
  background: var(--ink-deep);
  color: #B7C0CC;
  padding: 56px 0 28px;
  font-size: 0.92rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 40px;
}
.footer-brand {
  display: inline-flex;
  align-items: center;
  background: #fff;
  padding: 10px 16px;
  border-radius: 10px;
  margin-bottom: 16px;
}
.footer-logo-img { height: 28px; width: auto; display: block; }

.site-footer h5 {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 14px;
}
.site-footer p { color: #B7C0CC; }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.site-footer a { color: #B7C0CC; }
.site-footer a:hover { color: var(--orange); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.82rem;
  color: #7C8695;
}

@media (max-width: 860px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ------------------------------ Page header -------------------------------- */

.page-header {
  padding: 64px 0 40px;
  text-align: center;
}
.page-header .lede {
  max-width: 62ch;
  margin: 0 auto;
  color: var(--slate);
  font-size: 1.08rem;
}

/* Small page hero used on service subpages (left-aligned, with tag) */
.service-hero { padding: 56px 0 40px; }
.service-hero .lede { color: var(--slate); font-size: 1.1rem; max-width: 60ch; }

.content-block { max-width: 780px; }
.content-block h2 { margin-top: 1.4em; }

.book-quote {
  margin: 32px 0;
  padding: 24px 28px;
  border-left: 3px solid;
  border-image: var(--signal-gradient) 1;
  background: var(--paper);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--ink);
  line-height: 1.5;
}
.book-quote cite {
  display: block;
  margin-top: 12px;
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.85rem;
  color: var(--slate);
}

.faq-item {
  padding: 20px 0;
  border-bottom: 1px solid rgba(27,40,54,0.08);
}
.faq-item:last-child { border-bottom: none; }
.faq-item h3 { font-size: 1.05rem; margin-bottom: 0.4em; }
.faq-item p { color: var(--slate); margin-bottom: 0; }

.who-box {
  background: #fff;
  border: 1px solid rgba(27,40,54,0.08);
  border-radius: var(--radius-md);
  padding: 24px 26px;
  margin: 28px 0;
}
.who-box h4 {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 8px;
}

/* ------------------------------- Forms -------------------------------------- */

.form-field { margin-bottom: 20px; }
.form-field label {
  display: block;
  font-weight: 600;
  font-size: 0.92rem;
  margin-bottom: 6px;
}
.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid rgba(27,40,54,0.18);
  font: inherit;
  background: #fff;
  color: var(--ink);
}
.form-field textarea { min-height: 120px; resize: vertical; }

.form-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(27,40,54,0.06);
  max-width: 640px;
  margin: 0 auto;
}

/* Honeypot field — hidden from real users, catches basic bots */
.hp-field { position: absolute; left: -9999px; top: -9999px; }

.confirm-box {
  text-align: center;
  padding: 60px 20px;
}
.confirm-box .icon {
  width: 64px; height: 64px; margin: 0 auto 20px;
  border-radius: 50%;
  background: var(--signal-gradient);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.6rem;
}

/* ------------------------------- Utility ------------------------------------- */

.badge-list { display: flex; flex-wrap: wrap; gap: 10px; margin: 20px 0; }

.book-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(27,40,54,0.06);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.book-card h3 a { color: inherit; }
.book-card h3 a:hover { color: var(--blue); }
.book-cover {
  aspect-ratio: 3/4;
  border-radius: 8px;
  background: var(--signal-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: var(--font-display);
  text-align: center;
  padding: 20px;
  font-size: 1.1rem;
}
.book-cover-img {
  aspect-ratio: 3/4;
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: var(--shadow-sm);
}

.coming-soon-badge {
  display: inline-block;
  align-self: flex-start;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 6px;
  background: var(--orange);
  color: #fff;
}

.book-cta-disabled {
  color: var(--slate);
  pointer-events: none;
  cursor: default;
}
.book-cta-disabled::after { display: none; }

.holding-page {
  text-align: center;
  padding: 100px 20px;
}
.holding-page .rule { margin-left: auto; margin-right: auto; }

table.legal-table { width: 100%; border-collapse: collapse; margin: 1.4em 0; }
table.legal-table th, table.legal-table td {
  border: 1px solid rgba(27,40,54,0.12);
  padding: 10px 12px;
  text-align: left;
  font-size: 0.92rem;
}
table.legal-table th { background: var(--paper); }
