:root {
  --ink: #f5efe6;
  --muted: rgba(245, 239, 230, 0.78);
  --line: rgba(245, 239, 230, 0.12);
  --accent: #f08a41;
  --bg: #07101d;
  --bg-soft: #0f1a2f;
  --panel: rgba(255, 255, 255, 0.04);
  --sans: "Sora", sans-serif;
  --serif: "Cormorant Garamond", serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  font-family: var(--sans);
  background:
    radial-gradient(circle at 15% 15%, rgba(240, 138, 65, 0.2), transparent 24%),
    radial-gradient(circle at 80% 18%, rgba(122, 151, 193, 0.16), transparent 26%),
    linear-gradient(160deg, #040914, var(--bg) 44%, var(--bg-soft));
}
body::before {
  content: "";
  position: fixed;
  inset: -20vh -20vw;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.03), transparent);
  pointer-events: none;
  animation: drift 18s linear infinite;
}
a { color: inherit; }
.frame, .site-footer { width: min(1180px, calc(100% - 2rem)); margin: 0 auto; }
.masthead, .subhead {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 0;
  backdrop-filter: blur(14px);
}
.brand, .nav, .footer-links, .social-links { display: flex; gap: 1rem; flex-wrap: wrap; }
.brand { text-decoration: none; text-transform: uppercase; letter-spacing: 0.08em; font-size: 0.84rem; }
.brand strong { font-size: 1rem; }
.nav a, .footer-links a, .social-links a { color: var(--muted); text-decoration: none; }
.page { padding-bottom: 4rem; }
.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.85fr);
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
  min-height: calc(100svh - 6rem);
  padding: 1rem 0 3.5rem;
}
.hero-copy > * { opacity: 0; transform: translateY(18px); animation: rise 680ms ease forwards; }
.hero-copy > :nth-child(2) { animation-delay: 80ms; }
.hero-copy > :nth-child(3) { animation-delay: 160ms; }
.hero-copy > :nth-child(4) { animation-delay: 240ms; }
.hero-copy > :nth-child(5) { animation-delay: 320ms; }
.hero-copy > :nth-child(6) { animation-delay: 400ms; }
.eyebrow, .index, .step-tag { margin: 0; color: #ffd3b0; text-transform: uppercase; letter-spacing: 0.22em; font-size: 0.72rem; }
h1, h2, h3 { margin: 0; font-family: var(--serif); line-height: 0.95; }
h1 { max-width: 10ch; font-size: clamp(3.4rem, 7vw, 6.8rem); }
h2 { font-size: clamp(2.4rem, 5vw, 4.2rem); }
h3 { font-size: clamp(1.55rem, 2.4vw, 2.15rem); }
p, li, input, textarea { color: var(--muted); line-height: 1.7; }
.actions { display: flex; gap: 0.9rem; flex-wrap: wrap; margin: 2rem 0; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.9rem 1.3rem;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 600;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}
.button:hover { transform: translateY(-2px); box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28); }
.primary { background: linear-gradient(135deg, var(--accent), #ffb06f); color: #09111d; }
.secondary, .ghost { border-color: rgba(255, 255, 255, 0.15); }
.meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.meta div, .proof-item, .contact-grid div { padding-top: 0.8rem; border-top: 1px solid var(--line); }
.meta span, .contact-grid dt { display: block; margin-bottom: 0.35rem; color: rgba(245, 239, 230, 0.56); font-size: 0.78rem; letter-spacing: 0.15em; text-transform: uppercase; }
.signal {
  position: relative;
  min-height: 33rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 2.2rem;
  background:
    linear-gradient(140deg, rgba(11, 21, 37, 0.88), rgba(7, 12, 22, 0.96)),
    radial-gradient(circle at 76% 20%, rgba(240, 138, 65, 0.2), transparent 24%);
}
.signal::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 4rem 4rem;
  opacity: 0.22;
}
.token, .signal-box, .card, .panel {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
}
.token {
  position: absolute;
  padding: 0.5rem 0.8rem;
  border-radius: 999px;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  animation: float 8s ease-in-out infinite;
}
.token:nth-child(1) { top: 12%; left: 10%; }
.token:nth-child(2) { top: 24%; right: 14%; animation-delay: 1.2s; }
.token:nth-child(3) { top: 48%; left: 20%; animation-delay: 2.1s; }
.token:nth-child(4) { top: 60%; right: 16%; animation-delay: 3s; }
.token:nth-child(5) { top: 74%; left: 34%; animation-delay: 4s; }
.signal-box {
  position: absolute;
  right: 1.4rem;
  bottom: 1.4rem;
  width: min(21rem, calc(100% - 2.8rem));
  padding: 1.3rem;
  border-radius: 1.4rem;
}
.proof, .section { padding: 4rem 0; }
.proof { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; }
.section-head, .split, .closing, .subhero, .grid { display: grid; gap: 2rem; }
.section-head { grid-template-columns: minmax(0, 0.72fr) minmax(0, 0.9fr); margin-bottom: 2rem; align-items: end; }
.stack, .prices, .faq, .steps { display: grid; gap: 1rem; }
.row, .step, .price, .faq-item, .card, .panel {
  padding: 1.35rem;
  border-radius: 1.5rem;
}
.row, .step { display: grid; grid-template-columns: 5rem minmax(0, 1fr); gap: 1rem; }
.row:hover, .price:hover, .panel:hover { border-color: rgba(240, 138, 65, 0.32); transform: translateY(-2px); }
.row, .price, .panel { transition: transform 160ms ease, border-color 160ms ease; }
.split { grid-template-columns: minmax(0, 0.9fr) minmax(0, 0.75fr); }
.prices, .faq { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.steps { border-left: 1px solid transparent; }
.price ul, .panel ul { margin: 0; padding-left: 1.1rem; }
.faq-item summary { cursor: pointer; font-weight: 600; }
.faq-item summary::-webkit-details-marker { display: none; }
.closing { grid-template-columns: minmax(0, 0.86fr) minmax(18rem, 0.7fr); }
.contact-grid { display: grid; gap: 1rem; }
.contact-grid dd { margin: 0; }
.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 0 2.4rem;
  border-top: 1px solid var(--line);
  color: rgba(245, 239, 230, 0.62);
}
.subhero, .grid { grid-template-columns: minmax(0, 0.95fr) minmax(18rem, 0.7fr); margin-bottom: 2rem; }
.form { display: grid; gap: 1rem; }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }
label { display: grid; gap: 0.45rem; }
input, textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  font-family: inherit;
}
textarea { min-height: 8.5rem; resize: vertical; }
.feedback { min-height: 1.2rem; color: #ffd3b0; }
@keyframes drift { 0% { transform: translateX(0); } 50% { transform: translateX(2vw); } 100% { transform: translateX(0); } }
@keyframes rise { to { opacity: 1; transform: translateY(0); } }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@media (max-width: 980px) {
  .hero, .meta, .proof, .section-head, .split, .prices, .faq, .closing, .subhero, .grid, .form-grid { grid-template-columns: 1fr; }
  .masthead, .subhead { position: static; }
}
@media (max-width: 640px) {
  .frame, .site-footer { width: min(100%, calc(100% - 1.25rem)); }
  .hero { min-height: auto; }
  .row, .step { grid-template-columns: 1fr; }
  .button { width: 100%; }
}