/* style.css */

/* ===== Base ===== */
:root{
  --text:#111827;
  --muted:#6b7280;

  /* background glow (original vibe) */
  --bg1: rgba(168, 85, 247, 0.25);
  --bg2: rgba(59, 130, 246, 0.22);

  /* brand gradients */
  --title-grad: linear-gradient(90deg, #6d28d9, #8b5cf6, #3b82f6);

  --pill-bg: rgba(255,255,255,0.55);
  --pill-border: rgba(17,24,39,0.08);

  --card-bg: rgba(255,255,255,0.70);
  --card-border: rgba(17,24,39,0.10);

  --btn-grad: linear-gradient(90deg, #2F6BFF, #6A5CFF);
  --btn-shadow: 0 12px 26px rgba(46, 107, 255, 0.22);

  --radius-lg: 18px;
  --radius-md: 12px;
}

*{ box-sizing:border-box; }
html, body{ height:100%; }

body{
  margin:0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color:var(--text);

  /* Retain gradient background (original) */
  background:
    radial-gradient(circle at 18% 18%, var(--bg1), transparent 42%),
    radial-gradient(circle at 82% 70%, var(--bg2), transparent 46%),
    linear-gradient(135deg, #ede9fe 0%, #f5f3ff 40%, #eef2ff 70%, #e0f2fe 100%);
  background-attachment: fixed;
}

/* ===== Top Bar ===== */
.topbar{
  padding: 28px 28px;  /* bigger header area */
}

.topbar__inner{
  max-width: 1120px;   /* wider */
  margin: 0 auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
}

.brandline{
  display:flex;
  align-items:center;
  gap:14px;
}

.brandline__logo{
  width: 50px;   /* bigger nav logo */
  height: auto;
  object-fit: contain;
}

.brandline__nav{
  display:flex;
  align-items:center;
  gap:12px;
  font-weight:800;
  font-size:18px;  /* bigger nav text */
}

.navlink{
  color: var(--text);
  text-decoration:none;
  opacity:0.95;
}

.navlink:hover{
  text-decoration:underline;
}

.navsep{
  color: rgba(17,24,39,0.35);
}

/* ===== CTA pill (rating + button) ===== */
.cta-pill{
  display:flex;
  align-items:center;
  gap:16px;
  padding: 14px 20px;          /* bigger pill */
  border-radius: 999px;
  background: var(--pill-bg);
  border: 1px solid var(--pill-border);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(17,24,39,0.06);
}

.rating__text{
  font-weight:800;
  font-size:15px;
  color: rgba(17,24,39,0.75);
  white-space:nowrap;
}

.stars{
  display:flex;
  gap:2px;
  line-height:1;
}

.star{
  font-size: 17px;   /* slightly bigger stars */
  color:#f5c542;
  opacity:1;
}

.star.half{
  position:relative;
  color:#f5c542;
}
.star.half::after{
  content:"★";
  position:absolute;
  left:0;
  top:0;
  width:50%;
  overflow:hidden;
  color:#f5c542;
}
.star.half{
  color: rgba(245,197,66,0.25);
}

.rating__text{
  font-weight:700;
  font-size:16px;
  color: rgba(17,24,39,0.75);
  white-space:nowrap;
}

/* ===== Button ===== */
.btn{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding: 12px 16px;
  border-radius: 999px;
  text-decoration:none;
  font-weight:800;
  color:#fff;
  background: var(--btn-grad);

  /* remove default shadow */
  box-shadow: none;

  border: 1px solid rgba(255,255,255,0.15);
  white-space:nowrap;
  transition: 180ms ease;
}

.btn:hover{
  transform: translateY(-2px);

  /* shadow only on hover */
  box-shadow: 0 14px 36px rgba(46, 107, 255, 0.28);
}

.btn:active{
  transform: translateY(0px);
  box-shadow: none;
}

.btn__sub{
  font-weight:700;
  font-size:13px;
  opacity:0.85;
}

/* ===== Layout ===== */
.wrap{
  padding: 14px 28px 90px;
}

.hero{
  max-width: 1120px;
  margin: 0 auto;
  text-align:center;
  padding-top: 52px;   /* more hero presence */
}

.hero__top{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:14px;        /* a bit more space */
  margin-bottom: 16px;
}

.hero__logo{
  width: 68px;     /* bigger hero logo */
  height: auto;
  object-fit: contain;
  transform: translateY(4px);
}

.hero__title{
  margin:0;
  font-size: 76px;   /* bigger headline */
  letter-spacing: -1.2px;
  line-height: 1.03;
  font-weight: 900;
}

.gradient-text{
  background: var(--title-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__desc{
  margin: 22px auto 0;
  max-width: 860px;
  font-size: 22px;
  line-height: 1.8;
  font-weight:600;
  color: rgba(17,24,39,0.86);
}

.divider{
  width: 68%;
  max-width: 860px;
  margin: 44px auto 44px;
  height: 1px;
  background: rgba(17,24,39,0.12);
}

.hero__shot{
  width: 100%;
  max-width: 680px;   /* slightly larger since no card */
  height: auto;
  display: block;
  margin: 30px auto 0;

  /* remove card feel */
  border: none;
  background: none;

  /* keep subtle depth */
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(17,24,39,0.10);
}

.below{
  margin: 54px auto 26px;  /* bring it closer to divider */
  font-size: 28px;
  font-weight: 900;
  color: rgba(17,24,39,0.88);
}

/* ===== Responsive ===== */
@media (max-width: 820px){
  .hero__title{ font-size: 42px; }
  .hero__cardTitle{ font-size: 34px; }
}

@media (max-width: 640px){
  .topbar__inner{
    flex-direction:column;
    align-items:flex-start;
  }

  .cta-pill{
    width:100%;
    justify-content:space-between;
  }

  .hero__title{ font-size: 36px; }
  .hero__desc{ font-size: 16px; }
  .hero__cardTitle{ font-size: 30px; }
}

/* ===== Product cards row ===== */
.product-grid{
  max-width: 1120px;
  margin: 22px auto 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  padding: 0 6px;
}

.product-card{
  display:flex;
  align-items:center;
  gap:18px;
  justify-content:center;

  height: 150px;                 /* bigger cards */
  padding: 0 24px;
  border-radius: 16px;
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(17,24,39,0.12);
  box-shadow: 0 16px 44px rgba(17,24,39,0.08);

  text-decoration:none;
  color: var(--text);

  transition: transform 200ms ease, box-shadow 200ms ease;
}

.product-card:hover{
  transform: scale(1.1);
  box-shadow: 0 26px 70px rgba(17,24,39,0.14);
}

.product-card__logo{
  width: 58px;
  height: auto;
  object-fit: contain;
}

.product-card__text{
  font-weight: 900;
  font-size: 22px;
  color: #6d28d9;
}

/* Disabled for now (future-clickable later) */
.product-card.is-disabled{
  cursor: default;
}

/* When enabled later, this hover will kick in automatically */
.product-card:not(.is-disabled):hover{
  transform: translateY(-2px);
  transition: 160ms ease;
  box-shadow: 0 18px 44px rgba(17,24,39,0.10);
}

/* Responsive */
@media (max-width: 820px){
  .product-grid{
    grid-template-columns: 1fr;
  }
  .product-card{
    justify-content: flex-start;
    padding: 0 18px;
  }
}

/* ===== Footer ===== */
.site-footer{
  text-align: center;
  padding: 40px 20px 30px;
  font-size: 14px;
  font-weight: 300;
  color: rgba(17,24,39,0.65);
}
