:root{
  --bg: #0b0c10;
  --panel: #11131a;
  --panel2: #0f1117;
  --text: #e7e7ea;
  --muted: #a9abb6;
  --line: #262a36;
  --accent: #ff6a00;
  --accent2: #ffd000;
  --radius: 16px;
  --shadow: 0 10px 30px rgba(0,0,0,.35);
  --max: 1100px;
  --pad: 20px;
  --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{ margin:0; padding:0; background:var(--bg); color:var(--text); font-family:var(--font); }
a{ color:inherit; text-decoration: none; }
a:hover{ text-decoration: underline; }

.container{
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
}

.dev-banner{
  background: rgba(255,106,0,.15);
  border-bottom: 1px solid rgba(255,106,0,.35);
  color: var(--text);
  padding: 10px var(--pad);
  font-size: 14px;
  text-align: center;
}

.site-header{
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(11,12,16,.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

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

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  font-weight: 750;
  letter-spacing: .2px;
}
.brand-mark{ font-size: 18px; }
/* Logo image (SVG) */
.brand-logo{
  width: 56px;
  height: 56px;
  display: block;
}

/* Brand title uses Baloo 2 (loaded in <head>) */
.brand-name{
  font-family: "Baloo 2", var(--font);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.2px;
  line-height: 1;
}

.nav{
  display:flex;
  gap: 14px;
  font-size: 14px;
  color: var(--muted);
}
.nav a{ padding: 8px 10px; border-radius: 10px; }
.nav a:hover{ background: rgba(255,255,255,.04); text-decoration:none; color: var(--text); }

.hero{
  padding: 52px 0 28px;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 22px;
  align-items: start;
}

h1{
  font-size: clamp(32px, 4vw, 48px);
  margin: 0 0 12px;
  letter-spacing: -0.6px;
}
.lead{
  font-size: 18px;
  line-height: 1.5;
  color: var(--muted);
  margin: 0 0 18px;
}

.cta-row{
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 11px 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.03);
  box-shadow: none;
  font-weight: 650;
  font-size: 14px;
}
.btn:hover{ text-decoration:none; border-color: rgba(255,255,255,.25); }
.btn.primary{
  border-color: rgba(255,106,0,.55);
  background: linear-gradient(180deg, rgba(255,106,0,.18), rgba(255,106,0,.08));
}

.micro{
  font-size: 13px;
  color: var(--muted);
  line-height: 1.45;
}

.hero-card{
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  box-shadow: var(--shadow);
}
.hero-card-inner{ padding: 18px; }
.eyebrow{ color: var(--muted); font-size: 12px; letter-spacing: .12em; text-transform: uppercase; margin: 0 0 8px; }
.h3{ margin: 0 0 10px; font-size: 20px; }
.quote{
  margin: 0 0 12px;
  padding: 12px;
  border-radius: 12px;
  background: rgba(0,0,0,.25);
  border: 1px solid rgba(255,255,255,.06);
  color: #d7d7dc;
  line-height: 1.45;
  font-size: 14px;
}

.section{ padding: 34px 0; }
.section.alt{
  background: radial-gradient(900px 500px at 20% 0%, rgba(255,106,0,.10), transparent 60%),
              radial-gradient(900px 500px at 80% 0%, rgba(255,208,0,.08), transparent 60%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-head{ margin-bottom: 16px; }
.section-head h2{ margin:0 0 6px; font-size: 24px; }
.subhead{ margin:0; color: var(--muted); }

.grid{
  display:grid;
  gap: 14px;
}
.grid.cards{
  grid-template-columns: repeat( auto-fit, minmax(220px, 1fr) );
}
.grid.two{
  grid-template-columns: repeat( auto-fit, minmax(280px, 1fr) );
}

.card{
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
  background: rgba(255,255,255,.02);
}
.card h3{ margin: 10px 0 6px; font-size: 16px; }
.card p{ margin: 0 0 10px; color: var(--muted); line-height: 1.45; }

.thumb{
  height: 120px;
  border-radius: 14px;
  border: 1px dashed rgba(255,255,255,.15);
  display:flex;
  align-items:center;
  justify-content:center;
  color: rgba(255,255,255,.35);
  background: rgba(0,0,0,.15);
  font-size: 13px;
}

.text-link{
  color: #fff;
  font-weight: 650;
}
.text-link:hover{ text-decoration: underline; }

.story{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 16px;
  align-items: start;
}
.bullets{
  margin: 14px 0 0;
  padding-left: 18px;
  color: var(--muted);
}
.panel{
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
  background: rgba(0,0,0,.18);
}
.h4{ margin: 0 0 10px; }
.steps{
  margin: 0 0 12px;
  padding-left: 18px;
  color: var(--muted);
}
.steps li{ margin: 6px 0; }

.site-footer{
  border-top: 1px solid var(--line);
  padding: 18px 0;
}
.footer-row{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.footer-links{
  display:flex;
  gap: 14px;
  color: var(--muted);
  font-size: 14px;
}

/* Responsive */
@media (max-width: 860px){
  .hero-grid, .story{ grid-template-columns: 1fr; }
  .nav{ display:none; } /* keep it simple; add mobile nav later if needed */
}

/* Thumbnail frame (mockup container) */
.thumb{
  height: 200px; /* a little taller for shirts */
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.10);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;

  /* This gradient helps dark shirts pop */
  /* background: radial-gradient(circle at 50% 35%, #232b38 0%, #141820 70%);*/
  background: radial-gradient(
    360px 260px at 50% 38%,
    #ffffff 0%,
    #f7faff 35%,
    #edf3fb 65%,
    #e3ebf5 100%
  );
}

/* Thumbnail image */
.thumb img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.thumb:hover .nav-arrow{ opacity: 1; }

.nav-arrow.prev{ left: 10px; }
.nav-arrow.next{ right: 10px; }

.nav-arrow:hover{
  background: rgba(0,0,0,.55);
  border-color: rgba(255,255,255,.30);
}

@media (max-width: 860px){
  .nav-arrow{ opacity: 1; }
}/* === Swatches === */
.swatches{
  display:flex;
  gap:8px;
  margin-top:10px;
}

.swatch{
  width:16px;
  height:16px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.22);
  cursor:pointer;
  padding:0;
  background:#666;
}

.swatch:hover{ transform: translateY(-1px); }
.swatch.is-active{ outline:2px solid rgba(255,106,0,.7); outline-offset:2px; }

/* === Slider arrows (inside thumb) === */
.slider{ position: relative; }

.nav-arrow{
  position:absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(0,0,0,.35);
  color: #fff;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  display:flex;
  align-items:center;
  justify-content:center;
  opacity: 0;
  transition: opacity .15s ease;
}

.thumb:hover .nav-arrow{ opacity: 1; }

.nav-arrow.prev{ left: 10px; }
.nav-arrow.next{ right: 10px; }

.nav-arrow:hover{
  background: rgba(0,0,0,.55);
  border-color: rgba(255,255,255,.30);
}

@media (max-width: 860px){
  .nav-arrow{ opacity: 1; }
}

/* === Lightbox === */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  justify-content: center;
  align-items: center;
  z-index: 9999;
  padding: 40px;
}

.lightbox-img {
  max-width: 90%;
  max-height: 85vh;
  border-radius: 16px;
  box-shadow: 0 0 40px rgba(0,0,0,0.6);
}

.lightbox-close {
  position: absolute;
  top: 25px;
  right: 35px;
  font-size: 42px;
  color: #fff;
  cursor: pointer;
  font-weight: 300;
}

/* === Purchase Block === */
.purchase-note {
  font-size: 0.72rem;
  opacity: 0.55;
  margin-top: 6px;
  margin-bottom: 0;
  letter-spacing: 0.02em;
}

.purchase-trust {
  font-size: 0.85rem;
  opacity: 0.8;
  margin-top: 12px;
  padding-left: 18px;
}

.purchase-trust li {
  margin-bottom: 4px;
}

.buy-actions {
  margin-top: 20px;
}
