/* ═══════════════════════════════════════════════════════
   HYGRIP — Pre-launch CSS
   Fonts: Playfair Display (editorial headlines) + Inter (UI/body)
   Palette: Black & White — minimal, cinematic, performance
   ═══════════════════════════════════════════════════════ */

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:          #000;
  --fg:          #fff;
  --muted:       rgba(255,255,255,.72);
  --soft:        rgba(255,255,255,.10);
  --border:      rgba(255,255,255,.16);
  --max:         1200px;
  --r:           999px;

  /* fonts */
  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body:    'Inter', system-ui, -apple-system, Segoe UI, Helvetica, Arial, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a   { color: inherit; }
button { font-family: inherit; }

/* ── UTILITY ── */
.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

/* ── SECTION HEADERS (editorial, Upfront-inspired) ── */
.section {
  padding: 100px 0;
}

.section__header {
  margin-bottom: 60px;
}

.section__label {
  display: block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}

.section__divider {
  display: flex;
  align-items: center;
  gap: 10px;
}

.section__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--fg);
  flex-shrink: 0;
}

.section__line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, rgba(255,255,255,.55), rgba(255,255,255,.05));
}

.section__num {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: .12em;
  color: rgba(255,255,255,.3);
  flex-shrink: 0;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  height: 52px;
  padding: 0 26px;
  border-radius: var(--r);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform .16s ease, opacity .16s ease, background .16s ease;
  will-change: transform;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px) !important; }

.btn--primary {
  background: var(--fg);
  color: var(--bg);
  box-shadow: 0 16px 50px rgba(0,0,0,.50);
}
.btn--primary:hover { transform: translateY(-2px); opacity: .93; }

.btn--ghost {
  background: var(--soft);
  color: var(--fg);
  border: 1px solid var(--border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.btn--ghost:hover { background: rgba(255,255,255,.14); transform: translateY(-2px); }

.btn--full { width: 100%; }

/* ═══════════════════════════════════════════════════════
   NAVBAR
   ═══════════════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background .3s ease, backdrop-filter .3s ease;
}

.nav.scrolled {
  background: rgba(0,0,0,.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
}

.nav__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav__logo-link { display: flex; align-items: center; flex-shrink: 0; }
.nav__logo      { height: 46px; width: auto; object-fit: contain; }

.nav__links {
  display: flex;
  list-style: none;
  gap: 32px;
  align-items: center;
}

.nav__link {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .10em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--muted);
  transition: color .15s;
}
.nav__link:hover { color: var(--fg); }

.nav__right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

/* Language toggle */
.lang-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: var(--r);
  background: var(--soft);
  border: 1px solid var(--border);
  color: var(--fg);
  cursor: pointer;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: background .15s;
}
.lang-btn:hover { background: rgba(255,255,255,.12); }

.lang-btn__pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 24px;
  padding: 0 8px;
  border-radius: var(--r);
  background: var(--fg);
  color: var(--bg);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .09em;
}

.lang-btn__other {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .09em;
  opacity: .75;
}

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav__hamburger span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--fg);
  border-radius: 2px;
  transition: transform .25s, opacity .25s;
}
.nav__hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile menu */
.nav__mobile {
  display: none;
  flex-direction: column;
  padding: 16px 24px 24px;
  border-top: 1px solid var(--border);
  background: rgba(0,0,0,.94);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
.nav__mobile.open { display: flex; }
.nav__mobile-link {
  padding: 14px 0;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .10em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--muted);
  border-bottom: 1px solid var(--border);
  transition: color .15s;
}
.nav__mobile-link:last-child { border-bottom: none; }
.nav__mobile-link:hover { color: var(--fg); }

/* ═══════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════ */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  background: #000;
}

/* Background video */
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.05) saturate(.85);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 130% 80% at 50% 40%, rgba(0,0,0,.30), rgba(0,0,0,.72) 70%),
    linear-gradient(to bottom, rgba(0,0,0,.60) 0%, rgba(0,0,0,.45) 40%, rgba(0,0,0,.80) 100%);
  z-index: 1;
}

/* ── 2-IMAGE TAKEOVER ── */
.hero__takeover {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: flex;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
}

/* Subtle overlay over the 2 panels so text stays readable */
.hero__takeover-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: rgba(0,0,0,.38);
}

/* Each panel: exactly half the screen */
.hero__takeover-panel {
  position: relative;
  width: 50%;
  height: 100%;
  overflow: hidden;
  flex-shrink: 0;
}

.hero__takeover-panel img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

/* Start positions: panels off-screen in their respective corners */
.hero__takeover-panel--left  { transform: translateX(-100%); }
.hero__takeover-panel--right { transform: translateX(100%); }

/* Active state: panels slide in */
.hero__takeover.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.hero__takeover.active .hero__takeover-panel--left,
.hero__takeover.active .hero__takeover-panel--right {
  transform: translateX(0);
  transition: transform .55s cubic-bezier(.22,1,.36,1);
}

.hero__takeover.active .hero__takeover-panel--right {
  transition-delay: .04s;
}

/* ── HERO CONTENT ── */
.hero__content {
  position: absolute;
  inset: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 24px 80px;
  pointer-events: none;
}

.hero__stack {
  width: 100%;
  max-width: 960px;
  text-align: center;
  pointer-events: auto;
}

/* Entrance animation */
.hero__stack { animation: heroFadeUp .9s cubic-bezier(.22,1,.36,1) both; }
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero__wordmark {
  font-family: var(--font-body);
  font-size: clamp(11px, 1.1vw, 13px);
  font-weight: 800;
  letter-spacing: .28em;
  text-transform: uppercase;
  opacity: .75;
  margin-bottom: 18px;
}

/* Playfair Display for the big hero headline */
.hero__headline {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(46px, 7.5vw, 100px);
  line-height: .95;
  letter-spacing: -.01em;
  text-transform: uppercase;
  text-shadow: 0 20px 60px rgba(0,0,0,.60);
  margin: 0;
}

.hero__sub {
  margin: 20px auto 0;
  max-width: 50ch;
  font-family: var(--font-body);
  font-size: clamp(16px, 1.7vw, 20px);
  font-weight: 300;
  color: var(--muted);
  line-height: 1.5;
}

.hero__cta {
  margin-top: 32px;
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Stats bar REMOVED (as per request – no microcopy) */

/* Scroll cue */
.hero__scroll {
  position: absolute;
  z-index: 11;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--soft);
  display: grid;
  place-items: center;
  text-decoration: none;
  color: inherit;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: opacity .2s;
}
.hero__scroll:hover { opacity: .7; }

.hero__scroll-line {
  width: 1.5px;
  height: 16px;
  background: rgba(255,255,255,.85);
  border-radius: 2px;
  animation: scrollBob 1.5s ease-in-out infinite;
}
@keyframes scrollBob {
  0%,100% { transform: translateY(-2px); opacity: .5; }
  50%      { transform: translateY(3px);  opacity: 1; }
}

/* ═══════════════════════════════════════════════════════
   ABOUT (Over ons)
   ═══════════════════════════════════════════════════════ */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

/* Photo block LEFT */
.about__img-wrap { position: relative; }

.about__img-inner {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
}

.about__img-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  transition: transform .55s ease, filter .55s ease;
}
.about__img-inner:hover img {
  transform: scale(1.03);
  filter: saturate(1.1);
}

/* Photo caption badge */
.about__img-caption {
  position: absolute;
  bottom: 14px;
  left: 14px;
  background: rgba(0,0,0,.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  color: var(--fg);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .10em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: var(--r);
}

/* Corner decorations */
.about__img-corner {
  position: absolute;
  width: 18px;
  height: 18px;
  pointer-events: none;
}
.about__img-corner--tr {
  top: 12px; right: 12px;
  border-top: 2px solid rgba(255,255,255,1);
  border-right: 2px solid rgba(255,255,255,1);
}
.about__img-corner--bl {
  bottom: 12px; left: 12px;
  border-bottom: 2px solid rgba(255,255,255,.55);
  border-left: 2px solid rgba(255,255,255,.55);
}

/* Text block RIGHT */
.about__heading {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 24px;
  letter-spacing: -.01em;
}

.about__body {
  color: var(--muted);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
  margin-bottom: 16px;
}

.about__founders {
  display: flex;
  gap: 16px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.founder-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--soft);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.founder-card__avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--fg);
  color: var(--bg);
  font-size: 16px;
  font-weight: 900;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.founder-card__name {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .04em;
}
.founder-card__role {
  font-size: 11px;
  letter-spacing: .10em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 2px;
}

/* ═══════════════════════════════════════════════════════
   FEATURES
   ═══════════════════════════════════════════════════════ */
.features { background: rgba(255,255,255,.02); }

.features__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.feature-card {
  padding: 32px 24px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--soft);
  transition: border-color .25s, transform .25s;
}
.feature-card:hover {
  border-color: rgba(255,255,255,.35);
  transform: translateY(-4px);
}

.feature-card__icon {
  font-size: 22px;
  margin-bottom: 16px;
  opacity: .7;
}

.feature-card__title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -.01em;
}

.feature-card__text {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
}

/* ═══════════════════════════════════════════════════════
   WAITLIST
   ═══════════════════════════════════════════════════════ */
.waitlist__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.waitlist__heading {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 16px;
  letter-spacing: -.01em;
}

.waitlist__sub {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 28px;
}

.waitlist__perks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.waitlist__perks li {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: .02em;
}

/* Form */
.waitlist__form { display: flex; flex-direction: column; gap: 20px; }

.form-group { display: flex; flex-direction: column; gap: 8px; }

.form-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
}

.form-input {
  height: 52px;
  padding: 0 18px;
  background: rgba(255,255,255,.06);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 15px;
  transition: border-color .2s;
  appearance: none;
  -webkit-appearance: none;
}
.form-input:focus {
  outline: none;
  border-color: rgba(255,255,255,.55);
}
.form-input::placeholder { color: rgba(255,255,255,.3); }

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='8' fill='none'%3E%3Cpath d='M1 1l6 6 6-6' stroke='rgba(255,255,255,.5)' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
  cursor: pointer;
}
.form-select option { background: #111; color: #fff; }

.form-notice {
  font-size: 12px;
  color: rgba(255,255,255,.35);
  letter-spacing: .05em;
  text-align: center;
}

.form-success {
  text-align: center;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--soft);
}

/* ═══════════════════════════════════════════════════════
   FAQ
   ═══════════════════════════════════════════════════════ */
.faq__list {
  display: flex;
  flex-direction: column;
  max-width: 820px;
}

.faq__item {
  border-bottom: 1px solid var(--border);
}

.faq__q {
  width: 100%;
  text-align: left;
  padding: 22px 0;
  background: none;
  border: none;
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color .15s;
}
.faq__q:hover { color: rgba(255,255,255,.75); }
.faq__q::after {
  content: '+';
  font-size: 22px;
  font-weight: 300;
  flex-shrink: 0;
  transition: transform .25s;
}
.faq__q[aria-expanded="true"]::after { transform: rotate(45deg); }

.faq__a {
  padding: 0 0 22px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

/* ═══════════════════════════════════════════════════════
   JOURNEY / SOCIAL
   ═══════════════════════════════════════════════════════ */
.journey {
  text-align: center;
  background: rgba(255,255,255,.02);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.journey__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}

.journey__heading {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 54px);
  font-weight: 900;
  margin-bottom: 36px;
  letter-spacing: -.01em;
}

.journey__btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ═══════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════ */
.footer {
  padding: 56px 0 32px;
  border-top: 1px solid var(--border);
}

.footer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.footer__logo-link { display: flex; align-items: center; }
.footer__logo      { height: 40px; width: auto; object-fit: contain; }

.footer__nav {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}
.footer__nav a {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .10em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--muted);
  transition: color .15s;
}
.footer__nav a:hover { color: var(--fg); }

.footer__socials {
  display: flex;
  gap: 16px;
  align-items: center;
}
.footer__socials a {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--soft);
  color: var(--muted);
  text-decoration: none;
  transition: color .15s, border-color .15s;
}
.footer__socials a:hover { color: var(--fg); border-color: rgba(255,255,255,.40); }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  border-top: 1px solid var(--border);
  padding-top: 24px;
  font-size: 12px;
  color: rgba(255,255,255,.35);
}
.footer__bottom a { text-decoration: none; color: inherit; }
.footer__bottom a:hover { color: var(--fg); }

/* ═══════════════════════════════════════════════════════
   SCROLL REVEAL
   ═══════════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════ */

/* Large desktop adjustments */
@media (min-width: 1400px) {
  .hero__headline { font-size: 110px; }
}

/* Tablet */
@media (max-width: 1024px) {
  .features__grid { grid-template-columns: repeat(2, 1fr); }
  .about__grid    { gap: 40px; }
}

@media (max-width: 900px) {
  .waitlist__inner { grid-template-columns: 1fr; gap: 48px; }
  .about__grid     { grid-template-columns: 1fr; gap: 36px; }
  .about__img-inner { aspect-ratio: 3 / 2; }
}

/* Mobile */
@media (max-width: 768px) {
  .nav__links   { display: none; }
  .nav__hamburger { display: flex; }
  .features__grid { grid-template-columns: 1fr 1fr; }

  .hero__headline { font-size: clamp(36px, 10vw, 60px); }
}

@media (max-width: 540px) {
  .features__grid { grid-template-columns: 1fr; }
  .hero__cta      { flex-direction: column; align-items: center; }
  .about__founders{ flex-direction: column; }
  .footer__top    { flex-direction: column; align-items: flex-start; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .hero__video { display: none; }
  .hero__takeover-panel--left,
  .hero__takeover-panel--right { transition: none !important; }
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .hero__scroll-line { animation: none; }
}
