/* =========================
  LTR Collectibles — baseline
  Header + Footer responsive + pinned footer
========================= */

:root {
  --bg: #07090b;
  --surface: rgba(255, 255, 255, 0.04);
  --border: rgba(234, 242, 251, 0.10);

  --text: #eaf2fb;
  --muted: rgba(234, 242, 251, 0.72);
  --faint: rgba(234, 242, 251, 0.50);

  --accent: #0085ca;
  --accent-2: #66c7ff;

  --radius: 16px;
  --container: 1120px;

  --font: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica,
    Arial, "Apple Color Emoji", "Segoe UI Emoji";
}

* { box-sizing: border-box; }
html, body { height: 100%; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.45;
  overflow-x: hidden;

  /* IMPORTANT: keeps footer at bottom when main is empty */
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

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

.container {
  width: min(var(--container), calc(100% - 48px));
  margin: 0 auto;
}

/* Main grows to push footer down */
main {
  flex: 1;
  min-height: 1px;
  padding: 24px 0; /* gives breathing room when you add content later */
}

/* =========================
   HEADER
========================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;

  background: linear-gradient(180deg, rgba(7, 9, 11, 0.92), rgba(7, 9, 11, 0.70));
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(234, 242, 251, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
}

.brand-logo img {
  height: 54px;
  width: auto;
  display: block;
}

.brand-text { display: grid; line-height: 1.1; }

.brand-name {
  font-weight: 900;
  letter-spacing: 0.02em;
}

.brand-tag {
  display: block;
  font-size: 12px;
  color: var(--faint);
  margin-top: 3px;
}

.nav {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-link {
  color: var(--muted);
  font-weight: 750;
  font-size: 14px;
  padding: 10px 10px;
  border-radius: 12px;
  transition: 0.2s ease;
}

.nav-link:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(234, 242, 251, 0.08);
}



/* =========================
   HERO — PREMIUM (BALANCED)
========================= */

.hero.hero--premium {
  padding: 44px 0 70px;
}

/* MAIN PANEL */
.hero-panel {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  padding: clamp(26px, 4vw, 46px);
  box-shadow: 0 30px 90px rgba(0,0,0,0.55);

  /* glass base + subtle glow */
  background:
    radial-gradient(1200px 420px at 18% 22%, rgba(0,133,202,0.22), transparent 60%),
    radial-gradient(900px 360px at 86% 78%, rgba(127,90,240,0.18), transparent 55%),
    rgba(255,255,255,0.045);

  border: 1px solid rgba(234,242,251,0.02);
  backdrop-filter: blur(14px);
}

/* FAINT LOGO WATERMARK (Subtle, not dominating) */
.hero-panel::after {
  content: "";
  position: absolute;
  inset: 0;

  background: url("../assets/images/ltr-logo.png")
              no-repeat center 20% /
              clamp(260px, 30vw, 520px);

  opacity: 0.20;                 /* faint */
  filter:  contrast(.85) brightness(.9);
  pointer-events: none;
}

/* =========================
   KICKER (Centered)
========================= */

.kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  margin-left: 20%;
  margin-right: auto;

  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(234,242,251,0.10);

  color: rgba(234,242,251,0.70);
  font-weight: 800;
  letter-spacing: 0.16em;
  font-size: 12px;
  text-transform: uppercase;
}

/* =========================
   TITLE (Centered, Clean Wrap)
========================= */

.hero-title {
  margin: 18px auto 10px;
  text-align: center;
  max-width: 18ch;
  font-size: clamp(38px, 4.6vw, 66px);
  line-height: 1.02;
  letter-spacing: -0.035em;
  font-weight: 950;
  text-shadow: 0 18px 60px rgba(0,0,0,0.55);
}

/* Blue Accent on "future" */
.accent {
  color: var(--accent);
  text-shadow: 0 0 18px rgba(0,133,202,.35);
}

/* =========================
   SUBTITLE
========================= */

.hero-subtitle {
  text-align: center;
  margin: 0 auto 18px;
  max-width: 62ch;
  font-size: 16px;
  color: rgba(234,242,251,0.72);
}

/* =========================
   CTA BUTTON BOXES
========================= */

.hero-cta {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin: 18px 0;
}

.hero-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid rgba(234,242,251,0.18);
  background: rgba(255,255,255,0.25);

  color: rgba(234,242,251,0.88);
  font-weight: 800;
  text-decoration: none;

  transition: transform .15s ease, border-color .15s ease, background .15s ease;
}

.hero-cta a:hover {
  transform: translateY(-1px);
  border-color: rgba(0,133,202,0.38);
  background: rgba(255,255,255,0.06);
}

/* =========================
   BADGES
========================= */

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 8px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 11px;
  border-radius: 14px;
  background: rgba(255,255,255,0.25);
  border: 1px solid rgba(234,242,251,0.10);
  color: rgba(234,242,251,0.72);
  font-weight: 650;
  font-size: 12.5px;
}

.badge-icon {
  width: 20px;
  height: 20px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: rgba(0,133,202,0.40);
  border: 1px solid rgba(0,133,202,0.15);
  color: rgba(102,199,255,0.95);
  font-weight: 900;
}

/* =========================
   SOCIALS
========================= */

.mini-socials {
  margin-top: 18px;
  width: 100%;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

.mini-label {
  margin-bottom: 10px;
  font-weight: 925;
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(0,133,202,1);
  text-align: center;
}

.mini-stats {
  display: flex;
  gap: 10px;
  width: 100%;
  align-items: stretch;
  justify-content: center;
}

.mini {
  flex: 1 1 0;
  height: 64px;
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(255,255,255,0.0005);
  border: .01px solid rgba(234,242,251,0.00);
}

.mini-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  padding: 0;
}

/* =========================
   MOBILE ADJUSTMENT
========================= */

@media (max-width: 720px) {
  .hero-panel::after {
    background: url("../assets/images/ltr-logo.png")
                no-repeat center 30% /
                260px;
    opacity: 0.06;
  }

  .hero-title {
    max-width: 16ch;
  }

  .mini { height: 60px; }
}
/* SOCIALS - MOBILE FIX */
@media (max-width: 640px) {

  .mini-stats {
    display: flex;
    justify-content: center;
    gap: 14px;
  }

  .mini {
    width: 120px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .mini-img {
    width: 60%;
    height: auto;
    object-fit: contain;
  }

}
/* =========================
   HERO MOBILE OVERRIDES ONLY
   Paste at END of main.css
   ========================= */

@media (max-width: 600px) {
  /* make the panel breathe a bit on phones */
  .hero-panel {
    padding: 18px;
  }

  /* keep title readable on phones without changing desktop */
  .hero-title {
    font-size: clamp(34px, 8.5vw, 48px);
    line-height: 1.06;
  }

  .hero-subtitle {
    font-size: 15px;
    line-height: 1.45;
    margin-top: 10px;
  }

  /* CTA buttons: bigger tap targets */
  .hero-cta {
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .hero-cta .btn {
    min-height: 44px;
    padding: 12px 16px;
    font-size: 15px;
  }

  /* badges wrap cleanly */
  .hero-badges {
    gap: 10px;
    justify-content: center;
  }

  /* SOCIALS: stop them from becoming microscopic */
  .mini-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(92px, 1fr));
    gap: 12px;
    justify-items: center;
    max-width: 520px;
    margin: 0 auto;
  }

  .mini {
    width: 100%;
    min-height: 74px;
    border-radius: 14px;

    /* make outline less noticeable */
    border: 1px solid rgba(255, 255, 255, 0.08);
  }

  .mini-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    padding: 8px;
    display: block;
  }

  .mini-label {
    text-align: center;
    margin-bottom: 10px;
  }
}

/* extra-small phones (older iPhones) */
@media (max-width: 360px) {
  .mini-stats {
    grid-template-columns: repeat(2, minmax(130px, 1fr));
  }
}

/* ======================================================
   HOME BELOW HERO SECTION (does NOT affect hero)
   ====================================================== */

.home-below-hero{
  padding: 32px 0 60px;
}

/* Grid layout */
.home-grid{
  display: grid;
  grid-template-columns: 1.05fr 1.35fr;
  gap: 24px;
  align-items: start;
}

/* =========================
   LEFT PANEL (REVIEWS AREA)
   ========================= */

.home-panel{
  position: relative;
  border-radius: 20px;
  padding: 24px;
  background: rgba(12,16,28,.50);
  border: 1px solid rgba(140,200,255,.18);
  box-shadow:
    0 20px 60px rgba(0,0,0,.55),
    0 1px 0 rgba(255,255,255,.05) inset;
  backdrop-filter: blur(14px);
  overflow: hidden;
}

/* subtle premium glow */
.home-panel::before{
  content:"";
  position:absolute;
  inset:-1px;
  border-radius:inherit;
  pointer-events:none;
  background:
    radial-gradient(900px 400px at 20% 0%,
      rgba(80,160,255,.25),
      rgba(80,160,255,0) 60%),
    radial-gradient(700px 300px at 90% 20%,
      rgba(170,120,255,.18),
      rgba(170,120,255,0) 60%);
  mix-blend-mode: screen;
  opacity:.8;
}

.home-title{
  margin: 0 0 16px;
  font-size: 24px;
  letter-spacing: -.4px;
  text-shadow: 0 20px 50px rgba(0,0,0,.55);
}

/* Stats */
.home-stats{
  display: grid;
  gap: 14px;
  margin-bottom: 20px;
}

.stat{
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 12px 35px rgba(0,0,0,.35);
}

.stat-top{
  display: flex;
  gap: 10px;
  align-items: baseline;
  flex-wrap: wrap;
}

.stat-stars{
  font-weight: 800;
  letter-spacing: 2px;
  color: rgba(255,225,165,.95);
  text-shadow: 0 0 16px rgba(255,200,120,.25);
}

.stat-value{
  font-weight: 800;
  font-size: 18px;
}

.stat-note{
  font-size: 12px;
  opacity: .85;
  letter-spacing: .8px;
  text-transform: uppercase;
}

.stat-sub{
  margin-top: 6px;
  font-size: 13px;
  opacity: .85;
  line-height: 1.4;
}

.home-actions{
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* =========================
   RIGHT SIDE CARDS
   ========================= */

.home-cards{
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 16px;
}

/* Card Base */
.home-card{
  position: relative;
  display: flex;
  gap: 14px;
  padding: 18px;
  border-radius: 20px;
  text-decoration: none;
  color: inherit;
  background: rgba(12,16,28,.45);
  border: 1px solid rgba(140,200,255,.18);
  box-shadow:
    0 20px 60px rgba(0,0,0,.55),
    0 1px 0 rgba(255,255,255,.05) inset;
  backdrop-filter: blur(14px);
  min-height: 150px;
  transition: all .18s ease;
  overflow:hidden;
}

/* glow overlay */
.home-card::before{
  content:"";
  position:absolute;
  inset:-1px;
  border-radius:inherit;
  pointer-events:none;
  background:
    radial-gradient(900px 400px at 15% 0%,
      rgba(90,160,255,.22),
      rgba(90,160,255,0) 60%),
    radial-gradient(700px 300px at 90% 30%,
      rgba(170,120,255,.18),
      rgba(170,120,255,0) 60%);
  mix-blend-mode: screen;
  opacity:.75;
}

.home-card:hover{
  transform: translateY(-4px);
  border-color: rgba(140,200,255,.30);
  box-shadow:
    0 30px 80px rgba(0,0,0,.65),
    0 0 0 1px rgba(140,200,255,.15) inset,
    0 0 40px rgba(90,160,255,.20);
}

/* Icon */
.home-card-icon{
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight: 800;
  font-size: 16px;
  background: linear-gradient(
    180deg,
    rgba(90,160,255,.25),
    rgba(90,160,255,.12)
  );
  border: 1px solid rgba(140,200,255,.25);
  box-shadow:
    0 14px 30px rgba(0,0,0,.35),
    0 1px 0 rgba(255,255,255,.05) inset;
  flex-shrink: 0;
}

/* Text */
.home-card-body h3{
  margin: 0 0 8px;
  font-size: 17px;
  letter-spacing: -.2px;
}

.home-card-body p{
  margin: 0 0 12px;
  font-size: 13px;
  line-height: 1.4;
  opacity: .85;
}

.home-card-link{
  font-weight: 700;
  font-size: 13px;
  color: rgba(120,200,255,.95);
}

/* Placeholder Card */
.home-card--placeholder{
  grid-column: 1 / -1;
  border-style: dashed;
  background: rgba(12,16,28,.25);
}

.home-card-pill{
  display:inline-flex;
  align-items:center;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  border: 1px solid rgba(140,200,255,.35);
  color: rgba(140,200,255,.95);
  margin-bottom: 12px;
}

.home-card-muted{
  font-size: 12px;
  opacity: .6;
}

/* =========================
   RESPONSIVE
   ========================= */

@media (max-width: 980px){
  .home-grid{
    grid-template-columns: 1fr;
  }
  .home-cards{
    grid-template-columns: 1fr;
  }
  .home-card{
    min-height: auto;
  }
}

/* =========================
   SUBPAGE TEMPLATE STYLES
   ========================= */

.subpage-main{
  min-height: calc(100vh - 180px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 0;
}

.subpage-hero{
  width: 100%;
}

.subpage-inner{
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  padding: 40px 30px;
  border-radius: 20px;
  background: rgba(12,16,28,.45);
  border: 1px solid rgba(140,200,255,.18);
  box-shadow:
    0 25px 70px rgba(0,0,0,.55),
    0 1px 0 rgba(255,255,255,.05) inset;
  backdrop-filter: blur(14px);
}

.subpage-title{
  font-size: clamp(32px, 4vw, 48px);
  margin-bottom: 10px;
  letter-spacing: -0.5px;
}

.subpage-subtitle{
  font-size: 18px;
  font-weight: 700;
  color: rgba(120,200,255,.95);
  margin-bottom: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.subpage-description{
  font-size: 14px;
  line-height: 1.6;
  opacity: .85;
}

/* Mobile tightening */
@media (max-width: 600px){
  .subpage-main{
    padding: 40px 0;
  }

  .subpage-inner{
    padding: 30px 20px;
  }
}
/* =========================
   FOOTER (matches header feel)
========================= */

.site-footer {
  border-top: 1px solid rgba(234, 242, 251, 0.06);
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.00));
  padding: 18px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

/* Footer uses same .brand block — keep it a touch smaller */
.site-footer .brand-logo img {
  height: 44px;
}

.site-footer .brand-tag {
  font-size: 12px;
  color: rgba(234, 242, 251, 0.68);
}

.footer-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  flex-wrap: wrap;

  font-size: 13px;
  font-weight: 650;
  color: var(--muted);
}

.footer-link {
  padding: 8px 10px;
  border-radius: 12px;
  transition: 0.2s ease;
}

.footer-link:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(234, 242, 251, 0.08);
}

.footer-copy {
  color: rgba(234, 242, 251, 0.60);
  white-space: nowrap;
}
/* =========================
   LAYOUT: footer pinned bottom
========================= */
html, body { height: 100%; }

body{
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main{ flex: 1 0 auto; }
.site-footer{ margin-top: auto; }

/* =========================
   RESPONSIVE (no overlap, no horizontal scroll)
========================= */

/* Tablet-ish */
@media (max-width: 980px) {
  .header-inner { align-items: flex-start; }
  .nav { justify-content: flex-start; }
}

/* Phones */
@media (max-width: 640px) {
  .container { width: min(var(--container), calc(100% - 28px)); }

  .brand-logo img { height: 48px; }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .footer-nav {
    justify-content: flex-start;
    gap: 8px;
  }

  .footer-copy {
    width: 100%;
    white-space: normal;
  }
}
