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

:root {
  --blue3:        #3d5a80;
  --blue2:        #98c1d9;
  --blue1:        #e0fbfc;
  --burnt-sienna: #ee6c4d;
  --blue4:        #293241;
  --Pgold:        #FFBD1C;
  --Pcrimson:     #831618;
  --chatGreen:    #21C25F;

  --bg:      var(--blue1);
  --ink:     var(--blue4);
  --ink-dim: rgba(41,50,65,0.45);
  --primary: var(--blue3);
  --accent:  var(--Pgold);
  --punch:   var(--burnt-sienna);
  --dark:    var(--blue4);
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'DM Mono', monospace;
  overflow-x: hidden;
}

/* ─── NAV ────────────────────────────────────────────── */

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2.5rem;
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--bg);
  border-bottom: 2px solid var(--primary);
  flex-wrap: wrap;
  gap: 1rem;
}

.logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  letter-spacing: 0.08em;
  color: var(--ink);
  text-decoration: none;
}

nav a { color: var(--ink-dim); text-decoration: none; }

.nav-links { display: flex; gap: 2rem; }

.nav-links a {
  font-size: 1rem;
  color: var(--ink-dim);
  text-decoration: none;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.18s ease;
}

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


.hero {
  min-height: 10vh;
  display: grid;
  grid-template-rows: 1fr auto;
  padding: 8rem 2.5rem 3rem;
  position: relative;
  overflow: hidden;
}

.hero-shape {
  position: absolute;
  top: -5vw; right: -8vw;
  width: 52vw; height: 72vh;
  background: var(--primary);
  clip-path: polygon(15% 0%, 100% 0%, 100% 100%, 0% 100%);
  z-index: 0;
}

.hero-circle {
  position: absolute;
  bottom: 12vh; right: 18vw;
  width: 14vw; height: 14vw;
  border-radius: 50%;
  background: var(--accent);
  z-index: 1;
  animation: float 6s ease-in-out infinite alternate;
}

@keyframes float {
  from { transform: translateY(0) rotate(0deg); }
  to   { transform: translateY(-20px) rotate(8deg); }
}

.hero-content { position: relative; z-index: 2; }

.eyebrow {
  font-size: 1rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.eyebrow::before {
  content: '';
  display: block;
  width: 2rem; height: 1.5px;
  background: var(--primary);
}

h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(4.5rem, 12vw, 12rem);
  line-height: 0.88;
  letter-spacing: -0.01em;
  color: var(--ink);
}

h1 em {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  color: var(--punch);
}

h1 .outlined {
  color: transparent;
  -webkit-text-stroke: 2px var(--bg);
}

.hero-sub {
  margin-top: 2.5rem;
  max-width: 460px;
  font-size: 1rem;
  line-height: 1.85;
  color: var(--ink-dim);
}

.hero-sub strong { color: var(--ink); font-weight: 500; }

/* ─── FOOTER ─────────────────────────────────────────── */

footer {
  width: 100%;
  padding: 1.5rem 2.5rem;
  border-top: 2px solid var(--primary);
  background: var(--bg);
}

footer nav {
  width: 100%;
  padding: 0;
  position: static;
  border-bottom: none;
}

/* .nav-links styles cover both nav and footer link rows */

.footer-disclaimer {
  margin: 1rem auto 0;
  max-width: clamp(480px, 70vw, 800px);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ink-dim);
}

/* ─── SCROLL REVEAL ──────────────────────────────────── */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

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

/* ─── FAQ ────────────────────────────────────────────── */

.faq-hero {
/*   padding: 10rem 2.5rem 5rem; <= old Claude styling with too much padding */ 
  padding: 5rem 2.5rem 0.5rem;
  border-top: 0.5px solid var(--primary);
}

.faq-hero h1 {
  font-size: clamp(3.5rem, 10vw, 9rem);
}

.faq-hero .hero-sub {
  margin-top: 1.5rem;
}

.faq-section {
  padding: 6rem 2.5rem;
  max-width: 860px;
  margin: 0 auto;
}

details {
  border-bottom: 1.5px solid rgba(41,50,65,0.15);
}

details:first-of-type {
  border-top: 1.5px solid rgba(41,50,65,0.15);
}

summary {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.04em;
  color: var(--ink);
  padding: 1.4rem 0;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: color 0.18s ease;
}

summary::-webkit-details-marker { display: none; }

summary::after {
  content: '+';
  font-family: 'DM Mono', monospace;
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--primary);
  flex-shrink: 0;
  transition: transform 0.22s ease, color 0.18s ease;
}

details[open] summary::after {
  transform: rotate(45deg);
  color: var(--punch);
}

details[open] summary { color: var(--primary); }

.faq-body {
  padding: 0 0 1.8rem;
  font-size: 1rem;
  line-height: 1.9;
  color: var(--ink-dim);
}

.faq-body p { margin-bottom: 0.75rem; }
.faq-body p:last-child { margin-bottom: 0; }

.faq-body a {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.faq-body a:hover { color: var(--punch); }

.faq-source {
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-dim);
  opacity: 0.6;
  margin-top: 0.75rem;
}