/* PokerReps landing page */

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

body {
  background: #070707;
  color: #fff;
  font-family: Inter, "Helvetica Neue", Helvetica, sans-serif;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

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

/* ── Background ── */
.lp-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.lp-bg-gradient {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, #0e2a1c 0%, #070707 60%, #030303 100%);
}
.lp-bg-felt {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    repeating-linear-gradient(45deg, rgba(255,255,255,0.014) 0 1px, transparent 1px 3px),
    repeating-linear-gradient(-45deg, rgba(255,255,255,0.014) 0 1px, transparent 1px 3px);
  mix-blend-mode: overlay;
}

/* ── Page wrap ── */
.lp-wrap {
  position: relative;
  z-index: 2;
}

/* ── Header ── */
.lp-header {
  position: sticky;
  top: 0;
  z-index: 40;
  padding: 16px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(8,8,8,0.72);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.lp-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lp-brand-icon {
  width: 30px;
  height: 30px;
  border-radius: 7px;
  background: #1d4d2d;
  border: 1px solid rgba(63,169,89,0.4);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.lp-brand-name {
  font-family: "Instrument Sans", sans-serif;
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -0.01em;
  line-height: 1;
}
.lp-brand-name span { color: #d8a73a; }

.lp-nav {
  display: flex;
  gap: 28px;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
}
.lp-nav a:hover { color: rgba(255,255,255,0.9); }

.lp-header-ctas {
  display: flex;
  gap: 8px;
  align-items: center;
}

.btn-ghost {
  background: transparent;
  border: none;
  color: rgba(255,255,255,0.8);
  font-size: 13px;
  padding: 8px 12px;
  font-family: inherit;
  cursor: pointer;
  border-radius: 8px;
  transition: color 0.15s;
  text-decoration: none;
  display: inline-block;
}
.btn-ghost:hover { color: #fff; }

.btn-gold-pill {
  background: #d8a73a;
  color: #1a1108;
  border: none;
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  box-shadow: 0 6px 20px -8px #d8a73a;
  text-decoration: none;
  display: inline-block;
  transition: filter 0.15s, transform 0.15s;
}
.btn-gold-pill:active { filter: brightness(1.08); transform: translateY(1px); }

/* ── Pill badge ── */
.lp-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px 6px 8px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.02);
  font-size: 11.5px;
  color: rgba(255,255,255,0.72);
  letter-spacing: 0.01em;
}
.lp-pill-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #3fa959;
  box-shadow: 0 0 10px #3fa959;
  flex-shrink: 0;
}

/* ── Hero ── */
.lp-hero {
  max-width: 1320px;
  margin: 0 auto;
  padding: 70px 40px 80px;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 50px;
  align-items: center;
}

.lp-hero-copy { display: flex; flex-direction: column; }

.lp-h1 {
  font-family: "Instrument Sans", Helvetica, sans-serif;
  font-size: 58px;
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.035em;
  margin: 22px 0 20px;
  color: #fff;
  text-wrap: balance;
}
.lp-h1-accent {
  color: #d8a73a;
  font-style: italic;
  font-family: "Instrument Serif", serif;
}

.lp-subhead {
  font-size: 16.5px;
  line-height: 1.55;
  color: rgba(255,255,255,0.62);
  max-width: 520px;
  margin: 0 0 28px;
}

/* ── CTAs ── */
.lp-ctas {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.btn-gold-cta {
  background: #d8a73a;
  color: #1a1108;
  border: none;
  padding: 14px 22px;
  border-radius: 10px;
  font-size: 14.5px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  box-shadow: 0 18px 40px -14px #d8a73a;
  text-decoration: none;
  display: inline-block;
  transition: filter 0.15s, transform 0.15s;
}
.btn-gold-cta:active { filter: brightness(1.08); transform: translateY(1px); }

.btn-outline-cta {
  background: rgba(255,255,255,0.04);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.12);
  padding: 14px 22px;
  border-radius: 10px;
  font-size: 14.5px;
  font-weight: 500;
  font-family: inherit;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: filter 0.15s, transform 0.15s, background 0.15s;
}
.btn-outline-cta:hover { background: rgba(255,255,255,0.07); }
.btn-outline-cta:active { transform: translateY(1px); }

/* ── Metric rail ── */
.lp-metrics {
  display: flex;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-top: 36px;
}
.lp-metric {
  flex: 1;
  padding: 18px 20px;
  border-left: 1px solid rgba(255,255,255,0.08);
}
.lp-metric:first-child { border-left: none; }
.lp-metric-n {
  font-family: "Instrument Sans", sans-serif;
  font-size: 26px;
  font-weight: 500;
  color: #fff;
  letter-spacing: -0.02em;
}
.lp-metric-l {
  font-size: 11px;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  margin-top: 4px;
}

/* ── Screenshot frame ── */
.lp-shot {
  border-radius: 14px;
  background: #0a0a0a;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 40px 120px -30px rgba(0,0,0,0.9), 0 0 0 1px rgba(255,255,255,0.02) inset;
  overflow: hidden;
}
.lp-shot-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 9px 12px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.01);
}
.lp-shot-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #3a3a3a;
  flex-shrink: 0;
}
.lp-shot-caption {
  margin-left: 14px;
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  font-family: ui-monospace, monospace;
}
.lp-shot-kicker {
  margin-left: auto;
  padding: 3px 9px;
  border-radius: 4px;
  background: rgba(216,167,58,0.12);
  color: #d8a73a;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}
.lp-shot img {
  display: block;
  width: 100%;
  height: auto;
  background: #000;
}

/* ── Showcase ── */
.lp-showcase {
  max-width: 1320px;
  margin: 0 auto;
  padding: 40px 40px 80px;
}
.lp-showcase-head { max-width: 720px; margin-bottom: 40px; }
.lp-h2 {
  font-family: "Instrument Sans", sans-serif;
  font-size: 42px;
  font-weight: 500;
  letter-spacing: -0.025em;
  margin: 18px 0 14px;
  color: #fff;
  text-wrap: balance;
  line-height: 1.1;
}
.lp-h2-accent {
  font-style: italic;
  font-family: "Instrument Serif", serif;
  color: #d8a73a;
}

.lp-showcase-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 24px;
}
.lp-showcase-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.lp-caption-block {
  padding: 18px 20px;
  border-radius: 10px;
  background: rgba(255,255,255,0.015);
  border: 1px solid rgba(255,255,255,0.07);
}
.lp-caption-title {
  font-family: "Instrument Sans", sans-serif;
  font-size: 17px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 6px;
  line-height: 1.25;
}
.lp-caption-body {
  font-size: 13.5px;
  line-height: 1.55;
  color: rgba(255,255,255,0.58);
}

/* ── Pricing ── */
.lp-pricing {
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 40px 80px;
}
.lp-pricing-head {
  text-align: center;
  margin-bottom: 14px;
}
.lp-pricing-sub {
  font-size: 15px;
  color: rgba(255,255,255,0.55);
  margin-top: 10px;
}

.lp-trial-banner {
  margin: 24px auto 32px;
  max-width: 680px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 999px;
  background: rgba(216,167,58,0.08);
  border: 1px solid rgba(216,167,58,0.33);
  font-size: 13px;
  color: rgba(255,255,255,0.85);
  text-align: center;
  flex-wrap: wrap;
}
.lp-trial-banner-gold { color: #d8a73a; font-weight: 700; }
.lp-trial-banner-sep { opacity: 0.6; }

.lp-pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.lp-card {
  position: relative;
  padding: 30px;
  border-radius: 16px;
  background: rgba(255,255,255,0.015);
  border: 1px solid rgba(255,255,255,0.08);
}
.lp-card--featured {
  background: linear-gradient(180deg, rgba(216,167,58,0.09) 0%, rgba(255,255,255,0.015) 100%);
  border-color: rgba(216,167,58,0.4);
  box-shadow: 0 30px 80px -40px #d8a73a;
}

.lp-card-badge {
  position: absolute;
  top: -11px;
  left: 24px;
  padding: 3px 10px;
  border-radius: 999px;
  background: #d8a73a;
  color: #1a1108;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.lp-card-name {
  font-family: "Instrument Sans", sans-serif;
  font-size: 20px;
  font-weight: 500;
  color: #fff;
}
.lp-card-blurb {
  font-size: 13.5px;
  color: rgba(255,255,255,0.55);
  margin-top: 6px;
  margin-bottom: 18px;
}
.lp-card-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 18px;
}
.lp-card-price-n {
  font-family: "Instrument Sans", sans-serif;
  font-size: 56px;
  font-weight: 500;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1;
}
.lp-card-price-unit {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
}

.lp-card-features {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
}
.lp-card-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  font-size: 13.5px;
  color: rgba(255,255,255,0.78);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.lp-card-features li:last-child { border-bottom: none; }
.lp-check { font-weight: 700; margin-top: 1px; }
.lp-check--green { color: #3fa959; }
.lp-check--gold  { color: #d8a73a; }

.btn-card-primary {
  display: block;
  width: 100%;
  padding: 13px;
  background: #d8a73a;
  color: #1a1108;
  border: none;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  box-shadow: 0 14px 30px -12px #d8a73a;
  text-align: center;
  text-decoration: none;
  transition: filter 0.15s, transform 0.15s;
}
.btn-card-primary:active { filter: brightness(1.08); transform: translateY(1px); }

.btn-card-outline {
  display: block;
  width: 100%;
  padding: 13px;
  background: rgba(255,255,255,0.04);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  transition: background 0.15s, transform 0.15s;
}
.btn-card-outline:hover { background: rgba(255,255,255,0.07); }
.btn-card-outline:active { transform: translateY(1px); }

.lp-pricing-footnote {
  text-align: center;
  margin-top: 20px;
  font-size: 12.5px;
  color: rgba(255,255,255,0.4);
}

/* ── Footer ── */
.lp-footer {
  max-width: 1280px;
  margin: 0 auto;
  padding: 28px 40px 60px;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: rgba(255,255,255,0.4);
}
.lp-footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.lp-footer-links {
  display: flex;
  gap: 24px;
}
.lp-footer-links a:hover { color: rgba(255,255,255,0.7); }

/* ── Responsive ── */
@media (max-width: 960px) {
  .lp-header { padding: 14px 24px; }
  .lp-nav { display: none; }

  .lp-hero {
    grid-template-columns: 1fr;
    padding: 48px 24px 60px;
    gap: 40px;
  }
  .lp-h1 { font-size: 48px; }

  .lp-showcase {
    padding: 32px 24px 60px;
  }
  .lp-showcase-grid {
    grid-template-columns: 1fr;
  }
  .lp-h2 { font-size: 34px; }

  .lp-pricing {
    padding: 48px 24px 64px;
  }
  .lp-pricing-grid {
    grid-template-columns: 1fr;
  }

  .lp-footer {
    padding: 24px 24px 48px;
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}
