/* ── GRevaz site styles — matches hub71_pitch_deck_v5.css ── */
:root {
  --ink: #061219;
  --ink2: #071923;
  --ocean: #0d313c;
  --teal: #4ad3bd;
  --gold: #dfbc71;
  --cream: #f4f1e8;
  --mist: #c7d5d3;
  --muted: #89a0a0;
  --red: #ff766c;
  --line: rgba(231, 246, 240, .17);
  --panel: rgba(8, 32, 40, .68);
}

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

body {
  margin: 0;
  color: var(--cream);
  background:
    radial-gradient(circle at 92% 8%, rgba(74, 211, 189, .10), transparent 22%),
    radial-gradient(circle at 8% 93%, rgba(223, 188, 113, .08), transparent 27%),
    linear-gradient(132deg, #07151e 0%, #0a202a 48%, #0a2930 100%);
  font-family: 'Manrope', Arial, sans-serif;
  min-height: 100vh;
  position: relative;
}

.landing-page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* subtle grid overlay */
body::before {
  content: "";
  position: fixed; inset: 0; pointer-events: none; z-index: 0;
  opacity: .28;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(135deg, black, transparent 82%);
}

.site-header, main, footer { position: relative; z-index: 1; }

.site-header {
  display: flex; justify-content: space-between; align-items: center;
  width: min(1160px, calc(100% - 48px)); margin: 0 auto;
  padding: 26px 0 18px;
}

.wordmark {
  font-family: 'DM Mono', 'Courier New', monospace;
  font-size: 14px; font-weight: 500; letter-spacing: .21em;
  color: var(--teal); text-decoration: none;
}

.contact-link {
  font-family: 'DM Mono', 'Courier New', monospace;
  font-size: 11px; font-weight: 400; letter-spacing: .04em;
  color: var(--muted); text-decoration: none;
  border-bottom: 1px solid var(--line); padding-bottom: 2px;
}
.contact-link:hover { color: var(--teal); }

main { width: min(1160px, calc(100% - 48px)); margin: 0 auto; }

.landing-page main {
  display: flex;
  flex: 1;
  align-items: center;
}

.landing-page main {
  display: flex;
  flex: 1;
  align-items: center;
}

/* ── Hero ── */
.hero { max-width: 920px; padding: 72px 0 92px; }

.kicker {
  margin: 0 0 16px;
  font-family: 'DM Mono', 'Courier New', monospace;
  font-size: 10px; font-weight: 500; letter-spacing: .12em;
  text-transform: uppercase; color: var(--teal);
}

h1, h2, h3, p { margin: 0; }

h1 {
  font-family: 'Newsreader', Georgia, serif;
  font-weight: 600;
  font-size: clamp(48px, 6vw, 88px);
  line-height: .96; letter-spacing: -.045em;
  margin-bottom: 22px;
}

.accent { color: var(--teal); }

.hero-copy {
  max-width: 600px;
  color: var(--mist);
  font-size: clamp(17px, 1.6vw, 22px);
  line-height: 1.5;
  margin-bottom: 32px;
}

.hero-flow {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.flow-node {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 10px 16px; min-height: 48px;
  border: 1px solid var(--line); border-radius: 6px;
  background: linear-gradient(145deg, rgba(20,65,75,.88), rgba(6,27,36,.88));
  font-family: 'Manrope', Arial, sans-serif;
  font-size: 13px; font-weight: 800; color: var(--cream);
  text-align: center;
}

.flow-gate { border-color: rgba(74,211,189,.7); color: var(--teal); }

.flow-arrow { color: var(--teal); font-weight: 700; font-size: 18px; }

.primary-action {
  display: inline-block;
  margin-top: 6px;
  padding: 13px 22px;
  border: 1px solid var(--teal); border-radius: 6px;
  color: var(--teal);
  background: rgba(74,211,189,.10);
  font-family: 'Manrope', Arial, sans-serif;
  font-size: 13px; font-weight: 700; letter-spacing: .03em;
  text-decoration: none; transition: .2s;
}
.primary-action:hover {
  background: rgba(74,211,189,.22);
  color: var(--cream);
}

/* ── Sections ── */
.section {
  padding: 72px 0;
  border-top: 1px solid var(--line);
}

.section-header { max-width: 780px; margin-bottom: 34px; }

h2 {
  font-family: 'Newsreader', Georgia, serif;
  font-weight: 600;
  font-size: clamp(30px, 3.6vw, 52px);
  line-height: 1.05; letter-spacing: -.04em;
}

/* ── Problem grid ── */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.risk-card {
  border-top: 2px solid var(--red);
  background: rgba(255,118,108,.06);
  padding: 16px 15px 18px;
  border-radius: 5px;
}

.risk-card h3 {
  font-family: 'Manrope', Arial, sans-serif;
  font-size: 15px; font-weight: 700; color: var(--cream);
  margin-bottom: 10px;
}

.risk-card p {
  font-size: 13px; line-height: 1.44;
  color: var(--mist);
}

/* ── Concept flow ── */
.concept-flow {
  display: flex; align-items: flex-start; gap: 8px;
  margin-bottom: 28px; flex-wrap: wrap;
}

.concept-step {
  flex: 1; min-width: 120px;
  border: 1px solid var(--line);
  background: var(--panel); border-radius: 7px;
  padding: 14px 12px; text-align: center;
}

.concept-core {
  border-color: rgba(74,211,189,.6);
  background: rgba(13,49,60,.82);
}

.step-num {
  display: inline-block;
  font-family: 'DM Mono', 'Courier New', monospace;
  font-size: 10px; color: var(--gold); font-weight: 500;
  margin-bottom: 6px;
}

.concept-step strong {
  display: block;
  font-size: 15px; font-weight: 700; color: var(--cream);
  margin-bottom: 5px;
}

.step-desc { font-size: 12px; line-height: 1.38; color: var(--mist); }

.step-arrow {
  display: flex; align-items: center;
  color: var(--teal); font-weight: 700; font-size: 18px;
  padding-top: 20px;
}

.mantra {
  margin: 0 0 14px;
  font-family: 'Newsreader', Georgia, serif;
  font-size: clamp(22px, 2.4vw, 30px);
  font-style: italic; line-height: 1.2;
  color: var(--teal);
  border-left: 3px solid var(--teal);
  padding: 12px 20px;
  background: rgba(74,211,189,.06);
  border-radius: 3px;
}

.disclosure {
  font-family: 'DM Mono', 'Courier New', monospace;
  font-size: 9.5px; color: var(--muted); line-height: 1.45;
  margin-top: 14px;
}

/* ── Wireframes ── */
.wireframe-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 14px;
}

.wireframe {
  background: #e8eceb; color: #162a30;
  border-radius: 8px; overflow: hidden;
  box-shadow: 0 18px 45px rgba(0,0,0,.23);
}

.wf-label {
  display: block;
  font-family: 'DM Mono', 'Courier New', monospace;
  font-size: 9px; font-weight: 500; letter-spacing: .08em;
  color: #52716f; text-transform: uppercase;
  padding: 12px 14px 0;
}

.wf-content { padding: 12px 14px 16px; }
.wf-content p {
  border: 1px solid #c2cecc; background: #f7f8f4; border-radius: 6px;
  padding: 9px 11px; margin: 8px 0;
  font-size: 12.4px; font-weight: 500; line-height: 1.42; color: #284146;
}

.wf-blocked { color: #974139 !important; border-color: #c76861 !important; background: #fff4f2 !important; }

/* ── Stage ── */
.stage-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-bottom: 22px; }

.stage-item {
  border: 1px solid var(--line);
  background: var(--panel); border-radius: 7px;
  padding: 16px; min-height: 80px;
  display: flex; flex-direction: column; gap: 8px;
  font-size: 14px; line-height: 1.4; color: var(--mist);
}

.stage-done { border-left: 3px solid var(--teal); }
.stage-next { border-left: 3px solid var(--gold); background: rgba(13,49,60,.82); color: var(--gold); }

.stage-check {
  font-family: 'DM Mono', 'Courier New', monospace;
  font-size: 14px;
}

.stage-footer {
  display: flex; gap: 10px; flex-wrap: wrap;
  font-family: 'DM Mono', 'Courier New', monospace;
  font-size: 10px; color: var(--muted); text-transform: uppercase;
  letter-spacing: .05em;
}

.stage-footer span {
  border: 1px solid rgba(74,211,189,.35);
  border-radius: 999px; padding: 6px 10px;
  color: var(--teal); background: rgba(13,49,60,.3);
}

/* ── Founder ── */
.founder-row {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 18px;
}

.founder-card {
  border: 1px solid var(--line); background: var(--panel);
  padding: 20px 22px; border-radius: 7px;
  border-left: 3px solid var(--teal);
}

.founder-name {
  font-family: 'Newsreader', Georgia, serif;
  font-size: clamp(24px, 2.6vw, 34px);
  font-weight: 600; color: var(--cream);
  margin-bottom: 12px;
}

.founder-card p:not(.founder-name) { font-size: 14px; line-height: 1.5; color: var(--mist); margin-top: 10px; }

.founder-cred { color: var(--gold) !important; }

.company-card {
  border: 1px solid var(--line); background: var(--panel);
  padding: 20px 22px; border-radius: 7px;
  border-left: 3px solid var(--gold);
}

.company-card p { font-size: 14px; line-height: 1.48; color: var(--mist); margin-top: 10px; }
.company-contact { color: var(--teal) !important; }

/* ── Footer ── */
footer {
  display: flex; flex-wrap: wrap; gap: 12px 28px;
  width: min(1160px, calc(100% - 48px)); margin: 0 auto;
  padding: 28px 0 36px;
  border-top: 1px solid var(--line);
  font-family: 'DM Mono', 'Courier New', monospace;
  font-size: 10px; color: var(--muted);
  letter-spacing: .04em;
}

.landing-page footer {
  padding-top: 20px;
  padding-bottom: 24px;
}

footer a { color: var(--muted); text-decoration: none; border-bottom: 1px solid var(--line); }
footer a:hover { color: var(--teal); }

/* Privacy page */
.privacy-page { background: var(--ink); }
.privacy-main { width: min(720px, calc(100% - 48px)); margin: 60px auto; }
.privacy-main h1 {
  font-family: 'DM Mono', 'Courier New', monospace;
  font-size: 22px; color: var(--teal); margin-bottom: 12px;
}
.privacy-main p { font-size: 15px; line-height: 1.55; color: var(--mist); margin: 12px 0; }
.privacy-main a { color: var(--teal); }
.privacy-main .back {
  display: inline-block; margin-bottom: 28px; color: var(--muted);
  font-family: 'DM Mono', 'Courier New', monospace;
  font-size: 10px; text-decoration: none;
}
.privacy-main .back:hover { color: var(--teal); }
.privacy-main hr { border: 0; border-top: 1px solid var(--line); margin: 28px 0; }

/* ── Responsive ── */
@media (max-width: 800px) {
  .site-header, main, footer { width: min(100% - 32px, 1160px); }
  .hero { padding: 48px 0 64px; }
  .section { padding: 48px 0; }
  .problem-grid { grid-template-columns: repeat(2, 1fr); }
  .concept-flow { flex-direction: column; }
  .step-arrow { transform: rotate(90deg); padding: 4px 0; }
  .wireframe-grid { grid-template-columns: 1fr; }
  .stage-grid { grid-template-columns: repeat(2, 1fr); }
  .founder-row { grid-template-columns: 1fr; }
}

@media (max-width: 500px) {
  .problem-grid { grid-template-columns: 1fr; }
  .stage-grid { grid-template-columns: 1fr; }
}
