:root {
  --ink: #FFFFFF;
  --ink-2: #cbd5e1;
  --paper: #0D0F1A;
  --paper-2: #080A14;
  --card-bg: #1A1D30;
  --white: #FFFFFF;
  --slate: rgba(255, 255, 255, 0.7);
  --slate-light: #64748b;
  --ai-blue: #1B6BBF;
  --ai-blue-deep: #2D87D8;
  --peak-gold: #F5A623;
  --peak-gold-deep: #D4891A;
  --line: rgba(255, 255, 255, 0.08);
  --radius: 14px;
  --serif: 'Barlow Condensed', sans-serif;
  --grot: 'Barlow Condensed', sans-serif;
  --body: 'Barlow', sans-serif;
  --mono: 'IBM Plex Mono', monospace;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
}

@media (max-width:640px) {
  .wrap {
    padding: 0 20px;
  }
}

.eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
}

h1,
h2,
h3 {
  font-weight: 800;
  letter-spacing: -0.01em;
}

/* ---------- NAV ---------- */
header.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(13, 15, 26, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 32px;
  max-width: 1180px;
  margin: 0 auto;
}

.nav-logo {
  font-family: var(--grot);
  font-weight: 700;
  font-size: 19px;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo .logo-img {
  height: 80px;
  width: auto;
  display: block;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  gap: 34px;
  align-items: center;
}

.nav-links a {
  font-size: 16px;
  color: #B9C6D6;
  font-weight: 500;
  transition: color .2s ease;
}

.nav-links a:hover {
  color: var(--white);
}

.nav-cta {
  background: var(--peak-gold);
  color: #0D0F1A;
  font-weight: 700;
  font-size: 13.5px;
  padding: 10px 20px;
  border-radius: 100px;
  font-family: var(--body);
}

.nav-cta:hover {
  background: #FFC635;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
}

@media (max-width:860px) {
  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: block;
  }
}

/* ---------- HERO ---------- */
.hero {
  background: radial-gradient(ellipse 120% 80% at 50% -10%, #101527 0%, var(--paper) 55%, #080A14 100%);
  color: var(--white);
  padding: 40px 0 60px;
  position: relative;
  overflow: hidden;
}

#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 2;
}

@media (max-width:960px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-orbit-col {
    order: -1;
    margin-bottom: 8px;
  }
}

.hero-brand-name {
  font-family: var(--grot);
  font-weight: 800;
  font-size: 24px;
  color: var(--white);
  margin-bottom: 18px;
  letter-spacing: 0.02em;
  text-align: left;
}

@media (max-width:960px) {
  .hero-brand-name {
    text-align: center;
  }
}

.hero-quote {
  border-left: 4px solid var(--ai-blue-deep);
  padding-left: 18px;
  margin: 0 0 24px;
  font-family: var(--body);
  font-style: italic;
  font-size: clamp(18px, 2.2vw, 22px);
  line-height: 1.55;
  color: var(--white);
  max-width: 640px;
  text-align: left;
}

@media (max-width:960px) {
  .hero-quote {
    margin-left: auto;
    margin-right: auto;
  }
}

.hero p.sub {
  margin-top: 0;
  font-size: 16.5px;
  color: var(--slate);
  max-width: 540px;
  line-height: 1.65;
  text-align: left;
}

@media (max-width:960px) {
  .hero p.sub {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }
}

.hero-inline-highlight {
  color: var(--peak-gold);
  font-weight: 700;
}

.hero-ctas {
  margin-top: 34px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

@media (max-width:960px) {
  .hero-ctas {
    justify-content: center;
  }
}

.btn-primary {
  background: var(--peak-gold);
  color: #0D0F1A;
  font-weight: 700;
  font-size: 14.5px;
  padding: 15px 28px;
  border-radius: 100px;
  display: inline-block;
  transition: transform .18s ease, background .18s ease;
  box-shadow: 0 10px 30px -8px rgba(255, 184, 0, 0.5);
}

.btn-primary:hover {
  background: #FFC635;
  transform: translateY(-2px);
}

.btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: var(--white);
  font-weight: 500;
  font-size: 14.5px;
  padding: 14px 26px;
  border-radius: 100px;
  display: inline-block;
  transition: background .18s ease, border-color .18s ease;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.5);
}

.hero-trust {
  margin-top: 38px;
  font-size: 12.5px;
  color: #7F91A8;
  font-family: var(--mono);
  letter-spacing: 0.03em;
}

/* ---------- HERO HIERARCHY DIAGRAM ---------- */
.hero-hierarchy {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 440px;
  margin: 0 auto;
  padding: 20px 0;
  /* no whole-container animation — each part reveals individually */
}

/* Node cards */
.hie-node {
  background: var(--card-bg);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.hie-node:hover {
  transform: translateY(-3px);
}

/* STEP 1 — Parent fades + rises in */
.hie-parent-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
  animation: hieReveal 0.65s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: 0.15s;
}

.hie-parent {
  width: 190px;
  border-top: 3px solid var(--peak-gold);
  box-shadow: 0 0 40px rgba(245, 166, 35, 0.12);
}

.hie-parent:hover {
  box-shadow: 0 10px 40px rgba(245, 166, 35, 0.22);
}

/* STEP 2a — Vertical stem draws downward */
.hie-connector-top {
  width: 2px;
  height: 72px;
  background: var(--peak-gold);
  transform-origin: top center;
  animation: hieGrowDown 0.35s ease both;
  animation-delay: 0.85s;
}

/* STEP 2b — Horizontal bar expands from centre */
.hie-h-bar {
  width: 55%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hie-h-line {
  width: 100%;
  height: 2px;
  background: var(--peak-gold);
  border-radius: 1px;
  transform-origin: center;
  animation: hieGrowWide 0.38s ease both;
  animation-delay: 1.2s;
}

/* STEP 2c — Vertical stubs drop down */
.hie-child-connectors {
  width: 55%;
  display: flex;
  justify-content: space-between;
  padding: 0;
}

.hie-v-stub {
  width: 2px;
  height: 52px;
  background: var(--peak-gold);
  transform-origin: top center;
  animation: hieGrowDown 0.3s ease both;
  animation-delay: 1.55s;
}

/* STEP 3 — Children slide up, left then right */
.hie-children {
  display: flex;
  gap: 88px;
  justify-content: center;
  width: 100%;
}

.hie-child {
  width: 152px;
}

.hie-child.hie-gold {
  border-top: 2.5px solid var(--peak-gold);
  animation: hieReveal 0.55s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: 1.85s;
}

.hie-child.hie-blue {
  border-top: 2.5px solid var(--ai-blue-deep);
  animation: hieReveal 0.55s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: 2.1s;
}

.hie-child.hie-gold:hover {
  box-shadow: 0 8px 32px rgba(245, 166, 35, 0.18);
}

.hie-child.hie-blue:hover {
  box-shadow: 0 8px 32px rgba(27, 107, 191, 0.22);
}

/* Logos — parent is visibly larger to reinforce hierarchy */
.hie-logo {
  width: 80px;
  height: 34px;
  object-fit: contain;
  object-position: center;
}

.hie-logo-parent {
  width: 130px;
  height: 58px;
  object-fit: contain;
  object-position: center;
}

/* Text labels */
.hie-label {
  font-family: var(--grot);
  font-weight: 700;
  font-size: 13px;
  color: var(--white);
  letter-spacing: 0.01em;
}

.hie-sub {
  font-family: var(--mono);
  font-size: 9.5px;
  color: var(--slate);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Keyframes */
@keyframes hieReveal {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hieGrowDown {
  from {
    transform: scaleY(0);
    opacity: 0;
  }

  to {
    transform: scaleY(1);
    opacity: 1;
  }
}

@keyframes hieGrowWide {
  from {
    transform: scaleX(0);
    opacity: 0;
  }

  to {
    transform: scaleX(1);
    opacity: 1;
  }
}

/* Respect reduced-motion */
@media (prefers-reduced-motion: reduce) {

  .hie-parent-wrap,
  .hie-connector-top,
  .hie-h-line,
  .hie-v-stub,
  .hie-child.hie-gold,
  .hie-child.hie-blue {
    animation: none !important;
  }
}

/* Mobile: compact horizontal layout */
@media (max-width: 540px) {

  /* Tighten the container */
  .hero-hierarchy {
    padding: 8px 0;
    max-width: 340px;
  }

  /* All cards — smaller padding & radius */
  .hie-node {
    padding: 10px 12px;
    gap: 4px;
    border-radius: 10px;
  }

  /* Logos — parent bigger, children smaller */
  .hie-logo {
    width: 64px;
    height: 26px;
  }

  .hie-logo-parent {
    width: 104px;
    height: 46px;
  }

  /* Text — smaller */
  .hie-label {
    font-size: 11px;
  }

  .hie-sub {
    font-size: 8px;
  }

  /* Parent card narrower */
  .hie-parent {
    width: 160px;
  }

  /* Shorter top stem */
  .hie-connector-top {
    height: 22px;
  }

  /* Shorter horizontal bar stubs */
  .hie-v-stub {
    height: 16px;
  }

  /* Children stay in a ROW — no stacking */
  .hie-children {
    flex-direction: row;
    gap: 10px;
  }

  .hie-child {
    width: 128px;
  }

  /* Remove pseudo-connector from previous attempt */
  .hie-child.hie-gold::after {
    display: none;
  }
}

/* ---------- SECTION SHELL ---------- */
section {
  padding: 96px 0;
}

.section-head {
  max-width: 640px;
  margin-bottom: 56px;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-head .eyebrow {
  color: var(--ai-blue-deep);
  margin-bottom: 14px;
}

.section-head h2 {
  font-family: var(--serif);
  font-size: clamp(26px, 3.2vw, 38px);
  color: var(--ink);
  line-height: 1.22;
}

.section-head p {
  margin-top: 16px;
  font-size: 16px;
  color: var(--slate);
  line-height: 1.7;
}

.band-dark .section-head .eyebrow {
  color: var(--peak-gold);
}

.band-dark .section-head h2 {
  color: var(--white);
}

.band-dark .section-head p {
  color: #B9C6D6;
}

/* ---------- TWO PRACTICES ---------- */
.practice-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

@media (max-width:820px) {
  .practice-grid {
    grid-template-columns: 1fr;
  }
}

.practice-card {
  border-radius: var(--radius);
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
  background: var(--card-bg);
  border: 1px solid var(--line);
  transition: transform .25s ease, box-shadow .25s ease;
}

.practice-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 50px -20px rgba(27, 107, 191, 0.22);
}

.practice-card .glyph {
  height: 44px;
  margin-bottom: 26px;
  display: flex;
  align-items: center;
}

.practice-logo {
  height: 44px;
  width: auto;
  display: block;
}

.practice-card .domain {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.08em;
  color: var(--slate-light);
  margin-bottom: 8px;
}

.practice-card h3 {
  font-family: var(--grot);
  font-size: 25px;
  font-weight: 700;
  margin-bottom: 6px;
}

.practice-card .tag {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 18px;
}

.practice-card.gold .tag {
  color: var(--peak-gold-deep);
}

.practice-card.blue .tag {
  color: var(--ai-blue-deep);
}

.practice-card p.desc {
  color: var(--slate);
  font-size: 14.8px;
  margin-bottom: 22px;
  line-height: 1.7;
}

.practice-card .feats {
  margin-bottom: 26px;
}

.practice-card .feats li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 13.8px;
  color: var(--ink);
  margin-bottom: 10px;
}

.practice-card .feats li .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  margin-top: 6px;
  flex-shrink: 0;
}

.practice-card.gold .feats .dot {
  background: var(--peak-gold);
}

.practice-card.blue .feats .dot {
  background: var(--ai-blue);
}

.practice-card .visit {
  font-weight: 600;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.practice-card.gold .visit {
  color: var(--peak-gold-deep);
}

.practice-card.blue .visit {
  color: var(--ai-blue-deep);
}

.practice-card .visit .arrow {
  transition: transform .5s ease-in-out;
}

.practice-card:hover .visit .arrow {
  transform: translateX(4px);
}

.practice-card .bg-orbit {
  position: absolute;
  right: -60px;
  top: -60px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  opacity: 0.08;
  border: 2px solid currentColor;
}

.practice-card.gold {
  color: var(--peak-gold-deep);
}

.practice-card.blue {
  color: var(--ai-blue-deep);
}

/* ---------- HOW IT WORKS ---------- */
.process {
  background: var(--paper-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.process-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

@media (max-width:820px) {
  .process-row {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

.process-step {
  padding: 0 30px;
  position: relative;
}

.process-row .process-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 26px;
  right: -2px;
  width: 1px;
  height: 64px;
  background: var(--line);
}

@media (max-width:820px) {
  .process-row .process-step:not(:last-child)::after {
    display: none;
  }
}

.process-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.process-step h3 {
  font-family: var(--grot);
  font-size: 19px;
  margin: 0;
}

.process-step .time {
  display: inline-block;
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.05em;
  padding: 4px 10px;
  border-radius: 100px;
  margin: 0;
}

.process-step:nth-child(1) .time {
  background: rgba(27, 107, 191, 0.15);
  color: #EAF7FF;
}

.process-step:nth-child(2) .time {
  background: rgba(245, 166, 35, 0.15);
  color: #FFF3D6;
}

.process-step:nth-child(3) .time {
  background: rgba(27, 107, 191, 0.15);
  color: #EAF7FF;
}

.process-step p {
  color: var(--slate);
  font-size: 14.5px;
  line-height: 1.7;
}

/* ---------- GAP COMPARISON ---------- */
#gap .section-head {
  max-width: 820px;
}

.gap-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  overflow: hidden;
}

@media (max-width:820px) {
  .gap-cols {
    grid-template-columns: 1fr;
  }
}

.gap-col {
  padding: 44px 40px;
}

.gap-col.without {
  background: #0D2438;
}

.gap-col.with {
  background: linear-gradient(160deg, #123B5C, #0A2438);
}

.gap-col h3 {
  font-family: var(--grot);
  font-size: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 26px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.gap-col.without h3 {
  color: #8393A8;
}

.gap-col.with h3 {
  color: var(--peak-gold);
}

.gap-col ul li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 14.8px;
  line-height: 1.6;
  margin-bottom: 18px;
}

.gap-col.without li {
  color: #9FADC0;
}

.gap-col.with li {
  color: #EAF1F8;
}

.gap-col .icon {
  flex-shrink: 0;
  margin-top: 2px;
}

.gap-col.without .icon {
  color: #EF4444;
  font-weight: 700;
}

.gap-col.with .icon {
  color: #10B981;
  font-weight: 700;
}

/* ---------- WHY IT WORKS / PROOF ---------- */
.proof-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

@media (max-width:900px) {
  .proof-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.proof-text p {
  font-size: 16px;
  color: var(--slate);
  line-height: 1.8;
  margin-bottom: 18px;
}

.stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.stat-card {
  background: var(--card-bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px;
}

.stat-card .num {
  font-family: var(--serif);
  font-size: 34px;
  font-style: italic;
  color: var(--ink);
}

.stat-card:nth-child(2) .num {
  color: var(--peak-gold-deep);
}

.stat-card:nth-child(3) .num {
  color: var(--ai-blue-deep);
}

.stat-card .label {
  font-size: 12.5px;
  color: var(--slate);
  margin-top: 8px;
  line-height: 1.5;
}

/* ---------- FAQ ---------- */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-family: var(--grot);
  font-size: 16.5px;
  font-weight: 600;
  color: var(--ink);
}

.faq-q .plus {
  font-size: 20px;
  font-weight: 400;
  color: var(--ai-blue-deep);
  transition: transform .25s ease;
  flex-shrink: 0;
}

.faq-item.open .plus {
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}

.faq-a p {
  padding-bottom: 22px;
  color: var(--slate);
  font-size: 14.8px;
  line-height: 1.75;
  max-width: 640px;
}

/* ---------- CONTACT ---------- */
.contact {
  background: linear-gradient(180deg, var(--paper) 0%, #060810 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: flex-start;
}

@media (max-width:900px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

.contact-intro .eyebrow {
  color: var(--peak-gold);
  margin-bottom: 16px;
}

.contact-intro h2 {
  font-family: var(--serif);
  font-size: clamp(26px, 3vw, 36px);
  color: var(--white);
  line-height: 1.25;
}

.contact-intro p {
  margin-top: 18px;
  color: #B9C6D6;
  font-size: 15.5px;
  line-height: 1.75;
  max-width: 440px;
}

.contact-promise {
  margin-top: 32px;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.promise-pill {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.04em;
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 9px 14px;
  border-radius: 100px;
  color: #DCE6F0;
}

.form-card {
  background: var(--card-bg);
  border-radius: 18px;
  padding: 38px;
  color: var(--ink);
  border: 1px solid var(--line);
  box-shadow: 0 40px 80px -30px rgba(0, 0, 0, 0.5);
}

.form-card h3 {
  font-family: var(--grot);
  font-size: 19px;
  margin-bottom: 6px;
}

.form-card .sub {
  font-size: 13.5px;
  color: var(--slate);
  margin-bottom: 26px;
}

.field {
  margin-bottom: 18px;
}

.field label {
  display: block;
  font-size: 12.5px;
  font-weight: 600;
  margin-bottom: 7px;
  color: var(--ink-2);
}

.field input {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 9px;
  font-family: var(--body);
  font-size: 14.5px;
  color: var(--ink);
  background: var(--paper);
  transition: border-color .18s ease, box-shadow .18s ease;
}

.field input:focus {
  outline: none;
  border-color: var(--ai-blue);
  box-shadow: 0 0 0 3px rgba(27, 107, 191, 0.14);
  background: var(--paper-2);
}

.captcha-row {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: 9px;
  padding: 12px 14px;
  margin-bottom: 18px;
}

.captcha-row .q {
  font-family: var(--mono);
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
}

.captcha-row input {
  background: var(--paper);
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 7px;
  width: 64px;
  padding: 7px 8px;
  font-size: 14px;
  text-align: center;
}

.consent-row {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 22px;
}

.consent-row input {
  margin-top: 3px;
  flex-shrink: 0;
}

.consent-row label {
  font-size: 12.5px;
  color: var(--slate);
  line-height: 1.55;
}

.btn-submit {
  width: 100%;
  background: var(--peak-gold);
  color: #0D0F1A;
  font-weight: 700;
  font-size: 15px;
  padding: 15px;
  border: none;
  border-radius: 9px;
  cursor: pointer;
  font-family: var(--body);
  transition: background .18s ease, transform .18s ease;
}

.btn-submit:hover {
  background: #FFC635;
  transform: translateY(-1px);
}

.btn-submit:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
}

.form-note {
  font-size: 11.5px;
  color: var(--slate-light);
  margin-top: 14px;
  text-align: center;
}

.form-success {
  display: none;
  text-align: center;
  padding: 36px 10px;
}

.form-success .check {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #E9F9EF;
  color: #1F9D55;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 24px;
}

.form-success h3 {
  font-family: var(--grot);
  font-size: 19px;
  margin-bottom: 8px;
}

.form-success p {
  font-size: 14px;
  color: var(--slate);
}

.honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
}

/* ---------- FOOTER ---------- */
footer {
  background: #060810;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 2.2rem 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-logo img {
  height: 50px;
  width: auto;
  display: block;
}

.footer-links,
.footer-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-menu a {
  font-size: 13.5px;
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-menu a:hover {
  color: var(--peak-gold);
}

.footer-copy {
  font-size: 12.5px;
  color: #94a3b8;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.footer-copy .credit-link {
  color: var(--peak-gold);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-copy .credit-link:hover {
  color: #FFC635;
  text-decoration: underline;
}

@media (min-width: 721px) {
  .footer-copy {
    align-items: flex-end;
    text-align: right;
  }
}

@media (max-width: 720px) {
  .footer-inner {
    flex-direction: column;
    text-align: center;
    gap: 1.8rem;
  }

  .footer-menu {
    gap: 0.8rem 1.8rem;
    justify-content: center;
  }

  .footer-copy {
    align-items: center;
    text-align: center;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}