:root{
  --bg: #0b0b0b;
  --text: #f2f2f2;
  --muted: rgba(242,242,242,.72);
  --line: rgba(242,242,242,.12);
  --max: 1180px;

  /* Amazon button */
  --amazon: #FF9900;
  --amazonText: #111111;
}

*{ box-sizing: border-box; }
html,body{ height:100%; }

body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
  background: radial-gradient(1200px 700px at 50% -200px, rgba(255,255,255,.06), transparent 70%), var(--bg);
  color: var(--text);
}

a{ color: inherit; text-decoration: none; }
img{ max-width:100%; display:block; }

.container{
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

/* ================= HEADER ================= */

.topbar{
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(10px);
  background: rgba(10,10,10,.65);
  border-bottom: 1px solid var(--line);
}

.topbar-inner{
  display:flex;
  align-items:center;
  justify-content: space-between;
  height: 72px;
  gap: 14px;
}

.brand{
  display:flex;
  align-items:center;
  gap: 12px;
}

.brand-mark{
  width: 28px;
  height: 28px;
  border: 1px solid var(--line);
  border-radius: 999px;
  display:grid;
  place-items:center;
  font-weight: 800;
  font-size: 12px;
  color: var(--muted);
}

.brand-name{
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--muted);
  white-space: nowrap;
}

/* Mobile hamburger */
.nav-toggle{
  display:none;
  border: 1px solid rgba(242,242,242,.18);
  background: rgba(255,255,255,.03);
  color: var(--text);
  border-radius: 12px;
  padding: 10px 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  cursor: pointer;
}

/* ================= NAV ================= */

.nav{
  display:flex;
  gap: 40px;
  align-items:center;
}

.nav a{
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--text);
  padding: 14px 0;
  opacity: .92;
  position: relative;
  transition: opacity .2s ease, transform .2s ease;
}

.nav a:hover{
  opacity: 1;
  transform: translateY(-2px);
}

.nav a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-2px;
  height:2px;
  width:0%;
  background: rgba(242,242,242,.85);
  transition: width .25s ease;
}

.nav a:hover::after,
.nav a.active::after{
  width:100%;
}

/* ================= HERO ================= */

.hero{ padding: 48px 0 20px; }

.huge-title{
  margin: 0;
  font-weight: 900;
  letter-spacing: -0.04em;
  font-size: clamp(52px, 10vw, 120px);
  line-height: .86;
  text-transform: uppercase;
  white-space: nowrap;
}

.hero-intro{
  margin-top: 22px;
  font-size: 18px;
  line-height: 1.8;
  color: var(--muted);
}

.hero-intro strong{
  color: var(--text);
  font-weight: 700;
}

/* Typewriter caret */
.type-caret{
  display:inline-block;
  width: 10px;
  margin-left: 6px;
  opacity: 1;
  animation: blink 0.9s steps(1) infinite;
}
@keyframes blink{ 50%{ opacity: 0; } }

/* ================= PAGE HEADING ================= */

.page-heading{
  margin: 36px 0 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  display:flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.page-heading h2{
  margin:0;
  font-size: 18px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.page-heading .note{
  font-size:  12px;
  color: var(--muted);
}

/* ================= LIST / CARDS ================= */

.list{
  display:flex;
  flex-direction: column;
  gap: 18px;
  padding-bottom: 34px;
}

/* ✅ SQUARE CARD EDGES (left and right match) */
.card{
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,.012));
  border-radius: 0;
  overflow: hidden;
}

.card-inner{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  min-height: 280px;
}

/* ✅ FIX: REMOVE THICK WHITE FRAME
   - no white background
   - no padding
   - thin border goes on the IMAGE itself
*/
.media{
  position: relative;
  border-right: 1px solid var(--line);
  background: transparent;   /* ✅ was white */
  padding: 0;                /* ✅ was causing thick frame */
  overflow: hidden;

  display:flex;
  align-items:center;
  justify-content:center;

  height: 520px;
}

/* click area fills media */
.media-link{
  display:flex;
  width:100%;
  height:100%;
  align-items:center;
  justify-content:center;
}

/* ✅ thin border ONLY around image */
.media img{
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;

  border: 1px solid rgba(255,255,255,.65);  /* ✅ thin white line */
}

/* ✅ hide START badge */
.badge{
  display:none !important;
}

.content{
  padding: 22px;
  display:flex;
  flex-direction: column;
  gap: 12px;
}

.kicker{
  font-size:11px;
  letter-spacing:.14em;
  text-transform:uppercase;
  color: var(--muted);
}

.title{
  margin:0;
  font-size:22px;
  line-height: 1.2;
}

.desc{
  font-size:14px;
  line-height:1.7;
  color: var(--muted);
}

.bullets{
  margin: 6px 0 0;
  padding-left:18px;
  font-size:13px;
  line-height:1.7;
  color: var(--muted);
}

.actions{
  margin-top:auto;
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap:12px;
  padding-top:14px;
  border-top:1px solid var(--line);
}

.pricehint{
  font-size:12px;
  color: var(--muted);
}

/* ================= BUTTONS ================= */

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 10px;

  padding: 14px 18px;
  border-radius: 14px;
  border: 1px solid rgba(242,242,242,.18);

  background: rgba(255,255,255,.06);
  color: var(--text);

  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;

  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.btn:hover{ transform: translateY(-2px); border-color: rgba(242,242,242,.35); }
.btn:active{ transform: translateY(0); }

.btn-amazon{
  background: var(--amazon);
  color: var(--amazonText);
  border-color: rgba(0,0,0,.25);
}
.btn-amazon:hover{
  background: #f5a623;
  border-color: rgba(0,0,0,.35);
}

/* ✅ BLUE BIG HOMEPAGE BUTTON */
.btn-blue{
  background: #1e90ff;
  color: #ffffff;
  border: none;
  box-shadow: 0 12px 30px rgba(30,144,255,.35);
}
.btn-blue:hover{ background: #187bdb; }

/* ✅ DOUBLE SIZE */
.btn-huge{
  padding: 26px 44px;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: .10em;
  border-radius: 22px;
}

/* ================= FOOTER ================= */

.footer{
  border-top:1px solid var(--line);
  padding:18px 0 40px;
  font-size:12px;
  line-height:1.6;
  color: var(--muted);
}

/* ================= SCROLL REVEAL ================= */

.reveal{
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s cubic-bezier(.22,.61,.36,1), transform .7s cubic-bezier(.22,.61,.36,1);
}

.reveal.in{
  opacity: 1;
  transform: translateY(0);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 900px){
  .huge-title{ white-space: normal; }

  .nav-toggle{ display:inline-flex; }

  .nav{
    display:none;
    width: 100%;
    gap: 16px;
    padding: 10px 0 16px;
    border-top: 1px solid var(--line);
  }

  body.nav-open .nav{
    display:flex;
    flex-direction: column;
    align-items:flex-start;
  }

  .topbar-inner{
    flex-wrap: wrap;
    height: auto;
    padding: 10px 0;
  }

  .card-inner{ grid-template-columns:1fr; }

  .media{
    border-right:0;
    border-bottom:1px solid var(--line);
    height: 420px;
  }

  .btn-huge{
    width: 100%;
    justify-content: center;
    padding: 22px 28px;
    font-size: 18px;
  }
}
