/* ================================
   Wuro — Design System
   ================================ */

@import url('https://api.fontshare.com/v2/css?f[]=cabinet-grotesk@400,500,700,800&display=swap');
/* Cabinet Grotesk has no 600 weight file; h2–h4 (weight 600) render as the nearest available weight (700). */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

:root {
  /* Primary */
  --black: #0a0a0a;
  --white: #ffffff;

  /* Supporting palette */
  --violet: #8c52ff;
  --violet-dark: #7243d1;
  --pink: #f778cc;
  --teal-light: #73b0be;
  --teal-dark: #0a6280;
  --green-dark: #046261;
  --yellow-light: #ffe9a7;
  --yellow: #f7c853;
  --coral: #ef7c8e;

  /* Gradients */
  --gradient-1: linear-gradient(135deg, #ef8ed3, #276f93);
  --gradient-2: linear-gradient(135deg, #f98cd0, #edd352);
  --gradient-3: linear-gradient(135deg, #abe6fa, #0c173e);
  --gradient-4: linear-gradient(135deg, #59b477, #7f5ee9);

  /* Neutrals derived from black/white */
  --gray-050: #f7f7f8;
  --gray-100: #ececee;
  --gray-300: #c9c9cf;
  --gray-500: #8b8b93;
  --gray-700: #48484f;

  /* Type */
  --font-head: 'Cabinet Grotesk', 'Arial Narrow', sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Layout */
  --max-width: 1180px;
  --radius-s: 10px;
  --radius-m: 20px;
  --radius-l: 32px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--black);
  background: var(--white);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 600;
  line-height: 1.08;
  margin: 0 0 0.5em;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.4rem, 5.5vw, 4.6rem); font-weight: 700; }
h2 { font-size: clamp(1.9rem, 3.4vw, 2.8rem); }
h3 { font-size: 1.3rem; }

p { margin: 0 0 1em; color: var(--gray-700); }

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

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

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

section { padding: 96px 0; }

@media (max-width: 720px) {
  section { padding: 64px 0; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary { background: var(--violet); color: var(--white); }
.btn-primary:hover { background: var(--violet-dark); }

.btn-dark { background: var(--black); color: var(--white); }
.btn-dark:hover { background: #232326; }

.btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.4); }
.btn-outline:hover { border-color: var(--white); }

.btn-outline-dark { background: transparent; color: var(--black); border-color: var(--gray-300); }
.btn-outline-dark:hover { border-color: var(--black); }

/* ---------- Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--gray-100);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.3rem;
  letter-spacing: 0.01em;
  color: var(--black);
}

.logo-mark { width: 32px; height: auto; flex-shrink: 0; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--black);
  position: relative;
  padding: 4px 0;
}

.nav-links a.active { color: var(--violet); }

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--violet);
  transition: width 0.2s ease;
}
.nav-links a:hover::after { width: 100%; }

.nav-cta { display: none; }
@media (min-width: 900px) { .nav-cta { display: inline-flex; } }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  width: 24px; height: 2px; background: var(--black); display: block;
}

@media (max-width: 899px) {
  .nav-links {
    position: fixed;
    top: 66px; left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 12px 24px 24px;
    border-bottom: 1px solid var(--gray-100);
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }
  .nav-links.open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
  .nav-links li { width: 100%; padding: 12px 0; border-bottom: 1px solid var(--gray-100); }
  .nav-links li:last-child { border-bottom: none; }
  .nav-toggle { display: flex; }
}

/* ---------- Hero ---------- */
.hero {
  background: var(--black);
  color: var(--white);
  position: relative;
  overflow: hidden;
  padding: 140px 0 120px;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.55;
  z-index: 0;
}
.hero-glow.g1 { width: 480px; height: 480px; background: var(--violet); top: -180px; right: -120px; }
.hero-glow.g2 { width: 380px; height: 380px; background: var(--coral); bottom: -160px; left: -100px; opacity: 0.35; }

.hero .container { position: relative; z-index: 1; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--violet);
  background: rgba(140, 82, 255, 0.14);
  border: 1px solid rgba(140, 82, 255, 0.4);
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 28px;
}

.hero h1 { max-width: 15ch; color: var(--white); }
.hero .lede {
  max-width: 46ch;
  font-size: 1.15rem;
  color: rgba(255,255,255,0.72);
  margin: 24px 0 40px;
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* ---------- Page hero (subpages) ---------- */
.page-hero {
  background: var(--black);
  color: var(--white);
  padding: 90px 0 70px;
  position: relative;
  overflow: hidden;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); max-width: 20ch; }
.page-hero .lede { color: rgba(255,255,255,0.7); max-width: 60ch; font-size: 1.1rem; margin-top: 16px; }

/* ---------- Stat / USP tiles ---------- */
.tiles {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.tile {
  background: var(--gray-050);
  border-radius: var(--radius-m);
  padding: 32px;
  border: 1px solid var(--gray-100);
}

.tile .tile-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  font-size: 1.3rem;
}

.tile h3 { margin-bottom: 10px; }
.tile p { margin: 0; }

/* ---------- Section headers ---------- */
.section-head { max-width: 640px; margin-bottom: 56px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.kicker {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--violet);
  display: block;
  margin-bottom: 14px;
}

/* ---------- Service cards (home preview) ---------- */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.service-card {
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-m);
  padding: 36px 28px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.service-card:hover { border-color: var(--violet); transform: translateY(-4px); }

.service-card .num {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--gray-300);
  font-size: 1rem;
  margin-bottom: 18px;
  display: block;
}

.service-card a.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--violet);
  margin-top: 12px;
}

/* ---------- Audience split ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media (max-width: 760px) { .split { grid-template-columns: 1fr; } }

.split-card {
  border-radius: var(--radius-l);
  padding: 40px;
  color: var(--white);
}
.split-card.a { background: linear-gradient(135deg, #0c173e, #0a6280); }
.split-card.b { background: linear-gradient(135deg, #7243d1, #8c52ff); }
.split-card h3 { color: var(--white); font-size: 1.5rem; }
.split-card p { color: rgba(255,255,255,0.82); }
.split-card ul { padding-left: 20px; margin: 0; color: rgba(255,255,255,0.9); }
.split-card li { margin-bottom: 8px; }

/* ---------- Pricing tiers ---------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  align-items: stretch;
}

.price-card {
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-m);
  padding: 32px;
  display: flex;
  flex-direction: column;
  position: relative;
}

.price-card.featured {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
  transform: scale(1.03);
}
.price-card.featured h3, .price-card.featured .price { color: var(--white); }
.price-card.featured p, .price-card.featured li { color: rgba(255,255,255,0.75); }
.price-card.featured .badge { background: var(--violet); color: var(--white); }

.badge {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 16px;
  align-self: flex-start;
}
.badge.teal { background: var(--teal-light); color: var(--black); }
.badge.coral { background: var(--coral); color: var(--black); }
.badge.violet { background: var(--violet); color: var(--white); }
.badge.yellow { background: var(--yellow); color: var(--black); }

.price {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.8rem;
  margin: 4px 0 18px;
}
.price span { font-size: 0.95rem; font-weight: 500; color: var(--gray-500); }

.price-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  flex-grow: 1;
}
.price-card li {
  padding: 10px 0 10px 26px;
  position: relative;
  border-top: 1px solid var(--gray-100);
  font-size: 0.94rem;
}
.price-card.featured li { border-top-color: rgba(255,255,255,0.12); }
.price-card li:first-child { border-top: none; }
.price-card li::before {
  content: '';
  position: absolute;
  left: 0; top: 18px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--violet);
}

/* ---------- Project-based offer blocks ---------- */
.offer-block {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: center;
  border-top: 1px solid var(--gray-100);
  padding: 64px 0;
}
.offer-block:first-of-type { border-top: none; }
@media (max-width: 800px) { .offer-block { grid-template-columns: 1fr; gap: 28px; } }

.offer-visual {
  border-radius: var(--radius-l);
  min-height: 260px;
  display: flex;
  align-items: flex-end;
  padding: 28px;
}
.offer-visual .tag {
  background: rgba(0,0,0,0.55);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.8rem;
  padding: 8px 14px;
  border-radius: 999px;
}

.offer-price-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin: 18px 0 22px;
  font-family: var(--font-head);
}
.offer-price-row .amount { font-size: 1.6rem; font-weight: 700; }
.offer-price-row .unit { color: var(--gray-500); font-size: 0.95rem; }

.check-list { list-style: none; padding: 0; margin: 0 0 24px; }
.check-list li { padding: 8px 0 8px 30px; position: relative; }
.check-list li::before {
  content: '✓';
  position: absolute; left: 0; top: 6px;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--violet);
  color: var(--white);
  font-size: 0.7rem;
  display: flex; align-items: center; justify-content: center;
}

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--black);
  color: var(--white);
  border-radius: var(--radius-l);
  padding: 64px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band h2 { color: var(--white); max-width: 18ch; margin: 0 auto 16px; }
.cta-band p { color: rgba(255,255,255,0.7); max-width: 44ch; margin: 0 auto 32px; }
.cta-band .hero-glow.g1 { top: -140px; right: -100px; }

/* ---------- Founder / about ---------- */
.about-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 800px) { .about-hero { grid-template-columns: 1fr; } }

.photo-frame {
  border-radius: var(--radius-l);
  aspect-ratio: 4/5;
  background: var(--gradient-4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.85);
  font-family: var(--font-head);
  font-weight: 600;
  text-align: center;
  padding: 24px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.value-item { padding: 24px 0; border-top: 1px solid var(--gray-100); }
.value-item h3 { font-size: 1.05rem; margin-bottom: 6px; }
.value-item p { margin: 0; font-size: 0.95rem; }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
@media (max-width: 800px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-card {
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-m);
  padding: 28px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 18px;
}
.contact-card .icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: rgba(140, 82, 255, 0.12);
  color: var(--violet);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 1.2rem;
}
.contact-card a { font-weight: 600; }
.contact-card a:hover { color: var(--violet); }

.steps { list-style: none; padding: 0; margin: 0; counter-reset: step; }
.steps li {
  counter-increment: step;
  padding: 18px 0 18px 44px;
  position: relative;
  border-top: 1px solid var(--gray-100);
}
.steps li:first-child { border-top: none; }
.steps li::before {
  content: counter(step);
  position: absolute; left: 0; top: 16px;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--black);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.8rem;
  display: flex; align-items: center; justify-content: center;
}

.note-box {
  background: var(--yellow-light);
  border-radius: var(--radius-s);
  padding: 18px 20px;
  font-size: 0.9rem;
  color: var(--black);
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--black);
  color: rgba(255,255,255,0.6);
  padding: 64px 0 32px;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 32px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer-top .logo { color: var(--white); }
.footer-links {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
}
.footer-col h4 {
  font-family: var(--font-head);
  color: var(--white);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 10px; }
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 28px;
  font-size: 0.85rem;
}

/* ---------- Scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(.16,.8,.3,1), transform 0.7s cubic-bezier(.16,.8,.3,1);
}
.reveal.in-view { opacity: 1; transform: none; }

.stagger > *:nth-child(1) { transition-delay: 0ms; }
.stagger > *:nth-child(2) { transition-delay: 90ms; }
.stagger > *:nth-child(3) { transition-delay: 180ms; }
.stagger > *:nth-child(4) { transition-delay: 270ms; }
.stagger > *:nth-child(5) { transition-delay: 360ms; }
.stagger > *:nth-child(6) { transition-delay: 450ms; }

@media (prefers-reduced-motion: reduce) {
  .reveal { transition: none; opacity: 1; transform: none; }
  .hero-glow { animation: none !important; }
}

/* ---------- Header on scroll ---------- */
.site-header { transition: box-shadow 0.25s ease, border-color 0.25s ease; }
.site-header.scrolled {
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  border-bottom-color: transparent;
}

/* ---------- Hero glow motion ---------- */
@keyframes drift1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-34px, 26px) scale(1.08); }
}
@keyframes drift2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(24px, -22px) scale(1.06); }
}
.hero-glow.g1 { animation: drift1 15s ease-in-out infinite; }
.hero-glow.g2 { animation: drift2 19s ease-in-out infinite; }

/* ---------- Tile / card hover lift ---------- */
.tile { transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease; }
.tile:hover { transform: translateY(-6px); border-color: var(--violet); box-shadow: 0 16px 32px rgba(0,0,0,0.06); }
.tile .tile-icon { transition: transform 0.25s ease; }
.tile:hover .tile-icon { transform: scale(1.12) rotate(-4deg); }

.price-card { transition: transform 0.25s ease, box-shadow 0.25s ease; }
.price-card:not(.featured):hover { transform: translateY(-6px); box-shadow: 0 16px 32px rgba(0,0,0,0.06); }
.price-card.featured { transition: transform 0.25s ease; }

.split-card { transition: transform 0.25s ease, box-shadow 0.25s ease; }
.split-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(0,0,0,0.18); }

/* ---------- Stat counters ---------- */
.stats-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 32px;
}
.stat { text-align: center; }
.stat-number {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(2.1rem, 4.4vw, 3.2rem);
  color: var(--violet);
  display: block;
  line-height: 1;
}
.stat-label {
  margin-top: 10px;
  font-size: 0.92rem;
  color: var(--gray-500);
}

/* ---------- FAQ accordion ---------- */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border-top: 1px solid var(--gray-100); }
.faq-item:last-child { border-bottom: 1px solid var(--gray-100); }
.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 24px 4px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--black);
  cursor: pointer;
}
.faq-question .plus {
  font-size: 1.5rem;
  color: var(--violet);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.faq-item.open .faq-question .plus { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-answer p { padding: 0 4px 24px; margin: 0; color: var(--gray-700); }

/* ---------- Utility ---------- */
.mt-0 { margin-top: 0; }
.text-center { text-align: center; }
