:root {
  --bg: #090b10;
  --bg-soft: #10141c;
  --panel: rgba(255,255,255,0.035);
  --text: #f3f1eb;
  --muted: #a6adb8;
  --line: rgba(255,255,255,0.12);
  --accent: #b9d7ff;
  --max: 1180px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 15% 15%, rgba(83,119,170,.16), transparent 32%),
    radial-gradient(circle at 85% 35%, rgba(85,102,127,.12), transparent 28%),
    linear-gradient(180deg, #080a0e 0%, #0b0e14 100%);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  line-height: 1.65;
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .025;
  background-image:
    repeating-radial-gradient(circle at 0 0, transparent 0, #fff 1px, transparent 1px, transparent 3px);
  background-size: 9px 9px;
  mix-blend-mode: soft-light;
}

a { color: inherit; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  padding: 1.2rem clamp(1.2rem, 4vw, 3rem);
  background: rgba(9,11,16,.74);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,.07);
}

.brand {
  text-decoration: none;
  font-weight: 700;
  letter-spacing: .18em;
  font-size: .9rem;
}

nav {
  display: flex;
  gap: 1.5rem;
}

nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: .9rem;
}

nav a:hover { color: var(--text); }

.hero {
  min-height: 84vh;
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(5rem, 10vw, 9rem) clamp(1.2rem, 5vw, 4rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.eyebrow,
.section-label,
.kicker {
  letter-spacing: .24em;
  text-transform: uppercase;
  font-size: .72rem;
  color: var(--muted);
}

.hero h1 {
  margin: .8rem 0 1.6rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.3rem, 9vw, 8.8rem);
  font-weight: 400;
  line-height: .9;
  letter-spacing: -.045em;
}

.hero h1 span,
.hero h1 em {
  display: block;
}

.hero h1 em {
  margin: .35em 0 .25em 1.4em;
  color: var(--muted);
  font-size: .28em;
  font-weight: 400;
  letter-spacing: .08em;
}

.hero-copy {
  max-width: 650px;
  margin: 0 0 2rem;
  color: #c7ccd4;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.15rem, 2vw, 1.55rem);
}

.button {
  display: inline-block;
  padding: .85rem 1.15rem;
  border: 1px solid rgba(185,215,255,.5);
  color: var(--accent);
  text-decoration: none;
  letter-spacing: .09em;
  text-transform: uppercase;
  font-size: .76rem;
  transition: .2s ease;
}

.button:hover {
  background: rgba(185,215,255,.08);
  border-color: var(--accent);
}

.signal-line {
  display: flex;
  gap: 7px;
  align-items: center;
  height: 36px;
  margin-bottom: 2rem;
}

.signal-line span {
  width: 2px;
  background: var(--accent);
  opacity: .7;
  animation: pulse 1.8s ease-in-out infinite;
}

.signal-line span:nth-child(1) { height: 8px; animation-delay: -.1s; }
.signal-line span:nth-child(2) { height: 25px; animation-delay: -.4s; }
.signal-line span:nth-child(3) { height: 14px; animation-delay: -.8s; }
.signal-line span:nth-child(4) { height: 32px; animation-delay: -.2s; }
.signal-line span:nth-child(5) { height: 5px; animation-delay: -.6s; }

@keyframes pulse {
  0%,100% { transform: scaleY(.55); opacity: .28; }
  50% { transform: scaleY(1); opacity: .9; }
}

.panel {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 7rem) clamp(1.2rem, 5vw, 4rem);
  display: grid;
  grid-template-columns: minmax(120px, 1fr) minmax(0, 3fr);
  gap: 3rem;
  border-top: 1px solid var(--line);
}

.section-content {
  max-width: 760px;
}

.section-content h2 {
  margin: 0 0 1rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 400;
  letter-spacing: -.03em;
}

.section-content p {
  font-size: 1.05rem;
  color: #d2d6dc;
}

.muted { color: var(--muted) !important; }
.small { font-size: .88rem !important; }

.email-link {
  color: var(--accent);
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

footer {
  max-width: var(--max);
  margin: 0 auto;
  padding: 2rem clamp(1.2rem, 5vw, 4rem) 3rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  font-size: .8rem;
}

@media (max-width: 700px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: .7rem;
  }

  nav { gap: 1rem; }

  .hero { min-height: 76vh; }

  .panel {
    grid-template-columns: 1fr;
    gap: 1.4rem;
  }

  footer {
    flex-direction: column;
    gap: .4rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .signal-line span { animation: none; }
}
