@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Serif:wght@400;500;600&family=Space+Grotesk:wght@400;500;600&display=swap");

html {
  scroll-behavior: smooth;
}

:root {
  --bg: #0b0d10;
  --bg-soft: #101621;
  --ink: #f1f5ff;
  --muted: #a8b3c4;
  --line: #1c2a3f;
  --accent: #3a7bd5;
  --accent-soft: rgba(58, 123, 213, 0.18);
  --font-sans: "Space Grotesk", "Segoe UI", "Tahoma", sans-serif;
  --font-serif: "IBM Plex Serif", "Times New Roman", serif;
  --radius: 18px;
  --shadow: 0 28px 60px rgba(0, 0, 0, 0.35);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--bg);
  min-height: 100vh;
  line-height: 1.7;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: -10vh -10vw;
  z-index: -2;
  pointer-events: none;
}

body::before {
  background: radial-gradient(circle at 20% 20%, rgba(14, 24, 38, 0.95), transparent 55%),
    radial-gradient(circle at 80% 0%, rgba(18, 30, 48, 0.8), transparent 45%),
    radial-gradient(circle at 60% 80%, rgba(10, 16, 26, 0.95), transparent 60%);
}

body::after {
  background: linear-gradient(180deg, rgba(11, 13, 16, 0.92) 0%, rgba(11, 13, 16, 1) 65%);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1120px, 90vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(10, 12, 15, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 18px 0;
}

.logo {
  font-family: var(--font-serif);
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.nav {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: flex-end;
  font-size: 0.9rem;
  color: var(--muted);
}

.nav a {
  position: relative;
  padding-bottom: 6px;
  transition: color 0.3s ease;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s ease;
}

.nav a:hover,
.nav a.active {
  color: var(--ink);
}

.nav a:hover::after,
.nav a.active::after {
  width: 100%;
}

.hero {
  padding: 110px 0 70px;
  border-bottom: 1px solid var(--line);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.35em;
  font-size: 0.7rem;
  color: var(--muted);
  margin-bottom: 18px;
}

.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  margin: 0 0 20px;
  line-height: 1.1;
}

.hero p {
  font-size: 1.05rem;
  color: var(--muted);
  margin: 0 0 28px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  color: var(--ink);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  background: var(--accent-soft);
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.button:hover {
  background: var(--accent);
  color: #07111f;
  transform: translateY(-2px);
}

.button.secondary {
  border-color: var(--line);
  color: var(--muted);
  background: transparent;
}

.button.secondary:hover {
  background: var(--line);
  color: var(--ink);
}

.section {
  padding: 92px 0;
  border-bottom: 1px solid var(--line);
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  margin: 0 0 18px;
}

.section p {
  color: var(--muted);
  margin: 0 0 20px;
}

.split {
  display: grid;
  gap: 28px;
  grid-template-columns: 1fr;
}

.grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.card {
  padding: 24px 26px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  border-left: 5px solid var(--accent);
  background: rgba(14, 20, 30, 0.82);
}

.card h3 {
  margin: 0 0 4px;
  font-family: var(--font-serif);
  font-size: 1.2rem;
}

.card-sub {
  font-size: 0.78rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0 0 10px;
}

.card p {
  margin: 0;
  color: var(--muted);
}

.list {
  display: grid;
  gap: 12px;
  padding-left: 16px;
  margin: 16px 0 0;
  color: var(--muted);
}

.callout {
  padding: 26px;
  border-radius: var(--radius);
  border: 1px solid var(--accent);
  background: rgba(58, 123, 213, 0.12);
}

.callout p {
  margin: 0;
  color: var(--ink);
}

.media-panel {
  padding: 0;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(12, 16, 24, 0.95);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.media-panel img {
  width: 100%;
  height: auto;
  display: block;
  background: rgba(9, 11, 14, 0.8);
  max-height: 350px;
  object-fit: cover;
}

.media-caption {
  padding: 16px 20px 20px;
  color: var(--muted);
  font-size: 0.92rem;
}

.band {
  padding: 32px 0 0;
}

.band .media-panel {
  margin-top: 24px;
}

.story-section {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: flex-end;
  padding: 100px 0 80px;
  background-size: cover;
  background-position: center;
  border-bottom: 1px solid var(--line);
}

.story-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(7, 10, 14, 0.85) 0%, rgba(7, 10, 14, 0.4) 55%, rgba(7, 10, 14, 0.1) 100%);
  z-index: 0;
}

.story-section .container {
  position: relative;
  z-index: 1;
}

.story-content {
  max-width: 620px;
  background: rgba(8, 12, 18, 0.72);
  border: 1px solid var(--line);
  border-left: 4px solid var(--accent);
  padding: 28px 30px;
}

.story-content h2,
.story-content h3 {
  margin-top: 0;
}

.story-content p {
  color: var(--muted);
}

.story-content .list {
  margin-top: 12px;
}

.tag {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--accent);
  margin-bottom: 12px;
}

.quote {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  margin: 0;
  color: var(--ink);
}

.footer {
  padding: 50px 0 70px;
}

.footer-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  color: var(--muted);
  font-size: 0.9rem;
}

.footer a {
  color: var(--muted);
}

.footer a:hover {
  color: var(--ink);
}

.footer-legal {
  margin-top: 12px;
  font-size: 0.85rem;
  color: var(--muted);
}

.footer-legal a {
  color: var(--muted);
}

.footer-legal a:hover {
  color: var(--ink);
}

.footer-meta-group {
  display: grid;
  gap: 12px;
}

.footer-meta-label {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: var(--muted);
}

.social-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.social-links a {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(9, 13, 19, 0.9);
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.social-links a:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}

.social-links svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.form-section {
  background: rgba(10, 14, 20, 0.95);
}

.form-wrap {
  display: grid;
  gap: 32px;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  align-items: start;
}

.form-card {
  border: 1px solid var(--line);
  border-left: 4px solid var(--accent);
  background: rgba(12, 16, 24, 0.85);
  padding: 28px;
  border-radius: var(--radius);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.form-block {
  margin-top: 18px;
}

.form-card label {
  display: block;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}

.form-card input,
.form-card textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: rgba(8, 12, 18, 0.85);
  color: var(--ink);
  font-family: var(--font-sans);
}

.form-card textarea {
  min-height: 150px;
  resize: vertical;
}

.form-card input:focus,
.form-card textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 1px rgba(58, 123, 213, 0.35);
}

.form-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 20px;
}

.btn-primary {
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #07111f;
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  cursor: pointer;
}

.btn-primary:hover {
  filter: brightness(1.05);
}

.form-status {
  font-size: 0.9rem;
  color: var(--muted);
}

.form-footnote {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.85rem;
}

.reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.card {
  transition: border-left-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.35);
}

.conn-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  display: grid;
  gap: 8px;
}

.conn-list li {
  font-size: 0.87rem;
  color: var(--muted);
  padding: 9px 13px;
  border-radius: 9px;
  background: rgba(10, 14, 22, 0.55);
  border: 1px solid var(--line);
  line-height: 1.5;
}

.conn-list li strong {
  color: var(--ink);
  font-weight: 500;
}

.domain-tiles {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(175px, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.domain-tile {
  padding: 20px 20px 22px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(14, 20, 30, 0.82);
  transition: border-color 0.2s ease, transform 0.2s ease;
  text-decoration: none;
  display: block;
}

.domain-tile:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}

.domain-tile-name {
  font-size: 0.66rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--muted);
  margin-bottom: 8px;
}

.domain-tile h4 {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  margin: 0 0 6px;
  color: var(--ink);
}

.domain-tile p {
  font-size: 0.79rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.5;
}

.persona-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  margin-top: 32px;
}

.persona-card {
  padding: 24px 26px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(14, 20, 30, 0.82);
  transition: border-color 0.2s ease;
}

.persona-card:hover {
  border-color: rgba(58, 123, 213, 0.4);
}

.persona-card h3 {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  margin: 0 0 10px;
}

.persona-card p {
  font-size: 0.87rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.55;
}

.section-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  border-radius: 6px;
  transition: background 0.2s ease;
}

.nav-toggle:hover {
  background: rgba(255, 255, 255, 0.06);
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease, width 0.3s ease;
  transform-origin: center;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
  width: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 720px) {
  .nav-toggle {
    display: flex;
  }

  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(10, 12, 15, 0.97);
    backdrop-filter: blur(12px);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 16px 0;
    gap: 0;
  }

  .nav.is-open {
    display: flex;
  }

  .nav a {
    padding: 13px 24px;
    font-size: 1rem;
  }

  .nav a::after {
    display: none;
  }

  .nav a:hover,
  .nav a.active {
    background: rgba(58, 123, 213, 0.1);
    color: var(--ink);
  }

  .site-header {
    position: sticky;
  }

  .hero {
    padding-top: 80px;
  }

  .form-wrap {
    grid-template-columns: 1fr;
  }

  .domain-tiles {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  }
}
