/* =========================================================================
   SwiftLink Designs — Design System
   Palette derived from the SwiftLink Designs logo & hero artwork.
   ========================================================================= */

/* ------------------------------------------------------------- 1. TOKENS */
:root {
  /* Brand */
  --pink:        #F0119C;
  --pink-soft:   #FF52BC;
  --magenta:     #C90B85;
  --purple:      #8A22DE;
  --violet:      #5A16B8;
  --indigo:      #3A0E8F;

  /* Surfaces */
  --ink-950:     #050119;
  --ink-900:     #08021F;
  --ink-850:     #0C0427;
  --ink-800:     #120832;
  --ink-700:     #1B0F45;
  --ink-600:     #2A1858;

  /* Text */
  --text:        #ECE8F6;
  --text-strong: #FFFFFF;
  --text-muted:  #B4A9CE;
  --text-dim:    #8E82AC;

  /* Lines */
  --line:        rgba(255,255,255,.09);
  --line-strong: rgba(255,255,255,.16);

  /* Gradients */
  --grad-brand:  linear-gradient(115deg, var(--pink) 0%, var(--purple) 55%, var(--violet) 100%);
  --grad-text:   linear-gradient(100deg, #FF8AD4 0%, #F0119C 38%, #A855F7 100%);
  --grad-card:   linear-gradient(160deg, rgba(255,255,255,.055), rgba(255,255,255,.015));

  /* Shadows */
  --sh-sm:  0 2px 8px rgba(0,0,0,.3);
  --sh-md:  0 12px 32px -12px rgba(0,0,0,.6);
  --sh-lg:  0 30px 70px -28px rgba(0,0,0,.8);
  --sh-glow: 0 16px 44px -18px rgba(240,17,156,.65);

  /* Type */
  --font-display: 'Outfit', 'Segoe UI', system-ui, -apple-system, sans-serif;
  --font-body: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;

  /* Layout */
  --wrap: 1200px;
  --wrap-narrow: 860px;
  --radius: 18px;
  --radius-lg: 26px;
  --radius-sm: 12px;
  --header-h: 78px;

  /* Motion */
  --ease: cubic-bezier(.22,.61,.36,1);
  --t-fast: .18s var(--ease);
  --t: .32s var(--ease);
}

/* --------------------------------------------------------- 2. FOUNDATION */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
  background: var(--ink-950);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* Ambient brand glow behind everything */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(900px 620px at 82% -8%, rgba(240,17,156,.20), transparent 62%),
    radial-gradient(760px 560px at 4% 22%, rgba(90,22,184,.24), transparent 64%),
    radial-gradient(1000px 700px at 50% 112%, rgba(138,34,222,.16), transparent 66%);
  pointer-events: none;
}

img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--text-strong);
  line-height: 1.14;
  letter-spacing: -.022em;
  margin: 0 0 .55em;
  font-weight: 700;
  text-wrap: balance;
}
h1 { font-size: clamp(2.1rem, 4.9vw, 3.55rem); letter-spacing: -.032em; }
h2 { font-size: clamp(1.75rem, 3.9vw, 2.85rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); }
h4 { font-size: 1.05rem; }
p  { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }
ul { margin: 0; padding: 0; }
strong { color: var(--text-strong); font-weight: 650; }

::selection { background: var(--pink); color: #fff; }

:focus-visible {
  outline: 3px solid var(--pink-soft);
  outline-offset: 3px;
  border-radius: 6px;
}

/* Skip link */
.skip-link {
  position: absolute; left: 12px; top: -100px;
  background: var(--pink); color: #fff;
  padding: 12px 20px; border-radius: 0 0 10px 10px;
  z-index: 999; font-weight: 600;
  transition: top var(--t-fast);
}
.skip-link:focus { top: 0; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ------------------------------------------------------------- 3. LAYOUT */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: 22px; }
.wrap-narrow { max-width: var(--wrap-narrow); }

section { position: relative; }
.section { padding: clamp(62px, 8vw, 116px) 0; }
.section-tight { padding: clamp(48px, 6vw, 82px) 0; }

.section-alt {
  background:
    linear-gradient(180deg, rgba(255,255,255,.028), rgba(255,255,255,0)),
    var(--ink-900);
  border-block: 1px solid var(--line);
}

.grid { display: grid; gap: 22px; }
.g-2 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 330px), 1fr)); }
.g-3 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)); }
.g-4 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr)); }

/* ------------------------------------------------------- 4. TEXT HELPERS */
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-display);
  font-size: .74rem; font-weight: 650;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--pink-soft);
  margin: 0 0 18px;
  padding: 7px 15px 7px 12px;
  border: 1px solid rgba(240,17,156,.3);
  border-radius: 100px;
  background: rgba(240,17,156,.08);
}
.eyebrow::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--pink); box-shadow: 0 0 10px var(--pink);
}

.grad-text {
  background: linear-gradient(100deg, #FF8AD4 0%, #F0119C 40%, #A855F7 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

.lead {
  font-size: clamp(1.02rem, 1.6vw, 1.18rem);
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 62ch;
}

.section-head { max-width: 720px; margin-bottom: clamp(38px, 5vw, 58px); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .lead { margin-inline: auto; }
.section-head p { margin-bottom: 0; }

/* ------------------------------------------------------------ 5. BUTTONS */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-display);
  font-size: .96rem; font-weight: 650; line-height: 1;
  padding: 16px 28px;
  border-radius: 100px;
  border: 1px solid transparent;
  cursor: pointer;
  text-align: center;
  transition: transform var(--t-fast), box-shadow var(--t), background var(--t), border-color var(--t), color var(--t);
  will-change: transform;
  max-width: 100%;
}
.btn svg { width: 17px; height: 17px; flex: none; }

.btn-primary {
  background: var(--grad-brand);
  background-size: 180% 180%;
  color: #fff;
  box-shadow: var(--sh-glow);
}
.btn-primary:hover { transform: translateY(-2px); background-position: 100% 0; box-shadow: 0 22px 52px -18px rgba(240,17,156,.8); }
.btn-primary:active { transform: translateY(0); }

.btn-ghost {
  background: rgba(255,255,255,.05);
  border-color: var(--line-strong);
  color: var(--text-strong);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.3); transform: translateY(-2px); }

.btn-outline {
  background: transparent;
  border-color: rgba(240,17,156,.45);
  color: var(--pink-soft);
}
.btn-outline:hover { background: rgba(240,17,156,.12); border-color: var(--pink); color: #fff; }

.btn-sm { padding: 12px 20px; font-size: .87rem; }
.btn-lg { padding: 18px 34px; font-size: 1.02rem; }
.btn-block { display: flex; width: 100%; }

.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }
.btn-row.center { justify-content: center; }

.link-arrow {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--font-display); font-weight: 600; font-size: .93rem;
  color: var(--pink-soft);
  transition: gap var(--t-fast), color var(--t-fast);
}
.link-arrow svg { width: 15px; height: 15px; transition: transform var(--t-fast); }
.link-arrow:hover { color: #fff; gap: 11px; }
.link-arrow:hover svg { transform: translateX(2px); }

/* ------------------------------------------------------------- 6. HEADER */
.header {
  position: sticky; top: 0; z-index: 100;
  height: var(--header-h);
  display: flex; align-items: center;
  transition: background var(--t), border-color var(--t), box-shadow var(--t);
  border-bottom: 1px solid transparent;
}
.header.scrolled {
  background: rgba(5,1,25,.82);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border-bottom-color: var(--line);
  box-shadow: 0 8px 30px -18px rgba(0,0,0,.9);
}
.header .wrap { display: flex; align-items: center; gap: 20px; }

.brand { display: flex; align-items: center; flex: none; margin-right: auto; }
.brand img { height: 46px; width: auto; }

.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  position: relative;
  font-family: var(--font-display);
  font-size: .93rem; font-weight: 550;
  color: var(--text-muted);
  padding: 9px 13px; border-radius: 9px;
  transition: color var(--t-fast), background var(--t-fast);
  white-space: nowrap;
}
.nav a:hover { color: #fff; background: rgba(255,255,255,.06); }
.nav a[aria-current="page"] { color: #fff; }
.nav a[aria-current="page"]::after {
  content: ''; position: absolute; left: 13px; right: 13px; bottom: 3px;
  height: 2px; border-radius: 2px; background: var(--grad-brand);
}
.header-cta { flex: none; }

.burger {
  display: none;
  width: 46px; height: 46px; flex: none;
  align-items: center; justify-content: center;
  background: rgba(255,255,255,.06);
  border: 1px solid var(--line-strong);
  border-radius: 12px; cursor: pointer; padding: 0;
}
.burger span {
  display: block; width: 19px; height: 2px; border-radius: 2px;
  background: #fff; position: relative;
  transition: transform var(--t), background var(--t-fast);
}
.burger span::before, .burger span::after {
  content: ''; position: absolute; left: 0; width: 19px; height: 2px;
  border-radius: 2px; background: #fff;
  transition: transform var(--t), top var(--t), opacity var(--t-fast);
}
.burger span::before { top: -6px; }
.burger span::after  { top: 6px; }
.burger[aria-expanded="true"] span { background: transparent; }
.burger[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.burger[aria-expanded="true"] span::after  { top: 0; transform: rotate(-45deg); }

/* Mobile drawer */
.mobile-nav {
  position: fixed; inset: var(--header-h) 0 0;
  z-index: 99;
  background: rgba(5,1,25,.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 26px 22px calc(26px + env(safe-area-inset-bottom));
  overflow-y: auto;
  display: none;
  flex-direction: column;
  gap: 6px;
  animation: drawerIn .28s var(--ease);
}
.mobile-nav.open { display: flex; }
.mobile-nav a.m-link {
  font-family: var(--font-display); font-size: 1.12rem; font-weight: 600;
  color: var(--text); padding: 15px 14px; border-radius: 12px;
  border-bottom: 1px solid var(--line);
  display: flex; align-items: center; justify-content: space-between;
}
.mobile-nav a.m-link:hover, .mobile-nav a.m-link:focus-visible { background: rgba(255,255,255,.06); color: #fff; }
.mobile-nav a.m-link[aria-current="page"] { color: var(--pink-soft); }
.mobile-nav .btn { margin-top: 20px; }
.mobile-nav .m-contact {
  margin-top: 22px; padding-top: 20px; border-top: 1px solid var(--line);
  font-size: .9rem; color: var(--text-dim);
}
.mobile-nav .m-contact a { color: var(--pink-soft); word-break: break-word; }

@keyframes drawerIn { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: none; } }
body.nav-open { overflow: hidden; }

@media (max-width: 1040px) {
  .nav, .header-cta { display: none; }
  .burger { display: inline-flex; }
}

/* --------------------------------------------------------------- 7. HERO */
.hero {
  position: relative;
  padding: clamp(52px, 7vw, 96px) 0 clamp(58px, 8vw, 104px);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.06fr .94fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
}
.hero h1 { margin-bottom: .42em; }
.hero .lead { margin-bottom: 30px; }
.hero-badges {
  display: flex; flex-wrap: wrap; gap: 8px 10px;
  margin-top: 32px; padding-top: 26px; border-top: 1px solid var(--line);
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: .8rem; color: var(--text-muted);
  background: rgba(255,255,255,.04);
  border: 1px solid var(--line);
  padding: 7px 13px; border-radius: 100px;
}
.hero-badge svg { width: 13px; height: 13px; color: var(--pink-soft); flex: none; }

.hero-visual { position: relative; }
.hero-visual img {
  width: 100%; border-radius: var(--radius-lg);
  border: 1px solid var(--line-strong);
  box-shadow: var(--sh-lg), 0 0 90px -30px rgba(240,17,156,.55);
}
.hero-visual::after {
  content: ''; position: absolute; inset: -22%;
  background: radial-gradient(closest-side, rgba(240,17,156,.28), transparent 72%);
  z-index: -1; filter: blur(28px);
}

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { order: -1; }
  .hero-badges { margin-top: 26px; }
}

/* Marquee of client sites */
.marquee-wrap {
  border-block: 1px solid var(--line);
  background: rgba(255,255,255,.02);
  padding: 20px 0;
  overflow: hidden;
}
.marquee-label {
  text-align: center; font-size: .74rem; letter-spacing: .16em;
  text-transform: uppercase; color: var(--text-dim); margin-bottom: 14px;
  font-family: var(--font-display); font-weight: 600;
}
.marquee { display: flex; overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee-track { display: flex; gap: 46px; padding-right: 46px; flex: none; animation: scrollX 42s linear infinite; }
.marquee-track span {
  font-family: var(--font-display); font-size: 1.02rem; font-weight: 600;
  color: var(--text-dim); white-space: nowrap; letter-spacing: -.01em;
}
@keyframes scrollX { to { transform: translateX(-100%); } }

/* --------------------------------------------------------------- 8. CARD */
.card {
  position: relative;
  background: var(--grad-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: transform var(--t), border-color var(--t), box-shadow var(--t), background var(--t);
  overflow: hidden;
}
.card::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(420px 220px at var(--mx, 50%) var(--my, 0%), rgba(240,17,156,.14), transparent 72%);
  opacity: 0; transition: opacity var(--t); pointer-events: none;
}
.card:hover { transform: translateY(-5px); border-color: rgba(240,17,156,.35); box-shadow: var(--sh-md); }
.card:hover::before { opacity: 1; }
.card > * { position: relative; }
.card h3 { margin-bottom: .5em; }
.card p { color: var(--text-muted); font-size: .95rem; margin-bottom: 0; }

.icon-badge {
  width: 52px; height: 52px; border-radius: 15px;
  display: grid; place-items: center;
  background: linear-gradient(150deg, rgba(240,17,156,.22), rgba(138,34,222,.16));
  border: 1px solid rgba(240,17,156,.28);
  margin-bottom: 20px;
}
.icon-badge svg { width: 24px; height: 24px; color: var(--pink-soft); }

/* Service card */
.service-card { display: flex; flex-direction: column; }
.service-card .svc-benefit {
  margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--line);
  font-size: .89rem; color: var(--text-dim); display: flex; gap: 9px;
}
.service-card .svc-benefit svg { width: 15px; height: 15px; color: var(--pink); flex: none; margin-top: 4px; }
.service-card .link-arrow { margin-top: 20px; align-self: flex-start; }

/* Feature list */
.f-list { list-style: none; display: grid; gap: 11px; }
.f-list li { position: relative; padding-left: 27px; font-size: .93rem; color: var(--text-muted); line-height: 1.55; }
.f-list li::before {
  content: ''; position: absolute; left: 0; top: .45em;
  width: 15px; height: 15px; border-radius: 50%;
  background: rgba(240,17,156,.18);
  border: 1px solid rgba(240,17,156,.45);
}
.f-list li::after {
  content: ''; position: absolute; left: 4.5px; top: .72em;
  width: 6px; height: 3.5px;
  border-left: 1.8px solid var(--pink-soft);
  border-bottom: 1.8px solid var(--pink-soft);
  transform: rotate(-45deg);
}
.f-list .f-group { padding-left: 0; }
.f-list .f-group::before, .f-list .f-group::after { display: none; }
.f-list .f-group > span {
  display: block; font-family: var(--font-display); font-weight: 600;
  font-size: .84rem; letter-spacing: .05em; text-transform: uppercase;
  color: var(--text-dim); margin: 6px 0 9px;
}
.f-list .f-group ul { list-style: none; display: grid; gap: 8px; padding-left: 4px; }
.f-list .f-group ul li { padding-left: 23px; font-size: .89rem; }
.f-list .f-group ul li::before { width: 12px; height: 12px; top: .42em; }
.f-list .f-group ul li::after { left: 3.5px; top: .66em; width: 5px; height: 3px; }

/* ----------------------------------------------------------- 9. PACKAGES */
.pkg-tabs {
  display: flex; flex-wrap: wrap; gap: 8px; justify-content: center;
  margin-bottom: 40px;
  padding: 7px; border-radius: 100px;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--line);
  width: fit-content; margin-inline: auto; max-width: 100%;
}
.pkg-tab {
  font-family: var(--font-display); font-size: .9rem; font-weight: 600;
  color: var(--text-muted); background: transparent; border: 0; cursor: pointer;
  padding: 11px 22px; border-radius: 100px; white-space: nowrap;
  transition: color var(--t-fast), background var(--t), box-shadow var(--t);
}
.pkg-tab:hover { color: #fff; }
.pkg-tab[aria-selected="true"] { color: #fff; background: var(--grad-brand); box-shadow: var(--sh-glow); }

.pkg-panel { display: none; }
.pkg-panel.active { display: block; animation: fadeUp .4s var(--ease); }
@keyframes fadeUp { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }

.pkg-panel > .panel-intro {
  text-align: center; max-width: 640px; margin: 0 auto 38px;
  color: var(--text-muted); font-size: .98rem;
}

.pkg-grid { display: grid; gap: 22px; grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr)); align-items: start; }

.pkg {
  position: relative; display: flex; flex-direction: column;
  background: linear-gradient(165deg, rgba(255,255,255,.06), rgba(255,255,255,.018));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px 26px 26px;
  transition: transform var(--t), border-color var(--t), box-shadow var(--t);
  height: 100%;
}
.pkg:hover { transform: translateY(-6px); border-color: rgba(240,17,156,.4); box-shadow: var(--sh-md); }

.pkg-save {
  position: absolute; top: 18px; right: 18px;
  font-family: var(--font-display); font-size: .74rem; font-weight: 700;
  letter-spacing: .04em;
  background: var(--grad-brand); color: #fff;
  padding: 6px 12px; border-radius: 100px;
  box-shadow: 0 6px 18px -8px rgba(240,17,156,.9);
}

.pkg h3 { font-size: 1.24rem; margin-bottom: .3em; padding-right: 76px; }
.pkg .pkg-tag { font-size: .86rem; color: var(--text-dim); margin-bottom: 20px; }

.pkg-price { display: flex; align-items: baseline; flex-wrap: wrap; gap: 10px; margin-bottom: 4px; }
.pkg-price .now {
  font-family: var(--font-display); font-weight: 750;
  font-size: clamp(2rem, 3.4vw, 2.45rem); line-height: 1;
  letter-spacing: -.03em; color: var(--text-strong);
}
.pkg-price .was { font-size: 1rem; color: var(--text-dim); text-decoration: line-through; text-decoration-color: rgba(240,17,156,.7); }
.pkg-note { font-size: .82rem; color: var(--text-dim); margin-bottom: 22px; }

.pkg-divider { height: 1px; background: var(--line); margin: 0 0 22px; }
.pkg .f-list { margin-bottom: 26px; }
.pkg-foot { margin-top: auto; }
.pkg-foot .btn { width: 100%; }
.pkg-foot .pkg-custom { display: block; text-align: center; font-size: .8rem; color: var(--text-dim); margin-top: 12px; }

.pkg-note-all {
  text-align: center; margin-top: 38px; color: var(--text-muted);
  font-size: .95rem;
}
.pkg-note-all strong { color: var(--pink-soft); }

/* ---------------------------------------------------------- 10. PORTFOLIO */
.filters { display: flex; flex-wrap: wrap; gap: 9px; justify-content: center; margin-bottom: 38px; }
.filter {
  font-family: var(--font-display); font-size: .88rem; font-weight: 600;
  color: var(--text-muted); cursor: pointer;
  background: rgba(255,255,255,.04); border: 1px solid var(--line);
  padding: 10px 20px; border-radius: 100px;
  transition: all var(--t-fast);
}
.filter:hover { color: #fff; border-color: var(--line-strong); }
.filter[aria-pressed="true"] { background: var(--grad-brand); border-color: transparent; color: #fff; box-shadow: var(--sh-glow); }

.work-grid { display: grid; gap: 20px; grid-template-columns: repeat(auto-fill, minmax(min(100%, 305px), 1fr)); }

.work {
  position: relative; display: flex; flex-direction: column;
  background: var(--grad-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--t), border-color var(--t), box-shadow var(--t);
}
.work:hover { transform: translateY(-5px); border-color: rgba(240,17,156,.4); box-shadow: var(--sh-md); }
.work.is-hidden { display: none; }

.work-thumb {
  position: relative; aspect-ratio: 16 / 10;
  background: linear-gradient(150deg, var(--ink-800), var(--ink-700));
  display: grid; place-items: center; overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.work-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.work:hover .work-thumb img { transform: scale(1.05); }

.work-mono {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(1.1rem, 2.4vw, 1.5rem); letter-spacing: -.02em;
  color: rgba(255,255,255,.9); text-align: center; padding: 18px;
  word-break: break-word;
}
.work-thumb .glow {
  position: absolute; inset: 0;
  background: radial-gradient(360px 200px at 30% 10%, rgba(240,17,156,.3), transparent 68%),
              radial-gradient(320px 220px at 82% 92%, rgba(138,34,222,.32), transparent 68%);
}
.work-play {
  position: absolute; inset: 0; display: grid; place-items: center;
  background: linear-gradient(180deg, rgba(5,1,25,.1), rgba(5,1,25,.62));
}
.work-play i {
  width: 58px; height: 58px; border-radius: 50%;
  background: var(--grad-brand); display: grid; place-items: center;
  box-shadow: 0 12px 34px -10px rgba(240,17,156,.9);
  transition: transform var(--t);
}
.work:hover .work-play i { transform: scale(1.09); }
.work-play svg { width: 20px; height: 20px; color: #fff; margin-left: 3px; }

.work-body { padding: 20px 22px 22px; display: flex; flex-direction: column; flex: 1; }
.work-cat {
  font-family: var(--font-display); font-size: .71rem; font-weight: 650;
  letter-spacing: .13em; text-transform: uppercase; color: var(--pink-soft);
  margin-bottom: 9px;
}
.work-body h3 { font-size: 1.1rem; margin-bottom: .35em; }
.work-body p { font-size: .88rem; color: var(--text-dim); margin-bottom: 16px; }
.work-body .link-arrow { margin-top: auto; align-self: flex-start; font-size: .88rem; }

/* ---------------------------------------------------------- 11. PROCESS */
.steps { display: grid; gap: 20px; grid-template-columns: repeat(auto-fit, minmax(min(100%, 290px), 1fr)); counter-reset: s; }
.step {
  position: relative; padding: 28px 24px;
  background: var(--grad-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform var(--t), border-color var(--t);
}
.step:hover { transform: translateY(-4px); border-color: rgba(240,17,156,.32); }
.step .n {
  font-family: var(--font-display); font-weight: 750;
  font-size: 2.6rem; line-height: 1; letter-spacing: -.04em;
  background: linear-gradient(140deg, rgba(255,138,212,.95), rgba(138,34,222,.55));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 14px; display: block;
}
.step h3 { font-size: 1.1rem; }
.step p { font-size: .91rem; color: var(--text-muted); margin: 0; }

/* ------------------------------------------------------ 12. TESTIMONIALS */
.t-note {
  text-align: center; font-size: .8rem; color: var(--text-dim);
  margin-top: 30px; font-style: italic;
}
.t-grid { columns: 3; column-gap: 20px; }
@media (max-width: 940px) { .t-grid { columns: 2; } }
@media (max-width: 620px) { .t-grid { columns: 1; } }

.quote {
  break-inside: avoid; margin-bottom: 20px;
  background: var(--grad-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px;
  transition: border-color var(--t), transform var(--t);
}
.quote:hover { border-color: rgba(240,17,156,.3); transform: translateY(-3px); }
.quote .mark { font-family: var(--font-display); font-size: 2.6rem; line-height: .6; color: rgba(240,17,156,.45); display: block; margin-bottom: 12px; }
.quote h3 { font-size: 1.04rem; margin-bottom: .55em; }
.quote p { font-size: .91rem; color: var(--text-muted); margin-bottom: 18px; }
.quote .q-foot { display: flex; align-items: center; gap: 12px; padding-top: 16px; border-top: 1px solid var(--line); }
.quote .who-wrap { display: flex; flex-direction: column; min-width: 0; }
.quote .av {
  width: 40px; height: 40px; border-radius: 50%; flex: none;
  display: grid; place-items: center;
  background: var(--grad-brand);
  font-family: var(--font-display); font-weight: 700; font-size: .88rem; color: #fff;
}
.quote .who { font-family: var(--font-display); font-weight: 650; font-size: .92rem; color: var(--text-strong); line-height: 1.35; font-style: normal; }
.quote .role { font-size: .8rem; color: var(--text-dim); font-style: normal; }

/* -------------------------------------------------------------- 13. FAQ */
.faq { max-width: 830px; margin-inline: auto; display: grid; gap: 12px; }
.faq details {
  background: var(--grad-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color var(--t), background var(--t);
}
.faq details[open] { border-color: rgba(240,17,156,.35); background: rgba(240,17,156,.045); }
.faq summary {
  list-style: none; cursor: pointer;
  padding: 20px 56px 20px 22px;
  font-family: var(--font-display); font-weight: 600; font-size: 1.01rem;
  color: var(--text-strong); position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ''; position: absolute; right: 24px; top: 50%;
  width: 11px; height: 11px; margin-top: -6px;
  border-right: 2px solid var(--pink-soft); border-bottom: 2px solid var(--pink-soft);
  transform: rotate(45deg); transition: transform var(--t);
}
.faq details[open] summary::after { transform: rotate(-135deg); margin-top: -2px; }
.faq summary:hover { color: var(--pink-soft); }
.faq .faq-a { padding: 0 22px 22px; color: var(--text-muted); font-size: .95rem; }

/* -------------------------------------------------------------- 14. FORM */
.form-shell {
  display: grid; grid-template-columns: 1fr 380px; gap: 30px; align-items: start;
}
@media (max-width: 980px) { .form-shell { grid-template-columns: 1fr; } }

.form-card {
  background: linear-gradient(165deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 3.4vw, 40px);
  box-shadow: var(--sh-lg);
}
.fieldset { border: 0; padding: 0; margin: 0 0 32px; }
.fieldset:last-of-type { margin-bottom: 24px; }
.fieldset legend {
  font-family: var(--font-display); font-size: .76rem; font-weight: 700;
  letter-spacing: .15em; text-transform: uppercase; color: var(--pink-soft);
  padding: 0 0 16px; margin: 0; width: 100%;
  border-bottom: 1px solid var(--line);
  margin-bottom: 22px;
}
.f-row { display: grid; gap: 18px; grid-template-columns: 1fr 1fr; margin-bottom: 18px; }
.f-row.one { grid-template-columns: 1fr; }
@media (max-width: 620px) { .f-row { grid-template-columns: 1fr; } }

.field { display: flex; flex-direction: column; gap: 8px; min-width: 0; }
.field label {
  font-family: var(--font-display); font-size: .87rem; font-weight: 600;
  color: var(--text); display: flex; align-items: center; gap: 6px;
}
.field label .req { color: var(--pink); }
.field .hint { font-size: .78rem; color: var(--text-dim); }

.field input, .field select, .field textarea {
  width: 100%; font-family: var(--font-body); font-size: .95rem;
  color: var(--text-strong);
  background: rgba(255,255,255,.05);
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  padding: 14px 16px;
  transition: border-color var(--t-fast), background var(--t-fast), box-shadow var(--t-fast);
  -webkit-appearance: none; appearance: none;
}
.field textarea { min-height: 132px; resize: vertical; line-height: 1.65; }
.field input::placeholder, .field textarea::placeholder { color: var(--text-dim); }
.field input:hover, .field select:hover, .field textarea:hover { border-color: rgba(255,255,255,.26); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--pink);
  background: rgba(240,17,156,.06);
  box-shadow: 0 0 0 3px rgba(240,17,156,.18);
}
.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23B4A9CE' stroke-width='2.4' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 15px center; background-size: 17px;
  padding-right: 44px; cursor: pointer;
}
.field select option { background: var(--ink-800); color: var(--text); }

.field.invalid input, .field.invalid select, .field.invalid textarea {
  border-color: #FF5A6E; background: rgba(255,90,110,.07);
}
.field .err { font-size: .8rem; color: #FF8894; display: none; }
.field.invalid .err { display: block; }

/* Honeypot — kept out of view for humans, visible to bots */
.hp-field {
  position: absolute !important; left: -9999px !important;
  width: 1px; height: 1px; overflow: hidden;
}

.consent {
  display: flex; gap: 13px; align-items: flex-start;
  background: rgba(255,255,255,.035);
  border: 1px solid var(--line);
  border-radius: 12px; padding: 16px 18px; margin-bottom: 22px;
}
.consent input[type="checkbox"] {
  width: 20px; height: 20px; flex: none; margin: 2px 0 0;
  accent-color: var(--pink); cursor: pointer;
}
.consent label { font-size: .87rem; color: var(--text-muted); line-height: 1.6; cursor: pointer; }
.consent label a { color: var(--pink-soft); text-decoration: underline; text-underline-offset: 2px; }
.consent.invalid { border-color: #FF5A6E; background: rgba(255,90,110,.07); }

.form-status {
  display: none; align-items: flex-start; gap: 12px;
  border-radius: 12px; padding: 16px 18px; margin-bottom: 20px;
  font-size: .92rem; line-height: 1.6;
}
.form-status.show { display: flex; }
.form-status svg { width: 19px; height: 19px; flex: none; margin-top: 3px; }
.form-status.loading { background: rgba(138,34,222,.12); border: 1px solid rgba(138,34,222,.4); color: #D9C8FF; }
.form-status.success { background: rgba(34,197,120,.1); border: 1px solid rgba(34,197,120,.42); color: #86EFC0; }
.form-status.error   { background: rgba(255,90,110,.1); border: 1px solid rgba(255,90,110,.42); color: #FFB3BB; }
.form-status a { color: inherit; text-decoration: underline; word-break: break-word; }

.spinner {
  width: 17px; height: 17px; border-radius: 50%; flex: none; margin-top: 3px;
  border: 2px solid rgba(217,200,255,.3); border-top-color: #D9C8FF;
  animation: spin .7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.btn[aria-busy="true"] { opacity: .75; pointer-events: none; }

/* Selected package chip */
.pkg-chip {
  display: none; align-items: center; justify-content: space-between; gap: 14px;
  background: linear-gradient(120deg, rgba(240,17,156,.16), rgba(138,34,222,.12));
  border: 1px solid rgba(240,17,156,.42);
  border-radius: 14px; padding: 16px 18px; margin-bottom: 26px;
}
.pkg-chip.show { display: flex; }
.pkg-chip .pc-label { font-size: .73rem; letter-spacing: .13em; text-transform: uppercase; color: var(--pink-soft); font-family: var(--font-display); font-weight: 650; }
.pkg-chip .pc-name { font-family: var(--font-display); font-weight: 650; font-size: 1.02rem; color: #fff; line-height: 1.3; }
.pkg-chip .pc-price { font-size: .86rem; color: var(--text-muted); margin-top: 2px; }
.pkg-chip .pc-clear {
  background: rgba(255,255,255,.08); border: 1px solid var(--line-strong);
  color: var(--text-muted); border-radius: 100px; padding: 8px 14px;
  font-size: .8rem; cursor: pointer; flex: none; font-family: var(--font-display); font-weight: 600;
}
.pkg-chip .pc-clear:hover { color: #fff; background: rgba(255,255,255,.14); }

/* Contact aside */
.aside-card {
  background: var(--grad-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
}
.aside-card + .aside-card { margin-top: 20px; }
.aside-card h3 { font-size: 1.08rem; }
.contact-line { display: flex; gap: 13px; align-items: flex-start; padding: 14px 0; border-bottom: 1px solid var(--line); }
.contact-line:last-child { border-bottom: 0; padding-bottom: 0; }
.contact-line svg { width: 18px; height: 18px; color: var(--pink-soft); flex: none; margin-top: 4px; }
.contact-line .cl-label { font-size: .76rem; letter-spacing: .1em; text-transform: uppercase; color: var(--text-dim); font-family: var(--font-display); font-weight: 600; }
.contact-line a, .contact-line span.cl-val { font-size: .94rem; color: var(--text-strong); word-break: break-word; }
.contact-line a:hover { color: var(--pink-soft); }

.socials { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 6px; }
.social {
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(255,255,255,.05); border: 1px solid var(--line-strong);
  border-radius: 100px; padding: 10px 17px;
  font-family: var(--font-display); font-weight: 600; font-size: .87rem;
  color: var(--text); transition: all var(--t-fast);
}
.social svg { width: 16px; height: 16px; }
.social:hover { background: var(--grad-brand); border-color: transparent; color: #fff; transform: translateY(-2px); }

/* ---------------------------------------------------------- 15. CTA BAND */
.cta-band {
  position: relative;
  border-radius: var(--radius-lg);
  padding: clamp(38px, 5.5vw, 68px) clamp(24px, 4vw, 56px);
  background:
    radial-gradient(700px 340px at 12% 0%, rgba(240,17,156,.32), transparent 66%),
    radial-gradient(620px 340px at 92% 100%, rgba(138,34,222,.34), transparent 66%),
    linear-gradient(150deg, var(--ink-800), var(--ink-850));
  border: 1px solid rgba(240,17,156,.28);
  overflow: hidden;
  text-align: center;
}
.cta-band h2 { margin-bottom: .5em; }
.cta-band .lead { margin: 0 auto 30px; }
.cta-band .btn-row { justify-content: center; }
.cta-band .cta-mail { margin-top: 24px; font-size: .88rem; color: var(--text-dim); }
.cta-band .cta-mail a { color: var(--pink-soft); }
.cta-band .cta-mail a:hover { text-decoration: underline; }

/* ------------------------------------------------------------ 16. FOOTER */
.footer {
  margin-top: clamp(60px, 8vw, 100px);
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,.022), transparent);
  padding: clamp(48px, 6vw, 72px) 0 0;
}
.foot-grid { display: grid; gap: 38px; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; }
@media (max-width: 900px) { .foot-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .foot-grid { grid-template-columns: 1fr; gap: 30px; } }

.foot-brand img { height: 44px; margin-bottom: 18px; }
.foot-brand p { font-size: .9rem; color: var(--text-muted); max-width: 34ch; }
.foot-col h4 {
  font-size: .77rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--text-dim); margin-bottom: 18px;
}
.foot-col ul { list-style: none; display: grid; gap: 11px; }
.foot-col a { font-size: .91rem; color: var(--text-muted); transition: color var(--t-fast); }
.foot-col a:hover { color: var(--pink-soft); }

.foot-bottom {
  margin-top: 46px; padding: 24px 0; border-top: 1px solid var(--line);
  display: flex; flex-wrap: wrap; gap: 14px 26px;
  align-items: center; justify-content: space-between;
  font-size: .84rem; color: var(--text-dim);
}
.foot-bottom nav { display: flex; flex-wrap: wrap; gap: 20px; }
.foot-bottom a:hover { color: var(--pink-soft); }

/* --------------------------------------------------------- 17. PAGE HEAD */
.page-hero {
  padding: clamp(44px, 6vw, 82px) 0 clamp(34px, 4.5vw, 56px);
  border-bottom: 1px solid var(--line);
  position: relative;
}
.page-hero .lead { margin-bottom: 0; }
.crumbs { display: flex; flex-wrap: wrap; gap: 8px; font-size: .82rem; color: var(--text-dim); margin-bottom: 20px; }
.crumbs a:hover { color: var(--pink-soft); }
.crumbs span[aria-hidden] { opacity: .5; }

/* Legal / prose pages */
.prose { max-width: 800px; }
.prose h2 { font-size: clamp(1.35rem, 2.4vw, 1.75rem); margin-top: 2.2em; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-size: 1.08rem; margin-top: 1.8em; }
.prose p, .prose li { color: var(--text-muted); font-size: .97rem; }
.prose ul { list-style: disc; padding-left: 22px; margin: 0 0 1.2em; display: grid; gap: 9px; }
.prose a { color: var(--pink-soft); text-decoration: underline; text-underline-offset: 2px; word-break: break-word; }
.notice {
  background: rgba(240,17,156,.09);
  border: 1px solid rgba(240,17,156,.34);
  border-left-width: 4px;
  border-radius: 12px; padding: 18px 20px; margin-bottom: 34px;
}
.notice p { color: var(--text); margin: 0; font-size: .92rem; }
.notice strong { color: var(--pink-soft); }

/* -------------------------------------------------------- 18. THANK YOU */
.ty { text-align: center; padding: clamp(70px, 11vw, 150px) 0; }
.ty-icon {
  width: 96px; height: 96px; border-radius: 50%; margin: 0 auto 32px;
  display: grid; place-items: center;
  background: var(--grad-brand);
  box-shadow: 0 24px 60px -18px rgba(240,17,156,.85);
  animation: pop .5s var(--ease) both;
}
.ty-icon svg { width: 44px; height: 44px; color: #fff; }
@keyframes pop { from { transform: scale(.6); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.ty .lead { margin-inline: auto; }
.ty .btn-row { justify-content: center; margin-top: 34px; }
.ty-detail {
  max-width: 520px; margin: 40px auto 0; padding: 22px 24px;
  background: var(--grad-card); border: 1px solid var(--line);
  border-radius: var(--radius); text-align: left;
}
.ty-detail h3 { font-size: 1rem; }
.ty-detail p { font-size: .9rem; color: var(--text-muted); margin: 0; }

/* -------------------------------------------------------- 19. ANIMATIONS */
.reveal { opacity: 0; transform: translateY(22px); }
.reveal.in { opacity: 1; transform: none; transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.d1.in { transition-delay: .07s; }
.reveal.d2.in { transition-delay: .14s; }
.reveal.d3.in { transition-delay: .21s; }
.reveal.d4.in { transition-delay: .28s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
  .marquee-track { animation: none; }
}

/* ------------------------------------------------------- 20. SMALL SCREEN */
@media (max-width: 560px) {
  :root { --header-h: 68px; }
  .wrap { padding-inline: 18px; }
  .brand img { height: 32px; }
  .btn { padding: 15px 22px; font-size: .92rem; }
  .btn-lg { padding: 16px 26px; font-size: .96rem; }
  .btn-row .btn { flex: 1 1 100%; }
  .pkg-tabs { border-radius: 18px; width: 100%; justify-content: stretch; }
  .pkg-tab { flex: 1 1 calc(50% - 8px); padding: 11px 10px; font-size: .84rem; }
  .pkg { padding: 26px 20px 22px; }
  .pkg h3 { padding-right: 0; margin-top: 8px; }
  .pkg-save { position: static; align-self: flex-start; margin-bottom: 12px; }
  .form-card { padding: 24px 18px; }
  .pkg-chip { flex-direction: column; align-items: flex-start; }
  .cta-band { padding: 34px 20px; }
  .foot-bottom { flex-direction: column; align-items: flex-start; }
}
