:root {
  color-scheme: dark;
  --bg: #020504;
  --panel: #07110c;
  --panel-2: #0b1712;
  --line: rgba(86, 255, 191, .22);
  --text: #f3f6e8;
  --muted: #bdc8bd;
  --gold: #f5c84e;
  --green: #21f0a5;
  --cyan: #30d8ff;
  --red: #d53255;
  --shadow: 0 24px 70px rgba(0, 0, 0, .38);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--bg);
  scroll-behavior: smooth;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--text);
  background:
    radial-gradient(circle at 20% 4%, rgba(31, 240, 165, .16), transparent 30rem),
    radial-gradient(circle at 80% 10%, rgba(213, 50, 85, .12), transparent 32rem),
    linear-gradient(180deg, #020504 0%, #050908 42%, #020504 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .34;
  background-image:
    linear-gradient(110deg, transparent 0 46%, rgba(255, 255, 255, .05) 47%, transparent 48% 100%),
    radial-gradient(circle at 50% 100%, rgba(245, 200, 78, .12), transparent 16rem);
  background-size: 8rem 8rem, cover;
  z-index: -1;
}

a {
  color: inherit;
  text-decoration: none;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: -5rem;
  z-index: 50;
  padding: .7rem 1rem;
  border-radius: .5rem;
  background: var(--green);
  color: #00100a;
  transition: top .2s ease;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  background: rgba(2, 6, 5, .82);
  backdrop-filter: blur(18px);
}

.nav-shell {
  width: min(1240px, calc(100% - 32px));
  min-height: 82px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  min-width: 0;
}

.brand img {
  width: clamp(260px, 32vw, 420px);
  filter: drop-shadow(0 0 16px rgba(33, 240, 165, .18));
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: .18rem;
  min-width: 0;
}

.site-nav a {
  padding: .68rem .74rem;
  border-radius: .45rem;
  color: var(--muted);
  font-weight: 750;
  font-size: .88rem;
  white-space: nowrap;
  transition: color .18s ease, background .18s ease, box-shadow .18s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
  background: rgba(33, 240, 165, .1);
  box-shadow: inset 0 0 0 1px rgba(33, 240, 165, .22);
}

.site-nav a[aria-current="page"] {
  color: #04130d;
  background: linear-gradient(135deg, var(--green), var(--gold));
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(33, 240, 165, .36);
  border-radius: .5rem;
  background: rgba(7, 17, 12, .84);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--green);
  transition: transform .2s ease, opacity .2s ease;
}

main {
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  position: relative;
  min-height: 0;
  display: block;
  padding: clamp(1.8rem, 4vw, 3.2rem) 0 clamp(1.2rem, 3vw, 2.4rem);
}

.hero__copy {
  position: absolute;
  left: clamp(1.2rem, 4vw, 3.4rem);
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  min-width: 0;
  width: min(520px, 46%);
  text-shadow: 0 2px 18px rgba(0, 0, 0, .76);
}

.eyebrow,
.section-kicker,
.label {
  margin: 0 0 .8rem;
  color: var(--gold);
  font-size: .82rem;
  font-weight: 900;
  letter-spacing: 0;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.05;
  letter-spacing: 0;
}

h1 {
  max-width: 14ch;
  font-size: clamp(2.35rem, 4.4vw, 4rem);
}

h2 {
  font-size: clamp(1.8rem, 3.8vw, 3.25rem);
}

h3 {
  font-size: 1.08rem;
}

.lead {
  max-width: min(760px, 100%);
  margin: 1rem 0 0;
  color: #e9f1df;
  font-size: clamp(1.04rem, 1.8vw, 1.35rem);
  line-height: 1.72;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
  margin-top: 1.7rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: .82rem 1rem;
  border-radius: .48rem;
  font-weight: 900;
  line-height: 1.1;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button--primary {
  color: #03110b;
  background: linear-gradient(135deg, var(--green), var(--gold));
  box-shadow: 0 14px 34px rgba(33, 240, 165, .18);
}

.button--primary:hover,
.button--primary:focus-visible {
  box-shadow: 0 18px 42px rgba(245, 200, 78, .24);
}

.button--ghost {
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, .2);
  background: rgba(255, 255, 255, .05);
}

.button--ghost:hover,
.button--ghost:focus-visible {
  border-color: rgba(33, 240, 165, .55);
  background: rgba(33, 240, 165, .1);
}

.hero__checks {
  display: flex;
  flex-wrap: wrap;
  gap: .62rem;
  margin-top: 1.45rem;
}

.hero__checks span {
  padding: .55rem .75rem;
  border: 1px solid rgba(48, 216, 255, .28);
  border-radius: .45rem;
  color: #d8fbf0;
  background: rgba(6, 19, 16, .72);
  font-size: .9rem;
  font-weight: 800;
}

.hero__media {
  position: relative;
  margin: 0;
}

.hero__media::before {
  content: "";
  position: absolute;
  inset: -3%;
  border-radius: 1.2rem;
  background: linear-gradient(135deg, rgba(33, 240, 165, .22), rgba(213, 50, 85, .12), rgba(245, 200, 78, .18));
  filter: blur(24px);
}

.hero__media img,
.inner-hero figure img,
.split figure img {
  position: relative;
  border: 1px solid rgba(255, 255, 255, .11);
  border-radius: .7rem;
  box-shadow: var(--shadow);
}

.hero__media img {
  width: 100%;
  min-height: 480px;
  max-height: 560px;
  aspect-ratio: 16 / 8.5;
  object-fit: cover;
  object-position: 66% center;
}

.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: .7rem;
  background:
    linear-gradient(90deg, rgba(2, 6, 5, .86) 0%, rgba(2, 6, 5, .72) 27%, rgba(2, 6, 5, .22) 52%, rgba(2, 6, 5, .04) 100%),
    linear-gradient(180deg, rgba(2, 6, 5, .08), rgba(2, 6, 5, .18));
  pointer-events: none;
}

.band,
.feature-grid,
.split,
.faq,
.inner-hero,
.text-hero,
.copy-block,
.contact-grid,
.not-found {
  margin: clamp(2.3rem, 6vw, 5.8rem) 0;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
  gap: 1.6rem;
  align-items: end;
  padding: clamp(1.3rem, 3vw, 2.1rem);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid rgba(245, 200, 78, .2);
  background: linear-gradient(90deg, rgba(33, 240, 165, .08), rgba(48, 216, 255, .04), rgba(213, 50, 85, .07));
}

.intro-grid p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.feature-card {
  min-width: 0;
}

.feature-card a {
  display: grid;
  min-height: 100%;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: .55rem;
  overflow: hidden;
  background: rgba(7, 17, 12, .76);
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

.feature-card a:hover,
.feature-card a:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(33, 240, 165, .52);
  background: rgba(9, 28, 20, .86);
  box-shadow: 0 18px 48px rgba(0, 0, 0, .32);
}

.feature-card img {
  width: 100%;
  aspect-ratio: 1.45 / 1;
  object-fit: cover;
}

.feature-card span {
  display: block;
  padding: 1rem 1rem .35rem;
  color: var(--gold);
  font-weight: 950;
  font-size: 1.05rem;
}

.feature-card p {
  margin: 0;
  padding: 0 1rem 1rem;
  color: var(--muted);
  line-height: 1.6;
  font-size: .95rem;
}

.split,
.inner-hero,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(1.2rem, 4vw, 3.2rem);
  align-items: center;
}

.split figure,
.inner-hero figure {
  margin: 0;
}

.split .mini-list {
  margin-top: 1.1rem;
}

.mini-list p,
.copy-block p,
.contact-card p,
.faq p {
  color: var(--muted);
  line-height: 1.72;
}

.text-link {
  display: inline-flex;
  margin-top: .7rem;
  color: var(--green);
  font-weight: 900;
  border-bottom: 2px solid rgba(33, 240, 165, .4);
  transition: color .18s ease, border-color .18s ease;
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--gold);
  border-color: var(--gold);
}

.inner-hero {
  min-height: 54svh;
  padding-top: clamp(1.4rem, 4vw, 3.2rem);
}

.text-hero {
  min-height: 46svh;
  display: grid;
  align-items: center;
  padding: clamp(2rem, 5vw, 4.8rem) clamp(1rem, 3vw, 2rem);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: .75rem;
  background:
    linear-gradient(135deg, rgba(33, 240, 165, .12), rgba(7, 17, 12, .72) 46%, rgba(213, 50, 85, .1)),
    radial-gradient(circle at 88% 18%, rgba(48, 216, 255, .16), transparent 18rem),
    repeating-linear-gradient(110deg, transparent 0 4.5rem, rgba(255, 255, 255, .045) 4.55rem 4.62rem);
  box-shadow: var(--shadow);
}

.text-hero h1 {
  max-width: 15ch;
  font-size: clamp(2.25rem, 6vw, 5rem);
}

.inner-hero h1 {
  max-width: 13ch;
  font-size: clamp(2.35rem, 6vw, 5.1rem);
}

.copy-block {
  width: min(920px, 100%);
}

.copy-block h2 {
  margin-top: 1.9rem;
  font-size: clamp(1.45rem, 2.5vw, 2.2rem);
}

.copy-block h2:first-child {
  margin-top: 0;
}

.note-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.4rem;
}

.note-list article,
.contact-card,
.faq details {
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: .55rem;
  background: linear-gradient(145deg, rgba(7, 17, 12, .9), rgba(9, 23, 18, .72));
}

.note-list article {
  padding: 1.1rem;
}

.note-list h3 {
  color: var(--gold);
}

.closing-note {
  margin-top: 1.4rem;
  padding-left: 1rem;
  border-left: 3px solid var(--green);
  color: #edf7ea;
  font-weight: 750;
}

.section-head {
  margin-bottom: 1.2rem;
}

.faq-list {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: .85rem;
  width: min(920px, 100%);
}

.faq details {
  overflow: hidden;
}

.faq details[open] {
  border-color: rgba(33, 240, 165, .42);
  box-shadow: 0 14px 34px rgba(0, 0, 0, .22);
}

.faq summary {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .8rem;
  padding: 1rem;
  cursor: pointer;
  color: var(--text);
  font-weight: 900;
  list-style: none;
}

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

.faq summary::after {
  content: "+";
  flex: 0 0 auto;
  color: var(--green);
  font-size: 1.25rem;
  transition: transform .18s ease, color .18s ease;
}

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

.faq details:hover {
  border-color: rgba(48, 216, 255, .38);
}

.faq p {
  margin: 0;
  padding: 0 1rem 1rem;
}

.contact-card {
  padding: clamp(1rem, 3vw, 1.5rem);
}

.contact-card a {
  display: inline-flex;
  max-width: 100%;
  overflow-wrap: anywhere;
  color: var(--green);
  font-size: clamp(1.05rem, 2.4vw, 1.7rem);
  font-weight: 950;
}

.contact-card a:hover,
.contact-card a:focus-visible {
  color: var(--gold);
}

.small {
  font-size: .95rem;
}

.not-found {
  min-height: 58svh;
  display: grid;
  place-content: center;
  text-align: center;
}

.not-found h1 {
  max-width: none;
  font-size: clamp(2.4rem, 6vw, 5rem);
}

.not-found p {
  max-width: 620px;
  margin: 1rem auto 1.4rem;
  color: var(--muted);
  line-height: 1.7;
}

.site-footer {
  width: min(1240px, calc(100% - 32px));
  margin: 4rem auto 0;
  padding: 2rem 0 2.4rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.5rem 2rem;
  border-top: 1px solid rgba(255, 255, 255, .12);
}

.site-footer img {
  width: min(380px, 86vw);
}

.site-footer p {
  max-width: 650px;
  color: var(--muted);
  line-height: 1.65;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-content: start;
  gap: .55rem;
}

.site-footer a {
  padding: .55rem .65rem;
  border-radius: .45rem;
  color: var(--muted);
  font-weight: 800;
  transition: color .18s ease, background .18s ease;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--text);
  background: rgba(33, 240, 165, .1);
}

.footer-bottom {
  grid-column: 1 / -1;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, .08);
}

.footer-bottom p {
  max-width: none;
  margin: 0;
  color: #aeb8ad;
  font-size: .95rem;
}

@media (max-width: 1040px) {
  .site-nav {
    position: fixed;
    left: 16px;
    right: 16px;
    top: 90px;
    display: none;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .5rem;
    padding: .75rem;
    border: 1px solid rgba(33, 240, 165, .22);
    border-radius: .7rem;
    background: rgba(3, 9, 7, .96);
    box-shadow: 0 24px 70px rgba(0, 0, 0, .5);
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav a {
    white-space: normal;
    text-align: center;
  }

  .menu-toggle {
    display: inline-block;
  }

  .menu-toggle.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle.is-open span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .hero,
  .inner-hero,
  .split,
  .contact-grid,
  .intro-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .nav-shell,
  main,
  .site-footer {
    width: min(100% - 32px, 1240px);
  }

  .nav-shell {
    min-height: 72px;
  }

  .brand img {
    width: min(300px, 78vw);
  }

  .site-nav {
    top: 78px;
    left: 11px;
    right: 11px;
    grid-template-columns: 1fr;
  }

  h1 {
    max-width: 12ch;
    font-size: clamp(2rem, 12vw, 3.1rem);
  }

  .inner-hero h1 {
    font-size: clamp(2.15rem, 12vw, 3.65rem);
  }

  .lead {
    font-size: 1rem;
    line-height: 1.65;
  }

  .hero {
    padding-top: 1.4rem;
  }

  .hero__copy {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    width: 100%;
    padding-right: .4rem;
    text-shadow: none;
  }

  .hero__copy .lead {
    max-width: 82%;
  }

  .hero__media {
    margin-top: 1.2rem;
  }

  .hero__media img {
    min-height: 270px;
    max-height: none;
    aspect-ratio: 1.12 / 1;
    object-position: 70% center;
  }

  .hero__media::after {
    background: linear-gradient(180deg, rgba(2, 6, 5, .02), rgba(2, 6, 5, .16));
  }

  .hero__actions,
  .hero__checks {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .feature-grid,
  .note-list,
  .faq-list {
    grid-template-columns: 1fr;
  }

  .intro-grid,
  .note-list article,
  .contact-card {
    padding: 1rem;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .site-footer nav {
    justify-content: flex-start;
  }
}

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