/* ==========================================================================
   Suzzio Websites — landing page styles
   Design system (tokens, type, spacing, radii, animation timings) comes
   from a Claude Design handoff (project "Vertus homepage mockups" >
   design_handoff_nudgley_home/Nudgley.dc.html + README.md) — kept as-is
   per the client; only the brand name and copy are Suzzio's, reconciled
   against the original client brief. The .dc.html file is a design-tool
   prototype (inline styles, a small template runtime) — this file moves
   the same values into a real stylesheet, per the handoff's own
   instructions.
   ========================================================================== */

:root {
  --purple: #6c3fe4;
  --purple-deep: #3a2585;
  --purple-soft: #a98bff;
  --lilac: #efeaff;
  --lilac-2: #f7f5ff;
  --ink: #0b0b0f;
  --body-c: #5a5a6b;
  --muted: #8a8a9c;
  --panel: #f4f4f6;
  --line: rgba(11, 11, 15, 0.1);
  --white: #fff;

  --font-from: 16; --font-to: 16; --vw-from: calc(1180 / 100); --vw-to: calc(1593 / 100);
  --coefficient: calc((var(--font-to) - var(--font-from)) / (var(--vw-to) - var(--vw-from)));
  --base: calc((var(--font-from) - var(--vw-from) * var(--coefficient)) / 16);
}
@media screen and (max-width: 1180px) {
  :root { --font-from: 12.4; --font-to: 16; --vw-from: calc(767 / 100); --vw-to: calc(1180 / 100); }
}
@media screen and (max-width: 767px) {
  :root { --font-from: 15.4; --font-to: 15.4; --vw-from: calc(479 / 100); --vw-to: calc(767 / 100); }
}

html { font-size: calc(var(--base) * 1rem + var(--coefficient) * 1vw); scroll-behavior: smooth; scroll-padding-top: 5rem; }
*, *::before, *::after { box-sizing: border-box; -webkit-tap-highlight-color: transparent; }
body { margin: 0; background: var(--white); color: var(--ink); font-family: 'DM Sans', system-ui, sans-serif; overflow-x: hidden; }
a { color: var(--ink); text-decoration: none; }
a:hover { color: var(--purple); }
img, svg, video { display: block; max-width: 100%; }
::selection { background: var(--purple); color: #fff; }

@keyframes drift { 0%, 100% { transform: translate3d(0, 0, 0) scale(1); } 50% { transform: translate3d(2%, -3%, 0) scale(1.06); } }
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.25; } }
@keyframes slowspin { to { transform: rotate(360deg); } }
@keyframes ping {
  0% { box-shadow: 0 0 0 0 rgba(108, 63, 228, .55), 0 0 0 3px rgba(255, 255, 255, .95); }
  70% { box-shadow: 0 0 0 .85rem rgba(108, 63, 228, 0), 0 0 0 3px rgba(255, 255, 255, .95); }
  100% { box-shadow: 0 0 0 0 rgba(108, 63, 228, 0), 0 0 0 3px rgba(255, 255, 255, .95); }
}
@keyframes floaty { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-.35rem); } }
@keyframes shimmer { 0% { background-position: 200% 50%; } 100% { background-position: -200% 50%; } }

[data-navtext] { position: relative; }
.nav-menu:hover [data-navtext] { opacity: .85; }
a[data-underline] { position: relative; display: inline-block; }
a[data-underline]::after {
  content: ""; position: absolute; left: 0; bottom: -.25rem; width: 100%; height: 1px; background: currentColor;
  transform: scaleX(0); transform-origin: right center; transition: transform .35s cubic-bezier(.2, .7, .2, 1);
}
a[data-underline]:hover::after { transform: scaleX(1); transform-origin: left center; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; }
}

.container { max-width: 84rem; margin: 0 auto; }
.dot {
  display: block; flex: none;
  background: linear-gradient(140deg, var(--purple), var(--purple-soft));
}
.gradient-text {
  background-image: linear-gradient(96deg, #3a2585 0%, #6c3fe4 42%, #a98bff 100%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: var(--purple);
}
.eyebrow-row { display: flex; align-items: center; gap: .7rem; }
.eyebrow-row.is-center { justify-content: center; }
.eyebrow-row .dot { width: 1.15rem; height: 1.15rem; border-radius: .3rem .58rem .3rem .58rem; }
.eyebrow-row span.label { font-family: 'Sora', sans-serif; font-size: 1.1rem; font-weight: 500; letter-spacing: -.02em; }
.eyebrow-kicker { display: flex; align-items: center; gap: .7rem; font-family: 'Sora', sans-serif; font-size: .85rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--purple); }
.eyebrow-kicker.is-center { justify-content: center; }
.eyebrow-kicker .dot { width: .9rem; height: .9rem; border-radius: 50%; }

[data-reveal] { opacity: 0; transform: translateY(1.2rem); }
[data-highlight] [data-word] { display: inline-block; color: rgba(11, 11, 15, .2); transition: color .5s ease; }

/* -------------------------------------------------------------------- */
/* Buttons                                                               */
/* -------------------------------------------------------------------- */

.btn-dark {
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  padding: .95rem 2rem; border-radius: 999px; background: var(--ink); color: #fff;
  border: none; font-family: 'DM Sans', sans-serif; font-size: .98rem; font-weight: 500;
  white-space: nowrap; cursor: pointer; transition: background .3s ease;
}
.btn-dark:hover { background: var(--purple); color: #fff; }
.btn-ghost {
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  padding: .95rem 2rem; border-radius: 999px; background: transparent; color: var(--ink);
  border: 1px solid var(--line); font-family: 'DM Sans', sans-serif; font-size: .98rem;
  white-space: nowrap; cursor: pointer; transition: background .3s ease, border-color .3s ease;
}
.btn-ghost:hover { background: #f7f5ff; border-color: rgba(108, 63, 228, .4); }
.btn-ghost .arrow { color: var(--purple); }
.cta-row { display: flex; justify-content: center; gap: .9rem; flex-wrap: wrap; }

/* -------------------------------------------------------------------- */
/* Header / nav                                                          */
/* -------------------------------------------------------------------- */

.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 80;
  background: rgba(255, 255, 255, 0); border-bottom: 1px solid rgba(11, 11, 15, 0);
  transition: background .35s ease, border-color .35s ease, backdrop-filter .35s ease;
}
.site-nav.is-solid { background: rgba(255, 255, 255, .97); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px); border-bottom-color: var(--line); }
.nav-bar { display: flex; align-items: center; justify-content: space-between; gap: 2rem; padding: 1rem 2.6rem; }
.nav-logo { display: flex; align-items: center; gap: .55rem; }
.nav-wordmark { font-family: 'Sora', sans-serif; font-size: 1.35rem; font-weight: 700; letter-spacing: -.05em; color: #fff; transition: color .35s ease; }
.nav-wordmark-sub { font-weight: 400; letter-spacing: -.02em; opacity: .75; }
.site-nav.is-solid .nav-wordmark, .site-nav.is-solid .nav-link-text, .site-nav.is-solid .nav-caret { color: var(--ink); }
.nav-links { display: flex; align-items: center; gap: 2.2rem; font-size: 1rem; }
.nav-menu { display: flex; align-items: center; gap: .4rem; padding: 1.2rem 0; cursor: default; }
.nav-link-text { color: #fff; transition: color .35s ease; }
.nav-caret { font-size: .55rem; opacity: .7; color: #fff; transition: color .35s ease; }
.nav-cta { padding: .8rem 1.7rem; }
.nav-panel {
  display: none; border-top: 1px solid var(--line); background: rgba(255, 255, 255, .97);
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
}
.nav-panel.is-open { display: block; }
.nav-panel-inner { max-width: 84rem; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr)); gap: .6rem; padding: 1.4rem 2.6rem 1.8rem; }
.nav-subitem { display: block; padding: 1rem 1.1rem; border-radius: 1rem; transition: background .25s ease, transform .3s cubic-bezier(.2, .7, .2, 1); }
.nav-subitem:hover { background: #f7f5ff; transform: translateX(.3rem); }
.nav-subitem .t { font-family: 'Sora', sans-serif; font-size: 1.02rem; font-weight: 500; letter-spacing: -.02em; color: var(--ink); }
.nav-subitem .d { margin-top: .3rem; font-size: .9rem; line-height: 1.45; color: var(--body-c); }

/* Brand mark: gradient badge + shimmering monogram, used in the nav and footer */
.brand-mark {
  flex: none; display: flex; align-items: center; justify-content: center; width: 2.7rem; height: 2.7rem;
  border-radius: .72rem 1.1rem .72rem 1.1rem; background: linear-gradient(140deg, #3a2585, #6c3fe4 45%, #a98bff);
  padding: .15rem; box-sizing: border-box; box-shadow: 0 .25rem .8rem rgba(108, 63, 228, .18);
}
.brand-mark-inner { display: flex; align-items: center; justify-content: center; width: 100%; height: 100%; border-radius: .62rem 1rem .62rem 1rem; background: #fff; }
.brand-mono { position: relative; display: inline-flex; align-items: center; font-family: 'Sora', sans-serif; font-weight: 700; line-height: 1; transform: translateY(.09em); }
.brand-letter {
  font-size: 1.16rem; background-image: linear-gradient(100deg, #3a2585 0%, #6c3fe4 28%, #c9b3ff 46%, #6c3fe4 64%, #3a2585 100%);
  background-size: 300% 100%; -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  animation: shimmer 4.5s linear infinite;
}
.brand-letter-2 {
  margin-left: -.3em; transform: translateY(-.2em);
  filter: drop-shadow(.045em 0 0 #fff) drop-shadow(-.045em 0 0 #fff) drop-shadow(0 .045em 0 #fff) drop-shadow(0 -.045em 0 #fff);
}

/* Mobile nav: hamburger + slide-down accordion menu, shown under 900px */
.nav-burger {
  display: none; flex: none; align-items: center; justify-content: center; width: 2.7rem; height: 2.7rem; padding: 0;
  border: 1px solid rgba(255, 255, 255, .4); border-radius: .8rem; background: rgba(255, 255, 255, .12); cursor: pointer;
  transition: border-color .3s ease, background .3s ease;
}
.nav-burger-bars { display: flex; flex-direction: column; gap: .28rem; width: 1.1rem; }
.nav-burger-bar { display: block; height: 2px; background: #fff; border-radius: 2px; transition: transform .3s ease, opacity .25s ease, background .3s ease; }
.nav-burger.is-open .nav-burger-bar:nth-child(1) { transform: translateY(.3rem) rotate(45deg); }
.nav-burger.is-open .nav-burger-bar:nth-child(2) { opacity: 0; }
.nav-burger.is-open .nav-burger-bar:nth-child(3) { transform: translateY(-.3rem) rotate(-45deg); }

.mobile-nav-panel {
  display: none; border-top: 1px solid var(--line); background: rgba(255, 255, 255, .98);
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px); max-height: calc(100vh - 4.7rem); overflow-y: auto;
}
.mobile-nav-panel.is-open { display: block; }
.mobile-nav-inner { display: flex; flex-direction: column; padding: 1rem 1.6rem 1.8rem; }
.mobile-nav-item { border-bottom: 1px solid var(--line); }
.mobile-nav-item-head { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.1rem .2rem; cursor: pointer; }
.mobile-nav-item-head .label { font-family: 'Sora', sans-serif; font-size: 1.15rem; font-weight: 500; letter-spacing: -.02em; color: var(--ink); }
.mobile-nav-item-head .sign { display: flex; align-items: center; justify-content: center; width: 1.8rem; height: 1.8rem; border-radius: 50%; background: var(--lilac); color: var(--purple); font-size: .9rem; flex: none; }
.mobile-nav-item-body { display: none; flex-direction: column; gap: .2rem; padding: 0 .2rem 1rem; }
.mobile-nav-item.is-open .mobile-nav-item-body { display: flex; }
.mobile-nav-subitem { display: block; padding: .7rem .9rem; border-radius: .9rem; background: var(--lilac-2); }
.mobile-nav-subitem .t { font-family: 'Sora', sans-serif; font-size: 1rem; font-weight: 500; color: var(--ink); }
.mobile-nav-subitem .d { margin-top: .2rem; font-size: .88rem; line-height: 1.45; color: var(--body-c); }
.mobile-nav-cta { margin-top: 1.4rem; padding: 1rem 1.7rem; border-radius: 999px; background: var(--ink); color: #fff; font-size: 1rem; font-weight: 500; text-align: center; }

@media (min-width: 900px) {
  .nav-burger, .mobile-nav-panel { display: none !important; }
}
@media (max-width: 899px) {
  .nav-links, .nav-cta { display: none !important; }
  .nav-burger { display: flex; }
}

/* -------------------------------------------------------------------- */
/* Hero                                                                  */
/* -------------------------------------------------------------------- */

.hero {
  position: relative; min-height: 82vh; overflow: hidden;
  display: flex; align-items: flex-end;
  background: linear-gradient(155deg, #241650 0%, #3a2585 45%, #0b0b0f 100%);
}
.hero-media, .hero-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-media { background: var(--panel); display: flex; align-items: center; justify-content: center; color: var(--muted); font-size: .85rem; text-align: center; padding: 2rem; }
.hero-scrim {
  position: absolute; inset: 0; pointer-events: none;
  /* Weighted toward the lower half, where the (now taller) copy block sits. */
  background: linear-gradient(180deg, rgba(11, 11, 15, .22) 0%, rgba(11, 11, 15, .08) 26%, rgba(11, 11, 15, .5) 55%, rgba(11, 11, 15, .82) 82%, rgba(11, 11, 15, .92) 100%);
}
/* Relative + flex-item so the section grows when the copy is taller than
   82vh (long checklist on narrow screens) instead of clipping at the top.
   The generous top padding keeps the first line clear of the fixed nav. */
.hero-content { position: relative; z-index: 2; width: 100%; display: flex; align-items: flex-end; justify-content: space-between; gap: 2rem; flex-wrap: wrap; padding: 7rem 2.6rem 2rem; pointer-events: none; }
.hero-copy { max-width: 38rem; pointer-events: auto; }
.hero-brand {
  display: block; font-family: 'Sora', sans-serif; font-weight: 600; letter-spacing: .18em; text-transform: uppercase;
  font-size: clamp(.72rem, .62rem + .35vw, .85rem); color: var(--purple-soft);
  text-shadow: 0 .1rem 1.4rem rgba(11, 11, 15, .45); margin-bottom: .9rem;
}
.hero-title { margin: 0; font-family: 'Sora', sans-serif; font-size: clamp(1.7rem, 1.15rem + 2.6vw, 2.9rem); line-height: 1.12; font-weight: 500; letter-spacing: -.03em; color: #fff; text-shadow: 0 .1rem 1.4rem rgba(11, 11, 15, .35); }
.hero-sub { display: block; font-size: 1rem; line-height: 1.5; font-weight: 400; letter-spacing: 0; margin-top: .8rem; color: rgba(255, 255, 255, .88); max-width: 32rem; text-shadow: 0 .1rem 1.1rem rgba(11, 11, 15, .5); }
.hero-list { list-style: none; margin: 1.3rem 0 0; padding: 0; display: grid; gap: .65rem; max-width: 32rem; }
.hero-list li {
  position: relative; padding-left: 2.1rem; font-size: .98rem; line-height: 1.4; color: rgba(255, 255, 255, .92);
  text-shadow: 0 .1rem 1.1rem rgba(11, 11, 15, .5);
}
.hero-list li::before {
  content: "\2713"; position: absolute; left: 0; top: 0;
  display: flex; align-items: center; justify-content: center;
  width: 1.45rem; height: 1.45rem; border-radius: 50%;
  background: rgba(255, 255, 255, .16); border: 1px solid rgba(255, 255, 255, .32);
  color: #fff; font-size: .68rem; font-weight: 700;
}
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: .8rem; margin-top: 1.4rem; }
.hero-cta { display: inline-flex; margin-top: 0; }
.hero-see {
  display: inline-flex; align-items: center; justify-content: center;
  padding: .95rem 2rem; border-radius: 999px;
  background: rgba(255, 255, 255, .12); color: #fff;
  border: 1px solid rgba(255, 255, 255, .45);
  font-family: 'DM Sans', sans-serif; font-size: .98rem;
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  transition: background .3s ease, border-color .3s ease;
}
.hero-see:hover { background: rgba(255, 255, 255, .2); border-color: rgba(255, 255, 255, .7); color: #fff; }
.hero-note { margin: 1rem 0 0; font-size: .92rem; color: rgba(255, 255, 255, .72); text-shadow: 0 .1rem 1.1rem rgba(11, 11, 15, .5); }
.hero-note strong { color: #fff; font-weight: 600; }

/* -------------------------------------------------------------------- */
/* Why this matters                                                      */
/* -------------------------------------------------------------------- */

.matters { padding: 5.5rem 2.6rem 5.5rem; text-align: center; }
.matters h2 {
  margin: 1.4rem auto 0; max-width: 46rem; font-family: 'Sora', sans-serif;
  font-size: clamp(2rem, 3.8vw, 3.4rem); line-height: 1.09; font-weight: 500; letter-spacing: -.04em;
}
.matters-lead { max-width: 44rem; margin: 1.6rem auto 0; font-size: 1.15rem; line-height: 1.55; color: var(--body-c); }
.matters-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr)); gap: 1.4rem;
  max-width: 62rem; margin: 3.6rem auto 0; text-align: left;
}
.matters-card { padding: 1.9rem 1.7rem 2rem; border-radius: 1.4rem; background: var(--panel); }
.matters-card h3 { margin: 0; font-family: 'Sora', sans-serif; font-size: 1.15rem; font-weight: 500; letter-spacing: -.02em; }
.matters-card p { margin: .7rem 0 0; font-size: .98rem; line-height: 1.6; color: var(--body-c); }

/* -------------------------------------------------------------------- */
/* What You Get                                                          */
/* -------------------------------------------------------------------- */

.section-pad { padding: 0 2.6rem 6rem; }
.section-head-eyebrow-gap { margin: 2.6rem 0 0; max-width: 42rem; font-family: 'Sora', sans-serif; font-size: clamp(2.2rem, 4.4vw, 4rem); line-height: 1.04; font-weight: 500; letter-spacing: -.04em; }

.pillar-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(19rem, 1fr)); gap: 1.6rem; margin-top: 4rem; }
.pillar-viz { position: relative; height: 24rem; border-radius: 1.4rem; overflow: hidden; background: var(--panel); transition: transform .4s ease; }
.pillar-viz.is-form { background: #f3efff; }
.pillar-viz svg { width: 100%; height: 100%; display: block; }
.pillar-grid h3 { margin: 1.6rem 0 0; font-family: 'Sora', sans-serif; font-size: 1.55rem; line-height: 1.2; font-weight: 500; letter-spacing: -.03em; }
.pillar-grid p { margin: .8rem 0 0; font-size: 1.02rem; line-height: 1.6; color: var(--body-c); }

.what-else-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr)); gap: 1.6rem 2.5rem; margin-top: 3rem; padding-top: 2.5rem; border-top: 1px solid var(--line); }
.what-else h4 { margin: 0; font-family: 'Sora', sans-serif; font-size: 1.15rem; font-weight: 500; letter-spacing: -.02em; }
.what-else p { margin: .5rem 0 0; font-size: .98rem; line-height: 1.55; color: var(--body-c); }

/* -------------------------------------------------------------------- */
/* Named website manager                                                 */
/* -------------------------------------------------------------------- */

.manager {
  max-width: 62rem; margin: 0 auto; padding: 2.6rem 2.8rem; border-radius: 1.6rem;
  background: var(--lilac-2); display: flex; align-items: flex-start; gap: 1.5rem;
}
.manager-badge {
  flex: none; display: flex; align-items: center; justify-content: center;
  width: 3.4rem; height: 3.4rem; border-radius: 50%; background: #fff;
  color: var(--purple); font-size: 1.2rem; box-shadow: 0 .3rem 1rem rgba(108, 63, 228, .12);
}
.manager h3 { margin: .25rem 0 0; font-family: 'Sora', sans-serif; font-size: 1.4rem; line-height: 1.25; font-weight: 500; letter-spacing: -.03em; }
.manager p { margin: .8rem 0 0; font-size: 1.05rem; line-height: 1.6; color: var(--body-c); max-width: 46rem; }

/* -------------------------------------------------------------------- */
/* Sites we have built                                                   */
/* -------------------------------------------------------------------- */

.work-section { padding: 5rem 2.6rem 6rem; text-align: center; }
.work-section h2 { margin: 0; font-family: 'Sora', sans-serif; font-size: clamp(2.2rem, 4.6vw, 4.2rem); line-height: 1.06; font-weight: 500; letter-spacing: -.04em; }
.work-section > .container > p { max-width: 40rem; margin: 1.4rem auto 0; font-size: 1.12rem; line-height: 1.5; color: var(--body-c); }

.work-panel { position: relative; max-width: 56rem; margin: 3.6rem auto 3rem; border-radius: 1.6rem; overflow: hidden; background: var(--panel); height: 46rem; }
.work-panel video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.work-panel-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(11, 11, 15, .42) 0%, rgba(36, 22, 80, .3) 45%, rgba(11, 11, 15, .5) 100%); pointer-events: none; }
.work-tag { position: absolute; display: flex; align-items: center; gap: 0; pointer-events: none; }
.work-tag.is-reverse { flex-direction: row-reverse; }
.work-tag .pill { padding: .5rem 1rem; border-radius: 999px; background: rgba(108, 63, 228, .95); color: #fff; font-size: .92rem; white-space: nowrap; border: 1px solid rgba(255, 255, 255, .55); box-shadow: 0 .5rem 1.4rem rgba(11, 11, 15, .35); backdrop-filter: blur(6px); animation: floaty 6s ease-in-out infinite; }
.work-tag .conn { display: block; height: 2px; background: linear-gradient(90deg, #fff, var(--purple)); box-shadow: 0 0 .4rem rgba(11, 11, 15, .35); }
.work-tag .tag-dot { display: block; width: .7rem; height: .7rem; margin: 0 -1px; border-radius: 50%; background: #fff; animation: ping 2.6s ease-out infinite; }

.client-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr)); gap: 1.3rem; margin-top: 1.6rem; max-width: 62rem; margin-left: auto; margin-right: auto; }
.client-card { border-radius: 1.1rem; border: 1px solid var(--line); text-align: left; overflow: hidden; transition: box-shadow .35s ease, transform .35s ease, border-color .35s ease; }
.client-shot { position: relative; height: 13rem; overflow: hidden; background: #0b0b0f; }
.client-shot video, .client-shot .client-shot-fallback { position: absolute; inset: 0; margin: 0; }
.client-shot video { width: 100%; height: 100%; object-fit: cover; z-index: 1; }
.client-shot .client-shot-fallback {
  display: grid; place-items: center; padding: .9rem;
  color: rgba(255, 255, 255, .5); font-size: .74rem; line-height: 1.45; text-align: center; white-space: normal;
}
.client-body { padding: 1.3rem 1.4rem 1.5rem; }
.client-body .name { font-family: 'Sora', sans-serif; font-size: 1.05rem; font-weight: 500; letter-spacing: -.02em; }
.client-body p { margin: .5rem 0 0; font-size: .95rem; line-height: 1.55; color: var(--body-c); }
.client-body .client-link { display: inline-block; margin-top: .9rem; font-size: .9rem; font-weight: 500; color: var(--purple); }
a.client-link:hover { color: var(--purple-deep); }

/* -------------------------------------------------------------------- */
/* How it works                                                          */
/* -------------------------------------------------------------------- */

.step-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(11rem, 1fr)); gap: 1.2rem; margin-top: 3.4rem; }
.step-card { padding: 2rem 1.7rem 2.2rem; border-radius: 1.4rem; background: var(--panel); border: 1px solid transparent; transition: box-shadow .35s ease, transform .35s ease, border-color .35s ease; }
.step-card .n { display: flex; align-items: center; justify-content: center; width: 4.2rem; height: 4.2rem; border-radius: 50%; background: var(--lilac); font-family: 'Sora', sans-serif; font-size: 2.1rem; line-height: 1; font-weight: 500; letter-spacing: -.05em; color: var(--purple); }
.step-card h3 { margin: 1.2rem 0 0; font-family: 'Sora', sans-serif; font-size: 1.2rem; line-height: 1.25; font-weight: 500; letter-spacing: -.02em; color: var(--ink); }
.step-card p { margin: .55rem 0 0; font-size: .98rem; line-height: 1.6; color: var(--body-c); }
.step-foot { margin: 2rem 0 0; text-align: center; font-size: 1.12rem; color: var(--body-c); }

/* -------------------------------------------------------------------- */
/* Who we build for (audience cards)                                     */
/* -------------------------------------------------------------------- */

.audience-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(19rem, 1fr)); gap: 1.6rem; }
.audience-card {
  position: relative; overflow: hidden; padding: 2.6rem 2rem 2.8rem; border-radius: 1.4rem;
  background: var(--panel); color: var(--ink);
  transition: background .45s ease, color .45s ease, box-shadow .35s ease, transform .35s ease;
}
.audience-deco { position: absolute; right: -4rem; bottom: -6rem; width: 20rem; height: 20rem; border-radius: 50%; background: radial-gradient(circle at 35% 35%, rgba(169, 139, 255, .55), rgba(108, 63, 228, .28) 45%, rgba(239, 234, 255, 0) 72%); opacity: 0; transition: opacity .45s ease, transform .6s ease; pointer-events: none; }
.audience-wave { position: absolute; left: 0; right: 0; bottom: 0; height: 9rem; opacity: 0; transition: opacity .45s ease; pointer-events: none; background: radial-gradient(120% 90% at 20% 130%, rgba(108, 63, 228, .22), rgba(255, 255, 255, 0) 60%), radial-gradient(90% 70% at 80% 140%, rgba(169, 139, 255, .3), rgba(255, 255, 255, 0) 62%); }
.audience-icon-row { position: relative; display: flex; justify-content: center; }
.audience-icon { display: flex; align-items: center; justify-content: center; width: 3.6rem; height: 3.6rem; border-radius: 50%; background: #fff; color: var(--purple); font-size: 1.2rem; box-shadow: 0 .3rem 1rem rgba(108, 63, 228, .12); transition: transform .45s ease, box-shadow .45s ease; }
.audience-card h3 { margin: 1.8rem 0 0; font-family: 'Sora', sans-serif; font-size: 1.7rem; font-weight: 500; letter-spacing: -.03em; text-align: center; }
.audience-card .body-text { margin: 1rem 0 0; font-size: 1.02rem; line-height: 1.6; color: var(--body-c); text-align: center; transition: color .45s ease; }
.audience-card.is-active { background: linear-gradient(150deg, #f7f5ff 0%, #efeaff 100%); box-shadow: 0 1.4rem 2.8rem rgba(108, 63, 228, .16); transform: translateY(-.3rem); }
.audience-card.is-active .audience-deco { opacity: 1; transform: translate(-1.2rem, -1.2rem); }
.audience-card.is-active .audience-wave { opacity: 1; }
.audience-card.is-active .audience-icon { transform: scale(1.1) rotate(-6deg); box-shadow: 0 .6rem 1.5rem rgba(108, 63, 228, .28); }
.audience-foot { margin: 3.4rem 0 0; font-size: 1.15rem; line-height: 1.5; color: var(--body-c); }
.audience-foot .cta-row { margin-top: 1.8rem; }

/* -------------------------------------------------------------------- */
/* Price panel                                                          */
/* -------------------------------------------------------------------- */

.price-panel {
  position: relative; max-width: 84rem; margin: 0 auto; padding: 4rem 3.4rem 4.4rem; border-radius: 1.8rem; overflow: hidden;
  background: linear-gradient(120deg, #0b0b16 0%, #141024 55%, #241650 100%); color: #fff;
}
.price-blob { position: absolute; top: -8rem; right: -6rem; width: 34rem; height: 34rem; border-radius: 50%; background: radial-gradient(circle at 45% 45%, rgba(108, 63, 228, .55), rgba(169, 139, 255, .18) 48%, rgba(11, 11, 22, 0) 74%); filter: blur(1.6rem); animation: drift 22s ease-in-out infinite; pointer-events: none; }
.price-body { position: relative; max-width: 62rem; }
.price-body h2 { margin: 1.6rem 0 0; max-width: 38rem; font-family: 'Sora', sans-serif; font-size: clamp(2rem, 3.6vw, 3.1rem); line-height: 1.1; font-weight: 500; letter-spacing: -.04em; }
.price-body > p { margin: 1.6rem 0 0; max-width: 40rem; font-size: 1.1rem; line-height: 1.65; color: rgba(255, 255, 255, .72); }
.price-list { list-style: none; margin: 2.4rem 0 0; padding: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: .8rem 2.2rem; }
.price-list li { position: relative; padding-left: 2rem; font-size: 1rem; line-height: 1.45; color: rgba(255, 255, 255, .9); }
.price-list li::before {
  content: "\2713"; position: absolute; left: 0; top: 0;
  display: flex; align-items: center; justify-content: center;
  width: 1.35rem; height: 1.35rem; border-radius: 50%;
  background: rgba(108, 63, 228, .35); border: 1px solid rgba(169, 139, 255, .5);
  color: #d7c6ff; font-size: .66rem; font-weight: 700;
}
.price-compare {
  margin: 2.8rem 0 0; padding-top: 2.4rem; max-width: 52rem;
  border-top: 1px solid rgba(255, 255, 255, .14);
  font-family: 'Sora', sans-serif; font-size: clamp(1.15rem, 1.5vw, 1.5rem);
  line-height: 1.4; font-weight: 500; letter-spacing: -.02em; color: rgba(255, 255, 255, .9);
}
.price-compare strong { color: #cbb6ff; font-weight: 600; }
.price-note { margin: 1.3rem 0 0; max-width: 46rem; font-size: .95rem; line-height: 1.6; color: rgba(255, 255, 255, .55); }
.price-body .fill-me {
  background: #f3e4c4; color: #6a5326; outline: none; border-radius: .35em;
  padding: .04em .32em; font-weight: 500; white-space: nowrap;
}

/* -------------------------------------------------------------------- */
/* The promise                                                           */
/* -------------------------------------------------------------------- */

.promise { max-width: 60rem; margin: 0 auto; text-align: center; }
.promise h2 { margin: 0 auto; max-width: 40rem; font-family: 'Sora', sans-serif; font-size: clamp(1.9rem, 3.4vw, 2.9rem); line-height: 1.12; font-weight: 500; letter-spacing: -.04em; }
.promise .lede { max-width: 44rem; margin: 1.4rem auto 0; font-size: 1.15rem; line-height: 1.55; color: var(--body-c); }
.promise ul {
  list-style: none; margin: 2.6rem auto 0; padding: 0; max-width: 46rem;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem 2.4rem; text-align: left;
}
.promise li { position: relative; padding-left: 2rem; font-size: 1rem; line-height: 1.5; color: var(--ink); }
.promise li::before {
  content: "\2713"; position: absolute; left: 0; top: .1rem;
  display: flex; align-items: center; justify-content: center;
  width: 1.4rem; height: 1.4rem; border-radius: 50%;
  background: var(--lilac); border: 1px solid rgba(108, 63, 228, .28);
  color: var(--purple); font-size: .68rem; font-weight: 700;
}

/* -------------------------------------------------------------------- */
/* Common questions (FAQ)                                                */
/* -------------------------------------------------------------------- */

.faq-section { padding: 0 2.6rem 4.5rem; background: var(--lilac-2); }
.faq-inner { max-width: 58rem; margin: 0 auto; padding-top: 4.5rem; text-align: center; }
.faq-inner h2 { margin: 1.6rem 0 2.4rem; font-family: 'Sora', sans-serif; font-size: clamp(1.9rem, 3.6vw, 3rem); line-height: 1.08; font-weight: 500; letter-spacing: -.04em; }
.faq-list { display: flex; flex-direction: column; gap: .8rem; text-align: left; }
.faq-row { padding: 1.25rem 1.5rem; border-radius: 1.1rem; background: #fff; border: 1px solid var(--line); box-shadow: 0 .5rem 1.3rem rgba(11, 11, 15, .05); cursor: pointer; transition: box-shadow .3s ease; }
.faq-row-top { display: flex; align-items: center; justify-content: space-between; gap: 1.2rem; }
.faq-row-top h3 { margin: 0; font-family: 'Sora', sans-serif; font-size: 1.05rem; line-height: 1.35; font-weight: 500; letter-spacing: -.02em; }
.faq-toggle { display: flex; align-items: center; justify-content: center; width: 1.9rem; height: 1.9rem; border-radius: 50%; background: var(--lilac); color: var(--purple); font-size: .95rem; flex: none; }
.faq-answer { margin: .85rem 0 0; font-size: .98rem; line-height: 1.6; color: var(--body-c); max-width: 44rem; display: none; }
.faq-row.is-open .faq-answer { display: block; }

/* -------------------------------------------------------------------- */
/* Contact                                                               */
/* -------------------------------------------------------------------- */

.contact-section { padding: 4rem 2.6rem 6rem; }
.contact-box { max-width: 60rem; margin: 0 auto; padding: 4rem 3rem 4.4rem; border-radius: 1.8rem; background: var(--lilac-2); text-align: center; }
.contact-box h2 { margin: 0; font-family: 'Sora', sans-serif; font-size: clamp(2.2rem, 4.6vw, 4rem); line-height: 1.04; font-weight: 500; letter-spacing: -.04em; }
.contact-box > p { max-width: 36rem; margin: 1.4rem auto 0; font-size: 1.1rem; line-height: 1.55; color: var(--body-c); }
.contact-form { display: flex; flex-direction: column; gap: 1rem; margin-top: 2.6rem; text-align: left; }
.form-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr)); gap: 1rem; }
.form-input, .form-select, .form-textarea {
  padding: 1.1rem 1.4rem; border-radius: 999px; border: 1px solid var(--line); background: #fff;
  font-family: 'DM Sans', sans-serif; font-size: 1rem; color: var(--ink); outline: none; transition: border-color .3s ease; width: 100%;
}
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--purple); }
.form-input.is-invalid, .form-select.is-invalid, .form-textarea.is-invalid { border-color: #d64545; }
.form-select-wrap { position: relative; }
.form-select { appearance: none; padding-right: 3rem; }
.form-select-caret { position: absolute; right: 1.4rem; top: 50%; transform: translateY(-50%); font-size: .7rem; color: var(--muted); pointer-events: none; }
.form-textarea { border-radius: 1.4rem; min-height: 9rem; resize: vertical; font-family: 'DM Sans', sans-serif; }
.form-error { padding: .9rem 1.2rem; border-radius: 1rem; background: rgba(214, 69, 69, .08); border: 1px solid rgba(214, 69, 69, .35); font-size: .95rem; color: #a92f2f; display: none; }
.form-error.is-visible { display: block; }
.form-terms { display: flex; align-items: center; gap: .8rem; font-size: .98rem; color: var(--body-c); cursor: pointer; }
.form-checkbox { display: block; width: 1.15rem; height: 1.15rem; border-radius: .35rem; border: 1px solid rgba(11, 11, 15, .25); background: #fff; flex: none; transition: background .2s ease, border-color .2s ease; }
.form-checkbox.is-checked { background: var(--purple); border-color: var(--purple); }
.form-terms a { color: var(--purple); text-decoration: underline; }
.form-submit { margin-top: .6rem; align-self: flex-start; }
.form-submit[disabled] { opacity: .6; cursor: default; pointer-events: none; }
.contact-done { display: none; margin-top: 2.6rem; flex-direction: column; align-items: center; gap: 1.2rem; }
.contact-done.is-visible { display: flex; }
.contact-done .dot { width: 2.4rem; height: 2.4rem; border-radius: .6rem 1.1rem .6rem 1.1rem; }
.contact-done h3 { margin: 0; font-family: 'Sora', sans-serif; font-size: 2rem; font-weight: 500; letter-spacing: -.03em; }
.contact-done p { margin: 0; max-width: 30rem; font-size: 1.05rem; line-height: 1.6; color: var(--body-c); }

/* -------------------------------------------------------------------- */
/* Journey + footer                                                     */
/* -------------------------------------------------------------------- */

.journey-section { position: relative; padding: 5rem 2.6rem 2.6rem; background: linear-gradient(180deg, #fff 0%, var(--lilac-2) 100%); overflow: hidden; }
.journey-corner { position: absolute; top: 0; right: 0; width: 34rem; height: 30rem; overflow: hidden; pointer-events: none; }
.journey-blob-1 { position: absolute; top: -6rem; right: -6rem; width: 26rem; height: 26rem; border-radius: 50%; background: radial-gradient(circle at 40% 40%, rgba(169, 139, 255, .45), rgba(108, 63, 228, .22) 45%, rgba(239, 234, 255, 0) 72%); filter: blur(1rem); animation: drift 16s ease-in-out infinite; }
.journey-blob-2 { position: absolute; top: -9rem; right: -9rem; width: 32rem; height: 32rem; border-radius: 50%; background: conic-gradient(from 0deg, rgba(108, 63, 228, .35), rgba(169, 139, 255, 0) 30%, rgba(169, 139, 255, .4) 58%, rgba(108, 63, 228, 0) 84%, rgba(108, 63, 228, .35)); filter: blur(2.4rem); animation: slowspin 24s linear infinite; }
.journey-highlight { position: absolute; top: 3rem; right: 7rem; width: 12rem; height: 12rem; border-radius: 50%; background: radial-gradient(circle, rgba(255, 255, 255, .75), rgba(169, 139, 255, .25) 55%, rgba(239, 234, 255, 0) 78%); filter: blur(.8rem); animation: drift 11s ease-in-out infinite reverse; }
.journey-photo { position: absolute; top: -7rem; right: -7rem; width: 26rem; height: 26rem; object-fit: cover; border-radius: 50%; animation: drift 20s ease-in-out infinite; mask-image: radial-gradient(circle at 62% 38%, #000 52%, transparent 82%); -webkit-mask-image: radial-gradient(circle at 62% 38%, #000 52%, transparent 82%); }
.journey-inner { position: relative; max-width: 84rem; margin: 0 auto; }
.journey-inner h2 { margin: 0; font-family: 'Sora', sans-serif; font-size: clamp(1.8rem, 1.3rem + 2.2vw, 3.4rem); line-height: 1.22; font-weight: 500; letter-spacing: -.04em; }
.journey-sub { margin: 1.3rem 0 0; max-width: 40rem; font-size: 1.12rem; line-height: 1.55; color: var(--body-c); }
.journey-inner > .btn-dark { display: inline-block; margin-top: 1.9rem; }
.journey-note { margin: 1rem 0 0; font-size: .9rem; color: var(--muted); }

.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(12rem, 1fr)); gap: 2.4rem; margin-top: 7rem; }
.footer-col { display: flex; flex-direction: column; gap: .9rem; }
.footer-col .head { font-family: 'Sora', sans-serif; font-size: 1rem; font-weight: 600; letter-spacing: -.01em; color: var(--ink); }
.footer-col a { font-size: 1rem; color: var(--body-c); align-self: flex-start; }
.footer-col a:hover { color: var(--purple); }
.footer-bottom { display: flex; flex-wrap: wrap; gap: 1rem 2.5rem; justify-content: space-between; margin-top: 4rem; padding-top: 1.4rem; border-top: 1px solid var(--line); font-size: .9rem; color: var(--muted); }
.footer-entity { text-align: right; max-width: 26rem; line-height: 1.6; }

/* -------------------------------------------------------------------- */
/* Placeholder markers                                                  */
/* -------------------------------------------------------------------- */

.fill-me { background: rgba(108, 63, 228, .12); outline: 1.5px dashed var(--purple); outline-offset: 2px; border-radius: .3em; padding: 0 .2em; white-space: nowrap; }

/* -------------------------------------------------------------------- */
/* Cookie banner                                                        */
/* -------------------------------------------------------------------- */

.cookie-banner {
  position: fixed; bottom: 1.2rem; left: 1.2rem; right: 1.2rem; z-index: 90;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.2rem;
  max-width: 50rem; margin: 0 auto; padding: 1.2rem 1.4rem; border-radius: 1.2rem;
  background: #fff; border: 1px solid var(--line); box-shadow: 0 1.2rem 3rem rgba(11, 11, 15, .14);
  transform: translateY(140%); opacity: 0; transition: transform .4s cubic-bezier(.2, .7, .2, 1), opacity .4s ease;
}
.cookie-banner.is-visible { transform: translateY(0); opacity: 1; }
.cookie-banner p { margin: 0; font-size: .95rem; line-height: 1.5; color: var(--body-c); max-width: 26rem; }
.cookie-actions { display: flex; gap: .7rem; }
.cookie-actions button { font-family: 'DM Sans', sans-serif; font-size: .92rem; white-space: nowrap; cursor: pointer; border-radius: 999px; padding: .75rem 1.4rem; }
.cookie-essential { background: var(--ink); color: #fff; border: none; font-weight: 500; }
.cookie-accept-all { background: transparent; color: var(--ink); border: 1px solid var(--line); }

/* -------------------------------------------------------------------- */
/* Responsive                                                            */
/* -------------------------------------------------------------------- */

@media (max-width: 860px) {
  .work-panel { height: 34rem; }
  .work-tag .pill { font-size: .8rem; padding: .4rem .8rem; }
  .price-list { grid-template-columns: 1fr; }
  .promise ul { grid-template-columns: 1fr; gap: .75rem; max-width: 24rem; }
}

@media (max-width: 640px) {
  .hero-content { padding: 5.5rem 1.6rem 1.8rem; }
  .hero-list { gap: .5rem; margin-top: 1.1rem; }
  .hero-actions { margin-top: 1.2rem; flex-direction: column; align-items: stretch; }
  .hero-actions .btn-dark, .hero-actions .hero-see { width: 100%; }
  .price-panel { padding: 2.6rem 1.6rem 3rem; }
  .matters { padding: 4rem 1.4rem 4rem; }
  .matters-grid { margin-top: 2.6rem; gap: 1.1rem; }
  .manager { padding: 2rem 1.6rem; gap: 1.1rem; flex-direction: column; }
  .manager-badge { width: 2.8rem; height: 2.8rem; font-size: 1.05rem; }
  .manager h3 { margin-top: 0; font-size: 1.2rem; }
  .journey-corner { display: none; }
  .journey-inner h2 { font-size: clamp(1.7rem, 1.3rem + 3vw, 2.2rem); }
  .contact-box { padding: 2.6rem 1.4rem 3rem; }
  .cookie-banner { flex-direction: column; align-items: stretch; }
  .work-panel { height: 26rem; }
  .work-tag.pin-hide-sm { display: none; }
  .footer-entity { text-align: left; max-width: none; }
}
