/* ============================================================
   OTS ATLAS — ORTHOTISSUE SOLUTIONS
   Design System: Luxury / Refined / Enterprise
   Typography: Cormorant Garant (display) + DM Sans (body)
   Colors: Deep Navy + Warm Gold + Cream
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garant:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400&family=DM+Sans:wght@300;400;500;600&display=swap');

/* ── TOKENS ─────────────────────────────────────────────── */
:root {
  --navy:        #0d1f3c;
  --navy-deep:   #081428;
  --navy-mid:    #162d52;
  --gold:        #c9a84c;
  --gold-light:  #e8c97a;
  --gold-dim:    #8a7235;
  --cream:       #f9f6f0;
  --cream-dark:  #f0ebe0;
  --white:       #ffffff;
  --gray-100:    #f5f7fa;
  --gray-200:    #e8edf4;
  --gray-400:    #9aa5b8;
  --gray-600:    #5a6478;
  --gray-800:    #2d3748;
  --text:        #1a2640;

  --font-display: 'Cormorant Garant', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  --radius:      4px;
  --radius-lg:   8px;
  --shadow-sm:   0 2px 8px rgba(13,31,60,0.08);
  --shadow-md:   0 8px 32px rgba(13,31,60,0.12);
  --shadow-lg:   0 24px 64px rgba(13,31,60,0.18);

  --max-w:       1200px;
  --section-pad: 100px;
}

/* ── RESET ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── TYPOGRAPHY ─────────────────────────────────────────── */
.display-xl {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.display-lg {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.display-md {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.5vw, 2.4rem);
  font-weight: 400;
  line-height: 1.2;
}
.label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.body-lg { font-size: 1.125rem; line-height: 1.7; }
.body-md { font-size: 1rem; line-height: 1.65; }
.body-sm { font-size: 0.875rem; line-height: 1.6; }

/* ── LAYOUT ─────────────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
}
.section { padding: var(--section-pad) 0; }
.section--cream { background: var(--cream); }
.section--navy { background: var(--navy); color: var(--white); }
.section--dark { background: var(--navy-deep); color: var(--white); }

/* ── GOLD RULE ──────────────────────────────────────────── */
.gold-rule {
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 24px;
}
.gold-rule--center { margin-left: auto; margin-right: auto; }

/* ── BUTTONS ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 32px;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
}
.btn-primary {
  background: var(--gold);
  color: var(--navy);
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(201,168,76,0.3);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.4);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.btn-outline-dark {
  background: transparent;
  color: var(--navy);
  border: 1px solid var(--navy);
}
.btn-outline-dark:hover {
  background: var(--navy);
  color: var(--white);
}

/* ── NAVIGATION ─────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 40px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(13,31,60,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: all 0.3s ease;
}
.nav.scrolled {
  height: 64px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.2);
}
.nav-logo { display: flex; align-items: center; }   /* was column */
.nav-logo-img { height: 42px; width: auto; display: block; }
.nav.scrolled .nav-logo-img { height: 34px; }
}
.nav-logo-img {
  height: 34px;
  width: auto;
  display: block;
}
.nav.scrolled .nav-logo-img {
  height: 30px;
}
.nav-logo-name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.01em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a.active { color: var(--white); }
.nav-cta {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  background: var(--gold);
  padding: 10px 24px;
  transition: all 0.2s;
}
.nav-cta:hover {
  background: var(--gold-light);
}
.nav-mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav-mobile-toggle span {
  width: 24px;
  height: 1.5px;
  background: var(--white);
  transition: all 0.3s;
}

/* ── HERO ────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  background: var(--navy-deep);
  display: flex;
  align-items: center;
  padding-top: 72px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 60% 40%, rgba(201,168,76,0.06) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 20% 80%, rgba(13,31,60,0.8) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 80px 0;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}
.hero-eyebrow-line {
  width: 32px;
  height: 1px;
  background: var(--gold);
}
.hero-eyebrow-text {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 12px;
}
.hero-title em {
  font-style: italic;
  color: var(--gold);
}
.hero-subtitle {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
  font-weight: 300;
  color: rgba(255,255,255,0.55);
  margin-bottom: 40px;
  line-height: 1.5;
  letter-spacing: 0.01em;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 40px;
  position: relative;
}
.hero-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
}
.hero-card-label {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
.hero-card-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.3;
}
.hero-card-items {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.hero-card-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.hero-card-check {
  width: 16px;
  height: 16px;
  min-width: 16px;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.hero-card-check::after {
  content: '';
  width: 6px;
  height: 4px;
  border-left: 1.5px solid var(--navy);
  border-bottom: 1.5px solid var(--navy);
  transform: rotate(-45deg) translateY(-1px);
}
.hero-card-item-text {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
}

/* ── STATS BAR ──────────────────────────────────────────── */
.stats-bar {
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 48px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item {
  text-align: center;
  padding: 0 32px;
  position: relative;
}
.stat-item + .stat-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 20%;
  bottom: 20%;
  width: 1px;
  background: rgba(255,255,255,0.1);
}
.stat-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.stat-label {
  font-size: 0.75rem;
  font-weight: 400;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.06em;
  line-height: 1.4;
}

/* ── SECTION HEADER ─────────────────────────────────────── */
.section-header {
  margin-bottom: 64px;
}
.section-header--center {
  text-align: center;
}
.section-header--center .gold-rule {
  margin-left: auto;
  margin-right: auto;
}
.section-eyebrow {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
}
.section-body {
  font-size: 1.05rem;
  color: var(--gray-600);
  line-height: 1.7;
  max-width: 600px;
}
.section-body--white { color: rgba(255,255,255,0.6); }
.section-header--center .section-body {
  margin-left: auto;
  margin-right: auto;
}

/* ── PILLARS ────────────────────────────────────────────── */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--gray-200);
}
.pillar {
  background: var(--white);
  padding: 48px 32px;
  position: relative;
  transition: background 0.2s;
}
.pillar:hover { background: var(--cream); }
.pillar-number {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--cream-dark);
  line-height: 1;
  margin-bottom: 20px;
  letter-spacing: -0.03em;
}
.pillar-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 16px;
}
.pillar-body {
  font-size: 0.875rem;
  color: var(--gray-600);
  line-height: 1.65;
}
.pillar-accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.pillar:hover .pillar-accent { transform: scaleX(1); }

/* ── INCLUDED SECTION ───────────────────────────────────── */
.included-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.included-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.included-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.included-check {
  width: 20px;
  height: 20px;
  min-width: 20px;
  background: rgba(201,168,76,0.15);
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.included-check::after {
  content: '';
  width: 7px;
  height: 5px;
  border-left: 1.5px solid var(--gold);
  border-bottom: 1.5px solid var(--gold);
  transform: rotate(-45deg) translateY(-1px);
}
.included-item-text {
  font-size: 0.925rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.55;
}
.included-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.for-card {
  border: 1px solid rgba(255,255,255,0.08);
  padding: 20px;
  transition: border-color 0.2s;
}
.for-card:hover { border-color: rgba(201,168,76,0.3); }
.for-card-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 300;
  color: rgba(255,255,255,0.12);
  line-height: 1;
  margin-bottom: 8px;
}
.for-card-title {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}
.for-card-body {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
}

/* ── CLEARCHAIN ─────────────────────────────────────────── */
.clearchain-block {
  background: var(--cream);
  padding: 64px;
  border-left: 4px solid var(--gold);
  position: relative;
}
.clearchain-name {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 4px;
}
.clearchain-tagline {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 24px;
}
.clearchain-body {
  font-size: 1rem;
  color: var(--gray-600);
  line-height: 1.7;
  max-width: 600px;
  margin-bottom: 40px;
}
.clearchain-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.cc-feature {
  padding-left: 16px;
  border-left: 2px solid var(--gold);
}
.cc-feature-text {
  font-size: 0.84rem;
  color: var(--gray-600);
  line-height: 1.55;
}

/* ── PROOF ──────────────────────────────────────────────── */
.proof-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.proof-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--gray-200);
}
.proof-stat {
  background: var(--white);
  padding: 32px 24px;
  text-align: center;
}
.proof-stat-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 8px;
}
.proof-stat-label {
  font-size: 0.78rem;
  color: var(--gray-600);
  line-height: 1.4;
}
.quote-block {
  background: var(--cream);
  padding: 40px;
  border: 1px solid var(--cream-dark);
  position: relative;
}
.quote-mark {
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--gold);
  line-height: 0.6;
  margin-bottom: 16px;
  opacity: 0.6;
}
.quote-text {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--navy);
  line-height: 1.65;
  margin-bottom: 20px;
}
.quote-attr {
  font-size: 0.78rem;
  color: var(--gray-400);
  line-height: 1.5;
  letter-spacing: 0.03em;
}

/* ── CTA BANNER ─────────────────────────────────────────── */
.cta-banner {
  background: var(--navy);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 100% at 80% 50%, rgba(201,168,76,0.08), transparent);
  pointer-events: none;
}
.cta-banner-inner {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 48px;
}
.cta-banner-text {}
.cta-banner-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.2;
}
.cta-banner-sub {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
  max-width: 480px;
}
.cta-banner-actions {
  display: flex;
  gap: 16px;
  flex-shrink: 0;
}

/* ── FOOTER ─────────────────────────────────────────────── */
.footer {
  background: var(--navy-deep);
  padding: 64px 0 32px;
  color: rgba(255,255,255,0.5);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 8px;
}
.footer-brand-tag {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-brand-body {
  font-size: 0.84rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.4);
  max-width: 280px;
}
.footer-col-title {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 20px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold); }
.footer-contact-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 16px;
}
.footer-contact-label {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
}
.footer-contact-value {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
}
.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-bottom-left {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.25);
}
.footer-bottom-right {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.2);
}
.footer-gold-line {
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin-bottom: 64px;
}

/* ── PAGE HERO (inner pages) ────────────────────────────── */
.page-hero {
  background: var(--navy-deep);
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent 60%);
}
.page-hero-eyebrow {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.page-hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
  max-width: 560px;
}

/* ── RESOURCE CARDS ─────────────────────────────────────── */
.resources-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.resource-card {
  border: 1px solid var(--gray-200);
  transition: all 0.2s;
  overflow: hidden;
}
.resource-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.resource-card-top {
  background: var(--navy);
  padding: 32px;
  position: relative;
}
.resource-card-type {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.resource-card-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--white);
  line-height: 1.3;
}
.resource-card-body {
  padding: 24px 32px 32px;
}
.resource-card-desc {
  font-size: 0.875rem;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 24px;
}

/* ── GATED DOWNLOAD ─────────────────────────────────────── */
.gated-block {
  background: var(--navy);
  padding: 64px;
  position: relative;
  overflow: hidden;
}
.gated-block::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
}
.gated-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.gated-title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.2;
}
.gated-body {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
  margin-bottom: 32px;
}
.gated-bullets {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.gated-bullet {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.84rem;
  color: rgba(255,255,255,0.6);
}
.gated-bullet::before {
  content: '';
  width: 4px;
  height: 4px;
  background: var(--gold);
  flex-shrink: 0;
}
.gated-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
.form-input {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.925rem;
  padding: 12px 16px;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}
.form-input:focus {
  border-color: var(--gold);
}
.form-input::placeholder { color: rgba(255,255,255,0.25); }
.form-disclaimer {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.25);
  line-height: 1.5;
}

/* ── ABOUT PAGE ─────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.credential-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.credential-item {
  display: flex;
  gap: 20px;
  padding: 24px;
  border: 1px solid var(--gray-200);
  transition: border-color 0.2s;
}
.credential-item:hover { border-color: var(--gold); }
.credential-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
}
.credential-icon svg { width: 18px; height: 18px; fill: var(--gold); }
.credential-title {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 4px;
}
.credential-body {
  font-size: 0.825rem;
  color: var(--gray-600);
  line-height: 1.55;
}
.bank-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.bank-card {
  border: 1px solid var(--gray-200);
  padding: 24px 20px;
  text-align: center;
}
.bank-card-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 4px;
}
.bank-card-role {
  font-size: 0.72rem;
  color: var(--gold-dim);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ── CONTACT PAGE ───────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.contact-info-item {
  margin-bottom: 32px;
}
.contact-info-label {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.contact-info-value {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--white);
}
.contact-form-block {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 48px;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.calendly-note {
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.2);
  padding: 20px 24px;
  margin-bottom: 32px;
}
.calendly-note-text {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.55;
}
.calendly-note-text a {
  color: var(--gold);
  text-decoration: underline;
  text-decoration-color: rgba(201,168,76,0.4);
}

/* ── ANIMATIONS ─────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up {
  opacity: 0;
  animation: fadeUp 0.6s ease forwards;
}
.fade-up-1 { animation-delay: 0.1s; }
.fade-up-2 { animation-delay: 0.2s; }
.fade-up-3 { animation-delay: 0.3s; }
.fade-up-4 { animation-delay: 0.4s; }

/* ── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .pillars-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .clearchain-features { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .cta-banner-actions { flex-direction: column; width: 100%; }
.cta-banner-actions .btn { width: 100%; text-align: center; justify-content: center; }
  :root { --section-pad: 64px; }
  .container { padding: 0 24px; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-card { display: none; }
  .pillars-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .included-grid { grid-template-columns: 1fr; }
  .proof-grid { grid-template-columns: 1fr; }
  .gated-inner { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .resources-grid { grid-template-columns: 1fr; }
  .cta-banner-inner { flex-direction: column; text-align: center; }
  .footer-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-mobile-toggle { display: flex; }
  .proof-stats { grid-template-columns: 1fr; }
  .bank-grid { grid-template-columns: 1fr; }
}

/* ── INCLUDED GRID COLUMN ALIGNMENT FIX ── */
.included-grid {
  align-items: start;
}
.included-right-spacer {
  height: 5.2rem;
  display: block;
}

/* ── HERO FULL-WIDTH TITLE SIZING ── */
.hero--full .hero-title {
  font-size: clamp(2.4rem, 4vw, 4.2rem);
}
.hero--full .hero-subtitle {
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  margin-bottom: 28px;
  max-width: 800px;
}
.hero--full > .container {
  padding: 0 60px;
}

/* ── INCLUDED GRID COLUMN TOP ALIGNMENT ── */
.included-grid {
  align-items: start !important;
}
.included-right-spacer {
  display: none !important;
}
.atlas-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.included-checklist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .atlas-split { grid-template-columns: 1fr; gap: 40px; }
  .included-checklist { grid-template-columns: 1fr; }
  .clearchain-features { grid-template-columns: 1fr; }
}
.atlas-split { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.included-checklist { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; max-width: 900px; margin: 0 auto; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 768px) {
  .atlas-split { grid-template-columns: 1fr; gap: 40px; }
  .included-checklist { grid-template-columns: 1fr; }
  .clearchain-features { grid-template-columns: 1fr; }
  .form-row-2 { grid-template-columns: 1fr; }
}
.calendly-inline-widget { width: 100% !important; min-width: 0 !important; }
.contact-form-block { overflow: hidden; }
.calendly-note-text a { overflow-wrap: break-word; }