/* ============================================================
   RICKY BINET — rickybinet.com
   Styles: styles.css
   Fonts: Inter (primary) → Poppins → Arial (fallback)
   Note: Replace Inter with Telegraf when web license is added
   ============================================================ */

/* ── TOKENS ── */
:root {
  --font: 'Inter', 'Poppins', Arial, sans-serif;
  --onyx: #1D1D1D;
  --chalk: #ffffff;
  --seaglass: #BFDDDB;
  --slate: #615b56;
  --coral: #FF557E;
  --aqua: #00fbf0;

  --transition: 0.3s ease;
  --radius: 0px; /* Sharp corners for premium feel */
}

/* ── RESET ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font);
  background: var(--onyx);
  color: var(--chalk);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a {
  text-decoration: none;
  color: inherit;
}

button {
  font-family: var(--font);
  cursor: pointer;
  border: none;
}

/* ── UTILITY ── */
.sg { color: var(--seaglass); }

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── NAVIGATION ── */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 40px;
  background: var(--onyx);
  border-bottom: 0.5px solid rgba(255, 255, 255, 0.08);
  position: sticky;
  top: 0;
  z-index: 100;
  transition: box-shadow var(--transition);
}

.nav.scrolled {
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.4);
}

.logo {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--chalk);
}

.logo span {
  color: var(--seaglass);
}

.logo-sub {
  color: rgba(255, 255, 255, 0.28);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-top: 3px;
  font-weight: 300;
}

.nav-links {
  display: flex;
  gap: 28px;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.45);
  font-size: 11px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  transition: color var(--transition);
}

.nav-links a:hover {
  color: var(--chalk);
}

.nav-cta {
  background: var(--seaglass);
  color: var(--onyx);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 10px 22px;
  font-weight: 600;
  transition: opacity var(--transition);
}

.nav-cta:hover {
  opacity: 0.85;
}

/* Hamburger — mobile only */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--chalk);
  transition: var(--transition);
}

/* Mobile menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 8px;
  background: #111;
  padding: 24px 40px;
  border-bottom: 0.5px solid rgba(255, 255, 255, 0.08);
  position: sticky;
  top: 61px;
  z-index: 99;
}

.mobile-menu.open {
  display: flex;
}

.mobile-link {
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 0;
  border-bottom: 0.5px solid rgba(255, 255, 255, 0.06);
}

/* ── HERO ── */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 580px;
  border-bottom: 0.5px solid rgba(255, 255, 255, 0.07);
}

.hero-left {
  padding: 56px 40px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 0.5px solid rgba(255, 255, 255, 0.08);
}

.eyebrow {
  color: var(--seaglass);
  font-size: 9px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  margin-bottom: 16px;
  font-weight: 400;
}

.h1 {
  font-size: 44px;
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--chalk);
  margin-bottom: 20px;
}

.h1 strong { font-weight: 500; }

.h1 em {
  font-style: normal;
  color: var(--seaglass);
}

.hero-body {
  color: rgba(255, 255, 255, 0.44);
  font-size: 13px;
  line-height: 1.85;
  max-width: 360px;
  margin-bottom: 32px;
  font-weight: 300;
}

.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-main {
  background: var(--seaglass);
  color: var(--onyx);
  padding: 13px 28px;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  transition: opacity var(--transition);
}

.btn-main:hover { opacity: 0.85; }

.btn-out {
  background: transparent;
  color: rgba(255, 255, 255, 0.65);
  padding: 12px 24px;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 400;
  border: 0.5px solid rgba(255, 255, 255, 0.28);
  transition: border-color var(--transition), color var(--transition);
}

.btn-out:hover {
  border-color: rgba(255, 255, 255, 0.6);
  color: var(--chalk);
}

.hero-stats {
  display: flex;
  gap: 28px;
  margin-top: 40px;
  padding-top: 28px;
  border-top: 0.5px solid rgba(255, 255, 255, 0.08);
}

.s-num {
  font-size: 26px;
  font-weight: 300;
  letter-spacing: -0.02em;
  color: var(--chalk);
}

.s-lbl {
  color: rgba(255, 255, 255, 0.28);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-top: 4px;
}

/* Hero Right — Video Panel */
.hero-right {
  background: #0e0e0e;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  min-height: 580px;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

/* Fallback shown when video file is missing */
.video-fallback {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
  padding: 40px;
}

.play-ring {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 1.5px solid rgba(191, 221, 219, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-note {
  color: rgba(255, 255, 255, 0.35);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.video-sub {
  color: rgba(255, 255, 255, 0.2);
  font-size: 10px;
  max-width: 200px;
  line-height: 1.6;
}

.hero-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 35%;
  background: linear-gradient(to top, rgba(14, 14, 14, 0.75), transparent);
  z-index: 3;
}

.hero-tag {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 4;
  color: rgba(255, 255, 255, 0.22);
  font-size: 9px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

/* ── TICKER ── */
.ticker {
  background: var(--seaglass);
  color: var(--onyx);
  padding: 11px 0;
  overflow: hidden;
  white-space: nowrap;
}

.ticker-track {
  display: inline-flex;
  gap: 44px;
  animation: scrolltick 22s linear infinite;
}

.ticker:hover .ticker-track {
  animation-play-state: paused;
}

.t-item {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
}

.t-dot { opacity: 0.3; }

@keyframes scrolltick {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── SECTIONS ── */
.sec {
  padding: 56px 40px;
  border-bottom: 0.5px solid rgba(255, 255, 255, 0.06);
  background: var(--onyx);
}

.sec-lbl {
  color: rgba(255, 255, 255, 0.2);
  font-size: 9px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 36px;
}

.sec-lbl::after {
  content: '';
  flex: 1;
  height: 0.5px;
  background: rgba(255, 255, 255, 0.07);
}

/* ── VALUE PROPS ── */
.val-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.07);
}

.v-card {
  background: var(--onyx);
  padding: 32px 24px;
  transition: background var(--transition);
}

.v-card:hover { background: #222; }

.v-num {
  font-size: 28px;
  font-weight: 300;
  color: var(--seaglass);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.v-title {
  color: var(--chalk);
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 8px;
}

.v-body {
  color: rgba(255, 255, 255, 0.36);
  font-size: 12px;
  line-height: 1.8;
  font-weight: 300;
}

/* ── BUILDERS GATE ── */
.builders-gate {
  background: #111;
  border: 0.5px solid rgba(255, 255, 255, 0.08);
  padding: 48px 40px;
  margin: 0 40px 56px;
}

.gate-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 36px;
}

.gate-left h2 {
  font-size: 28px;
  font-weight: 300;
  color: var(--chalk);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 12px;
}

.gate-left h2 em {
  font-style: normal;
  color: var(--seaglass);
}

.gate-left p {
  color: rgba(255, 255, 255, 0.4);
  font-size: 13px;
  line-height: 1.8;
  font-weight: 300;
  max-width: 380px;
}

.gate-right {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.gate-input {
  padding: 13px 16px;
  font-size: 13px;
  background: rgba(255, 255, 255, 0.06);
  border: 0.5px solid rgba(255, 255, 255, 0.15);
  color: var(--chalk);
  outline: none;
  font-family: var(--font);
  transition: border-color var(--transition);
}

.gate-input::placeholder { color: rgba(255, 255, 255, 0.3); }
.gate-input:focus { border-color: var(--seaglass); }

.gate-btn {
  background: var(--seaglass);
  color: var(--onyx);
  padding: 14px;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  font-family: var(--font);
  transition: opacity var(--transition);
}

.gate-btn:hover { opacity: 0.85; }

.gate-micro {
  color: rgba(255, 255, 255, 0.2);
  font-size: 10px;
  letter-spacing: 0.1em;
}

.builder-logos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.07);
}

.b-logo-card {
  background: #111;
  padding: 22px 20px;
  transition: background var(--transition);
}

.b-logo-card:hover { background: #1a1a1a; }

.b-logo-name {
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.04em;
  display: block;
}

/* ── INCENTIVES BANNER ── */
.inc-banner {
  background: var(--chalk);
  padding: 48px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.inc-left h2 {
  font-size: 32px;
  font-weight: 300;
  letter-spacing: -0.02em;
  color: var(--onyx);
  line-height: 1.15;
  margin-bottom: 10px;
}

.inc-left h2 em {
  font-style: normal;
  color: var(--slate);
}

.inc-left p {
  font-size: 13px;
  color: #555;
  max-width: 400px;
  line-height: 1.75;
  font-weight: 300;
}

/* High contrast CTA — always visible */
.inc-cta {
  background: var(--onyx);
  color: var(--chalk);
  padding: 18px 36px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  font-family: var(--font);
  min-width: 220px;
  outline: 2.5px solid var(--seaglass);
  outline-offset: 2px;
  transition: background var(--transition), color var(--transition);
}

.inc-cta:hover {
  background: var(--seaglass);
  color: var(--onyx);
  outline-color: var(--seaglass);
}

/* ── COMMUNITIES ── */
.comm-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.07);
}

.c-card {
  background: var(--onyx);
  padding: 32px 24px;
  transition: background var(--transition);
}

.c-card:hover { background: #222; }

.c-tag {
  color: rgba(255, 255, 255, 0.22);
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.c-name {
  color: var(--chalk);
  font-size: 19px;
  font-weight: 400;
  letter-spacing: -0.01em;
  margin-bottom: 7px;
}

.c-price {
  color: rgba(255, 255, 255, 0.4);
  font-size: 12px;
  font-weight: 300;
}

.badge {
  display: inline-block;
  margin-top: 16px;
  padding: 4px 12px;
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
}

.b-hot  { background: var(--coral); color: var(--chalk); }
.b-open { border: 0.5px solid rgba(255,255,255,0.2); color: rgba(255,255,255,0.42); }
.b-soon { border: 0.5px solid var(--seaglass); color: var(--seaglass); }

/* ── ABOUT ── */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--onyx);
  border-bottom: 0.5px solid rgba(255, 255, 255, 0.07);
}

.about-img {
  background: #141414;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  min-height: 380px;
}

.about-img img {
  width: 65%;
  object-fit: cover;
  object-position: top center;
}

.about-text {
  padding: 56px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-text h2 {
  font-size: 30px;
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 18px;
  color: var(--chalk);
}

.about-text h2 em {
  font-style: normal;
  color: var(--seaglass);
}

.about-text p {
  color: rgba(255, 255, 255, 0.42);
  font-size: 13px;
  line-height: 1.85;
  font-weight: 300;
  margin-bottom: 12px;
  max-width: 360px;
}

.about-btn {
  display: inline-block;
  margin-top: 12px;
  background: var(--seaglass);
  color: var(--onyx);
  padding: 12px 26px;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  align-self: flex-start;
  transition: opacity var(--transition);
}

.about-btn:hover { opacity: 0.85; }

/* ── REVIEWS ── */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.07);
}

.r-card {
  background: var(--onyx);
  padding: 32px 24px;
}

.r-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.r-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--seaglass);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--onyx);
  flex-shrink: 0;
}

.r-name {
  color: var(--chalk);
  font-size: 13px;
  font-weight: 400;
}

.r-stars {
  color: var(--seaglass);
  font-size: 11px;
  letter-spacing: 2px;
  margin-top: 2px;
}

.r-google {
  color: rgba(255, 255, 255, 0.2);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 1px;
}

.r-quote {
  color: rgba(255, 255, 255, 0.52);
  font-size: 12px;
  line-height: 1.85;
  font-weight: 300;
  font-style: italic;
}

.r-source {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
}

.r-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--seaglass);
}

.r-src-lbl {
  color: rgba(255, 255, 255, 0.22);
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* ── LEAD CAPTURE ── */
.lead-sec {
  background: var(--seaglass);
  padding: 56px 40px;
  text-align: center;
}

.lead-sec h2 {
  font-size: 30px;
  font-weight: 300;
  letter-spacing: -0.02em;
  color: var(--onyx);
  margin-bottom: 10px;
}

.lead-sec p {
  color: rgba(0, 0, 0, 0.45);
  font-size: 13px;
  font-weight: 300;
  margin-bottom: 32px;
}

.lead-form {
  display: flex;
  max-width: 480px;
  margin: 0 auto;
}

.lead-form input {
  flex: 1;
  padding: 14px 16px;
  font-size: 13px;
  border: none;
  outline: none;
  background: var(--chalk);
  color: var(--onyx);
  font-family: var(--font);
}

.lead-form button {
  background: var(--onyx);
  color: var(--chalk);
  padding: 14px 26px;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  font-family: var(--font);
  white-space: nowrap;
  transition: opacity var(--transition);
}

.lead-form button:hover { opacity: 0.85; }

.lead-micro {
  color: rgba(0, 0, 0, 0.3);
  font-size: 10px;
  margin-top: 10px;
}

/* ── FOOTER ── */
.footer {
  background: #111;
  padding: 36px 40px 20px;
  border-top: 0.5px solid rgba(255, 255, 255, 0.07);
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 28px;
}

.f-logo {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--chalk);
  margin-bottom: 4px;
}

.f-logo span { color: var(--seaglass); }

.f-sub {
  color: rgba(255, 255, 255, 0.22);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 300;
  margin-bottom: 10px;
}

.f-desc {
  color: rgba(255, 255, 255, 0.28);
  font-size: 11px;
  line-height: 1.75;
  font-weight: 300;
}

.f-col-ttl {
  color: rgba(255, 255, 255, 0.3);
  font-size: 9px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-weight: 500;
}

.footer a {
  display: block;
  color: rgba(255, 255, 255, 0.4);
  font-size: 11px;
  margin-bottom: 7px;
  font-weight: 300;
  transition: color var(--transition);
}

.footer a:hover { color: var(--seaglass); }

.footer-bottom {
  border-top: 0.5px solid rgba(255, 255, 255, 0.07);
  padding-top: 16px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

.f-copy {
  color: rgba(255, 255, 255, 0.18);
  font-size: 9px;
  letter-spacing: 0.1em;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-cta   { display: none; }
  .hamburger { display: flex; }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-left {
    padding: 40px 24px 36px;
    border-right: none;
    border-bottom: 0.5px solid rgba(255,255,255,0.08);
  }

  .h1 { font-size: 32px; }

  .hero-right {
    min-height: 320px;
  }

  .hero-stats { gap: 20px; }

  .val-grid,
  .comm-grid,
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .builder-logos {
    grid-template-columns: repeat(2, 1fr);
  }

  .gate-top {
    grid-template-columns: 1fr;
  }

  .inc-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .inc-cta { width: 100%; text-align: center; }

  .about {
    grid-template-columns: 1fr;
  }

  .about-img { min-height: 280px; }

  .about-text { padding: 36px 24px; }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .builders-gate { margin: 0 24px 40px; }

  .sec { padding: 40px 24px; }

  .lead-form { flex-direction: column; }
  .lead-form input,
  .lead-form button { width: 100%; }

  .footer { padding: 32px 24px 16px; }

  .footer-bottom { flex-direction: column; gap: 4px; }
}

@media (max-width: 560px) {
  .footer-inner { grid-template-columns: 1fr; }
  .builder-logos { grid-template-columns: 1fr 1fr; }
  .inc-left h2 { font-size: 24px; }
  .h1 { font-size: 28px; }
}
