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

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  background: var(--dark);
}

body {
  background: var(--dark);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img, picture, video, canvas, svg { display: block; max-width: 100%; }
input, button, textarea, select { font: inherit; }
p, h1, h2, h3, h4, h5, h6 { overflow-wrap: break-word; }
ul, ol { list-style: none; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; background: none; border: none; }
table { border-collapse: collapse; border-spacing: 0; }

@font-face {
  font-family: 'Grift';
  src: url('fonts/Grift.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

/* ════════════════════════════════════════
   TOKENS
════════════════════════════════════════ */
:root {
  --dark:        #0d0d12;
  --light:       #F4F6FB;
  --accent:      #c9b8ff;
  --darkerbg:    #080e14;
  --black:       #000;
  --white:       #fff;
  --serif:       "dm-serif-display", Georgia, serif;
  --font-h1:     clamp(2.8rem, 6vw, 3.6rem);
  --font-p:      clamp(1rem, 1.1vw, 1rem);
  --gradient:    linear-gradient(180deg, #7B2EFD 0%, #475FDB 48.56%, #02A0AE 100%);
  --phone-scale: 1.75;
}

.gradient { background: var(--gradient); }

h1 { font-family: var(--serif); font-weight: 400; font-size: var(--font-h1); line-height: 1em; }
h2 { font-family: var(--serif); font-weight: 400; font-size: var(--font-h2); line-height: 1em; margin-bottom: 20px;}
p  { font-family: 'Grift', system-ui, sans-serif; font-weight: 500; font-size: var(--font-p); }

.container { max-width: 1480px; padding: 0 40px; margin: 0 auto;  width: 100%; position: relative;}


/* ════════════════════════════════════════
   LOADING SCREEN
════════════════════════════════════════ */
#loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #09090f;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  transition: opacity 0.7s ease, visibility 0.7s ease;
}

#loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-graphic {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Fill hidden at start, fades in after stroke finishes */
.loader-graphic .icon-fill {
  opacity: 0;
  animation: iconFill 0.5s 1.3s ease forwards;
}

/* Stroke draws on, then fades out as fill takes over */
.loader-graphic .icon-stroke {
  stroke-dasharray: 300;
  stroke-dashoffset: 300;
  animation:
    svgDraw 1.2s 0.1s cubic-bezier(.4,0,.2,1) forwards,
    svgFade 0.4s 1.3s ease forwards;
}

@keyframes svgDraw { to { stroke-dashoffset: 0; } }
@keyframes svgFade { to { opacity: 0; } }
@keyframes iconFill { to { opacity: 1; } }

.loader-wordmark {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  color: var(--light);
    letter-spacing: -0.03em;
  opacity: 0;
  transform: translateY(10px);
  animation: loaderFadeUp 0.6s 0.3s cubic-bezier(.22,1,.36,1) forwards;
}

.loader-bar-wrap {
  width: 120px;
  height: 2px;
  background: rgba(255,255,255,0.08);
  border-radius: 2px;
  overflow: hidden;
}

.loader-bar {
  height: 100%;
  width: 0%;
  background: var(--gradient);
  border-radius: 2px;
  animation: loaderBar 1.6s 0.4s cubic-bezier(.4,0,.2,1) forwards;
}

@keyframes loaderFadeUp {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes loaderBar {
  to { width: 100%; }
}

.margin-bottom {margin-bottom: 60px !important;}







/* ════════════════════════════════════════
   HEADER / NAV
════════════════════════════════════════ */
#site-header {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 48px);
  max-width: 100%;
  z-index: 10003;
  border-radius: 16px;
  background: rgba(13,13,18,0.2);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 8px 40px rgba(0,0,0,0.4);
  transition: background 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

/* When overlay is open, blend header into the overlay panel */
body.nav-open #site-header {
  background: rgba(9,9,15,0.0);
  border-color: transparent;
  box-shadow: none;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  gap: 32px;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--light);
  white-space: nowrap;
  flex-shrink: 0;
}
.logo-date {
  color: var(--accent);
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
  margin: 0 auto;
}
.nav-links a {
  font-family: 'Grift', system-ui, sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  transition: color 0.2s;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--light); }

/* CTA button — gradient border */
.nav-cta {
  font-family: 'Grift', system-ui, sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--light);
  white-space: nowrap;
  flex-shrink: 0;
  padding: 10px 22px;
  border-radius: 50px;
  position: relative;
  isolation: isolate;
  transition: opacity 0.2s;
}
.nav-cta::before {
  content: '';
  position: absolute;
  inset: -1.5px;
  border-radius: inherit;
  background: linear-gradient(180deg, #7B2EFD 0%, #475FDB 48.56%, #02A0AE 100%);
  z-index: -1;
}
.nav-cta::after {
  content: '';
  position: absolute;
  inset: 1px;
  border-radius: 50px;
  background: rgba(13,13,18,0.85);
  z-index: -1;
}
.nav-cta:hover { opacity: 0.85; }


/* ── Desktop dropdown ─────────────────────────────── */
.nav-item-dropdown { position: relative; }

.nav-dropdown-trigger {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: 'Grift', system-ui, sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.02em;
  padding: 0;
  transition: color 0.2s ease;
}
.nav-dropdown-trigger:hover { color: rgba(255,255,255,0.9); }

.nav-dropdown-chevron {
  transition: transform 0.25s cubic-bezier(.22,1,.36,1);
  flex-shrink: 0;
  opacity: 0.5;
}
.nav-item-dropdown.open .nav-dropdown-chevron { transform: rotate(180deg); }

.nav-dropdown {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  min-width: 240px;
  background: rgba(13,13,20,0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 8px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.25s cubic-bezier(.22,1,.36,1);
  z-index: 100;
}
.nav-dropdown::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  border-radius: 16px 16px 0 0;
  background: linear-gradient(90deg, transparent, rgba(201,184,255,0.2), transparent);
}
.nav-item-dropdown.open .nav-dropdown {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown a {
  display: block;
  padding: 12px 16px;
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.15s ease;
}
.nav-dropdown a:hover { background: rgba(255,255,255,0.05); }

.nav-dropdown-title {
  display: block;
  font-family: 'Grift', system-ui, sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  margin-bottom: 2px;
}
.nav-dropdown-sub {
  display: block;
  font-family: 'Grift', system-ui, sans-serif;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.28);
  line-height: 1.4;
}

/* ── Mobile overlay dropdown ──────────────────────── */

.nav-overlay-dropdown-trigger {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
      padding: 20px 0;
  font-family: "dm-serif-display", Georgia, serif;
     font-size: clamp(2rem, 8vw, 2.8rem);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.55);
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.nav-overlay-chevron {
  transition: transform 0.3s cubic-bezier(.22,1,.36,1);
  opacity: 0.4;
  flex-shrink: 0;
}
.nav-overlay-item-dropdown.open .nav-overlay-chevron { transform: rotate(180deg); }

.nav-overlay-sub {
  list-style: none;
  padding: 0;
  margin: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(.22,1,.36,1);
}
.nav-overlay-item-dropdown.open .nav-overlay-sub {
  max-height: 300px;
}
.nav-overlay-sub li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0 10px 20px;
  font-size: 1em;
  opacity: 0.7;
  border-left: 1px solid rgba(255,255,255,0.08);
  margin-left: 4px;
  text-decoration: none;
  color: #fff;
  transition: opacity 0.2s ease;
}
.nav-overlay-sub li a:hover { opacity: 1; }

h3 {
    font-family: "dm-serif-display", Georgia, serif;
    font-weight: 400;
    font-size: 1.2rem;
    letter-spacing: -0.02em;
    color: var(--light);
    margin-bottom: 12px;
}
p {color: rgba(255, 255, 255, 0.8);}

/* ════════════════════════════════════════
   HERO
════════════════════════════════════════ */

/*Page Hero's*/
.background-image-hero {position: absolute; width: 100%; 
height: 100%;
left:0;
top:0;
z-index: 0;
opacity: 0.1;
background-size: cover; background-position: center; background-repeat: no-repeat;
}

.hero1 {background-image: url(https://fatedate.co.uk/wp-content/uploads/2026/06/hero-about.webp); background-position: center;}
.hero2 {background-image: url(assets/how-hero.webp); background-position: center;}
.hero3 {background-image: url(assets/hero-minimise.webp); background-position: center;}
.hero4 {background-image: url(assets/venue-hero.webp); background-position: center;}



.about-hero-inner, .hiw-hero-inner, .safety-hero-inner, .venues-hero-inner {
    position: relative;
    z-index: 4;
    color:#fff !important;
}

#hero {
  background: var(--dark);
  position: relative;
}

.hero-icon {margin: auto;
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
    opacity: 0.8;}


.hero-icon img {width: 120px;}

.hero-video-container {
    width: 100%;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-kenburns {
    position: absolute;
        inset: -5%;
    background-position: center -130px;
    z-index: 0;
    background-image: url(assets/hero.webp);
    background-size: cover;
    opacity: 0.5;
    transform: scale(1.4);
/*    animation: kenburns 20s ease-in-out infinite alternate;*/
}

@keyframes kenburns {
    0%   { transform: scale(1.6)    translateX(0)   translateY(0); }
    100% { transform: scale(1) translateX(0) translateY(0); }
}

.hero-video {
  position: absolute;
  /* Bleed 30px on every side — more than enough to absorb any parallax shift */
  inset: -30px;
  z-index: 0;
  will-change: transform;
  overflow: hidden;
}

.hero-video video {
  width: 100%;
  height: 110%;
  object-fit: cover;
  object-position: center center;
  opacity: 0.6;
}

/* Dark vignette + left legibility */
/*.hero-video-container::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(108deg, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.5) 42%, rgba(0,0,0,0.1) 70%, transparent 100%),
    radial-gradient(ellipse at 70% 40%, rgba(123,46,253,0.12) 0%, transparent 60%);
  z-index: 1;
  pointer-events: none;
}*/

/* Bottom fade */
.hero-video-container::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 55%;
  background: linear-gradient(to bottom, transparent 0%, rgba(13,13,18,0.6) 45%, var(--dark) 100%);
  z-index: 2;
  pointer-events: none;
}

/* Cursor-tracking orb */
.hero-orb {
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(123,46,253,0.15) 0%, rgba(71,95,219,0.08) 40%, transparent 70%);
  pointer-events: none;
  z-index: 2;
  will-change: transform;
  transition: transform 1s cubic-bezier(.22,1,.36,1);
  filter: blur(10px);
  top: 0;
  left: 0;
}

/* Max-width container that grounds the content */
.hero-inner {
  position: relative;
  z-index: 5;
  width: 100%;
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 20px;
}

.hero-content {
  color: var(--light);
  max-width: 840px;
  margin:auto;
  text-align: center;
}

/* Eyebrow */
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin:auto;
  justify-content: center;
  margin-bottom: 24px;
  opacity: 0;
  animation: heroUp 0.9s 1.5s cubic-bezier(.22,1,.36,1) forwards;
}

.hero-eyebrow span {
  font-family: 'Grift', system-ui, sans-serif;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--accent);
}

/* H1 clip reveal handled by .hw / .hwi below */
.hero-content h1 {
  margin-bottom: 24px;
  line-height: 0.95;
  font-size: 2.6vw !important;
}

.hero-content > p {
  
  max-width:100%;
  opacity: 0;
  line-height: 1.8;
  color: #f4f6fb;
  animation: heroUp 0.9s 2.2s cubic-bezier(.22,1,.36,1) forwards;
  margin:auto;
  margin-bottom: 34px;
}

.cta-container {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: heroUp 0.9s 2.4s cubic-bezier(.22,1,.36,1) forwards;
}
.cta-container a { width: auto; }

@keyframes heroUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.cta {
  display: inline-block;
  border-radius: 50px;
  padding: 15px 38px;
  font-family: 'Grift', system-ui, sans-serif;
  font-weight: 900;
  font-size: 0.95rem;
  white-space: nowrap;
  letter-spacing: 0.01em;
  transition: transform 0.25s cubic-bezier(.22,1,.36,1), box-shadow 0.25s;
}
.cta:hover { transform: translateY(-3px); }
.cta-gradient {
  color: var(--light);
  box-shadow: 0 8px 28px rgba(123,46,253,0.4);
}
.cta-gradient:hover { box-shadow: 0 14px 40px rgba(123,46,253,0.55); }
.cta-dark {
  background: rgba(255,255,255,0.07);
  color: var(--light);
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.cta-dark:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.28); }

/* Scroll hint — bottom right, vertical text with dropping light */
.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  right: 3.5rem;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0;
  animation: heroUp 1s 2.8s ease forwards;
}
.hero-scroll-hint span {
  font-family: 'Grift', system-ui, sans-serif;
  font-size: 0.58rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
  writing-mode: vertical-rl;
}
.hero-scroll-line {
  width: 1px;
  height: 56px;
  background: rgba(255,255,255,0.1);
  position: relative;
  overflow: hidden;
  border-radius: 1px;
}
.hero-scroll-runner {
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent, var(--accent), transparent);
  animation: scrollDrop 2.2s 3.2s ease-in-out infinite;
}
@keyframes scrollDrop {
  0%   { top: -100%; }
  100% { top: 200%; }
}

/* Floating proof chips */
.hero-chips {
  position: absolute;
  left: 40px;
  bottom: 5%;
  z-index: 5;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
}
.hero-chip {
  display: flex;
  align-items: center;
  gap: 9px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50px;
  padding: 10px 18px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  font-family: 'Grift', system-ui, sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  white-space: nowrap;
  opacity: 0;
  transform: translateX(24px);
}
.hero-chip svg { color: var(--accent); flex-shrink: 0; }
.chip-live {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4ade80;
  flex-shrink: 0;
  animation: livePulse 2s ease-in-out infinite;
}
@keyframes livePulse {
  0%, 100% { box-shadow: 0 0 0 0px rgba(74,222,128,0.4); }
  50%       { box-shadow: 0 0 0 5px rgba(74,222,128,0); }
}
.chip-1 { animation: chipSlide 0.7s 2.55s cubic-bezier(.22,1,.36,1) forwards; }
.chip-2 { animation: chipSlide 0.7s 2.75s cubic-bezier(.22,1,.36,1) forwards; }
@keyframes chipSlide { to { opacity: 1; transform: translateX(0); } }

/* H1 per-word clip reveal (.hw / .hwi in HTML) */
.hw {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  padding-bottom: 0.06em;
}
.hwi {
  display: inline-block;
  transform: translateY(108%);
  opacity: 0;
  animation: wordReveal 1s cubic-bezier(.22,1,.36,1) forwards;
}
.hw:nth-child(1) .hwi { animation-delay: 1.55s; }
.hw:nth-child(3) .hwi { animation-delay: 1.72s; }
.hw:nth-child(5) .hwi { animation-delay: 1.89s; }
@keyframes wordReveal {
  to { transform: translateY(0); opacity: 1; }
}

/* Animated gradient line draws across bottom of hero on load */
.hero-draw-line {
  position: absolute;
  bottom: 0; left: 0;
  height: 1px;
  width: 0;
  z-index: 6;
  background: linear-gradient(90deg, transparent 0%, rgba(201,184,255,0.5) 40%, rgba(2,160,174,0.4) 70%, transparent 100%);
  animation: drawAcross 1.6s 1.1s cubic-bezier(.22,1,.36,1) forwards;
}
@keyframes drawAcross { to { width: 100%; } }




.safety-video-card.fd-reveal.fd-fade-up.fd-delay-3.fd-visible {
    margin-top: 20px;
}

#fate-ribbon-full {
  position: absolute;
  bottom: 0px; left: 0;
  width: 100%;
  z-index: 4;
  pointer-events: none;
}
#fate-ribbon-full svg { width: 100%; height: 250px; opacity: 0.6; }


/* ════════════════════════════════════════
   SCROLL SECTION
════════════════════════════════════════ */
#scroll-section {
  position: relative;
  height: calc(var(--steps, 3) * 100vh);
  background: linear-gradient(180deg, var(--dark) 0%, #09091a 50%, #080e14 100%);
  color: var(--light);
}
/* Top gradient — fades in from hero's dark base colour */
#scroll-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 18vh;
  background: linear-gradient(to bottom, var(--dark) 0%, transparent 100%);
  z-index: 5;
  pointer-events: none;
}
/* Bottom gradient — fades out to safety section bg */
#scroll-section::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 18vh;
  background: linear-gradient(to top, #080e14 0%, transparent 100%);
  z-index: 5;
  pointer-events: none;
}

.glow-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  transition: opacity 1.2s ease;
}
.glow-1 { width:500px; height:500px; background:radial-gradient(circle,rgba(58,31,110,.75) 0%,transparent 100%); top:5%;    left:0; }
.glow-2 { width:500px; height:400px; background:radial-gradient(circle,rgba(13,61,58,.65)  0%,transparent 100%); top:40%;   right:0; }
.glow-3 { width:400px; height:400px; background:radial-gradient(circle,rgba(58,31,110,.55) 0%,transparent 100%); bottom:5%; left:5%; }

/* Per-step ambient light around the phone */
.phone-ambient {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 400px;
  height: 700px;
  transform: translate(-50%, -50%) scale(var(--phone-scale));
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
  z-index: 1;
  background: radial-gradient(ellipse, rgba(123,46,253,0.2) 0%, transparent 70%);
  transition: background 1s ease;
}

.sticky-wrap {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.scroll-container {
  position: relative;
  width: 100%;
  max-width: 1480px;
  height: 100%;
  padding: 0 40px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}


/* ════════════════════════════════════════
   CSS 3D PHONE
════════════════════════════════════════ */
.phone-scene {
  position: absolute;
  left: 50%;
  top: 50%;
  perspective: 1200px;
  z-index: 2;
  transform: translate(-50%, -50%) scale(var(--phone-scale));
}

@keyframes phoneFloat {
  0%, 100% { translate: 0 0; }
  50%       { translate: 0 -16px; }
}

.phone-rotor {
  transform-style: preserve-3d;
  width: 186px;
  height: 372px;
  position: relative;
  animation: phoneFloat 7s ease-in-out infinite;
}

.phone-front {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, #12122a 0%, #0a0a18 100%);
  border-radius: 36px;
  box-shadow:
    0 0 0 1.5px #2e2e50,
    0 0 0 3px #1a1a30,
    0 48px 120px rgba(0,0,0,0.9),
    inset 0 1px 0 rgba(255,255,255,0.08);
  transform: translateZ(11px);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}



.feature-phone-image {position: absolute;
    width: 40%;
    opacity: 0.6;
    right: -20px;
    top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  max-width: 200px;
  }

.dark-verion {display: block;}
.light-version {display: none; opacity: 0.8;}
.light-mode .light-version {display: block;}
.light-mode .dark-version {display: none;}


.phone-screen {
  width: 166px;
  height: 350px;
  border-radius: 30px;
  overflow: hidden;
  position: relative;
  background: #000;
}

.phone-notch {
  position: absolute;
  top: 13px; left: 50%;
  transform: translateX(-50%);
  width: 36px; height: 10px;
  background: #04040c;
  border-radius: 50px;
  z-index: 10;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.04);
}

.phone-front::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.07) 0%, transparent 45%);
  border-radius: 36px;
  pointer-events: none;
  z-index: 5;
}

.phone-back {
  position: absolute;
  inset: 0;
  background: linear-gradient(150deg, #0d0d22 0%, #0a0a18 60%, #0f0f28 100%);
  border-radius: 36px;
  box-shadow:
    inset 0 0 0 1.5px #2a2a48,
    inset 0 0 0 3px #16162e;
  transform: translateZ(-11px) rotateY(180deg);
  overflow: hidden;
}
.phone-back::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.03) 0%, transparent 50%);
  border-radius: 36px;
}

.camera-bump {
  position: absolute;
  top: 24px; left: 20px;
  width: 60px; height: 62px;
  background: linear-gradient(145deg, #0c0c20, #080814);
  border-radius: 18px;
  box-shadow:
    0 4px 14px rgba(0,0,0,0.7),
    inset 0 0 0 1px #28284a,
    inset 0 1px 0 rgba(255,255,255,0.04);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px; padding: 10px;
  align-items: center; justify-items: center;
}

.lens {
  width: 17px; height: 17px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #1e1e38, #020206);
  box-shadow:
    0 0 0 1px #141428,
    0 0 0 2.5px #1e1e36,
    inset 0 0 6px rgba(140,120,255,0.15),
    inset 0 1px 0 rgba(255,255,255,0.06);
}
.lens-sm {
  width: 11px; height: 11px;
  grid-column: 1/-1; justify-self: start; margin-left: 2px;
}

.phone-edge {
  position: absolute;
  transform-style: preserve-3d;
}
.edge-left  {
  width: 22px; height: 372px; top: 0; left: -11px;
  transform: rotateY(-90deg) translateZ(0);
  transform-origin: right center;
  border-radius: 36px 0 0 36px;
  background: linear-gradient(to bottom, #181830, #242448, #181830);
  box-shadow: inset -1px 0 0 rgba(255,255,255,0.04);
}
.edge-right {
  width: 22px; height: 372px; top: 0; right: -11px;
  transform: rotateY(90deg) translateZ(0);
  transform-origin: left center;
  border-radius: 0 36px 36px 0;
  background: linear-gradient(to bottom, #181830, #242448, #181830);
  box-shadow: inset 1px 0 0 rgba(255,255,255,0.04);
}

/* Buttons live on the edges in 3D space so they stay attached during rotation */
.btn {
  position: absolute;
  background: linear-gradient(to right, #1a1a38, #2a2a50, #1a1a38);
  border-radius: 3px 0 0 3px;
  transform-style: preserve-3d;
}
/* Power button — sits on right edge, protrudes outward */
.btn-power {
  width: 3px; height: 52px;
  top: 100px; left: -3px;
  transform: translateZ(2px);
  border-radius: 3px 0 0 3px;
  background: linear-gradient(to left, #242448, #2e2e58, #242448);
}
/* Vol buttons — sit on left edge, protrude outward */
.btn-vol1 {
  width: 3px; height: 36px;
  top: 112px; right: -3px;
  transform: translateZ(2px);
  border-radius: 0 3px 3px 0;
  background: linear-gradient(to right, #242448, #2e2e58, #242448);
}
.btn-vol2 {
  width: 3px; height: 36px;
  top: 158px; right: -3px;
  transform: translateZ(2px);
  border-radius: 0 3px 3px 0;
  background: linear-gradient(to right, #242448, #2e2e58, #242448);
}

#screen-canvas { width:100%; height:100%; display:block; border-radius:20px; }


/* ════════════════════════════════════════
   CONTENT PANELS — matched to screenshot typography
════════════════════════════════════════ */
.panel {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 32%;
  max-width: 420px;
  /* height matches phone so step content vertically centres on phone midpoint */
  height: calc(340px * var(--phone-scale, 1.75));
}
.panel-left  { left: 40px; }
.panel-right { right: 40px; text-align: right; }

.step {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  opacity: 0;
  transform: translateY(calc(-50% + 24px));
  transition: opacity 0.7s cubic-bezier(.22,1,.36,1),
              transform 0.7s cubic-bezier(.22,1,.36,1);
}
.step.from-right { transform: translateY(calc(-50% + 24px)); }
.step.active     { opacity: 1; transform: translateY(-50%) !important; }

.squiggle              { display:block; margin-bottom:1.2rem; opacity:0.45; }
.panel-right .squiggle { margin-left:auto; }

.squiggle1 {position: absolute;
    top: -30px;
    right: 20px;
    width: 140px;
    height: 50px;
    z-index: -1;
}




.squiggle3 {position: absolute;
    top: -30px;
    left: 20px;
    width: 140px;
    height: 50px;
    z-index: -1;
}


.squiggle2 {position: absolute;
    top: -30px;
    right: 20px;
    width: 140px;
    height: 50px;
    z-index: -1;
}


/* Eyebrow: "01 Make the right" — number bold, text normal, same line */
.step-eyebrow {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  font-family: 'Grift', system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.8);
  margin-bottom: 0.5rem;
  text-transform: none;
}
.step-eyebrow strong {
  font-size: 1rem;
  font-weight: 900;
  color: var(--light);
}
.step-eyebrow .sub { font-weight: 500; }
.panel-right .step-eyebrow { justify-content: flex-end; }

.step-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  line-height: 1.2;
  margin-bottom: 1.2rem;
  color: var(--light);
  letter-spacing: -0.02em;
}

h2.step-title {line-height: 1.2 !important;}

.step-body {
  font-family: 'Grift', system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.7;
  color: rgba(255,255,255,0.75);
  max-width: 32ch;
}
.panel-right .step-body { margin-left: auto; }

.progress-dots {
  position: absolute; bottom: 2rem; left: 50%;
  transform: translateX(-50%); display: flex; gap: 8px; z-index: 5;
}
.dot       { height:5px; width:5px; border-radius:3px; background:rgba(255,255,255,0.15); transition:background 0.4s, width 0.4s; }
.dot.active { background:var(--accent); width:20px; }


/* ════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════ */
@media (max-width: 1024px) {
  .panel { width: 30%; }
  .step-title { font-size: clamp(1.8rem, 2.8vw, 2.6rem); }
  .scroll-container { padding: 0 24px; }
}

@media (max-width: 900px) {
  .hero-content { text-align: center; }
  .panel        { width: 34%; }
}

@media (max-width: 700px) {
  :root { --phone-scale: 1; }
  .phone-scene { opacity: 0.18; pointer-events: none; }
.scroll-container {overflow:hidden;}
.phone-ambient {width: 100%;}

  .panel {
    width: 90%; max-width: none;
    left: 50% !important; right: auto !important;
    transform: translate(-50%, -50%); text-align: left !important;
    height: auto;
  }
  .panel-right { text-align: left !important; }
  /* On mobile step sits at top of panel, not vertically centred */
  .step { top: 0; transform: translateY(24px); }
  .step.active { transform: translateY(0) !important; }
  .panel-right .squiggle        { margin-left: 0; }
  .panel-right .step-eyebrow    { justify-content: flex-start; }
  .panel-right .step-body       { margin-left: 0; }
  .step-title                   { font-size: clamp(2rem, 7vw, 2.8rem); }
  .step.active::before {
    content: '';
    position: absolute; inset: -1.5rem -1.2rem;
    background: rgba(11,11,18,0.72);
    backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
    border-radius: 16px; border: 1px solid rgba(255,255,255,0.06); z-index: -1;
  }
}

@media (max-width: 480px) {
  .step-title { font-size: clamp(1.8rem, 8vw, 2.6rem); }
  .progress-dots { bottom: 1.2rem; }
}

/* ════════════════════════════════════════
   SAFETY + PERKS SECTIONS
════════════════════════════════════════ */
#safety-section,
#perks-section {
  background: var(--darkerbg) ;
  color: var(--light);
  padding: 120px 0;
  position: relative;
}

/*#safety-section::before {
  content: '';
  position: absolute;
  top: 0; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,184,255,0.12), transparent);
}*/

button.nav-dropdown-trigger {
    padding-top: 2px;
}

#perks-section {
  background: var(--darkerbg);
  padding-bottom: 140px;
}

#perks-section::before {
  content: '';
  position: absolute;
  top: 0; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,184,255,0.1), transparent);
}

.safety-container {
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 48px;
  padding-bottom: 60px;
  overflow: hidden;
}

/* Centred header */
.section-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 4rem;
}

.section-eyebrow-pill {
  display: inline-block;
  font-family: 'Grift', system-ui, sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.7);
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50px;
  padding: 8px 24px;
  margin-bottom: 1.4rem;
}

.section-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 1.2;
  color: var(--light);
  text-align: center;
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.85s cubic-bezier(.22,1,.36,1), transform 0.85s cubic-bezier(.22,1,.36,1);
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }

/* ════════════════════════
   SAFETY GRID
════════════════════════ */
.safety-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.safety-app-card {
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.03) inset, 0 24px 60px rgba(0,0,0,0.5);
  border:1px solid #fff;
}

.app-card-header {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 22px 22px 18px;
  flex-direction: column;
}

.difference {margin-top:20px;}



.app-card-icon {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}

.app-card-icon::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(180deg, #7B2EFD 0%, #475FDB 48.56%, #02A0AE 100%);
  z-index: -1;
}

.app-card-icon::after {
  content: '';
  position: absolute;
  inset: 1px; /* cancels out the -1px, leaving just the border edge */
  border-radius: 15px; /* 1px less than the parent */
  background: #1a1228; /* match your card background exactly */
  z-index: -1;
}

.app-card-label {
  font-family: 'Grift', system-ui, sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--light);
  margin-bottom: 4px;
}

.app-card-sub {
  font-family: 'Grift', system-ui, sans-serif;
  font-size: 1rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.5;
}

.app-card-photos {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  height: 50%;
}
.safety-copy {position: relative;}

.safety-copy .hero-icon {
    margin: auto;
    display: flex;
    position: absolute;
    justify-content: center;
    margin-bottom: 20px;
    opacity: 0.03;
    left: 20%;
    top: 50%;
    /* width: 100%; */
}
.safety-copy .hero-icon img {width: 300px;}

.photo-slot {
  overflow: hidden;
  position: relative;
  background: #1a1a2e;
}

.photo-slot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.photo-slot-fade {
  -webkit-mask-image: linear-gradient(to right, black 30%, transparent 100%);
  mask-image: linear-gradient(to right, black 30%, transparent 100%);
}

.safety-heading {
  font-family: var(--serif);

  font-weight: 400;
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  line-height: 1.1;
  color: var(--light);
  margin-bottom: 1.1rem;
}

.safety-body {
  font-family: 'Grift', system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.5);
  margin-bottom: 2rem;
}

.safety-video-card {
  display: block;
  gap: 18px;
  align-items: flex-start;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 18px;
  padding: 0;
  transition: border-color 0.35s, background 0.35s;
}
.safety-video-card:hover {
  border-color: rgba(201,184,255,0.18);
  background: rgba(123,46,253,0.04);
}

.safety-app-card.fd-reveal.fd-slide-left.fd-delay-1.fd-visible {
    height: 100%;
}

.safety-video-card #fate-ribbon-relative svg {
    width: 100%;
    height: 100px;
    opacity: 1;
}

.safety-video-copy {padding: 18px;}

.safety-video-thumb {
  position: relative;
  width: 130px;
  height: 90px;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
  background: linear-gradient(135deg, #1a3a5c, #0d2035);
}
.safety-video-thumb img { width:100%; height:100%; object-fit:cover; }

.play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.35);
  color: #fff;
  cursor: pointer;
  border: none;
  transition: background 0.2s;
}
.play-btn:hover { background: rgba(0,0,0,0.55); }

.safety-video-title {
  font-family: 'Grift', system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--light);
  margin-bottom: 8px;
  line-height: 1.3;
}

.safety-video-body {
  font-family: 'Grift', system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.45);
}

/* ════════════════════════
   PERKS GRID
════════════════════════ */
.perks-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.perk-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 18px;
  padding: 22px 18px;
  padding-top:40px !important;
  transition: border-color 0.35s, background 0.35s, transform 0.35s cubic-bezier(.22,1,.36,1);
  border:1px solid var(--white);
  text-align: center;
  margin-bottom:20px;
}
.perk-card:hover {
  border-color: rgba(201,184,255,0.22);
  background: rgba(123,46,253,0.07);
  transform: translateY(-5px);
}

.perk-card .perk-icon {position: absolute; top:-20px; left: 50%;
  transform: translateX(-50%);}


.safety-container .perk-card {flex-direction: column;}



.perk-icon {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}

.value-card .perk-icon {margin-bottom: 20px; position: absolute; top:-20px; left: 50%;
  transform: translateX(-50%);}

.perk-icon::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(180deg, #7B2EFD 0%, #475FDB 48.56%, #02A0AE 100%);
  z-index: -1;
}

.perk-icon::after {
  content: '';
  position: absolute;
  inset: 1px; /* cancels out the -1px, leaving just the border edge */
  border-radius: 15px; /* 1px less than the parent */
  background: #1a1228; /* match your card background exactly */
  z-index: -1;
}

.perk-title {
  font-family: 'Grift', system-ui, sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--light);
  margin-bottom: 5px;
}

.perk-body {
  font-family: 'Grift', system-ui, sans-serif;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.55;
}


.ribbon-top {top:-50px !important; opacity: 0.3; z-index: 0 !important;}

#venues-section {padding:0 20px; margin-bottom: 40px; padding-top:20px;}
.venues-container {background:var(--black); border-radius: 25px; padding: 60px 40px; color:var(--white);}
.venues-container .section-header {max-width: 800px; margin:auto;}
.section-header p {margin-bottom: 20px; color: var(--white);}

.venues-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top:40px;
  margin-bottom:40px;
}

.venue-card {
  border:2px solid #4D4D4D;
  border-radius: 20px;
  overflow: hidden;
  /* Gradient background matching the screenshot — teal bottom-left, purple top-right */
  background:
    radial-gradient(ellipse at 0% 100%, rgba(58, 31, 110, .75) 0%, transparent 55%),
    radial-gradient(ellipse at 100% 0%, rgba(13, 61, 58, .65) 0%, transparent 55%),
    #0f1a1a;
  transition: transform 0.3s cubic-bezier(.22,1,.36,1), box-shadow 0.3s;
}

.venue-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.venue-card-inner {
  padding: 36px;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.venue-eyebrow {
  font-family: 'Grift', system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: var(--white);
}

.venue-eyebrow strong {
  color: var(--light);
  font-weight: 700;
}

.venue-title {
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2vw, 1.75rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--light);
  margin: 0;
}

.venue-body {
  font-family: 'Grift', system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: var(--white);
  line-height: 1.75;
  flex: 1;
}

.venue-btn {
  display: inline-block;
  align-self: flex-start;
  margin-top: auto;
  padding: 10px 24px;
  border-radius: 50px;
  border: 1.5px solid rgba(255,255,255,0.3);
  font-family: 'Grift', system-ui, sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--light);
  transition: border-color 0.25s, background 0.25s;
}

.venue-btn:hover {
  border-color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.08);
}


.section-crop { max-width: 800px; margin:auto; color:var(--white);}



#fate-ribbon-relative {
  position: relative;
  width: 100%;
  z-index: 4;
  pointer-events: none;
}
#fate-ribbon-relative svg { width: 100%; height: 250px; opacity: 0.6; }




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

/* ── Tablet: 1024px ─────────────────────── */
@media (max-width: 1024px) {
  .safety-container { padding: 0 32px; }
  .perks-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── Tablet: 900px ──────────────────────── */
@media (max-width: 900px) {
  .safety-grid { grid-template-columns: 1fr; gap: 36px; }
  .perks-grid  { grid-template-columns: repeat(2, 1fr); }
  .venues-grid { grid-template-columns: 1fr 1fr; }
}

/* ── Mobile landscape: 768px ─────────────── */
@media (max-width: 768px) {
  /* Nav */
  #site-header { top: 10px; width: calc(100% - 24px); }
  .nav-links { display: none; }
  .nav-inner { padding: 12px 18px; }

  /* Hero chips: move to top right, smaller */
  .hero-chips {
    
        left: 20px;
        right: inherit;
        bottom: auto;
        bottom: 0px !important;
        flex-direction: column;
        gap: 8px;
        top: inherit;
  }
  .hero-chip { font-size: 0.68rem; padding: 8px 14px; }

  /* Hero scroll hint hidden on touch */
  .hero-scroll-hint { display: none; }

  /* Venues */
  .venues-grid { grid-template-columns: 1fr; }
  .venues-container { padding: 40px 24px; border-radius: 18px; }
  #venues-section { padding: 0 12px; }

  /* Carousel */
  .img-carousel-item { width: 260px; height: 200px; }
  .img-carousel-wrap::before,
  .img-carousel-wrap::after { width: 60px; }

    /* Carousel */
  .img-carousel-item2 { width: 260px; height: 200px; }
  .img-carousel-wrap2::before,
  .img-carousel-wrap2::after { width: 60px; }


  /* Safety */
  .safety-container { padding: 0 24px; }

  /* Lower third */
  .process-grid { grid-template-columns: 1fr; gap: 24px;  }
}

/* ── Mobile portrait: 480px ─────────────── */
@media (max-width: 480px) {
  /* Sections */
  #safety-section, #perks-section { padding: 70px 0; }
  #lower-third { padding: 60px 0; }
  .safety-container { padding: 0 16px; }

  /* Hero */
  #hero { padding: 10px 10px 0; }
  .hero-video-container { height: calc(100svh - 10px); border-radius: 14px 14px 0 0; }
  .hero-content { padding: 0 16px 36px; }
  .cta-container { flex-direction: column; align-items: center; gap: 10px; }
  .cta { padding: 12px 28px; font-size: 0.88rem; width: 100%; max-width: 280px; text-align: center; position: relative; z-index: 4;}

.hero-chips {left:10px;}

  /* Perks */
  .perks-grid { grid-template-columns: 1fr; }
  .app-card-photos { height: 170px; }

  /* Venues */
  .venue-card-inner { padding: 24px 20px; }
  .venues-grid { gap: 12px; }
  .venues-container { padding: 32px 16px; border-radius: 14px; }

  /* Process */
  .process-grid { grid-template-columns: 1fr; gap: 16px; }
  .process-card { padding: 18px 14px; }

  /* Download icons */
  .download-icons { gap: 16px; }
  .download-icons img { max-width: 130px; }
}



/* ════════════════════════════════════════
   MOBILE NAV — FULL-SCREEN OVERLAY
════════════════════════════════════════ */

/* Hamburger button — hidden on desktop */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 0;
  cursor: pointer;
  background: none;
  border: none;
  flex-shrink: 0;
  position: relative;
  z-index: 10002;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: rgba(255,255,255,0.9);
  border-radius: 2px;
  transform-origin: center;
  transition: transform 0.45s cubic-bezier(.22,1,.36,1),
              opacity   0.3s ease,
              width     0.3s ease;
}
.nav-hamburger span:nth-child(3) { width: 14px; }

/* Open state: morph to × */
.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); width: 22px; }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); width: 22px; }

/* Full-screen overlay */
.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 10001;
  display: flex;
  flex-direction: column;
  pointer-events: none;
  visibility: hidden;
}

/* Background panel — slides in from top */
.nav-overlay-bg {
  position: absolute;
  inset: 0;
  background: rgba(9,9,15,0.98);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  transform: translateY(-100%);
  transition: transform 0.65s cubic-bezier(.22,1,.36,1);
}

/* Decorative gradient orb inside overlay */
.nav-overlay-bg::after {
  content: '';
  position: absolute;
  bottom: -10%;
  right: -5%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(123,46,253,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.nav-overlay.open {
  pointer-events: auto;
  visibility: visible;
}
.nav-overlay.open .nav-overlay-bg {
  transform: translateY(0);
}

/* Inner layout */
.nav-overlay-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding: 100px 36px 48px;
  overflow: hidden;
}

/* Primary links */
.nav-overlay-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.nav-overlay-links li {
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.nav-overlay-links li:first-child { border-top: 1px solid rgba(255,255,255,0.05); }

.nav-overlay-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  font-family: var(--serif);
  font-size: clamp(2rem, 8vw, 2.8rem);
  font-weight: 400;
  color: rgba(255,255,255,0.55);
  letter-spacing: -0.01em;
  line-height: 1;
  transition: color 0.3s ease, padding-left 0.35s cubic-bezier(.22,1,.36,1);
  transform: translateY(40px);
  opacity: 0;
  transition: transform 0.6s cubic-bezier(.22,1,.36,1),
              opacity   0.6s cubic-bezier(.22,1,.36,1),
              color     0.25s ease,
              padding-left 0.3s ease;
}

.nav-overlay-links a .link-arrow {
  font-size: 1rem;
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.25s ease, transform 0.3s cubic-bezier(.22,1,.36,1);
  color: var(--accent);
}




@media (hover: hover) {
  .nav-overlay-links a:hover {
    color: var(--light);
    padding-left: 8px;
  }
  .nav-overlay-links a:hover .link-arrow {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Staggered reveal on open */
.nav-overlay.open .nav-overlay-links a {
  opacity: 1;
  transform: translateY(0);\
  color:#fff;
}
.nav-overlay.open .nav-overlay-links li:nth-child(1) a { transition-delay: 0.15s;  }
.nav-overlay.open .nav-overlay-links li:nth-child(2) a { transition-delay: 0.20s; }
.nav-overlay.open .nav-overlay-links li:nth-child(3) a { transition-delay: 0.25s; }
.nav-overlay.open .nav-overlay-links li:nth-child(4) a { transition-delay: 0.30s; }

/* Footer area of overlay */
.nav-overlay-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.nav-overlay.open .nav-overlay-footer {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.42s;
}

.nav-overlay-cta {
  font-family: 'Grift', system-ui, sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--light);
  padding: 12px 28px;
  border-radius: 50px;
  background: var(--gradient);
  box-shadow: 0 8px 28px rgba(123,46,253,0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.nav-overlay-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(123,46,253,0.5);
}

.nav-overlay-tagline {
  font-family: 'Grift', system-ui, sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.22);
}

@media (max-width: 768px) {
  .nav-hamburger { display: flex; }
  .nav-cta { display: none; }
}
@media (min-width: 769px) {
  .nav-overlay { display: none !important; }
}

/* ════════════════════════════════════════
   CUSTOM CURSOR
════════════════════════════════════════ */
*, *::before, *::after { cursor: none !important; }

#cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  will-change: transform;
  transform: translate(-50%, -50%);
  transition: width 0.3s ease, height 0.3s ease, background 0.3s ease;
}

#cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  width: 36px;
  height: 36px;
  border: 1.5px solid rgba(201,184,255,0.45);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99998;
  will-change: transform;
  transform: translate(-50%, -50%);
  transition: width 0.4s cubic-bezier(.22,1,.36,1),
              height 0.4s cubic-bezier(.22,1,.36,1),
              border-color 0.4s ease,
              background 0.4s ease;
}

body.cursor-hover #cursor-dot {
  width: 12px;
  height: 12px;
  background: #fff;
}

body.cursor-hover #cursor-ring {
  width: 56px;
  height: 56px;
  border-color: rgba(201,184,255,0.2);
  background: rgba(201,184,255,0.05);
}

@media (hover: none) {
  #cursor-dot, #cursor-ring { display: none; }
  *, *::before, *::after { cursor: auto !important; }
}

/* ════════════════════════════════════════
   SCROLL-DRIVEN IMAGE CAROUSEL
════════════════════════════════════════ */
.img-carousel-wrap {
  width: 100%;
  overflow: hidden;
  margin: 60px 0;
  position: relative;
}

/* Soft fade masks on both edges */
.img-carousel-wrap::before,
.img-carousel-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 200px;
  z-index: 2;
  pointer-events: none;
}
.img-carousel-wrap::before {
  left: 0;
  background: linear-gradient(to right, var(--dark), transparent);
}
.img-carousel-wrap::after {
  right: 0;
  background: linear-gradient(to left, var(--dark), transparent);
}

.img-carousel-track {
  display: flex;
  gap: 20px;
  width: max-content;
  will-change: transform;
  padding: 8px 40px;
}

.img-carousel-item {
  width: 380px;
  height: 280px;
  border-radius: 18px;
  overflow: hidden;
  flex-shrink: 0;
  background: linear-gradient(135deg, #1a1030 0%, #0d1a20 100%);
  position: relative;
  border: 1px solid rgba(255,255,255,0.06);
}

/* Placeholder label */
/*.img-carousel-item::after {
  content: 'Add your image';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Grift', system-ui, sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.15);
}*/

.img-carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: relative;
  z-index: 1;
  transition: transform 0.6s cubic-bezier(.22,1,.36,1);
}
.img-carousel-item:hover img {
  transform: scale(1.04);
}

@media (max-width: 768px) {
  .img-carousel-item { width: 260px; height: 200px; }
  .img-carousel-wrap::before,
  .img-carousel-wrap::after { width: 60px; }
}









#lower-third {position: relative;}
/* ════════════════════════
   PERKS GRID
════════════════════════ */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 40px;
  margin-top:40px;
}

.process-card {
  text-align: center;
  padding: 22px 18px;
  transition: border-color 0.35s, background 0.35s, transform 0.35s cubic-bezier(.22,1,.36,1);
}
.process-card:hover {
  border-color: rgba(201,184,255,0.22);
  transform: translateY(-5px);
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 18px;
}

.process-icon {
  width: 46px;
  height: 46px;
  margin:auto;
  border-radius: 16px;
  isolation: isolate;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
  margin-bottom: 20px;
}

.process-icon::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(180deg, #7B2EFD 0%, #475FDB 48.56%, #02A0AE 100%);
  z-index: -1;
}

.process-icon::after {
  content: '';
  position: absolute;
  inset: 1px; /* cancels out the -1px, leaving just the border edge */
  border-radius: 15px; /* 1px less than the parent */
  background: #1a1228; /* match your card background exactly */
  z-index: -1;
}

.process-title {
  font-family: 'Grift', system-ui, sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--light);
  margin-bottom: 5px;
}

.process-body {
  font-family: 'Grift', system-ui, sans-serif;
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.55;
}



.download-icons {display: flex; align-items: center; justify-content: center; gap: 24px; width: 100%; max-width: 400px; margin: 0 auto 40px; opacity: 0.5;}



/* ════════════════════════════════════════
   FOOTER
════════════════════════════════════════ */
#site-footer {
  background: transparent;
  color: var(--light);
  padding: 0;
}

.footer-inner {
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 48px;
}

/* ── Top row: logo + nav columns ── */
.footer-top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  padding: 72px 0 80px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer-brand {
  display: flex;
  align-items: flex-start;
}

.footer-logo {
  display: block;
}
.footer-logo img {
  height: 28px;
  width: auto;
  opacity: 0.9;
  filter: brightness(0) invert(1);
}

/* Three columns */
.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-col a {
  font-family: 'Grift', system-ui, sans-serif;
  font-size: 0.92rem;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s ease;
  width: fit-content;
}
.footer-col a:hover { color: rgba(255,255,255,0.9); }

.footer-email {
  color: rgba(255,255,255,0.85) !important;
  text-decoration: underline;
  text-decoration-color: rgba(255,255,255,0.25);
  text-underline-offset: 3px;
  transition: color 0.2s ease, text-decoration-color 0.2s ease !important;
}
.footer-email:hover {
  text-decoration-color: rgba(255,255,255,0.6) !important;
}

/* ── Bottom row: copyright + ribbon ── */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 32px 0 36px;
  gap: 24px;
}

.footer-copy {
  font-family: 'Grift', system-ui, sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255,255,255,0.28);
  flex-shrink: 0;
}

.footer-ribbon {
  flex: 1;
  max-width: 480px;
  display: flex;
  justify-content: flex-end;
}
.footer-ribbon svg {
  width: 100%;
  height: auto;
  max-height: 80px;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 56px 0 64px;
  }
}

@media (max-width: 768px) {
  .footer-inner { padding: 0 24px; }
  .footer-nav { grid-template-columns: repeat(2, 1fr); gap: 32px 20px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 20px; }
  .footer-ribbon { max-width: 100%; justify-content: flex-start; }
}

@media (max-width: 480px) {
  .footer-inner { padding: 0 16px; }
  .footer-nav { grid-template-columns: 1fr 1fr; }
  .footer-top { padding: 48px 0 52px; }
}


/* ════════════════════════════════════════
   AWWWARDS FACELIFT — PREMIUM LAYER
   Overrides & enhancements across all sections
════════════════════════════════════════ */

/* ── Global refinements ──────────────── */
:root {
  --radius-card: 24px;
  --border-subtle: 1px solid rgba(255,255,255,0.06);
  --border-mid:    1px solid rgba(255,255,255,0.1);
  --shadow-lift:   0 24px 64px rgba(0,0,0,0.55);
  --shadow-card:   0 8px 32px rgba(0,0,0,0.4), 0 1px 0 rgba(255,255,255,0.04) inset;
  --ease-spring:   cubic-bezier(.22,1,.36,1);
}

/* Grain texture overlay on body — adds depth without competing */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 99990;
  pointer-events: none;
  opacity: 0.028;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px 200px;
}

/* ── Loader — add subtle logo scale ─── */
.loader-graphic {
  animation: loaderPulse 3s ease-in-out infinite;
}
@keyframes loaderPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.04); }
}

/* ── Nav — sharpen pill, add scrolled state ── */
#site-header {
  border-radius: 20px;
  border: var(--border-subtle);
}
#site-header.scrolled {
  background: rgba(10,10,16,0.88) !important;
  border-color: rgba(255,255,255,0.1) !important;
  box-shadow: 0 12px 48px rgba(0,0,0,0.6) !important;
}
.nav-links a {
  position: relative;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.5);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: var(--accent);
  transition: width 0.3s var(--ease-spring);
}
.nav-links a:hover { color: var(--light); }
.nav-links a:hover::after { width: 100%; }

/* ── Hero — richer overlays, larger orb ─ */
.hero-video-container::before {
  background:
    linear-gradient(108deg, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.55) 38%, rgba(0,0,0,0.05) 80%, transparent 100%),
    radial-gradient(ellipse at 65% 45%, rgba(123,46,253,0.18) 0%, transparent 55%);
}
.hero-orb {
  width: 900px;
  height: 900px;
  background: radial-gradient(circle, rgba(123,46,253,0.18) 0%, rgba(71,95,219,0.1) 35%, transparent 70%);
  filter: blur(40px);
  transition: left 1.4s var(--ease-spring), top 1.4s var(--ease-spring);
}

/* Hero eyebrow — add gradient dot before text */
.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gradient);
  flex-shrink: 0;
  display: none;
}

/* Hero chips — more glass */
.hero-chip {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.06);
  font-size: 0.72rem;
  letter-spacing: 0.02em;
}

/* CTA buttons — premium refinement */
.cta {
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  padding: 14px 36px;
  border-radius: 50px;
  position: relative;
  z-index: 4;
}
.cta-gradient {
  box-shadow: 0 8px 32px rgba(123,46,253,0.45), 0 1px 0 rgba(255,255,255,0.15) inset;
}
.cta-gradient:hover {
  box-shadow: 0 16px 48px rgba(123,46,253,0.6), 0 1px 0 rgba(255,255,255,0.15) inset;
}
.cta-dark {
  border-radius: 50px;
  border: var(--border-mid);
}

/* Nav CTA — keep pill */
.nav-cta {
  border-radius: 50px;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}

/* ── Scroll section steps — editorial feel ── */
.step-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  gap: 0.6rem;
  margin-bottom: 0.8rem;
}
.step-eyebrow strong {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.18em;
}
.step-title {
  letter-spacing: -0.03em;
  line-height: 0.92;
}
.step-body {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255,255,255,1);
  font-weight: 400;
}

/* Progress dots — refined */
.dot { border-radius: 2px; background: rgba(255,255,255,0.1); }
.dot.active { background: var(--light); width: 28px; }

/* ── Section headers — tighter, more confident ── */
.section-eyebrow-pill {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  border: var(--border-subtle);
  border-radius: 50px;
  padding: 7px 18px;
  background: rgba(255,255,255,0.03);
  margin-top:40px;
}

.section-title {
  letter-spacing: -0.03em;
  line-height: 1.2;
}

/* ── Safety section — premium card ────── */
#safety-section, #perks-section {
  padding: 40px 0;
}
.safety-app-card {
  border: var(--border-mid) !important;
  border-radius: var(--radius-card) !important;
  box-shadow: var(--shadow-card) !important;
  background: rgba(255,255,255,0.02) !important;
  overflow: hidden;
  transition: transform 0.5s var(--ease-spring), box-shadow 0.5s ease;
}
.safety-app-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lift) !important;
}
.safety-video-card {
  border-radius: 16px;
  border: var(--border-subtle);
  background: rgba(255,255,255,0.02);
  transition: transform 0.4s var(--ease-spring), border-color 0.3s ease, background 0.3s ease;
}
.safety-video-card:hover {
  transform: translateY(-3px);
  border-color: rgba(201,184,255,0.2);
  background: rgba(123,46,253,0.04);
}
.safety-heading {
  letter-spacing: -0.025em;
}


.perks-grid {
  position: relative;
}

.thread {
  position: absolute;
  width: 100px;
  height: 100px;
  top: 20px;
  z-index: 0;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  pointer-events: none;
  opacity: 0.2;
}
.thread-1 { background-image: url(assets/thread1.svg); left: calc(25% * 0 - 50px); }
.thread-2 { background-image: url(assets/thread2.svg); left: calc(25% * 1 - 50px); }
.thread-3 { background-image: url(assets/thread3.svg); left: calc(25% * 2 - 50px); }
.thread-4 { background-image: url(assets/thread4.svg); left: calc(25% * 3 - 50px); }




.perk-card {
  position: relative;
  /* No z-index here — removing it stops the card creating a stacking context */
  border: var(--border-subtle) !important;
  border-radius: var(--radius-card);
  background: rgba(255,255,255,0.02);
  box-shadow: var(--shadow-card);
  transition: transform 0.45s var(--ease-spring), border-color 0.3s ease, background 0.3s ease, box-shadow 0.45s ease;
  gap: 18px;
  padding: 28px 24px;
}
.perk-card:hover {
  border-color: rgba(201,184,255,0.16) !important;
  background: rgba(123,46,253,0.05);
  transform: translateY(-6px);
  box-shadow: 0 32px 72px rgba(0,0,0,0.5), 0 1px 0 rgba(201,184,255,0.08) inset;
}
.perk-title {
  font-size: 0.9rem;
  letter-spacing: 0.02em;
}
.perk-body {
  font-size: 0.82rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.8);
}

/* ── Venues section — lift the container ── */
.venues-container {
  border-radius: 32px !important;
  border: var(--border-subtle);
  box-shadow: var(--shadow-card);
  padding: 40px !important;
}
.venue-card {
  border: var(--border-subtle) !important;
  border-radius: var(--radius-card) !important;
  transition: transform 0.45s var(--ease-spring), box-shadow 0.45s ease;
}
.venue-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 28px 60px rgba(0,0,0,0.5);
}
.venue-title {
  letter-spacing: -0.025em;
  line-height: 1.05;
}
.venue-eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  font-weight: 600;
}
.venue-eyebrow strong {
  color: var(--accent);
}
.venue-btn {
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  border-radius: 50px;
  border: var(--border-mid);
  padding: 10px 22px;
}

/* ── Carousel items — taller, more presence ── */
.img-carousel-item {
  border-radius: 20px;
  border: var(--border-subtle);
  width: 400px;
  height: 300px;
  transition: transform 0.5s var(--ease-spring), box-shadow 0.4s ease;
}
.img-carousel-item:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 24px 56px rgba(0,0,0,0.5);
}

/* ── Process cards — editorial style ──── */
.process-card {
  padding: 40px 28px;
  border-radius: var(--radius-card);
  border: var(--border-subtle);
  position: relative;
  background: rgba(255,255,255,0.015);
  transition: transform 0.45s var(--ease-spring), border-color 0.3s ease, background 0.3s ease;
}
.process-card:hover {
  border-color: rgba(201,184,255,0.14) !important;
  background: rgba(255,255,255,0.03);
  transform: translateY(-5px);
}
.process-icon { margin: 0 0 20px;  position: absolute !important; top:-20px;  left: 50%;
  transform: translateX(-50%);}
.process-title {
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  margin-bottom: 8px;
}
.process-body {
  font-size: 0.82rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.38);
}

/* ── Lower third section ─────────────── */
#lower-third {
  padding: 40px 0 80px;
}

/* ── Footer — refined border top ──────── */
#site-footer {
  border-top: var(--border-subtle);
  margin-top: 80px;
}
.footer-top {
  border-bottom: var(--border-subtle) !important;
}
.footer-col a {
  font-size: 0.85rem;
  letter-spacing: 0.01em;
  color: rgba(255,255,255,0.4);
  position: relative;
}
.footer-col a::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0;
  width: 0; height: 1px;
  background: rgba(255,255,255,0.3);
  transition: width 0.3s var(--ease-spring);
}
.footer-col a:hover { color: rgba(255,255,255,0.75); }
.footer-col a:hover::after { width: 100%; }
.footer-copy { font-size: 0.75rem; letter-spacing: 0.04em; }

/* Scroll-driven fade reveal — fd system */
.fd-reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.9s var(--ease-spring), transform 0.9s var(--ease-spring);
}
.fd-reveal.fd-visible { opacity: 1; transform: none; }
.fd-delay-1 { transition-delay: 0.08s; }
.fd-delay-2 { transition-delay: 0.18s; }
.fd-delay-3 { transition-delay: 0.28s; }
.fd-delay-4 { transition-delay: 0.38s; }



/* ════════════════════════════════════════
   PREMIUM LAYER II — AWWWARDS FINISHES
════════════════════════════════════════ */

/* ── Gradient text on key headings ────── */
.section-title {
  background: linear-gradient(160deg, #ffffff 30%, rgba(201,184,255,0.7) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Safety + scroll section headings same treatment */
.step-title {
  background: linear-gradient(150deg, #ffffff 40%, rgba(201,184,255,0.65) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Hero h1 — gradient on the reveal element, not h1 itself ── */
.hero-content h1 {
  /* no background-clip here — .hw overflow:hidden clips it, breaking -webkit-text-fill */
}
.hwi {
  background: linear-gradient(140deg, #ffffff 50%, rgba(201,184,255,0.8) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Section dividers — hair-line gradient ── */
#safety-section::before,
#perks-section::before,
#lower-third::before {
  content: '';
  position: absolute;
  top: 0; left: 8%; right: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,184,255,0.12) 40%, rgba(2,160,174,0.1) 60%, transparent);
  pointer-events: none;
}
#lower-third { position: relative; }

/* ── Perk + process cards — noise texture inset ── */
.perk-card,
.process-card {
  position: relative;
}
/*.perk-card::before,
.process-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background-size: 180px 180px;
  opacity: 0.018;
  pointer-events: none;
  z-index: 0;
}*/
.perk-card > *,
.process-card > * { position: relative; z-index: 1; }

/* ── Venue cards — gradient top-edge glow on hover ── */
.venue-card {
  position: relative;
  overflow: hidden;
}
.venue-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,184,255,0.3), transparent);
  opacity: 0;
  transition: opacity 0.5s ease;
}
.venue-card:hover::before { opacity: 1; }

/* ── Safety app card — top gradient border ── */
.safety-app-card {
  position: relative;
}
.safety-app-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 10%, rgba(123,46,253,0.4) 50%, transparent 90%);
  pointer-events: none;
  z-index: 2;
}

/* ── Scroll section — step number counter accent ── */
.step-eyebrow strong {
  background: linear-gradient(135deg, var(--accent), #02A0AE);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Hero scroll hint — more contrast ── */
.hero-scroll-hint span {
  color: rgba(255,255,255,0.22);
  letter-spacing: 0.3em;
}
.hero-scroll-runner {
  background: linear-gradient(to bottom, transparent, rgba(201,184,255,0.8), transparent);
}

/* ── Carousel — gradient border glow ── */
.img-carousel-item {
  box-shadow: 0 0 0 0 rgba(123,46,253,0);
  transition: transform 0.5s var(--ease-spring), box-shadow 0.5s ease;
}
.img-carousel-item:hover {
  box-shadow: 0 24px 56px rgba(0,0,0,0.5), 0 0 0 1px rgba(201,184,255,0.12);
}

/* ── Footer — wordmark gradient ─────── */
.footer-logo img {
  filter: brightness(0) invert(1);
  opacity: 0.75;
  transition: opacity 0.3s ease;
}
.footer-logo:hover img { opacity: 1; }

/* ── Loader — scale up mark slightly ── */
.loader-graphic svg {
  width: 80px;
  height: 82px;
}
.loader-wordmark {
  font-size: clamp(1.4rem, 3vw, 2rem);
  opacity: 0;
  background: linear-gradient(135deg, #ffffff 40%, rgba(201,184,255,0.8) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: loaderFadeUp 0.6s 0.3s cubic-bezier(.22,1,.36,1) forwards;
}

/* ── Nav overlay links — gradient on hover ── */
.nav-overlay-links a:hover span:first-child {
  background: linear-gradient(135deg, #ffffff 30%, rgba(201,184,255,0.75) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Progress dots — glowing active ─── */
.dot.active {
  background: var(--accent);
  box-shadow: 0 0 10px rgba(201,184,255,0.5);
}

/* ── Smooth section backgrounds ──────── */
#safety-section, #perks-section {
  background: linear-gradient(180deg, #080e14 0%, #07080f 100%);
}

#lower-third {
  background: linear-gradient(180deg, #07080f 0%, var(--dark) 100%);
}

#venues-section .venues-container {
  background: linear-gradient(160deg, #0a0a14 0%, #070d0d 100%) !important;
}




/*images*/

.unlock-card-img {background-size: cover; background-position: center; background-repeat: no-repeat;}


.person-image1 {background-image:url(assets/person-image1.png); background-size: cover; background-position: center;}
.person-image2 {background-image:url(assets/person-image2.png); background-size: cover; background-position: center;}
.person-image3 {background-image:url(assets/person-image3.png); background-size: cover; background-position: center;}


/* ════════════════════════════════════════
   SCROLL SECTION — PREMIUM ENHANCEMENTS
════════════════════════════════════════ */

/* Particle canvas — fills the sticky viewport, behind everything */
.particle-canvas {
  position: sticky;
  top: 0;
  display: block;
  width: 100%;
  height: 100vh;
  pointer-events: none;
  z-index: 0;
  margin-bottom: -100vh;
  opacity: 0.85;
}

/* Phone ambient — colour-reactive glow around phone, JS-driven */
.phone-ambient {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 480px;
  height: 760px;
  transform: translate(-50%, -50%) scale(var(--phone-scale));
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  z-index: 1;
  background: radial-gradient(ellipse, rgba(123,46,253,0.28) 0%, rgba(71,95,219,0.1) 35%, transparent 70%);
  transition: background 1.4s cubic-bezier(.22,1,.36,1);
  will-change: background;
}

/* Phone scene — JS controls transform, CSS just sets the base perspective + float */
.phone-scene {
  position: absolute;
  left: 50%;
  top: 50%;
  perspective: 1400px;
  z-index: 2;
  /* JS sets transform directly — include scale base here as fallback only */
  transform: translate(-50%, -50%) scale(var(--phone-scale));
  /* Float animation stays — JS transform will layer on top via requestAnimationFrame */
  will-change: transform;
}

/* Glint sweep — a bright diagonal stripe that sweeps across the phone face */
.phone-glint {
  position: absolute;
  inset: 0;
  z-index: 6;
  pointer-events: none;
  border-radius: 26px;
  overflow: hidden;
}
.phone-glint::after {
  content: '';
  position: absolute;
  top: 0; left: -150%;
  width: 60%; height: 100%;
  background: linear-gradient(
    105deg,
    transparent 0%,
    rgba(255,255,255,0.0) 30%,
    rgba(255,255,255,0.12) 50%,
    rgba(255,255,255,0.0) 70%,
    transparent 100%
  );
  transform: skewX(-15deg);
  opacity: 0;
}
.phone-glint.glint-active::after {
  animation: glintSweep 0.7s cubic-bezier(.22,1,.36,1) forwards;
}
@keyframes glintSweep {
  0%   { left: -150%; opacity: 1; }
  100% { left: 150%;  opacity: 1; }
}

/* Glow blobs — smoother colour transition when JS updates them */
.glow-1, .glow-2, .glow-3 {
  transition: background 1.6s cubic-bezier(.22,1,.36,1);
}

/* Step ghost number — large faded numeral behind the copy */
.step-ghost {
  position: absolute;
  top: -0.5em;
  right: -0.1em;
  font-family: var(--serif);
  font-size: clamp(5rem, 9vw, 8rem);
  font-weight: 400;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,0.055);
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.04em;
  z-index: 0;
  transition: opacity 0.6s ease;
}
.panel-left .step-ghost { right: auto; left: -0.1em; }

/* Steps are position: absolute — ghost anchors via absolute inside */

/* Step content sits above ghost */
.step-eyebrow, .step-title, .step-body, .squiggle {
  position: relative;
  z-index: 1;
}

/* Progress dots — step label hint */
.progress-dots {
  gap: 10px;
}

/* Floating phone — pause the CSS float animation;
   JS handles vertical movement via the transform now */
.phone-scene {
  animation: none;
}

/* Re-introduce a subtle CSS float purely on the rotor, not scene, so JS tilt still works */
.phone-rotor {
  animation: rotorFloat 8s ease-in-out infinite;
}
@keyframes rotorFloat {
  0%, 100% { transform-style: preserve-3d; margin-top: 0; }
  50%       { margin-top: -14px; }
}


/* ════════════════════════════════════════
   MOBILE POLISH — comprehensive pass
════════════════════════════════════════ */

/* ── 768px — tablet / large mobile ───── */
@media (max-width: 768px) {

  /* Tighter section padding throughout */
  #safety-section, #perks-section { padding: 80px 0; }
  #lower-third { padding: 80px 0 60px; }

  /* Hero — push content down from nav */
  .hero-video-container { min-height: 100svh; }
  .hero-inner { padding: 0 24px; }
  .hero-content > p { font-size: 0.92rem; max-width: 400px; }

  /* Chips — hide on tablet too, they clutter at this size */
/*  .hero-chips { display: none; }*/

  /* Section container padding */
  .safety-container { padding: 0 24px; }
  .container { padding: 0 24px; }

  /* Safety grid stacks */
  .safety-grid { grid-template-columns: 1fr; gap: 28px; }
  .safety-app-card { border-radius: 18px !important; }

  /* Perks — 2 col */
  .perks-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .perk-card {gap: 12px; }

  /* Venues */
  .venues-container { padding: 40px 28px !important; }
}

/* ── 700px — scroll section mobile ───── */
@media (max-width: 700px) {

  /* Ghost numbers are too large and distracting at mobile */
  .step-ghost { display: none; }

  /* Remove the blurry backdrop card — looks cheap on mobile */
  .step.active::before { display: none !important; }

  /* Phone fades out gracefully */
  .phone-scene { opacity: 0.1 !important; }

  /* Step text — centred, clean, no left/right split */
  .panel {
    width: 88%;
    left: 50% !important;
    right: auto !important;
    transform: translate(-50%, -50%);
    height: auto;
  }
  .step {
    top: 50%;
    transform: translate(0, calc(-50% + 20px));
    text-align: center !important;
  }
  .step.active { transform: translate(0, -50%) !important; }

  /* All panel text centred */
  .panel-right { text-align: center !important; }
  .step-eyebrow { justify-content: center !important; }
  .panel-right .squiggle { margin: 0 auto 1rem; }
  .panel-right .step-body { margin: 0 auto; }
  .step-body { margin: 0 auto; max-width: 34ch; }

  /* Squiggles — hide, they break layout on mobile */
  .squiggle { display: none; }

  /* Progress dots — more visible */
  .progress-dots { bottom: 1.8rem; gap: 8px; }
  .dot { height: 4px; width: 4px; }
  .dot.active { width: 22px; }
}

/* ── 480px — small phones ─────────────── */
@media (max-width: 480px) {

  /* Hero — inset card style, cleaner than full bleed */
  #hero { padding: 8px 8px 0; }
  .hero-video-container {
    height: calc(100svh - 8px);
    border-radius: 18px 18px 0 0;
  }
  .hero-inner { padding: 0 20px; }
  /* Nav matches hero card inset so it doesn't bleed over rounded corners */
  #site-header {
    top: 8px;
    width: calc(100% - 16px);
  }

  /* Hero h1 tighter */
  .hero-content h1 { margin-bottom: 16px; }
  .hero-content > p {
    font-size: 0.88rem;
    margin-bottom: 28px;
    color: rgba(255,255,255,0.55);
  }

  /* CTAs — stack cleanly */
  .cta-container { flex-direction: column; align-items: center; gap: 10px; }
  .cta {
    width: 100%;
    max-width: 260px;
    text-align: center;
    padding: 13px 28px;
    font-size: 0.85rem;
  }

  /* Safety section */
  #safety-section, #perks-section { padding: 64px 0; }
  .safety-container { padding: 0 16px; }
  .app-card-photos { height: 160px; }
  .safety-video-card { flex-direction: column; }
  .safety-video-thumb { width: 100%; height: 160px; }

  /* Perks — single column */
  .perks-grid { grid-template-columns: 1fr; gap: 10px; }
  .perk-card {border-radius: 16px !important; }
  .section-title { font-size: clamp(1.7rem, 7vw, 2.4rem); }

  /* Venues */
  #venues-section { padding: 0 8px; }
  .venues-container {
    padding: 28px 16px !important;
    border-radius: 18px !important;
  }
  .venues-grid { gap: 10px; }
  .venue-title { font-size: clamp(1.1rem, 5vw, 1.4rem); }

  /* Lower third */
  #lower-third { padding: 56px 0 48px; }
  .process-grid { grid-template-columns: 1fr; gap: 10px; }
  .process-card { padding: 40px 18px; margin-bottom: 20px; border-radius: 16px !important; }

  /* Download badges */
  .download-icons { gap: 12px; margin-bottom: 32px; }
  .download-icons img { max-width: 120px; }

  /* Footer */
  .footer-inner { padding: 0 16px; }
  .footer-nav { grid-template-columns: 1fr 1fr; gap: 28px 16px; }
  .footer-top { padding: 48px 0 52px; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 16px; }
}





/* ABOUT PAGE — scoped only */

    .about-hero {
      position: relative;
      padding: 160px 0 80px;
      background: #0d0d12;
    }
    .about-hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse at 60% 0%, rgba(123,46,253,0.09) 0%, transparent 55%);
      pointer-events: none;
    }
    .about-hero::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0; right: 0; height: 1px;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,0.07) 50%, transparent);
    }
    .about-hero-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
      align-items: end;
    }
    .about-hero-eyebrow {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 20px;
      opacity: 0;
      animation: aFadeUp 0.9s 0.2s cubic-bezier(.22,1,.36,1) forwards;
    }
    .about-hero-eyebrow::before {
      content: '';
      width: 6px; height: 6px;
      border-radius: 50%;
      background: var(--accent);
      flex-shrink: 0;
    }
    .about-hero-eyebrow span {
      font-family: 'Grift', system-ui, sans-serif;
      font-size: 0.66rem;
      font-weight: 600;
      letter-spacing: 0.26em;
      text-transform: uppercase;
      color: var(--accent);
    }
    .about-hero h1 {
      font-family: "dm-serif-display", Georgia, serif;
      font-weight: 400;
      font-size: clamp(2.6rem, 5vw, 4.2rem);
      line-height: 1.0;
      letter-spacing: -0.03em;
      color: var(--light);
      margin-bottom: 0;
      opacity: 0;
      animation: aFadeUp 0.9s 0.35s cubic-bezier(.22,1,.36,1) forwards;
    }
    .about-hero-sub {
      font-family: 'Grift', system-ui, sans-serif;
      font-size: clamp(0.92rem, 1.1vw, 1rem);
      line-height: 1.85;
      color: rgba(255,255,255,0.5);
      max-width: 42ch;
      opacity: 0;
      animation: aFadeUp 0.9s 0.5s cubic-bezier(.22,1,.36,1) forwards;
    }
    @keyframes aFadeUp {
      from { opacity: 0; transform: translateY(20px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    /* Stat strip */
    .stat-strip { background: #0d0d12; border-bottom: 1px solid rgba(255,255,255,0.06); }
    .stat-strip-inner { display: grid; grid-template-columns: repeat(4,1fr); }
    .stat-item { padding: 48px 40px; border-right: 1px solid rgba(255,255,255,0.06); }
    .stat-item:first-child { padding-left: 0; }
    .stat-item:last-child  { border-right: none; }
    .stat-num {
      font-family: "dm-serif-display", Georgia, serif;
      font-size: clamp(2rem,3.5vw,3rem);
      font-weight: 400;
      letter-spacing: -0.03em;
      color: var(--light);
      display: block;
      margin-bottom: 6px;
    }
    .stat-label {
      font-family: 'Grift', system-ui, sans-serif;
      font-size: 0.78rem;
      font-weight: 500;
      color: rgba(255,255,255,0.8);
      letter-spacing: 0.04em;
    }

    /* Section wrapper */
    .about-section { padding: 100px 0; position: relative; }
    .about-section::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0; height: 1px;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,0.07) 50%, transparent);
    }
    .about-section-dark { background: #09091a; }

    /* Story */
    .story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
    .story-body p { color: rgba(255,255,255,0.8); font-size: var(--font-p); line-height: 1.85; margin-bottom: 1.2em; }
    .story-body p:last-child { margin-bottom: 0; }
    .story-card-stack { position: relative; height: 480px; }
    .story-card { position: absolute; border-radius: 20px; overflow: hidden; border: 1px solid rgba(255,255,255,0.07); }
    .story-card-main { width: 75%; height: 100%; right: 0; background: linear-gradient(145deg,#1a1035,#0d1a28); }
    .story-card-accent { width: 55%; height: 65%; left: 0; bottom: 0; background: linear-gradient(145deg,#0d2035,#0a1525); border-color: rgba(2,160,174,0.12); }
   /* .story-card-main::after, .story-card-accent::after {
      content: ''; position: absolute; inset: 0;
      background: radial-gradient(ellipse at 30% 30%, rgba(123,46,253,0.12) 0%, transparent 60%);
    }*/
    .story-quote-chip {
      position: absolute; top: 40px; left: -24px;
      background: rgba(13,13,18,0.88);
      backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 14px; padding: 16px 20px; max-width: 200px; z-index: 3;
    }
    .story-quote-chip p { font-family: "dm-serif-display",Georgia,serif; font-size: 0.92rem; line-height: 1.35; color: rgba(255,255,255,0.85); margin: 0 0 8px; }
    .story-quote-chip span { font-family: 'Grift',system-ui,sans-serif; font-size: 0.65rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.28); }

    /* Values */
    .values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
    .value-card {
      background: rgba(255,255,255,0.02);
      border: 1px solid rgba(255,255,255,0.06);
      border-radius: 20px; padding: 36px 32px;
      margin-bottom: 20px;
      position: relative;
      text-align: center;
      transition: transform 0.4s cubic-bezier(.22,1,.36,1), border-color 0.3s ease, box-shadow 0.4s ease;
    }
    .value-card:hover { transform: translateY(-5px); border-color: rgba(201,184,255,0.1); box-shadow: 0 24px 56px rgba(0,0,0,0.4); }
    .value-card::before {
      content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
      background: linear-gradient(90deg,transparent,rgba(201,184,255,0.2),transparent);
      opacity: 0; transition: opacity 0.3s ease;
    }
    .value-card:hover::before { opacity: 1; }
    .value-icon {
      width: 44px; height: 44px; border-radius: 12px;
      background: rgba(201,184,255,0.08); border: 1px solid rgba(201,184,255,0.12);
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 20px; color: #c9b8ff;
    }
    .value-card h3 { font-family: "dm-serif-display",Georgia,serif; font-weight: 400; font-size: 1.25rem; letter-spacing: -0.02em; color: var(--light); margin-bottom: 10px; }
    .value-card p  { font-family: 'Grift',system-ui,sans-serif; font-size: 0.88rem; line-height: 1.8; color: rgba(255,255,255,0.8); }

    /* Team */
    .team-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
    .team-card { border-radius: 20px; overflow: hidden; border: 1px solid rgba(255,255,255,0.06); transition: transform 0.4s cubic-bezier(.22,1,.36,1), border-color 0.3s ease; }
    .team-card:hover { transform: translateY(-5px); border-color: rgba(201,184,255,0.1); }
    .team-card-photo { aspect-ratio: 3/4; background: linear-gradient(145deg,#1a1035,#0d1a28,#0a2035); position: relative; overflow: hidden; }
    .team-card-photo img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s cubic-bezier(.22,1,.36,1); }
    .team-card:hover .team-card-photo img { transform: scale(1.04); }
    .team-card-photo::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 50%; background: linear-gradient(to top,rgba(13,13,18,0.9),transparent); }
    .team-initials { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-family: "dm-serif-display",Georgia,serif; font-size: 3.5rem; color: rgba(255,255,255,0.08); }
    .team-card-body { padding: 18px 20px 22px; background: rgba(255,255,255,0.02); }
    .team-card-name { font-family: "dm-serif-display",Georgia,serif; font-weight: 400; font-size: 1.1rem; letter-spacing: -0.02em; color: var(--light); margin-bottom: 4px; }
    .team-card-role { font-family: 'Grift',system-ui,sans-serif; font-size: 0.75rem; font-weight: 500; color: rgba(255,255,255,0.3); letter-spacing: 0.04em; }

    /* Mission CTA */
    .mission-cta {
      display: inline-block; border-radius: 50px; padding: 15px 40px; margin-top: 2rem;
      font-family: 'Grift',system-ui,sans-serif; font-weight: 900; font-size: 0.88rem;
      letter-spacing: 0.06em; text-transform: uppercase;
      background: linear-gradient(135deg,#7B2EFD,#475FDB); color: #fff;
      box-shadow: 0 8px 32px rgba(123,46,253,0.35);
      transition: transform 0.3s cubic-bezier(.22,1,.36,1), box-shadow 0.3s ease;
    }
    .mission-cta:hover { transform: translateY(-2px); box-shadow: 0 14px 40px rgba(123,46,253,0.45); }

    /* Responsive */
    @media (max-width: 1024px) {
      .values-grid { grid-template-columns: repeat(2,1fr); }
      .team-grid   { grid-template-columns: repeat(2,1fr); }
      .stat-strip-inner { grid-template-columns: repeat(2,1fr); }
      .stat-item:nth-child(2) { border-right: none; }
      .stat-item:nth-child(3) { border-top: 1px solid rgba(255,255,255,0.06); }
    }
    @media (max-width: 768px) {
      .app-card-header {flex-direction: column;}
      .about-hero { padding: 140px 0 60px; }
      .about-hero-inner { grid-template-columns: 1fr; gap: 20px; }
      .story-grid { grid-template-columns: 1fr; gap: 40px; }
      .story-card-stack { height: 300px; }
      .story-quote-chip { display: none; }
      .values-grid { grid-template-columns: 1fr; }
      .about-section { padding: 72px 0; }
      .hero-content h1 {font-size: 24px !important;}
      .hero-kenburns {transform: scale(1); background-image: url(assets/hero-mob.webp); background-position: center;
        transform: scale(1);}
      .hero-icon img {width: 80px;}
      .perks-grid {grid-template-columns: 1fr;}
      .process-grid {    grid-template-columns: repeat(2, 1fr);}
      
    }



    @media (max-width: 480px) {
      .about-hero { padding: 120px 0 48px; }
      .about-hero h1 { font-size: clamp(2.2rem,9vw,3rem); }
      .stat-strip-inner { grid-template-columns: 1fr 1fr; }
      .stat-item { padding: 28px 16px; }
      .stat-item:first-child { padding-left: 0; }
      .team-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
      .values-grid { gap: 10px; }
      .about-section { padding: 56px 0; }
      #site-header { top: 8px; width: calc(100% - 16px); }
      .process-grid {grid-template-columns: 1fr !important;}

    }


 @media (max-width: 360px) {
    .download-icons {
    flex-direction: column;
    justify-content: center;
}
}


/* ════════════════════════════════════════════════════════════════
   PAGE STYLES — consolidated from all PHP templates
   Replaces inline <style> blocks in about, dating-safety, how,
   minimise, venues, privacy and terms PHP files.
════════════════════════════════════════════════════════════════ */

/* ── Shared hero keyframe (replaces aFadeUp / tFadeUp / hFadeUp / vFadeUp / sFadeUp) ── */
@keyframes pageFadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── .squiggle — used on about + how pages ── */
.squiggle {
  position: absolute;
  opacity: 0.15;
  pointer-events: none;
  z-index: 0;
}
@media (max-width: 768px) { .squiggle { display: none; } }
section.about-section.about-section-dark { padding-top: 0; }

/* ════════════════════════
   PAGE HEROES — shared structure
════════════════════════ */
.about-hero,
.tips-hero,
.hiw-hero,
.venues-hero,
.safety-hero {
  position: relative;
  padding: 160px 0 80px;
  background: #0d0d12;
}

.about-hero::after,
.tips-hero::after,
.hiw-hero::after,
.venues-hero::after,
.safety-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.07) 50%, transparent);
}

/* Page-specific hero gradient overlays */
.about-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 0%, rgba(123,46,253,0.09) 0%, transparent 55%);
  pointer-events: none;
}
.tips-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 40% 0%, rgba(123,46,253,0.1) 0%, transparent 55%),
              radial-gradient(ellipse at 85% 70%, rgba(2,160,174,0.07) 0%, transparent 50%);
  pointer-events: none;
}
.hiw-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 40% 0%, rgba(2,160,174,0.09) 0%, transparent 55%),
              radial-gradient(ellipse at 85% 70%, rgba(123,46,253,0.08) 0%, transparent 50%);
  pointer-events: none;
}
.venues-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 40% 0%, rgba(2,160,174,0.08) 0%, transparent 50%),
              radial-gradient(ellipse at 80% 60%, rgba(123,46,253,0.07) 0%, transparent 50%);
  pointer-events: none;
}
.safety-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 55% 0%, rgba(123,46,253,0.1) 0%, transparent 55%),
              radial-gradient(ellipse at 10% 80%, rgba(2,160,174,0.06) 0%, transparent 50%);
  pointer-events: none;
}

/* Hero inner grids */
.about-hero-inner,
.tips-hero-inner,
.hiw-hero-inner,
.safety-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: end;
}
.venues-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* Eyebrow rows */
.about-hero-eyebrow,
.tips-hero-eyebrow,
.hiw-hero-eyebrow,
.venues-hero-eyebrow,
.safety-hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  opacity: 0;
  animation: pageFadeUp 0.9s 0.2s cubic-bezier(.22,1,.36,1) forwards;
}
.about-hero-eyebrow::before,
.tips-hero-eyebrow::before,
.safety-hero-eyebrow::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}
.hiw-hero-eyebrow::before,
.venues-hero-eyebrow::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #02A0AE;
  flex-shrink: 0;
}

.about-hero-eyebrow span,
.tips-hero-eyebrow span,
.safety-hero-eyebrow span {
  font-family: 'Grift', system-ui, sans-serif;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--accent);
}
.hiw-hero-eyebrow span,
.venues-hero-eyebrow span {
  font-family: 'Grift', system-ui, sans-serif;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: #02A0AE;
}

/* Hero h1 */
.about-hero h1,
.tips-hero h1,
.hiw-hero h1,
.venues-hero h1,
.safety-hero h1 {
  font-family: "dm-serif-display", Georgia, serif;
  font-weight: 400;
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--light);
  margin-bottom: 0;
  opacity: 0;
  animation: pageFadeUp 0.9s 0.35s cubic-bezier(.22,1,.36,1) forwards;
}
.venues-hero h1 { margin-bottom: 1.4rem; }

/* Hero sub-copy */
.about-hero-sub,
.tips-hero-sub,
.safety-hero-sub {
  font-family: 'Grift', system-ui, sans-serif;
  font-size: clamp(0.92rem, 1.1vw, 1rem);
  line-height: 1.85;
  color: rgba(255,255,255,0.5);
  max-width: 44ch;
  opacity: 0;
  animation: pageFadeUp 0.9s 0.5s cubic-bezier(.22,1,.36,1) forwards;
}
.about-hero-sub { max-width: 42ch; line-height: 1.85; }
.hiw-hero-sub {
  font-family: 'Grift', system-ui, sans-serif;
  font-size: clamp(0.92rem, 1.1vw, 1rem);
  line-height: 1.85;
  color: rgba(255,255,255,0.8);
  max-width: 44ch;
  opacity: 0;
  animation: pageFadeUp 0.9s 0.5s cubic-bezier(.22,1,.36,1) forwards;
}
.venues-hero-sub {
  font-family: 'Grift', system-ui, sans-serif;
  font-size: clamp(0.92rem, 1.1vw, 1rem);
  line-height: 1.85;
  color: rgba(255,255,255,1);
  margin-bottom: 2rem;
  opacity: 0;
  animation: pageFadeUp 0.9s 0.5s cubic-bezier(.22,1,.36,1) forwards;
}

/* Venues hero CTA */
.venues-hero-cta {
  opacity: 0;
  animation: pageFadeUp 0.9s 0.65s cubic-bezier(.22,1,.36,1) forwards;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}
.venues-hero-cta .cta-ghost {
  font-family: 'Grift', system-ui, sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.04em;
}

/* Hero stat cards (venues) */
.venues-hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  opacity: 0;
  animation: pageFadeUp 0.9s 0.5s cubic-bezier(.22,1,.36,1) forwards;
}
.hero-stat-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 18px;
  padding: 28px 24px;
  transition: border-color 0.3s ease;
}
.hero-stat-card:hover { border-color: rgba(2,160,174,0.15); }
.hero-stat-card:first-child { grid-column: span 2; }
.hero-stat-num {
  font-family: "dm-serif-display", Georgia, serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 400;
  letter-spacing: -0.03em;
  color: var(--light);
  display: block;
  margin-bottom: 4px;
}
.hero-stat-label {
  font-family: 'Grift', system-ui, sans-serif;
  font-size: 1rem;
  color: rgba(255,255,255,1);
  line-height: 1.5;
}

/* ════════════════════════
   SHARED SECTION WRAPPER
════════════════════════ */
.about-section { padding:  0; position: relative;  }
.about-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.07) 50%, transparent);
}
.about-section-dark { background: #09091a; }
.about-section .section-header { margin-bottom: 20px; }
.about-section .section-title { font-size: clamp(2rem, 3.5vw, 3rem); line-height: 1.05; }

.section-header p { color: rgba(255,255,255,0.8); }
.section-header { padding: 0px; }
.no-padding { padding-top: 0; }

/* ════════════════════════
   SPLIT GRID — how / minimise / venues
════════════════════════ */
.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: start;
}
.split-copy { padding-left: 0; padding-bottom: 60px;}
.split-copy h3 {
  font-family: "dm-serif-display", Georgia, serif;
  font-weight: 400;
  font-size: clamp(1.5rem, 2.2vw, 2.1rem);
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--light);
  margin-bottom: 1.2rem;
}
.split-copy h4 {
  font-family: 'Grift', system-ui, sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin: 2rem 0 0.5rem;
}
.split-copy p {
  font-family: 'Grift', system-ui, sans-serif;
  font-size: var(--font-p);
  line-height: 2;
  color: rgba(255,255,255,0.8);
  margin-bottom: 1.4em;
}
.split-copy p:last-child { margin-bottom: 0; }
.split-copy ul { list-style: none; padding: 0; margin: 0 0 1.2em; }
.split-copy ul li {
  font-family: 'Grift', system-ui, sans-serif;
  font-size: var(--font-p);
  line-height: 1.85;
  color: rgba(255,255,255,0.8);
  padding: 10px 0 10px 18px;
  position: relative;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.split-copy ul li:last-child { border-bottom: none; }
.split-copy ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 20px;
  width: 5px; height: 5px;
  border-top: 1.5px solid rgba(123,46,253,0.65);
  border-right: 1.5px solid rgba(123,46,253,0.65);
  transform: rotate(45deg);
}

/* ════════════════════════
   IDENTITY CARDS — how / minimise / venues
════════════════════════ */
.identity-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  text-align: center;
}
.identity-card {
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 28px;
  padding: 44px 36px;
  position: relative;
  margin-bottom: 20px;
  transition: transform 0.4s cubic-bezier(.22,1,.36,1), border-color 0.3s ease, box-shadow 0.4s ease;
}
.identity-card .perk-icon {
  margin: auto;
  margin-bottom: 20px;
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
}
.identity-card:hover { transform: translateY(-5px); border-color: rgba(123,46,253,0.2); box-shadow: 0 24px 56px rgba(0,0,0,0.4); }
.identity-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(123,46,253,0.45), transparent);
  opacity: 0.6;
  transition: opacity 0.3s ease;
}
.identity-card:hover::before { opacity: 1; }
.identity-card-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(123,46,253,0.1);
  border: 1px solid rgba(123,46,253,0.2);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  color: #c9b8ff;
}
.identity-card h3 { font-family: "dm-serif-display", Georgia, serif; font-weight: 400; font-size: 1.2rem; letter-spacing: -0.02em; color: var(--light); margin-bottom: 12px; }
.identity-card p { font-family: 'Grift', system-ui, sans-serif; font-size: 0.88rem; line-height: 1.8; color: rgba(255,255,255,0.8); margin-bottom: 0.8em; }
.identity-card p:last-child { margin-bottom: 0; }
.identity-card ul { list-style: none; padding: 0; margin: 0 0 0.8em; }
.identity-card ul li { font-family: 'Grift', system-ui, sans-serif; font-size: 0.85rem; line-height: 1.75; color: rgba(255,255,255,0.8); padding: 5px 0 5px 16px; position: relative; border-bottom: 1px solid rgba(255,255,255,0.04); }
.identity-card ul li:last-child { border-bottom: none; }
.identity-card ul li::before { content: ''; position: absolute; left: 0; top: 11px; width: 4px; height: 4px; border-top: 1.5px solid rgba(123,46,253,0.6); border-right: 1.5px solid rgba(123,46,253,0.6); transform: rotate(45deg); }

/* ════════════════════════
   VENUE SHOWCASE — how / minimise / venues
════════════════════════ */
.venue-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: stretch;
}
.venue-showcase-image {
  border-radius: 28px;
  overflow: hidden;
  min-height: 340px;
  position: relative;
}
.venue-showcase-image .image-fill {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s cubic-bezier(.22,1,.36,1);
}
.venue-showcase-image:hover .image-fill { transform: scale(1.04); }
.venue-showcase-copy { display: flex; flex-direction: column; gap: 16px; }




.venue-fact {
  flex: 1;
  padding: 32px;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 20px;
  position: relative;

  transition: border-color 0.3s ease, transform 0.4s cubic-bezier(.22,1,.36,1);
}
.venue-fact:hover { border-color: rgba(201,184,255,0.15); transform: translateY(-3px); }
.venue-fact::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,184,255,0.2), transparent);
  opacity: 0.6;
}
.venue-fact-label {
  font-family: 'Grift', system-ui, sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #02A0AE;
  display: block;
  margin-bottom: 12px;
}
.venue-fact h3 {
  font-family: "dm-serif-display", Georgia, serif;
  font-weight: 400;
  font-size: clamp(1.1rem, 1.5vw, 1.4rem);
  letter-spacing: -0.02em;
  color: var(--light);
  margin-bottom: 10px;
  line-height: 1.2;
}
.venue-fact p {
  font-family: 'Grift', system-ui, sans-serif;
  font-size: var(--font-p);
  line-height: 1.9;
  color: rgba(255,255,255,0.8);
  margin: 0;
}

/* ════════════════════════
   BEFORE GRID — how / minimise / venues
════════════════════════ */
.before-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.before-card {
  padding: 40px 36px;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 28px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s ease, transform 0.4s cubic-bezier(.22,1,.36,1);
}
.before-card:hover { border-color: rgba(201,184,255,0.15); transform: translateY(-4px); }
.before-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,184,255,0.25), transparent);
  opacity: 0.6;
}
.before-card-num {
  font-family: "dm-serif-display", Georgia, serif;
  font-size: 3.5rem;
  font-weight: 400;
  color: rgba(255,255,255,0.05);
  line-height: 1;
  margin-bottom: 20px;
  letter-spacing: -0.04em;
}
.before-card h3 {
  font-family: "dm-serif-display", Georgia, serif;
  font-weight: 400;
  font-size: clamp(1.3rem, 1.8vw, 1.7rem);
  letter-spacing: -0.02em;
  color: var(--light);
  margin-bottom: 14px;
  line-height: 1.15;
}
.before-card p {
  font-family: 'Grift', system-ui, sans-serif;
  font-size: var(--font-p);
  line-height: 1.9;
  color: rgba(255,255,255,0.8);
  margin: 0;
}

/* ════════════════════════
   CONNECTIONS / UNLOCK — how / minimise
════════════════════════ */
.connections-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.connections-unlock { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.unlock-card {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  min-height: 160px;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.07);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: transform 0.4s cubic-bezier(.22,1,.36,1), border-color 0.3s ease;
}
.unlock-card:hover { transform: translateY(-4px); border-color: rgba(201,184,255,0.2); }
.unlock-card-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.35;
  transition: opacity 0.4s ease, transform 0.6s cubic-bezier(.22,1,.36,1);
}
.unlock-card:hover .unlock-card-img { opacity: 0.5; transform: scale(1.05); }
.unlock-card-body {
  position: relative;
  z-index: 1;
  padding: 16px 18px;
  background: linear-gradient(to top, rgba(9,9,26,0.95) 0%, transparent 100%);
}
.unlock-card-label {
  font-family: 'Grift', system-ui, sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 4px;
}
.unlock-card-title {
  font-family: "dm-serif-display", Georgia, serif;
  font-size: 1rem;
  font-weight: 400;
  color: var(--light);
  line-height: 1.2;
}
.unlock-card-wide { grid-column: span 2; min-height: 120px; }

/* ════════════════════════
   AFTER MATCH GRID — how / minimise
════════════════════════ */
.after-match-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; }
.after-match-card {
  padding: 32px 24px;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 24px;
  position: relative;
  overflow: hidden;
  text-align: center;
  transition: border-color 0.3s ease, transform 0.4s cubic-bezier(.22,1,.36,1);
}
.after-match-card:hover { border-color: rgba(201,184,255,0.2); transform: translateY(-5px); }
.after-match-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,184,255,0.3), transparent);
  opacity: 0.5;
  transition: opacity 0.3s ease;
}
.after-match-card:hover::before { opacity: 1; }
.after-match-card-icon { font-size: 1.8rem; display: block; margin-bottom: 16px; }
.after-match-card p {
  font-family: 'Grift', system-ui, sans-serif;
  font-size: 0.84rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.55);
  margin: 0;
  font-weight: 500;
}

.after-match-intro { max-width: 64ch; margin: 0 auto 56px; text-align: center; }
.after-match-intro h3 {
  font-family: "dm-serif-display", Georgia, serif;
  font-weight: 400;
  font-size: clamp(1.5rem, 2.2vw, 2.1rem);
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--light);
  margin-bottom: 1rem;
}
.after-match-intro p {
  font-family: 'Grift', system-ui, sans-serif;
  font-size: var(--font-p);
  line-height: 1.9;
  color: rgba(255,255,255,0.5);
}

/* ════════════════════════
   SUMMARY GRID — how / minimise
════════════════════════ */
.summary-grid { display: flex; flex-wrap: wrap; gap: 10px; }
.summary-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  width: 49.5%;
  padding: 20px 24px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-left: 2px solid rgba(123,46,253,0.45);
  border-radius: 16px;
}

.summary-item:last-of-type {width: 100%;}

.summary-item-icon {
  flex-shrink: 0;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: rgba(201,184,255,0.08);
  border: 1px solid rgba(201,184,255,0.15);
  display: flex; align-items: center; justify-content: center;
  color: #c9b8ff;
  margin-top: 1px;
}
.summary-item span {
  font-family: 'Grift', system-ui, sans-serif;
  font-size: 0.84rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.8);
}

/* ════════════════════════
   TAG LIST — venues / minimise
════════════════════════ */
.tag-list { display: flex; flex-wrap: wrap; gap: 10px; margin: 1rem 0 1.4em; }
.tag-list span {
  font-family: 'Grift', system-ui, sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255,255,255,0.62);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50px;
  padding: 8px 18px;
  white-space: nowrap;
}

/* ════════════════════════════════════════
   DATING SAFETY PAGE
════════════════════════════════════════ */
.tab-nav {
  display: flex;
  gap: 8px;
  justify-content: center;
  padding: 48px 0 0;
  background: #0d0d12;
  position: relative;
  z-index: 1;
}
.tabsection { margin-top: 40px; }
.tab-btn {
  font-family: 'Grift', system-ui, sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.45);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 50px;
  padding: 12px 28px;
  cursor: pointer;
  transition: all 0.25s ease;
}
.tab-btn:hover { color: rgba(255,255,255,0.75); border-color: rgba(255,255,255,0.18); }
.tab-btn.active { color: var(--light); background: rgba(123,46,253,0.15); border-color: rgba(123,46,253,0.35); }
.tab-panel { display: none; }
.tab-panel.active { display: block; }

.tips-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.tip-card {
  padding: 40px 36px;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 28px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s ease, transform 0.4s cubic-bezier(.22,1,.36,1);
}
.tip-card:hover { border-color: rgba(201,184,255,0.15); transform: translateY(-4px); }
.tip-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,184,255,0.25), transparent);
  opacity: 0.6;
}
.tip-card-num {
  font-family: var(--serif);
  font-size: 3rem;
  font-weight: 400;
  color: rgba(255,255,255,0.05);
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -0.04em;
}
.tip-card h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.2rem, 1.6vw, 1.6rem);
  letter-spacing: -0.02em;
  color: var(--light);
  margin-bottom: 14px;
  line-height: 1.15;
}
.tip-card p {
  font-family: 'Grift', system-ui, sans-serif;
  font-size: var(--font-p);
  line-height: 1.9;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1em;
}
.tip-card p:last-child { margin-bottom: 0; }
.tip-card ul { list-style: none; padding: 0; margin: 0 0 1em; }
.tip-card ul li {
  font-family: 'Grift', system-ui, sans-serif;
  font-size: var(--font-p);
  line-height: 1.85;
  color: rgba(255,255,255,0.55);
  padding: 7px 0 7px 18px;
  position: relative;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.tip-card ul li:last-child { border-bottom: none; }
.tip-card ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 13px;
  width: 5px; height: 5px;
  border-top: 1.5px solid rgba(123,46,253,0.65);
  border-right: 1.5px solid rgba(123,46,253,0.65);
  transform: rotate(45deg);
}
.tip-card-wide { grid-column: span 2; }

.tips-cta-banner {
  background: var(--darkerbg);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.tips-cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(123,46,253,0.1) 0%, rgba(2,160,174,0.06) 40%, transparent 70%);
  pointer-events: none;
}
.tips-cta-banner::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,184,255,0.15) 50%, transparent);
}
.tips-cta-banner h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 3.2rem);
  letter-spacing: -0.03em;
  color: var(--light);
  margin-bottom: 1rem;
  position: relative;
}
.tips-cta-banner p {
  font-family: 'Grift', system-ui, sans-serif;
  font-size: 1rem;
  line-height: 2;
  color: rgba(255,255,255,0.48);
  max-width: 46ch;
  margin: 0 auto 2.4rem;
  position: relative;
}

/* ════════════════════════════════════════
   HOW IT WORKS PAGE
════════════════════════════════════════ */
.connect-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.connect-card {
  background: #0d0d12;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 28px;
  padding: 44px 36px;
  position: relative;
  padding-right: 200px;
  z-index: 6;
  text-align: left;
  margin-bottom: 20px;
  transition: transform 0.4s cubic-bezier(.22,1,.36,1), border-color 0.3s ease, box-shadow 0.4s ease;
}
.connect-card:hover { transform: translateY(-5px); border-color: rgba(2,160,174,0.15); box-shadow: 0 24px 56px rgba(0,0,0,0.4); }
.connect-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(2,160,174,0.35), transparent);
  opacity: 0.5;
  transition: opacity 0.3s ease;
}
.connect-card:hover::before { opacity: 1; }
.connect-card-eyebrow {
  font-family: 'Grift', system-ui, sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #02A0AE;
  margin-bottom: 8px;
  display: block;
}
.connect-card h3 {
  font-family: "dm-serif-display", Georgia, serif;
  font-weight: 400;
  font-size: 1.45rem;
  letter-spacing: -0.02em;
  color: var(--light);
  margin-bottom: 8px;
}
.connect-card-sub {
  font-family: 'Grift', system-ui, sans-serif;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 20px;
  display: block;
  font-style: italic;
}
.connect-card p {
  font-family: 'Grift', system-ui, sans-serif;
  font-size: 0.88rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.8);
  margin-bottom: 0.6em;
  position: relative;
  z-index: 4;
}
.connect-card p:last-child { margin-bottom: 0; }
.connect-card ul { list-style: none; padding: 0; margin: 0 0 0.8em; }
.connect-card ul li {
  font-family: 'Grift', system-ui, sans-serif;
  font-size: 0.85rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.8);
  padding: 5px 0 5px 16px;
  position: relative;
  z-index: 4;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.connect-card ul li:last-child { border-bottom: none; }
.connect-card ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 11px;
  width: 4px; height: 4px;
  border-top: 1.5px solid rgba(2,160,174,0.55);
  border-right: 1.5px solid rgba(2,160,174,0.55);
  transform: rotate(45deg);
}
.connect-card-label {
  font-family: 'Grift', system-ui, sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  margin: 14px 0 6px;
  display: block;
}

/* Flow steps */
.flow-steps { display: flex; align-items: flex-start; position: relative; }
.flow-ribbon { display: none; }
.flow-step { flex: 1; display: flex; flex-direction: column; align-items: center; text-align: center; padding: 0 12px; position: relative; }
.flow-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 5px;
  left: 50%;
  width: 100%;
  height: 30px;
  background-image: url("assets/ribbon.svg");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  opacity: 0.3;
  pointer-events: none;
  z-index: 0;
}
.flow-step.flip::after { transform: scaleY(-1); }
.flow-step-num {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: #f4f6fb;
  border: 1px solid #0d0d12;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif);
  font-size: 0.95rem;
  font-weight: 400;
  color: #0d0d12;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}
.flow-step-body { font-family: 'Grift', system-ui, sans-serif; font-size: 0.82rem; line-height: 1.6; color: rgba(255,255,255,0.8); }
.flow-step-body strong { display: block; font-weight: 600; color: rgba(255,255,255,0.75); margin-bottom: 2px; font-size: 0.85rem; }

/* Outcome grid */
.outcome-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.outcome-card {
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 28px;
  padding: 48px 40px;
  position: relative;
  text-align: center;
  margin-bottom: 20px;
}
.outcome-card .perk-icon { margin: auto; margin-bottom: 20px; position: absolute; top: -20px; left: 50%; transform: translateX(-50%); }
.outcome-icon { font-size: 2.4rem; display: block; margin-bottom: 20px; }
.outcome-card h4 { font-family: "dm-serif-display", Georgia, serif; font-weight: 400; font-size: 1.4rem; color: var(--light); margin-bottom: 10px; }
.outcome-card p { font-family: 'Grift', system-ui, sans-serif; font-size: 0.92rem; line-height: 1.75; color: rgba(255,255,255,0.48); margin: 0; }

/* CTA principles */
.cta-principles { display: grid; grid-template-columns: repeat(2,1fr); gap: 12px; max-width: 560px; margin: 0 auto 2.4rem; }
.cta-principle { display: flex; align-items: center; gap: 12px; padding: 16px 20px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 16px; text-align: left; }
.cta-principle span { font-family: 'Grift', system-ui, sans-serif; font-size: 0.85rem; line-height: 1.5; color: rgba(255,255,255,0.8); }

/* Full-width card */
.full-card { width: 100%; margin-top: 20px; text-align: center; }

/* HIW CTA banner */
.hiw-cta-banner {
  background: #080e14;
  padding: 140px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.hiw-cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(2,160,174,0.1) 0%, rgba(123,46,253,0.07) 40%, transparent 70%);
  pointer-events: none;
}
.hiw-cta-banner::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(2,160,174,0.2) 50%, transparent);
}
.hiw-cta-banner h2 {
  font-family: "dm-serif-display", Georgia, serif;
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 3.2rem);
  letter-spacing: -0.03em;
  color: var(--light);
  margin-bottom: 1rem;
  position: relative;
}
.hiw-cta-banner p {
  font-family: 'Grift', system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.85;
  color: rgba(255,255,255,0.8);
  max-width: 48ch;
  margin: 0 auto 2.4rem;
  position: relative;
}
.hiw-cta-banner ul { list-style: none; padding: 0; margin: 0 0 2.4rem; }
.hiw-cta-banner ul li {
  font-family: 'Grift', system-ui, sans-serif;
  font-size: 0.92rem;
  line-height: 2;
  color: rgba(255,255,255,0.4);
  position: relative;
}

/* ════════════════════════════════════════
   MINIMISE PAGE
════════════════════════════════════════ */
.safety-features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.safety-feature-card {
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 28px;
  padding: 44px 36px;
  position: relative;
  margin-bottom: 20px;
  text-align: center;
  transition: transform 0.4s cubic-bezier(.22,1,.36,1), border-color 0.3s ease, box-shadow 0.4s ease;
}
.safety-feature-card .perk-icon { position: absolute; left: 50%; top: -20px; transform: translateX(-50%); }
.safety-feature-card:hover { transform: translateY(-5px); border-color: rgba(201,184,255,0.1); box-shadow: 0 24px 56px rgba(0,0,0,0.4); }
.safety-feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(123,46,253,0.4), transparent);
  opacity: 0.5;
  transition: opacity 0.3s ease;
}
.safety-feature-card:hover::before { opacity: 1; }
.safety-feature-card h3 { font-family: "dm-serif-display", Georgia, serif; font-weight: 400; font-size: 1.45rem; letter-spacing: -0.02em; color: var(--light); margin-bottom: 12px; }
.safety-feature-card p { font-family: 'Grift', system-ui, sans-serif; font-size: 0.88rem; line-height: 1.8; color: rgba(255,255,255,0.9); margin-bottom: 0.8em; }
.safety-feature-card p:last-child { margin-bottom: 0; }
.safety-feature-card ul { list-style: none; padding: 0; margin: 0 0 0.8em; }
.safety-feature-card ul li {
  font-family: 'Grift', system-ui, sans-serif;
  font-size: 0.85rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.8);
  padding: 4px 0 4px 16px;
  position: relative;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.safety-feature-card ul li:last-child { border-bottom: none; }
.safety-feature-card ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 11px;
  width: 4px; height: 4px;
  border-top: 1.5px solid rgba(123,46,253,0.55);
  border-right: 1.5px solid rgba(123,46,253,0.55);
  transform: rotate(45deg);
}

.resource-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 16px; }
.resource-card {
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 24px;
  padding: 36px 32px 28px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: border-color 0.3s ease, transform 0.3s cubic-bezier(.22,1,.36,1);
}
.resource-card:hover { border-color: rgba(2,160,174,0.25); transform: translateY(-3px); }
.resource-card-label {
  font-family: 'Grift', system-ui, sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #02A0AE;
}
.resource-card-title {
  font-family: "dm-serif-display", Georgia, serif;
  font-weight: 400;
  font-size: 1.3rem;
  letter-spacing: -0.02em;
  color: var(--light);
  line-height: 1.2;
}
.resource-card-desc {
  font-family: 'Grift', system-ui, sans-serif;
  font-size: 0.82rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.8);
}
.resource-card-arrow {
  margin-top: auto;
  padding-top: 16px;
  font-family: 'Grift', system-ui, sans-serif;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.2);
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s ease;
}
.resource-card:hover .resource-card-arrow { color: #02A0AE; }

.connections-datediary {
  padding: 40px 36px;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 28px;
  position: relative;
  overflow: hidden;
}
.connections-datediary::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,184,255,0.25), transparent);
  opacity: 0.6;
}
.connections-datediary h3 {
  font-family: "dm-serif-display", Georgia, serif;
  font-weight: 400;
  font-size: clamp(1.3rem, 1.8vw, 1.7rem);
  letter-spacing: -0.02em;
  color: var(--light);
  margin-bottom: 14px;
  line-height: 1.15;
}
.connections-datediary p {
  font-family: 'Grift', system-ui, sans-serif;
  font-size: var(--font-p);
  line-height: 1.9;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1.2em;
}
.connections-datediary p:last-child { margin-bottom: 0; }

.safety-cta-banner {
  background: #080e14;
  padding: 140px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.safety-cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(123,46,253,0.1) 0%, rgba(2,160,174,0.06) 40%, transparent 70%);
  pointer-events: none;
}
.safety-cta-banner::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,184,255,0.15) 50%, transparent);
}
.safety-cta-banner h2 {
  font-family: "dm-serif-display", Georgia, serif;
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 3.2rem);
  letter-spacing: -0.03em;
  color: var(--light);
  margin-bottom: 1rem;
  position: relative;
}
.safety-cta-banner p {
  font-family: 'Grift', system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.85;
  color: rgba(255,255,255,0.45);
  max-width: 52ch;
  margin: 0 auto 2.4rem;
  position: relative;
}

/* ════════════════════════════════════════
   VENUES PAGE
════════════════════════════════════════ */
.steps-list { display: flex; flex-direction: column; gap: 0; position: sticky; top: 110px; }
.step-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  align-items: start;
}
.step-item:last-child { border-bottom: none; padding-bottom: 0; }
.step-item:first-child { padding-top: 0; }
.step-num {
  font-family: "dm-serif-display", Georgia, serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: rgba(255,255,255,0.12);
  line-height: 1;
  padding-top: 2px;
}
.step-body h4 { font-family: 'Grift', system-ui, sans-serif; font-weight: 700; font-size: 0.95rem; color: var(--light); margin-bottom: 6px; letter-spacing: 0.01em; }
.step-body p { font-family: 'Grift', system-ui, sans-serif; font-size: 0.88rem; line-height: 1.75; color: rgba(255,255,255,0.8); margin: 0; }

.faq-list { display: flex; flex-direction: column; gap: 0; max-width: 860px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid rgba(255,255,255,0.06); padding: 28px 0; }
.faq-item:first-child { border-top: 1px solid rgba(255,255,255,0.06); }
.faq-q { display: flex; align-items: center; justify-content: space-between; gap: 24px; cursor: pointer; list-style: none; }
.faq-q::-webkit-details-marker { display: none; }
.faq-q-text {
  font-family: "dm-serif-display", Georgia, serif;
  font-weight: 400;
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  letter-spacing: -0.01em;
  color: var(--light);
  line-height: 1.2;
}
.faq-icon {
  width: 28px; height: 28px; flex-shrink: 0;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.4);
  transition: transform 0.3s cubic-bezier(.22,1,.36,1), border-color 0.3s ease, color 0.3s ease;
}
details[open] .faq-icon { transform: rotate(45deg); border-color: rgba(2,160,174,0.3); color: #02A0AE; }
.faq-a {
  font-family: 'Grift', system-ui, sans-serif;
  font-size: 0.92rem;
  line-height: 1.85;
  color: rgba(255,255,255,0.45);
  padding-top: 16px;
  max-width: 72ch;
}

.cta-banner {
  background: #080e14;
  padding: 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(2,160,174,0.1) 0%, rgba(123,46,253,0.07) 40%, transparent 70%);
  pointer-events: none;
}
.cta-banner::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(2,160,174,0.15) 40%, rgba(201,184,255,0.1) 60%, transparent);
}
.cta-banner-inner { position: relative; z-index: 1; }
.cta-banner h2 {
  font-family: "dm-serif-display", Georgia, serif;
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--light);
  margin-bottom: 1rem;
}
.cta-banner p {
  font-family: 'Grift', system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.85;
  color: rgba(255,255,255,0.8);
  max-width: 46ch;
  margin: 0 auto 2.4rem;
}
.cta-teal {
  display: inline-block;
  border-radius: 50px;
  padding: 15px 40px;
  font-family: 'Grift', system-ui, sans-serif;
  font-weight: 900;
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  background: linear-gradient(135deg, #02A0AE, #475FDB);
  color: #fff;
  box-shadow: 0 8px 32px rgba(2,160,174,0.3);
  transition: transform 0.3s cubic-bezier(.22,1,.36,1), box-shadow 0.3s ease;
}
.cta-teal:hover { transform: translateY(-2px); box-shadow: 0 14px 40px rgba(2,160,174,0.4); }
.cta-small-note {
  display: block;
  margin-top: 1rem;
  font-family: 'Grift', system-ui, sans-serif;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.22);
  letter-spacing: 0.04em;
}

.partner-types { display: flex; flex-direction: column; gap: 16px; margin-top: 1rem; }
.partner-type {
  padding: 20px 24px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-left: 2px solid rgba(2,160,174,0.4);
  border-radius: 12px;
}
.partner-type-title { display: block; font-family: "dm-serif-display", Georgia, serif; font-size: 1rem; color: var(--light); margin-bottom: 6px; }
.partner-type p { font-family: 'Grift', system-ui, sans-serif; font-size: 0.86rem; line-height: 1.7; color: rgba(255,255,255,0.45); margin: 0; }

.partner-criteria { list-style: none; padding: 0; margin: 0 0 1.2em; }
.partner-criteria li {
  font-family: 'Grift', system-ui, sans-serif;
  font-size: var(--font-p);
  line-height: 1.85;
  color: rgba(255,255,255,0.6);
  padding: 8px 0 8px 18px;
  position: relative;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.partner-criteria li:last-child { border-bottom: none; }
.partner-criteria li::before {
  content: '';
  position: absolute;
  left: 0; top: 13px;
  width: 5px; height: 5px;
  border-top: 1.5px solid rgba(2,160,174,0.65);
  border-right: 1.5px solid rgba(2,160,174,0.65);
  transform: rotate(45deg);
}

/* ════════════════════════════════════════
   LEGAL PAGES — privacy + terms (identical)
════════════════════════════════════════ */
.legal-hero {
  position: relative;
  padding: 160px 0 60px;
  background: #0d0d12;
}
.legal-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 0%, rgba(123,46,253,0.07) 0%, transparent 55%);
  pointer-events: none;
}
.legal-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.07) 50%, transparent);
}
.legal-hero h1 {
  font-family: "dm-serif-display", Georgia, serif;
  font-weight: 400;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  letter-spacing: -0.03em;
  line-height: 1.0;
  color: var(--light);
  margin-bottom: 12px;
}
.legal-hero-meta {
  font-family: 'Grift', system-ui, sans-serif;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.04em;
}

.legal-layout { background: #0d0d12; padding: 72px 0 120px; }
.legal-grid { display: grid; grid-template-columns: 220px 1fr; gap: 72px; align-items: start; }

.legal-nav { position: sticky; top: 100px; }
.legal-nav-label {
  font-family: 'Grift', system-ui, sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.2);
  margin-bottom: 16px;
  display: block;
}
.legal-nav-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 2px; }
.legal-nav-list a {
  display: block;
  font-family: 'Grift', system-ui, sans-serif;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
  padding: 6px 0 6px 12px;
  border-left: 2px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
  line-height: 1.4;
}
.legal-nav-list a:hover { color: rgba(255,255,255,0.65); border-left-color: rgba(201,184,255,0.3); }
.legal-nav-list a.active { color: #c9b8ff; border-left-color: #c9b8ff; }

.legal-content { max-width: 720px; }
.legal-section { margin-bottom: 56px; padding-bottom: 56px; border-bottom: 1px solid rgba(255,255,255,0.05); }
.legal-section:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.legal-section h2 {
  font-family: "dm-serif-display", Georgia, serif;
  font-weight: 400;
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  letter-spacing: -0.02em;
  color: var(--light);
  margin-bottom: 20px;
  scroll-margin-top: 100px;
}
.legal-section h3 {
  font-family: 'Grift', system-ui, sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin: 28px 0 10px;
}
.legal-section p {
  font-family: 'Grift', system-ui, sans-serif;
  font-size: 0.92rem;
  line-height: 1.85;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1em;
}
.legal-section p:last-child { margin-bottom: 0; }
.legal-section ul { padding-left: 0; margin: 0 0 1em; list-style: none; }
.legal-section ul li {
  font-family: 'Grift', system-ui, sans-serif;
  font-size: 0.92rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.5);
  padding: 6px 0 6px 20px;
  position: relative;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.legal-section ul li:last-child { border-bottom: none; }
.legal-section ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 4px; height: 4px;
  border-radius: 50%;
  background: rgba(201,184,255,0.4);
}
.legal-section a { color: #c9b8ff; text-decoration: underline; text-decoration-color: rgba(201,184,255,0.3); text-underline-offset: 3px; transition: text-decoration-color 0.2s ease; }
.legal-section a:hover { text-decoration-color: rgba(201,184,255,0.7); }

.def-grid { display: flex; flex-direction: column; gap: 0; margin: 8px 0; }
.def-item { display: grid; grid-template-columns: 140px 1fr; gap: 20px; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.04); align-items: baseline; }
.def-item:last-child { border-bottom: none; }
.def-term { font-family: 'Grift', system-ui, sans-serif; font-size: 0.8rem; font-weight: 700; color: rgba(255,255,255,0.55); letter-spacing: 0.02em; }
.def-desc { font-family: 'Grift', system-ui, sans-serif; font-size: 0.88rem; line-height: 1.75; color: rgba(255,255,255,0.42); }

.legal-contact {
  margin-top: 56px;
  padding: 32px 36px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 20px;
}
.legal-contact h3 { font-family: "dm-serif-display", Georgia, serif; font-weight: 400; font-size: 1.1rem; color: var(--light); margin-bottom: 12px; }
.legal-contact p { font-family: 'Grift', system-ui, sans-serif; font-size: 0.88rem; line-height: 1.8; color: rgba(255,255,255,0.45); margin-bottom: 0.6em; }
.legal-contact p:last-child { margin-bottom: 0; }
.legal-contact a { color: #c9b8ff; text-decoration: underline; text-decoration-color: rgba(201,184,255,0.3); }


/*section {padding:0 !important;}*/

#coming-section .section-eyebrow-pill {margin-top: 0;}
.about-section, .hiw-section, .minimise-section, .venues-section {padding:40px 0; position: relative;}

.hiw-closer {
    max-width: 1480px;
    margin: 0px auto;
    padding: 0px 48px 60px;
    overflow: hidden;
    text-align: center;
}

.hiw-closer .cta-principles {margin-top:20px;}


.minimise-section #fate-ribbon-full {
    bottom: -50px !important;
    top: inherit !important;
}

.venues-list-container {
  max-width: 1480px;
    margin: 0px auto;
    padding: 0px 48px 60px;
}

.split-copy {position: relative;}

.split-copy .hero-icon
 {
    display: flex;
    position: absolute;
    justify-content: center;
    opacity: 0.03;
    left: 50%;
    transform: translateX(-50%);
    top: 50px;
    margin: 0;
}

.date-app-icon {margin-bottom: 20px;}

.split-copy .hero-icon img {width: 300px;}

.date-diary-home-section {overflow: visible;}

.padd {padding:0 20px;}

/* ════════════════════════════════════════
   PAGE STYLES RESPONSIVE OVERRIDES
════════════════════════════════════════ */

@media (max-width: 1110px) {
.summary-item {width: 49.3%;}
}


@media (max-width: 1024px) {
  .feature-phone-image {opacity: 0.2;}
  .venues-section .identity-cards {grid-template-columns:1fr;}
  .venues-list-container {padding: 0px 32px;}
  .hiw-section .safety-container {padding-bottom: 80px;}
  .hiw-section .identity-cards {grid-template-columns:1fr;}
  .minimise-section .identity-cards {grid-template-columns:1fr;}
  .identity-cards { grid-template-columns: repeat(2, 1fr); }
  .safety-features-grid { grid-template-columns: repeat(2, 1fr); }
  .resource-grid { grid-template-columns: repeat(2, 1fr); }
  .summary-grid { grid-template-columns: 1fr; }
  .after-match-grid { grid-template-columns: repeat(3, 1fr); }
  .connections-layout { grid-template-columns: 1fr; }
  .cta-principles { grid-template-columns: 1fr; }
  .connect-grid { grid-template-columns: repeat(2, 1fr); }
  .outcome-grid { grid-template-columns: repeat(1, 1fr); }
  .flow-steps { flex-wrap: wrap; }
  .flow-step { flex: 0 0 50%; margin-bottom: 40px; }
  .flow-step:not(:last-child)::after { display: none; }
  .identity-card { margin-bottom: 20px; }
  .connect-card { padding-right: 44px; }
  .resources {grid-template-columns:1fr;}
  .in-app-safety {grid-template-columns:1fr;}
}

@media (max-width: 900px) {
  .identity-cards { grid-template-columns: 1fr; }
  .identity-card { width: 100%; margin-bottom: 20px; }
  .venue-showcase { grid-template-columns: 1fr; }
  .venue-showcase-image { min-height: 260px; }
  .before-grid { grid-template-columns: 1fr; }
  .venues-hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .steps-list { position: relative; top: 0; }
  .venues-hero-stats { grid-template-columns: 1fr 1fr; }
  .venues-hero-stats .hero-stat-card:first-child { grid-column: span 2; }
}
@media (max-width: 791px) {
  .summary-item {width: 100%;}
  }

@media (max-width: 768px) {
  .about-hero-inner {grid-template-columns: 1fr; gap: 20px;}
  .tips-hero, .hiw-hero, .venues-hero, .safety-hero { padding: 140px 0 60px; }
  .tips-hero-inner, .hiw-hero-inner, .safety-hero-inner { grid-template-columns: 1fr; gap: 20px; }
  .split-grid { grid-template-columns: 1fr; gap: 40px; }
  .before-grid { grid-template-columns: 1fr; }
  .venue-showcase { grid-template-columns: 1fr; }
  .venue-showcase-image { min-height: 260px; }
  .connect-grid { grid-template-columns: 1fr; }
  .connections-unlock { grid-template-columns: 1fr 1fr; }
  .unlock-card-wide { grid-column: span 2; }
  .tips-grid { grid-template-columns: 1fr; }
  .tip-card-wide { grid-column: span 1; }
  .safety-features-grid { grid-template-columns: 1fr; }

  .after-match-grid { grid-template-columns: repeat(2, 1fr); }
  .about-section { padding: 72px 0; }
  .tab-nav { padding: 32px 16px 0; flex-wrap: wrap; }
  .legal-grid { grid-template-columns: 1fr; gap: 48px; }
  .legal-nav { position: relative; top: 0; }

}

@media (max-width: 700px) {
.step-eyebrow {    color: rgba(255, 255, 255, 1);}
}

@media (max-width: 700px) {
  #scroll-section {
  height: calc(var(--steps, 3) * 100vh);
}
  #scroll-section {
    height: calc(var(--steps, 4) * 150vh);
  }
}

@media (max-width: 480px) {

  .tips-hero, .hiw-hero, .venues-hero, .safety-hero { padding: 120px 0 48px; }
  .tips-hero h1, .hiw-hero h1, .safety-hero h1 { font-size: clamp(2.2rem, 9vw, 3rem); }
  .venues-hero h1 { font-size: clamp(2.2rem, 9vw, 3rem); }
  .venues-hero-stats { grid-template-columns: 1fr; }
  .venues-hero-stats .hero-stat-card:first-child { grid-column: span 1; }
  .about-section { padding: 56px 0; }
  .flow-steps { flex-direction: column; }
  .flow-step { flex: 0 0 100%; margin-bottom: 32px; width: 100%; }
  #site-header { top: 8px; width: calc(100% - 16px); }
}
