/* ==========================================================================
   LotCheck Investor Data Room — Design tokens
   Grey #2B3D48 · Peach #EF7B6C · White #FFFFFF · Off-white #F7F4F3
   ========================================================================== */
:root {
  --grey: #2B3D48;
  --grey-soft: #52626C;
  --peach: #EF7B6C;
  --peach-dark: #D9614F;
  --peach-tint: #FBE6E2;
  --white: #FFFFFF;
  --offwhite: #F7F4F3;
  --line: rgba(43, 61, 72, 0.10);
  --shadow: 0 12px 32px rgba(43, 61, 72, 0.10);
  --shadow-sm: 0 4px 14px rgba(43, 61, 72, 0.08);
  --radius: 18px;
  --radius-sm: 10px;
  --font: 'Montserrat', Calibri, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --maxw: 1160px;
}

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

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--grey);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

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

:focus-visible {
  outline: 2px solid var(--peach-dark);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ==========================================================================
   PASSWORD GATE
   ========================================================================== */
.gate {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--grey);
  background-image:
    radial-gradient(circle at 20% 20%, rgba(239,123,108,0.18), transparent 45%),
    radial-gradient(circle at 80% 80%, rgba(239,123,108,0.12), transparent 45%);
  padding: 24px;
}

.gate__card {
  width: 100%;
  max-width: 400px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 30px 70px rgba(0,0,0,0.35);
  padding: 48px 36px 36px;
  text-align: center;
}

.gate__logo { height: 32px; margin: 0 auto 28px; }
.gate__logo-fallback {
  font-size: 24px; font-weight: 800; letter-spacing: -0.02em;
  margin-bottom: 28px; color: var(--grey);
}
.gate__logo-fallback span { color: var(--peach); }

.gate__eyebrow {
  font-size: 13px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--peach-dark); margin: 0 0 6px;
}
.gate__sub { font-size: 15px; color: var(--grey-soft); margin: 0 0 28px; }

.gate__form { display: flex; flex-direction: column; gap: 12px; }
.gate__input {
  font-family: var(--font);
  font-size: 15px;
  padding: 14px 16px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--offwhite);
  color: var(--grey);
}
.gate__input:focus { border-color: var(--peach); outline: none; background: var(--white); }

.gate__button {
  font-family: var(--font);
  font-size: 15px; font-weight: 700;
  padding: 14px 16px;
  border: none; border-radius: var(--radius-sm);
  background: var(--peach); color: var(--white);
  cursor: pointer;
  transition: background 0.15s ease, transform 0.15s ease;
}
.gate__button:hover { background: var(--peach-dark); transform: translateY(-1px); }
.gate__button:active { transform: translateY(0); }

.gate__error {
  display: none;
  color: var(--peach-dark);
  font-size: 13px;
  margin: 14px 0 0;
}
.gate--shake .gate__error { display: block; }
.gate--shake .gate__card { animation: shake 0.4s ease; }
@keyframes shake {
  0%, 100% { transform: translateX(0); }
  20%, 60% { transform: translateX(-6px); }
  40%, 80% { transform: translateX(6px); }
}

.gate__footnote {
  font-size: 12px; color: var(--grey-soft); opacity: 0.75;
  margin: 24px 0 0;
}

/* ==========================================================================
   HEADER / NAV
   ========================================================================== */
.header {
  position: sticky; top: 0; z-index: 40;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header__inner {
  max-width: var(--maxw); margin: 0 auto;
  padding: 16px 24px;
  display: flex; align-items: center; justify-content: space-between;
}
.header__logo { display: flex; align-items: center; text-decoration: none; }
.header__logo img { height: 26px; }
.header__logo-fallback { font-size: 19px; font-weight: 800; letter-spacing: -0.02em; color: var(--grey); }
.header__logo-fallback .accent { color: var(--peach); }

.header__nav { display: flex; align-items: center; gap: 28px; }
.header__nav a {
  text-decoration: none; font-size: 14px; font-weight: 600; color: var(--grey-soft);
  transition: color 0.15s ease;
}
.header__nav a:hover { color: var(--grey); }
.header__nav-cta {
  background: var(--peach); color: var(--white) !important;
  padding: 9px 18px; border-radius: 100px;
}
.header__nav-cta:hover { background: var(--peach-dark) !important; color: var(--white) !important; }

.header__burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.header__burger span { width: 22px; height: 2px; background: var(--grey); border-radius: 2px; }

.disclaimer-bar {
  background: var(--grey); color: rgba(255,255,255,0.85);
  text-align: center; font-size: 12.5px; font-weight: 500; letter-spacing: 0.01em;
  padding: 9px 16px;
}

/* ==========================================================================
   HERO
   ========================================================================== */
.hero { position: relative; overflow: hidden; background: var(--grey); }
.hero__bg { position: absolute; inset: 0; }
.hero__img { width: 100%; height: 100%; object-fit: cover; }
.hero__bg::after {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(43,61,72,0.0) 0%, var(--grey) 92%),
    repeating-linear-gradient(0deg, rgba(255,255,255,0.05) 0, rgba(255,255,255,0.05) 1px, transparent 1px, transparent 64px),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.05) 0, rgba(255,255,255,0.05) 1px, transparent 1px, transparent 64px);
}
.hero__scrim {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(43,61,72,0.88) 20%, rgba(43,61,72,0.72) 100%);
}
.hero__inner {
  position: relative; z-index: 2;
  max-width: 820px; margin: 0 auto;
  padding: 96px 24px 64px;
  text-align: center;
}
.hero__headline {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800; line-height: 1.12; letter-spacing: -0.02em;
  color: var(--white); margin: 0 0 22px;
}
.hero__sub {
  font-size: clamp(16px, 2vw, 19px);
  line-height: 1.6; color: rgba(255,255,255,0.82);
  max-width: 640px; margin: 0 auto;
}

.raise-strip {
  position: relative; z-index: 2;
  max-width: var(--maxw); margin: 0 auto;
  padding: 0 24px 56px;
  display: flex; align-items: center; justify-content: center;
  gap: 32px; flex-wrap: wrap;
}
.raise-strip__item { display: flex; flex-direction: column; align-items: center; gap: 4px; text-align: center; }
.raise-strip__value { font-size: 21px; font-weight: 800; color: var(--peach); }
.raise-strip__label { font-size: 12.5px; font-weight: 600; color: rgba(255,255,255,0.7); text-transform: uppercase; letter-spacing: 0.06em; }
.raise-strip__divider { width: 1px; height: 32px; background: rgba(255,255,255,0.18); }
@media (max-width: 640px) { .raise-strip__divider { display: none; } }

/* ==========================================================================
   VIDEO SECTION
   ========================================================================== */
.video-section { max-width: var(--maxw); margin: 0 auto; padding: 64px 24px 8px; text-align: center; }
.eyebrow {
  font-size: 13px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--peach-dark); margin: 0 0 20px;
}
.video-frame {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--grey);
  aspect-ratio: 16 / 9;
  max-width: 860px; margin: 0 auto;
}
.video-frame video { width: 100%; height: 100%; object-fit: cover; }
.video-caption { font-size: 14px; color: var(--grey-soft); margin: 20px 0 0; }

/* ==========================================================================
   SECTIONS — shared
   ========================================================================== */
.section { padding: 80px 24px; }
.section--tint { background: var(--offwhite); }
.section--dark { background: var(--grey); color: var(--white); }
.section--dark .section__title { color: var(--white); }
.section--dark p { color: rgba(255,255,255,0.8); }
.section--dark .section__emphasis { color: var(--white); }

.section__inner { max-width: var(--maxw); margin: 0 auto; }
.section__inner--narrow { max-width: 720px; }

.section__head { display: flex; align-items: baseline; gap: 14px; margin-bottom: 28px; }
.section__num { font-size: 15px; font-weight: 800; color: var(--peach); letter-spacing: 0.04em; }
.section__title { font-size: clamp(24px, 3vw, 32px); font-weight: 800; letter-spacing: -0.01em; margin: 0; color: var(--grey); }

.section p { font-size: 16.5px; line-height: 1.7; color: var(--grey-soft); margin: 0 0 16px; }
.section__lead { font-size: 19px !important; line-height: 1.55 !important; color: var(--grey) !important; font-weight: 500; }
.section__emphasis { color: var(--grey) !important; font-weight: 600; }
.section__footnote { font-size: 13.5px; color: rgba(255,255,255,0.6); margin-top: 8px; }

.section__grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 40px; align-items: start; margin-bottom: 48px; }
@media (max-width: 860px) { .section__grid { grid-template-columns: 1fr; } }

.stat-pill {
  display: inline-flex; align-items: baseline; gap: 10px;
  background: var(--white); border: 1px solid var(--line);
  border-radius: 100px; padding: 10px 20px; margin-top: 8px;
  box-shadow: var(--shadow-sm);
}
.stat-pill__value { font-weight: 800; color: var(--peach-dark); font-size: 17px; }
.stat-pill__label { font-size: 13.5px; color: var(--grey-soft); }

.built-badge {
  display: flex; gap: 14px;
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 24px;
  box-shadow: var(--shadow-sm);
}
.built-badge__dot { width: 10px; height: 10px; border-radius: 50%; background: var(--peach); margin-top: 6px; flex-shrink: 0; }
.built-badge strong { display: block; font-size: 15px; margin-bottom: 6px; }
.built-badge p { font-size: 14px; margin: 0; }

/* ==========================================================================
   GALLERY (product screenshots)
   ========================================================================== */
.gallery {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
}
@media (max-width: 860px) { .gallery { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .gallery { grid-template-columns: 1fr; } }

.gallery__item {
  margin: 0; border-radius: var(--radius-sm); overflow: hidden;
  border: 1px solid var(--line); box-shadow: var(--shadow-sm);
  background: var(--white);
}
.gallery__item img { width: 100%; aspect-ratio: 4/3; object-fit: cover; object-position: left top; }
.gallery__item figcaption {
  padding: 12px 14px; font-size: 13px; font-weight: 600; color: var(--grey-soft);
}

/* ==========================================================================
   REVENUE CARDS
   ========================================================================== */
.revenue-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
@media (max-width: 860px) { .revenue-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .revenue-grid { grid-template-columns: 1fr; } }

.revenue-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius); padding: 26px 22px;
  display: flex; flex-direction: column; gap: 8px;
}
.revenue-card--primary { background: var(--peach); border-color: var(--peach); grid-column: span 2; }
@media (max-width: 860px) { .revenue-card--primary { grid-column: span 2; } }
@media (max-width: 560px) { .revenue-card--primary { grid-column: span 1; } }
.revenue-card__value { font-size: 26px; font-weight: 800; color: var(--white); }
.revenue-card--primary .revenue-card__value { color: var(--white); }
.revenue-card__label { font-size: 13.5px; color: rgba(255,255,255,0.75); line-height: 1.4; }
.revenue-card--primary .revenue-card__label { color: rgba(255,255,255,0.92); }
.revenue-card__note { font-size: 13px; color: rgba(255,255,255,0.85); margin: 6px 0 0; line-height: 1.5; }

/* ==========================================================================
   ROADMAP
   ========================================================================== */
.roadmap { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 8px; }
@media (max-width: 860px) { .roadmap { grid-template-columns: 1fr; } }
.roadmap__item {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 24px;
  box-shadow: var(--shadow-sm);
}
.roadmap__tag {
  display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: 0.03em;
  color: var(--peach-dark); text-transform: uppercase; margin-bottom: 12px;
}
.roadmap__item p { font-size: 14.5px; margin: 0; }

/* ==========================================================================
   MARKET STAT ROW
   ========================================================================== */
.stat-row {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
  margin: 24px 0 28px;
}
@media (max-width: 720px) { .stat-row { grid-template-columns: 1fr; } }
.stat-row__item {
  background: var(--offwhite); border-radius: var(--radius); padding: 24px;
  text-align: center;
}
.stat-row__value { display: block; font-size: 28px; font-weight: 800; color: var(--peach-dark); }
.stat-row__label { display: block; font-size: 13px; color: var(--grey-soft); margin-top: 6px; line-height: 1.4; }

/* ==========================================================================
   THE RAISE
   ========================================================================== */
.raise-detail {
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 32px;
  background: var(--offwhite); border-radius: var(--radius); padding: 36px;
  margin-bottom: 24px;
}
@media (max-width: 720px) { .raise-detail { grid-template-columns: 1fr; } }
.raise-detail__headline { display: flex; flex-direction: column; gap: 8px; }
.raise-detail__value { font-size: 34px; font-weight: 800; color: var(--grey); }
.raise-detail__label { font-size: 13.5px; color: var(--grey-soft); font-weight: 600; }
.raise-detail__body h3 { font-size: 15px; margin: 0 0 12px; }
.check-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.check-list li {
  font-size: 14.5px; color: var(--grey-soft); padding-left: 24px; position: relative;
}
.check-list li::before {
  content: ""; position: absolute; left: 0; top: 6px;
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--peach);
}
.exit-thesis h3 { font-size: 15px; margin: 0 0 10px; }

/* ==========================================================================
   TEAM
   ========================================================================== */
.team-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 720px) { .team-grid { grid-template-columns: 1fr; } }
.team-card {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 28px;
  box-shadow: var(--shadow-sm);
}
.team-card h3 { font-size: 18px; margin: 0 0 4px; }
.team-card__role { font-size: 13px; font-weight: 700; color: var(--peach-dark); text-transform: uppercase; letter-spacing: 0.03em; margin: 0 0 12px; }
.team-card p:last-child { font-size: 14.5px; margin: 0; }

/* ==========================================================================
   DATA ROOM CTA
   ========================================================================== */
.section--cta { text-align: center; background: var(--white); border-top: 1px solid var(--line); }
.section--cta .section__head { justify-content: center; }
.section--cta p { max-width: 520px; margin-left: auto; margin-right: auto; }

.cta-button {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--peach); color: var(--white);
  font-size: 16px; font-weight: 700;
  padding: 17px 30px; border-radius: 100px;
  text-decoration: none; margin: 20px 0 16px;
  box-shadow: 0 12px 28px rgba(239,123,108,0.35);
  transition: background 0.15s ease, transform 0.15s ease;
}
.cta-button:hover { background: var(--peach-dark); transform: translateY(-2px); }
.cta-note { font-size: 13.5px; color: var(--grey-soft); }
.cta-note a { color: var(--peach-dark); font-weight: 600; text-decoration: none; }
.cta-note a:hover { text-decoration: underline; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer { background: var(--grey); padding: 32px 24px; }
.footer__inner {
  max-width: var(--maxw); margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap;
}
.footer__inner p { font-size: 12.5px; color: rgba(255,255,255,0.6); margin: 0; }
.footer__inner a { font-size: 12.5px; color: var(--peach); text-decoration: none; font-weight: 600; }

/* ==========================================================================
   MOBILE NAV
   ========================================================================== */
@media (max-width: 760px) {
  .header__burger { display: flex; }
  .header__nav {
    position: fixed; top: 65px; left: 0; right: 0;
    background: var(--white); border-bottom: 1px solid var(--line);
    flex-direction: column; align-items: stretch; gap: 0;
    padding: 8px 24px 16px;
    transform: translateY(-8px);
    opacity: 0; pointer-events: none;
    transition: opacity 0.18s ease, transform 0.18s ease;
  }
  .header__nav.is-open { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .header__nav a { padding: 12px 0; border-bottom: 1px solid var(--line); }
  .header__nav-cta { text-align: center; margin-top: 10px; border-bottom: none !important; }
}
