:root {
  --bg: #0f1c18;
  --bg-2: #17352c;
  --ink: #f3f0e6;
  --muted: #b7c4bc;
  --accent: #d4a24c;
  --accent-2: #7fd0b0;
  --line: rgba(243, 240, 230, 0.14);
  --font-display: "Instrument Serif", Georgia, serif;
  --font-body: "DM Sans", "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(1200px 600px at 10% -10%, rgba(127, 208, 176, 0.18), transparent 55%),
    radial-gradient(900px 500px at 90% 0%, rgba(212, 162, 76, 0.16), transparent 50%),
    linear-gradient(160deg, var(--bg), #0b1411 45%, var(--bg-2));
  line-height: 1.55;
}

.noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  z-index: 0;
}

.top,
main,
.footer {
  position: relative;
  z-index: 1;
}

.top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.brand,
.brand-mark {
  font-family: var(--font-display);
  letter-spacing: 0.02em;
}

.brand {
  color: var(--ink);
  text-decoration: none;
  font-size: 1.35rem;
}

nav {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

nav a,
.footer-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.95rem;
}

nav a:hover,
.footer-links a:hover {
  color: var(--ink);
}

.hero {
  min-height: calc(100vh - 5rem);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem 1.5rem 3rem;
}

.brand-mark {
  margin: 0 0 0.75rem;
  font-size: clamp(2rem, 5vw, 3.25rem);
  line-height: 1;
  animation: rise 0.8s ease both;
}

.hero h1 {
  margin: 0;
  max-width: 14ch;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2rem, 4.4vw, 3.4rem);
  line-height: 1.12;
  animation: rise 0.9s ease 0.08s both;
}

.lede {
  margin: 1.25rem 0 0;
  max-width: 38ch;
  color: var(--muted);
  font-size: 1.05rem;
  animation: rise 1s ease 0.16s both;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.75rem;
  animation: rise 1.05s ease 0.24s both;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.2rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn.primary {
  background: var(--accent);
  color: #1a1408;
}

.btn.ghost {
  border: 1px solid var(--line);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.03);
}

.hero-visual {
  position: relative;
  min-height: 320px;
  display: grid;
  place-items: center;
  animation: float-in 1.1s ease 0.2s both;
}

.orbit {
  position: absolute;
  width: min(420px, 90%);
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(127, 208, 176, 0.25);
  background:
    radial-gradient(circle at 30% 30%, rgba(212, 162, 76, 0.35), transparent 40%),
    radial-gradient(circle at 70% 65%, rgba(127, 208, 176, 0.28), transparent 42%);
  animation: spin-slow 18s linear infinite;
}

.panel {
  position: relative;
  width: min(280px, 85%);
  padding: 1.5rem;
  border: 1px solid var(--line);
  background: rgba(10, 18, 15, 0.55);
  backdrop-filter: blur(10px);
  display: grid;
  gap: 0.55rem;
  animation: pulse-border 4s ease-in-out infinite;
}

.panel-kicker {
  color: var(--accent-2);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.panel strong {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 400;
  line-height: 1.2;
}

.price {
  color: var(--accent);
  font-weight: 700;
  font-size: 1.15rem;
}

.section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 3.5rem 1.5rem;
  border-top: 1px solid var(--line);
}

.section h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
}

.section-lede {
  margin: 0.85rem 0 0;
  max-width: 52ch;
  color: var(--muted);
}

.features {
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
  display: grid;
  gap: 1.25rem;
}

.features li {
  display: grid;
  gap: 0.35rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--line);
}

.features strong {
  font-size: 1.05rem;
}

.features span {
  color: var(--muted);
}

.footer {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem 3rem;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 0.92rem;
}

.footer .brand {
  margin: 0 0 0.35rem;
  color: var(--ink);
}

.footer-links {
  display: grid;
  gap: 0.45rem;
  text-align: right;
}

.legal {
  max-width: 760px;
  margin: 0 auto;
  padding: 2rem 1.5rem 4rem;
}

.legal h1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin: 0 0 0.5rem;
}

.legal .meta {
  color: var(--muted);
  margin-bottom: 2rem;
}

.legal h2 {
  font-family: var(--font-display);
  font-weight: 400;
  margin: 2rem 0 0.6rem;
}

.legal p,
.legal li {
  color: var(--muted);
}

.legal a {
  color: var(--accent-2);
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes float-in {
  from {
    opacity: 0;
    transform: scale(0.96) translateY(12px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes spin-slow {
  to {
    transform: rotate(360deg);
  }
}

@keyframes pulse-border {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(212, 162, 76, 0.15);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(212, 162, 76, 0);
  }
}

@media (max-width: 860px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 1.25rem;
  }

  .hero h1 {
    max-width: none;
  }

  .hero-visual {
    min-height: 280px;
    order: -1;
  }

  .footer-links {
    text-align: left;
  }
}
