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

/* ─── Brand tokens ─────────────────────────────────────────── */
:root {
  --brand-deep:   #0B1F3A;
  --brand-darker: #07142A;
  --brand-mid:    #1E406B;
  --brand-light:  #6E97C4;
  --brand-pale:   #EAF0F8;
  --steel:     #5B8AC0;
  --steel-deep:    #2C4F7C;
  --steel-pale:    #E8EFF8;
  --gold:         #C9A84C;
  --gold-light:   #E3C97A;
  --white:        #FFFFFF;
  --off-white:    #F7FAF8;
  --stone:        #F0EDE8;
  --text-primary: #0C2414;
  --text-mid:     #3A5545;
  --text-light:   #7A9585;
  --border:       rgba(11,31,58,0.12);
  --border-mid:   rgba(11,31,58,0.2);
  --nav-h:        76px;
  --radius:       8px;
  --radius-lg:    16px;
  --radius-xl:    26px;
  --shadow:       0 2px 16px rgba(11,31,58,0.08);
  --shadow-lg:    0 8px 40px rgba(11,31,58,0.12);
  --shadow-premium: 0 1px 2px rgba(11,31,58,0.04), 0 10px 28px rgba(11,31,58,0.09), 0 28px 56px rgba(11,31,58,0.06);
  --grad-brand:  linear-gradient(135deg, #1E406B 0%, #5B8AC0 100%);
  --grad-navy:  linear-gradient(135deg, #0B1F3A 0%, #1E406B 100%);
  --grad-steel:   linear-gradient(135deg, #5B8AC0 0%, #2C4F7C 100%);
  --grad-gold:   linear-gradient(135deg, #E3C97A 0%, #C9A84C 100%);
  --glow-brand:  0 0 40px rgba(91,138,192,0.3);
  --glow-steel:   0 0 40px rgba(110,151,196,0.3);
  --ff-display:  'Cormorant Garamond', Georgia, serif;
  --ff-body:     'DM Sans', sans-serif;
  --ff-mono:     'DM Mono', monospace;
  --transition:  0.25s cubic-bezier(0.4,0,0.2,1);
}

/* ─── Reset ────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--ff-body);
  color: var(--text-primary);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
::selection { background: rgba(91,138,192,0.22); }

/* ─── Typography ───────────────────────────────────────────── */
.display { font-family: var(--ff-display); font-weight: 400; line-height: 1.1; letter-spacing: -0.01em; }
.display-xl { font-family: var(--ff-display); font-size: clamp(2.4rem, 6vw, 5.5rem); font-weight: 300; line-height: 1.04; letter-spacing: -0.02em; }
h1 { font-family: var(--ff-display); font-size: clamp(1.9rem, 4vw, 3.5rem); font-weight: 400; line-height: 1.1; }
h2 { font-family: var(--ff-display); font-size: clamp(1.6rem, 3vw, 2.8rem); font-weight: 400; line-height: 1.15; }
h3 { font-family: var(--ff-display); font-size: clamp(1.2rem, 2vw, 1.8rem); font-weight: 400; }
h4 { font-family: var(--ff-body); font-size: 1rem; font-weight: 500; letter-spacing: 0.04em; }
p { color: var(--text-mid); line-height: 1.75; }
.label {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--ff-mono); font-size: 0.7rem; font-weight: 500; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--text-light);
}
.label::before {
  content: ''; width: 22px; height: 1px;
  background: var(--grad-brand);
}
.section-header.center .label { display: inline-flex; }
.section-header.center .label::before { display: none; }
.mono { font-family: var(--ff-mono); font-size: 0.85rem; }
.grad-text {
  background: var(--grad-brand);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

/* ─── Layout ───────────────────────────────────────────────── */
.container { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 2rem; }
.container-sm { width: 100%; max-width: 760px; margin: 0 auto; padding: 0 2rem; }
.section { padding: 6.5rem 0; }
.section-sm { padding: 4rem 0; }
.grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 1.25rem; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.gap-1 { gap: 1rem; }
.gap-2 { gap: 2rem; }
.text-center { text-align: center; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }

/* ─── Buttons ──────────────────────────────────────────────── */
.btn {
  position: relative; overflow: hidden;
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.8rem 1.8rem;
  font-family: var(--ff-body); font-size: 0.875rem; font-weight: 500; letter-spacing: 0.02em;
  border-radius: 999px; cursor: pointer; transition: var(--transition);
  border: 1.5px solid transparent; white-space: nowrap;
}
.btn::after {
  content: ''; position: absolute; top: 0; bottom: 0; left: 0; width: 55%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,0.28), transparent);
  transform: translateX(-200%); transition: transform 0.7s ease; pointer-events: none;
}
.btn:hover::after { transform: translateX(320%); }
.btn-primary {
  background: var(--grad-navy); color: var(--white); border-color: transparent;
  box-shadow: 0 4px 16px rgba(11,31,58,0.22);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(30,64,107,0.4); }
.btn-outline {
  background: transparent; color: var(--brand-deep); border-color: var(--border-mid);
}
.btn-outline:hover { background: var(--brand-deep); color: var(--white); border-color: var(--brand-deep); transform: translateY(-2px); box-shadow: 0 8px 22px rgba(11,31,58,0.2); }
.btn-steel {
  background: var(--grad-steel); color: var(--white); border-color: transparent;
  box-shadow: 0 4px 16px rgba(110,151,196,0.3);
}
.btn-steel:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(110,151,196,0.5); }
.btn-ghost { background: rgba(255,255,255,0.04); color: var(--white); border-color: rgba(255,255,255,0.35); backdrop-filter: blur(4px); }
.btn-ghost:hover { background: rgba(255,255,255,0.12); border-color: var(--white); transform: translateY(-2px); }
.btn-lg { padding: 1rem 2.5rem; font-size: 1rem; }

/* ─── Navigation (floating glass bubble) ───────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 0.9rem 1.5rem 0;
  pointer-events: none;
  transition: padding-top var(--transition);
}
.nav-shell {
  pointer-events: auto; position: relative;
  max-width: 1080px; margin: 0 auto; height: 60px;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 0 0.7rem 0 1.35rem;
  background: linear-gradient(180deg, rgba(255,255,255,0.74), rgba(247,250,252,0.6));
  -webkit-backdrop-filter: blur(22px) saturate(180%);
  backdrop-filter: blur(22px) saturate(180%);
  border: 1px solid rgba(255,255,255,0.55);
  border-radius: 999px;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.65),
    0 14px 36px -12px rgba(11,31,58,0.30),
    0 4px 12px rgba(11,31,58,0.06);
  transition: var(--transition);
}
.nav.scrolled { padding-top: 0.55rem; }
.nav.scrolled .nav-shell {
  height: 56px;
  background: linear-gradient(180deg, rgba(255,255,255,0.9), rgba(247,250,252,0.82));
  border-color: rgba(255,255,255,0.7);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.75),
    0 18px 44px -12px rgba(11,31,58,0.38),
    0 4px 14px rgba(11,31,58,0.08);
}
.nav-logo { display: flex; align-items: center; gap: 0.7rem; flex-shrink: 0; }
.nav-logo-img { width: 40px; height: 40px; object-fit: contain; filter: drop-shadow(0 2px 6px rgba(11,31,58,0.2)); transition: var(--transition); }
.nav-logo:hover .nav-logo-img { transform: scale(1.06) rotate(-3deg); }
.nav-links { display: flex; align-items: center; gap: 0.1rem; flex: 1; justify-content: center; }
.nav-link {
  position: relative; z-index: 0; white-space: nowrap;
  font-size: 0.875rem; font-weight: 400; color: var(--text-mid);
  padding: 0.5rem 0.85rem; border-radius: 999px;
  transition: var(--transition);
}
.nav-link::before {
  content: ''; position: absolute; inset: 0; z-index: -1; border-radius: 999px;
  background: rgba(30,64,107,0.07); opacity: 0; transform: scale(0.82);
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.nav-link:hover { color: var(--brand-deep); }
.nav-link:hover::before { opacity: 1; transform: scale(1); }
.nav-link.active { color: var(--brand-deep); font-weight: 500; }
.nav-link.active::before { opacity: 1; transform: scale(1); background: rgba(30,64,107,0.1); }
.nav-cta {
  flex-shrink: 0;
  background: linear-gradient(135deg, #0B1F3A 0%, #1E406B 100%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.18),
    0 6px 18px rgba(11,31,58,0.40),
    0 0 0 1px rgba(30,64,107,0.28);
}
.nav-cta:hover {
  background: linear-gradient(135deg, #14315A 0%, #2C5285 100%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.24),
    0 10px 28px rgba(11,31,58,0.50),
    0 0 22px rgba(30,64,107,0.40);
}
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px;
  background: none; border: none; flex-shrink: 0; margin-right: 0.3rem;
}
.nav-hamburger span { display: block; width: 22px; height: 1.5px; background: var(--brand-deep); border-radius: 2px; transition: var(--transition); }
.nav-hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
.nav-mobile {
  display: none; position: fixed; top: calc(var(--nav-h) - 4px); left: 1rem; right: 1rem;
  background: linear-gradient(180deg, rgba(255,255,255,0.92), rgba(247,250,252,0.88));
  -webkit-backdrop-filter: blur(22px) saturate(180%);
  backdrop-filter: blur(22px) saturate(180%);
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: var(--radius-xl);
  padding: 0.75rem 1.35rem 1.25rem; z-index: 99;
  box-shadow: 0 22px 54px -14px rgba(11,31,58,0.36);
}
.nav-mobile.open { display: block; animation: fadeUp 0.3s ease; }
/* The mobile menu only belongs while the nav is collapsed; never let it
   linger on desktop if the viewport is widened while it's open. */
@media (min-width: 981px) { .nav-mobile, .nav-mobile.open { display: none; } }
.nav-mobile a:not(.btn) { display: block; padding: 0.9rem 0.25rem; font-size: 1rem; border-bottom: 1px solid var(--border); color: var(--text-mid); transition: var(--transition); }
.nav-mobile a:not(.btn):hover { color: var(--brand-deep); padding-left: 0.6rem; }
.nav-mobile a:not(.btn):last-of-type { border-bottom: none; }
.nav-mobile a.btn { display: flex; justify-content: center; margin-top: 1.15rem; }

/* ─── Page offset ──────────────────────────────────────────── */
.page-top { padding-top: var(--nav-h); }
.hero.page-top { padding-top: calc(var(--nav-h) + 2rem); }

/* ─── Hero ─────────────────────────────────────────────────── */
.hero {
  position: relative; overflow: hidden;
  min-height: calc(100vh - var(--nav-h));
  background: radial-gradient(ellipse at 70% 10%, #13325C 0%, var(--brand-deep) 45%, var(--brand-darker) 100%);
  display: flex; align-items: center;
  padding: 3rem 0;
}
.hero-grid {
  position: absolute; inset: 0; opacity: 0.05; pointer-events: none;
  background-image: linear-gradient(var(--white) 1px, transparent 1px),
    linear-gradient(90deg, var(--white) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(ellipse at 50% 40%, #000 30%, transparent 80%);
  mask-image: radial-gradient(ellipse at 50% 40%, #000 30%, transparent 80%);
}
.hero-orb { position: absolute; border-radius: 50%; filter: blur(90px); opacity: 0.5; pointer-events: none; }
.hero-orb-1 { width: 520px; height: 520px; background: radial-gradient(circle, rgba(91,138,192,0.45), transparent 70%); top: -180px; right: -120px; animation: float 14s ease-in-out infinite; }
.hero-orb-2 { width: 440px; height: 440px; background: radial-gradient(circle, rgba(110,151,196,0.4), transparent 70%); bottom: -160px; left: -130px; animation: float 18s ease-in-out infinite reverse; }
@keyframes float { 0%,100% { transform: translateY(0) translateX(0); } 50% { transform: translateY(-30px) translateX(20px); } }
.hero-layout { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr 0.95fr; align-items: center; gap: 3rem; }
.hero-content { max-width: 620px; }
.hero-eyebrow { color: var(--brand-light); margin-bottom: 1.5rem; }
.hero-eyebrow::before { background: var(--brand-light); }
.hero-title { color: var(--white); margin-bottom: 1.5rem; }
.hero-title em { font-style: italic; background: linear-gradient(135deg, #8FB6E0, #5B8AC0); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.hero-body { color: rgba(255,255,255,0.68); font-size: 1.1rem; max-width: 520px; margin-bottom: 2.5rem; line-height: 1.8; }
.hero-actions { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.hero-stats {
  margin-top: 3.5rem; display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; border-top: 1px solid rgba(255,255,255,0.12); padding-top: 2.25rem;
}
.hero-stat { padding-right: 1.5rem; }
.hero-stat + .hero-stat { padding-left: 1.5rem; border-left: 1px solid rgba(255,255,255,0.12); }
.hero-stat-num {
  font-family: var(--ff-display); font-size: 2rem; font-weight: 300; letter-spacing: -0.02em;
  background: linear-gradient(135deg, #ffffff 35%, #AECBEC);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent;
}
.hero-stat-label { font-family: var(--ff-mono); font-size: 0.62rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.45); margin-top: 6px; }

/* ─── Hero medallion (Web3 token) ──────────────────────────── */
.hero-visual-wrap { position: relative; display: flex; align-items: center; justify-content: center; min-height: 440px; }
.hero-medallion { position: relative; width: 320px; height: 320px; display: flex; align-items: center; justify-content: center; }
.hero-medallion-glow { position: absolute; width: 260px; height: 260px; border-radius: 50%; background: radial-gradient(circle, rgba(110,151,196,0.35), transparent 65%); filter: blur(30px); }
.hero-core {
  position: relative; z-index: 3; width: 178px; height: 178px; border-radius: 50%;
  background: radial-gradient(circle at 35% 28%, rgba(143,182,224,0.35), rgba(11,31,58,0.55) 70%);
  border: 1.5px solid rgba(255,255,255,0.28);
  backdrop-filter: blur(6px);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  box-shadow: 0 0 70px rgba(110,151,196,0.35), inset 0 2px 30px rgba(91,138,192,0.25), inset 0 -10px 30px rgba(0,0,0,0.3);
}
.hero-core-mark { font-family: var(--ff-display); font-size: 2.8rem; font-weight: 500; color: #fff; letter-spacing: 0.06em; line-height: 1; }
.hero-core-sub { font-family: var(--ff-mono); font-size: 0.55rem; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(255,255,255,0.55); margin-top: 6px; }
.hero-ring { position: absolute; top: 50%; left: 50%; border-radius: 50%; transform: translate(-50%, -50%); }
.hero-ring-1 { width: 250px; height: 250px; border: 1px dashed rgba(255,255,255,0.22); animation: spin 26s linear infinite; }
.hero-ring-2 { width: 320px; height: 320px; border: 1px solid rgba(110,151,196,0.18); animation: spin 40s linear infinite reverse; }
@keyframes spin { from { transform: translate(-50%,-50%) rotate(0); } to { transform: translate(-50%,-50%) rotate(360deg); } }
.hero-node { position: absolute; width: 11px; height: 11px; border-radius: 50%; background: var(--brand-light); box-shadow: 0 0 14px var(--brand-light); }
.hero-node.node-blue { background: var(--steel); box-shadow: 0 0 14px var(--steel); }
.hero-node.node-gold { background: var(--gold-light); box-shadow: 0 0 14px var(--gold-light); }
.hero-float-badge {
  position: absolute; z-index: 4;
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.55rem 0.9rem; border-radius: 99px;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(10px);
  font-family: var(--ff-mono); font-size: 0.72rem; color: #fff; letter-spacing: 0.04em;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}
.hero-float-badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--brand-light); box-shadow: 0 0 8px var(--brand-light); }
.hero-float-badge .up { color: var(--brand-light); }
.hero-float-nav { top: 8%; right: 2%; animation: float 9s ease-in-out infinite; }
.hero-float-yield { bottom: 10%; left: 0; animation: float 11s ease-in-out infinite reverse; }

/* ─── Section headers ──────────────────────────────────────── */
.section-header { margin-bottom: 3.25rem; }
.section-header.center { text-align: center; max-width: 660px; margin: 0 auto 3.25rem; }
.section-header h2 { margin-top: 0.75rem; }
.section-header p { margin-top: 1rem; font-size: 1.05rem; }

/* ─── Cards ────────────────────────────────────────────────── */
.card {
  position: relative; overflow: hidden;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.9rem;
  transition: var(--transition);
}
.card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--grad-brand); transform: scaleX(0); transform-origin: left;
  transition: transform 0.35s ease;
}
.card:hover::before { transform: scaleX(1); }
.card:hover { border-color: rgba(91,138,192,0.28); background: radial-gradient(130% 130% at 88% -15%, rgba(91,138,192,0.12), var(--white) 58%); box-shadow: var(--shadow-premium), 0 24px 50px -22px rgba(30,64,107,0.42); transform: translateY(-6px); }
.card-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: linear-gradient(135deg, var(--brand-pale), #ffffff);
  border: 1px solid rgba(30,64,107,0.12);
  display: flex; align-items: center; justify-content: center; margin-bottom: 1.35rem;
  transition: var(--transition);
}
.card:hover .card-icon { transform: scale(1.05); box-shadow: 0 6px 18px rgba(30,64,107,0.15); }
.card-icon svg { width: 22px; height: 22px; stroke: var(--brand-mid); }
.card h3 { margin-bottom: 0.5rem; font-size: 1.25rem; }
.card p { font-size: 0.9rem; }

/* ─── Property cards ───────────────────────────────────────── */
.prop-card { position: relative; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); transition: var(--transition); background: var(--white); }
.prop-card:hover { box-shadow: var(--shadow-premium), 0 24px 50px -22px rgba(30,64,107,0.42); transform: translateY(-6px); border-color: rgba(91,138,192,0.28); }
.prop-thumb { height: 200px; position: relative; overflow: hidden; }
.prop-thumb-inner { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; transition: var(--transition); }
.prop-card:hover .prop-thumb-inner { transform: scale(1.05); }
.prop-badge { position: absolute; top: 12px; left: 12px; padding: 4px 11px; border-radius: 20px; font-family: var(--ff-mono); font-size: 0.62rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; backdrop-filter: blur(6px); }
.badge-pipeline { background: rgba(110,151,196,0.18); color: var(--steel-deep); border: 1px solid rgba(110,151,196,0.35); }
.badge-active { background: rgba(91,138,192,0.18); color: var(--brand-mid); border: 1px solid rgba(91,138,192,0.35); }
.badge-coming { background: rgba(201,168,76,0.16); color: #8A6000; border: 1px solid rgba(201,168,76,0.35); }
.prop-body { padding: 1.4rem 1.5rem; }
.prop-body h3 { font-size: 1.2rem; margin-bottom: 0.25rem; }
.prop-location { font-size: 0.8rem; color: var(--text-light); margin-bottom: 1.1rem; display: flex; align-items: center; gap: 0.3rem; }
.prop-meta { display: flex; justify-content: space-between; padding-top: 1.1rem; border-top: 1px solid var(--border); }
.prop-meta-item { text-align: center; }
.prop-meta-val { font-family: var(--ff-mono); font-size: 0.95rem; font-weight: 500; color: var(--text-primary); }
.prop-meta-key { font-size: 0.62rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-light); margin-top: 3px; }

/* ─── Steps ────────────────────────────────────────────────── */
.step { display: flex; gap: 1.5rem; align-items: flex-start; }
.step-num {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--grad-navy); color: #fff;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  font-family: var(--ff-mono); font-size: 0.85rem; margin-top: 2px;
  box-shadow: 0 6px 16px rgba(11,31,58,0.2);
}
.step-content h3 { font-size: 1.2rem; margin-bottom: 0.4rem; }
.step-content p { font-size: 0.9rem; }

/* ─── Stats bar ────────────────────────────────────────────── */
.stats-bar { position: relative; background: var(--off-white); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 2.25rem 0; }
.stats-bar::before { content: ''; position: absolute; top: -1px; left: 0; right: 0; height: 2px; background: var(--grad-brand); opacity: 0.5; }
.stats-bar-inner { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1.5rem; }
.stat-item { text-align: center; flex: 1; min-width: 100px; }
.stat-val { font-family: var(--ff-display); font-size: 1.9rem; font-weight: 400; color: var(--brand-deep); }
.stat-key { font-family: var(--ff-mono); font-size: 0.62rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-light); margin-top: 5px; }

/* ─── Split layouts ────────────────────────────────────────── */
.split-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.split-2.items-start { align-items: start; }
.split-sidebar { display: grid; grid-template-columns: 220px 1fr; gap: 4rem; align-items: start; }
@media (max-width: 860px) {
  .split-2, .split-sidebar { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* ─── Divider ──────────────────────────────────────────────── */
.divider { border: none; border-top: 1px solid var(--border); }
.divider-mid { border-color: var(--border-mid); }

/* ─── Tag/Badge ────────────────────────────────────────────── */
.tag { display: inline-block; padding: 4px 11px; border-radius: 20px; font-family: var(--ff-mono); font-size: 0.68rem; font-weight: 500; letter-spacing: 0.05em; }
.tag-brand { background: var(--brand-pale); color: var(--brand-mid); }
.tag-steel { background: var(--steel-pale); color: var(--steel-deep); }
.tag-stone { background: var(--stone); color: var(--text-mid); }

/* ─── CTA band ─────────────────────────────────────────────── */
.cta-band { background: radial-gradient(ellipse at 50% 0%, #13325C, var(--brand-deep) 55%, var(--brand-darker)); padding: 5.5rem 0; position: relative; overflow: hidden; }
.cta-band::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle at 80% 50%, rgba(110,151,196,0.18) 0%, transparent 55%),
    radial-gradient(circle at 15% 80%, rgba(91,138,192,0.12) 0%, transparent 50%);
}
.cta-band::after {
  content: ''; position: absolute; inset: 0; opacity: 0.05;
  background-image: linear-gradient(var(--white) 1px, transparent 1px), linear-gradient(90deg, var(--white) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(ellipse at 50% 50%, #000 20%, transparent 75%);
  mask-image: radial-gradient(ellipse at 50% 50%, #000 20%, transparent 75%);
}
.cta-band-inner { position: relative; z-index: 1; text-align: center; }
.cta-band h2 { color: var(--white); margin-bottom: 1rem; }
.cta-band p { color: rgba(255,255,255,0.65); font-size: 1.05rem; max-width: 500px; margin: 0 auto 2rem; }
.cta-band-actions { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }

/* ─── Footer ───────────────────────────────────────────────── */
.footer { background: var(--brand-darker); color: rgba(255,255,255,0.55); padding: 4.5rem 0 2rem; position: relative; }
.footer::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: var(--grad-brand); opacity: 0.4; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-brand p { font-size: 0.875rem; line-height: 1.75; margin-top: 0.75rem; max-width: 280px; }
.footer-logo-link { display: flex; align-items: center; gap: 0.7rem; margin-bottom: 0.25rem; }
.footer-logo-img { width: 38px; height: 38px; object-fit: contain; }
.footer-col h4 { font-family: var(--ff-mono); font-size: 0.66rem; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 1.1rem; }
.footer-col a { display: block; font-size: 0.875rem; padding: 0.35rem 0; color: rgba(255,255,255,0.55); transition: var(--transition); }
.footer-col a:hover { color: var(--brand-light); transform: translateX(3px); }
.footer-bottom { padding-top: 2rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; font-family: var(--ff-mono); font-size: 0.72rem; color: rgba(255,255,255,0.4); }
.footer-logo-text { font-family: var(--ff-display); font-size: 1.4rem; font-weight: 400; color: var(--white); }
.footer-disclaimer { font-size: 0.72rem; line-height: 1.6; color: rgba(255,255,255,0.3); margin-top: 1.5rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.06); }

/* ─── Page hero (inner pages) ──────────────────────────────── */
.page-hero { background: radial-gradient(ellipse at 70% 20%, #13325C, var(--brand-deep) 55%, var(--brand-darker)); padding: 5.5rem 0 4.5rem; position: relative; overflow: hidden; }
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle at 30% 70%, rgba(91,138,192,0.14) 0%, transparent 50%), radial-gradient(circle at 85% 20%, rgba(110,151,196,0.14) 0%, transparent 50%);
}
.page-hero::after {
  content: ''; position: absolute; inset: 0; opacity: 0.05;
  background-image: linear-gradient(var(--white) 1px, transparent 1px), linear-gradient(90deg, var(--white) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(ellipse at 50% 40%, #000 25%, transparent 80%);
  mask-image: radial-gradient(ellipse at 50% 40%, #000 25%, transparent 80%);
}
.page-hero-inner { position: relative; z-index: 1; }
.page-hero .label { color: var(--brand-light); }
.page-hero .label::before { background: var(--brand-light); }
.page-hero h1 { color: var(--white); margin-top: 0.75rem; }
.page-hero p { color: rgba(255,255,255,0.65); max-width: 540px; margin-top: 1rem; font-size: 1.05rem; }

/* ─── Table ────────────────────────────────────────────────── */
.table-wrap { overflow-x: auto; border: 1px solid var(--border); border-radius: var(--radius-lg); }
table { width: 100%; border-collapse: collapse; font-size: 0.875rem; }
thead th { background: var(--off-white); padding: 0.95rem 1.25rem; text-align: left; font-family: var(--ff-mono); font-weight: 500; font-size: 0.66rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-light); border-bottom: 1px solid var(--border); }
tbody td { padding: 1rem 1.25rem; border-bottom: 1px solid var(--border); color: var(--text-mid); }
tbody tr:last-child td { border-bottom: none; }
tbody tr:hover td { background: var(--off-white); }

/* ─── Accordion (FAQ) ──────────────────────────────────────── */
.accordion-item { border-bottom: 1px solid var(--border); }
.accordion-trigger { width: 100%; display: flex; justify-content: space-between; align-items: center; padding: 1.35rem 0; background: none; border: none; cursor: pointer; text-align: left; font-family: var(--ff-body); font-size: 1rem; font-weight: 500; color: var(--text-primary); }
.accordion-trigger:hover { color: var(--brand-mid); }
.accordion-icon { width: 22px; height: 22px; flex-shrink: 0; border: 1.5px solid var(--border-mid); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: var(--transition); color: var(--text-light); font-size: 14px; }
.accordion-item.open .accordion-icon { background: var(--grad-brand); border-color: transparent; color: #fff; transform: rotate(45deg); }
.accordion-body { display: none; padding: 0 0 1.35rem; }
.accordion-item.open .accordion-body { display: block; }
.accordion-body p { font-size: 0.92rem; }

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

/* ─── Utilities ────────────────────────────────────────────── */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
.bg-pale { background: var(--off-white); }
.bg-stone { background: var(--stone); }
.text-brand { color: var(--brand-mid); }
.text-steel { color: var(--steel); }
.text-white { color: var(--white); }
.border-t { border-top: 1px solid var(--border); padding-top: 2rem; margin-top: 2rem; }

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════ */

/* ─── Hide medallion / stack hero (≤980px) ─────────────────── */
@media (max-width: 980px) {
  .hero-layout { grid-template-columns: 1fr; }
  .hero-visual-wrap { display: none; }
  .hero { min-height: auto; }

  /* Collapse the horizontal nav to the hamburger before the links can crowd. */
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
}

/* ─── Large tablet (≤1024px) ───────────────────────────────── */
@media (max-width: 1024px) {
  .container { padding: 0 1.5rem; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-brand p { max-width: 100%; }
}

/* ─── Tablet (≤768px) ──────────────────────────────────────── */
@media (max-width: 768px) {
  :root { --nav-h: 66px; }

  .container { padding: 0 1.25rem; }
  .section { padding: 4rem 0; }
  .section-sm { padding: 2.5rem 0; }

  .nav { padding: 0.6rem 1rem 0; }
  .nav-shell { height: 54px; padding: 0 0.5rem 0 1.1rem; }
  .nav.scrolled .nav-shell { height: 50px; }

  .hero { padding: 2rem 0 3rem; }
  .hero-body { font-size: 1rem; }
  .hero-stats { margin-top: 2.5rem; grid-template-columns: repeat(2, 1fr); }
  .hero-stat { padding: 1.25rem 0; }
  .hero-stat + .hero-stat { padding-left: 0; border-left: none; }
  .hero-stat:nth-child(2n) { padding-left: 1.5rem; border-left: 1px solid rgba(255,255,255,0.12); }
  .hero-stat:nth-child(3), .hero-stat:nth-child(4) { border-top: 1px solid rgba(255,255,255,0.12); }
  .hero-stat:nth-child(4) { padding-left: 1.5rem; }
  .hero-stat-num { font-size: 1.7rem; }

  .stats-bar-inner { justify-content: center; gap: 1rem; }
  .stat-item { min-width: 130px; flex: 0 1 calc(50% - 0.5rem); }
  .stat-val { font-size: 1.6rem; }

  .grid-3, .grid-4 { grid-template-columns: 1fr 1fr; }

  .section-header { margin-bottom: 2.25rem; }
  .section-header.center { margin-bottom: 2.25rem; }
  .section-header p { font-size: 0.95rem; }

  .cta-band { padding: 4rem 0; }
  .cta-band p { font-size: 0.95rem; }

  .page-hero { padding: calc(var(--nav-h) + 1rem) 0 3rem; }

  .footer-top { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .footer-brand { grid-column: 1 / -1; }
}

/* ─── Mobile (≤600px) ──────────────────────────────────────── */
@media (max-width: 600px) {
  .container { padding: 0 1rem; }
  .section { padding: 3rem 0; }

  .hero { padding: 1.5rem 0 2.5rem; }
  .hero-actions { flex-direction: column; align-items: stretch; gap: 0.75rem; }
  .hero-actions .btn { width: 100%; justify-content: center; }

  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }

  .stats-bar-inner { gap: 0.75rem; }
  .stat-item { flex: 0 1 calc(50% - 0.375rem); }

  .section-header[style*="space-between"] { flex-direction: column !important; align-items: flex-start !important; }

  .cta-band-actions { flex-direction: column; align-items: center; }
  .cta-band-actions .btn { width: 100%; max-width: 320px; justify-content: center; }
  .cta-band { padding: 3.5rem 0; }

  .footer-top { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .footer { padding: 3.5rem 0 2rem; }

  .page-hero { padding: calc(var(--nav-h) + 1rem) 0 2.5rem; }
  .page-hero p { font-size: 0.95rem; }

  .nav-mobile { left: 0.75rem; right: 0.75rem; padding: 0.6rem 1rem 1.25rem; }

  thead th, tbody td { padding: 0.8rem 1rem; font-size: 0.8rem; }

  .prop-meta { flex-wrap: wrap; gap: 0.75rem; }
  .prop-meta-item { flex: 1; min-width: 60px; }
}

/* ─── Small mobile (≤400px) ────────────────────────────────── */
@media (max-width: 400px) {
  .display-xl { font-size: 2.1rem; }
  h1 { font-size: 1.7rem; }
  h2 { font-size: 1.4rem; }
  .hero-stat-num { font-size: 1.45rem; }
  .btn-lg { padding: 0.9rem 1.5rem; font-size: 0.9rem; }
  .nav-logo-img { width: 36px; height: 36px; }
}

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

/* ═══════════════════════════════════════════════════════════
   REVAMP COMPONENTS
   ═══════════════════════════════════════════════════════════ */

/* ─── Lead paragraph ───────────────────────────────────────── */
.lead { font-size: 1.15rem; line-height: 1.8; color: var(--text-mid); }

/* ─── Vertical cards (3 investment lines) ──────────────────── */
.vert-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 1.5rem; }
.vert-card {
  position: relative; overflow: hidden; display: flex; flex-direction: column;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 2.1rem 1.9rem 1.9rem;
  transition: var(--transition);
}
.vert-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--grad-brand); transform: scaleX(0); transform-origin: left;
  transition: transform 0.35s ease;
}
.vert-card:hover::before { transform: scaleX(1); }
.vert-card:hover { transform: translateY(-7px); border-color: rgba(91,138,192,0.28); background: radial-gradient(130% 130% at 88% -15%, rgba(91,138,192,0.12), var(--white) 58%); box-shadow: var(--shadow-premium), 0 26px 52px -22px rgba(30,64,107,0.42); }
.vert-marker {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 10px; margin-bottom: 1.25rem;
  font-family: var(--ff-mono); font-size: 0.9rem; font-weight: 500; color: #fff;
  background: var(--grad-navy); box-shadow: 0 6px 16px rgba(11,31,58,0.22);
}
.vert-card h3 { font-size: 1.35rem; margin-bottom: 0.5rem; }
.vert-card .vert-sub { font-family: var(--ff-mono); font-size: 0.66rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--steel-deep); margin-bottom: 0.9rem; }
.vert-card p { font-size: 0.92rem; flex: 1; }
.vert-return {
  display: flex; align-items: baseline; gap: 0.5rem;
  margin: 1.4rem 0 1.25rem; padding-top: 1.25rem; border-top: 1px solid var(--border);
}
.vert-return-num { font-family: var(--ff-display); font-size: 2.1rem; font-weight: 400; line-height: 1; }
.vert-return-key { font-family: var(--ff-mono); font-size: 0.66rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-light); }
.vert-link { font-family: var(--ff-mono); font-size: 0.78rem; letter-spacing: 0.04em; color: var(--steel-deep); display: inline-flex; align-items: center; gap: 0.4rem; transition: var(--transition); }
.vert-card:hover .vert-link { gap: 0.7rem; color: var(--brand-mid); }

/* ─── Metric rows ──────────────────────────────────────────── */
.metric-row { display: flex; flex-wrap: wrap; gap: 2.75rem; }
.metric-val { font-family: var(--ff-display); font-size: clamp(1.9rem, 3.5vw, 2.8rem); font-weight: 400; line-height: 1; color: var(--brand-deep); }
.metric-val.grad { background: var(--grad-brand); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.metric-key { font-family: var(--ff-mono); font-size: 0.66rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-light); margin-top: 0.55rem; max-width: 180px; }

/* ─── Feature checklists ───────────────────────────────────── */
.feature-list { list-style: none; display: grid; gap: 0.9rem; }
.feature-list li { position: relative; padding-left: 2rem; color: var(--text-mid); font-size: 0.95rem; line-height: 1.6; }
.feature-list li::before {
  content: ''; position: absolute; left: 0; top: 2px;
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--brand-pale);
  -webkit-mask: center / 11px no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232C4F7C' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  mask: center / 11px no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232C4F7C' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-color: var(--steel-deep);
}

/* ─── Callout ──────────────────────────────────────────────── */
.callout {
  border-left: 3px solid var(--gold);
  background: var(--off-white);
  padding: 1.25rem 1.5rem; border-radius: 0 var(--radius) var(--radius) 0;
}
.callout p { font-size: 0.9rem; margin: 0; }
.callout strong { color: var(--text-primary); }
.callout.steel { border-left-color: var(--steel-deep); }

/* ─── Panel (forms / content blocks) ───────────────────────── */
.panel {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 2.5rem;
  box-shadow: var(--shadow);
}
@media (max-width: 600px) { .panel { padding: 1.6rem; } }

/* ─── Forms ────────────────────────────────────────────────── */
.form { display: grid; gap: 1.2rem; }
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
@media (max-width: 560px) { .form-grid-2 { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 0.45rem; }
.field label { font-family: var(--ff-mono); font-size: 0.68rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-light); }
.field input, .field select, .field textarea {
  font-family: var(--ff-body); font-size: 0.95rem; color: var(--text-primary);
  width: 100%; padding: 0.85rem 1rem;
  border: 1.5px solid var(--border-mid); border-radius: var(--radius);
  background: var(--white); transition: var(--transition); line-height: 1.5;
}
.field textarea { resize: vertical; min-height: 140px; }
.field input::placeholder, .field textarea::placeholder { color: var(--text-light); opacity: 0.7; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--steel);
  box-shadow: 0 0 0 3px rgba(91,138,192,0.16);
}
.field select {
  appearance: none; -webkit-appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238294A8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 0.9rem center; background-size: 16px;
  padding-right: 2.5rem;
}
.form-note { font-size: 0.78rem; color: var(--text-light); line-height: 1.6; }
.form-alert {
  padding: 0.85rem 1.1rem; border-radius: var(--radius);
  font-size: 0.88rem; line-height: 1.55; display: none;
}
.form-alert.show { display: block; }
.form-alert.error { background: rgba(193,58,58,0.08); color: #9A2B2B; border: 1px solid rgba(193,58,58,0.22); }
.form-alert.success { background: var(--brand-pale); color: var(--steel-deep); border: 1px solid rgba(44,79,124,0.22); }

/* ─── Token reveal (after inquiry submit) ──────────────────── */
.token-box {
  display: flex; align-items: center; gap: 0.75rem; flex-wrap: wrap;
  margin-top: 1rem; padding: 0.9rem 1rem;
  background: var(--off-white); border: 1px dashed var(--border-mid); border-radius: var(--radius);
}
.token-box code { font-family: var(--ff-mono); font-size: 0.82rem; color: var(--text-primary); word-break: break-all; flex: 1; min-width: 200px; }
.btn-copy { font-family: var(--ff-mono); font-size: 0.72rem; padding: 0.5rem 0.9rem; border: 1px solid var(--border-mid); border-radius: var(--radius); background: var(--white); cursor: pointer; transition: var(--transition); color: var(--text-mid); }
.btn-copy:hover { border-color: var(--steel); color: var(--steel-deep); }

/* ─── Message thread ───────────────────────────────────────── */
.thread-wrap { max-width: 760px; margin: 0 auto; }
.thread-head {
  display: flex; justify-content: space-between; align-items: flex-start; gap: 1rem; flex-wrap: wrap;
  padding-bottom: 1.5rem; margin-bottom: 1.75rem; border-bottom: 1px solid var(--border);
}
.thread-head h2 { font-size: 1.5rem; }
.thread-head .mono { color: var(--text-light); margin-top: 0.3rem; }
.msg-list { display: flex; flex-direction: column; gap: 1rem; }
.msg { max-width: 80%; padding: 0.9rem 1.15rem; border-radius: 16px; font-size: 0.93rem; line-height: 1.6; white-space: pre-wrap; overflow-wrap: anywhere; }
.msg-inquirer { align-self: flex-end; background: var(--grad-navy); color: rgba(255,255,255,0.95); border-bottom-right-radius: 5px; }
.msg-admin { align-self: flex-start; background: var(--white); border: 1px solid var(--border); color: var(--text-primary); border-bottom-left-radius: 5px; box-shadow: var(--shadow); }
.msg-meta { font-family: var(--ff-mono); font-size: 0.6rem; letter-spacing: 0.06em; text-transform: uppercase; margin-top: 0.45rem; opacity: 0.65; }
.msg-admin .msg-meta { color: var(--steel-deep); opacity: 0.8; }
.composer { display: flex; gap: 0.75rem; align-items: flex-end; margin-top: 1.5rem; padding-top: 1.5rem; border-top: 1px solid var(--border); }
.composer textarea { flex: 1; min-height: 52px; }
@media (max-width: 560px) { .msg { max-width: 92%; } .composer { flex-direction: column; align-items: stretch; } .composer .btn { width: 100%; justify-content: center; } }

/* ─── Status pills ─────────────────────────────────────────── */
.status-pill { display: inline-block; padding: 3px 10px; border-radius: 20px; font-family: var(--ff-mono); font-size: 0.6rem; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; }
.status-pill.open { background: var(--brand-pale); color: var(--steel-deep); }
.status-pill.answered { background: rgba(201,168,76,0.16); color: #8a6f24; }
.status-pill.closed { background: var(--stone); color: var(--text-light); }
.status-open { background: rgba(91,138,192,0.16); color: var(--steel-deep); border: 1px solid rgba(91,138,192,0.32); }
.status-answered { background: rgba(201,168,76,0.16); color: #8A6000; border: 1px solid rgba(201,168,76,0.35); }

/* ─── Admin dashboard ──────────────────────────────────────── */
.admin-main { min-height: 100vh; background: var(--off-white); padding: calc(var(--nav-h) + 2rem) 0 4rem; }
.admin-bar { display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; margin-bottom: 2rem; }
.admin-bar h1 { font-size: 1.6rem; }
.admin-login-wrap { min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 2rem; background: radial-gradient(ellipse at 70% 10%, #13325C 0%, var(--brand-deep) 50%, var(--brand-darker) 100%); }
.admin-login-card { width: 100%; max-width: 390px; }
.admin-login-card .nav-logo-img { width: 52px; height: 52px; margin: 0 auto 1.25rem; }
.admin-layout { display: grid; grid-template-columns: 350px 1fr; gap: 1.5rem; align-items: start; }
@media (max-width: 880px) { .admin-layout { grid-template-columns: 1fr; } }
.inq-list { display: flex; flex-direction: column; gap: 0.75rem; max-height: 70vh; overflow-y: auto; padding-right: 0.25rem; }
.inq-row { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.1rem 1.25rem; cursor: pointer; transition: var(--transition); text-align: left; width: 100%; font-family: inherit; }
.inq-row:hover { border-color: var(--border-mid); box-shadow: var(--shadow); }
.inq-row.active { border-color: var(--steel); box-shadow: 0 0 0 2px rgba(91,138,192,0.18); }
.inq-row-top { display: flex; justify-content: space-between; align-items: center; gap: 0.5rem; margin-bottom: 0.35rem; }
.inq-row-name { font-weight: 500; color: var(--text-primary); font-size: 0.95rem; }
.inq-row-sub { font-size: 0.8rem; color: var(--text-light); }
.inq-row-meta { font-family: var(--ff-mono); font-size: 0.62rem; color: var(--text-light); margin-top: 0.45rem; display: flex; justify-content: space-between; gap: 0.5rem; }
.admin-thread { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2rem; min-height: 400px; }
.admin-empty { display: flex; flex-direction: column; align-items: center; justify-content: center; min-height: 360px; text-align: center; color: var(--text-light); }
.admin-empty svg { width: 40px; height: 40px; stroke: var(--text-light); opacity: 0.5; margin-bottom: 1rem; }
.admin-contact { font-family: var(--ff-mono); font-size: 0.8rem; color: var(--steel-deep); }
.spinner { width: 22px; height: 22px; border: 2px solid var(--border-mid); border-top-color: var(--steel); border-radius: 50%; animation: spin-c 0.7s linear infinite; }
@keyframes spin-c { to { transform: rotate(360deg); } }

/* ─── Spec rows ────────────────────────────────────────────── */
.spec-rows { display: flex; flex-direction: column; }
.spec-row { display: flex; justify-content: space-between; gap: 1rem; padding: 0.7rem 0; border-bottom: 1px solid var(--border); font-size: 0.9rem; color: var(--text-mid); }
.spec-row:last-child { border-bottom: none; }
.spec-row .mono { color: var(--text-primary); }

/* ─── Floating-glass polish ────────────────────────────────── */
::-webkit-scrollbar { width: 12px; height: 12px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb {
  background: linear-gradient(var(--brand-mid), var(--steel-deep));
  border: 3px solid transparent; border-radius: 99px; background-clip: padding-box;
}
::-webkit-scrollbar-thumb:hover { background: linear-gradient(var(--brand-deep), var(--brand-mid)); background-clip: padding-box; }
html { scrollbar-color: rgba(44,79,124,0.45) transparent; scrollbar-width: thin; }

.stats-bar { background: linear-gradient(180deg, var(--off-white), #ffffff); }
.stat-item { transition: var(--transition); }
.stat-item:hover .stat-val { color: var(--brand-mid); }

.panel { transition: box-shadow var(--transition), transform var(--transition); }
.panel:hover { box-shadow: var(--shadow-lg); }

.tag { transition: var(--transition); }
.tag:hover { transform: translateY(-1px); }

/* ═══════════════════════════════════════════════════════════
   EDITORIAL REFINEMENT LAYER
   Deepens the "On-Chain Vault" concept: print-grade grain,
   champagne-gold hairline accents, engraved seals, and calmer,
   gallery-grade composition in place of generic glow/blur.
   ═══════════════════════════════════════════════════════════ */

/* ── Film grain: subtle tactile texture over the whole page ── */
body::after {
  content: ''; position: fixed; inset: 0; z-index: 9998; pointer-events: none;
  opacity: 0.04; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
@media (prefers-reduced-motion: reduce) { body::after { display: none; } }
@media (prefers-contrast: more) { body::after { display: none; } }

/* Calm the orbiting rings to a near-imperceptible drift so the seal
   reads as engraved metal, not a loading spinner (web3 trope). */
.hero-ring-1 { animation-duration: 120s; }
.hero-ring-2 { animation-duration: 170s; }

/* ── Eyebrow labels: champagne tick + finer tracking ── */
.label { letter-spacing: 0.22em; }
.label::before { width: 28px; height: 1px; background: var(--grad-gold); }
.hero-eyebrow::before, .page-hero .label::before { background: linear-gradient(90deg, var(--gold-light), transparent); }
.section-header.center .label { color: var(--steel-deep); }

/* ── Hero atmosphere: retire the blobby orbs for a poised,
      directional light + a single champagne whisper + vignette ── */
.hero-orb { filter: blur(130px); opacity: 0.3; }
.hero-orb-1 { background: radial-gradient(circle, rgba(91,138,192,0.55), transparent 68%); }
.hero-orb-2 { background: radial-gradient(circle, rgba(201,168,76,0.22), transparent 70%); }
.hero::after {
  content: ''; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(115% 75% at 50% 125%, rgba(7,20,42,0.5), transparent 60%),
    linear-gradient(180deg, transparent 64%, rgba(7,20,42,0.28));
}
.hero-grid { opacity: 0.07; }

/* On-asset skyline: engraved real estate grounded in an on-chain
   node network — the product thesis rendered as the hero backdrop. */
.hero::before {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0; z-index: 1;
  height: 68%; pointer-events: none;
  background: url("../images/hero-skyline.svg") no-repeat bottom center;
  background-size: cover;
  opacity: 0.55;
  -webkit-mask-image: linear-gradient(180deg, transparent 2%, #000 42%);
  mask-image: linear-gradient(180deg, transparent 2%, #000 42%);
}
@media (max-width: 980px) { .hero::before { height: 52%; opacity: 0.4; } }

/* A hairline horizon under the eyebrow ties the ledger motif together */
.hero-eyebrow { position: relative; padding-bottom: 1.4rem; margin-bottom: 1.4rem; }
.hero-eyebrow::after {
  content: ''; position: absolute; left: 0; bottom: 0; width: 64px; height: 1px;
  background: linear-gradient(90deg, rgba(227,201,122,0.7), transparent);
}

/* ── Medallion → engraved vault seal (gold rings, calmer glow) ── */
.hero-medallion-glow { opacity: 0.7; }
.hero-ring-1 { border-color: rgba(227,201,122,0.28); }
.hero-ring-2 { border-color: rgba(201,168,76,0.16); }
.hero-core {
  border: 1px solid rgba(227,201,122,0.4);
  box-shadow: 0 0 56px rgba(91,138,192,0.22), inset 0 2px 30px rgba(91,138,192,0.18), inset 0 -12px 34px rgba(0,0,0,0.4);
}
.hero-core::before {
  content: ''; position: absolute; inset: 14px; border-radius: 50%;
  border: 1px solid rgba(227,201,122,0.22);
}
.hero-core-mark { font-weight: 400; letter-spacing: 0.14em; }
.hero-node.node-gold { background: var(--gold-light); box-shadow: 0 0 16px var(--gold-light); }
.hero-float-badge .dot { background: var(--gold-light); box-shadow: 0 0 8px var(--gold-light); }

/* ── Section numeral cue: a fine gold rule above centered heads ── */
.section-header.center::before {
  content: ''; display: block; width: 34px; height: 2px; margin: 0 auto 1.5rem;
  background: var(--grad-gold); border-radius: 2px;
}

/* ── Vertical markers → circular serif seals, gold-rimmed ── */
.vert-marker {
  width: 46px; height: 46px; border-radius: 50%;
  background: transparent; color: var(--brand-deep);
  border: 1px solid var(--gold);
  font-family: var(--ff-display); font-size: 1.45rem; font-weight: 500;
  box-shadow: inset 0 0 0 3px rgba(255,255,255,0.6), 0 4px 14px rgba(201,168,76,0.14);
}
.vert-card:hover .vert-marker { background: var(--grad-gold); color: var(--brand-darker); border-color: transparent; }

/* ── Cards & vert-cards: editorial hairline instead of radial tint ── */
.card::before, .vert-card::before { height: 2px; background: var(--grad-gold); }
.card:hover, .vert-card:hover {
  background: var(--white);
  border-color: rgba(201,168,76,0.45);
  box-shadow: var(--shadow-premium), 0 22px 46px -24px rgba(11,31,58,0.4);
  transform: translateY(-6px);
}
.card-icon { border-radius: 50%; background: linear-gradient(135deg, #fff, var(--brand-pale)); border-color: rgba(201,168,76,0.3); }
.card:hover .card-icon { box-shadow: 0 6px 18px rgba(201,168,76,0.18); }

/* ── Step numerals → outlined ledger seals ── */
.step-num {
  background: transparent; color: var(--brand-deep);
  border: 1px solid var(--gold); border-radius: 50%;
  font-family: var(--ff-display); font-size: 1.1rem;
  box-shadow: inset 0 0 0 3px rgba(255,255,255,0.6);
}

/* ── Buttons: a whisper of gold edge-light on the primary CTAs ── */
.btn-steel { box-shadow: inset 0 1px 0 rgba(255,255,255,0.25), 0 4px 16px rgba(110,151,196,0.3); }
.btn-steel:hover { box-shadow: inset 0 1px 0 rgba(255,255,255,0.35), 0 10px 30px rgba(110,151,196,0.45), 0 0 0 1px rgba(227,201,122,0.35); }

/* ── Callout: refined gold ledger rule ── */
.callout { border-left-width: 2px; background: linear-gradient(90deg, rgba(201,168,76,0.07), transparent 60%), var(--off-white); }

/* ── Dividers gain a faint gold center, like a ledger seam ── */
.section-header h2 { letter-spacing: -0.015em; }

/* ═══════════════════════════════════════════════════════════
   CARD REFINEMENT LAYER  (appended after the editorial layer —
   deepens the card sections so they read as premium "vault
   panels" rather than flat boxes. Additive overrides only.)
   ═══════════════════════════════════════════════════════════ */

/* ── Why-Zovira cards: dimensional panels w/ navy "vault seal" icons ── */
.card {
  background: linear-gradient(180deg, #ffffff 0%, var(--off-white) 100%);
  box-shadow: 0 1px 2px rgba(11,31,58,0.04), 0 10px 26px -18px rgba(11,31,58,0.16);
}
.card-icon {
  width: 52px; height: 52px;
  background: var(--grad-navy);
  border: 1px solid rgba(201,168,76,0.55);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.14), 0 7px 18px -6px rgba(11,31,58,0.4);
}
.card-icon svg { width: 24px; height: 24px; stroke: var(--gold-light); }
.card:hover .card-icon {
  transform: translateY(-2px) scale(1.05);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.18), 0 12px 26px -8px rgba(11,31,58,0.5);
}
.card:hover { box-shadow: var(--shadow-premium), 0 24px 50px -24px rgba(11,31,58,0.42); }

/* ── Vertical cards: faint engraved watermark letter + richer ground ── */
.vert-card { isolation: isolate; background: linear-gradient(180deg, #ffffff 0%, var(--off-white) 100%); }
.vert-card::after {
  content: attr(data-letter);
  position: absolute; right: -0.06em; bottom: -0.22em; z-index: -1;
  font-family: var(--ff-display); font-weight: 500; font-size: 9.5rem; line-height: 1;
  color: var(--brand-deep); opacity: 0.05; pointer-events: none; user-select: none;
}
.vert-card:hover::after { opacity: 0.08; color: var(--gold); }
.vert-return-num.grad-text {
  background: var(--grad-gold); -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ── Stats / trust bar: ledger-column hairline dividers ── */
.stats-bar-inner .stat-item { position: relative; }
.stats-bar-inner .stat-item:not(:last-child)::after {
  content: ''; position: absolute; right: calc(-0.75rem - 0.5px); top: 50%;
  transform: translateY(-50%); width: 1px; height: 38px;
  background: linear-gradient(180deg, transparent, var(--border-mid) 30%, rgba(201,168,76,0.4) 50%, var(--border-mid) 70%, transparent);
}
@media (max-width: 768px) {
  .stats-bar-inner .stat-item:not(:last-child)::after { display: none; }
  .vert-card::after { font-size: 7rem; }
}
