/* ============================================================
   OL BUD INVEST — coming soon / under-construction screen
   Design tokens
   ============================================================ */
:root{
  --bg:            #EAECEE;
  --bg-line:       #D3D8DB;
  --bg-line-soft:  #DEE2E4;
  --panel:         #FFFFFF;
  --navy:          #14304C;
  --navy-2:        #1E4262;
  --teal:          #3D8CA3;
  --teal-soft:     #8FC0D3;
  --amber:         #C4823B;
  --text-muted:    #56636E;
  --text-faint:    #7C8891;

  --font-display: 'Oswald', 'Arial Narrow', sans-serif;
  --font-body:    'PT Sans', 'Segoe UI', sans-serif;
  --font-mono:    'IBM Plex Mono', 'Consolas', monospace;
}

*{ box-sizing: border-box; }
html, body{
  margin:0;
  padding:0;
  height:100%;
  background: var(--bg);
  color: var(--navy);
  font-family: var(--font-body);
  overflow: hidden; /* single screen, no scroll */
}

::selection{ background: var(--teal-soft); color: var(--navy); }

/* ---------------------------------------------------------
   Blueprint grid backdrop — nods to survey/leveling drawings
   used when setting out an industrial concrete floor slab
   --------------------------------------------------------- */
.grid-bg{
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    repeating-linear-gradient(0deg, var(--bg-line-soft) 0 1px, transparent 1px 56px),
    repeating-linear-gradient(90deg, var(--bg-line-soft) 0 1px, transparent 1px 56px);
  opacity: .55;
  -webkit-mask-image: radial-gradient(ellipse 90% 80% at 50% 38%, #000 45%, transparent 92%);
          mask-image: radial-gradient(ellipse 90% 80% at 50% 38%, #000 45%, transparent 92%);
}

/* ---------------------------------------------------------
   Calibration line — a nod to the laser-level used to set
   perfectly flat industrial floors. Draws in once beneath
   the eyebrow tag, then rests with a slow glow pulse.
   --------------------------------------------------------- */
.calibrate{
  width: clamp(64px, 9vw, 120px);
  height: 2px;
  border-radius: 2px;
  background: var(--teal);
  box-shadow: 0 0 10px 0 rgba(61,140,163,.45);
  transform: scaleX(0);
  opacity: 0;
  animation:
    calibrateIn .7s cubic-bezier(.2,.8,.2,1) .35s forwards,
    calibratePulse 3.6s ease-in-out 1.2s infinite;
}
@keyframes calibrateIn{
  to{ transform: scaleX(1); opacity: 1; }
}
@keyframes calibratePulse{
  0%, 100%{ opacity: .65; }
  50%{ opacity: 1; }
}

/* ---------------------------------------------------------
   Screen shell
   --------------------------------------------------------- */
.screen{
  position: relative;
  z-index: 2;
  height: 100dvh;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(14px, 2.6vh, 30px) clamp(20px, 5vw, 64px);
  gap: clamp(10px, 2vh, 24px);
}

/* ---------------------------------------------------------
   Navbar
   --------------------------------------------------------- */
.navbar{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: clamp(10px, 2vh, 20px);
  border-bottom: 1px solid var(--bg-line);
  flex: 0 0 auto;
}
.brand__logo{
  height: clamp(70px, 13vh, 140px);
  width: auto;
  display: block;
}
.phone{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--navy);
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: .02em;
  font-size: clamp(16px, 2.6vh, 24px);
  padding: 10px 18px;
  border: 1.5px solid var(--navy);
  border-radius: 3px;
  transition: background .18s ease, color .18s ease, border-color .18s ease;
}
.phone:hover{
  background: var(--navy);
  color: var(--panel);
}
.phone__icon{
  width: 20px;
  height: 20px;
  color: var(--teal);
  flex: 0 0 auto;
  transition: color .18s ease;
}
.phone:hover .phone__icon{ color: var(--teal-soft); }

/* ---------------------------------------------------------
   Hero
   --------------------------------------------------------- */
.hero{
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 0;
  gap: clamp(18px, 3vh, 34px);
}
.eyebrow{
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-mono);
  font-size: clamp(12px, 1.8vh, 16px);
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--teal);
  font-weight: 600;
}
.eyebrow__dot{
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 0 3px rgba(196,130,59,.18);
}
.h1{
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  color: var(--navy);
  line-height: 1.05;
  letter-spacing: .005em;
  font-size: clamp(34px, 8.4vh, 92px);
  max-width: 18ch;
}
.lede{
  margin: 0;
  max-width: 58ch;
  color: var(--text-muted);
  font-size: clamp(16px, 2.5vh, 22px);
  line-height: 1.55;
}

/* ---------------------------------------------------------
   Stats
   --------------------------------------------------------- */
.stats{
  flex: 0 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--bg-line);
  border-bottom: 1px solid var(--bg-line);
  padding: clamp(16px, 3vh, 30px) 0;
}
.stat{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
  padding: 0 clamp(6px, 1.5vw, 18px);
  border-left: 1px solid var(--bg-line);
}
.stat:first-child{ border-left: none; }
.stat__num{
  font-family: var(--font-mono);
  font-weight: 600;
  color: var(--navy-2);
  font-size: clamp(28px, 5.6vh, 52px);
  letter-spacing: -.01em;
  line-height: 1;
}
.stat__plus{ color: var(--amber); }
.stat__label{
  font-size: clamp(14px, 1.9vh, 18px);
  color: var(--text-muted);
  max-width: 22ch;
  line-height: 1.35;
}

/* ---------------------------------------------------------
   Footer — under-construction status bar. Deliberately the
   loudest static element on the page so it can't be missed.
   --------------------------------------------------------- */
.footer{
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer__badge{
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: clamp(10px, 1.8vh, 16px) clamp(20px, 3vw, 32px);
  background: var(--navy);
  border-radius: 999px;
  box-shadow: 0 6px 22px -8px rgba(20,48,76,.45);
}
.footer__pulse{
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 0 0 rgba(196,130,59,.6);
  animation: pulse 1.6s ease-out infinite;
  flex: 0 0 auto;
}
.footer__text{
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: clamp(15px, 2.3vh, 21px);
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--panel);
  animation: blink 1.6s ease-in-out infinite;
}
@keyframes pulse{
  0%{ box-shadow: 0 0 0 0 rgba(196,130,59,.55); }
  70%{ box-shadow: 0 0 0 10px rgba(196,130,59,0); }
  100%{ box-shadow: 0 0 0 0 rgba(196,130,59,0); }
}
@keyframes blink{
  0%, 100%{ opacity: 1; }
  50%{ opacity: .45; }
}

/* ---------------------------------------------------------
   Small phones / short viewports — keep everything on one
   screen, no scrolling.
   --------------------------------------------------------- */
@media (max-width: 560px){
  .navbar{ padding-bottom: 8px; }
  .phone__num{ display: none; }
  .phone{ padding: 9px; border-radius: 50%; }
  .phone__icon{ width: 18px; height: 18px; }
  .brand__logo{ height: clamp(40px, 7.5vh, 60px); }

  .screen{ gap: clamp(8px, 1.6vh, 16px); }
  .hero{ gap: clamp(10px, 1.8vh, 18px); }
  .eyebrow{ font-size: clamp(10px, 1.5vh, 13px); }
  .calibrate{ width: clamp(48px, 8vw, 80px); }
  .h1{ font-size: clamp(24px, 5.6vh, 38px); max-width: 13ch; line-height: 1.1; }
  .lede{ font-size: clamp(12px, 1.7vh, 15px); max-width: 32ch; line-height: 1.45; }

  .stats{ grid-template-columns: 1fr; row-gap: 10px; padding: clamp(10px, 1.8vh, 18px) 0; }
  .stat{
    border-left: none;
    border-top: 1px solid var(--bg-line);
    padding-top: 8px;
    flex-direction: row;
    justify-content: center;
    gap: 10px;
  }
  .stat:first-child{ border-top: none; padding-top: 0; }
  .stat__num{ font-size: clamp(20px, 3.4vh, 28px); flex: 0 0 auto; }
  .stat__label{ text-align: left; max-width: 26ch; font-size: clamp(11px, 1.5vh, 14px); }

  .footer__badge{ padding: 9px 16px; gap: 8px; max-width: 100%; }
  .footer__text{ font-size: clamp(11px, 1.6vh, 14px); letter-spacing: .08em; white-space: nowrap; }
}

@media (max-height: 720px) and (max-width: 560px){
  .lede{ display: none; }
}

@media (max-height: 620px){
  .eyebrow{ display: none; }
  .lede{ display: none; }
  .h1{ font-size: clamp(24px, 6.6vh, 36px); }
  .brand__logo{ height: clamp(42px, 8vh, 60px); }
}

@media (prefers-reduced-motion: reduce){
  .calibrate{ animation: none; opacity: .85; transform: scaleX(1); }
  .footer__pulse{ animation: none; }
  .footer__text{ animation: none; }
}
