/* ============================================================
   INBOXX - Award-grade redesign (light / bold edition)
   ============================================================ */

:root {
  --bg: #f2f1ec;            /* warm off-white */
  --bg-soft: #eae8e1;
  --ink: #0c0c0e;           /* near-black */
  --muted: #6a6a70;
  --violet: #6b4eff;        /* primary accent */
  --violet-deep: #5733ff;
  --yellow: #e9f24a;        /* CTA / highlight */
  --card: #0d0d10;          /* dark results card */
  --line: rgba(12,12,14,0.10);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --pad: clamp(1.25rem, 4vw, 5rem);
  --font-display: "Hanken Grotesk", sans-serif;
  --font-body: "Inter", sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-font-smoothing: antialiased; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.5;
  overflow-x: hidden;
  cursor: none;
}

html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
::selection { background: var(--violet); color: #fff; }

/* ---------- WebGL canvas ---------- */
#webgl {
  position: fixed; inset: 0; width: 100%; height: 100%;
  z-index: 0; pointer-events: none;
}
main, .nav, .footer { position: relative; z-index: 2; }

/* ---------- Grain ---------- */
.grain {
  position: fixed; inset: -50%; z-index: 3; pointer-events: none;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain 6s steps(6) infinite;
}
@keyframes grain {
  0%,100%{transform:translate(0,0)} 20%{transform:translate(-5%,5%)}
  40%{transform:translate(5%,-5%)} 60%{transform:translate(-3%,-3%)} 80%{transform:translate(3%,3%)}
}

/* ---------- Cursor ---------- */
.cursor {
  position: fixed; top: 0; left: 0; width: 10px; height: 10px;
  border-radius: 50%; background: var(--violet);
  pointer-events: none; z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width .35s var(--ease), height .35s var(--ease), background .35s var(--ease), border-color .35s var(--ease);
}
.cursor.-hover {
  width: 60px; height: 60px;
  background: rgba(107,78,255,0.12);
  border: 1px solid var(--violet);
}
@media (hover: none) { .cursor { display:none; } body { cursor:auto; } }

/* ---------- Loader ---------- */
.loader {
  position: fixed; inset: 0; z-index: 10000;
  background: var(--ink); display: grid; place-items: center;
}
.loader__inner { width: min(80vw, 520px); text-align: center; }
.loader__word {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(3rem, 12vw, 9rem); letter-spacing: -0.04em; line-height: 1;
  display: flex; justify-content: center; overflow: hidden; color: #fff;
}
.loader__word span { display: inline-block; transform: translateY(110%); }
.loader__count { font-family: var(--font-display); font-size: 1rem; color: var(--yellow); margin-bottom: 1rem; letter-spacing: .1em; }
.loader__count i { font-style: normal; opacity:.6; }
.loader__bar { margin-top: 1.5rem; height: 2px; width: 100%; background: rgba(255,255,255,.15); overflow: hidden; }
.loader__bar-fill { height: 100%; width: 0%; background: var(--yellow); }

/* ---------- Nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.2rem var(--pad); z-index: 100;
  transition: background .4s var(--ease), backdrop-filter .4s, box-shadow .4s;
}
.nav.is-stuck {
  background: rgba(242,241,236,.75);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line);
}
.nav__logo { display: inline-flex; align-items: center; gap: .5rem; }
.nav__logo-badge { height: 30px; width: 30px; display: block; }
.nav__logo-text { font-family: 'Instrument Sans', var(--font-display); font-weight: 700; font-size: 1.5rem; letter-spacing: -0.04em; color: var(--ink); line-height: 1; }
.nav__logo-x { color: var(--violet); }
.nav__links { display: flex; gap: 2rem; }
.nav__links a { font-size: .9rem; font-weight: 600; position: relative; }
.nav__links a::after { content:''; position:absolute; left:0; bottom:-4px; height:2px; width:0; background: var(--violet); transition: width .4s var(--ease); }
.nav__links a:hover::after { width: 100%; }
.nav__cta {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--font-display); font-weight: 700; font-size: .9rem; color: #fff;
  background: var(--violet); padding: .7rem 1.3rem; border-radius: 100px;
  transition: background .3s, transform .3s;
}
.nav__cta:hover { background: var(--violet-deep); }
@media (max-width: 880px) { .nav__links { display:none; } }

/* ---------- Buttons ---------- */
.btn {
  position: relative; display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  font-family: var(--font-display); font-weight: 700; font-size: 1rem;
  padding: 1.05rem 1.9rem; border-radius: 100px; overflow: hidden; will-change: transform;
}
.btn span { position: relative; z-index: 2; }
.btn__arrow { transition: transform .4s var(--ease); }
.btn:hover .btn__arrow { transform: translateX(5px); }
.btn--yellow { background: var(--yellow); color: var(--ink); box-shadow: 0 10px 30px -10px rgba(180,200,40,.6); }
.btn--yellow::before { content:''; position:absolute; inset:0; background: var(--ink); transform: translateY(101%); transition: transform .5s var(--ease); }
.btn--yellow:hover { color: var(--yellow); }
.btn--yellow:hover::before { transform: translateY(0); }
.btn--light { background: #fff; color: var(--ink); border: 1px solid var(--line); }
.btn--light::before { content:''; position:absolute; inset:0; background: var(--ink); transform: translateY(101%); transition: transform .5s var(--ease); }
.btn--light:hover { color: #fff; }
.btn--light:hover::before { transform: translateY(0); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100svh; padding: 8rem var(--pad) 3rem;
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 3rem; align-items: center;
  position: relative;
}
.hero__eyebrow {
  font-family: var(--font-display); font-weight: 600;
  text-transform: uppercase; letter-spacing: .15em; font-size: .8rem; color: var(--violet);
  display: inline-block; margin-bottom: 1.2rem;
}
.hero__title {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(3rem, 8.5vw, 8.5rem); line-height: 0.92; letter-spacing: -0.045em;
}
.hero__title .line { display: block; overflow: hidden; padding-bottom: 0.14em; margin-bottom: -0.14em; }
.hero__title .word { display: inline-block; will-change: transform; }
.hero__title .v { color: var(--violet); }
.hero__sub { max-width: 46ch; margin-top: 1.8rem; font-size: clamp(1.05rem, 1.4vw, 1.3rem); color: var(--muted); }
.hero__actions { display: flex; gap: 1rem; margin-top: 2.2rem; flex-wrap: wrap; }
.hero__trust { display: flex; align-items: center; gap: 1rem; margin-top: 2.5rem; font-size: .85rem; color: var(--muted); }
.hero__avatars { display: flex; }
.hero__avatars i {
  width: 30px; height: 30px; border-radius: 50%; margin-left: -8px;
  border: 2px solid var(--bg); background: linear-gradient(135deg, var(--violet), var(--yellow));
}
.hero__avatars i:first-child { margin-left: 0; }
.hero__avatars i:nth-child(2){ background: linear-gradient(135deg,#ff7eb3,#6b4eff); }
.hero__avatars i:nth-child(3){ background: linear-gradient(135deg,#6b4eff,#42e6a4); }
.hero__avatars i:nth-child(4){ background: linear-gradient(135deg,#e9f24a,#ff7eb3); }

.hero__scroll {
  position: absolute; bottom: 1.5rem; left: var(--pad);
  display: flex; align-items: center; gap: .8rem;
  font-size: .7rem; letter-spacing: .25em; text-transform: uppercase; color: var(--muted);
}
.hero__scroll-line { width: 50px; height: 1px; background: var(--line); overflow: hidden; position: relative; }
.hero__scroll-line i { position:absolute; top:0; left:0; height:100%; width:40%; background: var(--violet); animation: scrollx 1.8s var(--ease) infinite; }
@keyframes scrollx { 0%{transform:translateX(-100%)} 100%{transform:translateX(350%)} }
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; gap: 2.5rem; padding-top: 7rem; min-height: auto; }
  .hero__scroll { display: none; }
}

/* ---------- Results card ---------- */
.rcard {
  position: relative;
  background: var(--card); color: #fff;
  border-radius: 28px; padding: clamp(1.6rem, 3vw, 2.4rem);
  box-shadow: 0 40px 80px -30px rgba(12,12,14,.45);
  isolation: isolate; overflow: hidden;
}
.rcard__glow {
  position: absolute; width: 280px; height: 280px; border-radius: 50%;
  background: radial-gradient(circle, rgba(233,242,74,.35), transparent 70%);
  top: -80px; right: -60px; filter: blur(10px); z-index: -1;
}
.rcard__title { font-family: var(--font-display); font-weight: 800; font-size: 1.35rem; margin-bottom: 1.8rem; }
.rcard__rate-top { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: .7rem; }
.rcard__rate-top span:first-child { color: rgba(255,255,255,.6); font-size: .9rem; }
.rcard__pct { font-family: var(--font-display); font-weight: 800; color: var(--yellow); font-size: 1.1rem; }
.rcard__bar { height: 8px; border-radius: 100px; background: rgba(255,255,255,.12); overflow: hidden; }
.rcard__bar i { display: block; height: 100%; width: 0; border-radius: 100px; background: var(--yellow); }
.rcard__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin: 1.6rem 0; }
.rcard__stat { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08); border-radius: 16px; padding: 1.2rem; }
.rcard__stat b { font-family: var(--font-display); font-weight: 800; font-size: clamp(1.8rem, 4vw, 2.6rem); color: var(--yellow); display: block; line-height: 1; }
.rcard__stat span { color: rgba(255,255,255,.6); font-size: .85rem; }
.rcard__divider { height: 1px; background: rgba(255,255,255,.1); margin: 1.4rem 0; }
.rcard__total { display: flex; justify-content: space-between; align-items: center; }
.rcard__total span { color: rgba(255,255,255,.6); font-size: .9rem; }
.rcard__total b { font-family: var(--font-display); font-weight: 800; font-size: 1.6rem; }

/* ============================================================
   BRANDS
   ============================================================ */
.eyebrow {
  font-family: var(--font-display); font-weight: 600;
  text-transform: uppercase; letter-spacing: .2em; font-size: .78rem; color: var(--muted);
  text-align: center; display: block;
}
.brands { padding: clamp(4rem, 9vw, 8rem) var(--pad); text-align: center; }
.brands__title {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(1.8rem, 4.5vw, 3.4rem); letter-spacing: -0.03em; line-height: 1.05;
  margin: 1rem auto clamp(2.5rem, 5vw, 4rem); max-width: 18ch;
}
.brands__grid {
  display: grid; grid-template-columns: repeat(10, 1fr); gap: 1rem; max-width: 1400px; margin: 0 auto;
}
.brand { display: flex; flex-direction: column; align-items: center; gap: .7rem; }
.brand__mark {
  width: 100%; aspect-ratio: 1 / 1; max-width: 110px;
  display: grid; place-items: center; padding: 1.1rem;
  background: #fff; border-radius: 20px; border: 1px solid var(--line);
  box-shadow: 0 10px 24px -16px rgba(12,12,14,.4);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.brand__mark img {
  width: 100%; height: 100%; max-height: 46px; object-fit: contain;
  filter: none; opacity: 1;
  transition: filter .4s var(--ease), opacity .4s var(--ease);
}
.brand:hover .brand__mark { transform: translateY(-6px); box-shadow: 0 20px 40px -18px rgba(107,78,255,.55); }
.brand:hover .brand__mark img { filter: grayscale(0); opacity: 1; }
.brand em { font-style: normal; font-size: .8rem; color: var(--muted); }
@media (max-width: 1100px) { .brands__grid { grid-template-columns: repeat(5, 1fr); } }
@media (max-width: 620px) { .brands__grid { grid-template-columns: repeat(3, 1fr); } .brand em{font-size:.72rem;} }

/* ---------- Marquee ---------- */
.marquee { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 1.4rem 0; overflow: hidden; background: var(--ink); }
.marquee__track {
  display: flex; gap: 2.5rem; white-space: nowrap; width: max-content;
  font-family: var(--font-display); font-weight: 800; color: #fff;
  font-size: clamp(1.3rem, 3vw, 2.4rem); text-transform: uppercase; letter-spacing: -0.02em;
}
.marquee__track .dot { color: var(--yellow); }

/* ============================================================
   INTRO / MANIFESTO
   ============================================================ */
.intro { padding: clamp(6rem, 14vw, 14rem) var(--pad); max-width: 1500px; margin: 0 auto; }
.intro__text { font-family: var(--font-display); font-weight: 800; font-size: clamp(1.7rem, 5vw, 4.8rem); line-height: 1.12; letter-spacing: -0.03em; }
.intro__text .w { display: inline-block; opacity: .16; transition: opacity .3s; }
.intro__text .v { color: var(--violet); }

/* ---------- Section head ---------- */
.section-head { display: flex; align-items: baseline; gap: 1.5rem; padding: 0 var(--pad); margin-bottom: clamp(2.5rem, 6vw, 5rem); }
.section-head__num { font-family: var(--font-display); color: var(--violet); font-weight: 700; font-size: .9rem; letter-spacing: .1em; }
.section-head__title { font-family: var(--font-display); font-weight: 800; font-size: clamp(2rem, 6vw, 4.5rem); letter-spacing: -0.03em; line-height: 1; }

/* ============================================================
   WHAT WE DO
   ============================================================ */
.work { padding: clamp(3rem, 8vw, 7rem) 0; }
.work__list { border-top: 1px solid var(--line); }
.work__item {
  position: relative; display: grid; grid-template-columns: 80px 1fr 1.2fr 60px; gap: 2rem; align-items: center;
  padding: clamp(1.8rem, 4vw, 3rem) var(--pad); border-bottom: 1px solid var(--line); overflow: hidden;
  transition: color .4s var(--ease);
}
.work__item::before { content:''; position:absolute; inset:0; background: var(--violet); transform: scaleY(0); transform-origin: bottom; transition: transform .5s var(--ease); z-index:-1; }
.work__item:hover { color: #fff; }
.work__item:hover::before { transform: scaleY(1); }
.work__index { font-family: var(--font-display); font-weight: 700; font-size: .9rem; color: var(--muted); }
.work__item:hover .work__index { color: rgba(255,255,255,.7); }
.work__item h3 { font-family: var(--font-display); font-weight: 800; font-size: clamp(1.5rem, 4vw, 3rem); letter-spacing: -0.02em; }
.work__item p { color: var(--muted); max-width: 44ch; transition: color .4s var(--ease); }
.work__item:hover p { color: rgba(255,255,255,.85); }
.work__arrow { font-size: 1.6rem; justify-self: end; transition: transform .4s var(--ease); }
.work__item:hover .work__arrow { transform: translate(6px,-6px); }
@media (max-width: 860px) { .work__item { grid-template-columns: 1fr; gap: .8rem; } .work__arrow { display: none; } }

/* ============================================================
   STATS
   ============================================================ */
.stats { padding: clamp(3rem, 8vw, 7rem) var(--pad); }
.stats__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.stat { border-top: 2px solid var(--ink); padding-top: 1.5rem; }
.stat__num { font-family: var(--font-display); font-weight: 900; font-size: clamp(3rem, 9vw, 7rem); letter-spacing: -0.04em; line-height: 1; color: var(--violet); }
.stat__label { color: var(--muted); margin-top: 1rem; max-width: 24ch; }
@media (max-width: 760px) { .stats__grid { grid-template-columns: 1fr; gap: 3rem; } }

/* ============================================================
   APPROACH
   ============================================================ */
.approach { padding: clamp(3rem, 8vw, 7rem) 0; }
.approach__cols { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; padding: 0 var(--pad); }
.approach__card { padding: clamp(2rem, 4vw, 3.5rem); border-radius: 24px; border: 1px solid var(--line); position: relative; overflow: hidden; }
.approach__card--bad { background: #fff; }
.approach__card--good { background: var(--ink); color: #fff; border-color: var(--ink); }
.approach__tag { font-family: var(--font-display); font-weight: 600; font-size: .75rem; text-transform: uppercase; letter-spacing: .12em; color: var(--muted); }
.approach__card--good .approach__tag { color: var(--yellow); }
.approach__card h3 { font-family: var(--font-display); font-weight: 800; font-size: clamp(1.6rem, 4vw, 2.6rem); margin: .8rem 0 1rem; letter-spacing: -0.02em; }
.approach__card p { color: var(--muted); margin-bottom: 1.5rem; }
.approach__card--good p { color: rgba(255,255,255,.7); }
.approach__card ul { list-style: none; display: flex; flex-direction: column; gap: .7rem; }
.approach__card li { display: flex; align-items: center; gap: .7rem; font-size: .95rem; }
.approach__card li::before { content:''; width: 6px; height: 6px; border-radius: 50%; background: var(--muted); }
.approach__card--good li::before { background: var(--yellow); }
@media (max-width: 760px) { .approach__cols { grid-template-columns: 1fr; } }

/* ============================================================
   PROCESS
   ============================================================ */
.process { padding: clamp(3rem, 8vw, 7rem) 0; }
.process__steps { display: grid; grid-template-columns: repeat(4, 1fr); padding: 0 var(--pad); border-top: 1px solid var(--line); }
.process__step { padding: 2rem 1.5rem 2rem 0; border-right: 1px solid var(--line); }
.process__step:last-child { border-right: none; }
.process__num { font-family: var(--font-display); font-weight: 700; color: var(--violet); font-size: .9rem; }
.process__step h3 { font-family: var(--font-display); font-weight: 800; font-size: 1.5rem; margin: 1.5rem 0 .8rem; }
.process__step p { color: var(--muted); font-size: .95rem; }
@media (max-width: 860px) { .process__steps { grid-template-columns: 1fr 1fr; } .process__step:nth-child(2n) { border-right: none; } }
@media (max-width: 520px) { .process__steps { grid-template-columns: 1fr; } .process__step { border-right: none; border-bottom: 1px solid var(--line); } }

/* ============================================================
   CAMPAIGN TEAM
   ============================================================ */
.team { padding: clamp(4rem, 9vw, 8rem) var(--pad); text-align: center; background: var(--ink); color: #fff; }
.team .eyebrow { color: var(--yellow); }
.team__title { font-family: var(--font-display); font-weight: 800; font-size: clamp(2rem, 5vw, 3.6rem); letter-spacing: -0.03em; margin: 1rem auto .8rem; max-width: 18ch; }
.team__sub { max-width: 60ch; margin: 0 auto clamp(2.5rem, 5vw, 3.5rem); color: rgba(255,255,255,.72); font-size: 1.05rem; }
.team__roles { display: flex; flex-wrap: wrap; justify-content: center; gap: .8rem; max-width: 860px; margin: 0 auto; }
.trole {
  display: inline-flex; align-items: center; gap: .55rem;
  border: 1px solid rgba(255,255,255,.18); border-radius: 100px;
  padding: .7rem 1.3rem; font-family: var(--font-display); font-weight: 700; font-size: .95rem; color: #fff;
  transition: border-color .4s var(--ease), background .4s var(--ease);
}
.trole::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: var(--violet); }
.trole:hover { border-color: var(--violet); background: rgba(107,78,255,.12); }

/* ============================================================
   TESTIMONIALS / PROOF
   ============================================================ */
.testi { padding: clamp(3rem, 8vw, 7rem) var(--pad); }
.testi__head { text-align: center; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.testi__title { font-family: var(--font-display); font-weight: 800; font-size: clamp(2rem, 5vw, 3.6rem); letter-spacing: -0.03em; margin: 1rem auto .6rem; max-width: 18ch; }
.testi__note { color: var(--muted); max-width: 52ch; margin: 0 auto; font-size: 1.05rem; }

/* Trustpilot brand summary header */
.tp-summary {
  display: flex; width: fit-content; max-width: 100%; align-items: center; gap: .85rem; flex-wrap: wrap; justify-content: center;
  margin: 2.2rem auto 2.4rem; padding: .75rem 1.25rem;
  background: #fff; border: 1px solid var(--line); border-radius: 100px;
  text-decoration: none; color: var(--ink);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.tp-summary:hover { transform: translateY(-3px); box-shadow: 0 20px 40px -24px rgba(12,12,14,.35); }
.tp-summary__logo { display: inline-flex; align-items: center; gap: .4rem; }
.tp-summary__star { display: block; height: 22px; width: 22px; }
.tp-summary__name { font-family: var(--font-display); font-weight: 800; font-size: 1.1rem; letter-spacing: -0.02em; color: var(--ink); }
.tp-summary__stars svg { display: block; height: 23px; width: auto; }
.tp-summary__txt { font-size: .92rem; color: var(--muted); }
.tp-summary__txt strong { color: var(--ink); font-weight: 700; }

/* Animated review marquee */
.tp-marquee {
  position: relative; overflow: hidden; margin-top: 1rem;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.tp-track { display: flex; gap: 1.5rem; width: max-content; animation: tp-scroll 80s linear infinite; }
.tp-marquee:hover .tp-track { animation-play-state: paused; }
.tp-rev {
  width: 360px; flex: none; background: #fff; border: 1px solid var(--line); border-radius: 24px;
  padding: clamp(1.6rem, 2.4vw, 2.1rem); display: flex; flex-direction: column; gap: 1.1rem;
}
.tp-stars5 {
  width: 114px; height: 22px; flex: none; background-repeat: no-repeat; background-size: contain;
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20124%2024'%3E%3Cg%20fill='%2300B67A'%3E%3Crect%20width='23'%20height='23'%20rx='2'/%3E%3Crect%20x='25'%20width='23'%20height='23'%20rx='2'/%3E%3Crect%20x='50'%20width='23'%20height='23'%20rx='2'/%3E%3Crect%20x='75'%20width='23'%20height='23'%20rx='2'/%3E%3Crect%20x='100'%20width='23'%20height='23'%20rx='2'/%3E%3C/g%3E%3Cg%20fill='%23fff'%3E%3Cpath%20d='M11.5%203.5l2.06%204.17%204.6.67-3.33%203.25.79%204.58-4.12-2.17-4.12%202.17.79-4.58L4.84%208.34l4.6-.67z'/%3E%3Cpath%20d='M36.5%203.5l2.06%204.17%204.6.67-3.33%203.25.79%204.58-4.12-2.17-4.12%202.17.79-4.58-3.33-3.25%204.6-.67z'/%3E%3Cpath%20d='M61.5%203.5l2.06%204.17%204.6.67-3.33%203.25.79%204.58-4.12-2.17-4.12%202.17.79-4.58-3.33-3.25%204.6-.67z'/%3E%3Cpath%20d='M86.5%203.5l2.06%204.17%204.6.67-3.33%203.25.79%204.58-4.12-2.17-4.12%202.17.79-4.58-3.33-3.25%204.6-.67z'/%3E%3Cpath%20d='M111.5%203.5l2.06%204.17%204.6.67-3.33%203.25.79%204.58-4.12-2.17-4.12%202.17.79-4.58-3.33-3.25%204.6-.67z'/%3E%3C/g%3E%3C/svg%3E");
}
.tp-rev__quote { font-family: var(--font-display); font-weight: 600; font-size: 1.02rem; line-height: 1.5; letter-spacing: -0.01em; flex: 1; }
.tp-rev__by { display: flex; flex-direction: column; gap: .25rem; }
.tp-rev__name { font-family: var(--font-display); font-weight: 700; font-size: .95rem; color: var(--ink); }
.tp-rev__badge { display: inline-flex; align-items: center; gap: .35rem; font-size: .72rem; font-weight: 600; letter-spacing: .03em; text-transform: uppercase; color: #00B67A; }
.tp-rev__badge::before { content: '★'; font-size: .8rem; line-height: 1; }
@keyframes tp-scroll { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) {
  .tp-track { animation: none; }
  .tp-marquee { overflow-x: auto; }
}
.testi__src { text-align: center; color: var(--muted); font-size: .8rem; margin-top: 2.5rem; }
.testi__src a { color: var(--violet); text-decoration: none; font-weight: 600; }
@media (max-width: 860px) { .tp-summary { gap: .6rem; } .tp-rev { width: 300px; } }

/* ============================================================
   SERVICES (stage tiers)
   ============================================================ */
.services { padding: clamp(3rem, 8vw, 7rem) 0; }
.services__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; padding: 0 var(--pad); }
.svc {
  border: 1px solid var(--line); border-radius: 24px; background: #fff;
  padding: clamp(1.8rem, 3vw, 2.6rem); display: flex; flex-direction: column;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.svc:hover { transform: translateY(-8px); box-shadow: 0 30px 60px -30px rgba(12,12,14,.35); }
.svc--dark { background: var(--ink); color: #fff; border-color: var(--ink); }
.svc__icon { width: 48px; height: 48px; border-radius: 14px; background: var(--bg-soft); display: grid; place-items: center; margin-bottom: 1.4rem; }
.svc--dark .svc__icon { background: rgba(255,255,255,.08); }
.svc__icon svg { width: 26px; height: 26px; }
.svc__tag { font-family: var(--font-display); font-weight: 600; font-size: .72rem; text-transform: uppercase; letter-spacing: .12em; color: var(--violet); }
.svc--dark .svc__tag { color: var(--yellow); }
.svc h3 { font-family: var(--font-display); font-weight: 800; font-size: clamp(1.5rem, 3vw, 2.1rem); letter-spacing: -0.02em; margin: .5rem 0 .9rem; }
.svc p { color: var(--muted); margin-bottom: 1.4rem; }
.svc--dark p { color: rgba(255,255,255,.7); }
.svc__meta { font-size: .82rem; color: var(--muted); border-top: 1px solid var(--line); padding-top: 1rem; margin-bottom: 1.4rem; flex: 1; }
.svc--dark .svc__meta { border-color: rgba(255,255,255,.15); }
.svc__meta b { color: var(--ink); font-weight: 700; }
.svc--dark .svc__meta b { color: #fff; }
.svc__link { font-family: var(--font-display); font-weight: 700; font-size: .95rem; color: var(--violet); display: inline-flex; align-items: center; gap: .4rem; transition: gap .3s var(--ease); }
.svc--dark .svc__link { color: var(--yellow); }
.svc__link:hover { gap: .8rem; }
@media (max-width: 860px) { .services__grid { grid-template-columns: 1fr; } }

/* ============================================================
   TECH STACK
   ============================================================ */
.tech { padding: clamp(4rem, 9vw, 8rem) var(--pad); text-align: center; }
.tech__title { font-family: var(--font-display); font-weight: 800; font-size: clamp(2rem, 5vw, 3.6rem); letter-spacing: -0.03em; margin: 1rem auto .8rem; max-width: 16ch; }
.tech__sub { max-width: 56ch; margin: 0 auto clamp(2.5rem, 5vw, 3.5rem); color: var(--muted); font-size: 1.05rem; }
.tech__pills { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; max-width: 900px; margin: 0 auto; }
.tpill {
  display: inline-flex; align-items: center; gap: .7rem;
  background: #fff; border: 1px solid var(--line); border-radius: 16px;
  padding: .9rem 1.4rem; font-family: var(--font-display); font-weight: 700; font-size: 1rem;
  box-shadow: 0 10px 24px -18px rgba(12,12,14,.4);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.tpill:hover { transform: translateY(-5px); box-shadow: 0 18px 34px -18px rgba(107,78,255,.5); }
.tpill__img { width: 26px; height: 26px; object-fit: contain; }

/* ============================================================
   PACKAGES
   ============================================================ */
.packages { padding: clamp(3rem, 8vw, 7rem) 0; }
.packages__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; padding: 0 var(--pad); }
.pkg {
  position: relative; border: 1px solid var(--line); border-radius: 24px;
  padding: clamp(1.8rem, 3vw, 2.6rem); display: flex; flex-direction: column; background: #fff;
  transition: transform .5s var(--ease), border-color .5s var(--ease), box-shadow .5s var(--ease);
}
.pkg:hover { transform: translateY(-8px); box-shadow: 0 30px 60px -30px rgba(12,12,14,.35); }
.pkg--featured { background: var(--ink); color: #fff; border-color: var(--ink); }
.pkg__badge { position: absolute; top: 1.4rem; right: 1.4rem; font-family: var(--font-display); font-weight: 700; font-size: .7rem; text-transform: uppercase; letter-spacing: .1em; color: var(--ink); background: var(--yellow); padding: .3rem .7rem; border-radius: 100px; }
.pkg__top h3 { font-family: var(--font-display); font-weight: 800; font-size: 2rem; letter-spacing: -0.02em; }
.pkg__term { color: var(--muted); font-size: .85rem; }
.pkg--featured .pkg__term { color: rgba(255,255,255,.6); }
.pkg__desc { color: var(--muted); margin: 1.2rem 0; }
.pkg--featured .pkg__desc { color: rgba(255,255,255,.7); }
.pkg__list { list-style: none; display: flex; flex-direction: column; gap: .7rem; margin-bottom: 2rem; flex: 1; }
.pkg__list li { font-size: .92rem; padding-left: 1.4rem; position: relative; }
.pkg__list li::before { content:'+'; position:absolute; left:0; color: var(--violet); font-family: var(--font-display); font-weight: 800; }
.pkg--featured .pkg__list li::before { color: var(--yellow); }
.pkg__cta { display: inline-flex; justify-content: center; align-items: center; font-family: var(--font-display); font-weight: 700; padding: .9rem 1.5rem; border-radius: 100px; border: 1px solid var(--line); transition: background .4s, color .4s, border-color .4s; }
.pkg__cta:hover { background: var(--violet); color: #fff; border-color: var(--violet); }
.pkg--featured .pkg__cta { background: var(--yellow); color: var(--ink); border-color: var(--yellow); }
.pkg--featured .pkg__cta:hover { background: #fff; border-color: #fff; }
@media (max-width: 860px) { .packages__grid { grid-template-columns: 1fr; } }

/* ============================================================
   CONTACT
   ============================================================ */
.contact { padding: clamp(5rem, 12vw, 12rem) var(--pad); text-align: center; }
.contact__eyebrow { font-family: var(--font-display); font-weight: 600; text-transform: uppercase; letter-spacing: .25em; color: var(--violet); font-size: .8rem; }
.contact__title { font-family: var(--font-display); font-weight: 900; font-size: clamp(3rem, 14vw, 13rem); line-height: .9; letter-spacing: -0.045em; margin: 1.5rem 0; }
.contact__title .line { display: block; overflow: hidden; }
.contact__title .word { display: inline-block; }
.contact__title .v { color: var(--violet); }
.contact__mail { display: inline-block; font-family: var(--font-display); font-weight: 700; font-size: clamp(1.2rem, 3vw, 2.2rem); border-bottom: 2px solid var(--line); padding-bottom: .3rem; transition: border-color .4s, color .4s; margin-top: 1rem; }
.contact__mail:hover { border-color: var(--violet); color: var(--violet); }
.contact__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; max-width: 760px; margin: 5rem auto 0; text-align: left; }
.contact__label { display:block; font-size: .75rem; text-transform: uppercase; letter-spacing: .12em; color: var(--muted); margin-bottom: .6rem; }
.contact__col a, .contact__col span { font-family: var(--font-display); font-weight: 600; font-size: 1.05rem; }
.contact__socials { display: flex; flex-direction: column; gap: .3rem; }
@media (max-width: 620px) { .contact__grid { grid-template-columns: 1fr; gap: 2.2rem; text-align:center; } .contact__socials{align-items:center;} }

/* ---------- Contact form ---------- */
.contact__lead { max-width: 52ch; margin: 1.5rem auto 0; color: var(--muted); font-size: 1.08rem; }
.contact__form {
  max-width: 720px; margin: 2.8rem auto 0; text-align: left;
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem;
  background: #fff; border: 1px solid var(--line); border-radius: 28px;
  padding: clamp(1.6rem, 3vw, 2.6rem);
  box-shadow: 0 30px 60px -40px rgba(12,12,14,.4);
}
.contact__hp { position: absolute; left: -9999px; }
.field { display: flex; flex-direction: column; gap: .5rem; }
.field--full { grid-column: 1 / -1; }
.field label { font-family: var(--font-display); font-weight: 600; font-size: .82rem; color: var(--ink); }
.field label span { color: var(--violet); }
.field input, .field select, .field textarea {
  font-family: var(--font-body); font-size: 1rem; color: var(--ink);
  background: var(--bg); border: 1px solid var(--line); border-radius: 12px;
  padding: .85rem 1rem; width: 100%; transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.field textarea { resize: vertical; min-height: 110px; }
.field input::placeholder, .field textarea::placeholder { color: var(--muted); opacity: .7; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--violet); box-shadow: 0 0 0 3px rgba(107,78,255,.16);
}
.contact__form-foot { display: flex; align-items: center; gap: 1.2rem; flex-wrap: wrap; margin-top: .4rem; }
.contact__form-foot .btn { cursor: none; border: none; }
.contact__form-status { font-size: .92rem; color: var(--muted); margin: 0; }
.contact__form-status.is-error { color: #c0341d; }
.contact__form-status.is-ok { color: #1f9d57; font-weight: 600; }
.contact__form.is-sent { display: block; text-align: center; padding: clamp(2.4rem, 5vw, 3.6rem); }
.contact__or { margin-top: 2.2rem; color: var(--muted); font-size: .95rem; }
.contact__or a { color: var(--violet); font-weight: 600; border-bottom: 1px solid transparent; transition: border-color .3s; }
.contact__or a:hover { border-color: var(--violet); }
@media (max-width: 620px) { .contact__form { grid-template-columns: 1fr; } }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { padding: 3rem var(--pad) 2rem; border-top: 1px solid var(--line); }
.footer__top { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
.footer__brand { display: inline-flex; align-items: center; gap: .6rem; }
.footer__brand-badge { height: 40px; width: 40px; display: block; }
.footer__brand-text { font-family: 'Instrument Sans', var(--font-display); font-weight: 700; font-size: 1.9rem; letter-spacing: -0.04em; line-height: 1; color: var(--ink); }
.footer__brand-x { color: var(--violet); }
.footer__top b { color: var(--violet); font-weight: 800; }
.footer__top p { color: var(--muted); }
.footer__legal { margin-top: 2.25rem; font-size: .8rem; color: var(--muted); line-height: 1.6; }
.footer__legal p { margin: 0; }
.footer__links { display: flex; gap: 1.25rem; margin-top: .75rem; }
.footer__links a { color: var(--ink); font-weight: 600; text-decoration: none; border-bottom: 1px solid var(--line); padding-bottom: 1px; transition: color .2s, border-color .2s; }
.footer__links a:hover { color: var(--violet); border-color: var(--violet); }
.footer__bottom { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid var(--line); font-size: .8rem; color: var(--muted); }

/* reveal-up keeps each element's natural display so block-level
   headings/eyebrows stack instead of flowing inline side-by-side */
.reveal-up { will-change: transform, opacity; }

/* ============================================================
   INNER PAGES (service detail + blog)  - shared
   ============================================================ */
.subhero {
  padding: clamp(8.5rem, 16vh, 12rem) var(--pad) clamp(3rem, 6vw, 5rem);
  max-width: 1500px; margin: 0 auto;
}
.subhero__crumbs { font-family: var(--font-display); font-weight: 600; font-size: .82rem; letter-spacing: .04em; color: var(--muted); margin-bottom: 1.4rem; }
.subhero__crumbs a { color: var(--muted); text-decoration: none; transition: color .3s var(--ease); }
.subhero__crumbs a:hover { color: var(--violet); }
.subhero__crumbs span { color: var(--violet); }
.subhero__eyebrow { display: inline-flex; align-items: center; gap: .6rem; font-family: var(--font-display); font-weight: 700; text-transform: uppercase; letter-spacing: .16em; font-size: .76rem; color: var(--violet); margin-bottom: 1.2rem; }
.subhero__title { font-family: var(--font-display); font-weight: 800; font-size: clamp(2.4rem, 7vw, 5.4rem); letter-spacing: -0.035em; line-height: 1.02; max-width: 16ch; }
.subhero__title .v { color: var(--violet); }
.subhero__lead { max-width: 56ch; margin-top: 1.8rem; font-size: clamp(1.05rem, 1.4vw, 1.3rem); color: var(--muted); }
.subhero__actions { display: flex; gap: 1rem; margin-top: 2.4rem; flex-wrap: wrap; }

/* Generic inner-page section wrapper */
.psection { padding: clamp(3rem, 8vw, 6.5rem) var(--pad); max-width: 1500px; margin: 0 auto; }
.psection--ink { background: var(--ink); color: #fff; max-width: none; padding-left: var(--pad); padding-right: var(--pad); }
.psection__head { max-width: 60ch; margin-bottom: clamp(2.2rem, 5vw, 3.5rem); }
.psection__eyebrow { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; letter-spacing: .16em; font-size: .76rem; color: var(--violet); margin-bottom: 1rem; }
.psection--ink .psection__eyebrow { color: var(--yellow); }
.psection__title { font-family: var(--font-display); font-weight: 800; font-size: clamp(1.8rem, 4.5vw, 3.2rem); letter-spacing: -0.03em; line-height: 1.05; }
.psection__intro { margin-top: 1.2rem; color: var(--muted); font-size: 1.05rem; }
.psection--ink .psection__intro { color: rgba(255,255,255,.72); }
.psection__links { display: flex; flex-direction: column; gap: .9rem; margin-top: 1.8rem; }
.psection__links a { font-family: var(--font-display); font-weight: 700; font-size: clamp(1.1rem, 2.2vw, 1.45rem); letter-spacing: -0.02em; color: var(--ink); text-decoration: none; padding-bottom: .6rem; border-bottom: 1px solid var(--line); transition: color .2s, border-color .2s; }
.psection__links a:hover { color: var(--violet); border-color: var(--violet); }

/* Outcome / feature grid */
.feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.feat {
  background: #fff; border: 1px solid var(--line); border-radius: 24px;
  padding: clamp(1.6rem, 2.6vw, 2.2rem); display: flex; flex-direction: column; gap: .9rem;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.feat:hover { transform: translateY(-4px); box-shadow: 0 24px 48px -28px rgba(12,12,14,.4); }
.feat__icon { width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; background: rgba(107,78,255,.1); }
.feat__icon svg { width: 22px; height: 22px; }
.feat h3 { font-family: var(--font-display); font-weight: 800; font-size: 1.2rem; letter-spacing: -0.01em; }
.feat p { color: var(--muted); font-size: .96rem; line-height: 1.55; }
@media (max-width: 900px) { .feat-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .feat-grid { grid-template-columns: 1fr; } }

/* Numbered delivery steps (reused look from process) */
.steps-list { display: grid; gap: 1rem; counter-reset: step; }
.step-row {
  display: grid; grid-template-columns: auto 1fr; gap: 1.4rem; align-items: start;
  background: #fff; border: 1px solid var(--line); border-radius: 20px; padding: 1.5rem clamp(1.4rem, 2.4vw, 2rem);
}
.step-row__num { font-family: var(--font-display); font-weight: 800; font-size: 1.1rem; color: var(--violet); padding-top: .15rem; }
.step-row h3 { font-family: var(--font-display); font-weight: 800; font-size: 1.15rem; margin-bottom: .4rem; color: var(--ink); }
.step-row p { color: var(--muted); font-size: .98rem; line-height: 1.55; max-width: 62ch; }

/* Outcome stat row */
.outcomes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.outcome b { font-family: var(--font-display); font-weight: 900; font-size: clamp(2.6rem, 6vw, 4rem); letter-spacing: -0.03em; line-height: 1; display: block; }
.psection--ink .outcome b { color: var(--yellow); }
.outcome span { color: var(--muted); margin-top: .8rem; display: block; max-width: 26ch; }
.psection--ink .outcome span { color: rgba(255,255,255,.7); }
@media (max-width: 760px) { .outcomes { grid-template-columns: 1fr; gap: 2.4rem; text-align: center; } .outcome span { margin-inline: auto; } }

/* Inner-page CTA band */
.cta-band { text-align: center; padding: clamp(4rem, 10vw, 8rem) var(--pad); }
.cta-band h2 { font-family: var(--font-display); font-weight: 800; font-size: clamp(2rem, 5.5vw, 4rem); letter-spacing: -0.03em; line-height: 1.04; max-width: 18ch; margin: 0 auto 1.4rem; }
.cta-band h2 .v { color: var(--violet); }
.cta-band p { color: var(--muted); max-width: 50ch; margin: 0 auto 2.4rem; font-size: 1.08rem; }
.cta-band__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   BLOG
   ============================================================ */
.blog-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.8rem; }
.post-card {
  display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line);
  border-radius: 24px; overflow: hidden; text-decoration: none; color: var(--ink);
  transition: transform .45s var(--ease), box-shadow .45s var(--ease);
}
.post-card:hover { transform: translateY(-5px); box-shadow: 0 28px 54px -30px rgba(12,12,14,.45); }
.post-card__cover { aspect-ratio: 16 / 9; display: grid; place-items: center; position: relative; overflow: hidden; padding: clamp(1.6rem, 3vw, 2.6rem); }
.post-card__cover span { font-family: var(--font-display); font-weight: 900; font-size: clamp(1.6rem, 2.6vw, 2.4rem); color: #fff; letter-spacing: -0.025em; line-height: 1.12; text-align: center; }
.post-card__body { padding: clamp(1.5rem, 2.4vw, 2rem); display: flex; flex-direction: column; gap: .9rem; flex: 1; }
.post-card__tag { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; letter-spacing: .12em; font-size: .7rem; color: var(--violet); }
.post-card h3 { font-family: var(--font-display); font-weight: 800; font-size: 1.3rem; letter-spacing: -0.02em; line-height: 1.2; }
.post-card p { color: var(--muted); font-size: .96rem; line-height: 1.55; flex: 1; }
.post-card__meta { font-size: .8rem; color: var(--muted); display: flex; gap: .6rem; align-items: center; }
.post-card__more { font-family: var(--font-display); font-weight: 700; font-size: .9rem; color: var(--ink); margin-top: .2rem; }
.post-card:hover .post-card__more { color: var(--violet); }
@media (max-width: 640px) { .blog-grid { grid-template-columns: 1fr; } }

/* Cover gradients (reused on post header) */
.cover--violet { background: linear-gradient(135deg, var(--violet), var(--violet-deep)); }
.cover--ink { background: linear-gradient(135deg, #1a1a22, var(--ink)); }
.cover--mix { background: linear-gradient(135deg, var(--violet), #1a1a22); }

/* Article / post body */
.post-head { padding: clamp(8.5rem, 16vh, 12rem) var(--pad) clamp(2rem, 5vw, 3.5rem); max-width: 1100px; margin: 0 auto; }
.post-head__tag { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; letter-spacing: .14em; font-size: .76rem; color: var(--violet); margin-bottom: 1.2rem; }
.post-head h1 { font-family: var(--font-display); font-weight: 800; font-size: clamp(2.2rem, 5.5vw, 3.8rem); letter-spacing: -0.03em; line-height: 1.08; }
.post-head__meta { display: flex; flex-wrap: wrap; gap: .8rem 1.2rem; align-items: center; margin-top: 1.8rem; font-size: .9rem; color: var(--muted); }
.post-head__meta strong { color: var(--ink); font-weight: 700; }
.post-cover { max-width: 1100px; margin: 0 auto; padding: 0 var(--pad); }
.post-cover__inner { position: relative; aspect-ratio: 21 / 8; border-radius: 28px; overflow: hidden; display: flex; flex-direction: column; justify-content: space-between; padding: clamp(1.6rem, 3.5vw, 2.8rem); }
/* dotted texture */
.post-cover__inner::before { content: ""; position: absolute; inset: 0; background-image: radial-gradient(rgba(255,255,255,.18) 1.2px, transparent 1.2px); background-size: 22px 22px; opacity: .5; mask-image: linear-gradient(120deg, #000 30%, transparent 85%); -webkit-mask-image: linear-gradient(120deg, #000 30%, transparent 85%); }
/* corner glow */
.post-cover__inner::after { content: ""; position: absolute; top: -30%; right: -10%; width: 55%; height: 130%; background: radial-gradient(closest-side, rgba(255,255,255,.22), transparent 70%); pointer-events: none; }
.post-cover__tag { position: relative; align-self: flex-start; font-family: var(--font-display); font-weight: 700; text-transform: uppercase; letter-spacing: .16em; font-size: .74rem; color: rgba(255,255,255,.82); padding: .5rem .9rem; border: 1px solid rgba(255,255,255,.28); border-radius: 999px; backdrop-filter: blur(2px); }
.post-cover__brand { position: relative; font-family: var(--font-display); font-weight: 900; letter-spacing: -.045em; line-height: 1; font-size: clamp(2.6rem, 9vw, 6.5rem); color: rgba(255,255,255,.14); }
.post-cover__brand em { font-style: normal; color: rgba(255,255,255,.4); }
@media (max-width: 640px) { .post-cover__inner { aspect-ratio: 16 / 10; } }
.prose { max-width: 1100px; margin: 0 auto; padding: clamp(2.5rem, 6vw, 4rem) var(--pad) clamp(3rem, 7vw, 5rem); }
.prose h2 { font-family: var(--font-display); font-weight: 800; font-size: clamp(1.5rem, 3.4vw, 2.1rem); letter-spacing: -0.02em; line-height: 1.15; margin: 2.4rem 0 1rem; }
.prose h3 { font-family: var(--font-display); font-weight: 800; font-size: 1.2rem; margin: 1.8rem 0 .8rem; }
.prose p { font-size: 1.08rem; line-height: 1.7; color: #2a2a30; margin-bottom: 1.2rem; }
.prose ul, .prose ol { margin: 0 0 1.4rem 1.2rem; color: #2a2a30; }
.prose li { font-size: 1.06rem; line-height: 1.65; margin-bottom: .6rem; }
.prose strong { color: var(--ink); font-weight: 700; }
.prose a { color: var(--violet); font-weight: 600; }
.prose blockquote {
  border-left: 3px solid var(--violet); padding: .4rem 0 .4rem 1.4rem; margin: 2rem 0;
  font-family: var(--font-display); font-weight: 600; font-size: 1.25rem; line-height: 1.45; color: var(--ink);
}
.prose hr { border: none; border-top: 1px solid var(--line); margin: 2.6rem 0; }
.post-foot { max-width: 1100px; margin: 0 auto; padding: 0 var(--pad) clamp(3rem, 6vw, 4rem); }
.post-foot__back { font-family: var(--font-display); font-weight: 700; color: var(--violet); text-decoration: none; }

/* Author profile (E-E-A-T) */
.author-card {
  max-width: 1100px; margin: 0 auto clamp(2rem, 5vw, 3rem); padding: clamp(1.6rem, 3vw, 2.4rem);
  display: flex; gap: clamp(1.2rem, 2.5vw, 2rem); align-items: flex-start;
  background: #fff; border: 1px solid var(--line); border-radius: 22px;
}
.author-card__photo {
  flex: 0 0 auto; width: 96px; height: 96px; border-radius: 50%; overflow: hidden;
  display: grid; place-items: center; background: var(--violet);
}
.author-card__photo img { width: 100%; height: 100%; object-fit: cover; }
.author-card__initials { font-family: var(--font-display); font-weight: 900; font-size: 2.4rem; color: #fff; }
.author-card__body { flex: 1 1 auto; }
.author-card__eyebrow { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; letter-spacing: .14em; font-size: .72rem; color: var(--violet); margin-bottom: .3rem; }
.author-card__name { font-family: var(--font-display); font-weight: 800; font-size: 1.4rem; letter-spacing: -0.02em; line-height: 1.1; }
.author-card__role { font-size: .95rem; color: var(--muted); margin-top: .2rem; }
.author-card__bio { font-size: 1rem; line-height: 1.6; color: #2a2a30; margin-top: .9rem; }
.author-card__creds { list-style: none; margin: 1rem 0 0; padding: 0; display: grid; gap: .5rem; }
.author-card__creds li { position: relative; padding-left: 1.4rem; font-size: .92rem; line-height: 1.45; color: #2a2a30; }
.author-card__creds li::before { content: "✓"; position: absolute; left: 0; color: var(--violet); font-weight: 800; }
.author-card__link { display: inline-block; margin-top: 1.1rem; font-family: var(--font-display); font-weight: 700; font-size: .95rem; color: var(--violet); text-decoration: none; }
@media (max-width: 560px) { .author-card { flex-direction: column; } }

@media (prefers-reduced-motion: reduce) { * { animation: none !important; transition: none !important; } }


/* FAQ (service pages) */
.faq { max-width: 1100px; margin: 0 auto; }
.faq__item { border-top: 1px solid var(--line); padding: 1.6rem 0; }
.faq__item:last-child { border-bottom: 1px solid var(--line); }
.faq__q { font-family: var(--font-display); font-weight: 800; font-size: clamp(1.05rem, 2.2vw, 1.25rem); letter-spacing: -0.01em; color: var(--ink); margin: 0 0 .55rem; }
.faq__a { margin: 0; color: var(--muted); line-height: 1.7; max-width: 75ch; }


/* Footer services nav: stacked, aligned right in the top row */
.footer__services { flex-direction: column; align-items: flex-end; gap: .5rem; margin: 0 0 0 auto; text-align: right; }
@media (max-width: 640px) { .footer__services { align-items: flex-start; margin: .5rem 0 0; text-align: left; } }


/* Homepage: 'explore by service' links under the stage grid */
.services__links { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem 2.5rem; padding: clamp(2rem, 5vw, 3.25rem) var(--pad) 0; }
.services__links a { font-family: var(--font-display); font-weight: 700; font-size: clamp(1rem, 1.6vw, 1.2rem); letter-spacing: -0.02em; color: var(--ink); text-decoration: none; border-bottom: 1px solid var(--line); padding-bottom: .35rem; transition: color .2s, border-color .2s; }
.services__links a:hover { color: var(--violet); border-color: var(--violet); }
