/* ========================================================================
   Grow with Ayaz — landing page
   Design tokens
   ======================================================================== */
:root {
  --bg: #000000;
  --surface: #121014;
  --surface-2: #1C1922;
  --surface-border: #2B2732;
  --ink: #F6F4F8;
  --ink-soft: #B7B1C1;
  --muted: #7C7686;
  --purple: #7A4DE0;
  --purple-strong: #8F63F0;
  --purple-dim: rgba(122, 77, 224, 0.14);
  --gold: #FFD233;
  --gold-dim: #C6A237;
  --line: #232028;

  --max: 1180px;
  --pad: clamp(1.25rem, 5vw, 3rem);
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 9px;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-card: 0 20px 50px -24px rgba(0, 0, 0, 0.65);
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  background: var(--bg);
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: -apple-system, "Segoe UI", "Helvetica Neue", Arial, "Noto Sans", sans-serif;
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
  overflow-x: hidden;
}

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

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

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

section { position: relative; }

/* ------------------------------------------------------------------------
   Type
   ------------------------------------------------------------------------ */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--purple-strong);
  margin: 0 0 1rem;
}
.eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

h1, h2, h3 { font-weight: 800; letter-spacing: -0.02em; margin: 0; text-wrap: balance; }

.section-head {
  max-width: 640px;
  margin: 0 0 clamp(2rem, 5vw, 3.25rem);
}
.section-head h2 {
  font-size: clamp(1.7rem, 3.6vw, 2.5rem);
  line-height: 1.1;
}
.section-head p {
  margin: 0.9rem 0 0;
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.6;
  max-width: 56ch;
}

/* ------------------------------------------------------------------------
   Reveal-on-scroll
   ------------------------------------------------------------------------ */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}
@media print {
  .reveal { opacity: 1 !important; transform: none !important; }
}

/* ------------------------------------------------------------------------
   Buttons
   ------------------------------------------------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  border-radius: 100px;
  font-size: 0.95rem;
  font-weight: 700;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), border-color 0.25s var(--ease), opacity 0.25s var(--ease);
  white-space: nowrap;
}
.btn:active { transform: scale(0.97); }
.btn-primary {
  background: var(--purple);
  color: #fff;
}
.btn-primary:hover { background: var(--purple-strong); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--surface-border);
}
.btn-ghost:hover { border-color: var(--ink-soft); }
.btn-light {
  background: var(--ink);
  color: #000;
}
.btn-light:hover { opacity: 0.85; }
.btn-block { width: 100%; }

/* ------------------------------------------------------------------------
   Header
   ------------------------------------------------------------------------ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0.9rem var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  background: rgba(0, 0, 0, 0.55);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.site-header.is-scrolled {
  border-bottom-color: var(--line);
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 800;
  font-size: 1.02rem;
  letter-spacing: -0.01em;
}
.brand img { height: 22px; width: auto; }
.brand span small {
  display: block;
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--muted);
  text-transform: uppercase;
}

/* ------------------------------------------------------------------------
   Hero
   ------------------------------------------------------------------------ */
.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 6rem;
  padding-bottom: 4rem;
  position: relative;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 50% at 82% 8%, rgba(122, 77, 224, 0.20), transparent 60%),
    radial-gradient(45% 40% at 8% 92%, rgba(255, 210, 51, 0.08), transparent 60%);
  pointer-events: none;
}
.hero-inner { position: relative; max-width: 900px; }
.hero h1 {
  font-size: clamp(2.6rem, 7.4vw, 5.2rem);
  line-height: 1.02;
  margin-bottom: 1.5rem;
}
.hero h1 em {
  font-style: normal;
  color: var(--purple-strong);
}
.hero .lede {
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
  color: var(--ink-soft);
  max-width: 46ch;
  line-height: 1.55;
  margin: 0 0 2.25rem;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 0.9rem; }

.hero-proof {
  margin-top: clamp(3rem, 8vw, 5rem);
  display: flex;
  gap: clamp(1.5rem, 5vw, 3.5rem);
  flex-wrap: wrap;
}
.hero-proof div { min-width: 120px; }
.hero-proof strong {
  display: block;
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}
.hero-proof span {
  font-size: 0.8rem;
  color: var(--muted);
}

/* ------------------------------------------------------------------------
   Generic section spacing
   ------------------------------------------------------------------------ */
.section { padding: clamp(4rem, 9vw, 7.5rem) 0; }
.section-tight { padding-top: 0; }

/* ------------------------------------------------------------------------
   Selected Work — video grid
   ------------------------------------------------------------------------ */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: clamp(0.9rem, 2vw, 1.4rem);
}
.video-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--surface);
  aspect-ratio: 9 / 16;
  isolation: isolate;
  box-shadow: var(--shadow-card);
}
.video-card video,
.video-card .poster-btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video-card video { background: #000; }

.poster-btn {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  padding: 0;
  cursor: pointer;
  background: none;
  display: block;
}
.poster-btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.05) 42%, rgba(0, 0, 0, 0.25) 100%);
}
.play-ring {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 54px; height: 54px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s var(--ease), background 0.3s var(--ease);
}
.play-ring svg { width: 18px; height: 18px; margin-left: 2px; fill: #fff; }
.poster-btn:hover .play-ring { transform: translate(-50%, -50%) scale(1.08); background: rgba(255, 255, 255, 0.24); }

.video-meta {
  position: absolute;
  left: 0.9rem; right: 0.9rem; bottom: 0.85rem;
  z-index: 2;
  pointer-events: none;
}
.video-tag {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #000;
  background: var(--gold);
  padding: 0.2rem 0.55rem;
  border-radius: 100px;
  margin-bottom: 0.5rem;
}
.video-title {
  font-size: 0.98rem;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.5);
}

/* ------------------------------------------------------------------------
   Services cards
   ------------------------------------------------------------------------ */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 1rem;
}
.service-card {
  background: var(--surface);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-md);
  padding: 1.5rem 1.4rem;
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease), background 0.3s var(--ease);
}
.service-card:hover {
  border-color: var(--purple);
  background: var(--surface-2);
  transform: translateY(-3px);
}
.service-card .num {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--muted);
  font-variant-numeric: tabular-nums;
  margin-bottom: 0.85rem;
  display: block;
}
.service-card h3 { font-size: 1.08rem; margin-bottom: 0.4rem; }
.service-card p { margin: 0; color: var(--ink-soft); font-size: 0.9rem; line-height: 1.5; }

/* ------------------------------------------------------------------------
   Who this is for
   ------------------------------------------------------------------------ */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 1rem;
}
.audience-card {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 1.15rem 1.2rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--surface-border);
  background: var(--surface);
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.audience-card:hover { border-color: var(--gold-dim); background: var(--surface-2); }
.audience-icon {
  flex-shrink: 0;
  width: 42px; height: 42px;
  border-radius: 12px;
  background: var(--purple-dim);
  display: flex;
  align-items: center;
  justify-content: center;
}
.audience-icon svg { width: 20px; height: 20px; stroke: var(--purple-strong); fill: none; stroke-width: 1.7; }
.audience-card h3 { font-size: 0.96rem; margin-bottom: 0.15rem; }
.audience-card p { margin: 0; font-size: 0.78rem; color: var(--muted); }

.audience-note {
  margin-top: clamp(1.75rem, 4vw, 2.5rem);
  padding: 1.15rem 1.4rem;
  border-radius: var(--radius-md);
  border: 1px dashed var(--surface-border);
  color: var(--ink-soft);
  font-size: 0.98rem;
  line-height: 1.55;
  max-width: 62ch;
}
.audience-note b { color: var(--ink); }

/* ------------------------------------------------------------------------
   Packages
   ------------------------------------------------------------------------ */
.pkg-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.1rem;
}
.pkg-card {
  background: var(--surface);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.6rem;
  display: flex;
  flex-direction: column;
  position: relative;
}
.pkg-card.is-core {
  border-color: var(--purple);
  background: linear-gradient(180deg, var(--purple-dim), var(--surface) 55%);
}
.pkg-tag {
  align-self: flex-start;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #fff;
  background: var(--purple);
  padding: 0.25rem 0.6rem;
  border-radius: 100px;
  margin-bottom: 0.9rem;
}
.pkg-card h3 { font-size: 1.25rem; margin-bottom: 0.6rem; }
.pkg-card .price {
  font-size: 2rem;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  margin-bottom: 0.75rem;
}
.pkg-card .price span { font-size: 0.95rem; font-weight: 600; color: var(--muted); }
.pkg-card p.summary {
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.55;
  margin: 0 0 1.5rem;
  flex: 1;
}
.pkg-note {
  margin-top: 1.5rem;
  color: var(--muted);
  font-size: 0.85rem;
  max-width: 60ch;
}

/* ------------------------------------------------------------------------
   About
   ------------------------------------------------------------------------ */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 6vw, 4rem);
  align-items: start;
}
.about-copy p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--ink-soft);
  margin: 0 0 1.15rem;
}
.about-copy b { color: var(--ink); }
.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
}
.stat-card {
  background: var(--surface);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-md);
  padding: 1.3rem 1.2rem;
}
.stat-card strong {
  display: block;
  font-size: clamp(1.5rem, 3vw, 1.9rem);
  font-weight: 800;
  margin-bottom: 0.3rem;
}
.stat-card span { font-size: 0.8rem; color: var(--muted); line-height: 1.4; display: block; }
.brand-strip {
  grid-column: 1 / -1;
  border-top: 1px solid var(--surface-border);
  padding-top: 1rem;
  margin-top: 0.3rem;
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.6;
}
.brand-strip b { color: var(--ink-soft); }

/* ------------------------------------------------------------------------
   Instagram banner
   ------------------------------------------------------------------------ */
.ig-banner {
  border-radius: var(--radius-lg);
  padding: clamp(2.5rem, 7vw, 4.5rem) clamp(1.5rem, 6vw, 4rem);
  background:
    radial-gradient(80% 120% at 15% 0%, rgba(122, 77, 224, 0.35), transparent 60%),
    radial-gradient(70% 100% at 100% 100%, rgba(255, 210, 51, 0.18), transparent 55%),
    var(--surface);
  border: 1px solid var(--surface-border);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
.ig-banner h2 { font-size: clamp(1.6rem, 4vw, 2.3rem); max-width: 20ch; }
.ig-banner p { margin: 0; color: var(--ink-soft); font-size: 1rem; max-width: 44ch; }

/* ------------------------------------------------------------------------
   Contact
   ------------------------------------------------------------------------ */
.contact-inner { text-align: center; max-width: 720px; margin: 0 auto; }
.contact-inner h2 {
  font-size: clamp(2rem, 5.5vw, 3.4rem);
  line-height: 1.08;
  margin-bottom: 2.25rem;
}
.contact-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem;
  margin-bottom: 1rem;
}
.contact-buttons .btn { min-width: 168px; }

/* ------------------------------------------------------------------------
   Footer
   ------------------------------------------------------------------------ */
.site-footer {
  padding: 2.5rem var(--pad) 3rem;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
  font-size: 0.82rem;
}
.site-footer .brand { font-size: 0.9rem; }
.site-footer .brand img { height: 18px; }

/* ------------------------------------------------------------------------
   Video lightbox (mobile-friendly inline expand not needed; simple modal)
   ------------------------------------------------------------------------ */
.video-card.is-playing .poster-btn { display: none; }

/* ------------------------------------------------------------------------
   Responsive
   ------------------------------------------------------------------------ */
@media (max-width: 860px) {
  .about-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .hero-ctas .btn { flex: 1 1 auto; }
  .video-grid { grid-template-columns: repeat(2, 1fr); }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .contact-buttons .btn { flex: 1 1 100%; }
}
