
  
@font-face {
  font-family: "Roboto";
  src: url("../fonts/roboto-latin.woff2") format("woff2");
  font-weight: 100 900;   /* variable axis, not a single weight */
  font-style: normal;
  font-display: swap;
}

/* ── 1. Design tokens ─────────────────────────────────────── */
:root {
  --green: #D3FB0F;
  --blue: #2E38EF;
  --pink: #FC0F83;
  /* For light backgrounds only. --pink scores 3.79:1 against white, whether
     as pink text or as a pink button with white text - short of the 4.5:1
     WCAG 1.4.3 wants for body-size text. This is the same hue at 91% and
     reaches 4.51:1. On the dark sections --pink is still used, where it has
     plenty of contrast and darkening would make things worse. */
  --pink-deep: #E50E77;
  --ink: #131316;
  --bg: #0c0c0e;
  --white: #ffffff;
  --black: #000000;
  --off-white: #f8f8f8;
  --cold-black: #222224;
  --muted-light: #EBEBEE;

  --filter-green: brightness(0) saturate(100%) invert(82%) sepia(69%) saturate(582%) hue-rotate(14deg) brightness(105%) contrast(97%);
  --filter-white: brightness(0) saturate(100%) invert(99%) sepia(3%) saturate(657%) hue-rotate(155deg) brightness(118%) contrast(100%);
  --filter-pink:  brightness(0) saturate(100%) invert(24%) sepia(94%) saturate(5360%) hue-rotate(319deg) brightness(97%) contrast(103%);
  --filter-blue:  brightness(0) saturate(100%) invert(10%) sepia(73%) saturate(6562%) hue-rotate(243deg) brightness(121%) contrast(93%);

  --font-display: "Roboto", system-ui, sans-serif;
  --font-body: "Roboto", system-ui, sans-serif;

  --lh-body: 1.7;
  --fs-body: clamp(1.125rem, 1.095rem + 0.2vw, 1.185rem);

  --maxw: 1340px;
  --gutter: clamp(1.25rem, 4vw, 4.5rem);
  --section-y: clamp(4.5rem, 9vw, 9rem);
  --radius: 16px;
  --nav-h: 83px;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ── 2. Base / reset ──────────────────────────────────────── */
* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  /* The nav is position:fixed and ~83px tall. Without this, tabbing backwards
     to a control above the viewport scrolls it flush to the top, where the nav
     covers it - WCAG 2.2 SC 2.4.11. Applies to focus and to anchor jumps. */
  scroll-padding-top: 6rem;
}

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--white);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--green); color: var(--ink); }

/* ── 3. Typography utilities ──────────────────────────────── */
.display {
  font-family: var(--font-display);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.92;
  letter-spacing: -0.025em;
  margin: 0;
  font-size: clamp(2.4rem, 5.2vw, 4.4rem);
}
.display--m  { font-size: clamp(1.5rem, 2vw, 2.5rem); }
.display--l  { font-size: clamp(2.55rem, 6vw, 4.9rem); }
.display--xl { font-size: clamp(2.7rem, 6.8vw, 5.4rem); }
.display--cta { font-size: clamp(2.6rem, 5vw,  4rem); }
.display--c { text-align: center;}

.subheading {
	font-family: var(--font-display);
	font-weight: 500;
	text-transform: uppercase;
	line-height: 0.92;
	letter-spacing: -0.025em;
	margin: 0;
	font-size: clamp(1.5rem, 2vw, 2.5rem);
}

.accent-green { color: var(--green); }
.accent-pink  { color: var(--pink); }
.accent-blue  { color: var(--blue); }
.accent-black { color: var(--black); }
.accent-white { color: var(--white); }

.white-text { color: var(--white); }
.black-text { color: var(--black); }

.eyebrow {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 1rem;
  line-height: 1.1rem;
  color: var(--white);
  margin: 0 0 1.1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.7em;
}
.eyebrow::before {
	content: "";
	width: 1.8rem;
	height: 2rem;
	margin-right: -8px;
	background: url("../images/eyeBrowAccent.svg") no-repeat center / contain;
}

/* ── 4. Buttons ───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.01em;
  padding: 0.85em 1.5em;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.4s var(--ease-out), background-color 0.3s ease,
    color 0.3s ease, border-color 0.3s ease, box-shadow 0.4s ease;
}
.btn_chev { padding-bottom: 5px; font-size: 1.2em; line-height: 0; transform: translateY(0.05em); transition: transform 0.4s var(--ease-out); }
.btn:hover { transform: translateY(-3px); }
.btn:hover .btn_chev { transform: translateX(3px) translateY(0.05em); }
.btn:active { transform: translateY(-1px) scale(0.98); }
.btn:focus-visible { outline: 3px solid var(--green); outline-offset: 3px; }

.btn--green { background: var(--green); color: var(--ink); }
.btn--green:hover { box-shadow: 0 14px 34px -14px rgba(211, 251, 15, 0.7); }
.btn--white { background: var(--white); color: var(--ink); }
.btn--white:hover { box-shadow: 0 14px 34px -16px rgba(255, 255, 255, 0.55); }
.btn--dark { background: var(--ink); color: var(--white); }
.btn--dark:hover { box-shadow: 0 16px 34px -16px rgba(0, 0, 0, 0.6); }
.btn--pink { background: var(--pink-deep); color: var(--white); }
.btn--pink:hover { box-shadow: 0 16px 34px -16px rgba(255, 26, 140, 0.7); }
.btn--blue { background: var(--blue); color: var(--white); }
.btn--blue:hover { box-shadow: 0 16px 34px -16px rgba(42, 52, 232, 0.7); }

.btn-outline { background: var(--ink); color: var(--white); border-color: var(--white); text-transform: uppercase; }
.btn-outline:hover { background: var(--white); color: var(--ink); border-color: var(--white); }

.pro-btn-group { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: clamp(1.6rem, 3vw, 2.4rem); }

/* ── 5. Page chrome ───────────────────────────────────────── */
.progress {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 3px;
  z-index: 100;
  background: rgba(255, 255, 255, 0.06);
}
.progress_bar {
  display: block;
  height: 100%;
  width: 0;
  background: var(--green);
  box-shadow: 0 0 18px rgba(211, 251, 15, 0.7);
}

/* Grain / texture overlay */
.grain {
  position: fixed;
  inset: 0;
  z-index: 90;
  pointer-events: none;
  opacity: 0.1;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.nav-bar-scrollfix {
	position: fixed;
	top: 0; left: 0; right: 0;
	height: var(--nav-h);
	z-index: 70;
	background: var(--black);
	pointer-events: none;
}

/* Scroll cue (homepage hero) */
.scroll-cue {
  position: fixed;
  left: 50%;
  bottom: clamp(1.1rem, 3.5vh, 2.2rem);
  transform: translateX(-50%);
  z-index: 60;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
  pointer-events: none;
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out);
}
.scroll-cue_mouse {
  width: 26px; height: 42px;
  border: 2px solid rgba(255, 255, 255, 0.55);
  border-radius: 14px;
  display: flex;
  justify-content: center;
  padding-top: 7px;
}
.scm-ps {
	border: 2px solid rgba(0, 0, 0, 0.8);
}
.scroll-cue_wheel {
  width: 4px; height: 8px;
  border-radius: 2px;
  animation: scroll-cue-wheel 1.8s var(--ease-out) infinite;
  background: var(--green);
}
.scw-ps {
	background: var(--blue);
}
.scroll-cue_label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.26em;
  text-transform: uppercase; 
  color: rgba(255, 255, 255, 0.55);
}
.scl-ps {
  color: rgba(0, 0, 0, 0.8);
}
.scroll-cue.is-hidden {
  opacity: 0;
  transform: translate(-50%, 14px);
}
@keyframes scroll-cue-wheel {
  0%   { opacity: 0; transform: translateY(0); }
  25%  { opacity: 1; }
  60%  { opacity: 1; transform: translateY(11px); }
  100% { opacity: 0; transform: translateY(11px); }
}

.pro-wrap { padding-inline: max(var(--gutter), (100% - var(--maxw)) / 2); }

/* ── CTA band ─────────────────────────────────────────── */
.cta { position: relative; overflow: hidden; background: var(--cold-black); padding: clamp(5rem, 11vw, 9rem) 0; border-top: 1px solid rgba(255, 255, 255, 0.08); }
.cta-extra-pad-top { position: relative; overflow: hidden; background: var(--cold-black); padding: clamp(8rem, 14vw, 12rem) 0 clamp(5rem, 11vw, 9rem); border-top: 1px solid rgba(255, 255, 255, 0.08); }
.cta_inner { position: relative; z-index: 2; }
.cta_text { color: var(--off-white); font-size: var(--fs-body); margin: 1.3rem 0 2.3rem; max-width: 46ch; }
.cta_motif { position: absolute; z-index: 1; right: -6%; bottom: -28%; width: clamp(320px, 40vw, 580px); opacity: 0.4; pointer-events: none; }


/* Skip link — offscreen until it takes keyboard focus (WCAG 2.4.1). */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 1000;
  padding: 0.75rem 1.25rem;
  background: var(--ink);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  border-radius: 0 0 8px 0;
  text-decoration: none;
}
.skip-link:focus {
  left: 0;
  outline: 3px solid var(--green);
  outline-offset: -3px;
}
main:focus { outline: none; }

/* ── 6. Brand motifs ────────────────────────────────────────── */

.motif {
  display: block;
  pointer-events: none;
  will-change: transform;
}

.motif--green { filter: var(--filter-green); } 

/* Positioning presets */
.motif-right-hero {
  position: absolute;
  right: -25vw;
  bottom: -50vh;
  width: clamp(500px, 50vw, 900px);
  pointer-events: none;
}
/* ── 7. Navigation ────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--gutter);
  padding: 1rem var(--gutter);
  background: rgba(12, 12, 14, 0);
  border-bottom: 1px solid transparent;
  transition: background-color 0.4s ease, border-color 0.4s ease, padding 0.4s ease;
}
.nav--scrolled {
  background: rgba(12, 12, 14, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
/* Backdrop-filter makes .nav the containing block for its position */
.nav.nav--open { backdrop-filter: none; -webkit-backdrop-filter: none; }
.nav_logo img { margin-top: 7px; width: clamp(120px, 12vw, 158px); height: auto; transition: filter 0.4s ease; }

/* Mobile nav panel (default) */
.nav_links {
  display: flex;
  position: fixed;
  inset: 0 0 0 auto;
  width: min(80vw, 340px);
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 0.8rem;
  padding: 0 var(--gutter);
  background-color: var(--ink);
  border-left: 2px solid var(--green);
  transform: translateX(100%);
  visibility: hidden;
  transition: transform 0.45s var(--ease-out), visibility 0s linear 0.45s;
}
.nav--open .nav_links {
  transform: translateX(0);
  visibility: visible;
  transition: transform 0.45s var(--ease-out), visibility 0s linear 0s;
}
.nav--open .nav_link { color: var(--white); font-size: 1.5rem; }

.nav_link {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  color: var(--muted-light);
  position: relative;
  transition: color 0.3s ease;
}
.nav_link::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  width: 100%; height: 2px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-out);
}
.nav_link:hover { color: var(--white); }
.nav_link:hover::after { transform: scaleX(1); }
.nav_cta { font-size: 1rem; padding: 0.65em 1.3em; }
/* Home exists for the mobile slide-out only */
.nav_link--home { display: none; }

.nav_burger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 44px; height: 44px;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  cursor: pointer;
  z-index: 2;
}
.nav_burger span {
  width: 20px; height: 2px;
  background: var(--white);
  transition: transform 0.35s var(--ease-out), opacity 0.25s ease;
}
.nav--open .nav_burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav--open .nav_burger span:nth-child(2) { opacity: 0; }
.nav--open .nav_burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Nav submenu (disclosure dropdown) */
.nav_item { position: relative; }
.nav_sub-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
}
.nav_sub-caret { display: none; transition: transform 0.3s var(--ease-out); }
.nav_sub-caret svg { display: block; width: 10px; height: 6px; }
.nav_item.is-open .nav_sub-caret { transform: rotate(180deg); }
.nav_sub-toggle:focus-visible,
.nav_sub-link:focus-visible { outline: 2px solid var(--green); outline-offset: 3px; border-radius: 4px; }

/* mobile: inline accordion under the toggle */
.nav_sub {
  list-style: none;
  margin: 0;
  padding: 0 0 0 1rem;
}
.nav_sub-link {
  display: block;
  padding: 0.5rem 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  color: var(--muted-light);
  transition: color 0.3s ease;
}
.nav_sub-link:hover { color: var(--white); }

/* Desktop nav: inline row, floating submenu panel */
@media (min-width: 861px) {
  .nav_links {
    position: static;
    width: auto;
    flex-direction: row;
    align-items: center;
    gap: clamp(1.2rem, 3vw, 2.4rem);
    padding: 0;
    background: transparent;
    border-left: none;
    transform: none;
    transition: none;
    visibility: visible;
  }
  .nav_burger { display: none; }

  .nav_item--has-sub { padding-bottom: 0.6rem; margin-bottom: -0.6rem; }

  .nav_sub-caret { display: inline-block; }
  .nav_sub {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 16rem;
    max-height: none;
    padding: 0.5rem;
    background-color: var(--ink);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    box-shadow: 0 18px 40px -18px rgba(0, 0, 0, 0.7);
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition: opacity 0.25s ease, transform 0.25s var(--ease-out), visibility 0.25s;
  }
  .nav_item--has-sub:hover .nav_sub,
  .nav_item.is-open .nav_sub {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .nav_sub-link { padding: 0.6rem 0.8rem; border-radius: 8px; white-space: nowrap; }
  .nav_sub-link:hover { background: rgba(255, 255, 255, 0.06); }
}

/* ── Mobile slide-out menu (≤860px) ─────────────────────────── */
@media (max-width: 860px) {
  .nav_links {
    justify-content: flex-start;
    padding: 110px var(--gutter) calc(var(--gutter) + 1rem);
  }

  .nav_link--home { display: block; }
  .nav_sub-toggle { display: none; }
  .nav_sub {
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
  }
  .nav_sub-link { padding: 0; }
  .nav_sub-suffix { display: none; }

  .nav--open .nav_link,
  .nav_sub-link,
  .nav_cta { font-size: 1.25rem; }

  .nav_cta {
    margin-top: auto;
    width: 100%;
    justify-content: center;
  }
}



/* ── 8. Footer ────────────────────────────────────────────── */
.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.2rem var(--gutter);
  padding: 2rem var(--gutter);
  background: var(--black);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.footer_links {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 3vw, 2.4rem);
  font-size: 1rem;
  color: var(--muted-light);
}
.footer_links a { transition: color 0.3s ease; }
.footer_links a:hover { color: var(--green); }
.footer_social {
  display: grid;
  place-items: center;
  width: 40px; height: 40px;
  border-radius: 10px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.4s var(--ease-out);
}
.footer_social svg { width: 18px; height: 18px; }
.footer_social:hover { background: var(--green); color: var(--ink); transform: translateY(-3px); }

.footer_meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(1rem, 3vw, 2.4rem);
}

.footer_copyright {
  margin: 0;
  font-size: 1rem;
  color: var(--muted-light);
}


/* ── 9. Motion & accessibility ───────────────────────────── */
[data-reveal] { opacity: 0; }
.js-ready [data-hero-line] { opacity: 0; }
[data-hero-fade] { opacity: 0; }

.reveals-css [data-reveal],
.reveals-css [data-hero-fade] {
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.reveals-css [data-reveal].is-revealed,
.reveals-css [data-hero-fade].is-revealed {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  [data-reveal], [data-hero-fade] { opacity: 1 !important; transform: none !important; }
  .js-ready .hero_title .line_inner { transform: none !important; }
  .scroll-cue_wheel { animation: none; }
  .btn:hover, .footer_social:hover { transform: none; }
}

html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: hidden; }
.lenis.lenis-smooth iframe { pointer-events: none; }
