:root {
  --bg: #0a0a1a;
  --primary: #1a1a2e;
  --gold: #d4a373;
  --cyan: #00d4ff;
  --white: #ffffff;
  --mist: #e0e0e0;
  --max: 1100px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--mist);
  font-family: Outfit, sans-serif;
  line-height: 1.6;
}

img {
  max-width: 100%;
}

a {
  color: var(--cyan);
}

.wrap {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.serif,
.tagline,
blockquote,
.quote {
  font-family: "Cormorant Garamond", serif;
}

.kicker {
  color: var(--gold);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-size: 0.75rem;
  margin: 0 0 0.6rem;
}

h1,
h2,
h3 {
  color: var(--white);
  line-height: 1.15;
  margin: 0 0 0.75rem;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 600;
}

h2 {
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
}

h3 {
  font-size: 1.2rem;
}

.lede,
.section-intro {
  max-width: 40rem;
  color: var(--mist);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border-radius: 999px;
  padding: 0.85rem 1.3rem;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn-gold {
  background: var(--gold);
  color: var(--bg);
}

.btn-gold:hover {
  background: #e0b484;
}

.btn-outline {
  background: transparent;
  color: var(--cyan);
  border-color: rgba(0, 212, 255, 0.45);
}

.btn-outline:hover {
  background: rgba(0, 212, 255, 0.1);
}

.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.6rem 1.2rem;
  background: rgba(10, 10, 26, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-logo img {
  height: 52px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.3rem;
}

.nav-links a {
  color: var(--mist);
  text-decoration: none;
  font-size: 0.92rem;
}

.nav-links a:hover {
  color: var(--cyan);
}

.nav-toggle {
  display: none;
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 0.4rem 0.7rem;
}

.hero {
  position: relative;
  min-height: 92vh;
  overflow: hidden;
  display: grid;
  align-items: center;
  padding: 4rem 0 5rem;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 212, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 212, 255, 0.05) 1px, transparent 1px);
  background-size: 48px 48px;
  animation: grid-shift 18s linear infinite;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 20%, black 20%, transparent 75%);
}

.hero-art {
  position: absolute;
  right: 0;
  top: 8%;
  width: min(58%, 760px);
  opacity: 0.82;
  animation: float 9s ease-in-out infinite;
  pointer-events: none;
}

.hero-copy {
  position: relative;
  max-width: 42rem;
}

.tagline {
  color: var(--cyan);
  font-size: 1.4rem;
  font-style: italic;
  margin: 0 0 0.8rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.6rem 0 1.1rem;
}

.hero-note {
  color: rgba(224, 224, 224, 0.72);
  max-width: 34rem;
}

.section {
  padding: 5rem 0;
}

.section.alt {
  background: rgba(26, 26, 46, 0.45);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.two-col,
.three-col,
.four-col,
.reason-grid,
.price-table,
.contact-grid,
.footer-grid {
  display: grid;
  gap: 1.2rem;
  margin-top: 1.8rem;
}

.two-col {
  grid-template-columns: 1fr 1fr;
}

.three-col {
  grid-template-columns: repeat(3, 1fr);
}

.four-col {
  grid-template-columns: repeat(4, 1fr);
}

.reason-grid {
  grid-template-columns: repeat(3, 1fr);
}

.price-table {
  grid-template-columns: repeat(4, 1fr);
}

.contact-grid,
.footer-grid {
  grid-template-columns: 1.1fr 1fr 0.6fr;
}

.contact-grid {
  grid-template-columns: 1fr 1fr;
  align-items: start;
}

.card,
.price-card {
  background: rgba(26, 26, 46, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  padding: 1.5rem;
}

.card-cyan {
  border-color: rgba(0, 212, 255, 0.25);
}

.card-label {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  color: rgba(224, 224, 224, 0.7);
}

.card-label.cyan {
  color: var(--cyan);
}

.stack {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}

.stack li {
  display: grid;
  gap: 0.25rem;
  margin-bottom: 1.1rem;
  padding-left: 1rem;
  border-left: 2px solid var(--gold);
}

.card-cyan .stack li {
  border-left-color: var(--cyan);
}

.card ul {
  padding-left: 1.1rem;
}

.card li {
  margin: 0.35rem 0;
}

.icon {
  width: 2.4rem;
  height: 2.4rem;
  display: grid;
  place-items: center;
  border-radius: 12px;
  border: 1px solid rgba(212, 163, 115, 0.4);
  color: var(--gold);
  margin-bottom: 0.8rem;
}

.icon.cyan {
  border-color: rgba(0, 212, 255, 0.4);
  color: var(--cyan);
}

.best-for {
  margin-top: 1.2rem;
  padding: 0.7rem 0.8rem;
  border-radius: 12px;
  background: rgba(10, 10, 26, 0.55);
  color: var(--cyan);
  font-size: 0.82rem;
}

.quote {
  margin: 2rem 0 0;
  padding: 1.6rem 1.4rem;
  text-align: center;
  border: 1px solid rgba(212, 163, 115, 0.3);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(212, 163, 115, 0.1), transparent);
  color: var(--white);
  font-size: clamp(1.3rem, 2.4vw, 1.8rem);
  font-style: italic;
}

.quote cite {
  display: block;
  margin-top: 0.8rem;
  font-style: normal;
  font-family: Outfit, sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.step-n {
  display: flex;
  justify-content: space-between;
  color: var(--gold);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  margin: 0 0 0.6rem;
}

.stars {
  color: var(--gold);
  letter-spacing: 0.12em;
  margin: 0 0 0.7rem;
}

figure blockquote {
  margin: 0;
  color: var(--white);
  font-size: 1.2rem;
}

figcaption {
  margin-top: 1rem;
}

figcaption span {
  display: block;
  color: var(--cyan);
  font-size: 0.9rem;
}

.price {
  color: var(--gold);
  font-size: 1.8rem;
  font-weight: 600;
  margin: 0;
}

.cadence {
  color: rgba(224, 224, 224, 0.65);
  font-size: 0.8rem;
  margin: 0 0 0.7rem;
}

.price-card .btn {
  width: 100%;
  margin-top: 0.8rem;
}

.featured {
  border-color: rgba(0, 212, 255, 0.4);
  background: rgba(0, 212, 255, 0.06);
}

.badge {
  display: inline-block;
  margin: 0 0 0.5rem;
  padding: 0.15rem 0.55rem;
  border: 1px solid rgba(0, 212, 255, 0.4);
  border-radius: 999px;
  color: var(--cyan);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.plain {
  padding-left: 1.1rem;
}

.audit-form {
  display: grid;
  gap: 0.9rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}

label,
legend {
  display: grid;
  gap: 0.35rem;
  font-size: 0.9rem;
  color: var(--white);
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(10, 10, 26, 0.7);
  color: var(--white);
  border-radius: 10px;
  padding: 0.7rem 0.8rem;
  font: inherit;
}

input:focus,
textarea:focus {
  outline: 2px solid rgba(0, 212, 255, 0.45);
  border-color: transparent;
}

fieldset {
  border: 0;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.4rem;
}

.check {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--mist);
  font-weight: 400;
}

.check input {
  width: auto;
}

.form-error {
  color: var(--gold);
  margin: 0;
}

.fine-print {
  font-size: 0.78rem;
  color: rgba(224, 224, 224, 0.65);
}

.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 3rem 0 1.5rem;
}

.footer-logo {
  height: 64px;
}

.footer nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.35rem;
  margin: 0.7rem 0 1rem;
}

.footer nav a {
  color: var(--mist);
  text-decoration: none;
}

.qr {
  width: 112px;
  background: #fff;
  border-radius: 12px;
  padding: 4px;
}

.copyright {
  width: min(var(--max), calc(100% - 32px));
  margin: 2rem auto 0;
  font-size: 0.78rem;
  color: rgba(224, 224, 224, 0.55);
}

.modal[hidden] {
  display: none;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 40;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 26, 0.8);
  backdrop-filter: blur(8px);
}

.modal-panel {
  position: relative;
  width: min(680px, calc(100% - 24px));
  max-height: calc(100vh - 32px);
  overflow: auto;
  margin: 16px auto;
  background: var(--primary);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 1.5rem;
}

.modal-close {
  position: absolute;
  top: 0.8rem;
  right: 0.9rem;
  background: transparent;
  border: 0;
  color: var(--white);
  font-size: 1.8rem;
  cursor: pointer;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.success {
  text-align: center;
  padding: 1.2rem 0;
}

.success h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
}

@keyframes float {
  50% {
    transform: translateY(-12px);
  }
}

@keyframes grid-shift {
  to {
    background-position: 48px 48px;
  }
}

@media (max-width: 980px) {
  .two-col,
  .three-col,
  .four-col,
  .reason-grid,
  .price-table,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-art {
    opacity: 0.28;
    width: 100%;
  }

  .nav-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    background: rgba(10, 10, 26, 0.96);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .nav.open .nav-links {
    display: flex;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}
