/* FILE: styles.css */
:root{
  --bg: #0b0f14;
  --panel: rgba(255,255,255,0.06);
  --panel-2: rgba(255,255,255,0.08);
  --text: rgba(255,255,255,0.92);
  --muted: rgba(255,255,255,0.72);
  --faint: rgba(255,255,255,0.55);
  --line: rgba(255,255,255,0.12);
  --accent: #e7ddc7; /* warm bone */
  --accent-2:#cfd8de; /* cool gray */
  --shadow: 0 12px 34px rgba(0,0,0,0.45);
  --radius: 18px;
  --radius-sm: 12px;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  background: radial-gradient(1200px 600px at 10% 10%, rgba(231,221,199,0.08), transparent 50%),
              radial-gradient(900px 500px at 90% 0%, rgba(207,216,222,0.06), transparent 52%),
              var(--bg);
  color: var(--text);
  line-height:1.55;
}

a{ color: inherit; }
.container{
  width:min(1100px, 92vw);
  margin:0 auto;
}

.site-header{
  position:sticky;
  top:0;
  z-index:50;
  backdrop-filter: blur(10px);
  background: rgba(11,15,20,0.62);
  border-bottom: 1px solid var(--line);
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 14px 0;
  gap: 16px;
}

.brand{
  display:flex;
  align-items:center;
  gap: 12px;
  min-width: 240px;
}
 .brand-mark-img{
  width: 32px;
  height: 32px;
  object-fit: contain;
  display: block;
}

}
.brand-name{
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.01em;
}
.brand-sub{
  font-size: 12px;
  color: var(--faint);
  margin-top: 2px;
}

.nav{
  display:flex;
  gap: 14px;
  flex-wrap:wrap;
  justify-content:flex-end;
}
.nav-link{
  font-size: 13px;
  color: var(--muted);
  text-decoration:none;
  padding: 8px 10px;
  border-radius: 10px;
  border: 1px solid transparent;
}
.nav-link:hover{
  color: var(--text);
  border-color: var(--line);
  background: rgba(255,255,255,0.04);
}

.hero{
  padding: 52px 0 18px;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 26px;
  align-items:center;
}
.hero-copy h1{
  margin:0 0 10px;
  font-size: clamp(30px, 3.4vw, 46px);
  line-height:1.08;
  letter-spacing:-0.02em;
}
.lead{
  margin:0 0 18px;
  color: var(--muted);
  font-size: 16px;
  max-width: 52ch;
}
.pill-row{
  display:flex;
  flex-wrap:wrap;
  gap: 10px;
  margin: 10px 0 20px;
}
.pill{
  font-size: 12px;
  color: var(--muted);
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.04);
  padding: 7px 10px;
  border-radius: 999px;
}

.cta-row{
  display:flex;
  gap: 12px;
  flex-wrap:wrap;
  align-items:center;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  padding: 11px 14px;
  border-radius: 14px;
  border: 1px solid var(--line);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.01em;
}
.btn-primary{
  background: linear-gradient(135deg, rgba(231,221,199,0.95), rgba(231,221,199,0.70));
  color: rgba(10,12,14,0.95);
  border-color: rgba(231,221,199,0.35);
  box-shadow: var(--shadow);
}
.btn-primary:hover{
  filter: brightness(1.02);
}
.btn-ghost{
  background: rgba(255,255,255,0.04);
  color: var(--text);
}
.btn-ghost:hover{
  background: rgba(255,255,255,0.07);
}

.micro{
  margin-top: 12px;
  font-size: 12px;
  color: var(--faint);
}

.hero-media .image-frame{
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.03);
  box-shadow: var(--shadow);
  overflow:hidden;
  min-height: 340px;
  display:grid;
  place-items:center;
  padding: 10px;
}
.hero-media img{
  width:100%;
  height:auto;
  border-radius: calc(var(--radius) - 10px);
  display:block;
}
.image-frame.img-missing .img-fallback{ display:block; }
.img-fallback{
  display:none;
  text-align:center;
  padding: 24px;
  color: var(--muted);
}
.fallback-title{
  font-weight: 800;
  color: var(--text);
  margin-bottom: 6px;
}
.fallback-sub{
  font-size: 13px;
  color: var(--muted);
}

.section{
  padding: 44px 0;
}
.section h2{
  margin:0 0 12px;
  font-size: 20px;
  letter-spacing: -0.01em;
}
.section p{
  margin:0;
  color: var(--muted);
  max-width: 80ch;
}

.card-grid{
  margin-top: 16px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.card{
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--panel);
  padding: 16px;
}
.card h3{
  margin:0 0 10px;
  font-size: 14px;
  letter-spacing: 0.01em;
}
.card p, .card li{
  color: var(--muted);
  font-size: 13px;
}
.card ul{
  margin: 0;
  padding-left: 18px;
}
.card li{ margin: 6px 0; }

.buy-strip{
  margin-top: 18px;
  border-radius: var(--radius);
  border: 1px solid rgba(231,221,199,0.25);
  background: linear-gradient(135deg, rgba(231,221,199,0.10), rgba(255,255,255,0.03));
  padding: 16px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;
}
.buy-title{
  font-weight: 900;
  letter-spacing:-0.01em;
  margin-bottom: 4px;
}
.buy-sub{
  font-size: 13px;
  color: var(--muted);
}

.site-footer{
  border-top: 1px solid var(--line);
  padding: 22px 0;
  background: rgba(0,0,0,0.14);
}
.footer-inner{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap: 14px;
  flex-wrap:wrap;
}
.footer-brand{
  font-weight: 900;
  margin-bottom: 3px;
}
.footer-micro{
  color: var(--faint);
  font-size: 12px;
}
.footer-right{
  display:flex;
  gap: 12px;
  flex-wrap:wrap;
}
.footer-link{
  text-decoration:none;
  font-size: 12px;
  color: var(--muted);
  padding: 8px 10px;
  border-radius: 10px;
  border: 1px solid transparent;
}
.footer-link:hover{
  color: var(--text);
  border-color: var(--line);
  background: rgba(255,255,255,0.04);
}

/* Responsive */
@media (max-width: 900px){
  .hero-grid{ grid-template-columns: 1fr; }
  .brand{ min-width: auto; }
  .card-grid{ grid-template-columns: 1fr; }
  .hero-media .image-frame{ min-height: 280px; }
}
  .brand-mark-img{
  width:42px;
  height:42px;
  object-fit:contain;
  border-radius:14px;
  border: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(231,221,199,0.18), rgba(255,255,255,0.06));
  box-shadow: 0 8px 22px rgba(0,0,0,0.25);
  padding: 6px;
}
.footer-mark{
  width: 30px;
  height: 30px;
  max-width: 30px;
  max-height: 30px;
  object-fit: contain;
  opacity: 0.9;
  margin-bottom: 6px;
  flex: 0 0 auto;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.35));
}
@media (max-width: 768px){
  .footer-mark{
    width: 34px;
    height: 34px;
    max-width: 34px;
    max-height: 34px;
  }
}


