:root {
  --ink-950: #091220;
  --ink-900: #0f1b2e;
  --ink-800: #182a45;
  --ink-700: #22385a;
  --gold-500: #b88a4d;
  --gold-400: #c49a61;
  --slate-200: #d7e0ea;
  --slate-100: #e9eff5;
  --white: #ffffff;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: radial-gradient(circle at 10% 0%, #f5f8fb 0%, #eef3f8 45%, #e8eef5 100%);
}

.grid-overlay {
  background-image: linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 40px 40px;
}

.hero-veil {
  background: linear-gradient(110deg, rgba(9, 18, 32, 0.9), rgba(15, 27, 46, 0.7) 55%, rgba(184, 138, 77, 0.34));
}

.page-hero {
  position: relative;
  overflow: hidden;
  background: var(--ink-900);
  color: var(--white);
}

.top-nav {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  background: linear-gradient(180deg, rgba(9, 18, 32, 0.92), rgba(9, 18, 32, 0.72));
}

.brand-wordmark {
  letter-spacing: 0.16em;
}

.section-shell {
  width: min(1200px, 92vw);
  margin-inline: auto;
}

.kicker {
  letter-spacing: 0.24em;
}

.lift-card {
  border: 1px solid rgba(34, 56, 90, 0.16);
  box-shadow: 0 22px 45px -32px rgba(9, 18, 32, 0.6);
}

.metric-card {
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.03));
}

.stat-number {
  color: var(--gold-400);
}

.gold-line {
  position: relative;
}

.gold-line::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -14px;
  width: 84px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-500), rgba(184, 138, 77, 0));
}

.surface-panel {
  background: linear-gradient(180deg, #ffffff 0%, #f7fafd 100%);
  border: 1px solid rgba(24, 42, 69, 0.12);
}

.cta-panel {
  background: linear-gradient(120deg, var(--ink-900), var(--ink-700));
}

.photo-frame {
  border: 1px solid rgba(15, 27, 46, 0.16);
  box-shadow: 0 24px 44px -26px rgba(9, 18, 32, 0.55);
}

.process-step {
  border-left: 2px solid rgba(184, 138, 77, 0.5);
}

.link-underline {
  position: relative;
}

.link-underline::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: width 220ms ease;
}

.link-underline:hover::after,
.link-underline:focus-visible::after {
  width: 100%;
}

.page-intro {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(240, 246, 252, 0.92));
}

.input-shell {
  border: 1px solid rgba(24, 42, 69, 0.18);
  background: rgba(255, 255, 255, 0.96);
}

.input-shell:focus {
  outline: 2px solid rgba(184, 138, 77, 0.35);
  border-color: rgba(184, 138, 77, 0.6);
}

.fade-up {
  animation: fadeUp 680ms ease both;
}

.fade-up-delay {
  animation: fadeUp 880ms ease both;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translate3d(0, 18px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@media (max-width: 767px) {
  .top-nav {
    backdrop-filter: blur(6px);
  }
}
