/* ============================================================
   B2NOVA — shared design system ("deal a hand")
   Multi-page corporate site on the FLOP brand.
   Mirage #17181E · Aqua #00DDA8 -> #187A61 · Menda + Inter
   ============================================================ */

@font-face { font-family:'Menda'; src:url('fonts/Menda-Medium.woff2') format('woff2'); font-weight:500; font-display:swap; }
@font-face { font-family:'Menda'; src:url('fonts/Menda-SemiBold.woff2') format('woff2'); font-weight:600; font-display:swap; }
@font-face { font-family:'Menda'; src:url('fonts/Menda-Bold.woff2') format('woff2'); font-weight:700; font-display:swap; }
@font-face { font-family:'Menda'; src:url('fonts/Menda-ExtraBold.woff2') format('woff2'); font-weight:800; font-display:swap; }
@font-face { font-family:'Menda'; src:url('fonts/Menda-Black.woff2') format('woff2'); font-weight:900; font-display:swap; }

:root {
  --bg: #0d0e12;
  --mirage: #17181E;
  --panel: #14161c;
  --aqua: #00DDA8;
  --aqua-soft: #5fead0;
  --aqua-deep: #187A61;
  --ink: #05130E;
  --text: #F3F7F5;
  --muted: #99a19e;
  --muted-2: #c3ccc9;
  --hair: rgba(255,255,255,0.09);
  --hair-2: rgba(255,255,255,0.14);
  --stroke: rgba(243,247,245,0.52);
  --danger: #ff8f8f;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --maxw: 82rem;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { overflow-x: clip; }
body { font-family: 'Inter', sans-serif; background: var(--bg); color: var(--text); -webkit-font-smoothing: antialiased; line-height: 1.6; }
::selection { background: rgba(0,221,168,0.28); }
img, video { max-width: 100%; display: block; }
h1, h2, h3, h4 { font-family: 'Menda', sans-serif; }
a { color: inherit; }

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

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 clamp(1.25rem, 4vw, 4rem); }
.section { padding: clamp(5rem, 9vw, 9rem) 0; position: relative; }
.section.tight { padding: clamp(3.5rem, 6vw, 6rem) 0; }

/* ============ HEADER ============ */
#site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100; height: 4.5rem; display: flex; align-items: center;
  background: rgba(13,14,18,0.72); backdrop-filter: blur(18px) saturate(140%); -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom: 1px solid var(--hair);
}
#site-header .bar { width: 100%; max-width: 88rem; margin: 0 auto; padding: 0 clamp(1.25rem, 4vw, 2.5rem); display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }
.brand { font-family: 'Menda', sans-serif; font-weight: 800; font-size: 1.1rem; text-transform: lowercase; color: #fff; text-decoration: none; display: inline-flex; align-items: center; gap: 0.55rem; }
.brand .glyph { width: 0.5rem; height: 0.5rem; border-radius: 50%; background: var(--aqua); box-shadow: 0 0 14px rgba(0,221,168,0.85); }
#site-header nav { display: flex; align-items: center; gap: 0.3rem; }
#site-header .nav-item { position: relative; }
#site-header .nav-item > a { display: inline-flex; align-items: center; height: 4.5rem; padding: 0 0.75rem; font-size: 0.85rem; color: var(--muted-2); text-decoration: none; transition: color 0.3s var(--ease); white-space: nowrap; }
#site-header .nav-item > a:hover { color: #fff; }
#site-header .nav-item > a[aria-current="page"] { color: var(--aqua-soft); }
#site-header .nav-item > a::after { content: ''; position: absolute; left: 0.75rem; right: 0.75rem; bottom: 1.05rem; height: 2px; border-radius: 2px; background: var(--aqua); transform: scaleX(0); transform-origin: left; transition: transform 0.3s var(--ease); }
#site-header .nav-item:hover > a::after, #site-header .nav-item > a[aria-current="page"]::after { transform: scaleX(1); }

/* Dropdown */
#site-header .dropdown { position: absolute; top: 100%; left: 50%; transform: translateX(-50%); padding-top: 0.15rem; opacity: 0; pointer-events: none; transition: opacity 0.25s var(--ease); }
#site-header .nav-item:hover .dropdown, #site-header .nav-item:focus-within .dropdown { opacity: 1; pointer-events: auto; }
#site-header .dd-panel {
  min-width: 13.5rem; padding: 0.5rem; border-radius: 1rem;
  background: rgba(18,20,26,0.97); backdrop-filter: blur(18px) saturate(140%); -webkit-backdrop-filter: blur(18px) saturate(140%);
  border: 1px solid var(--hair); box-shadow: 0 26px 60px -26px rgba(0,0,0,0.85);
  transform: translateY(8px); transition: transform 0.25s var(--ease);
}
#site-header .nav-item:hover .dd-panel, #site-header .nav-item:focus-within .dd-panel { transform: translateY(0); }
#site-header .dd-panel a { display: block; padding: 0.55rem 0.8rem; border-radius: 0.6rem; font-size: 0.83rem; color: var(--muted-2); text-decoration: none; white-space: nowrap; transition: background 0.2s var(--ease), color 0.2s var(--ease); height: auto; }
#site-header .dd-panel a:hover { background: rgba(0,221,168,0.1); color: #fff; }

/* Anchor offset under fixed header */
section[id], .uc[id], [id].founder, [id].hole { scroll-margin-top: 5.5rem; }
.header-right { display: flex; align-items: center; gap: 1.3rem; }
.nav-cta {
  display: inline-flex; align-items: center; gap: 0.45rem; background: linear-gradient(135deg, var(--aqua), var(--aqua-deep)); color: var(--ink);
  font-size: 0.82rem; font-weight: 600; text-decoration: none; white-space: nowrap; padding: 0.55rem 1.15rem; border-radius: 999px;
  box-shadow: 0 10px 26px -12px rgba(0,221,168,0.5); transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 16px 32px -12px rgba(0,221,168,0.65); }

#burger { width: 2.6rem; height: 2.6rem; border-radius: 999px; background: rgba(255,255,255,0.06); border: 1px solid var(--hair); cursor: pointer; position: relative; }
#burger span { position: absolute; left: 50%; top: 50%; width: 1.05rem; height: 1.6px; background: #fff; transform: translate(-50%, -50%); transition: transform 0.45s var(--ease); }
#burger span:nth-child(1) { transform: translate(-50%, calc(-50% - 4px)); }
#burger span:nth-child(2) { transform: translate(-50%, calc(-50% + 4px)); }
body.menu-open #burger span:nth-child(1) { transform: translate(-50%, -50%) rotate(45deg); }
body.menu-open #burger span:nth-child(2) { transform: translate(-50%, -50%) rotate(-45deg); }

/* Fullscreen outline menu */
#mobile-menu {
  position: fixed; inset: 0; z-index: 95; display: flex; flex-direction: column; align-items: flex-start; justify-content: center;
  padding: 0 clamp(2rem, 10vw, 10rem); background: rgba(9,10,13,0.94); backdrop-filter: blur(28px); -webkit-backdrop-filter: blur(28px);
  opacity: 0; pointer-events: none; transition: opacity 0.5s var(--ease);
}
body.menu-open #mobile-menu { opacity: 1; pointer-events: auto; }
#mobile-menu a {
  font-family: 'Menda', sans-serif; font-weight: 900; text-decoration: none; font-size: clamp(1.9rem, 6.5vw, 3.6rem); line-height: 1.18;
  letter-spacing: 0.01em; text-transform: uppercase; color: transparent; -webkit-text-stroke: 1.5px var(--stroke);
  transition: color 0.35s var(--ease), -webkit-text-stroke-color 0.35s var(--ease);
}
#mobile-menu a:hover, #mobile-menu a[aria-current="page"] { color: var(--aqua); -webkit-text-stroke-color: transparent; }
#mobile-menu .menu-sub { margin-top: 2rem; color: var(--muted); font-size: 0.9rem; -webkit-text-stroke: 0; }

/* ============ BUTTONS ============ */
.btn { display: inline-flex; align-items: center; gap: 0.6rem; font-size: 0.95rem; font-weight: 600; text-decoration: none; cursor: pointer; border: 0; border-radius: 999px; transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.3s var(--ease); }
.btn:active { transform: scale(0.975); }
.btn-primary { background: linear-gradient(135deg, var(--aqua), var(--aqua-deep)); color: var(--ink); padding: 0.9rem 1.7rem; box-shadow: 0 12px 34px -12px rgba(0,221,168,0.5), inset 0 1px 0 rgba(255,255,255,0.35); }
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 18px 44px -12px rgba(0,221,168,0.65); }
.btn-ghost { background: rgba(255,255,255,0.05); border: 1px solid var(--hair-2); color: var(--text); padding: 0.9rem 1.55rem; }
.btn-ghost:hover { background: rgba(255,255,255,0.1); }
.btn-lg { font-size: 1rem; padding: 1.05rem 2rem; }

/* Poker chip button */
.chip-btn {
  display: inline-flex; align-items: center; justify-content: center; text-align: center; width: 8.5rem; height: 8.5rem; border-radius: 50%;
  font-family: 'Menda', sans-serif; font-weight: 800; font-size: 0.86rem; letter-spacing: 0.1em; text-transform: uppercase; text-decoration: none;
  color: var(--ink); line-height: 1.35; position: relative;
  background: radial-gradient(circle at 35% 30%, var(--aqua-soft), var(--aqua) 45%, var(--aqua-deep));
  box-shadow: 0 22px 55px -18px rgba(0,221,168,0.65), inset 0 2px 2px rgba(255,255,255,0.4);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.chip-btn::before { content: ''; position: absolute; inset: 0.55rem; border-radius: 50%; border: 2px dashed rgba(5,19,14,0.4); }
.chip-btn:hover { transform: rotate(14deg) scale(1.05); box-shadow: 0 30px 70px -18px rgba(0,221,168,0.8), inset 0 2px 2px rgba(255,255,255,0.45); }
.chip-btn:active { transform: scale(0.96); }

.arrow-link { display: inline-flex; align-items: center; gap: 0.5rem; color: var(--aqua-soft); font-weight: 600; font-size: 0.94rem; text-decoration: none; transition: gap 0.3s var(--ease), color 0.3s var(--ease); }
.arrow-link:hover { gap: 0.85rem; color: var(--aqua); }

/* ============ TYPE ============ */
.eyebrow { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.32rem 0.9rem; border-radius: 999px; background: rgba(0,221,168,0.08); border: 1px solid rgba(0,221,168,0.25); font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 600; color: var(--aqua-soft); }
.eyebrow .d { width: 0.38rem; height: 0.38rem; border-radius: 50%; background: var(--aqua); box-shadow: 0 0 10px var(--aqua); }
.aq { color: transparent; background: linear-gradient(100deg, var(--aqua), var(--aqua-soft)); -webkit-background-clip: text; background-clip: text; }
.muted { color: var(--muted); }
.lede { color: var(--muted-2); font-size: clamp(1rem, 1.3vw, 1.12rem); max-width: 44rem; }

/* Big outline street title (classic wording) */
.street-title {
  font-family: 'Menda', sans-serif; font-weight: 900; text-transform: uppercase; font-size: clamp(2.6rem, 8vw, 6.5rem);
  line-height: 0.96; letter-spacing: 0.005em; color: transparent; -webkit-text-stroke: 2px var(--stroke);
}
.street-title .fill { color: transparent; -webkit-text-stroke: 0; background: linear-gradient(100deg, var(--aqua), var(--aqua-soft)); -webkit-background-clip: text; background-clip: text; }
.h-md { font-family: 'Menda', sans-serif; font-weight: 700; font-size: clamp(1.4rem, 2.4vw, 1.9rem); letter-spacing: -0.01em; line-height: 1.08; }
.section-head { max-width: 48rem; }
.section-head .eyebrow { margin-bottom: 1.3rem; }
.section-head p { margin-top: 1.2rem; }

/* ============ HERO ============ */
.hero { position: relative; min-height: 82vh; display: flex; align-items: center; overflow: clip; padding-top: 5rem; }
.hero.tall { min-height: 100dvh; }
.hero .media { position: absolute; inset: 0; z-index: -2; }
.hero .media video, .hero .media img { width: 100%; height: 100%; object-fit: cover; }
.hero .grade { position: absolute; inset: 0; z-index: -1; background:
  linear-gradient(to right, rgba(13,14,18,0.92) 0%, rgba(13,14,18,0.66) 44%, rgba(13,14,18,0.3) 100%),
  linear-gradient(to top, rgba(13,14,18,0.96) 0%, transparent 40%),
  radial-gradient(110% 80% at 12% 15%, rgba(0,221,168,0.12), transparent 55%); }
.hero .ring { position: absolute; right: -16vw; top: -12vw; width: 52vw; max-width: 58rem; opacity: 0.12; pointer-events: none; z-index: -1; user-select: none; }
@keyframes spin { to { transform: rotate(360deg); } }
.hero .ring img { animation: spin 130s linear infinite; }
.hero .watermark {
  position: absolute; left: 0; right: 0; bottom: 2.5vh; z-index: -1; text-align: center; pointer-events: none; user-select: none; white-space: nowrap;
  font-family: 'Menda', sans-serif; font-weight: 900; text-transform: uppercase; font-size: clamp(4rem, 15vw, 13rem); line-height: 1; letter-spacing: 0.02em;
  color: transparent; -webkit-text-stroke: 1px rgba(243,247,245,0.06);
}
.hero .inner { position: relative; z-index: 1; padding: clamp(3rem, 6vw, 5rem) 0; max-width: 50rem; }
.hero .eyebrow { margin-bottom: 1.5rem; }
.hero h1 { font-weight: 900; text-transform: uppercase; font-size: clamp(2.2rem, 5vw, 4.4rem); line-height: 1; letter-spacing: 0.005em; margin-bottom: 1.4rem; }
.hero .lede { margin-top: 0; }
.hero .ctas { display: flex; align-items: center; gap: clamp(1rem, 3vw, 2.2rem); margin-top: 2.4rem; flex-wrap: wrap; }
.hero .est { font-family: 'Menda', sans-serif; font-weight: 700; font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted); line-height: 2; }
.hero .est b { color: var(--aqua-soft); }
.hero .trust { margin-top: 1.9rem; font-size: 0.85rem; color: var(--muted); display: inline-flex; align-items: center; gap: 0.5rem; }
.hero .trust svg { width: 0.95rem; height: 0.95rem; color: var(--aqua); }
.hero .trust strong { color: #eef2f0; font-weight: 600; }

/* Dealt cards (home hero) */
.hero .deck { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.deal-card {
  position: absolute; width: clamp(4rem, 6vw, 6rem); aspect-ratio: 5.6 / 7.6; border-radius: 18%;
  background: linear-gradient(150deg, var(--aqua-soft), var(--aqua) 45%, var(--aqua-deep));
  box-shadow: 0 18px 40px -14px rgba(0,221,168,0.55); top: clamp(9rem, 26vh, 17rem); right: clamp(6rem, 15vw, 20rem);
}
.deal-card.c1 { transform: rotate(-45deg) translate(-118%, 12%); }
.deal-card.c2 { transform: rotate(0deg); z-index: 2; }
.deal-card.c3 { transform: rotate(-45deg) translate(118%, -6%); opacity: 0.94; }
@keyframes dealin { 0% { translate: 60vw -40vh; rotate: 160deg; opacity: 0; } 60% { opacity: 1; } 100% { translate: 0 0; rotate: 0deg; opacity: 1; } }
@keyframes floatcard { 0%, 100% { translate: 0 0; } 50% { translate: 0 -14px; } }
body.loaded .deal-card { animation: dealin 1.1s var(--ease) backwards, floatcard 5.2s ease-in-out 1.2s infinite; }
body.loaded .deal-card.c2 { animation-delay: 0.18s, 1.6s; animation-duration: 1.1s, 5.8s; }
body.loaded .deal-card.c3 { animation-delay: 0.36s, 2s; animation-duration: 1.1s, 6.4s; }

/* ============ LAYOUT HELPERS ============ */
.grid { display: grid; gap: 1.5rem; }
.grid-2 { grid-template-columns: 1fr 1fr; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.split.wide-left { grid-template-columns: 1.05fr 0.95fr; }

/* ============ PANELS ============ */
.panel {
  border-radius: 1.4rem; padding: clamp(1.7rem, 2.4vw, 2.3rem); position: relative; overflow: hidden;
  background: linear-gradient(165deg, rgba(29,31,38,0.85), rgba(16,17,22,0.9)); border: 1px solid var(--hair); box-shadow: inset 0 1px 1px rgba(255,255,255,0.05);
}
.panel.glow::before { content: ''; position: absolute; top: -45%; right: -25%; width: 65%; height: 90%; background: radial-gradient(circle, rgba(0,221,168,0.13), transparent 70%); pointer-events: none; }
.tag { font-family: 'Menda', sans-serif; font-weight: 800; font-size: 0.76rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--aqua-soft); display: inline-block; margin-bottom: 0.9rem; }

.flist { list-style: none; display: grid; gap: 0.7rem; }
.flist li { display: flex; gap: 0.7rem; align-items: flex-start; font-size: 0.94rem; color: var(--muted-2); }
.flist li svg { width: 1.05rem; height: 1.05rem; color: var(--aqua); flex: none; margin-top: 0.2rem; }

.stat { border: 1px solid var(--hair); border-radius: 1rem; padding: 1.3rem 1.4rem; background: rgba(255,255,255,0.02); }
.stat .n { font-family: 'Menda', sans-serif; font-weight: 800; font-size: clamp(1.7rem, 3vw, 2.3rem); color: transparent; background: linear-gradient(120deg, var(--aqua), var(--aqua-soft)); -webkit-background-clip: text; background-clip: text; line-height: 1; }
.stat .l { margin-top: 0.5rem; font-size: 0.78rem; letter-spacing: 0.04em; text-transform: uppercase; color: var(--muted); font-weight: 600; }

.step .num { font-family: 'Menda', sans-serif; font-weight: 800; font-size: 1.5rem; color: var(--aqua); margin-bottom: 0.6rem; }
.step h4 { font-size: 1.05rem; font-weight: 700; }
.step p { margin-top: 0.5rem; color: var(--muted); font-size: 0.92rem; }

.rows { border-top: 1px solid var(--hair); }
.row-item { border-bottom: 1px solid var(--hair); padding: 1.8rem 0; display: grid; grid-template-columns: auto 1fr; gap: 1.4rem; align-items: start; }
.row-item .rn { font-family: 'Menda', sans-serif; font-weight: 800; font-size: 1.1rem; color: var(--aqua-soft); min-width: 2.5rem; }
.row-item h4 { font-size: 1.15rem; font-weight: 700; }
.row-item p { margin-top: 0.5rem; color: var(--muted); font-size: 0.96rem; max-width: 58ch; }

.pills { display: flex; gap: 0.6rem; flex-wrap: wrap; }
.fact { font-size: 0.8rem; font-weight: 600; color: #e6ece9; padding: 0.42rem 1rem; border-radius: 999px; background: rgba(13,14,18,0.55); border: 1px solid rgba(255,255,255,0.16); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); }

.tint-panel { background: rgba(255,255,255,0.015); border-top: 1px solid var(--hair); border-bottom: 1px solid var(--hair); }
.tint-aqua { background: linear-gradient(180deg, transparent, rgba(0,221,168,0.035) 40%, transparent); }

/* ============ FLIP CARDS (playing cards) ============ */
.table-arc { display: flex; justify-content: center; align-items: stretch; gap: clamp(0.5rem, 2vw, 2rem); perspective: 1600px; }
.pcard { width: clamp(16rem, 26vw, 23rem); aspect-ratio: 5 / 7.2; flex: none; }
.pcard:nth-child(1) { transform: rotate(-5deg) translateY(1.6rem); }
.pcard:nth-child(3) { transform: rotate(5deg) translateY(1.6rem); }
.pcard .flip { position: relative; width: 100%; height: 100%; transform-style: preserve-3d; transform: rotateY(180deg); transition: transform 1.1s var(--ease); }
.pcard.in .flip { transform: rotateY(0deg); }
.pcard:nth-child(2).in .flip { transition-delay: 0.15s; }
.pcard:nth-child(3).in .flip { transition-delay: 0.3s; }
.pcard .face, .pcard .back { position: absolute; inset: 0; border-radius: 1.4rem; overflow: hidden; backface-visibility: hidden; -webkit-backface-visibility: hidden; border: 1px solid var(--hair); }
.pcard .back { transform: rotateY(180deg); background: radial-gradient(120% 100% at 50% 0%, rgba(0,221,168,0.28), transparent 60%), var(--mirage); display: flex; align-items: center; justify-content: center; }
.pcard .back img { width: 45%; opacity: 0.9; }
.pcard .face { background: linear-gradient(170deg, #1d1f26, #101116 70%); display: flex; flex-direction: column; box-shadow: inset 0 1px 1px rgba(255,255,255,0.07); }
.pcard .pip { position: absolute; top: 1.1rem; left: 1.2rem; z-index: 2; font-family: 'Menda', sans-serif; font-weight: 800; font-size: 0.8rem; letter-spacing: 0.1em; color: var(--aqua-soft); display: flex; flex-direction: column; line-height: 1.3; }
.pcard .pip .suit { font-size: 1.05rem; color: var(--aqua); }
.pcard .shot { height: 50%; overflow: hidden; }
.pcard .shot img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.pcard .body { padding: 1.4rem 1.5rem 1.7rem; display: flex; flex-direction: column; flex: 1; }
.pcard h3 { font-size: 1.3rem; font-weight: 700; letter-spacing: -0.01em; }
.pcard .who { color: var(--aqua-soft); font-size: 0.82rem; font-weight: 600; margin-top: 0.25rem; }
.pcard ul { list-style: none; margin-top: 1rem; display: grid; gap: 0.5rem; }
.pcard li { font-size: 0.85rem; color: #b9c2bf; padding-left: 1.1rem; position: relative; }
.pcard li::before { content: ''; position: absolute; left: 0; top: 0.5em; width: 0.42rem; height: 0.42rem; border-radius: 2px; background: var(--aqua); transform: rotate(45deg); }
.pcard.brand .face { background: radial-gradient(130% 110% at 20% 0%, rgba(0,221,168,0.3), transparent 55%), linear-gradient(170deg, #12312a, #0e1013 75%); align-items: flex-start; justify-content: flex-end; padding: 1.7rem 1.6rem 1.9rem; }
.pcard.brand img.lg { width: 62%; margin-bottom: auto; margin-top: 3rem; }
.pcard.brand p { color: #c9d2cf; font-size: 0.95rem; }
.pcard.brand .arrow-link { margin-top: 1.2rem; }

/* ============ MARQUEE ============ */
.marquee { padding: 2.2rem 0; transform: rotate(-1.6deg); border-top: 1px solid var(--hair); border-bottom: 1px solid var(--hair); background: rgba(23,24,30,0.6); overflow: clip; }
.marquee .track { display: flex; gap: 3.5rem; width: max-content; animation: slide 30s linear infinite; }
@keyframes slide { to { transform: translateX(-50%); } }
.marquee span { font-family: 'Menda', sans-serif; font-weight: 800; font-size: 1.15rem; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(243,247,245,0.55); white-space: nowrap; display: inline-flex; align-items: center; gap: 3.5rem; }
.marquee .s { color: var(--aqua); font-size: 0.9rem; }

/* ============ VIDEO BANNERS (events) ============ */
.banner { position: relative; border-radius: 1.4rem; overflow: hidden; border: 1px solid var(--hair); min-height: 26rem; display: flex; align-items: flex-end; }
.banner video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.banner .scrim { position: absolute; inset: 0; background: linear-gradient(to top, rgba(9,10,13,0.94) 8%, rgba(9,10,13,0.35) 55%, rgba(9,10,13,0.25) 100%), linear-gradient(to right, rgba(9,10,13,0.55), transparent 60%); }
.banner .inner { position: relative; padding: clamp(1.8rem, 4vw, 3rem); width: 100%; }
.banner .ev-tag { font-family: 'Menda', sans-serif; font-weight: 900; font-size: clamp(2.6rem, 7vw, 5.5rem); line-height: 1; color: transparent; -webkit-text-stroke: 2px rgba(243,247,245,0.6); display: block; margin-bottom: 0.5rem; }
.banner h3 { font-size: clamp(1.35rem, 2.4vw, 1.9rem); font-weight: 700; max-width: 24ch; }
.banner p.desc { margin-top: 0.8rem; color: #cfd6d3; font-size: 0.98rem; max-width: 56ch; }
.banner .facts { display: flex; gap: 0.6rem; flex-wrap: wrap; margin-top: 1.4rem; }
.banner .host { display: flex; align-items: center; gap: 0.9rem; margin-top: 1.5rem; }
.banner .host img { width: 4.4rem; border-radius: 0.7rem; border: 1px solid rgba(255,255,255,0.25); }
.banner .host span { font-size: 0.86rem; color: #cfd6d3; max-width: 20rem; line-height: 1.45; }
.banner .host b { color: #fff; }
.banner .arrow-link { margin-top: 1.2rem; }

/* ============ HOLE CARDS (founders / cases) ============ */
.hole .card-media { border-radius: 1.4rem; overflow: hidden; border: 1px solid var(--hair); aspect-ratio: 5 / 5.6; position: relative; box-shadow: 0 44px 90px -42px rgba(0,0,0,0.9); }
.hole .card-media video, .hole .card-media img { width: 100%; height: 100%; object-fit: cover; }
.hole .card-media .mono { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; background: radial-gradient(120% 100% at 80% 10%, rgba(0,221,168,0.2), transparent 55%), linear-gradient(160deg, #1c1e26, #0f1014); }
.hole .card-media .mono span { font-family: 'Menda', sans-serif; font-weight: 900; font-size: clamp(4rem, 8vw, 7rem); color: transparent; background: linear-gradient(120deg, var(--aqua), var(--aqua-deep)); -webkit-background-clip: text; background-clip: text; }
.hole .card-media .mono img { width: 42%; height: auto; }
.hole .card-media .pip2 { position: absolute; top: 1.1rem; left: 1.2rem; font-family: 'Menda', sans-serif; font-weight: 800; font-size: 0.78rem; letter-spacing: 0.12em; color: #fff; text-transform: uppercase; padding: 0.35rem 0.85rem; border-radius: 999px; background: rgba(9,10,13,0.55); border: 1px solid rgba(255,255,255,0.2); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); }

/* ============ MISSION SUITS ============ */
.suits { font-size: 1.5rem; color: var(--aqua); letter-spacing: 0.6em; margin-bottom: 1.4rem; }

/* ============ CTA STRIP ============ */
.cta-strip { position: relative; overflow: hidden; border-radius: 1.6rem; padding: clamp(2.6rem, 5vw, 4rem); text-align: center;
  background: radial-gradient(130% 120% at 50% 0%, rgba(0,221,168,0.16), transparent 60%), linear-gradient(165deg, #14211d, #0f1013 75%); border: 1px solid var(--hair); }
.cta-strip h2 { margin-bottom: 1rem; }
.cta-strip p { color: var(--muted-2); max-width: 40rem; margin: 0 auto 2rem; }

/* ============ CONTACT ============ */
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(2.5rem, 5vw, 4.5rem); align-items: start; }
.contact-side .meta { margin-top: 2rem; display: grid; gap: 0.9rem; }
.contact-side .meta div { display: flex; align-items: center; gap: 0.8rem; color: var(--muted-2); font-size: 0.94rem; }
.contact-side .meta svg { width: 1.1rem; height: 1.1rem; color: var(--aqua); flex: none; }
.contact-side .meta a { color: var(--muted-2); text-decoration: none; border-bottom: 1px solid rgba(255,255,255,0.2); transition: color 0.3s var(--ease), border-color 0.3s var(--ease); }
.contact-side .meta a:hover { color: var(--aqua-soft); border-color: var(--aqua-soft); }
form.contact { border-radius: 1.4rem; padding: clamp(1.8rem, 3vw, 2.5rem); transform: rotate(0.8deg);
  background: radial-gradient(140% 120% at 100% 0%, rgba(0,221,168,0.1), transparent 55%), linear-gradient(165deg, rgba(29,31,38,0.9), rgba(16,17,22,0.94));
  border: 1px solid var(--hair); box-shadow: inset 0 1px 1px rgba(255,255,255,0.05), 0 50px 100px -55px rgba(0,0,0,0.9); }
.field { display: grid; gap: 0.5rem; }
.field + .field { margin-top: 1.3rem; }
.field label { font-family: 'Menda', sans-serif; font-size: 0.76rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: #dfe6e2; }
.field input, .field textarea { width: 100%; border-radius: 0.75rem; border: 1px solid var(--hair-2); background: rgba(13,14,18,0.65); color: var(--text); font-family: 'Inter', sans-serif; font-size: 0.95rem; padding: 0.85rem 1rem; outline: none; transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease); }
.field input::placeholder, .field textarea::placeholder { color: #7c8582; }
.field input:focus, .field textarea:focus { border-color: var(--aqua); box-shadow: 0 0 0 3px rgba(0,221,168,0.18); }
.field textarea { min-height: 8.5rem; resize: vertical; }
.field .err { display: none; font-size: 0.82rem; color: var(--danger); }
.field.invalid input, .field.invalid textarea { border-color: rgba(255,120,120,0.65); }
.field.invalid .err { display: block; }
form.contact button { margin-top: 1.7rem; width: 100%; cursor: pointer; border: 0; display: inline-flex; align-items: center; justify-content: center; gap: 0.6rem;
  font-family: 'Menda', sans-serif; font-weight: 800; font-size: 0.9rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink); padding: 1.05rem 1.6rem; border-radius: 999px;
  background: linear-gradient(135deg, var(--aqua), var(--aqua-deep)); box-shadow: 0 14px 36px -12px rgba(0,221,168,0.55), inset 0 1px 0 rgba(255,255,255,0.35); transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease); }
form.contact button:hover { transform: translateY(-1px); box-shadow: 0 20px 46px -12px rgba(0,221,168,0.7); }
form.contact button:active { transform: scale(0.98); }
form.contact button[disabled] { opacity: 0.65; cursor: wait; transform: none; }
#form-status { margin-top: 1.05rem; font-size: 0.9rem; display: none; }
#form-status.ok { display: block; color: var(--aqua-soft); }
#form-status.ko { display: block; color: var(--danger); }
#form-status a { color: inherit; }

/* ============ FOOTER ============ */
#site-footer { border-top: 1px solid var(--hair); background: rgba(9,10,13,0.7); padding: clamp(3rem, 5vw, 4rem) 0 2.5rem; }
#site-footer .cols { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2.5rem; }
#site-footer .about .brand { margin-bottom: 0.8rem; }
#site-footer .about p { color: var(--muted); font-size: 0.88rem; max-width: 26rem; }
#site-footer .about .flop-logo { height: 1.5rem; margin-top: 1.4rem; opacity: 0.8; }
#site-footer h5 { font-family: 'Menda', sans-serif; font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); margin-bottom: 1rem; }
#site-footer ul { list-style: none; display: grid; gap: 0.6rem; }
#site-footer ul a { color: var(--muted-2); font-size: 0.9rem; text-decoration: none; transition: color 0.3s var(--ease); }
#site-footer ul a:hover { color: var(--aqua); }
#site-footer .base { margin-top: 3rem; padding-top: 1.6rem; border-top: 1px solid var(--hair); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem; color: var(--muted); font-size: 0.8rem; }

/* ============ REVEAL ============ */
.rv { opacity: 0; transform: translateY(28px); }
.rv.in { opacity: 1; transform: translateY(0); transition: opacity 0.85s var(--ease), transform 0.85s var(--ease); }
.rv.d1 { transition-delay: 0.08s; } .rv.d2 { transition-delay: 0.16s; } .rv.d3 { transition-delay: 0.24s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .rv { opacity: 1; transform: none; } .rv.in { transition: none; }
  .pcard .flip { transform: rotateY(0) !important; transition: none !important; }
  .marquee .track { animation: none; }
  .hero .ring img { animation: none; }
  body.loaded .deal-card { animation: none; }
  * { animation-duration: 0.01ms !important; }
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1000px) {
  #site-header nav, #site-header .nav-cta { display: none; }
  .grid-3, .grid-4 { grid-template-columns: 1fr 1fr; }
  .split, .split.wide-left, .contact-grid { grid-template-columns: 1fr; }
  .split .visual-col { order: 2; }
  .deal-card { display: none; }
  .table-arc { flex-direction: column; align-items: center; gap: 1.6rem; }
  .pcard, .pcard:nth-child(1), .pcard:nth-child(3) { transform: none; width: min(100%, 24rem); }
  .marquee { transform: rotate(0); }
  form.contact { transform: none; }
}
@media (max-width: 680px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  #site-footer .cols { grid-template-columns: 1fr 1fr; }
  #site-footer .about { grid-column: 1 / -1; }
  .hero .ctas { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
  .row-item { grid-template-columns: 1fr; gap: 0.5rem; }
  .banner { min-height: 22rem; }
}
