/* Dusklight — landing styles */

:root {
  --black: #000000;
  --orange: #FF5500;
  --white: #FFFFFF;
  --burnt: #8B3A00;
  --indigo: #1E213A;
  --violet: #6C5B7B;
  --gold: #F8B195;
  --rose: #C97B84;
  --slate: #2C3E50;
  --lavender: #9B8EA8;
  --parchment: #F4F0EB;
  --border: rgba(255, 85, 0, 0.16);
  --glow-orange: rgba(255, 85, 0, 0.38);
  --glow-violet: rgba(108, 91, 123, 0.32);
  --glow-gold: rgba(248, 177, 149, 0.25);
  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "Montserrat", system-ui, sans-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.02rem;
  font-weight: 500;
  line-height: 1.65;
  color: var(--parchment);
  background: var(--black);
  background-image:
    radial-gradient(ellipse 75% 55% at 15% -5%, var(--glow-violet), transparent 55%),
    radial-gradient(ellipse 55% 45% at 85% 5%, var(--glow-orange), transparent 50%),
    radial-gradient(ellipse 40% 30% at 50% 100%, var(--glow-gold), transparent 60%),
    linear-gradient(170deg, var(--black) 0%, var(--indigo) 42%, var(--black) 100%);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

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

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

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(0, 0, 0, 0.86);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-right: auto;
}

.logo-sun {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--orange), var(--gold));
  box-shadow: 0 0 14px var(--glow-orange);
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 1.5rem;
}

.nav-links a {
  color: var(--lavender);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

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

.menu-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border);
  color: var(--parchment);
  font-size: 1.2rem;
  padding: 0.3rem 0.55rem;
  border-radius: 8px;
  cursor: pointer;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.72rem 1.35rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(135deg, var(--orange), var(--burnt));
  color: var(--white);
  box-shadow: 0 4px 22px var(--glow-orange);
}

.btn-primary:hover {
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 6px 28px var(--glow-orange);
}

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

.btn-ghost:hover {
  color: var(--white);
  border-color: rgba(248, 177, 149, 0.4);
}

.nav-cta {
  font-size: 0.82rem;
  padding: 0.55rem 1rem;
}

/* ── Hero ── */

.hero {
  padding: 4.5rem 0 5rem;
}

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

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

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

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

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

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

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

.stat-pill {
  font-size: 0.78rem;
  color: var(--lavender);
  background: rgba(30, 33, 58, 0.7);
  border: 1px solid var(--border);
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
}

.stat-pill strong {
  color: var(--gold);
  font-weight: 700;
}

/* Hero visual */

.sunset-card {
  background: rgba(30, 33, 58, 0.65);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 1.75rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.sunset-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--lavender);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.sunset-ring {
  position: relative;
  width: 160px;
  height: 160px;
  margin: 0 auto 1.5rem;
}

.ring-svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.ring-track {
  fill: none;
  stroke: rgba(155, 142, 168, 0.2);
  stroke-width: 6;
}

.ring-progress {
  fill: none;
  stroke: url(#ringGrad);
  stroke-width: 6;
  stroke-linecap: round;
  stroke-dasharray: 327;
  stroke-dashoffset: 98;
  filter: drop-shadow(0 0 8px var(--glow-orange));
}

.ring-center {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.ring-time {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
}

.ring-phase {
  font-size: 0.75rem;
  color: var(--gold);
  margin-top: 0.15rem;
}

.sunset-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.6rem;
}

.sunset-stat {
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 85, 0, 0.1);
  border-radius: 10px;
  padding: 0.65rem 0.5rem;
  text-align: center;
}

.sunset-stat .label {
  display: block;
  font-size: 0.65rem;
  color: var(--lavender);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.2rem;
}

.sunset-stat .value {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--gold);
  font-weight: 500;
}

/* ── Sections ── */

section {
  padding: 4.5rem 0;
}

section:nth-child(even) {
  background: rgba(30, 33, 58, 0.35);
}

.section-label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--orange);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
  max-width: 36rem;
}

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

.reply-note {
  margin-top: -1.5rem;
  font-size: 0.9rem;
}

/* ── Features ── */

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.feature-card {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.feature-card:hover {
  border-color: rgba(255, 85, 0, 0.35);
  box-shadow: 0 8px 32px rgba(255, 85, 0, 0.08);
}

.feature-num {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--orange);
  margin-bottom: 0.75rem;
}

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

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

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

/* ── About ── */

.about-block p {
  color: var(--lavender);
  margin-bottom: 1.1rem;
  max-width: 44rem;
}

.disclaimer {
  margin-top: 1.5rem;
  padding: 1.1rem 1.25rem;
  background: rgba(139, 58, 0, 0.2);
  border: 1px solid rgba(255, 85, 0, 0.25);
  border-radius: var(--radius);
  font-size: 0.9rem;
  color: var(--parchment);
  max-width: 44rem;
}

.disclaimer strong {
  color: var(--gold);
}

/* ── Privacy ── */

.privacy-content {
  max-width: 44rem;
}

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

.effective-date {
  font-family: var(--font-mono);
  font-size: 0.82rem !important;
  color: var(--gold) !important;
  margin-bottom: 1.25rem !important;
}

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

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

.privacy-content li {
  margin-bottom: 0.4rem;
}

/* ── Contact ── */

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

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

.contact-card h3 {
  font-family: var(--font-display);
  color: var(--white);
  margin-bottom: 0.5rem;
}

.contact-card p {
  font-size: 0.9rem;
  color: var(--lavender);
  margin-bottom: 0.75rem;
}

.contact-card .mono {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--gold);
  word-break: break-all;
}

/* ── Footer ── */

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

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

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

.footer-links a {
  font-size: 0.85rem;
  color: var(--lavender);
}

.footer-links a:hover {
  color: var(--gold);
}

/* ── Responsive ── */

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

  .hero-visual {
    order: -1;
    max-width: 320px;
    margin: 0 auto;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 640px) {
  .menu-toggle {
    display: block;
  }

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

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

  .nav-cta {
    display: none;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 3rem 0 3.5rem;
  }

  section {
    padding: 3rem 0;
  }
}
