/* ============================================================
   UK Web Marketing — portfolio site (TicketWave HQ Ltd)
   Identity: Plus Jakarta Sans + Inter; electric indigo→violet
   brand with an amber "deal" accent; glow orbs, soft shadows,
   card-lift, reveal-on-scroll, on-page case-study modals.
   ============================================================ */

:root {
  /* type */
  --display: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  --sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  /* slate scale */
  --ink: #0a0f1f;
  --s900: #0f172a;
  --s800: #1e293b;
  --s700: #334155;
  --s600: #475569;
  --s500: #64748b;
  --s400: #94a3b8;
  --s300: #cbd5e1;
  --s200: #e2e8f0;
  --s100: #f1f5f9;
  --s50:  #f8fafc;
  --white: #ffffff;

  /* brand — electric indigo → violet */
  --brand:    #5B4FE5;
  --brand-50: #EEEDFE;
  --brand-100:#DEDCFC;
  --brand-200:#C1BDF9;
  --brand-600:#4A3EC9;
  --brand-700:#3A2FA3;
  --violet:   #8B5CF6;
  --teal:     #14B8C4;
  /* amber "deal" accent (for the £200 / launch-price highlights) */
  --accent:     #F59E0B;
  --accent-100: #FEF1D8;
  --accent-700: #B45309;

  /* gradients */
  --g-brand: linear-gradient(135deg, #6D5EFC 0%, #5B4FE5 50%, #7C3AED 100%);
  --g-text:  linear-gradient(115deg, #6D5EFC 0%, #A855F7 52%, #5B4FE5 100%);

  /* shape */
  --r-sm: 12px;
  --r:    16px;
  --r-lg: 22px;
  --r-xl: 28px;

  /* shadow */
  --sh-sm: 0 4px 14px rgba(2, 6, 23, .06);
  --sh:    0 12px 32px rgba(2, 6, 23, .08);
  --sh-lg: 0 28px 60px rgba(2, 6, 23, .14);
  --sh-brand: 0 16px 40px rgba(91, 79, 229, .3);

  /* glass */
  --glass-bg:  rgba(255, 255, 255, .62);
  --glass-bg-strong: rgba(255, 255, 255, .78);
  --glass-bd:  rgba(255, 255, 255, .6);
  --glass-blur: blur(20px) saturate(180%);

  --wrap: 1200px;
  --ease: cubic-bezier(.4, 0, .2, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
@media (prefers-reduced-motion: no-preference) { html { scroll-behavior: smooth; } }
html { -webkit-text-size-adjust: 100%; background: var(--white); }
body {
  font-family: var(--sans);
  color: var(--s700);
  background: transparent;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* ambient background — a slow-drifting indigo/violet wash with a faint
   warm fleck. Sits behind everything; sections are semi-transparent so
   it bleeds through. */
body::before {
  content: "";
  position: fixed; inset: -18%; z-index: -1; pointer-events: none;
  background:
    radial-gradient(42vw 40vh at 84% 4%,   rgba(139, 92, 246, .15), transparent 62%),
    radial-gradient(46vw 44vh at 6% 26%,   rgba(91, 79, 229,  .11), transparent 62%),
    radial-gradient(50vw 46vh at 50% 102%, rgba(124, 58, 237, .08), transparent 62%),
    radial-gradient(36vw 36vh at 100% 70%, rgba(245, 158, 11, .05), transparent 62%);
  animation: ambient 30s ease-in-out infinite alternate;
}
@keyframes ambient {
  0%   { transform: translate3d(0, 0, 0) scale(1); }
  100% { transform: translate3d(-2.4%, 1.8%, 0) scale(1.07); }
}
/* faint film grain over the whole page (premium texture) */
body::after {
  content: ""; position: fixed; inset: 0; z-index: -1; pointer-events: none; opacity: .03;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
.sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
code {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  background: var(--s100);
  color: var(--brand-700);
  padding: .12em .4em;
  border-radius: 6px;
  font-size: .88em;
}
::selection { background: var(--brand-200); color: var(--s900); }
:focus-visible { outline: 2.5px solid var(--brand); outline-offset: 3px; border-radius: 6px; }

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

/* keep section headings clear of the sticky header when jumped to via #anchor */
:target, #work, #offer, #process, #faq, #contact { scroll-margin-top: 86px; }

h1, h2, h3, h4 { font-family: var(--display); color: var(--s900); line-height: 1.15; letter-spacing: -.02em; font-weight: 800; }

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--s900); color: #fff; padding: 12px 20px; border-radius: 0 0 12px 0; font-weight: 600;
}
.skip:focus { left: 0; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55em;
  font-family: var(--sans); font-weight: 600; font-size: .98rem;
  padding: 12px 22px; border-radius: 999px; border: 1.5px solid transparent;
  cursor: pointer; white-space: nowrap;
  transition: transform .12s var(--ease), background .2s var(--ease), box-shadow .2s var(--ease), border-color .2s var(--ease), color .2s var(--ease);
}
.btn svg { width: 1.05em; height: 1.05em; }
.btn:active { transform: scale(.97); }
.btn-sm { padding: 9px 16px; font-size: .92rem; }
.btn-lg { padding: 15px 28px; font-size: 1.04rem; }
.btn-block { display: flex; width: 100%; }

.btn-primary { background: var(--g-brand); color: #fff; box-shadow: var(--sh-brand), inset 0 1px 0 rgba(255,255,255,.24); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 20px 46px rgba(91, 79, 229, .38); }
.btn-outline { background: #fff; color: var(--s800); border-color: var(--s200); box-shadow: var(--sh-sm); }
.btn-outline:hover { transform: translateY(-2px); border-color: var(--s300); box-shadow: var(--sh); }
.btn-light { background: #fff; color: var(--s900); box-shadow: 0 16px 40px rgba(0,0,0,.18); }
.btn-light:hover { transform: translateY(-2px); }
.btn-ghost-light { background: rgba(255,255,255,.08); color: #fff; border-color: rgba(255,255,255,.28); }
.btn-ghost-light:hover { background: rgba(255,255,255,.16); }
.btn-wa { background: #25D366; color: #07351a; box-shadow: 0 12px 30px rgba(37,211,102,.32); }
.btn-wa:hover { transform: translateY(-2px); background: #1ebe5a; box-shadow: 0 18px 40px rgba(37,211,102,.4); }
.btn-dark { background: var(--s900); color: #fff; }
.btn-dark:hover { transform: translateY(-2px); background: #1b2740; }

/* ---------- header ---------- */
.hdr {
  position: sticky; top: 0; z-index: 100;
  background: var(--glass-bg-strong);
  -webkit-backdrop-filter: var(--glass-blur); backdrop-filter: var(--glass-blur);
  border-bottom: 1px solid rgba(226,232,240,.5);
  transition: box-shadow .3s var(--ease), border-color .3s var(--ease), background .3s var(--ease);
}
.hdr.scrolled { background: rgba(255,255,255,.86); border-bottom-color: var(--s200); box-shadow: 0 8px 28px rgba(2,6,23,.07); }
.hdr-row { display: flex; align-items: center; gap: 20px; height: 70px; }
.logo { display: inline-flex; align-items: center; gap: 10px; font-family: var(--display); font-weight: 800; color: var(--s900); letter-spacing: -.02em; }
.logo-mark {
  display: grid; place-items: center; width: 34px; height: 34px; border-radius: 10px;
  background: var(--g-brand); color: #fff; box-shadow: var(--sh-brand), inset 0 1px 0 rgba(255,255,255,.28); flex: none;
}
.logo-txt { font-size: 1.06rem; }
.nav { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.nav a { padding: 9px 14px; border-radius: 10px; font-size: .94rem; font-weight: 600; color: var(--s600); transition: color .2s, background .2s; }
.nav a:hover { color: var(--brand-700); background: var(--brand-50); }
.hdr-cta { margin-left: 4px; }
.burger { display: none; flex-direction: column; gap: 5px; padding: 8px; background: none; border: 0; cursor: pointer; margin-left: auto; }
.burger span { width: 22px; height: 2.4px; border-radius: 2px; background: var(--s800); transition: transform .25s var(--ease), opacity .2s; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.4px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.4px) rotate(-45deg); }
.mobile-menu {
  position: absolute; left: 0; right: 0; top: 100%; z-index: 99;
  display: flex; flex-direction: column; gap: 4px;
  padding: 12px 20px 20px;
  background: rgba(255,255,255,.98); backdrop-filter: blur(14px) saturate(160%);
  border-bottom: 1px solid var(--s200);
  box-shadow: 0 18px 36px rgba(2,6,23,.14);
  max-height: calc(100vh - 70px); max-height: calc(100dvh - 70px); overflow-y: auto;
}
.mobile-menu[hidden] { display: none !important; }
.mobile-menu a:not(.btn) { padding: 13px 14px; border-radius: 10px; font-weight: 600; color: var(--s700); }
.mobile-menu a:not(.btn):active { background: var(--brand-50); color: var(--brand-700); }
@media (hover: hover) { .mobile-menu a:not(.btn):hover { background: var(--brand-50); color: var(--brand-700); } }
.mobile-menu .btn { margin-top: 8px; }

/* ---------- glow orbs ---------- */
.orb { position: absolute; border-radius: 50%; filter: blur(110px); pointer-events: none; z-index: 0; }
.orb-1 { width: 480px; height: 480px; background: rgba(91,79,229,.32); top: -160px; right: -80px; }
.orb-2 { width: 420px; height: 420px; background: rgba(139,92,246,.22); bottom: -180px; left: -120px; }
.orb-3 { width: 420px; height: 420px; background: rgba(109,94,252,.42); top: -120px; left: 10%; }
.orb-4 { width: 380px; height: 380px; background: rgba(20,184,196,.28); bottom: -160px; right: 8%; }

/* ---------- hero ---------- */
.hero {
  position: relative; overflow: hidden;
  padding: clamp(56px, 8vw, 92px) 0 clamp(64px, 9vw, 104px);
  background:
    radial-gradient(900px 460px at 78% -8%, rgba(238,237,254,.92), transparent 70%),
    radial-gradient(700px 480px at 4% 6%, rgba(244,236,255,.85), transparent 70%);
}
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.06fr .94fr; gap: 56px; align-items: center; }

.pill-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--glass-bg); -webkit-backdrop-filter: var(--glass-blur); backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-bd); box-shadow: var(--sh-sm);
  color: var(--s700); font-size: .82rem; font-weight: 600;
  padding: 7px 14px 7px 11px; border-radius: 999px; margin-bottom: 22px;
}
.pill-eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--brand); box-shadow: 0 0 0 4px rgba(91,79,229,.18); }

.hero h1 { font-size: clamp(2.3rem, 5.2vw, 3.7rem); font-weight: 800; }
.grad { background: var(--g-text); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.hero-sub { margin-top: 20px; font-size: clamp(1.05rem, 1.6vw, 1.22rem); color: var(--s600); max-width: 40ch; }

.price-flag {
  display: inline-flex; align-items: baseline; gap: 12px; flex-wrap: wrap;
  margin-top: 26px; padding: 12px 18px; border-radius: 14px;
  background: linear-gradient(180deg, #fff, var(--accent-100));
  border: 1px solid #fce6bd; box-shadow: var(--sh-sm);
}
.price-flag .was { text-decoration: line-through; color: var(--s400); font-weight: 600; font-size: 1.05rem; }
.price-flag .now { font-family: var(--display); font-weight: 800; font-size: 2.1rem; color: var(--accent-700); letter-spacing: -.02em; }
.price-flag .now-note { color: var(--s600); font-size: .95rem; font-weight: 500; }
.hero-care { margin-top: 12px; font-size: .92rem; color: var(--s500); max-width: 46ch; }
.hero-care b { color: var(--accent-700); font-weight: 700; }

.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.hero-ticks { display: flex; flex-wrap: wrap; gap: 20px; margin-top: 26px; color: var(--s600); font-size: .94rem; font-weight: 500; }
.hero-ticks li { display: inline-flex; align-items: center; gap: 7px; }
.hero-ticks svg { color: var(--brand); flex: none; }

/* hero art — frosted-glass browser mockup floating over the orbs */
.hero-art { position: relative; }
.browser {
  background: var(--glass-bg-strong); -webkit-backdrop-filter: var(--glass-blur); backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-bd); border-radius: var(--r-lg);
  box-shadow: var(--sh-lg), inset 0 1px 0 rgba(255,255,255,.6); overflow: hidden;
  transform: perspective(1400px) rotateY(-7deg) rotateX(2deg); transform-origin: center;
  transition: transform .5s var(--ease-out);
}
.hero-art:hover .browser { transform: perspective(1400px) rotateY(-3deg) rotateX(1deg) translateY(-4px); }
.browser-bar { display: flex; align-items: center; gap: 7px; padding: 12px 16px; background: rgba(248,250,252,.55); border-bottom: 1px solid rgba(226,232,240,.6); }
.bd { width: 11px; height: 11px; border-radius: 50%; }
.bd.r { background: #ff5f57; } .bd.y { background: #febc2e; } .bd.g { background: #28c840; }
.browser-url { margin-left: 12px; flex: 1; background: rgba(255,255,255,.6); border: 1px solid rgba(226,232,240,.7); border-radius: 999px; padding: 5px 14px; font-size: .82rem; color: var(--s500); }
.browser-body { padding: 26px; background:
  radial-gradient(420px 200px at 80% 0%, rgba(238,237,254,.6), transparent 70%),
  radial-gradient(360px 220px at 0% 100%, rgba(243,238,255,.55), transparent 70%); }

.offer-card { background: rgba(255,255,255,.86); -webkit-backdrop-filter: var(--glass-blur); backdrop-filter: var(--glass-blur); border: 1px solid var(--glass-bd); border-radius: var(--r); box-shadow: var(--sh), inset 0 1px 0 rgba(255,255,255,.7); padding: 24px; position: relative; }
.ribbon { position: absolute; top: -12px; left: 22px; background: linear-gradient(135deg, #FBBF24, #F59E0B); color: #4a2c00; font-size: .68rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; padding: 6px 12px; border-radius: 999px; box-shadow: 0 10px 24px rgba(245,158,11,.32); }
.offer-price { display: flex; align-items: baseline; gap: 12px; margin-top: 10px; }
.offer-price s { color: var(--s400); font-size: 1.4rem; font-weight: 600; }
.offer-price b { font-family: var(--display); font-size: 2.7rem; font-weight: 800; color: var(--s900); letter-spacing: -.02em; }
.offer-cap { color: var(--s500); font-size: .92rem; margin-top: 2px; }
.offer-incl { display: grid; gap: 9px; margin: 18px 0 20px; }
.offer-incl li { display: flex; align-items: flex-start; gap: 9px; font-size: .92rem; color: var(--s700); }
.offer-incl svg { color: var(--brand); margin-top: 3px; flex: none; }

.floaty {
  position: absolute; display: inline-flex; align-items: center; gap: 7px;
  background: var(--glass-bg-strong); -webkit-backdrop-filter: var(--glass-blur); backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-bd); box-shadow: var(--sh), inset 0 1px 0 rgba(255,255,255,.6);
  padding: 9px 14px; border-radius: 999px; font-size: .84rem; font-weight: 600; color: var(--s800);
  animation: float 6s ease-in-out infinite;
}
.floaty svg { color: var(--brand); }
.floaty-1 { top: 8%; left: -34px; }
.floaty-2 { bottom: 7%; right: -28px; animation-delay: 2.4s; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

/* ---------- marquee ---------- */
.marquee { overflow: hidden; border-top: 1px solid var(--s200); border-bottom: 1px solid var(--s200); background: rgba(248,250,252,.86); backdrop-filter: blur(2px); padding: 16px 0; }
.marquee-track { display: flex; align-items: center; gap: 28px; width: max-content; animation: scrollx 34s linear infinite; }
.marquee-track span { font-family: var(--display); font-weight: 700; color: var(--s400); font-size: 1.05rem; letter-spacing: .01em; white-space: nowrap; }
.marquee-track span[aria-hidden] { color: var(--brand); }
@keyframes scrollx { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- stats band ---------- */
.stats { background: rgba(248,250,252,.7); border-bottom: 1px solid var(--s200); }
.stats .wrap { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; padding-top: 28px; padding-bottom: 28px; }
.stat { text-align: center; }
.stat b { display: block; font-family: var(--display); font-weight: 800; font-size: clamp(1.5rem, 2.6vw, 2rem); color: var(--s900); letter-spacing: -.02em; line-height: 1.1; }
.stat span { display: block; margin-top: 4px; font-size: .88rem; color: var(--s500); }
.stat b .grad { font-size: inherit; }

/* ---------- sections ---------- */
.section { padding: clamp(64px, 9vw, 104px) 0; background: transparent; }
.section-tint { background: rgba(248,250,252,.82); backdrop-filter: blur(2px); border-top: 1px solid var(--s200); border-bottom: 1px solid var(--s200); }
.sec-head { max-width: 660px; margin: 0 auto 44px; text-align: center; }
.eyebrow { font-family: var(--display); text-transform: uppercase; letter-spacing: .16em; font-size: .76rem; font-weight: 700; color: var(--brand); margin-bottom: 12px; }
.sec-head h2 { font-size: clamp(1.9rem, 3.6vw, 2.7rem); }
.sec-sub { color: var(--s600); margin-top: 14px; font-size: 1.08rem; }
h2.has-line, .sec-head h2 { position: relative; }

/* ---------- work / portfolio ---------- */
.filters { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 36px; }
.chip {
  font-family: var(--sans); font-weight: 600; font-size: .9rem;
  padding: 9px 16px; border-radius: 999px; cursor: pointer;
  background: #fff; border: 1.5px solid var(--s200); color: var(--s600);
  transition: all .2s var(--ease);
}
.chip:hover { border-color: var(--s300); color: var(--s800); }
.chip.is-active { background: var(--s900); border-color: var(--s900); color: #fff; box-shadow: var(--sh-sm); }

.work-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.work-card {
  background: #fff; border: 1px solid var(--s200); border-radius: var(--r-lg); overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .3s var(--ease-out), box-shadow .3s var(--ease-out), border-color .3s;
}
.work-card:hover, .work-card:focus-within { transform: translateY(-6px); box-shadow: var(--sh-lg); border-color: transparent; }
.work-card.hide { display: none; }

.work-thumb {
  appearance: none; border: 0; font: inherit; color: inherit; text-align: left; width: 100%; cursor: pointer;
  position: relative; aspect-ratio: 16 / 10; display: flex; align-items: flex-end; padding: 22px;
  background-size: cover; background-position: center; overflow: hidden; isolation: isolate;
}
.work-thumb:focus-visible { outline: 3px solid #fff; outline-offset: -5px; }
.work-thumb::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 35%, rgba(2,6,23,.32)); z-index: 1; }
.work-cat {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  background: rgba(255,255,255,.92); color: var(--s800); backdrop-filter: blur(4px);
  font-size: .68rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: 5px 10px; border-radius: 999px;
}
.work-name { position: relative; z-index: 2; max-width: 68%; font-family: var(--display); font-weight: 800; color: #fff; font-size: clamp(1.3rem, 2.4vw, 1.7rem); line-height: 1.12; letter-spacing: -.02em; text-shadow: 0 2px 18px rgba(0,0,0,.28); }
.work-visit {
  position: absolute; top: 14px; right: 14px; z-index: 2;
  display: inline-flex; align-items: center; gap: 5px;
  background: rgba(15,23,42,.55); color: #fff; backdrop-filter: blur(4px);
  font-size: .72rem; font-weight: 600; padding: 5px 10px; border-radius: 999px;
  opacity: 0; transform: translateY(-4px); transition: opacity .25s, transform .25s;
}
.work-card:hover .work-visit { opacity: 1; transform: translateY(0); }
.work-meta {
  position: absolute; bottom: 16px; right: 16px; z-index: 2;
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,.18); color: #fff; backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,.28);
  font-size: .72rem; font-weight: 600; letter-spacing: .02em; padding: 5px 11px; border-radius: 999px;
}
.work-meta .live { width: 6px; height: 6px; border-radius: 50%; background: #4ade80; box-shadow: 0 0 0 3px rgba(74,222,128,.3); animation: pulse 2.4s ease-in-out infinite; }
@keyframes pulse { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: .55; transform: scale(1.5); } }

/* thumb gradients — tuned to each real site's palette */
.t-sweatty  { background-image: radial-gradient(120% 120% at 0% 0%, #FF6B4A, transparent 60%), linear-gradient(135deg, #FF9680, #00B0B0); }
.t-f12      { background-image: radial-gradient(110% 130% at 100% 0%, rgba(220,38,38,.55), transparent 55%), linear-gradient(150deg, #18181B, #09090B 70%); }
.t-plumb    { background-image: radial-gradient(120% 120% at 100% 100%, rgba(249,115,22,.5), transparent 55%), linear-gradient(140deg, #2A4F7F, #0F1F33); }
.t-hard     { background-image: linear-gradient(135deg, #66caf0, #325078 75%); }
.t-parish   { background-image: radial-gradient(120% 120% at 0% 100%, rgba(255,255,255,.25), transparent 60%), linear-gradient(135deg, #14b8a6, #0e7490 80%); }
.t-offices  { background-image: linear-gradient(140deg, #818cf8, #4338ca 80%); }
.t-servi    { background-image: radial-gradient(120% 130% at 100% 0%, rgba(125,211,252,.4), transparent 55%), linear-gradient(150deg, #0c4a6e, #082f49); }
.t-ticket   { background-image: radial-gradient(120% 120% at 0% 0%, rgba(255,255,255,.18), transparent 55%), linear-gradient(135deg, #a855f7, #7c3aed 45%, #db2777); }
.t-dubai    { background-image: linear-gradient(135deg, #fcd34d, #f59e0b 45%, #b45309); }
.t-bsylv    { background-image: radial-gradient(120% 120% at 0% 0%, rgba(250,204,21,.32), transparent 55%), linear-gradient(140deg, #15803d, #166534 48%, #92400e); }

.work-body { padding: 22px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.work-body h3 { font-size: 1.22rem; font-weight: 800; }
.work-body h3 .dim { font-family: var(--sans); font-weight: 500; font-size: .82rem; color: var(--s400); letter-spacing: 0; }
.work-body p { color: var(--s600); font-size: .96rem; margin-top: -2px; }
.tags { display: flex; flex-wrap: wrap; gap: 7px; margin-top: auto; }
.tags span { font-size: .73rem; font-weight: 600; color: var(--brand-700); background: var(--brand-50); border: 1px solid var(--brand-100); padding: 4px 9px; border-radius: 999px; }

.work-detail-link {
  appearance: none; border: 0; background: none; padding: 0; cursor: pointer; font: inherit;
  display: inline-flex; align-items: center; gap: 6px; align-self: flex-start;
  color: var(--brand-700); font-weight: 700; font-size: .92rem;
}
.work-detail-link svg { width: 1em; height: 1em; transition: transform .2s var(--ease); }
.work-detail-link:hover svg, .work-card:hover .work-detail-link svg { transform: translateX(3px); }
.work-detail-link:hover { text-decoration: underline; }

.work-foot { text-align: center; margin-top: 40px; color: var(--s600); font-size: 1.02rem; }
.work-foot a { color: var(--brand-700); font-weight: 700; }
.work-foot a:hover { text-decoration: underline; }

/* ---------- case-study modal ---------- */
dialog.case {
  width: min(640px, calc(100vw - 32px)); max-height: min(86vh, 720px); max-height: min(86dvh, 720px);
  padding: 0; border: 0; border-radius: var(--r-xl); overflow: hidden;
  display: flex; flex-direction: column;
  background: #fff; box-shadow: 0 40px 90px rgba(2,6,23,.35); color: var(--s700);
}
dialog.case .case-head { flex: none; }
dialog.case::backdrop { background: rgba(8,12,24,.55); backdrop-filter: blur(4px); }
dialog.case[open] { animation: modal-in .28s var(--ease-out); }
dialog.case[open]::backdrop { animation: fade-in .28s ease; }
@keyframes modal-in { from { opacity: 0; transform: translateY(14px) scale(.97); } to { opacity: 1; transform: none; } }
@keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }
.case-head {
  position: relative; min-height: 168px; padding: 22px; display: flex; align-items: flex-end;
  background-size: cover; background-position: center; isolation: isolate;
}
.case-head::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 30%, rgba(2,6,23,.4)); z-index: 1; }
.case-cat {
  position: absolute; top: 16px; left: 16px; z-index: 2;
  background: rgba(255,255,255,.72); -webkit-backdrop-filter: blur(10px) saturate(160%); backdrop-filter: blur(10px) saturate(160%);
  border: 1px solid rgba(255,255,255,.5); color: var(--s800);
  font-size: .68rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: 5px 10px; border-radius: 999px;
}
.case-title { position: relative; z-index: 2; color: #fff; }
.case-title h3 { color: #fff; font-size: clamp(1.5rem, 3vw, 2rem); text-shadow: 0 2px 18px rgba(0,0,0,.3); }
.case-title .case-domain { font-family: var(--sans); font-weight: 500; font-size: .86rem; opacity: .9; }
.case-close {
  position: absolute; top: 14px; right: 14px; z-index: 3;
  display: grid; place-items: center; width: 34px; height: 34px; border-radius: 50%; cursor: pointer;
  background: rgba(255,255,255,.75); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.5); color: var(--s800); box-shadow: var(--sh-sm);
  transition: transform .2s var(--ease), background .2s;
}
.case-close:hover { transform: rotate(90deg); background: #fff; }
.case-body { padding: 24px; overflow-y: auto; flex: 1; min-height: 0; }
.case-body p { color: var(--s600); font-size: 1rem; line-height: 1.7; }
.case-body p + p { margin-top: 12px; }
.case-meta { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.case-meta span { font-size: .75rem; font-weight: 600; color: var(--brand-700); background: var(--brand-50); border: 1px solid var(--brand-100); padding: 5px 10px; border-radius: 999px; }
.case-foot { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; justify-content: space-between; margin-top: 22px; padding-top: 18px; border-top: 1px solid var(--s200); }
.case-foot .case-live { font-size: .88rem; color: var(--s500); }
.case-foot .case-live a { color: var(--s700); font-weight: 600; border-bottom: 1px solid var(--s300); }
.case-foot .case-live a:hover { color: var(--brand-700); border-bottom-color: var(--brand); }
@media (prefers-reduced-motion: reduce) { dialog.case[open], dialog.case[open]::backdrop { animation: none; } }

/* ---------- offer ---------- */
.offer-cols { display: grid; grid-template-columns: 1.15fr .85fr; gap: 32px; align-items: start; }
.incl-card { background: #fff; border: 1px solid var(--s200); border-radius: var(--r-xl); box-shadow: var(--sh); padding: clamp(24px, 4vw, 38px); }
.incl-card h3 { font-size: 1.45rem; margin-bottom: 20px; }
.incl-list { display: grid; gap: 14px; margin-bottom: 22px; }
.incl-list li { display: flex; align-items: flex-start; gap: 12px; color: var(--s700); font-size: 1rem; }
.incl-list svg { color: #fff; background: var(--g-brand); border-radius: 7px; padding: 3px; width: 24px; height: 24px; flex: none; box-shadow: var(--sh-brand); }
.incl-list b { color: var(--s900); }
.incl-note { background: var(--brand-50); border: 1px solid var(--brand-100); border-radius: var(--r-sm); padding: 14px 16px; font-size: .95rem; color: var(--s700); margin-bottom: 24px; }

.compare { display: grid; gap: 16px; }
.cmp { border-radius: var(--r-lg); padding: 24px; }
.cmp-tag { font-family: var(--display); font-weight: 700; font-size: .82rem; text-transform: uppercase; letter-spacing: .1em; }
.cmp-price { font-family: var(--display); font-weight: 800; font-size: 2.4rem; letter-spacing: -.02em; margin: 6px 0 16px; }
.cmp-price span { font-size: 1.4rem; }
.cmp ul { display: grid; gap: 11px; }
.cmp li { display: flex; align-items: center; gap: 9px; font-size: .96rem; }
.cmp li svg { flex: none; }
.cmp-them { background: #fff; border: 1px solid var(--s200); }
.cmp-them .cmp-tag { color: var(--s500); }
.cmp-them .cmp-price { color: var(--s400); }
.cmp-them li { color: var(--s500); }
.cmp-them li svg { color: #ef4444; }
.cmp-us { background: linear-gradient(160deg, var(--s900), #131c33); border: 1px solid var(--s800); color: #fff; box-shadow: var(--sh-lg); position: relative; overflow: hidden; }
.cmp-us::before { content: ""; position: absolute; width: 240px; height: 240px; border-radius: 50%; background: rgba(124,58,237,.4); filter: blur(70px); top: -100px; right: -60px; }
.cmp-us .cmp-tag { color: var(--brand); position: relative; }
.cmp-us .cmp-price { color: #fff; position: relative; }
.cmp-us li { color: #cbd5e1; position: relative; }
.cmp-us li svg { color: var(--brand); }

/* ---------- steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; counter-reset: s; }
.steps li { background: #fff; border: 1px solid var(--s200); border-radius: var(--r-lg); padding: 26px; box-shadow: var(--sh-sm); transition: transform .25s var(--ease), box-shadow .25s; }
.steps li:hover { transform: translateY(-4px); box-shadow: var(--sh); }
.step-n { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 12px; background: var(--g-brand); color: #fff; font-family: var(--display); font-weight: 800; font-size: 1.15rem; box-shadow: var(--sh-brand); margin-bottom: 16px; }
.steps h3 { font-size: 1.18rem; }
.steps p { color: var(--s600); font-size: .96rem; margin-top: 7px; }

/* ---------- founder ---------- */
.founder-sec { padding: clamp(36px, 6vw, 60px) 0; }
.founder {
  display: flex; gap: 32px; align-items: center; max-width: 920px; margin: 0 auto;
  background: #fff; border: 1px solid var(--s200); border-radius: var(--r-xl);
  padding: clamp(24px, 4vw, 38px); box-shadow: var(--sh);
}
.founder-avatar {
  flex: none; width: 96px; height: 96px; border-radius: 50%; display: grid; place-items: center;
  font-family: var(--display); font-weight: 800; font-size: 2rem; letter-spacing: -.02em;
  color: #fff; background: var(--g-brand); box-shadow: var(--sh-brand);
  /* swap this block for a real photo:
     background: url("assets/jordan.jpg") center/cover; font-size: 0; */
}
.founder-text h2 { font-size: clamp(1.55rem, 3vw, 2.05rem); margin: 4px 0 12px; }
.founder-text > p:not(.eyebrow) { color: var(--s600); font-size: 1.05rem; }
.founder-text > p:not(.eyebrow) b { color: var(--s900); }
.founder-links { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 20px; }

/* ---------- faq ---------- */
.faq-wrap { max-width: 820px; }
.faq { display: grid; gap: 12px; }
.faq details { background: #fff; border: 1px solid var(--s200); border-radius: var(--r); overflow: hidden; transition: box-shadow .2s, border-color .2s; }
.faq details[open] { box-shadow: var(--sh); border-color: var(--brand-100); }
.faq summary { display: flex; align-items: center; justify-content: space-between; gap: 16px; cursor: pointer; list-style: none; padding: 18px 22px; font-family: var(--display); font-weight: 700; color: var(--s900); font-size: 1.04rem; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary svg { color: var(--s400); flex: none; transition: transform .25s var(--ease); }
.faq details[open] summary svg { transform: rotate(180deg); color: var(--brand); }
.faq-a { padding: 0 22px 20px; }
.faq-a p { color: var(--s600); font-size: .98rem; }

/* ---------- cta band ---------- */
.cta-band { position: relative; overflow: hidden; background: linear-gradient(160deg, #0c1326 0%, #131c33 60%, #0c1326 100%); color: #fff; padding: clamp(60px, 8vw, 90px) 0; }
.cta-inner { position: relative; z-index: 1; text-align: center; max-width: 720px; margin: 0 auto; }
.cta-inner h2 { color: #fff; font-size: clamp(1.9rem, 3.6vw, 2.7rem); }
.cta-inner p { color: #c7d0e0; margin-top: 14px; font-size: 1.1rem; }
.cta-btns { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 28px; }

/* ---------- contact / start ---------- */
.contact-direct { display: inline-flex; align-items: center; gap: 9px; font-family: var(--display); font-weight: 700; }
.contact-direct svg { color: var(--brand); }
.contact-direct a { color: var(--brand-700); }
.contact-direct a:hover { text-decoration: underline; }

.start-wrap { max-width: 940px; margin: 0 auto; }
.start-grid { display: grid; grid-template-columns: 1.18fr 1fr; gap: 22px; margin-top: 40px; align-items: start; }
.start-card {
  position: relative; display: flex; flex-direction: column; gap: 12px;
  background: #fff; border: 1px solid var(--s200); border-radius: var(--r-xl); padding: clamp(24px, 3.5vw, 34px);
  box-shadow: var(--sh); transition: transform .25s var(--ease), box-shadow .25s;
}
.start-card:hover { transform: translateY(-4px); box-shadow: var(--sh-lg); }
.start-card.is-primary {
  border-color: var(--brand-200);
  background:
    radial-gradient(420px 200px at 100% 0%, rgba(238,237,254,.7), transparent 70%),
    radial-gradient(360px 220px at 0% 100%, rgba(243,238,255,.6), transparent 70%), #fff;
  box-shadow: 0 0 0 1.5px var(--brand-200), 0 28px 60px rgba(91,79,229,.16);
}
.start-badge { position: absolute; top: -12px; right: 20px; background: linear-gradient(135deg, #FBBF24, #F59E0B); color: #4a2c00; font-family: var(--display); font-size: .7rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; padding: 6px 12px; border-radius: 999px; box-shadow: 0 10px 24px rgba(245,158,11,.32); }
.start-icon { display: grid; place-items: center; width: 48px; height: 48px; border-radius: 14px; flex: none; }
.start-icon.pay { background: var(--g-brand); color: #fff; box-shadow: var(--sh-brand); }
.start-icon.wa { background: #25D366; color: #fff; box-shadow: 0 12px 28px rgba(37,211,102,.3); }
.start-card h3 { font-size: 1.35rem; }
.start-card .start-price { display: flex; align-items: baseline; flex-wrap: wrap; gap: 4px 10px; }
.start-card .start-price s { color: var(--s400); font-family: var(--display); font-weight: 700; font-size: 1.3rem; }
.start-card .start-price b { font-family: var(--display); font-weight: 800; font-size: 2.6rem; color: var(--s900); letter-spacing: -.02em; line-height: 1; }
.start-card.is-primary .start-price b { color: var(--accent-700); }
.start-card .start-once { font-size: .85rem; font-weight: 500; color: var(--s500); }
.start-mini { display: grid; gap: 8px; margin: 4px 0 6px; }
.start-mini li { display: flex; align-items: flex-start; gap: 9px; font-size: .92rem; color: var(--s700); }
.start-mini svg { color: var(--brand); margin-top: 3px; flex: none; }
.start-card > p { color: var(--s600); font-size: .96rem; flex: 1; }
.start-card .btn { margin-top: 6px; }
.trust-row { display: flex; flex-wrap: wrap; gap: 8px 16px; margin-top: 2px; }
.trust-row li { display: inline-flex; align-items: center; gap: 6px; font-size: .8rem; font-weight: 600; color: var(--s500); }
.trust-row svg { color: var(--brand); flex: none; }
.start-card .start-fine { font-size: .78rem; color: var(--s400); margin-top: 2px; }
.start-card .start-fine a { color: var(--s500); text-decoration: underline; }

.next-steps { margin-top: 40px; }
.next-steps h3 { font-size: 1.15rem; text-align: center; margin-bottom: 20px; color: var(--s700); font-family: var(--display); }
.next-steps ol { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; counter-reset: ns; list-style: none; }
.next-steps li { background: rgba(255,255,255,.7); border: 1px solid var(--s200); border-radius: var(--r); padding: 18px; position: relative; }
.next-steps li::before { counter-increment: ns; content: counter(ns); position: absolute; top: -12px; left: 16px; width: 26px; height: 26px; border-radius: 8px; display: grid; place-items: center; background: var(--g-brand); color: #fff; font-family: var(--display); font-weight: 800; font-size: .85rem; box-shadow: var(--sh-brand); }
.next-steps li b { display: block; color: var(--s900); font-family: var(--display); font-size: .98rem; margin: 6px 0 4px; }
.next-steps li span { font-size: .9rem; color: var(--s600); }
.start-foot-note { text-align: center; margin-top: 28px; font-size: .92rem; color: var(--s500); }
.start-foot-note a { color: var(--brand-700); font-weight: 600; }

/* ---------- footer ---------- */
.ftr { background: var(--ink); color: #cbd5e1; padding: 56px 0 28px; }
.ftr-grid { display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; padding-bottom: 28px; border-bottom: 1px solid rgba(255,255,255,.1); }
.ftr-brand { max-width: 34ch; }
.ftr-brand .logo { color: #fff; }
.ftr-brand p { margin-top: 12px; font-size: .94rem; color: var(--s400); }
.ftr-brand .by { margin-top: 14px; font-size: .86rem; color: var(--s500); }
.ftr-brand .by a { color: #fff; font-weight: 600; border-bottom: 1px solid rgba(255,255,255,.3); }
.ftr-brand .by a:hover { border-bottom-color: var(--brand); }
.ftr-col h4 { color: #fff; font-family: var(--display); font-size: .82rem; text-transform: uppercase; letter-spacing: .12em; margin-bottom: 14px; }
.ftr-cols { display: flex; gap: 48px; flex-wrap: wrap; }
.ftr-links { display: flex; flex-direction: column; gap: 9px; }
.ftr-links a { color: var(--s400); font-size: .94rem; font-weight: 500; }
.ftr-links a:hover { color: #fff; }
.ftr-bottom { display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; margin-top: 22px; font-size: .84rem; color: var(--s500); }
.ftr-bottom a:hover { color: #fff; }
.ftr-bottom .ftr-legal { display: flex; gap: 16px; flex-wrap: wrap; }

/* ---------- ticketwave strip ---------- */
.tw-strip { background: var(--s900); color: #e2e8f0; }
.tw-strip .wrap { display: flex; align-items: center; justify-content: center; gap: 10px 16px; flex-wrap: wrap; padding: 14px 24px; text-align: center; font-size: .92rem; }
.tw-strip b { color: #fff; }
.tw-strip .tw-badge { display: inline-flex; align-items: center; gap: 7px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16); padding: 5px 12px; border-radius: 999px; font-size: .82rem; font-weight: 600; }
.tw-strip .tw-badge svg { color: var(--brand); }
.tw-strip a { color: #fff; font-weight: 600; border-bottom: 1px solid rgba(255,255,255,.35); }
.tw-strip a:hover { border-bottom-color: var(--brand); }

/* ---------- legal / doc pages ---------- */
.doc-hero { padding: clamp(48px, 7vw, 76px) 0 28px; }
.doc-hero h1 { font-size: clamp(2rem, 4.5vw, 3rem); }
.doc-hero p { color: var(--s500); margin-top: 10px; font-size: .98rem; }
.doc { max-width: 760px; margin: 0 auto; padding: 8px 0 clamp(56px, 8vw, 92px); }
.doc h2 { font-size: 1.5rem; margin: 38px 0 12px; }
.doc h3 { font-size: 1.12rem; margin: 24px 0 8px; }
.doc p, .doc li { color: var(--s700); font-size: 1rem; line-height: 1.75; }
.doc p { margin: 12px 0; }
.doc ul, .doc ol { margin: 12px 0 12px 1.4em; display: grid; gap: 7px; }
.doc ul { list-style: disc; } .doc ol { list-style: decimal; }
.doc li::marker { color: var(--brand); }
.doc a { color: var(--brand-700); font-weight: 500; border-bottom: 1px solid transparent; }
.doc a:hover { border-bottom-color: var(--brand-700); }
.doc strong { color: var(--s900); }
.doc .doc-meta { background: var(--brand-50); border: 1px solid var(--brand-100); border-radius: var(--r-sm); padding: 14px 16px; font-size: .92rem; color: var(--s700); margin: 4px 0 24px; }
.doc .doc-back { display: inline-flex; align-items: center; gap: 7px; margin-top: 36px; font-weight: 600; color: var(--brand-700); }
.doc hr { border: 0; border-top: 1px solid var(--s200); margin: 28px 0; }
.doc table { width: 100%; border-collapse: collapse; margin: 14px 0; font-size: .94rem; }
.doc th, .doc td { text-align: left; padding: 9px 12px; border-bottom: 1px solid var(--s200); vertical-align: top; }
.doc th { font-family: var(--display); color: var(--s900); }

/* ---------- reveal-on-scroll + stagger ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease-out), transform .7s var(--ease-out); will-change: opacity, transform; }
.reveal.in { opacity: 1; transform: none; }
/* row-by-row cascade inside the work grid (3-col) and the steps row (4-col) */
#workGrid .work-card:nth-child(3n+2) { transition-delay: 70ms; }
#workGrid .work-card:nth-child(3n+3) { transition-delay: 140ms; }
.steps li:nth-child(2) { transition-delay: 80ms; }
.steps li:nth-child(3) { transition-delay: 160ms; }
.steps li:nth-child(4) { transition-delay: 240ms; }

/* ---------- button shine sweep ---------- */
.btn-primary, .btn-light, .btn-wa { position: relative; overflow: hidden; }
.btn-primary::after, .btn-light::after, .btn-wa::after {
  content: ""; position: absolute; top: 0; bottom: 0; left: 0; width: 60%; pointer-events: none;
  background: linear-gradient(105deg, transparent 0%, rgba(255,255,255,.42) 50%, transparent 100%);
  transform: translateX(-180%) skewX(-12deg); transition: transform .7s var(--ease-out);
}
.btn-primary:hover::after, .btn-light:hover::after, .btn-wa:hover::after { transform: translateX(280%) skewX(-12deg); }

/* ---------- FAQ open animation ---------- */
.faq details[open] .faq-a { animation: faq-in .32s var(--ease-out); }
@keyframes faq-in { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: none; } }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  #workGrid .work-card, .steps li { transition-delay: 0ms !important; }
  .floaty, .marquee-track, .work-meta .live { animation: none; }
  .btn-primary::after, .btn-light::after, .btn-wa::after { display: none; }
  .faq details[open] .faq-a { animation: none; }
  body::before { animation: none; }
  .browser, .hero-art:hover .browser { transform: none; }
}

/* ---------- responsive ---------- */
@media (max-width: 1000px) {
  .hero-grid { grid-template-columns: 1fr; gap: 44px; }
  .hero-sub { max-width: none; }
  .browser { transform: none; max-width: 460px; margin: 0 auto; }
  .floaty-1 { left: 0; } .floaty-2 { right: 0; }
  .offer-cols { grid-template-columns: 1fr; }
  .work-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .next-steps ol { grid-template-columns: repeat(2, 1fr); gap: 24px 16px; }
  .stats .wrap { grid-template-columns: repeat(2, 1fr); gap: 24px 16px; }
}
@media (max-width: 720px) {
  .nav, .hdr-cta { display: none; }
  .burger { display: flex; }
  .work-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .start-grid { grid-template-columns: 1fr; }
  .next-steps ol { grid-template-columns: 1fr; gap: 22px; }
  .founder { flex-direction: column; text-align: center; gap: 22px; }
  .founder-avatar { width: 84px; height: 84px; font-size: 1.7rem; }
  .founder-links { justify-content: center; }
  .floaty { display: none; }
  .hero h1 br { display: none; }
  .ftr-grid { flex-direction: column; gap: 28px; }
}
@media (max-width: 480px) { .stats .wrap { grid-template-columns: 1fr 1fr; } }
@media (min-width: 721px) { .mobile-menu { display: none !important; } }
