@font-face {
  font-family: Inter;
  src: url("../assets/fonts/inter-regular.ttf") format("truetype");
  font-weight: 400 500;
  font-display: swap;
}
@font-face {
  font-family: Inter;
  src: url("../assets/fonts/inter-bold.ttf") format("truetype");
  font-weight: 600 900;
  font-display: swap;
}
:root {
  color-scheme: dark;
  --bg: #0e0b12;
  --panel: #17121dee;
  --line: #c5a0ef29;
  --ink: #f4eef7;
  --muted: #b8adbf;
  --purple: #c399f7;
  --pink: #f0b3d2;
  --warm: #eee1bd;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}
body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--ink);
  font:
    15px/1.6 Inter,
    Arial,
    sans-serif;
  isolation: isolate;
}
body:before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -3;
  background:
    linear-gradient(#09070d70, #100a169c),
    url("../assets/images/background.webp") center/cover no-repeat;
  pointer-events: none;
}
.smoke-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  pointer-events: none;
  opacity: 0.86;
}
button,
input,
select {
  font: inherit;
}
button,
a,
input,
select {
  -webkit-tap-highlight-color: transparent;
}
button,
a {
  touch-action: manipulation;
}
button {
  cursor: pointer;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  color: inherit;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
h1,
h2,
h3,
p {
  margin: 0;
}
h1,
h2,
h3 {
  line-height: 1.15;
}
h1 {
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  letter-spacing: -0.05em;
}
h2 {
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  letter-spacing: -0.035em;
}
h3 {
  font-size: 1rem;
}
button,
input,
select,
a {
  outline-offset: 5px;
}
:focus-visible {
  outline: 2px solid var(--purple);
}
[hidden] {
  display: none !important;
}
.shell {
  width: min(1320px, calc(100% - 80px));
  margin-inline: auto;
}
.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;
}
.skip-link {
  position: fixed;
  top: 8px;
  left: 12px;
  z-index: 100;
  background: var(--purple);
  color: var(--bg);
  padding: 12px;
  transform: translateY(-160%);
}
.skip-link:focus {
  transform: none;
}
.eyebrow {
  font-size: 0.69rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--purple);
}
.icon {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: none;
}
.site-header {
  border-bottom: 1px solid var(--line);
  background: #100b14b8;
  backdrop-filter: blur(16px);
}
.nav-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 64px;
  gap: 24px;
}
.header-note {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  color: var(--muted);
}
.primary-nav {
  display: flex;
  align-items: center;
  gap: 34px;
}
.primary-nav a {
  font-size: 0.74rem;
  letter-spacing: 0.07em;
  font-weight: 600;
  padding: 21px 0;
  position: relative;
}
.primary-nav a[aria-current="page"]:after {
  content: "";
  position: absolute;
  height: 2px;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--purple);
}
.primary-nav a[aria-current="page"] {
  color: var(--purple);
}
.header-contact {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  color: var(--muted);
}
.brand-stage {
  text-align: center;
  padding: 28px 20px 26px;
}
.brand-stage img {
  width: min(390px, 77vw);
  height: auto;
  margin: 0 auto;
  filter: drop-shadow(0 0 25px #9b4dc31f);
}
.brand-stage p {
  font-size: 0.68rem;
  color: #d4c8db;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  margin-top: 7px;
}
.page-brand {
  display: block;
  width: 220px;
  margin: 32px auto 0;
}
.button {
  border: 1px solid var(--line);
  background: #21162c;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 46px;
  padding: 11px 21px;
  border-radius: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  transition:
    background 0.2s,
    transform 0.2s,
    border-color 0.2s;
}
.button:hover {
  background: #352241;
  border-color: #d2a8f47a;
}
.button-primary {
  background: var(--purple);
  border-color: var(--purple);
  color: #180e23;
}
.button-primary:hover {
  background: #d5b5fa;
  border-color: #d5b5fa;
}
.text-link {
  color: var(--purple);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.85rem;
}
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
  margin-bottom: 22px;
}
.section-head .eyebrow {
  margin-bottom: 9px;
}
.section-head > p {
  font-size: 0.78rem;
  color: var(--muted);
}
.page-intro {
  text-align: center;
  padding: 50px 0 42px;
}
.page-intro .eyebrow {
  margin-bottom: 17px;
}
.page-intro > p:last-child {
  max-width: 550px;
  margin: 22px auto 0;
  color: var(--muted);
}
.site-footer {
  margin-top: 70px;
  border-top: 1px solid var(--line);
  background: #0d0912d9;
}
.footer-main {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  padding: 38px 0;
}
.footer-brand {
  width: 185px;
}
.footer-main p {
  color: var(--muted);
  font-size: 0.76rem;
  margin-top: 12px;
}
.footer-main h2 {
  font-size: 0.69rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 14px;
  color: var(--purple);
}
.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.8rem;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid var(--line);
  padding: 17px 0;
  color: #9c8eaa;
  font-size: 0.68rem;
}
.notice {
  color: var(--muted);
  font-size: 0.73rem;
}
.error {
  color: #ffb4c4;
  font-size: 0.8rem;
}
.empty-state {
  text-align: center;
  padding: 55px 20px;
  background: var(--panel);
  border: 1px dashed var(--line);
  border-radius: 8px;
}
.empty-state h2 {
  font-size: 1.5rem;
}
.empty-state p {
  color: var(--muted);
  margin: 14px 0 24px;
}
.no-js {
  padding: 22px;
  background: #21182c;
  text-align: center;
}
body.modal-open {
  overflow: hidden;
}
@media (max-width: 1000px) {
  .shell {
    width: calc(100% - 48px);
  }
  .header-note {
    font-size: 0.58rem;
    letter-spacing: 0.1em;
  }
  .primary-nav {
    gap: 25px;
  }
  .header-contact span {
    display: none;
  }
}
@media (max-width: 600px) {
  .shell {
    width: calc(100% - 28px);
  }
  .nav-row {
    display: flex;
    justify-content: center;
    min-height: 57px;
  }
  .header-note,
  .header-contact {
    display: none;
  }
  .primary-nav {
    width: 100%;
    justify-content: center;
    gap: 30px;
  }
  .primary-nav a {
    font-size: 0.66rem;
    padding: 19px 0;
  }
  .brand-stage {
    padding: 26px 0 23px;
  }
  .brand-stage img {
    width: 275px;
    max-width: 84vw;
  }
  .brand-stage p {
    font-size: 0.56rem;
    letter-spacing: 0.16em;
  }
  .section-head {
    gap: 10px;
  }
  .section-head > p {
    font-size: 0.67rem;
  }
  .section-head .eyebrow {
    font-size: 0.58rem;
  }
  .page-brand {
    width: 190px;
    margin-top: 26px;
  }
  .page-intro {
    padding: 34px 0;
  }
  .footer-main {
    grid-template-columns: 1fr;
    gap: 25px;
    padding: 30px 0;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 6px;
  }
  .site-footer {
    margin-top: 45px;
  }
  .button {
    padding: 11px 16px;
  }
  .page-intro > p:last-child {
    font-size: 0.9rem;
  }
  .section-head h2 {
    font-size: 1.65rem;
  }
}
@media (pointer: coarse) {
  body {
    touch-action: pan-y pinch-zoom;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
  }
}
