/* Optional: self-host Futura if you own the webfont
@font-face {
  font-family: "Futura";
  src: url("assets/fonts/Futura.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 400;
}
*/

:root {
  /* User request: white background */
  --bg: #ffffff;      /* NOTE: correct hex is #ffffff (6 f's) */
  --bg2: #f6f7f9;

  --text: rgba(0, 0, 0, 0.92);
  --muted: rgba(0, 0, 0, 0.68);
  --muted2: rgba(0, 0, 0, 0.52);

  --line: rgba(0, 0, 0, 0.10);

  --card: rgba(255, 255, 255, 0.92);
  --card2: rgba(255, 255, 255, 0.98);

  --shadow: 0 18px 50px rgba(0, 0, 0, 0.10);
  --shadow2: 0 10px 26px rgba(0, 0, 0, 0.08);

  --radius: 18px;
  --radius2: 26px;

  /* Futura first, then safe fallbacks */
  --font: "Futura", "Futura PT", "Avenir Next", "Helvetica Neue", Arial, system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background:
    radial-gradient(900px 500px at 50% -140px, rgba(0,0,0,0.06), transparent 60%),
    linear-gradient(180deg, var(--bg), var(--bg2));
}

/* ---------------------------
   HERO: full screen
---------------------------- */
.hero {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 48px 22px;
  position: relative;
  overflow: hidden;
  background: var(--bg);
}

.hero::before {
  content: "";
  position: absolute;
  inset: -2px;
  background:
    radial-gradient(900px 420px at 50% 40%, rgba(0,0,0,0.06), transparent 62%),
    radial-gradient(600px 300px at 20% 80%, rgba(0,0,0,0.04), transparent 60%),
    radial-gradient(600px 300px at 80% 80%, rgba(0,0,0,0.04), transparent 60%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  display: grid;
  place-items: center;
  gap: 18px;
  width: 100%;
}

.hero-logo {
  width: min(1180px, 86vw);
  height: auto;
  display: block;
  filter: drop-shadow(0 18px 28px rgba(0,0,0,0.10));
}

/* Scroll hint */
.scroll-hint {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  display: grid;
  place-items: center;
  gap: 10px;
  opacity: 0.9;
}

.scroll-line {
  width: 1px;
  height: 44px;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.55), transparent);
  animation: scrollPulse 1.8s ease-in-out infinite;
}

.scroll-text {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}

@keyframes scrollPulse {
  0%, 100% { transform: translateY(0); opacity: 0.6; }
  50% { transform: translateY(6px); opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .scroll-line { animation: none; }
}

/* ---------------------------
   LAYOUT
---------------------------- */
.main {
  border-top: 1px solid rgba(0,0,0,0.06);
  background: transparent;
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.section {
  padding: 92px 0;
}

.section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 26px;
}

.section-title {
  margin: 0;
  font-size: clamp(22px, 2.2vw, 30px);
  letter-spacing: 0.02em;
}

.section-note {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

/* ---------------------------
   INTRO
---------------------------- */
.title {
  margin: 0 0 10px 0;
  font-size: clamp(34px, 4vw, 46px);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.subtitle {
  margin: 0 0 34px 0;
  color: var(--muted);
  font-size: clamp(16px, 1.6vw, 18px);
  line-height: 1.7;
  max-width: 74ch;
}

.grid-two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

@media (max-width: 840px) {
  .grid-two { grid-template-columns: 1fr; }
}

/* ---------------------------
   CARDS
---------------------------- */
.card {
  background: linear-gradient(180deg, rgba(255,255,255,0.95), rgba(255,255,255,0.90));
  border: 1px solid rgba(0,0,0,0.10);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 22px 22px;
}

.card-title {
  margin: 0 0 10px 0;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.70);
}

.card-text {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
  font-size: 15px;
}

/* ---------------------------
   VENTURE GRID
---------------------------- */
.venture-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}

.venture-card {
  grid-column: span 6;
  text-decoration: none;
  color: inherit;
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(255,255,255,0.92));
  border: 1px solid rgba(0,0,0,0.10);
  border-radius: var(--radius2);
  box-shadow: var(--shadow2);
  padding: 18px;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
  display: grid;
  gap: 14px;
}

.venture-card:hover {
  transform: translateY(-2px);
  border-color: rgba(0,0,0,0.16);
  box-shadow: 0 18px 48px rgba(0,0,0,0.12);
}

.venture-top {
  border-radius: 18px;
  padding: 18px;
  min-height: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border: 1px solid rgba(0,0,0,0.08);
}

/* Per-logo canvases */
.venture-top.is-light {
  background: #ffffff;
}

.venture-top.is-dark {
  background: #0b0b0c;
  border-color: rgba(0,0,0,0.18);
}

.venture-logo {
  max-height: 58px;
  max-width: 86%;
  width: auto;
  height: auto;
  display: block;
}

.venture-body {
  display: grid;
  gap: 6px;
}

.venture-name {
  font-size: 18px;
  letter-spacing: 0.02em;
  font-weight: 600;
}

.venture-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
}

.venture-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2px;
}

.chip {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,0.12);
  background: rgba(0,0,0,0.03);
  color: rgba(0,0,0,0.70);
}

.chip-live {
  border-color: rgba(0,0,0,0.14);
  background: rgba(0,0,0,0.04);
}

.chip-soon {
  opacity: 0.85;
}

.arrow {
  color: rgba(0,0,0,0.55);
  font-size: 16px;
}

.coming-soon {
  cursor: default;
  user-select: none;
}

.coming-soon:hover {
  transform: none;
  border-color: rgba(0,0,0,0.10);
  box-shadow: var(--shadow2);
}

@media (max-width: 980px) {
  .venture-card { grid-column: span 12; }
}

/* ---------------------------
   FALLBACK LOGO BLOCKS (for Coming Soon)
---------------------------- */
.logo-fallback {
  display: none;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,0.12);
  background: rgba(0,0,0,0.03);
  align-items: center;
  justify-content: center;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: rgba(0,0,0,0.70);
}

/* ---------------------------
   FOOTER
---------------------------- */
.footer {
  padding: 56px 0;
  border-top: 1px solid rgba(0,0,0,0.08);
  background: linear-gradient(180deg, rgba(0,0,0,0.01), rgba(0,0,0,0.02));
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
}

.footer-brand {
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
}

.footer-muted {
  color: var(--muted2);
  font-size: 13px;
  line-height: 1.6;
}

.footer-link {
  color: rgba(0,0,0,0.70);
  text-decoration: none;
  font-size: 13px;
}

.footer-link:hover {
  text-decoration: underline;
}

.footer-dot {
  color: rgba(0,0,0,0.25);
  margin: 0 8px;
}
