:root {
  --black: #080808;
  --black-2: #111111;
  --white: #ffffff;
  --ivory: #f8f5ee;
  --gold: #d4af37;
  --gold-2: #f0d36b;
  --muted: #b6b6b6;
  --line: rgba(212, 175, 55, 0.28);
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
  --radius: 20px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: #171717;
  background: var(--white);
  line-height: 1.65;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
}
.container {
  width: min(1180px, calc(100% - 40px));
  margin: auto;
}
.eyebrow {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 800;
  font-size: 0.78rem;
}
h1,
h2,
h3,
h4 {
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.1;
  margin: 0 0 18px;
}
h1 {
  font-size: clamp(3rem, 7vw, 6.8rem);
  letter-spacing: -0.045em;
}
h2 {
  font-size: clamp(2.2rem, 4vw, 4.2rem);
  letter-spacing: -0.03em;
}
h3 {
  font-size: clamp(1.35rem, 2.3vw, 2rem);
}
p {
  margin: 0 0 18px;
}
.lead {
  font-size: clamp(1.05rem, 1.7vw, 1.28rem);
  color: #3a3a3a;
  max-width: 760px;
}
.gold {
  color: var(--gold);
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 13px 22px;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: 0.02em;
  transition: 0.2s ease;
  border: 1px solid transparent;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn-gold {
  background: var(--gold);
  color: #070707;
}
.btn-dark {
  background: var(--black);
  color: white;
  border-color: var(--black);
}
.btn-outline {
  border-color: var(--gold);
  color: var(--gold);
  background: transparent;
}
.btn-white {
  background: white;
  color: black;
}
.actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 26px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(8, 8, 8, 0.95);
  color: white;
  border-bottom: 1px solid rgba(212, 175, 55, 0.18);
  backdrop-filter: blur(12px);
}
.nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  letter-spacing: 0.13em;
}
.brand-mark {
  width: 40px;
  height: 40px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 1.2rem;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 0.92rem;
}
.nav-links a {
  opacity: 0.88;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
  opacity: 1;
}
.nav-cta {
  display: flex;
  gap: 10px;
}
.mobile-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  background: transparent;
  border: 1px solid rgba(212, 175, 55, 0.45);
  border-radius: 10px;
  color: white;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
}
.mobile-toggle:hover,
.mobile-toggle:focus-visible {
  color: var(--white);
  border-color: var(--gold);
}
.mobile-toggle:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}
body.menu-open {
  overflow: hidden;
}

.hero {
  min-height: 82vh;
  display: grid;
  place-items: center;
  background:
    radial-gradient(
      circle at 75% 25%,
      rgba(212, 175, 55, 0.16),
      transparent 28%
    ),
    linear-gradient(135deg, #050505, #111 55%, #050505);
  color: white;
  position: relative;
  overflow: hidden;
}
.hero:after {
  content: "";
  position: absolute;
  inset: auto -10% -45% auto;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(212, 175, 55, 0.18);
  border-radius: 50%;
  box-shadow:
    0 0 0 80px rgba(212, 175, 55, 0.03),
    0 0 0 160px rgba(212, 175, 55, 0.02);
}
.hero-inner {
  position: relative;
  z-index: 2;
  padding: 100px 0;
  max-width: 980px;
}
.hero .lead {
  color: #d5d5d5;
}
.hero h1 span {
  color: var(--gold);
}
.hero-small {
  min-height: 52vh;
}
.hero-small h1 {
  font-size: clamp(2.8rem, 6vw, 5.6rem);
}

.section {
  padding: 95px 0;
}
.section-dark {
  background: var(--black);
  color: white;
}
.section-ivory {
  background: var(--ivory);
}
.section-gold {
  background: linear-gradient(135deg, #d4af37, #f1d97d);
  color: #0a0a0a;
}
.section-title {
  max-width: 830px;
  margin-bottom: 42px;
}

.grid {
  display: grid;
  gap: 24px;
}
.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.card {
  border: 1px solid #e6e1d6;
  border-radius: var(--radius);
  padding: 28px;
  background: white;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.04);
}
.section-dark .card {
  background: #111;
  border-color: #242424;
  color: white;
}
.card-number {
  font-family: Georgia, serif;
  font-size: 2.8rem;
  color: var(--gold);
  margin-bottom: 10px;
}
.card p {
  color: #555;
}
.section-dark .card p {
  color: #bdbdbd;
}

.process {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.process-step {
  padding: 22px;
  border-top: 3px solid var(--gold);
  background: #111;
  color: white;
  border-radius: 0 0 16px 16px;
}
.process-step strong {
  display: block;
  color: var(--gold);
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  margin-bottom: 7px;
}

.kicker-box {
  border-left: 3px solid var(--gold);
  padding: 8px 0 8px 24px;
  margin: 28px 0;
}
.quote {
  font-family: Georgia, serif;
  font-size: clamp(1.7rem, 3vw, 2.7rem);
  line-height: 1.25;
}
.pill {
  display: inline-flex;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 13px;
  margin: 5px;
  color: #444;
  background: #fffdf8;
  font-weight: 700;
  font-size: 0.88rem;
}
.section-dark .pill {
  background: #121212;
  color: #ddd;
}
.checklist {
  list-style: none;
  padding: 0;
  margin: 0;
}
.checklist li {
  position: relative;
  padding-left: 28px;
  margin: 12px 0;
}
.checklist li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 900;
}

.pricing {
  max-width: 720px;
  margin: auto;
  background: #0b0b0b;
  color: white;
  border: 1px solid var(--gold);
  border-radius: 28px;
  padding: 42px;
  box-shadow: var(--shadow);
}
.price {
  font-family: Georgia, serif;
  font-size: 4.5rem;
  color: var(--gold);
  line-height: 1;
}
.price small {
  font: 600 1rem Arial;
  color: #bbb;
}
.pricing .checklist {
  margin: 28px 0;
}

.laws-grid .card,
.code-grid .card {
  min-height: 220px;
}
.law-symbol {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(212, 175, 55, 0.12);
  color: var(--gold);
  font-weight: 900;
  margin-bottom: 18px;
}

.timeline {
  position: relative;
  margin: 30px 0;
}
.timeline:before {
  content: "";
  position: absolute;
  left: 23px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--line);
}
.timeline-item {
  position: relative;
  padding: 0 0 34px 70px;
}
.timeline-item:before {
  content: "";
  position: absolute;
  left: 13px;
  top: 4px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 7px rgba(212, 175, 55, 0.14);
}
.timeline-item h3 {
  margin-bottom: 7px;
}

details {
  border: 1px solid #e5dfd2;
  border-radius: 14px;
  padding: 18px 20px;
  background: white;
  margin: 12px 0;
}
summary {
  cursor: pointer;
  font-weight: 800;
  font-size: 1.03rem;
}
details p {
  margin: 14px 0 0;
  color: #555;
}

.form-wrap {
  max-width: 760px;
  margin: auto;
  background: white;
  border: 1px solid #e6e1d6;
  border-radius: 24px;
  padding: 34px;
  box-shadow: var(--shadow);
}
label {
  display: block;
  font-weight: 700;
  margin: 16px 0 8px;
}
input,
textarea,
select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #d6d0c5;
  border-radius: 12px;
  font: inherit;
}
textarea {
  min-height: 140px;
}

.portal-preview {
  background: #0b0b0b;
  color: white;
  border: 1px solid var(--gold);
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow);
}
.portal-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}
.portal-tile {
  border: 1px solid #292929;
  border-radius: 16px;
  padding: 20px;
  background: #111;
}
.portal-tile span {
  color: var(--gold);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 800;
}

.footer {
  background: #050505;
  color: #c8c8c8;
  padding: 60px 0 28px;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 30px;
}
.footer h4 {
  color: white;
  font-family: Arial;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.13em;
}
.footer a {
  display: block;
  margin: 9px 0;
  color: #c8c8c8;
}
.footer a:hover {
  color: var(--gold);
}
.footer-bottom {
  border-top: 1px solid #202020;
  margin-top: 38px;
  padding-top: 22px;
  font-size: 0.88rem;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.notice {
  border: 1px solid var(--line);
  background: #fffaf0;
  padding: 18px 20px;
  border-radius: 14px;
}
.center {
  text-align: center;
}
.center .lead {
  margin-left: auto;
  margin-right: auto;
}
.spacer {
  height: 20px;
}
hr.goldline {
  border: 0;
  border-top: 1px solid var(--line);
  margin: 40px 0;
}

@media (max-width: 980px) {
  .nav-links,
  .nav-cta {
    display: none;
  }
  .mobile-toggle {
    display: flex;
    position: absolute;
    right: 16px;
  }
  .nav.mobile-open {
    align-items: flex-start;
    flex-wrap: wrap;
    padding: 18px 0;
  }
  .nav.mobile-open .nav-links,
  .nav.mobile-open .nav-cta {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  .nav.mobile-open .nav-links {
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    padding-top: 8px;
  }
  .nav.mobile-open .nav-links a {
    width: 100%;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  .nav.mobile-open .nav-cta {
    flex-direction: row;
    gap: 10px;
    padding-top: 16px;
  }
  .nav.mobile-open .nav-cta .btn {
    flex: 1;
  }
  .grid-4,
  .grid-3,
  .process,
  .portal-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 700px) {
  .container {
    width: min(100% - 28px, 1180px);
  }
  .section {
    padding: 72px 0;
  }
  .grid-2,
  .grid-3,
  .grid-4,
  .process,
  .portal-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .hero-inner {
    padding: 74px 0;
  }
  h1 {
    font-size: clamp(2.65rem, 13vw, 4.5rem);
  }
  .pricing {
    padding: 28px;
  }
}
