/* ==========================================================================
   AgencyOne Design System
   Inspired by the Vamtam "Numerique" digital-marketing aesthetic.
   ========================================================================== */

/* ---------- Tokens ---------- */
:root {
  --ink:        #17131F;
  --ink-soft:   #3B3550;
  --purple:     #6D28D9;
  --purple-600: #5B21B6;
  --violet:     #8B5CF6;
  --lime:       #C6F24E;
  --lime-600:   #A9DE2B;
  --cream:      #F4F2FB;
  --white:      #FFFFFF;
  --grey:       #6A6680;
  --line:       rgba(23, 19, 31, 0.10);
  --line-dark:  rgba(255, 255, 255, 0.12);

  --font-head: "Space Grotesk", "Segoe UI", system-ui, sans-serif;
  --font-body: "Inter", "Segoe UI", system-ui, sans-serif;

  --radius:    22px;
  --radius-sm: 14px;
  --radius-pill: 999px;

  --shadow:    0 24px 60px -30px rgba(23, 19, 31, 0.42);
  --shadow-sm: 0 12px 30px -18px rgba(23, 19, 31, 0.32);

  --container: 1200px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; }
:focus-visible { outline: 3px solid var(--violet); outline-offset: 3px; border-radius: 6px; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 600; line-height: 1.05; letter-spacing: -0.02em; }
.h-display { font-size: clamp(2.6rem, 6.5vw, 5.2rem); font-weight: 700; }
h2.section-title { font-size: clamp(2rem, 4.2vw, 3.3rem); }
.eyebrow {
  font-family: var(--font-head);
  font-weight: 600; font-size: 0.82rem;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--purple);
  display: inline-flex; align-items: center; gap: 0.55rem;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--lime-600); }
.lead { font-size: clamp(1.05rem, 1.6vw, 1.25rem); color: var(--grey); }
.text-lime { color: var(--lime); }
.text-purple { color: var(--purple); }

/* ---------- Layout ---------- */
.container { width: min(100% - 2.4rem, var(--container)); margin-inline: auto; }
.section { padding: clamp(4.5rem, 9vw, 8rem) 0; }
.section-head { max-width: 720px; margin-bottom: 3.2rem; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head .eyebrow.center { justify-content: center; }
.grid { display: grid; gap: 1.5rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-family: var(--font-head); font-weight: 600; font-size: 1rem;
  padding: 0.95rem 1.7rem; border-radius: var(--radius-pill);
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), box-shadow 0.25s var(--ease);
  will-change: transform; position: relative; overflow: hidden;
}
.btn::after {
  content: ""; position: absolute; top: 0; left: -130%; width: 60%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.4), transparent);
  transform: skewX(-20deg); pointer-events: none; transition: left 0.6s var(--ease);
}
.btn:hover::after { left: 130%; }
.btn svg { width: 18px; height: 18px; }
.btn:hover { transform: translateY(-3px); }
.btn-primary { background: var(--purple); color: var(--white); box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--purple-600); }
.btn-lime { background: var(--lime); color: var(--ink); }
.btn-lime:hover { background: var(--lime-600); }
.btn-ghost { border: 1.5px solid var(--line); color: var(--ink); }
.btn-ghost:hover { border-color: var(--ink); background: var(--ink); color: var(--white); }
.btn-ghost.on-dark { border-color: var(--line-dark); color: var(--white); }
.btn-ghost.on-dark:hover { background: var(--white); color: var(--ink); border-color: var(--white); }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  transition: background 0.3s var(--ease), box-shadow 0.3s var(--ease), padding 0.3s var(--ease);
  padding: 0.6rem 0;
}
.site-header.scrolled {
  background: rgba(244, 242, 251, 0.88);
  backdrop-filter: saturate(1.4) blur(14px);
  box-shadow: 0 1px 0 var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }
.brand { display: inline-flex; align-items: center; gap: 0.6rem; font-family: var(--font-head); font-weight: 700; font-size: 1.35rem; letter-spacing: -0.03em; }
.brand .logo-mark {
  width: 34px; height: 34px; border-radius: 10px;
  background: var(--ink); color: var(--lime);
  display: grid; place-items: center; font-size: 1.05rem; font-weight: 700;
  transition: transform 0.35s var(--ease);
}
.brand:hover .logo-mark { transform: rotate(-8deg) scale(1.08); }
.brand .logo-mark span { transform: translateY(-1px); }
.brand em { color: var(--purple); font-style: normal; }
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a { font-size: 0.98rem; font-weight: 500; color: var(--ink-soft); position: relative; }
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -6px; height: 2px; width: 0;
  background: var(--purple); transition: width 0.3s var(--ease);
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta { display: flex; align-items: center; gap: 0.8rem; }
.nav-toggle { display: none; width: 46px; height: 46px; border-radius: 12px; border: 1.5px solid var(--line); align-items: center; justify-content: center; }
.nav-toggle span { width: 20px; height: 2px; background: var(--ink); position: relative; transition: 0.3s var(--ease); }
.nav-toggle span::before, .nav-toggle span::after { content: ""; position: absolute; left: 0; width: 20px; height: 2px; background: var(--ink); transition: 0.3s var(--ease); }
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }
body.menu-open .nav-toggle span { background: transparent; }
body.menu-open .nav-toggle span::before { top: 0; transform: rotate(45deg); }
body.menu-open .nav-toggle span::after { top: 0; transform: rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { position: relative; padding: clamp(3rem, 7vw, 6rem) 0 clamp(4rem, 8vw, 7rem); overflow: hidden; }
.hero::before, .hero::after { content: ""; position: absolute; border-radius: 50%; filter: blur(64px); z-index: 0; pointer-events: none; }
.hero::before { width: 440px; height: 440px; background: radial-gradient(circle, rgba(139,92,246,0.5), transparent 70%); top: -140px; right: -80px; animation: floatSlow 13s ease-in-out infinite; }
.hero::after { width: 380px; height: 380px; background: radial-gradient(circle, rgba(198,242,78,0.4), transparent 70%); bottom: -160px; left: -70px; animation: floatSlow 17s ease-in-out infinite reverse; }
.hero .container { position: relative; z-index: 1; }
.hero-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 3rem; align-items: center; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: var(--white); border: 1px solid var(--line);
  padding: 0.5rem 0.95rem; border-radius: var(--radius-pill);
  font-size: 0.85rem; font-weight: 500; box-shadow: var(--shadow-sm);
}
.hero-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--lime-600); animation: pulse 2.2s ease-in-out infinite; }
@keyframes pulse { 0%, 100% { box-shadow: 0 0 0 0 rgba(169,222,43,0.55); } 50% { box-shadow: 0 0 0 7px rgba(169,222,43,0); } }
@keyframes floatSlow { 0%, 100% { transform: translate(0, 0); } 50% { transform: translate(18px, -22px); } }
@keyframes gradientShift { 0%, 100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }
@keyframes spinSlow { to { transform: rotate(360deg); } }
.hero h1 { margin: 1.5rem 0 1.4rem; }
.hero h1 .hl { position: relative; color: var(--purple); white-space: nowrap; }
.hero h1 .hl::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0.08em; height: 0.28em; background: var(--lime); z-index: -1; border-radius: 4px; }
.hero p.lead { max-width: 48ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.2rem; }
.hero-meta { display: flex; gap: 2.2rem; margin-top: 2.6rem; flex-wrap: wrap; }
.hero-meta .num { font-family: var(--font-head); font-weight: 700; font-size: 1.9rem; color: var(--ink); }
.hero-meta .lbl { font-size: 0.85rem; color: var(--grey); }

/* Hero visual */
.hero-visual { position: relative; }
.hero-card {
  background: var(--ink); color: var(--white); border-radius: var(--radius);
  padding: 2rem; box-shadow: var(--shadow); position: relative; overflow: hidden;
}
.hero-card::before { content: ""; position: absolute; inset: -40% -40% auto auto; width: 70%; aspect-ratio: 1; background: radial-gradient(circle, rgba(139,92,255,0.55), transparent 65%); }
.hero-card h3 { font-size: 1.15rem; margin-bottom: 1.2rem; position: relative; }
.hero-bars { display: flex; align-items: flex-end; gap: 0.7rem; height: 150px; position: relative; }
.hero-bars .bar { flex: 1; border-radius: 8px 8px 4px 4px; background: linear-gradient(180deg, var(--violet), var(--purple)); animation: growBar 1.1s var(--ease) both; }
.hero-bars .bar:nth-child(5) { background: linear-gradient(180deg, var(--lime), var(--lime-600)); }
@keyframes growBar { from { transform: scaleY(0); transform-origin: bottom; } }
.hero-float {
  position: absolute; background: var(--white); color: var(--ink);
  border-radius: var(--radius-sm); padding: 0.85rem 1.1rem; box-shadow: var(--shadow);
  display: flex; align-items: center; gap: 0.7rem; font-weight: 600; font-size: 0.9rem;
}
.hero-float .ic { width: 34px; height: 34px; border-radius: 10px; display: grid; place-items: center; }
.hero-float.one { top: -18px; left: -22px; animation: floaty 5s ease-in-out infinite; }
.hero-float.two { bottom: -20px; right: -14px; animation: floaty 6s ease-in-out infinite reverse; }
@keyframes floaty { 50% { transform: translateY(-12px); } }

/* Marquee */
.marquee { border-block: 1px solid var(--line); background: var(--white); overflow: hidden; padding: 1.4rem 0; }
.marquee-track { display: flex; gap: 3.5rem; width: max-content; animation: slide 32s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-item { font-family: var(--font-head); font-weight: 600; font-size: 1.25rem; color: var(--ink-soft); display: inline-flex; align-items: center; gap: 3.5rem; opacity: 0.7; }
.marquee-item::after { content: "✦"; color: var(--purple); }
@keyframes slide { to { transform: translateX(-50%); } }

/* ---------- Cards / Services ---------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.service-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 2rem; transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
  position: relative; overflow: hidden;
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); border-color: transparent; }
.service-card .ic {
  width: 56px; height: 56px; border-radius: 16px; display: grid; place-items: center;
  background: color-mix(in srgb, var(--purple) 12%, white); color: var(--purple); margin-bottom: 1.3rem;
  transition: 0.35s var(--ease);
}
.service-card:hover .ic { background: var(--purple); color: var(--white); transform: rotate(-6deg) scale(1.06); }
.service-card svg.ic-svg { width: 26px; height: 26px; }
.service-card h3 { font-size: 1.28rem; margin-bottom: 0.6rem; }
.service-card p { color: var(--grey); font-size: 0.97rem; }
.service-card .tag { margin-top: 1.2rem; font-size: 0.8rem; font-weight: 600; color: var(--purple); display: inline-flex; align-items: center; gap: 0.4rem; }

/* Feature highlight card */
.service-card.feature { background: var(--ink); color: var(--white); border-color: transparent; }
.service-card.feature p { color: rgba(255,255,255,0.72); }
.service-card.feature .ic { background: rgba(203,247,74,0.15); color: var(--lime); }
.service-card.feature:hover .ic { background: var(--lime); color: var(--ink); }
.service-card.feature .tag { color: var(--lime); }

/* ---------- Why / Split ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.split.top { align-items: start; }
.check-list { display: grid; gap: 1.1rem; margin-top: 1.8rem; }
.check-list li { display: flex; gap: 0.9rem; align-items: flex-start; }
.check-list .tick { flex: none; width: 26px; height: 26px; border-radius: 8px; background: var(--lime); color: var(--ink); display: grid; place-items: center; font-weight: 700; margin-top: 2px; }
.check-list strong { display: block; font-family: var(--font-head); }
.check-list span { color: var(--grey); font-size: 0.95rem; }
.media-stack { position: relative; }
.media-stack .panel { border-radius: var(--radius); padding: 2rem; }
.media-stack .panel.p1 { background: var(--purple); color: #fff; }
.media-stack .panel.p2 { background: var(--white); border: 1px solid var(--line); margin: 1.2rem 0 0 2.5rem; box-shadow: var(--shadow-sm); }
.media-stack .panel h3 { font-size: 2.6rem; }
.media-stack .panel .small { font-size: 0.9rem; opacity: 0.85; }

/* ---------- Founders ---------- */
.founders-stack { display: grid; gap: 1.3rem; }
.founder-card {
  display: flex; gap: 1.3rem; align-items: flex-start;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.5rem; box-shadow: var(--shadow-sm);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.founder-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.founder-card .photo {
  flex: none; position: relative; width: 96px; height: 96px; border-radius: 20px; overflow: hidden;
  background: linear-gradient(135deg, var(--violet), var(--purple)); color: #fff;
  font-family: var(--font-head); font-weight: 700; font-size: 2.2rem;
}
.founder-card .photo::before { content: attr(data-initial); position: absolute; inset: 0; display: grid; place-items: center; }
.founder-card .photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.founder-card .role { font-family: var(--font-head); font-weight: 600; font-size: 0.82rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--purple); }
.founder-card h3 { font-size: 1.28rem; margin: 0.15rem 0 0.5rem; }
.founder-card .cred { color: var(--ink-soft); font-size: 0.97rem; }
.founder-highlight { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-top: 1rem; }
.hl-stat { background: color-mix(in srgb, var(--purple) 9%, white); border: 1px solid var(--line); border-radius: 13px; padding: 0.55rem 0.9rem; }
.hl-stat .n { font-family: var(--font-head); font-weight: 700; font-size: 1.35rem; color: var(--purple); line-height: 1.1; }
.hl-stat .t { font-size: 0.75rem; color: var(--grey); }
.founder-card .flink { display: inline-flex; align-items: center; gap: 0.35rem; margin-top: 0.9rem; font-family: var(--font-head); font-weight: 600; font-size: 0.85rem; color: var(--purple); }
.founder-card .flink:hover { color: var(--purple-600); }

/* ---------- Big phone band ---------- */
.phone-band {
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem 2rem; flex-wrap: wrap;
  background: var(--ink); color: #fff; border-radius: var(--radius);
  padding: clamp(1.8rem, 4vw, 2.8rem) clamp(1.6rem, 4vw, 3.2rem);
  position: relative; overflow: hidden;
}
.phone-band::after { content: ""; position: absolute; inset: auto -8% -60% auto; width: 40%; aspect-ratio: 1; background: radial-gradient(circle, rgba(108,43,217,0.5), transparent 65%); }
.phone-band .pb-left { position: relative; }
.phone-band .lbl { font-family: var(--font-head); font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; font-size: 0.78rem; color: var(--lime); margin-bottom: 0.4rem; }
.phone-band .num { display: inline-flex; align-items: center; gap: 0.9rem; font-family: var(--font-head); font-weight: 700; font-size: clamp(2.3rem, 7vw, 4.4rem); line-height: 1; letter-spacing: -0.03em; color: #fff; transition: color 0.25s var(--ease); }
.phone-band .num:hover { color: var(--lime); }
.phone-band .num svg { width: clamp(28px, 5vw, 44px); height: clamp(28px, 5vw, 44px); color: var(--lime); }
.phone-band .pb-sub { position: relative; color: rgba(255,255,255,0.72); font-size: 0.95rem; max-width: 26ch; }

/* ---------- Stats band ---------- */
.stats-band { background: var(--ink); color: var(--white); border-radius: var(--radius); padding: clamp(2.5rem, 5vw, 4rem); position: relative; overflow: hidden; }
.stats-band::after { content: ""; position: absolute; inset: auto auto -30% -10%; width: 40%; aspect-ratio: 1; background: radial-gradient(circle, rgba(108,43,217,0.55), transparent 65%); }
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 2rem; position: relative; }
.stat .num { font-family: var(--font-head); font-weight: 700; font-size: clamp(2.6rem, 5vw, 3.6rem); color: var(--lime); line-height: 1; }
.stat .lbl { margin-top: 0.6rem; color: rgba(255,255,255,0.72); font-size: 0.95rem; }

/* ---------- Process ---------- */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 1.4rem; counter-reset: step; }
.step { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 2rem; position: relative; transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease); }
.step:hover { transform: translateY(-7px); box-shadow: var(--shadow); }
.step .no { font-family: var(--font-head); font-weight: 700; font-size: 1rem; width: 42px; height: 42px; border-radius: 12px; background: var(--cream); color: var(--purple); display: grid; place-items: center; margin-bottom: 1.2rem; transition: 0.35s var(--ease); }
.step:hover .no { background: var(--purple); color: #fff; transform: rotate(-8deg); }
.step h3 { font-size: 1.2rem; margin-bottom: 0.5rem; }
.step p { color: var(--grey); font-size: 0.95rem; }

/* ---------- Clients logo grid ---------- */
.logo-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; }
.logo-chip {
  flex: 1 1 165px; max-width: 220px;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 1.4rem 1rem; text-align: center; font-family: var(--font-head); font-weight: 600;
  color: var(--ink-soft); font-size: 0.98rem; transition: 0.3s var(--ease);
  display: flex; align-items: center; justify-content: center; min-height: 88px;
}
.logo-chip:hover { color: var(--purple); border-color: var(--purple); transform: translateY(-4px) scale(1.03); box-shadow: var(--shadow-sm); }

/* ---------- Work / Portfolio ---------- */
.filter-bar { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-bottom: 2.5rem; }
.filter-btn { padding: 0.6rem 1.3rem; border-radius: var(--radius-pill); border: 1.5px solid var(--line); font-family: var(--font-head); font-weight: 600; font-size: 0.92rem; color: var(--ink-soft); transition: 0.25s var(--ease); }
.filter-btn:hover { border-color: var(--ink); }
.filter-btn.active { background: var(--ink); color: var(--white); border-color: var(--ink); }
.work-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.5rem; }
.work-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.8rem; display: flex; flex-direction: column; gap: 1rem;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.work-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.work-card .top { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.work-card .avatar { width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; font-family: var(--font-head); font-weight: 700; font-size: 1.3rem; color: var(--white); background: linear-gradient(135deg, var(--violet), var(--purple)); }
.work-card:nth-of-type(3n+2) .avatar { background: linear-gradient(135deg, var(--purple), var(--purple-600)); }
.work-card:nth-of-type(3n+3) .avatar { background: var(--ink); color: var(--lime); }
.work-card h3 { font-size: 1.25rem; }
.badge { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; padding: 0.3rem 0.7rem; border-radius: var(--radius-pill); }
.badge.social { background: color-mix(in srgb, var(--purple) 14%, white); color: var(--purple); }
.badge.pos { background: var(--ink); color: var(--lime); }
.badge.consult { background: color-mix(in srgb, var(--violet) 18%, white); color: var(--purple-600); }
.work-card .desc { color: var(--grey); font-size: 0.94rem; flex: 1; }
.chip-row { display: flex; flex-wrap: wrap; gap: 0.45rem; }
.chip { font-size: 0.78rem; font-weight: 600; padding: 0.28rem 0.65rem; border-radius: var(--radius-pill); background: var(--cream); color: var(--ink-soft); border: 1px solid var(--line); }
.links-row { display: flex; flex-wrap: wrap; gap: 0.5rem; padding-top: 0.3rem; border-top: 1px solid var(--line); margin-top: 0.2rem; }
.link-pill { display: inline-flex; align-items: center; gap: 0.35rem; font-size: 0.82rem; font-weight: 600; color: var(--purple); padding: 0.4rem 0.7rem; border-radius: var(--radius-pill); background: color-mix(in srgb, var(--purple) 8%, white); transition: 0.25s var(--ease); }
.link-pill:hover { background: var(--purple); color: #fff; }
.link-pill svg { width: 14px; height: 14px; }
.work-card.hide { display: none; }

/* ---------- Testimonials ---------- */
.quote-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.quote-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 2rem; display: flex; flex-direction: column; gap: 1.2rem; transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease); }
.quote-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.quote-card:hover .stars { animation: pulse 1.2s ease; }
.quote-card .stars { color: var(--lime-600); letter-spacing: 2px; }
.quote-card blockquote { font-size: 1.08rem; color: var(--ink-soft); font-weight: 500; }
.quote-card .who { display: flex; align-items: center; gap: 0.8rem; margin-top: auto; }
.quote-card .who .av { width: 44px; height: 44px; border-radius: 50%; background: var(--purple); color: #fff; display: grid; place-items: center; font-family: var(--font-head); font-weight: 700; }
.quote-card .who strong { display: block; font-family: var(--font-head); }
.quote-card .who span { font-size: 0.85rem; color: var(--grey); }

/* ---------- CTA ---------- */
.cta-band { background: linear-gradient(135deg, var(--purple), #4A1B9E, var(--violet)); background-size: 220% 220%; animation: gradientShift 10s ease infinite; color: #fff; border-radius: var(--radius); padding: clamp(2.8rem, 6vw, 5rem); text-align: center; position: relative; overflow: hidden; }
.cta-band::before { content: ""; position: absolute; inset: -30% -10% auto auto; width: 45%; aspect-ratio: 1; background: radial-gradient(circle, rgba(203,247,74,0.4), transparent 65%); }
.cta-band h2 { font-size: clamp(2rem, 4.5vw, 3.4rem); margin-bottom: 1rem; position: relative; }
.cta-band p { color: rgba(255,255,255,0.85); max-width: 52ch; margin: 0 auto 2rem; position: relative; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; position: relative; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.contact-info .info-item { display: flex; gap: 1rem; align-items: flex-start; padding: 1.2rem 0; border-bottom: 1px solid var(--line); }
.contact-info .info-item .ic { flex: none; width: 46px; height: 46px; border-radius: 13px; background: var(--ink); color: var(--lime); display: grid; place-items: center; }
.contact-info .info-item .ic svg { width: 20px; height: 20px; }
.contact-info .info-item strong { font-family: var(--font-head); display: block; margin-bottom: 0.15rem; }
.contact-info .info-item a, .contact-info .info-item span { color: var(--grey); }
.contact-info .info-item a:hover { color: var(--purple); }
.form { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(1.6rem, 3vw, 2.4rem); box-shadow: var(--shadow-sm); }
.field { margin-bottom: 1.1rem; }
.field label { display: block; font-family: var(--font-head); font-weight: 600; font-size: 0.9rem; margin-bottom: 0.45rem; }
.field input, .field textarea, .field select {
  width: 100%; padding: 0.85rem 1rem; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  font-family: inherit; font-size: 1rem; background: var(--cream); color: var(--ink); transition: 0.25s var(--ease);
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--purple); background: #fff; }
.field textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.form .btn { width: 100%; justify-content: center; margin-top: 0.4rem; }
.form-note { font-size: 0.82rem; color: var(--grey); margin-top: 0.9rem; text-align: center; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: rgba(255,255,255,0.72); padding: clamp(3.5rem, 6vw, 5rem) 0 2rem; }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 2.5rem; }
.site-footer .brand { color: #fff; }
.site-footer .brand .logo-mark { background: var(--lime); color: var(--ink); }
.footer-about p { margin: 1.2rem 0 1.4rem; max-width: 34ch; }
.socials { display: flex; gap: 0.6rem; }
.socials a { width: 40px; height: 40px; border-radius: 11px; border: 1px solid var(--line-dark); display: grid; place-items: center; color: #fff; transition: 0.25s var(--ease); }
.socials a:hover { background: var(--purple); border-color: var(--purple); transform: translateY(-3px); }
.socials svg { width: 18px; height: 18px; }
.footer-col h4 { color: #fff; font-size: 1rem; margin-bottom: 1.2rem; }
.footer-col ul { display: grid; gap: 0.7rem; }
.footer-col a:hover { color: var(--lime); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; margin-top: 3rem; padding-top: 1.6rem; border-top: 1px solid var(--line-dark); font-size: 0.88rem; }
.footer-bottom a { color: #fff; }
.footer-bottom a:hover { color: var(--lime); }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; }
.reveal.d4 { transition-delay: 0.32s; }

/* Directional / scale reveal variants */
.reveal-l, .reveal-r, .reveal-scale {
  opacity: 0; transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}
.reveal-l  { transform: translateX(-42px); }
.reveal-r  { transform: translateX(42px); }
.reveal-scale { transform: scale(0.9); }
.reveal-l.in, .reveal-r.in, .reveal-scale.in { opacity: 1; transform: none; }
.reveal-l.d1, .reveal-r.d1, .reveal-scale.d1 { transition-delay: 0.1s; }
.reveal-l.d2, .reveal-r.d2, .reveal-scale.d2 { transition-delay: 0.2s; }

/* Staggered children (auto-animate grid items as a group enters) */
.stagger.in > * { opacity: 1; transform: none; }
.stagger > * { opacity: 0; transform: translateY(26px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
.stagger.in > *:nth-child(1) { transition-delay: 0.04s; }
.stagger.in > *:nth-child(2) { transition-delay: 0.10s; }
.stagger.in > *:nth-child(3) { transition-delay: 0.16s; }
.stagger.in > *:nth-child(4) { transition-delay: 0.22s; }
.stagger.in > *:nth-child(5) { transition-delay: 0.28s; }
.stagger.in > *:nth-child(6) { transition-delay: 0.34s; }
.stagger.in > *:nth-child(n+7) { transition-delay: 0.4s; }

/* Scroll progress bar */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0;
  background: linear-gradient(90deg, var(--purple), var(--violet), var(--lime));
  z-index: 200; transition: width 0.1s linear;
}

/* Back to top */
.to-top {
  position: fixed; right: 22px; bottom: 22px; width: 50px; height: 50px; border-radius: 50%;
  background: var(--purple); color: #fff; display: grid; place-items: center;
  box-shadow: var(--shadow); opacity: 0; transform: translateY(20px) scale(0.8);
  pointer-events: none; transition: 0.35s var(--ease); z-index: 150;
}
.to-top.show { opacity: 1; transform: none; pointer-events: auto; }
.to-top:hover { background: var(--purple-600); transform: translateY(-4px); }
.to-top svg { width: 22px; height: 22px; }

/* TikTok icon sizing shares .socials svg */

/* ---------- Page hero (inner pages) ---------- */
.page-hero { padding: clamp(3rem, 6vw, 5rem) 0 clamp(2rem, 4vw, 3rem); text-align: center; }
.page-hero .breadcrumb { font-size: 0.9rem; color: var(--grey); margin-top: 1rem; }
.page-hero .breadcrumb a:hover { color: var(--purple); }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { order: -1; max-width: 460px; }
  .split, .contact-grid { grid-template-columns: 1fr; }
  .split.top { align-items: stretch; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-about { grid-column: 1 / -1; }
}
@media (max-width: 760px) {
  body { font-size: 16px; }
  .nav-links {
    position: fixed; inset: 0 0 0 auto; width: min(80vw, 320px);
    background: var(--white); flex-direction: column; align-items: flex-start; justify-content: center;
    padding: 2.5rem; gap: 1.6rem; transform: translateX(100%); transition: transform 0.4s var(--ease);
    box-shadow: var(--shadow); z-index: 90;
  }
  body.menu-open .nav-links { transform: none; }
  .nav-links a { font-size: 1.15rem; }
  .nav-toggle { display: flex; z-index: 95; }
  .nav-cta .btn:not(.nav-toggle) { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .hero-meta { gap: 1.5rem; }
  .media-stack .panel.p2 { margin-left: 0; }
  .cards { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto; }
  .reveal, .reveal-l, .reveal-r, .reveal-scale, .stagger > * { opacity: 1 !important; transform: none !important; }
}
