@font-face {
  font-family: 'SpaceGroteskVariable';
  src: url('assets/fonts/SpaceGrotesk/SpaceGrotesk-VariableFont_wght.ttf') format('truetype');
  font-weight: 300 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'InterVariable';
  src: url('assets/fonts/Inter/Inter-VariableFont_opsz,wght.ttf') format('truetype');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'InterVariable';
  src: url('assets/fonts/Inter/Inter-Italic-VariableFont_opsz,wght.ttf') format('truetype');
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}

:root {
  --midnight: #0a0612;
  --ink: #130b1f;
  --offwhite: #f6f2ff;
  --lavender: #eae3ff;
  --muted: #b6b0c6;
  --accent: #93a4ff;
  --accent-soft: #c7d2ff;
  --card: rgba(18, 14, 36, 0.75);
  --border: rgba(234, 227, 255, 0.12);
  --shadow: rgba(8, 6, 18, 0.45);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--offwhite);
  font-family: 'InterVariable', 'Inter', 'Manrope', sans-serif;
  line-height: 1.6;
  min-height: 100vh;
  background:
    radial-gradient(circle at 15% 12%, rgba(147, 164, 255, 0.18), transparent 35%),
    radial-gradient(circle at 82% 10%, rgba(18, 14, 36, 0.8), transparent 40%),
    linear-gradient(150deg, #0a0612 0%, #131126 50%, #0a0a18 100%);
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    repeating-linear-gradient(90deg, rgba(246, 242, 255, 0.04) 0 1px, transparent 1px 80px),
    repeating-linear-gradient(0deg, rgba(246, 242, 255, 0.03) 0 1px, transparent 1px 80px);
  opacity: 0.35;
  pointer-events: none;
  z-index: -2;
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 20% 80%, rgba(147, 164, 255, 0.14), transparent 45%),
    radial-gradient(circle at 80% 75%, rgba(199, 210, 255, 0.08), transparent 55%);
  pointer-events: none;
  z-index: -1;
}

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

a {
  color: inherit;
}

.container {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.4rem 0 0.7rem;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
  background: linear-gradient(180deg, rgba(10, 6, 18, 0.92), rgba(10, 6, 18, 0.5));
}

.brand {
  display: grid;
  gap: 0.2rem;
}

.brand__logo {
  height: 46px;
  width: auto;
}

.brand__tag {
  margin: 0.2rem 0 0;
  padding-left: 0.4rem;
  color: var(--muted);
  letter-spacing: 0.08em;
  font-size: 0.8rem;
  text-transform: uppercase;
}

.nav {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(10, 6, 18, 0.8);
}

.nav a {
  color: var(--lavender);
  text-decoration: none;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  font-weight: 600;
  transition: background 0.2s ease, color 0.2s ease;
}

.nav a:hover {
  background: rgba(147, 164, 255, 0.15);
  color: #fff;
}

.nav-toggle {
  display: none;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  color: var(--offwhite);
  border-radius: 12px;
  padding: 0.45rem 0.75rem;
  font-size: 1.1rem;
  cursor: pointer;
}

main {
  display: flex;
  flex-direction: column;
  gap: 2.6rem;
  padding-bottom: 2.6rem;
}

.hero {
  position: relative;
  margin-top: 1.6rem;
  padding: clamp(1.8rem, 3.2vw, 3.6rem);
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(1.2rem, 3vw, 3rem);
  border: 1px solid var(--border);
  background: linear-gradient(140deg, rgba(20, 16, 40, 0.92), rgba(10, 6, 18, 0.94));
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 30px 90px var(--shadow);
}

.hero::before {
  content: '';
  position: absolute;
  inset: -20% 10% auto -15%;
  height: 65%;
  background: radial-gradient(circle at 20% 20%, rgba(147, 164, 255, 0.22), transparent 55%);
  opacity: 0.9;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url('assets/brand/logos/mark_v01_1024.png') 85% 25% / 38% no-repeat;
  opacity: 0.05;
  pointer-events: none;
}

.hero__copy {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.9rem;
}

.hero__panel {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  color: var(--accent-soft);
  margin: 0 0 0.3rem;
}

h1 {
  margin: 0 0 0.4rem;
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  line-height: 1.1;
  font-family: 'SpaceGroteskVariable', 'Space Grotesk', 'Sora', sans-serif;
  background: linear-gradient(120deg, #fff, var(--accent));
  -webkit-background-clip: text;
  color: transparent;
}

h2 {
  margin: 0.1rem 0 0.6rem;
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  font-family: 'SpaceGroteskVariable', 'Space Grotesk', 'Sora', sans-serif;
}

h3 {
  margin: 0;
  font-size: 1.35rem;
  font-family: 'SpaceGroteskVariable', 'Space Grotesk', 'Sora', sans-serif;
}

h4 {
  margin: 0 0 0.3rem;
  font-size: 1.05rem;
  font-weight: 700;
}

.lede,
.lead {
  color: var(--muted);
  margin: 0 0 1.1rem;
  max-width: 40rem;
}

.lead.small {
  font-size: 0.95rem;
}

.lead.tight {
  margin-bottom: 0.6rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin: 0.2rem 0 0.4rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.65rem 1.2rem;
  border-radius: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
  border: 1px solid transparent;
  font: inherit;
  cursor: pointer;
}

.btn.primary {
  background: linear-gradient(120deg, var(--accent), #778bff);
  color: #0a0612;
  box-shadow: 0 16px 36px rgba(147, 164, 255, 0.35);
}

.btn.primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 20px 42px rgba(147, 164, 255, 0.45);
}

.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.btn.primary:disabled:hover,
.btn.ghost:disabled:hover {
  transform: none;
  box-shadow: none;
}

.btn.ghost {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--border);
  color: var(--offwhite);
}

.btn.ghost:hover {
  background: rgba(147, 164, 255, 0.12);
}

.btn.fullwidth {
  width: 100%;
  margin-top: 0.75rem;
  text-align: center;
}

.hero__actions {
  display: grid;
  gap: 0.6rem;
  margin-top: 0.5rem;
}

.hero__meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.65rem;
  margin-top: 0.9rem;
}

.chip {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.6rem;
  align-items: center;
  padding: 0.65rem 0.85rem;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
}

.chip__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 18px rgba(147, 164, 255, 0.5);
}

.chip__eyebrow {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.7rem;
  color: var(--muted);
}

.chip__text {
  margin: 0;
  color: var(--offwhite);
  font-weight: 600;
  line-height: 1.4;
}

.panel-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: center;
  padding: 1.2rem;
  border-radius: 18px;
  border: 1px solid rgba(147, 164, 255, 0.22);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 16px 42px rgba(10, 6, 18, 0.4);
  position: relative;
  overflow: hidden;
}

.panel-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(147, 164, 255, 0.2), transparent 55%);
  opacity: 0.8;
  pointer-events: none;
}

.panel-card__mark {
  width: 72px;
  height: auto;
  filter: drop-shadow(0 8px 24px rgba(147, 164, 255, 0.35));
  animation: float 6s ease-in-out infinite;
}

.badge__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.7rem;
  color: var(--accent-soft);
  margin: 0 0 0.25rem;
}

.badge__body {
  margin: 0.35rem 0 0.9rem;
  color: var(--muted);
}

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

.meta span {
  padding: 0.35rem 0.7rem;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: rgba(20, 16, 40, 0.7);
  font-size: 0.9rem;
}

.hero__art {
  margin: 0;
  padding: 0.8rem;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: rgba(12, 10, 30, 0.7);
  text-align: center;
}

.hero__art img {
  width: min(100%, 300px);
  margin: 0 auto;
  border-radius: 16px;
  border: 1px solid rgba(147, 164, 255, 0.25);
  box-shadow: 0 20px 40px rgba(8, 6, 18, 0.45);
}

.hero__art figcaption {
  margin-top: 0.6rem;
  font-size: 0.85rem;
  color: var(--muted);
}

.panel {
  padding: 2rem 0;
  position: relative;
  z-index: 1;
}

.panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 40%, rgba(147, 164, 255, 0.08), transparent 45%),
    radial-gradient(circle at 80% 20%, rgba(246, 242, 255, 0.08), transparent 50%);
  opacity: 0.7;
  pointer-events: none;
  z-index: -1;
}

.section-heading {
  margin-bottom: 1.6rem;
  position: relative;
}

.section-heading::after {
  content: '';
  display: block;
  width: 88px;
  height: 2px;
  background: linear-gradient(90deg, rgba(147, 164, 255, 0.7), rgba(234, 227, 255, 0));
  margin-top: 0.9rem;
  opacity: 0.7;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.25rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(8, 6, 18, 0.35);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.card::before {
  content: '';
  position: absolute;
  inset: -30% auto auto -30%;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(147, 164, 255, 0.15), transparent 60%);
  opacity: 0.8;
  pointer-events: none;
}

.card__banner {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid var(--border);
  box-shadow: 0 16px 36px rgba(8, 6, 18, 0.35);
  margin-bottom: 0.85rem;
  position: relative;
  z-index: 1;
}

.card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.3rem;
}

.card__actions {
  display: grid;
  gap: 0.55rem;
  margin-top: 0.9rem;
}

.card p {
  margin: 0 0 0.75rem;
  color: var(--muted);
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(147, 164, 255, 0.35);
  box-shadow: 0 18px 48px rgba(8, 6, 18, 0.45);
}

.pill {
  padding: 0.45rem 0.75rem;
  border: 1px solid rgba(147, 164, 255, 0.35);
  border-radius: 999px;
  color: var(--lavender);
  background: rgba(147, 164, 255, 0.12);
  font-size: 0.9rem;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tag-row--content {
  margin-top: 0.85rem;
  padding-top: 0.75rem;
  border-top: 1px dashed rgba(234, 227, 255, 0.16);
  gap: 0.4rem;
}

.tag {
  display: inline-block;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  font-size: 0.85rem;
  color: var(--lavender);
}

.tag--content {
  padding: 0.28rem 0.55rem;
  border-radius: 10px;
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  background: rgba(10, 6, 18, 0.6);
  border-color: rgba(147, 164, 255, 0.18);
  color: rgba(246, 242, 255, 0.92);
}

.contact {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.5rem;
  align-items: start;
}

.contact__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin: 1rem 0 0.5rem;
}

.contact__card {
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.25rem;
  background: rgba(10, 6, 18, 0.75);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.contact__card ul {
  margin: 0;
  padding-left: 1rem;
  color: var(--muted);
  line-height: 1.7;
}

.contact__memo {
  margin-top: 1rem;
  padding-top: 0.9rem;
  border-top: 1px dashed rgba(234, 227, 255, 0.18);
}

.contact__memo p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.8rem 0 2.2rem;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.95rem;
  flex-wrap: wrap;
}

.footer img {
  height: 28px;
  width: auto;
  vertical-align: middle;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.footer__link {
  color: var(--lavender);
  text-decoration: none;
}

.footer__link:hover {
  text-decoration: underline;
}

.footer__credit {
  color: var(--muted);
  text-decoration: none;
}

.footer__credit:hover {
  color: var(--offwhite);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

.hero__copy > * {
  animation: fadeUp 0.7s ease both;
}

.hero__copy > *:nth-child(1) {
  animation-delay: 0.05s;
}

.hero__copy > *:nth-child(2) {
  animation-delay: 0.1s;
}

.hero__copy > *:nth-child(3) {
  animation-delay: 0.15s;
}

.hero__copy > *:nth-child(4) {
  animation-delay: 0.2s;
}

.hero__copy > *:nth-child(5) {
  animation-delay: 0.25s;
}

.card-grid > .card {
  animation: fadeUp 0.7s ease both;
}

.card-grid > .card:nth-child(1) {
  animation-delay: 0.1s;
}

.card-grid > .card:nth-child(2) {
  animation-delay: 0.2s;
}

.card-grid > .card:nth-child(3) {
  animation-delay: 0.3s;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
  }

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

  .topbar {
    flex-wrap: wrap;
  }

  .nav {
    width: auto;
    flex-direction: column;
    align-items: flex-start;
    display: none;
    padding: 0.6rem 0.8rem;
    border-radius: 16px;
    background: rgba(10, 6, 18, 0.95);
    position: absolute;
    right: 0;
    top: calc(100% + 8px);
    max-width: min(420px, calc(100% - 1.5rem));
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
  }

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

  .nav-toggle {
    display: inline-flex;
  }
}

@media (max-width: 680px) {
  .hero {
    padding: 1.5rem;
  }

  .cta-row {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-row .btn {
    width: 100%;
    justify-content: center;
    padding: 0.9rem 1rem;
  }

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

@media (min-width: 1200px) {
  .container {
    width: min(80vw, 1700px);
  }

  .card__banner {
    height: 190px;
  }
}
