:root {
  --bg: #0a0e14;
  --bg-elevated: #121821;
  --bg-panel: #161d28;
  --text: #eef2f6;
  --muted: #9aa8b8;
  --mint: #3ddc97;
  --mint-dim: #2bb87a;
  --line: rgba(238, 242, 246, 0.1);
  --font-display: "Syne", sans-serif;
  --font-body: "Outfit", sans-serif;
  --container: min(1180px, calc(100% - 2.5rem));
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

.container {
  width: var(--container);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 14, 20, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 68px;
}

.brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.brand em {
  font-style: normal;
  color: var(--mint);
}

.nav {
  display: flex;
  gap: 1.75rem;
  align-items: center;
}

.nav a {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.2s;
}

.nav a:hover,
.nav a[aria-current="page"] {
  color: var(--text);
}

.nav .cta {
  color: var(--bg) !important;
  background: var(--mint);
  padding: 0.55rem 0.95rem;
  font-weight: 600;
}

.nav .cta:hover {
  background: var(--mint-dim);
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--text);
  width: 42px;
  height: 42px;
  cursor: pointer;
  font-size: 1.2rem;
}

.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 60;
  background: var(--bg);
  padding: 1.25rem;
  flex-direction: column;
}

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

.mobile-nav-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2.5rem;
}

.mobile-nav nav a {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 8vw, 2.8rem);
  font-weight: 700;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--line);
}

.close-menu {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--text);
  width: 42px;
  height: 42px;
  cursor: pointer;
  font-size: 1.4rem;
}

/* Hero — asymmetric */
.hero {
  position: relative;
  min-height: calc(100vh - 68px);
  overflow: hidden;
  display: grid;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.85) contrast(1.05);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(10, 14, 20, 0.95) 0%, rgba(10, 14, 20, 0.72) 42%, rgba(10, 14, 20, 0.35) 100%),
    radial-gradient(40% 50% at 20% 80%, rgba(61, 220, 151, 0.18), transparent 70%);
}

.hero-content {
  position: relative;
  width: var(--container);
  margin: 0 auto;
  padding: 18vh 0 4.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: calc(100vh - 68px);
  gap: 3rem;
}

.hero-brand-block {
  animation: slide 0.85s ease both;
}

.hero-brand-block .wordmark {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.8rem, 9vw, 6.5rem);
  line-height: 0.92;
  letter-spacing: -0.045em;
  text-transform: uppercase;
  max-width: 12ch;
}

.hero-brand-block .sub {
  margin-top: 1rem;
  font-size: 0.8rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--mint);
}

.hero-bottom {
  display: grid;
  gap: 1.5rem;
  max-width: 540px;
  animation: slide 0.85s ease 0.12s both;
}

.hero-bottom h1 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.8vw, 2.2rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.hero-bottom p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 0.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.9rem 1.35rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid transparent;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.btn-mint {
  background: var(--mint);
  color: var(--bg);
}

.btn-mint:hover {
  background: var(--mint-dim);
}

.btn-outline {
  border-color: rgba(238, 242, 246, 0.3);
  color: var(--text);
  background: transparent;
}

.btn-outline:hover {
  border-color: var(--mint);
  color: var(--mint);
}

.section {
  padding: clamp(3.5rem, 8vw, 6.5rem) 0;
}

.section-alt {
  background: var(--bg-elevated);
}

.eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mint);
  margin-bottom: 1rem;
}

.display {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  letter-spacing: -0.03em;
  line-height: 1.2;
  max-width: 880px;
}

.lede {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 540px;
  line-height: 1.7;
}

.asymmetric {
  display: grid;
  gap: 2rem;
}

@media (min-width: 900px) {
  .asymmetric {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 4rem;
    align-items: start;
  }
}

.rail {
  position: sticky;
  top: 100px;
}

.grid-3 {
  display: grid;
  gap: 2rem;
  margin-top: 2.5rem;
  border-top: 1px solid var(--line);
  padding-top: 2.5rem;
}

@media (min-width: 800px) {
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.item h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.item p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

.criteria {
  margin-top: 1.5rem;
}

.criteria li {
  list-style: none;
  display: flex;
  gap: 1rem;
  align-items: baseline;
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 1.1rem;
}

.criteria li span {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--mint);
  font-size: 0.85rem;
  min-width: 2rem;
}

.immersive {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.immersive img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.immersive .veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 14, 20, 0.92) 0%, rgba(10, 14, 20, 0.55) 55%, rgba(10, 14, 20, 0.2) 100%);
}

.immersive .copy {
  position: relative;
  width: var(--container);
  margin: 0 auto;
  max-width: 560px;
  margin-left: max(1.25rem, calc((100% - min(1180px, calc(100% - 2.5rem))) / 2));
  padding: 3rem 0;
}

.immersive h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.2vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin: 0.75rem 0 1rem;
}

.immersive p {
  color: var(--muted);
  line-height: 1.65;
}

.cta-row {
  display: grid;
  gap: 1.5rem;
  align-items: center;
}

@media (min-width: 800px) {
  .cta-row {
    grid-template-columns: 1fr auto;
  }
}

.cta-row .display {
  font-size: clamp(1.4rem, 2.4vw, 2rem);
}

.page-hero {
  padding: clamp(4rem, 10vw, 7rem) 0 2.5rem;
  border-bottom: 1px solid var(--line);
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.05;
  text-transform: uppercase;
  max-width: 14ch;
}

.prose {
  max-width: 680px;
}

.prose p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.prose p + p {
  margin-top: 1.25rem;
}

.process {
  display: grid;
  gap: 0;
}

.process-step {
  display: grid;
  gap: 0.75rem;
  padding: 1.75rem 0;
  border-top: 1px solid var(--line);
}

@media (min-width: 700px) {
  .process-step {
    grid-template-columns: 100px 1fr;
    gap: 2rem;
  }
}

.process-step .num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--mint);
  letter-spacing: -0.03em;
}

.process-step h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 0.4rem;
  letter-spacing: -0.02em;
}

.process-step p {
  color: var(--muted);
  line-height: 1.65;
}

.contact-grid {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 800px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
  }
}

.panel {
  background: var(--bg-panel);
  padding: 2rem;
  border: 1px solid var(--line);
}

.panel h2 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.panel a {
  color: var(--mint);
}

.form {
  display: grid;
  gap: 1rem;
}

.form label {
  display: grid;
  gap: 0.4rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.form input,
.form textarea {
  font: inherit;
  padding: 0.9rem 1rem;
  background: var(--bg);
  border: 1px solid var(--line);
  color: var(--text);
}

.form input:focus,
.form textarea:focus {
  outline: 2px solid rgba(61, 220, 151, 0.35);
  border-color: var(--mint);
}

.form-note {
  font-size: 0.85rem;
  color: var(--muted);
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 3.5rem 0 2rem;
  background: var(--bg-elevated);
}

.footer-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 800px) {
  .footer-grid {
    grid-template-columns: 1.5fr 0.7fr 0.9fr;
  }
}

.footer-brand {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  margin-bottom: 0.75rem;
}

.footer-grid p,
.footer-col a {
  color: var(--muted);
}

.footer-col h4 {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(238, 242, 246, 0.4);
  margin-bottom: 0.9rem;
}

.footer-col a {
  display: block;
  margin-bottom: 0.5rem;
}

.footer-col a:hover {
  color: var(--mint);
}

.footer-legal {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  font-size: 0.78rem;
  color: rgba(154, 168, 184, 0.75);
  line-height: 1.65;
}

.footer-bottom {
  margin-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.82rem;
  color: var(--muted);
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@keyframes slide {
  from {
    opacity: 0;
    transform: translateX(-16px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 799px) {
  .nav {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .hero {
    min-height: 700px;
  }

  .immersive .copy {
    margin-left: 1.25rem;
    margin-right: 1.25rem;
    width: auto;
  }
}
