/* ============================================================
   SleekWebsite.design — LandingFolio Demo
   Dark navy + gold · Space Grotesk / Inter
   ============================================================ */

:root {
  --bg: #0a1120;
  --bg-2: #0d1526;
  --bg-3: #111c33;
  --card: rgba(255, 255, 255, 0.03);
  --border: rgba(255, 255, 255, 0.09);
  --border-strong: rgba(255, 255, 255, 0.16);
  --gold: #e8b64c;
  --gold-strong: #f5c96b;
  --gold-dim: #a16207;
  --text: #f1f5f9;
  --muted: #94a3b8;
  --muted-2: #8b9bb0;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
  --font-head: "Space Grotesk", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
  --max: 1140px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: var(--gold); color: #0a1120; }

img { max-width: 100%; display: block; }

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

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

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

.gold { color: var(--gold); }

.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease;
  white-space: nowrap;
}

.btn-gold {
  background: linear-gradient(180deg, var(--gold-strong), var(--gold));
  color: #141a04;
  box-shadow: 0 8px 24px rgba(232, 182, 76, 0.28);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(232, 182, 76, 0.38);
}

.btn-ghost {
  background: transparent;
  border-color: var(--border-strong);
  color: var(--text);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

.btn-ghost.light { border-color: rgba(255,255,255,0.35); }

.btn-sm { padding: 9px 18px; font-size: 0.85rem; }

.arrow { width: 16px; height: 16px; transition: transform 0.18s ease; }
.btn:hover .arrow { transform: translateX(3px); }

/* ---------- Nav ---------- */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  justify-content: center;
  padding: 18px 20px 0;
  pointer-events: none;
}

.nav-pill {
  pointer-events: auto;
  display: flex;
  align-items: center;
  gap: 28px;
  width: 100%;
  max-width: 1060px;
  padding: 12px 12px 12px 20px;
  background: rgba(13, 21, 38, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--border);
  border-radius: 999px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
}

.brand { display: flex; align-items: center; gap: 10px; }

.brand-mark {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dim));
  color: #141a04;
}
.brand-mark svg { width: 17px; height: 17px; }

.brand-text {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.02rem;
  letter-spacing: -0.01em;
}
.brand-text em { font-style: normal; color: var(--gold); }

.nav-links { display: flex; gap: 26px; margin-left: auto; }
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.15s ease;
}
.nav-links a:hover { color: var(--text); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  cursor: pointer;
  padding: 6px;
}
.nav-toggle svg { width: 22px; height: 22px; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 150px 0 90px;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  inset: -200px -20% auto;
  height: 560px;
  background:
    radial-gradient(ellipse 60% 55% at 50% 0%, rgba(232, 182, 76, 0.14), transparent 70%),
    radial-gradient(ellipse 45% 45% at 18% 20%, rgba(37, 99, 235, 0.12), transparent 70%),
    radial-gradient(ellipse 45% 45% at 82% 18%, rgba(232, 182, 76, 0.08), transparent 70%);
  pointer-events: none;
}

.hero-inner { position: relative; text-align: center; }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 16px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--card);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--muted);
  margin-bottom: 26px;
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 12px var(--gold);
}

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.5rem, 6vw, 4.3rem);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -0.03em;
  max-width: 900px;
  margin: 0 auto 22px;
}

.hero-sub {
  font-size: clamp(1.02rem, 1.6vw, 1.2rem);
  color: var(--muted);
  max-width: 640px;
  margin: 0 auto 34px;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 52px;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 0;
  margin: 0 auto 64px;
  max-width: 720px;
  flex-wrap: wrap;
}
.hero-stats > div {
  flex: 1;
  min-width: 150px;
  padding: 0 22px;
  border-left: 1px solid var(--border);
}
.hero-stats > div:first-child { border-left: none; }
.hero-stats dt {
  font-family: var(--font-head);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--gold);
}
.hero-stats dd { font-size: 0.82rem; color: var(--muted-2); margin-top: 2px; }

/* ---------- Browser mockup ---------- */
.hero-visual {
  position: relative;
  max-width: 980px;
  margin: 0 auto;
}

.browser {
  border: 1px solid var(--border-strong);
  border-radius: 14px;
  overflow: hidden;
  background: var(--bg-2);
  box-shadow: var(--shadow);
}

.browser-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 12px 16px;
  background: var(--bg-3);
  border-bottom: 1px solid var(--border);
}
.dot { width: 10px; height: 10px; border-radius: 50%; background: #3b4a63; }
.dot:nth-child(1) { background: #e06c6c; }
.dot:nth-child(2) { background: #e0b46c; }
.dot:nth-child(3) { background: #6ce08a; }
.url {
  margin-left: auto;
  margin-right: auto;
  transform: translateX(-24px);
  font-size: 0.72rem;
  color: var(--muted-2);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 4px 18px;
}

.browser-body { padding: 22px; }

.mini-nav {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border);
}
.mini-logo { width: 26px; height: 26px; border-radius: 8px; background: linear-gradient(135deg, var(--gold), var(--gold-dim)); }
.mini-link { width: 46px; height: 8px; border-radius: 4px; background: rgba(255,255,255,0.14); }
.mini-btn { margin-left: auto; width: 74px; height: 26px; border-radius: 999px; background: var(--gold); }

.mini-hero { padding: 34px 10px 10px; text-align: center; }
.mini-chip { display: inline-block; width: 130px; height: 16px; border-radius: 999px; background: rgba(232,182,76,0.35); margin-bottom: 16px; }
.mini-h1 { display: block; width: 340px; max-width: 80%; height: 26px; border-radius: 6px; background: rgba(255,255,255,0.2); margin: 0 auto 10px; }
.mini-h1.short { width: 210px; }
.mini-p { display: block; width: 260px; max-width: 70%; height: 9px; border-radius: 5px; background: rgba(255,255,255,0.1); margin: 14px auto 0; }
.mini-p.short { width: 190px; }
.mini-btns { display: flex; justify-content: center; gap: 10px; margin-top: 24px; }
.mini-cta { width: 110px; height: 32px; border-radius: 999px; background: var(--gold); }
.mini-cta.ghost { background: transparent; border: 1px solid rgba(255,255,255,0.3); }

.mini-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 26px; }
.mini-card { height: 54px; border-radius: 10px; background: rgba(255,255,255,0.05); border: 1px solid var(--border); }

/* ---------- Logo cloud ---------- */
.logo-cloud { padding: 40px 24px 70px; text-align: center; }

.cloud-label {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: 24px;
}

.cloud-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(28px, 5vw, 60px);
  flex-wrap: wrap;
  opacity: 0.75;
}

.cloud-logo {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  color: var(--muted);
  white-space: nowrap;
}

/* ---------- Section headers ---------- */
.sec-head { text-align: center; max-width: 660px; margin: 0 auto 52px; }
.sec-head h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3.6vw, 2.6rem);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 14px;
}
.sec-head p { color: var(--muted); font-size: 1.02rem; }

/* ---------- Bento ---------- */
.sections { padding: 90px 0; background: var(--bg-2); border-block: 1px solid var(--border); }

.bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.bento-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.bento-card:hover {
  transform: translateY(-4px);
  border-color: rgba(232, 182, 76, 0.4);
  background: rgba(255, 255, 255, 0.05);
}
.bento-card.big { grid-column: span 2; }

.bento-card svg {
  width: 30px;
  height: 30px;
  color: var(--gold);
  margin-bottom: 18px;
}

.bento-card h3 {
  font-family: var(--font-head);
  font-size: 1.12rem;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.bento-card p { color: var(--muted); font-size: 0.92rem; margin-bottom: 16px; }

.tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--gold);
  background: rgba(232, 182, 76, 0.1);
  border: 1px solid rgba(232, 182, 76, 0.25);
  border-radius: 999px;
  padding: 4px 12px;
}

/* ---------- Testimonials ---------- */
.testimonials { padding: 90px 0; }

.trow { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }

.tcard {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.tcard:hover { transform: translateY(-4px); border-color: rgba(232, 182, 76, 0.4); }

.stars { color: var(--gold); letter-spacing: 3px; font-size: 0.9rem; }

.tcard p { color: var(--muted); font-size: 0.94rem; flex: 1; }

.tfoot { display: flex; align-items: center; gap: 12px; }

.avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.82rem;
  color: #141a04;
  background: linear-gradient(135deg, var(--gold-strong), var(--gold));
  flex-shrink: 0;
}

.tfoot strong { display: block; font-size: 0.9rem; }
.tfoot div span { font-size: 0.8rem; color: var(--muted-2); }

/* ---------- Pricing ---------- */
.pricing { padding: 90px 0; background: var(--bg-2); border-block: 1px solid var(--border); }

.toggle {
  display: inline-flex;
  gap: 4px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 4px;
  margin-top: 18px;
}

.toggle-btn {
  border: none;
  background: none;
  color: var(--muted);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease;
}
.toggle-btn.active { background: var(--gold); color: #141a04; }

.prow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-items: stretch;
}

.pcard {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px;
  display: flex;
  flex-direction: column;
  position: relative;
}

.pcard.popular {
  border-color: rgba(232, 182, 76, 0.55);
  background: linear-gradient(180deg, rgba(232, 182, 76, 0.08), rgba(232, 182, 76, 0.02));
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.pop-tag {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(180deg, var(--gold-strong), var(--gold));
  color: #141a04;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 999px;
  white-space: nowrap;
}

.pcard h3 { font-family: var(--font-head); font-size: 1.15rem; margin-bottom: 6px; }

.price {
  font-family: var(--font-head);
  font-size: 2.3rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--gold);
  margin-bottom: 4px;
}

.pdesc { font-size: 0.88rem; color: var(--muted-2); margin-bottom: 20px; }

.plist { list-style: none; margin-bottom: 26px; display: grid; gap: 10px; }
.plist li {
  position: relative;
  padding-left: 26px;
  font-size: 0.9rem;
  color: var(--muted);
}
.plist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(232, 182, 76, 0.18);
  border: 1px solid rgba(232, 182, 76, 0.5);
}
.plist li::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 10px;
  width: 6px;
  height: 3px;
  border-left: 1.5px solid var(--gold);
  border-bottom: 1.5px solid var(--gold);
  transform: rotate(-45deg);
}

.pcard .btn { margin-top: auto; }

/* ---------- CTA band ---------- */
.cta-band {
  padding: 110px 0;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 55% 70% at 50% 110%, rgba(232, 182, 76, 0.16), transparent 70%),
    var(--bg);
}

.cta-inner { text-align: center; max-width: 700px; }

.cta-inner h2 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4.4vw, 3rem);
  letter-spacing: -0.03em;
  line-height: 1.12;
  margin-bottom: 18px;
}

.cta-inner p { color: var(--muted); font-size: 1.05rem; margin-bottom: 34px; }

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--border); background: var(--bg-2); }

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  padding: 60px 24px 40px;
}

.f-brand p { color: var(--muted-2); font-size: 0.88rem; margin-top: 14px; max-width: 340px; }

.f-col h4 {
  font-family: var(--font-head);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}
.f-col a { display: block; color: var(--muted-2); font-size: 0.9rem; margin-bottom: 10px; transition: color 0.15s ease; }
.f-col a:hover { color: var(--gold); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  padding: 22px 24px;
  border-top: 1px solid var(--border);
  color: var(--muted-2);
  font-size: 0.8rem;
}
.inspo { text-align: right; }

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn, .bento-card, .tcard, .arrow { transition: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; margin-left: auto; }
  .nav-pill.open .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: calc(100% + 10px);
    left: 20px;
    right: 20px;
    background: var(--bg-3);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 18px;
    gap: 14px;
    box-shadow: var(--shadow);
  }
  .nav-pill.open .nav-links a { color: var(--text); }

  .bento, .trow, .prow { grid-template-columns: 1fr; }
  .bento-card.big { grid-column: span 1; }

  .hero-stats > div { min-width: 120px; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
}

@media (max-width: 480px) {
  .hero { padding-top: 120px; }
  .nav-pill { gap: 12px; padding-left: 14px; }
  .nav-pill .btn-sm { display: none; }
  .hero-stats { gap: 18px; }
  .hero-stats > div { border-left: none; min-width: 100%; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .inspo { text-align: center; }
}
