/* ==========================================================================
   Kinna Homes — shared stylesheet
   Palette and type ported from the Claude Design source
   ========================================================================== */

:root {
  --bg: #FAFBFD;
  --bg-alt: #F1F5FB;
  --ink: #16202E;
  --body: #4B5565;
  --muted: #677181;
  --faint: #8C9199;
  --navy: #12356F;
  --blue: #1C4C9C;
  --deep: #0C2650;
  --sky: #7FA3E0;
  --pale: #C9D5EC;
  --mist: #B9C6DE;
  --steel: #8FA2C4;
  --slate: #5C77A8;
  --error: #C2402A;
  --sel-bg: #EDF2FB;
  --hairline: rgba(22, 32, 46, .07);
  --serif: 'Cinzel', serif;
  --sans: 'Libre Franklin', sans-serif;
  --script: 'Mrs Saint Delafield', cursive;
  --ease: cubic-bezier(.2, .7, .2, 1);
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  /* the tilted ticker intentionally bleeds past the viewport edge */
  overflow-x: hidden;
  overflow-x: clip;
}

body.page-sell { background: var(--bg-alt); }

a { color: var(--blue); text-decoration: none; }
a:hover { color: var(--navy); }
::selection { background: var(--blue); color: #fff; }

input, textarea, select, button { font-family: var(--sans); }

input:focus, textarea:focus {
  outline: none;
  border-color: var(--blue) !important;
  box-shadow: 0 0 0 3px rgba(28, 76, 156, .15);
}

@keyframes tick { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes floaty { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
@keyframes heroUp { from { opacity: 0; transform: translateY(34px); } to { opacity: 1; transform: translateY(0); } }
@keyframes stepIn { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: translateY(0); } }
@keyframes pop { 0% { transform: scale(.6); opacity: 0; } 70% { transform: scale(1.08); } 100% { transform: scale(1); opacity: 1; } }

/* ==========================================================================
   Shared bits
   ========================================================================== */

.eyebrow {
  font-size: 12px;
  letter-spacing: .3em;
  color: var(--blue);
  font-weight: 600;
  margin-bottom: 16px;
}

.wordmark {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
}
.wordmark:hover { color: #fff; }
.wordmark svg { display: block; }
.wordmark-text {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: .14em;
}
.wordmark-text small {
  color: #9FB4D8;
  font-weight: 400;
  font-size: inherit;
}

.kh-watermark {
  position: absolute;
  font-family: var(--serif);
  font-weight: 700;
  line-height: 1;
  user-select: none;
  pointer-events: none;
}

/* ==========================================================================
   Navigation
   ========================================================================== */

.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 4vw;
  background: rgba(250, 251, 253, .82);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--hairline);
}

.site-nav--dark {
  background: rgba(12, 38, 80, .75);
  border-bottom-color: rgba(255, 255, 255, .08);
}

.nav-brand { display: flex; align-items: center; gap: 12px; }
.nav-brand svg { display: block; }
.nav-brand-stack { display: flex; flex-direction: column; line-height: 1; }
.nav-brand-stack .line-1 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 19px;
  letter-spacing: .14em;
  color: var(--blue);
}
.nav-brand-stack .line-2 {
  font-family: var(--serif);
  font-size: 11px;
  letter-spacing: .42em;
  color: var(--faint);
  margin-top: 3px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14px;
  font-weight: 500;
}
.site-nav--dark .nav-links { gap: 26px; }

.nav-link { color: #3D4756; }
.nav-link:hover { color: var(--blue); }
.site-nav--dark .nav-link { color: var(--pale); }
.site-nav--dark .nav-link:hover { color: #fff; }

.btn-nav-outline {
  padding: 10px 20px;
  border: 1.5px solid var(--blue);
  border-radius: 6px;
  color: var(--blue);
  font-weight: 600;
}
.btn-nav-outline:hover { background: var(--sel-bg); color: var(--blue); }

.btn-nav-solid {
  padding: 10px 20px;
  background: var(--blue);
  border-radius: 6px;
  color: #fff;
  font-weight: 600;
  box-shadow: 0 4px 14px rgba(28, 76, 156, .3);
}
.btn-nav-solid:hover { background: var(--navy); color: #fff; }

.btn-nav-light {
  padding: 10px 22px;
  background: #fff;
  border-radius: 6px;
  color: var(--navy);
  font-weight: 600;
}
.btn-nav-light:hover { background: #E8EEF8; color: var(--navy); }

.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  padding: 0 9px;
  background: none;
  border: 1px solid rgba(22, 32, 46, .15);
  border-radius: 8px;
  cursor: pointer;
}
.nav-burger span {
  display: block;
  height: 2px;
  border-radius: 2px;
  background: var(--ink);
  transition: transform .3s var(--ease), opacity .3s;
}
.site-nav--dark .nav-burger { border-color: rgba(255, 255, 255, .25); }
.site-nav--dark .nav-burger span { background: #fff; }
.site-nav.menu-open .nav-burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.site-nav.menu-open .nav-burger span:nth-child(2) { opacity: 0; }
.site-nav.menu-open .nav-burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ==========================================================================
   Home — hero
   ========================================================================== */

.hero {
  position: relative;
  overflow: hidden;
  padding: 150px 4vw 90px;
  min-height: 88vh;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 5vw;
  align-items: center;
  background: linear-gradient(180deg, #FAFBFD 0%, #F1F5FB 100%);
}

.hero-orb {
  position: absolute;
  top: -180px; right: -140px;
  width: 640px; height: 640px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(28, 76, 156, .10) 0%, rgba(28, 76, 156, 0) 65%);
}

.hero-kh {
  bottom: -70px; left: -60px;
  font-size: 380px;
  color: rgba(28, 76, 156, .05);
}

.hero-copy { position: relative; z-index: 2; }

.hero-badge {
  animation: heroUp .8s var(--ease) both .1s;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: #fff;
  border: 1px solid rgba(28, 76, 156, .18);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .14em;
  color: var(--blue);
}
.hero-badge .dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--blue);
}

.hero h1 {
  animation: heroUp .9s var(--ease) both .25s;
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(42px, 4.6vw, 72px);
  line-height: 1.08;
  margin: 26px 0 0;
  color: var(--navy);
  text-wrap: balance;
}
.hero h1 span { color: var(--blue); }

.hero-sub {
  animation: heroUp 1s var(--ease) both .4s;
  font-size: 18px;
  line-height: 1.65;
  color: var(--body);
  max-width: 520px;
  margin: 24px 0 0;
  font-weight: 300;
}

.hero-ctas {
  animation: heroUp 1s var(--ease) both .55s;
  display: flex;
  gap: 16px;
  margin-top: 36px;
  flex-wrap: wrap;
}

.cta-card {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 16px 26px;
  border-radius: 10px;
  transition: transform .25s;
}
.cta-card .cta-title { font-weight: 700; font-size: 16px; }
.cta-card .cta-sub { font-size: 12.5px; }

.cta-card--solid {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 10px 28px rgba(28, 76, 156, .35);
}
.cta-card--solid .cta-sub { opacity: .85; }
.cta-card--solid:hover { background: var(--navy); color: #fff; transform: translateY(-3px); }

.cta-card--outline {
  background: #fff;
  border: 1.5px solid rgba(28, 76, 156, .3);
  color: var(--blue);
}
.cta-card--outline .cta-sub { color: var(--muted); }
.cta-card--outline:hover { transform: translateY(-3px); border-color: var(--blue); color: var(--blue); }

.hero-contact {
  animation: heroUp 1s both .75s;
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 42px;
  font-size: 13px;
  color: var(--muted);
}
.hero-contact a { font-weight: 600; }
.hero-contact .sep { width: 1px; height: 14px; background: rgba(22, 32, 46, .15); }

.hero-visual {
  position: relative;
  z-index: 2;
  animation: heroUp 1.1s var(--ease) both .45s;
}
.hero-frame { position: relative; width: 100%; aspect-ratio: 4 / 3.15; }

.hero-wedge { display: none; }

.hero-photo {
  position: absolute;
  inset: 0;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(18, 53, 111, .28);
  -webkit-mask-image: radial-gradient(120% 100% at 70% 50%, #000 70%, transparent 100%);
          mask-image: radial-gradient(120% 100% at 70% 50%, #000 70%, transparent 100%);
}
.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(237,242,251,0) 55%, rgba(237,242,251,.55) 100%),
              linear-gradient(90deg, rgba(237,242,251,.35) 0%, rgba(237,242,251,0) 25%);
  pointer-events: none;
}
.hero-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: rgba(255, 255, 255, .94);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(18, 53, 111, .18);
}
.float-card--grade { top: 26px; right: -6px; animation: floaty 6s ease-in-out infinite; }
.float-card--chart { bottom: 14px; left: -14px; animation: floaty 7s ease-in-out infinite .8s; }
.float-card .grade {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 24px;
  color: var(--blue);
}
.float-card .float-text { font-size: 12px; line-height: 1.4; color: var(--body); }
.float-card .float-text b { color: var(--ink); }

.hero-scroll {
  position: absolute;
  bottom: 22px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: var(--faint);
  font-size: 11px;
  letter-spacing: .3em;
  animation: heroUp 1s both 1.1s;
}
.hero-scroll:hover { color: var(--faint); }
.hero-scroll .line {
  display: block;
  width: 1px; height: 34px;
  background: linear-gradient(var(--faint), transparent);
}

/* ==========================================================================
   Home — ticker
   ========================================================================== */

.ticker {
  background: var(--navy);
  overflow: hidden;
  padding: 16px 0;
  transform: rotate(-1.2deg) scale(1.02);
  margin: -8px 0;
}
.ticker-track {
  display: flex;
  width: max-content;
  animation: tick 26s linear infinite;
}
.ticker-group {
  display: flex;
  gap: 56px;
  padding-right: 56px;
  font-family: var(--serif);
  font-size: 15px;
  letter-spacing: .28em;
  color: #fff;
  white-space: nowrap;
}
.ticker-group .star { color: var(--sky); }

/* ==========================================================================
   Home — stats
   ========================================================================== */

.stats { padding: 110px 4vw 90px; background: var(--bg); }
.stats-inner { max-width: 1200px; margin: 0 auto; }

.stats-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.stats-head h2 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(28px, 2.6vw, 40px);
  color: var(--navy);
  margin: 0;
}
.stats-head .tagline { font-size: 13px; color: var(--faint); letter-spacing: .08em; }

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(22, 32, 46, .08);
  border: 1px solid rgba(22, 32, 46, .08);
  border-radius: 16px;
  overflow: hidden;
}
.stat { background: #fff; padding: 38px 30px; }
.stat-num {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 52px;
  color: var(--blue);
  line-height: 1;
}
.stat-label { margin-top: 10px; font-size: 14px; font-weight: 600; color: var(--ink); }
.stat-sub { font-size: 12.5px; color: var(--faint); margin-top: 3px; }

/* ==========================================================================
   Home — what we do
   ========================================================================== */

.what {
  padding: 100px 4vw;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.what-ring {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 50%;
}
.what-ring--lg { top: -120px; right: -100px; width: 480px; height: 480px; }
.what-ring--sm { top: -40px; right: 40px; width: 280px; height: 280px; }

.what-inner { max-width: 1200px; margin: 0 auto; position: relative; }
.what-head { max-width: 640px; }
.what-head .eyebrow { color: var(--sky); }
.what-head h2 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(28px, 2.8vw, 42px);
  color: #fff;
  margin: 0;
  line-height: 1.2;
}

.what-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 56px;
}
.what-card {
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 16px;
  padding: 34px 30px;
  transition: transform .3s, background .3s;
}
.what-card:hover { transform: translateY(-8px); background: rgba(255, 255, 255, .09); }
.what-card .num {
  font-family: var(--serif);
  font-size: 15px;
  color: var(--sky);
  letter-spacing: .2em;
}
.what-card h3 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 22px;
  color: #fff;
  margin: 16px 0 12px;
}
.what-card p {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--mist);
  margin: 0;
  font-weight: 300;
}

/* ==========================================================================
   Home — two paths
   ========================================================================== */

.paths { padding: 110px 4vw; background: var(--bg); }
.paths-inner { max-width: 1200px; margin: 0 auto; }
.paths-head { text-align: center; max-width: 620px; margin: 0 auto 60px; }
.paths-head h2 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(28px, 2.8vw, 42px);
  color: var(--navy);
  margin: 0;
  line-height: 1.2;
}

.paths-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }

.path-card {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  padding: 44px 40px;
  transition: transform .35s, box-shadow .35s;
}
.path-card .path-label { font-size: 12px; letter-spacing: .26em; font-weight: 600; }
.path-card h3 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 30px;
  margin: 18px 0 14px;
}
.path-card .path-body { font-size: 15px; line-height: 1.7; margin: 0 0 24px; font-weight: 300; }
.path-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 14px;
}
.path-card li { display: flex; gap: 10px; align-items: center; }
.path-card li .check { font-weight: 700; }
.path-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
}
.path-cta .arrow { font-size: 18px; }

.path-card--light {
  background: #fff;
  border: 1px solid rgba(22, 32, 46, .09);
  color: inherit;
}
.path-card--light:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 50px rgba(18, 53, 111, .16);
  color: inherit;
}
.path-card--light .corner {
  position: absolute;
  top: 0; right: 0;
  width: 150px; height: 150px;
  background: linear-gradient(135deg, rgba(28, 76, 156, .09), transparent 70%);
  clip-path: polygon(100% 0, 0 0, 100% 100%);
}
.path-card--light .path-label { color: var(--faint); }
.path-card--light h3 { color: var(--navy); }
.path-card--light .path-body { color: var(--body); }
.path-card--light ul { color: var(--ink); }
.path-card--light .check { color: var(--blue); }
.path-card--light .path-cta { background: var(--blue); color: #fff; }

.path-card--dark {
  background: linear-gradient(150deg, var(--blue), var(--navy));
  color: #fff;
}
.path-card--dark:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 50px rgba(18, 53, 111, .35);
  color: #fff;
}
.path-card--dark .kh-watermark {
  bottom: -60px; right: -40px;
  font-size: 220px;
  color: rgba(255, 255, 255, .05);
}
.path-card--dark .path-label { color: var(--sky); }
.path-card--dark h3 { color: #fff; }
.path-card--dark .path-body { color: var(--pale); }
.path-card--dark ul { color: #fff; }
.path-card--dark .check { color: var(--sky); }
.path-card--dark .path-cta { background: #fff; color: var(--navy); }

/* ==========================================================================
   Home — process
   ========================================================================== */

.process { padding: 100px 4vw 120px; background: var(--bg-alt); }
.process-inner { max-width: 1000px; margin: 0 auto; }
.process-inner h2 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(28px, 2.8vw, 42px);
  color: var(--navy);
  margin: 0 0 60px;
  line-height: 1.2;
}

.process-track { position: relative; padding-left: 44px; }
.track-rail {
  position: absolute;
  left: 11px; top: 8px; bottom: 8px;
  width: 2px;
  background: rgba(28, 76, 156, .14);
}
.track-fill {
  position: absolute;
  left: 11px; top: 8px;
  width: 2px;
  height: 0;
  background: var(--blue);
  transition: height .2s linear;
}

.process-step { position: relative; padding-bottom: 52px; }
.process-step:last-child { padding-bottom: 0; }
.process-step .dot {
  position: absolute;
  left: -44px; top: 2px;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--blue);
  border: 5px solid var(--bg-alt);
}
.process-step .row {
  display: flex;
  gap: 26px;
  align-items: baseline;
  flex-wrap: wrap;
}
.process-step .big-num {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 46px;
  color: rgba(28, 76, 156, .22);
  line-height: 1;
}
.process-step .step-body { flex: 1; min-width: 280px; }
.process-step h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--navy);
  margin: 0 0 8px;
}
.process-step p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--body);
  margin: 0;
  font-weight: 300;
  max-width: 560px;
}

/* ==========================================================================
   Home — faith band
   ========================================================================== */

.faith { padding: 90px 4vw; background: var(--bg); text-align: center; }
.faith-inner { max-width: 720px; margin: 0 auto; }
.faith-script {
  font-family: var(--script);
  font-size: clamp(34px, 3.4vw, 52px);
  color: var(--blue);
  line-height: 1.25;
}
.faith-divider {
  width: 120px; height: 2px;
  background: linear-gradient(90deg, transparent, var(--blue), transparent);
  margin: 26px auto;
}
.faith-sub {
  font-size: 13px;
  letter-spacing: .3em;
  color: var(--faint);
  margin: 0;
  font-weight: 500;
}

/* ==========================================================================
   Home — FAQ
   ========================================================================== */

.faq { padding: 100px 4vw; background: #fff; border-top: 1px solid rgba(22, 32, 46, .06); }
.faq-inner { max-width: 900px; margin: 0 auto; }
.faq-head { text-align: center; margin-bottom: 52px; }
.faq-head h2 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(28px, 2.8vw, 40px);
  color: var(--navy);
  margin: 0;
}

.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  border: 1px solid rgba(22, 32, 46, .1);
  border-radius: 12px;
  background: var(--bg);
  overflow: hidden;
}
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
}
.faq-chev {
  flex: none;
  width: 28px; height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(28, 76, 156, .1);
  color: var(--blue);
  font-size: 15px;
  transform: none;
  transition: all .35s;
}
.faq-item.open .faq-chev {
  background: var(--blue);
  color: #fff;
  transform: rotate(45deg);
}
.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .45s var(--ease);
}
.faq-item.open .faq-a { grid-template-rows: 1fr; }
.faq-a > div { overflow: hidden; }
.faq-a p {
  padding: 0 24px 22px;
  margin: 0;
  font-size: 14.5px;
  line-height: 1.75;
  color: var(--body);
  font-weight: 300;
  max-width: 760px;
}

/* ==========================================================================
   Home — final CTA
   ========================================================================== */

.cta {
  padding: 110px 4vw;
  background: linear-gradient(150deg, var(--blue), var(--navy));
  position: relative;
  overflow: hidden;
}
.cta-ring {
  position: absolute;
  top: -140px; left: -100px;
  width: 520px; height: 520px;
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 50%;
}
.cta .kh-watermark {
  bottom: -90px; right: -70px;
  font-size: 300px;
  color: rgba(255, 255, 255, .05);
}
.cta-inner { max-width: 820px; margin: 0 auto; text-align: center; position: relative; }
.cta h2 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(30px, 3.4vw, 50px);
  color: #fff;
  margin: 0 0 18px;
  line-height: 1.15;
  text-wrap: balance;
}
.cta p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--pale);
  margin: 0 auto 38px;
  max-width: 560px;
  font-weight: 300;
}
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.btn-white {
  padding: 16px 30px;
  background: #fff;
  color: var(--navy);
  border-radius: 10px;
  font-weight: 700;
  font-size: 16px;
  transition: transform .25s;
}
.btn-white:hover { transform: translateY(-3px); color: var(--navy); }

.btn-ghost {
  padding: 16px 30px;
  border: 1.5px solid rgba(255, 255, 255, .5);
  color: #fff;
  border-radius: 10px;
  font-weight: 700;
  font-size: 16px;
  transition: transform .25s;
}
.btn-ghost:hover { transform: translateY(-3px); border-color: #fff; color: #fff; }

.cta-contact {
  display: flex;
  gap: 26px;
  justify-content: center;
  margin-top: 36px;
  font-size: 14px;
  color: var(--pale);
  flex-wrap: wrap;
}
.cta-contact a { color: #fff; font-weight: 600; }
.cta-contact a:hover { color: var(--sky); }

/* ==========================================================================
   Footer
   ========================================================================== */

.footer { background: var(--deep); padding: 56px 4vw 34px; }
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  align-items: flex-start;
}
.footer-brand { display: flex; flex-direction: column; gap: 14px; max-width: 320px; }
.footer-brand .brand-row { display: flex; align-items: center; gap: 10px; }
.footer-brand .brand-name {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: .14em;
  color: #fff;
}
.footer-brand .brand-name small { color: var(--faint); font-weight: 400; font-size: inherit; }
.footer-brand p {
  font-size: 13px;
  line-height: 1.7;
  color: var(--steel);
  margin: 0;
  font-weight: 300;
}

.footer-cols { display: flex; gap: 64px; flex-wrap: wrap; }
.footer-col { display: flex; flex-direction: column; gap: 10px; font-size: 14px; }
.footer-col .col-title {
  font-size: 11px;
  letter-spacing: .24em;
  color: var(--slate);
  font-weight: 600;
  margin-bottom: 4px;
}
.footer-col a { color: var(--pale); }
.footer-col a:hover { color: #fff; }
.footer-col .plain { color: var(--steel); }

.footer-bottom {
  max-width: 1200px;
  margin: 40px auto 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .09);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 12px;
  color: var(--slate);
}

.footer--slim {
  padding: 30px 4vw;
  border-top: 1px solid rgba(255, 255, 255, .08);
}
.footer--slim .footer-slim-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 12.5px;
  color: var(--slate);
}
.footer--slim a { color: var(--steel); }
.footer--slim a:hover { color: #fff; }
.footer--slim .links { display: flex; gap: 20px; }

/* ==========================================================================
   Sell — wizard layout
   ========================================================================== */

.wiz { min-height: 100vh; display: grid; grid-template-columns: 380px 1fr; }

.wiz-rail {
  background: linear-gradient(165deg, var(--blue), var(--deep));
  color: #fff;
  padding: 36px 38px;
  display: flex;
  flex-direction: column;
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
}
.wiz-rail .kh-watermark {
  bottom: -70px; left: -30px;
  font-size: 240px;
  color: rgba(255, 255, 255, .04);
}
.wiz-rail h1 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 27px;
  line-height: 1.25;
  margin: 42px 0 12px;
}
.wiz-rail .rail-note {
  font-size: 14px;
  line-height: 1.7;
  color: var(--pale);
  margin: 0;
  font-weight: 300;
}

.rail-steps {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 36px;
  position: relative;
  z-index: 1;
}
.rail-step {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 11px 14px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 400;
  color: #7C90B8;
  background: transparent;
  transition: all .35s;
}
.rail-step .rail-dot {
  flex: none;
  width: 26px; height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  background: rgba(255, 255, 255, .14);
  color: var(--pale);
  transition: all .35s;
}
.rail-step.active {
  font-weight: 600;
  color: #fff;
  background: rgba(255, 255, 255, .12);
}
.rail-step.active .rail-dot { background: #fff; color: var(--blue); }
.rail-step.done { color: var(--pale); }
.rail-step.done .rail-dot { background: var(--sky); color: var(--deep); }

.rail-contact {
  margin-top: auto;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 13px;
  color: var(--pale);
}
.rail-contact .label {
  font-size: 11px;
  letter-spacing: .24em;
  color: var(--sky);
  font-weight: 600;
}
.rail-contact .phone { color: #fff; font-weight: 600; font-size: 16px; }
.rail-contact .phone:hover { color: var(--sky); }
.rail-contact .email { color: var(--pale); }
.rail-contact .email:hover { color: #fff; }

.wiz-main { display: flex; flex-direction: column; }
.wiz-progress { height: 5px; background: rgba(28, 76, 156, .12); }
.wiz-progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--blue), var(--sky));
  transition: width .5s var(--ease);
}

.wiz-body {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 56px 5vw;
}
.wiz-panel { width: 100%; max-width: 640px; }

.wiz-step { animation: stepIn .5s var(--ease) both; }
.wiz-step[hidden] { display: none; }

.step-kicker {
  font-size: 12px;
  letter-spacing: .26em;
  color: var(--blue);
  font-weight: 600;
  margin-bottom: 14px;
}
.wiz-step h2 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 34px;
  color: var(--navy);
  margin: 0 0 10px;
}
.wiz-step h2.tight { margin-bottom: 30px; }
.step-note { font-size: 15px; color: var(--muted); margin: 0 0 30px; font-weight: 300; }

.field {
  width: 100%;
  padding: 18px 20px;
  font-size: 17px;
  border: 1.5px solid rgba(22, 32, 46, .15);
  border-radius: 12px;
  background: #fff;
  transition: border-color .2s, box-shadow .2s;
}
.field--sm { padding: 17px 20px; font-size: 16px; }

.field-area {
  width: 100%;
  margin-top: 16px;
  padding: 16px 18px;
  font-size: 15px;
  border: 1.5px solid rgba(22, 32, 46, .15);
  border-radius: 12px;
  background: #fff;
  resize: vertical;
  transition: border-color .2s, box-shadow .2s;
}

.opt-grid { display: grid; gap: 14px; }
.opt-grid--3 { grid-template-columns: repeat(3, 1fr); }
.opt-grid--2 { grid-template-columns: 1fr 1fr; }

.opt {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  padding: 20px;
  text-align: left;
  background: #fff;
  border: 1.5px solid rgba(22, 32, 46, .13);
  border-radius: 14px;
  cursor: pointer;
  color: var(--ink);
  transition: all .2s;
  box-shadow: none;
}
.opt.selected {
  background: var(--sel-bg);
  border: 2px solid var(--blue);
  box-shadow: 0 8px 22px rgba(28, 76, 156, .14);
}
.opt .opt-icon { font-size: 30px; }
.opt .opt-label { font-weight: 600; font-size: 15px; }
.opt .opt-sub { font-size: 12px; color: var(--faint); font-weight: 400; }
.opt .opt-sub--wide { font-size: 12.5px; line-height: 1.5; }

.price-wrap { position: relative; }
.price-wrap .currency {
  position: absolute;
  left: 20px; top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
  color: var(--faint);
  font-weight: 600;
}
.price-wrap input { padding-left: 40px; }

.link-btn {
  margin-top: 16px;
  background: none;
  border: none;
  color: var(--blue);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  padding: 6px 0;
}
.link-btn:hover { color: var(--navy); }

.contact-fields { display: flex; flex-direction: column; gap: 14px; }
.contact-fields .split { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.wiz-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 44px;
}
.wiz-back {
  background: none;
  border: none;
  color: var(--muted);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  padding: 10px 0;
}
.wiz-back:disabled { color: transparent; pointer-events: none; cursor: default; }
.wiz-nav-right { display: flex; align-items: center; gap: 18px; }

.form-err {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--error);
  opacity: 0;
  transition: opacity .25s;
}
.form-err.show { opacity: 1; }

.btn-next {
  padding: 15px 32px;
  background: var(--blue);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  box-shadow: 0 8px 22px rgba(28, 76, 156, .3);
  transition: transform .2s, background .2s;
}
.btn-next:hover { background: var(--navy); transform: translateY(-2px); }

.wiz-success { text-align: center; }
.pop-badge {
  width: 84px; height: 84px;
  margin: 0 auto 26px;
  border-radius: 50%;
  background: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: pop .6s var(--ease) both .15s;
  box-shadow: 0 16px 40px rgba(28, 76, 156, .35);
}
.wiz-success h2 { margin-bottom: 12px; }
.wiz-success .success-note {
  font-size: 16px;
  line-height: 1.7;
  color: var(--body);
  margin: 0 auto 30px;
  max-width: 460px;
  font-weight: 300;
}
.wiz-success .success-note b { color: var(--ink); }
.success-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.btn-solid-sm {
  padding: 14px 26px;
  background: var(--blue);
  color: #fff;
  border-radius: 10px;
  font-weight: 600;
  font-size: 15px;
}
.btn-solid-sm:hover { background: var(--navy); color: #fff; }

.btn-outline-sm {
  padding: 14px 26px;
  border: 1.5px solid rgba(28, 76, 156, .3);
  color: var(--blue);
  border-radius: 10px;
  font-weight: 600;
  font-size: 15px;
}
.btn-outline-sm:hover { border-color: var(--blue); }

.hurry { font-size: 13px; color: var(--faint); margin-top: 26px; }
.hurry a { font-weight: 600; }

.trust-strip {
  padding: 18px 5vw;
  border-top: 1px solid var(--hairline);
  display: flex;
  gap: 24px;
  justify-content: center;
  font-size: 12.5px;
  color: var(--faint);
  flex-wrap: wrap;
}

/* ==========================================================================
   Invest — hero
   ========================================================================== */

.inv-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, var(--navy) 0%, var(--deep) 100%);
  color: #fff;
  padding: 160px 4vw 100px;
}
.inv-ring {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 50%;
}
.inv-ring--lg { top: -160px; right: -120px; width: 600px; height: 600px; }
.inv-ring--sm { top: -40px; right: 60px; width: 320px; height: 320px; }
.inv-hero .kh-watermark {
  bottom: -100px; left: -50px;
  font-size: 320px;
  color: rgba(255, 255, 255, .04);
}
.inv-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 6vw;
  align-items: center;
}

.inv-badge {
  animation: heroUp .8s var(--ease) both .1s;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .14em;
  color: var(--pale);
}
.inv-badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--sky); }

.inv-hero h1 {
  animation: heroUp .9s var(--ease) both .25s;
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(38px, 4vw, 62px);
  line-height: 1.12;
  margin: 26px 0 0;
  text-wrap: balance;
}
.inv-hero .inv-sub {
  animation: heroUp 1s var(--ease) both .4s;
  font-size: 17.5px;
  line-height: 1.7;
  color: var(--pale);
  max-width: 520px;
  margin: 22px 0 0;
  font-weight: 300;
}
.inv-hero-ctas {
  animation: heroUp 1s both .55s;
  display: flex;
  gap: 16px;
  margin-top: 34px;
  flex-wrap: wrap;
}
.btn-ghost--soft { border-color: rgba(255, 255, 255, .4); font-weight: 600; }

.inv-hero-cards {
  animation: heroUp 1.1s var(--ease) both .5s;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.glass-card {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 16px;
  padding: 26px 28px;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}
.glass-card .glass-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
}
.glass-card .glass-label {
  font-size: 12px;
  letter-spacing: .22em;
  color: var(--sky);
  font-weight: 600;
}
.glass-card .glass-value { font-family: var(--serif); font-size: 22px; font-weight: 600; }
.glass-card p {
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--mist);
  margin: 12px 0 0;
  font-weight: 300;
}

/* ==========================================================================
   Invest — models
   ========================================================================== */

.models { padding: 100px 4vw; background: var(--bg); }
.models-inner { max-width: 1200px; margin: 0 auto; }
.models-head { text-align: center; max-width: 620px; margin: 0 auto 56px; }
.models-head h2 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(28px, 2.8vw, 42px);
  color: var(--navy);
  margin: 0;
  line-height: 1.2;
}
.models-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }

.model-card {
  background: #fff;
  border: 1px solid rgba(22, 32, 46, .09);
  border-radius: 20px;
  padding: 42px 38px;
  transition: transform .3s, box-shadow .3s;
}
.model-card:hover { transform: translateY(-6px); box-shadow: 0 22px 46px rgba(18, 53, 111, .13); }
.model-card .model-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
}
.model-card h3 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 26px;
  color: var(--navy);
  margin: 0;
}
.model-tag {
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
}
.model-tag--light { background: var(--sel-bg); color: var(--blue); }
.model-tag--dark { background: var(--navy); color: #fff; }
.model-card .model-body {
  font-size: 15px;
  line-height: 1.75;
  color: var(--body);
  margin: 18px 0 26px;
  font-weight: 300;
}
.model-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 14px;
  color: var(--ink);
}
.model-card li { display: flex; gap: 10px; }
.model-card .check { color: var(--blue); font-weight: 700; }

/* ==========================================================================
   Invest — how it works
   ========================================================================== */

.how { padding: 90px 4vw; background: var(--bg-alt); }
.how-inner { max-width: 1100px; margin: 0 auto; }
.how-head { margin-bottom: 50px; }
.how-head h2 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(26px, 2.6vw, 38px);
  color: var(--navy);
  margin: 0;
}
.how-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.how-card {
  background: #fff;
  border-radius: 14px;
  padding: 26px 24px;
  border: 1px solid rgba(22, 32, 46, .07);
}
.how-card .num {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 34px;
  color: rgba(28, 76, 156, .25);
  line-height: 1;
}
.how-card h3 { font-size: 16px; font-weight: 700; color: var(--navy); margin: 14px 0 8px; }
.how-card p { font-size: 13.5px; line-height: 1.65; color: var(--body); margin: 0; font-weight: 300; }

/* ==========================================================================
   Invest — application
   ========================================================================== */

.apply {
  padding: 100px 4vw 110px;
  background: linear-gradient(160deg, var(--navy), var(--deep));
  position: relative;
  overflow: hidden;
}
.apply .kh-watermark {
  top: -80px; right: -60px;
  font-size: 280px;
  color: rgba(255, 255, 255, .04);
}
.apply-inner {
  max-width: 1150px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 6vw;
  position: relative;
}

.apply-intro { color: #fff; }
.apply-intro .eyebrow { color: var(--sky); }
.apply-intro h2 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(28px, 2.8vw, 42px);
  margin: 0 0 18px;
  line-height: 1.2;
}
.apply-intro .apply-note {
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--pale);
  font-weight: 300;
  margin: 0 0 30px;
}
.apply-checks {
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 14px;
  color: var(--pale);
}
.apply-checks .row { display: flex; gap: 12px; align-items: flex-start; }
.apply-checks .check { color: var(--sky); font-weight: 700; }

.apply-contact {
  margin-top: 38px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, .14);
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 14px;
}
.apply-contact .label {
  font-size: 11px;
  letter-spacing: .24em;
  color: var(--sky);
  font-weight: 600;
}
.apply-contact .phone { color: #fff; font-weight: 600; font-size: 17px; }
.apply-contact .phone:hover { color: var(--sky); }
.apply-contact .email { color: var(--pale); }
.apply-contact .email:hover { color: #fff; }

.apply-card {
  background: #fff;
  border-radius: 20px;
  padding: 40px 38px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, .3);
}
.apply-form { display: flex; flex-direction: column; gap: 22px; }
.apply-form .split { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.field-inv {
  width: 100%;
  padding: 15px 17px;
  font-size: 15px;
  border: 1.5px solid rgba(22, 32, 46, .14);
  border-radius: 10px;
  transition: border-color .2s, box-shadow .2s;
}
textarea.field-inv { resize: vertical; }

.chip-label {
  font-size: 12px;
  letter-spacing: .18em;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 10px;
}
.chip-grid { display: grid; gap: 10px; }
.chip-grid--4 { grid-template-columns: repeat(4, 1fr); }
.chip-grid--3 { grid-template-columns: repeat(3, 1fr); }
.chip-grid--2 { grid-template-columns: 1fr 1fr; }

.chip {
  padding: 12px 8px;
  text-align: center;
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
  background: #fff;
  color: var(--body);
  border: 1.5px solid rgba(22, 32, 46, .14);
  border-radius: 10px;
  transition: all .2s;
}
.chip.selected {
  background: var(--sel-bg);
  color: var(--navy);
  border: 2px solid var(--blue);
}
.chip--model {
  display: flex;
  flex-direction: column;
  gap: 3px;
  align-items: flex-start;
  text-align: left;
  padding: 14px 16px;
}
.chip--model .chip-sub { font-size: 12px; color: var(--faint); font-weight: 400; }

.apply-submit-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.btn-submit {
  padding: 16px 34px;
  background: var(--blue);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  box-shadow: 0 10px 26px rgba(28, 76, 156, .35);
  transition: transform .2s, background .2s;
}
.btn-submit:hover { background: var(--navy); transform: translateY(-2px); }

.apply-disclaimer {
  font-size: 11.5px;
  line-height: 1.6;
  color: var(--faint);
  margin: 0;
}

.apply-success { text-align: center; padding: 30px 10px; }
.apply-success .pop-badge {
  width: 80px; height: 80px;
  margin-bottom: 24px;
  animation-delay: 0s;
}
.apply-success h3 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 28px;
  color: var(--navy);
  margin: 0 0 12px;
}
.apply-success p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--body);
  margin: 0 auto 28px;
  max-width: 380px;
  font-weight: 300;
}
.apply-success .btn-solid-sm { display: inline-block; }

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 1080px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: 0;
    padding-top: 130px;
    padding-bottom: 110px;
    gap: 64px;
  }
  .hero-visual { max-width: 520px; width: 100%; margin: 0 auto; }
  .hero-scroll { display: none; }

  .inv-hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .paths-grid, .models-grid { grid-template-columns: 1fr; }
  .apply-inner { grid-template-columns: 1fr; gap: 48px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .how-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 14px 5vw 22px;
    background: rgba(250, 251, 253, .97);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--hairline);
    font-size: 15px;
  }
  .site-nav--dark .nav-links {
    background: rgba(12, 38, 80, .97);
    border-bottom-color: rgba(255, 255, 255, .08);
  }
  .site-nav.menu-open .nav-links { display: flex; }
  .nav-links a { padding: 11px 4px; }
  .nav-links .btn-nav-outline,
  .nav-links .btn-nav-solid,
  .nav-links .btn-nav-light { text-align: center; margin-top: 6px; }
  .nav-burger { display: flex; }

  .what-grid { grid-template-columns: 1fr; }

  .wiz { grid-template-columns: 1fr; }
  .wiz-rail {
    position: static;
    height: auto;
    padding: 22px 5vw 28px;
  }
  .wiz-rail h1 { margin-top: 26px; font-size: 23px; }
  .rail-steps { display: none; }
  .rail-contact { margin-top: 22px; flex-direction: row; align-items: baseline; gap: 16px; flex-wrap: wrap; }
  .rail-contact .label { width: 100%; }
  .wiz-body { padding: 44px 6vw 52px; align-items: flex-start; }
}

@media (max-width: 640px) {
  .stats-grid { grid-template-columns: 1fr; }
  .how-grid { grid-template-columns: 1fr; }
  .opt-grid--3, .opt-grid--2 { grid-template-columns: 1fr; }
  .contact-fields .split { grid-template-columns: 1fr; }
  .apply-form .split { grid-template-columns: 1fr; }
  .chip-grid--4 { grid-template-columns: 1fr 1fr; }
  .apply-card { padding: 30px 22px; }
  .path-card { padding: 36px 26px; }
  .model-card { padding: 32px 26px; }
  .wiz-step h2 { font-size: 28px; }
  .wiz-nav { margin-top: 36px; }
  .ticker-group { font-size: 13px; gap: 40px; padding-right: 40px; }
  .hero { padding-top: 118px; }
  .float-card { padding: 11px 14px; }
  .process-track { padding-left: 38px; }
  .process-step .dot { left: -38px; }
}

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

/* Blog + article */
.page-blog { background: #FAF8F4; color: #1B1D22; }
.blog-index-inner, .article-inner, .article-body {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 24px;
}
.blog-index { padding: 96px 0 120px; }
.article-eyebrow {
  font-family: 'Libre Franklin', sans-serif;
  font-size: 12px;
  letter-spacing: .18em;
  color: #7FA3E0;
  font-weight: 600;
  margin: 0 0 16px;
}
.article-hero { padding: 96px 0 32px; }
.article-hero h1, .blog-index-inner h1 {
  font-family: 'Cinzel', serif;
  font-size: clamp(32px, 4.4vw, 52px);
  line-height: 1.15;
  margin: 0 0 18px;
  color: #1B1D22;
}
.article-lede {
  font-size: 20px;
  line-height: 1.55;
  color: #4A4E58;
  margin: 0 0 32px;
}
.article-body { padding-bottom: 96px; }
.article-body h2 {
  font-family: 'Cinzel', serif;
  font-size: 26px;
  margin: 40px 0 12px;
}
.article-body p, .article-body li { font-size: 17px; line-height: 1.7; color: #2A2D33; }
.article-body ul { padding-left: 22px; }
.article-body li { margin: 6px 0; }
.article-cta {
  margin-top: 48px;
  padding: 32px;
  background: #1B1D22;
  color: #F5F1E8;
  border-radius: 14px;
}
.article-cta h3 { font-family: 'Cinzel', serif; margin: 0 0 8px; font-size: 22px; }
.article-cta p { color: #C9CCD1; margin: 0 0 20px; }
.article-cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.post-list { list-style: none; padding: 0; margin: 32px 0 0; display: grid; gap: 16px; }
.post-card a {
  display: block;
  padding: 24px 28px;
  background: #fff;
  border: 1px solid #E4DFD3;
  border-radius: 14px;
  text-decoration: none;
  color: inherit;
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.post-card a:hover { transform: translateY(-2px); border-color: #7FA3E0; box-shadow: 0 12px 28px rgba(0,0,0,.06); }
.post-tag {
  font-family: 'Libre Franklin', sans-serif;
  font-size: 11px;
  letter-spacing: .18em;
  color: #7FA3E0;
  font-weight: 600;
}
.post-card h2 { font-family: 'Cinzel', serif; margin: 8px 0 6px; font-size: 22px; }
.post-card p { margin: 0 0 12px; color: #4A4E58; }
.post-more { color: #1B1D22; font-weight: 600; }

/* Sell page helpful-read block in rail */
.rail-read { margin-top: 20px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.12); }
.rail-read .label {
  display: block;
  font-size: 11px;
  letter-spacing: .18em;
  color: #9FB4D8;
  margin-bottom: 8px;
}
.rail-read-link {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,.25);
  padding-bottom: 2px;
}
.rail-read-link:hover { border-color: #9FB4D8; }

/* SMS/A2P 10DLC consent — used on sell wizard step 6 and invest apply form */
.consent {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px 16px;
  margin-top: 8px;
  background: #F5F1E8;
  border: 1px solid #E4DFD3;
  border-radius: 10px;
  cursor: pointer;
  line-height: 1.5;
}
.consent input[type="checkbox"] {
  margin-top: 3px;
  width: 18px;
  height: 18px;
  accent-color: #1C4C9C;
  flex: 0 0 18px;
  cursor: pointer;
}
.consent-text {
  font-family: 'Libre Franklin', sans-serif;
  font-size: 13px;
  color: #2A2D33;
}
.consent-text b { color: #1B1D22; }
.consent-text a {
  color: #1C4C9C;
  text-decoration: underline;
}
.consent--dark {
  background: rgba(255,255,255,.04);
  border-color: rgba(255,255,255,.12);
}
.consent--dark .consent-text { color: #D6D9DF; }
.consent--dark .consent-text b { color: #fff; }
.consent--dark .consent-text a { color: #9FB4D8; }
.consent-footnote {
  font-family: 'Libre Franklin', sans-serif;
  font-size: 12px;
  color: #6B7079;
  margin: 8px 4px 0;
  line-height: 1.5;
}
.consent-footnote a { color: #1C4C9C; text-decoration: underline; }
.wiz-legal {
  text-align: center;
  padding: 24px 16px 40px;
  font-family: 'Libre Franklin', sans-serif;
  font-size: 12px;
  color: #6B7079;
  letter-spacing: .04em;
}
.wiz-legal a { color: #1C4C9C; text-decoration: underline; margin: 0 2px; }

/* Markets — homepage "Where we buy" section */
.markets { padding: 72px 24px; background: #F5F1E8; }
.markets-inner { max-width: 1120px; margin: 0 auto; text-align: center; }
.markets-inner .eyebrow { color: #7FA3E0; font-size: 12px; font-weight: 700; letter-spacing: 0.18em; margin-bottom: 12px; }
.markets-inner h2 { font-family: 'Cinzel', serif; font-size: clamp(28px, 3.4vw, 40px); color: #1E293B; margin: 0 0 12px; }
.markets-sub { color: #4B5563; max-width: 640px; margin: 0 auto 40px; font-size: 17px; line-height: 1.6; }
.markets-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; text-align: left; }
.market-card { display: block; padding: 32px 28px; background: #ffffff; border: 1px solid #E5E1D6; border-radius: 14px; color: inherit; text-decoration: none; transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease; }
.market-card:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(30,41,59,0.08); border-color: #7FA3E0; }
.market-eyebrow { display: block; color: #7FA3E0; font-size: 11px; font-weight: 700; letter-spacing: 0.16em; margin-bottom: 10px; }
.market-card h3 { font-family: 'Cinzel', serif; font-size: 22px; color: #1E293B; margin: 0 0 10px; }
.market-card p { color: #4B5563; margin: 0 0 16px; line-height: 1.55; }
.market-more { color: #7FA3E0; font-weight: 600; font-size: 14px; }

/* A2P 10DLC consent stack */
.consent-stack { display: flex; flex-direction: column; gap: 12px; margin-top: 14px; }
.consent-stack .consent { margin-top: 0; }
.consent-hint { margin: 4px 0 0; font-size: 12px; color: #6b7280; font-style: italic; }
.consent-stack--dark .consent-hint,
.consent-hint--dark { color: rgba(255,255,255,0.6); }

/* ==========================================================================
   Careers
   ========================================================================== */
.page-careers, .page-careers-detail { background: var(--bg); }

.careers-hero {
  padding: 96px 24px 56px;
  background: linear-gradient(180deg, var(--bg-alt) 0%, var(--bg) 100%);
  border-bottom: 1px solid var(--hairline);
}
.careers-hero-inner { max-width: 900px; margin: 0 auto; text-align: center; }
.careers-hero h1 { font-family: var(--serif); font-size: clamp(32px, 5vw, 52px); line-height: 1.1; margin: 12px 0 18px; color: var(--ink); }
.careers-lede { font-size: 18px; color: var(--body); line-height: 1.6; max-width: 720px; margin: 0 auto; }

.careers-list { padding: 56px 24px 96px; }
.careers-list-inner { max-width: 900px; margin: 0 auto; }
.careers-list h2 { font-family: var(--serif); font-size: 28px; color: var(--ink); margin: 0 0 24px; }
.careers-job-card {
  display: block; padding: 28px; border: 1px solid var(--hairline); border-radius: 14px; background: #fff;
  text-decoration: none; color: inherit; transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s var(--ease);
}
.careers-job-card:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(18, 53, 111, 0.08); border-color: var(--pale); }
.careers-job-meta { display: flex; gap: 12px; align-items: center; font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.careers-job-tag { background: var(--sel-bg); color: var(--blue); padding: 4px 10px; border-radius: 999px; font-weight: 600; }
.careers-job-card h3 { font-family: var(--serif); font-size: 24px; margin: 12px 0 8px; color: var(--ink); }
.careers-job-card p { color: var(--body); line-height: 1.55; margin: 0 0 14px; }
.careers-job-cta { color: var(--blue); font-weight: 600; }
.careers-list-note { margin-top: 32px; color: var(--muted); font-size: 14px; }
.careers-list-note a { color: var(--blue); }

.careers-detail-hero { padding: 72px 24px 40px; max-width: 900px; margin: 0 auto; }
.careers-crumbs { font-size: 13px; color: var(--muted); margin-bottom: 16px; }
.careers-crumbs a { color: var(--muted); text-decoration: none; }
.careers-crumbs a:hover { color: var(--blue); }
.careers-detail-hero h1 { font-family: var(--serif); font-size: clamp(30px, 4.5vw, 46px); line-height: 1.15; margin: 10px 0 14px; }
.careers-detail-sub { font-size: 17px; color: var(--body); line-height: 1.6; }
.careers-facts { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 12px; margin: 28px 0; }
.careers-facts > div { padding: 14px 16px; background: var(--bg-alt); border-radius: 10px; }
.careers-facts span { display: block; font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-bottom: 4px; }
.careers-facts b { font-family: var(--serif); font-size: 15px; color: var(--ink); font-weight: 600; }
.careers-apply-cta {
  display: inline-block; margin-top: 8px; padding: 14px 26px; background: var(--blue); color: #fff;
  text-decoration: none; border-radius: 999px; font-weight: 600; transition: background .2s var(--ease);
}
.careers-apply-cta:hover { background: var(--navy); }

.careers-detail-body { max-width: 780px; margin: 0 auto; padding: 24px 24px 64px; }
.careers-detail-body h2 { font-family: var(--serif); font-size: 26px; color: var(--ink); margin: 36px 0 14px; }
.careers-detail-body p, .careers-detail-body li { color: var(--body); line-height: 1.65; font-size: 16px; }
.careers-detail-body ul { padding-left: 22px; }
.careers-detail-body li { margin-bottom: 8px; }

.careers-apply {
  background: linear-gradient(180deg, var(--deep) 0%, var(--navy) 100%);
  color: #fff; padding: 72px 24px;
}
.careers-apply-inner { max-width: 780px; margin: 0 auto; }
.careers-apply .eyebrow { color: var(--sky); }
.careers-apply h2 { font-family: var(--serif); font-size: 32px; margin: 12px 0 10px; color: #fff; }
.careers-apply-sub { color: rgba(255,255,255,0.75); margin: 0 0 28px; line-height: 1.6; }

.careers-form { display: flex; flex-direction: column; gap: 18px; }
.careers-form-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 18px; }
.careers-field { display: flex; flex-direction: column; gap: 6px; }
.careers-field > span { font-size: 13px; color: rgba(255,255,255,0.8); font-weight: 500; }
.careers-field em { color: var(--sky); font-style: normal; }
.careers-field input, .careers-field select, .careers-field textarea {
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.18); color: #fff;
  padding: 12px 14px; border-radius: 8px; font-family: inherit; font-size: 15px; transition: border-color .15s;
}
.careers-field input:focus, .careers-field select:focus, .careers-field textarea:focus {
  outline: none; border-color: var(--sky); background: rgba(255,255,255,0.12);
}
.careers-field textarea { resize: vertical; min-height: 110px; }
.careers-field select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, rgba(255,255,255,0.6) 50%), linear-gradient(135deg, rgba(255,255,255,0.6) 50%, transparent 50%); background-position: calc(100% - 20px) 50%, calc(100% - 14px) 50%; background-size: 6px 6px; background-repeat: no-repeat; }
.careers-field select option { color: var(--ink); }
.careers-field--file input[type=file] { padding: 10px; background: rgba(255,255,255,0.04); }
.careers-field--file input[type=file]::file-selector-button {
  background: var(--sky); color: var(--deep); border: 0; padding: 8px 14px; border-radius: 6px; font-weight: 600; margin-right: 12px; cursor: pointer;
}

.careers-apply .consent { display: flex; gap: 10px; align-items: flex-start; color: rgba(255,255,255,0.85); font-size: 14px; }
.careers-apply .consent a { color: var(--sky); text-decoration: underline; }
.careers-apply .consent input { margin-top: 3px; }

.careers-form-actions { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; margin-top: 8px; }
.careers-form-actions .btn-white {
  background: #fff; color: var(--deep); border: 0; padding: 14px 32px; border-radius: 999px; font-weight: 600;
  font-family: inherit; font-size: 15px; cursor: pointer; transition: transform .15s, box-shadow .15s;
}
.careers-form-actions .btn-white:hover:not(:disabled) { transform: translateY(-1px); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }
.careers-form-actions .btn-white:disabled { opacity: .6; cursor: wait; }
.careers-form-status { font-size: 14px; color: rgba(255,255,255,0.8); }
.careers-form-status--error { color: #FFB4A6; }

.careers-apply-success { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.14); padding: 32px; border-radius: 14px; color: #fff; }
.careers-apply-success h3 { font-family: var(--serif); font-size: 24px; margin: 0 0 10px; }
.careers-apply-success p { color: rgba(255,255,255,0.8); line-height: 1.6; margin: 0 0 10px; }
.careers-apply-success a { color: var(--sky); }
