/* Hollow Road — landing styles */

:root {
  --abyss: #0a0c10;
  --slate: #141820;
  --granite: #1e2430;
  --moss: #2d3b32;
  --torch: #e8a43c;
  --ember: #c45c2a;
  --cyan: #4ecdc4;
  --parchment: #f5ede0;
  --ash: #9b9488;
  --border: rgba(232, 164, 60, 0.14);
  --glow-torch: rgba(232, 164, 60, 0.35);
  --glow-cyan: rgba(78, 205, 196, 0.25);
  --font-display: "Cinzel", Georgia, serif;
  --font-body: "Source Serif 4", Georgia, serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;
  --radius: 14px;
  --max: 1120px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--parchment);
  background: var(--abyss);
  background-image:
    radial-gradient(ellipse 80% 50% at 20% -10%, var(--glow-cyan), transparent 55%),
    radial-gradient(ellipse 60% 40% at 90% 10%, var(--glow-torch), transparent 50%),
    linear-gradient(165deg, var(--abyss) 0%, var(--slate) 45%, var(--abyss) 100%);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--cyan);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--torch);
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

/* ── Nav ── */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 12, 16, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 0;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--parchment);
  letter-spacing: 0.02em;
}

.logo-icon {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--torch), var(--ember));
  display: grid;
  place-items: center;
  font-size: 0.95rem;
  box-shadow: 0 0 18px var(--glow-torch);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  list-style: none;
}

.nav-links a {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ash);
}

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

.nav-cta {
  display: none;
}

.menu-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border);
  color: var(--parchment);
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 10px;
  cursor: pointer;
  font-size: 1.25rem;
}

/* ── Buttons ── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--torch), var(--ember));
  color: var(--abyss);
  box-shadow: 0 4px 24px var(--glow-torch);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px var(--glow-torch);
  color: var(--abyss);
}

.btn-ghost {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--parchment);
}

.btn-ghost:hover {
  border-color: var(--cyan);
  color: var(--cyan);
}

/* ── Hero ── */

.hero {
  padding: 4.5rem 0 5rem;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--cyan);
  margin-bottom: 1rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.hero h1 span {
  background: linear-gradient(90deg, var(--torch), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-lead {
  font-size: 1.15rem;
  color: var(--ash);
  max-width: 34rem;
  margin-bottom: 1.75rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2.25rem;
}

.stat-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.stat-pill {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  background: var(--granite);
  border: 1px solid var(--border);
  color: var(--ash);
}

.stat-pill strong {
  color: var(--torch);
}

/* Hero visual */

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 340px;
}

.shaft-card {
  width: 100%;
  max-width: 320px;
  background: var(--granite);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45), 0 0 40px var(--glow-cyan);
  position: relative;
}

.shaft-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: calc(var(--radius) + 1px);
  background: linear-gradient(135deg, rgba(78, 205, 196, 0.3), transparent 40%, rgba(232, 164, 60, 0.2));
  z-index: -1;
  pointer-events: none;
}

.shaft-label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--cyan);
  margin-bottom: 0.75rem;
}

.shaft-bar {
  width: 48px;
  height: 180px;
  background: var(--slate);
  border-radius: 10px;
  border: 1px solid var(--border);
  position: relative;
  margin: 0 auto 1rem;
  overflow: hidden;
}

.shaft-fill {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 0%;
  background: linear-gradient(to top, var(--ember), var(--torch), var(--cyan));
  border-radius: 0 0 9px 9px;
  animation: descend 4s ease-in-out infinite alternate;
}

.shaft-flame {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0%;
  font-size: 1.1rem;
  animation: flame-move 4s ease-in-out infinite alternate;
  filter: drop-shadow(0 0 8px var(--glow-torch));
}

@keyframes descend {
  from { height: 18%; }
  to { height: 72%; }
}

@keyframes flame-move {
  from { bottom: 15%; }
  to { bottom: 65%; }
}

.shaft-sites {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.shaft-site {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--ash);
}

.shaft-site .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  flex-shrink: 0;
}

/* ── Sections ── */

section {
  padding: 4.5rem 0;
}

.section-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--torch);
  margin-bottom: 0.5rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  margin-bottom: 0.75rem;
}

.section-lead {
  color: var(--ash);
  max-width: 42rem;
  margin-bottom: 2.5rem;
}

/* Features */

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.25rem;
}

.feature-card {
  background: var(--granite);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.feature-card:hover {
  border-color: rgba(78, 205, 196, 0.35);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), 0 0 24px var(--glow-cyan);
  transform: translateY(-3px);
}

.feature-card:hover::after {
  opacity: 1;
}

.feature-num {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--torch);
  margin-bottom: 0.65rem;
}

.feature-icon {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.feature-card p {
  font-size: 0.92rem;
  color: var(--ash);
  line-height: 1.55;
}

/* About */

.about-block {
  background: var(--granite);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
}

.about-block p {
  color: var(--ash);
  margin-bottom: 1rem;
}

.about-block p:last-child {
  margin-bottom: 0;
}

.disclaimer {
  margin-top: 1.5rem;
  padding: 1rem 1.25rem;
  border-left: 3px solid var(--torch);
  background: rgba(232, 164, 60, 0.06);
  border-radius: 0 10px 10px 0;
  font-size: 0.9rem;
  color: var(--ash);
}

/* Privacy */

.privacy-content {
  background: var(--granite);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
}

.privacy-content h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--parchment);
  margin: 1.75rem 0 0.6rem;
}

.privacy-content h3:first-of-type {
  margin-top: 0;
}

.privacy-content p,
.privacy-content li {
  color: var(--ash);
  font-size: 0.95rem;
  margin-bottom: 0.65rem;
}

.privacy-content ul {
  padding-left: 1.25rem;
  margin-bottom: 0.75rem;
}

.effective-date {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--cyan);
  margin-bottom: 1.25rem;
}

/* Contact */

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
}

.contact-card {
  background: var(--granite);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.contact-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  margin-bottom: 0.35rem;
}

.contact-card p {
  font-size: 0.88rem;
  color: var(--ash);
  margin-bottom: 0.5rem;
}

.contact-card a {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  word-break: break-all;
}

/* Footer */

.site-footer {
  border-top: 1px solid var(--border);
  padding: 2rem 0;
  margin-top: 2rem;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: 0.82rem;
  color: var(--ash);
}

.footer-links {
  display: flex;
  gap: 1.25rem;
  list-style: none;
}

/* Mobile nav */

@media (max-width: 860px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

  .menu-toggle {
    display: grid;
    place-items: center;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(10, 12, 16, 0.97);
    border-bottom: 1px solid var(--border);
    padding: 1rem 1.5rem 1.25rem;
    gap: 0.85rem;
  }

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

  .nav-cta {
    display: inline-flex;
    font-size: 0.8rem;
    padding: 0.55rem 1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .shaft-fill, .shaft-flame { animation: none; }
  .shaft-fill { height: 45%; }
  .shaft-flame { bottom: 40%; }
  .btn-primary:hover, .feature-card:hover { transform: none; }
}
