/* ============================================================
   PICLIO — Energetic event-photography landing
   Design system: dark party base + magenta→violet→cyan gradient
   Type: Unbounded (display) + Space Grotesk (text)
   ============================================================ */

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { min-height: 100%; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
ul { list-style: none; }

/* ---------- Tokens ---------- */
:root {
  --bg:      #08060F;
  --bg-2:    #0E0A1C;
  --surface: rgba(255,255,255,.045);
  --surface-2: rgba(255,255,255,.07);
  --line:    rgba(255,255,255,.10);
  --line-2:  rgba(255,255,255,.18);
  --ink:     #F7F3FF;
  --muted:   #ABA0C9;
  --muted-2: #756C92;

  --lime:    #8ED91A;   /* brand */
  --lime-2:  #B6F23A;   /* bright */
  --green:   #34E08A;
  --cyan:    #22D3EE;
  --violet:  #9A3CF0;
  --magenta: #FF2D78;
  --amber:   #FFC53D;
  --pink:    #FF2D78;   /* alias */

  /* gradients — NEVER mix lime with violet/pink. Only lime→white OR violet→pink. */
  --grad:      linear-gradient(100deg, #8ED91A 0%, #F1FFDD 100%);  /* lime → white (text/accent) */
  --grad-pink: linear-gradient(112deg, #9A3CF0 0%, #FF6DB0 100%);  /* violet → pink (text/accent) */
  --grad-hot:  linear-gradient(112deg, #C72BD8 0%, #9A3CF0 100%);  /* buttons: pink → violet (white text) */
  --grad-cool: linear-gradient(100deg, #B6F23A 0%, #ECFFCF 100%);  /* lime → white (icons, dark text) */
  --grad-soft: linear-gradient(112deg, rgba(154,60,240,.18), rgba(255,109,176,.14), rgba(154,60,240,.16));

  --font-display: "Unbounded", system-ui, sans-serif;
  --font-text:    "Space Grotesk", system-ui, sans-serif;

  --maxw: 1240px;
  --pad: clamp(20px, 5vw, 72px);
  --radius: 22px;
  --radius-sm: 14px;
  --shadow: 0 30px 80px -28px rgba(0,0,0,.85);
  --glow-pink: 0 0 0 1px rgba(255,45,120,.4), 0 18px 60px -18px rgba(255,45,120,.55);
}

/* ---------- Base ---------- */
body {
  font-family: var(--font-text);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.55;
  letter-spacing: .005em;
  overflow-x: hidden;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

/* ambient color blobs behind everything */
.aura { position: fixed; inset: 0; z-index: -2; overflow: hidden; pointer-events: none; }
.aura span {
  position: absolute; border-radius: 50%; filter: blur(90px); opacity: .55;
  mix-blend-mode: screen;
}
.aura .a1 { width: 62vw; height: 62vw; left: -18vw; top: -16vw; background: radial-gradient(circle, #9A3CF0, transparent 65%); }
.aura .a2 { width: 56vw; height: 56vw; right: -16vw; top: 20vh; background: radial-gradient(circle, #7C2BD9, transparent 65%); }
.aura .a3 { width: 52vw; height: 52vw; left: 18vw; bottom: -24vw; background: radial-gradient(circle, #B14DF0, transparent 65%); opacity: .5; }
body::after { /* fine grain */
  content: ""; position: fixed; inset: 0; z-index: -1; pointer-events: none; opacity: .045;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- Layout helpers ---------- */
.wrap { max-width: var(--maxw); margin-inline: auto; padding-inline: var(--pad); }
.section { position: relative; padding-block: clamp(56px, 7vw, 96px); }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12.5px; font-weight: 600; letter-spacing: .22em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 22px;
}
.eyebrow::before {
  content: ""; width: 26px; height: 2px; border-radius: 2px; background: var(--grad);
}
.eyebrow.center { justify-content: center; }

h1, h2, h3 { font-family: var(--font-display); font-weight: 700; line-height: 1.04; letter-spacing: -.02em; }
h2.title { font-size: clamp(34px, 5.4vw, 68px); text-wrap: balance; }
.lead { font-size: clamp(17px, 2vw, 21px); line-height: 1.6; color: var(--muted); max-width: 56ch; text-wrap: pretty; }

.grad-text {
  background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.grad-pink {
  background: var(--grad-pink); -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* ---------- Buttons ---------- */
.btn {
  --b: var(--ink);
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 26px; border-radius: 999px; font-weight: 600; font-size: 15.5px;
  letter-spacing: .01em; position: relative; transition: transform .25s cubic-bezier(.2,.8,.3,1), box-shadow .25s, filter .25s;
  white-space: nowrap;
}
.btn-primary { background: var(--grad-hot); color: #fff; box-shadow: 0 14px 40px -14px rgba(255,45,120,.7); }
.btn-primary:hover { transform: translateY(-2px) scale(1.015); box-shadow: 0 22px 54px -14px rgba(255,45,120,.85); filter: saturate(1.08); }
.btn-ghost { background: var(--surface); color: var(--ink); border: 1px solid var(--line-2); backdrop-filter: blur(8px); }
.btn-ghost:hover { transform: translateY(-2px); background: var(--surface-2); border-color: var(--ink); }
.btn .arr { transition: transform .25s; }
.btn:hover .arr { transform: translateX(4px); }

/* ---------- Nav ---------- */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 90;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px var(--pad); transition: background .3s, backdrop-filter .3s, border-color .3s, padding .3s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(8,6,15,.72); backdrop-filter: blur(16px) saturate(1.4);
  border-bottom-color: var(--line); padding-block: 11px;
}
.nav .brand { display: flex; align-items: center; gap: 11px; }
.nav .brand img { height: 26px; width: auto; display: block; }
.nav.scrolled .brand img { height: 24px; }
.nav .brand .dot { width: 11px; height: 11px; border-radius: 50%; background: var(--grad-hot); box-shadow: 0 0 0 4px rgba(255,45,120,.18); animation: pulse 2.4s infinite; }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { font-size: 14.5px; color: var(--muted); font-weight: 500; position: relative; transition: color .2s; white-space: nowrap; }
.nav-links a::after { content: ""; position: absolute; left: 0; bottom: -6px; height: 2px; width: 0; background: var(--grad); border-radius: 2px; transition: width .25s; }
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { width: 100%; }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-login { font-size: 14.5px; color: var(--muted); font-weight: 500; }
.nav-login:hover { color: var(--ink); }
.nav .btn { padding: 11px 20px; font-size: 14.5px; }
.burger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.burger span { width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: .3s; }

/* mobile menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 80; background: rgba(8,6,15,.96); backdrop-filter: blur(20px);
  display: flex; flex-direction: column; justify-content: center; gap: 8px; padding: var(--pad);
  transform: translateY(-100%); transition: transform .45s cubic-bezier(.2,.8,.2,1); opacity: 0;
}
.mobile-menu.open { transform: translateY(0); opacity: 1; }
.mobile-menu a { font-family: var(--font-display); font-size: clamp(28px, 8vw, 44px); font-weight: 700; padding: 8px 0; }
.mobile-menu .btn { margin-top: 24px; align-self: flex-start; }

/* ---------- Hero ---------- */
.hero { position: relative; padding-top: clamp(92px, 11vh, 132px); padding-bottom: clamp(44px, 5vw, 72px); overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(30px, 5vw, 70px); align-items: center; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px; padding: 8px 16px; border-radius: 999px;
  background: var(--surface); border: 1px solid var(--line); font-size: 12.5px; letter-spacing: .14em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 28px; font-weight: 600;
}
.hero-badge .live { width: 8px; height: 8px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 0 0 rgba(198,255,58,.7); animation: livePulse 1.8s infinite; }
.hero h1 { font-size: clamp(40px, 5.4vw, 66px); line-height: 1.0; letter-spacing: -.03em; }
.hero h1 .ln { display: block; overflow: hidden; }
.hero p.sub { margin-top: 20px; font-size: clamp(17px, 2vw, 21px); color: var(--muted); max-width: 46ch; text-wrap: pretty; }
.hero-actions { display: flex; flex-wrap: nowrap; gap: 14px; margin-top: 26px; }
.hero-trust { margin-top: 30px; display: flex; align-items: center; gap: 14px; color: var(--muted-2); font-size: 13.5px; }
.hero-trust .avs { display: flex; }
.hero-trust .avs img { width: 34px; height: 34px; border-radius: 50%; object-fit: cover; border: 2px solid var(--bg); margin-left: -10px; }
.hero-trust .avs img:first-child { margin-left: 0; }

/* hero collage */
.collage { position: relative; aspect-ratio: 1/1.02; }
.collage .ph {
  position: absolute; border-radius: var(--radius-sm); overflow: hidden;
  box-shadow: var(--shadow); border: 1px solid var(--line-2); background: var(--bg-2);
  will-change: transform;
}
.collage .ph img { width: 100%; height: 100%; object-fit: cover; }
.collage .p1 { width: 56%; height: 62%; left: 0; top: 4%; z-index: 3; transform: rotate(-3deg); }
.collage .p2 { width: 46%; height: 50%; right: 0; top: 0; z-index: 2; transform: rotate(3deg); }
.collage .p3 { width: 50%; height: 46%; right: 4%; bottom: 0; z-index: 4; transform: rotate(-2deg); }
.collage .p4 { width: 34%; height: 34%; left: 6%; bottom: 6%; z-index: 5; transform: rotate(4deg); }

.live-card {
  position: absolute; left: -6%; top: 40%; z-index: 9;
  display: flex; align-items: center; gap: 12px; padding: 11px 16px 11px 12px;
  background: rgba(14,10,28,.86); backdrop-filter: blur(14px);
  border: 1px solid var(--line-2); border-radius: 16px; box-shadow: var(--shadow);
  animation: floaty 5s ease-in-out infinite;
}
.live-card .thumb { width: 42px; height: 42px; border-radius: 10px; object-fit: cover; }
.live-card .lc-t { font-size: 12px; font-weight: 700; letter-spacing: .04em; color: var(--lime); display: flex; align-items: center; gap: 6px; }
.live-card .lc-t .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--lime); animation: livePulse 1.6s infinite; }
.live-card .lc-s { font-size: 12.5px; color: var(--muted); margin-top: 2px; }

.scroll-hint { display: flex; align-items: center; gap: 10px; margin-top: 56px; color: var(--muted-2); font-size: 12px; letter-spacing: .25em; text-transform: uppercase; }
.scroll-hint .mouse { width: 22px; height: 34px; border: 2px solid var(--line-2); border-radius: 12px; position: relative; }
.scroll-hint .mouse::after { content: ""; position: absolute; left: 50%; top: 6px; width: 3px; height: 7px; border-radius: 2px; background: var(--ink); transform: translateX(-50%); animation: scrollDot 1.8s infinite; }

/* ---------- Stats ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; margin-top: clamp(48px, 8vw, 90px); }
.stat { background: var(--bg); padding: 30px clamp(16px,2.4vw,32px); transition: background .3s; }
.stat:hover { background: var(--bg-2); }
.stat .num { font-family: var(--font-display); font-weight: 700; font-size: clamp(34px, 4.6vw, 60px); line-height: 1; letter-spacing: -.03em; }
.stat .lbl { margin-top: 12px; font-size: 12.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }

/* ---------- Marquee ---------- */
.marquee-band { padding-block: clamp(40px, 6vw, 70px); }
.marquee { display: flex; gap: 18px; width: max-content; }
.marquee.row { animation: scrollX var(--dur, 60s) linear infinite; }
.marquee.rev { animation-direction: reverse; }
.marquee-wrap:hover .marquee { animation-play-state: paused; }
.marquee-wrap { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent); mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent); }
.marquee-wrap + .marquee-wrap { margin-top: 18px; }
.mq-item { width: clamp(220px, 26vw, 340px); aspect-ratio: 4/3; border-radius: var(--radius-sm); overflow: hidden; border: 1px solid var(--line); position: relative; flex: none; }
.mq-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.mq-item:hover img { transform: scale(1.07); }
.mq-item::after { content: ""; position: absolute; inset: 0; background: linear-gradient(transparent 55%, rgba(8,6,15,.5)); }
.mq-item .tag { position: absolute; left: 12px; bottom: 11px; z-index: 2; font-size: 11.5px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: #fff; opacity: .85; }
.mq-item.portrait { aspect-ratio: 3/4; width: clamp(180px, 20vw, 260px); }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity .8s cubic-bezier(.2,.7,.2,1), transform .8s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: .08s; }
.reveal[data-d="2"] { transition-delay: .16s; }
.reveal[data-d="3"] { transition-delay: .24s; }
.reveal[data-d="4"] { transition-delay: .32s; }

/* ---------- Section header ---------- */
.sec-head { max-width: 60ch; }
.sec-head.center { margin-inline: auto; text-align: center; }
.sec-head .lead { margin-top: 22px; }
.sec-head.center .lead { margin-inline: auto; }

/* ---------- Problem cards ---------- */
.prob-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 56px; }
.prob-card { padding: 34px 30px; border-radius: var(--radius); background: var(--surface); border: 1px solid var(--line); position: relative; overflow: hidden; transition: transform .35s, border-color .35s, background .35s; }
.prob-card:hover { transform: translateY(-6px); border-color: var(--line-2); background: var(--surface-2); }
.prob-card .n { font-family: var(--font-display); font-weight: 700; font-size: 14px; letter-spacing: .1em; color: transparent; -webkit-text-stroke: 1px var(--line-2); }
.prob-card h3 { font-size: 23px; margin: 18px 0 12px; letter-spacing: -.01em; }
.prob-card p { color: var(--muted); font-size: 15.5px; }
.prob-card .blob { position: absolute; right: -40px; top: -40px; width: 130px; height: 130px; border-radius: 50%; background: var(--grad); filter: blur(40px); opacity: 0; transition: opacity .4s; }
.prob-card:hover .blob { opacity: .35; }

/* ---------- How it works ---------- */
.how { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(36px, 6vw, 90px); align-items: start; }
.how-sticky { position: sticky; top: 110px; }
.how-phone {
  width: min(330px, 78vw); margin-inline: auto; aspect-ratio: 9/19; border-radius: 38px; padding: 12px;
  background: linear-gradient(160deg, #1a1430, #0c0918); border: 1px solid var(--line-2);
  box-shadow: var(--shadow), 0 0 0 1px rgba(255,255,255,.04) inset; position: relative;
}
.how-phone .screen { width: 100%; height: 100%; border-radius: 28px; overflow: hidden; position: relative; background: #000; }
.how-phone .notch { position: absolute; top: 14px; left: 50%; transform: translateX(-50%); width: 90px; height: 22px; background: #000; border-radius: 999px; z-index: 5; }
.how-phone .screen img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity .7s; }
.how-phone .screen img.active { opacity: 1; }
.phone-toast {
  position: absolute; left: 12px; right: 12px; bottom: 16px; z-index: 6;
  display: flex; align-items: center; gap: 11px; padding: 10px 12px; border-radius: 15px;
  background: rgba(10,7,18,.82); backdrop-filter: blur(12px); border: 1px solid var(--line-2);
}
.phone-toast .pt-ic { width: 36px; height: 36px; border-radius: 9px; background: var(--grad-cool); color: #0c1407; display: grid; place-items: center; font-size: 17px; flex: none; }
.phone-toast .pt-t { font-size: 11.5px; font-weight: 700; color: var(--lime); letter-spacing: .04em; }
.phone-toast .pt-s { font-size: 12px; color: var(--muted); }

.steps { display: flex; flex-direction: column; gap: 14px; }
.step {
  display: grid; grid-template-columns: 54px 1fr; gap: 20px; padding: 22px 24px; border-radius: var(--radius);
  border: 1px solid var(--line); background: var(--surface); cursor: pointer;
  transition: border-color .35s, background .35s, transform .35s;
}
.step:hover, .step.active { border-color: var(--line-2); background: var(--surface-2); transform: translateX(6px); }
.step .sn {
  width: 54px; height: 54px; border-radius: 14px; display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 700; font-size: 19px; border: 1px solid var(--line-2);
  transition: .35s; position: relative;
}
.step.active .sn { background: var(--grad-hot); color: #fff; border-color: transparent; box-shadow: 0 10px 30px -10px rgba(255,45,120,.6); }
.step h3 { font-size: 20px; letter-spacing: -.01em; margin-bottom: 6px; font-family: var(--font-text); font-weight: 700; }
.step p { color: var(--muted); font-size: 15px; }

/* ---------- Services / Atrakce ---------- */
.serv-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 56px; }
.serv {
  position: relative; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line);
  min-height: 340px; display: flex; flex-direction: column; justify-content: flex-end;
  padding: 32px; isolation: isolate; transition: transform .4s, border-color .4s;
}
.serv:hover { transform: translateY(-6px); border-color: var(--line-2); }
.serv .bg { position: absolute; inset: 0; z-index: -2; }
.serv .bg img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s cubic-bezier(.2,.7,.2,1); }
.serv:hover .bg img { transform: scale(1.08); }
.serv::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(8deg, rgba(8,6,15,.95) 12%, rgba(8,6,15,.4) 55%, rgba(8,6,15,.15)); }
.serv.feature { grid-column: span 2; min-height: 380px; }
.serv .pill { align-self: flex-start; padding: 6px 14px; border-radius: 999px; font-size: 11.5px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; margin-bottom: auto; white-space: nowrap; }
.serv .pill.hot { background: var(--grad-hot); color: #fff; }
.serv .pill.alt { background: var(--surface-2); border: 1px solid var(--line-2); color: var(--ink); }
.serv h3 { font-size: clamp(24px, 3vw, 34px); margin: 16px 0 10px; letter-spacing: -.02em; }
.serv p { color: rgba(247,243,255,.78); font-size: 15px; max-width: 52ch; }
.serv .price-row { display: flex; align-items: baseline; gap: 12px; margin-top: 20px; flex-wrap: wrap; }
.serv .price { font-family: var(--font-display); font-weight: 700; font-size: clamp(22px, 2.6vw, 30px); }
.serv .price small { font-size: 13px; color: var(--muted); font-family: var(--font-text); font-weight: 500; }

/* ---------- Brand Everywhere full-width band ---------- */
.serv-band { position: relative; margin-top: 20px; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line-2); min-height: 240px; display: flex; align-items: center; }
.serv-band .bg { position: absolute; inset: 0; z-index: -2; }
.serv-band .bg img { width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform .9s cubic-bezier(.2,.7,.2,1); }
.serv-band:hover .bg img { transform: scale(1.04); }
.serv-band::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg, rgba(6,4,12,.96) 0%, rgba(6,4,12,.82) 18%, rgba(6,4,12,.2) 36%, rgba(6,4,12,0) 48%); }
.serv-band-copy { padding: clamp(22px, 3vw, 38px); max-width: 380px; }
.serv-band-copy .pill { display: inline-block; align-self: flex-start; padding: 5px 13px; border-radius: 999px; font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; background: var(--surface-2); border: 1px solid var(--line-2); color: var(--ink); margin-bottom: 12px; }
.serv-band-copy h3 { font-family: var(--font-display); font-weight: 700; font-size: clamp(24px, 2.6vw, 30px); letter-spacing: -.02em; margin-bottom: 9px; }
.serv-band-copy p { color: rgba(247,243,255,.82); font-size: 14.5px; max-width: 40ch; }
.serv-band-copy .price-row { display: flex; align-items: baseline; gap: 12px; margin-top: 14px; flex-wrap: wrap; }
.serv-band-copy .price { font-family: var(--font-display); font-weight: 700; font-size: clamp(18px, 1.8vw, 22px); }
.serv-band-copy .price small { font-size: 13px; color: var(--muted); font-family: var(--font-text); font-weight: 500; }
@media (min-width: 760px) { .serv-band { min-height: 230px; } }
@media (max-width: 760px) {
  .serv-band { align-items: flex-end; min-height: 420px; }
  .serv-band::after { background: linear-gradient(0deg, rgba(6,4,12,.95) 12%, rgba(6,4,12,.5) 50%, rgba(6,4,12,.1)); }
  .serv-band-copy { max-width: none; }
}

/* ---------- Print packages ---------- */
.incl-band { display: flex; align-items: center; gap: 16px; margin: 30px 0 34px; padding: 18px 22px; border-radius: var(--radius-sm); border: 1px solid var(--line-2); background: var(--grad-soft); }
.incl-band .incl-ic { width: 34px; height: 34px; flex: none; border-radius: 50%; display: grid; place-items: center; background: var(--grad-cool); color: #0c1407; font-weight: 800; font-size: 16px; }
.incl-band .incl-tx { font-size: 15.5px; color: var(--ink); line-height: 1.5; text-wrap: pretty; }
.incl-band .incl-tx b { font-weight: 700; }
.print-band { margin-top: 22px; padding: 28px clamp(20px,3vw,36px); border-radius: var(--radius); border: 1px solid var(--line); background: var(--surface); }
.print-head { display: flex; align-items: baseline; justify-content: space-between; flex-wrap: wrap; gap: 10px; margin-bottom: 22px; }
.print-head .pt { font-family: var(--font-display); font-weight: 700; font-size: 19px; }
.print-head .ps { font-size: 13px; color: var(--muted); letter-spacing: .04em; }
.print-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.print-card { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 20px 22px; border-radius: var(--radius-sm); border: 1px solid var(--line); background: var(--bg-2); transition: .3s; }
.print-card:hover { border-color: var(--line-2); transform: translateY(-3px); }
.print-card .sz { font-family: var(--font-display); font-weight: 700; font-size: 26px; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.print-card .meta { text-align: right; }
.print-card .meta .q { font-size: 13px; color: var(--muted); }
.print-card .meta .pr { font-family: var(--font-display); font-weight: 700; font-size: 18px; }

/* ---------- Compare table ---------- */
.compare { margin-top: 56px; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.crow { display: grid; grid-template-columns: 1.2fr 1fr 1.2fr; }
.crow > div { padding: 20px clamp(16px,2.4vw,28px); border-bottom: 1px solid var(--line); display: flex; align-items: center; gap: 10px; font-size: 15px; }
.crow:last-child > div { border-bottom: none; }
.crow.head > div { font-family: var(--font-display); font-weight: 700; font-size: 14px; letter-spacing: .02em; background: var(--bg-2); }
.crow.head .pic { background: var(--grad-soft); color: var(--ink); }
.crow > div.feat { color: var(--muted); font-weight: 500; }
.crow > div.old { color: var(--muted-2); }
.crow > div.pic { background: rgba(142,217,26,.07); font-weight: 600; }
.crow .ic { width: 20px; height: 20px; flex: none; display: grid; place-items: center; border-radius: 50%; font-size: 12px; }
.crow .ic.no { background: rgba(255,255,255,.06); color: var(--muted-2); }
.crow .ic.yes { background: var(--grad-cool); color: #0c1407; font-weight: 800; }

/* ---------- Team ---------- */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; }
.member { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 14px 22px 30px; transition: transform .4s; }
.member:hover { transform: translateY(-6px); }
.member .photo {
  width: clamp(150px, 16vw, 196px); aspect-ratio: 1; border-radius: 50%; overflow: hidden;
  position: relative; background: linear-gradient(160deg, #2a2140, #14101f);
  box-shadow: 0 18px 50px -18px rgba(0,0,0,.7), 0 0 0 1px var(--line);
  transition: box-shadow .4s;
}
.member:hover .photo { box-shadow: 0 22px 60px -18px rgba(154,60,240,.5), 0 0 0 1px var(--line-2); }
.member .photo img { width: 100%; height: 100%; object-fit: cover; filter: saturate(1.05); transition: transform .7s; }
.member:hover .photo img { transform: scale(1.05); }
.member .photo .mono {
  position: absolute; inset: 0; display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 700; font-size: clamp(54px, 7vw, 78px);
  color: transparent; background: var(--grad-pink); -webkit-background-clip: text; background-clip: text;
  letter-spacing: -.02em; user-select: none;
}
.member .photo .mono::after {
  content: ""; position: absolute; inset: 0; border-radius: 50%;
  background: radial-gradient(120% 120% at 30% 20%, rgba(154,60,240,.22), transparent 60%);
}
/* sketch portraits: light bg so the B&W line art reads, gradient ring on hover */
.member .photo.sketch { background: linear-gradient(165deg, #f4f1fb, #d9d2ec); }
.member .photo.sketch img { object-fit: cover; object-position: center 12%; filter: none; mix-blend-mode: multiply; }
.member:hover .photo.sketch { box-shadow: 0 22px 60px -18px rgba(154,60,240,.55), 0 0 0 2px var(--violet); }
.member .info { padding: 22px 0 0; }
.member .info .nm { font-family: var(--font-display); font-weight: 700; font-size: 22px; }
.member .info .rl { font-size: 12.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--violet); margin-top: 8px; font-weight: 600; }
.member .info p { color: var(--muted); font-size: 14.5px; margin-top: 14px; max-width: 30ch; margin-inline: auto; }

/* ---------- Beta SaaS ---------- */
.beta { position: relative; border-radius: clamp(24px, 4vw, 40px); overflow: hidden; padding: clamp(40px, 6vw, 72px); border: 1px solid var(--line-2); }
.beta::before { content: ""; position: absolute; inset: 0; z-index: -1; background: var(--grad-soft); }
.beta-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 44px; align-items: center; }
.beta h2 { font-size: clamp(30px, 4.2vw, 52px); }
.beta .feat-list { display: flex; flex-direction: column; gap: 14px; margin-top: 8px; }
.beta .feat-list li { display: flex; align-items: flex-start; gap: 13px; font-size: 16px; color: var(--ink); }
.beta .feat-list .chk { width: 24px; height: 24px; border-radius: 50%; background: var(--grad-cool); color: #0c1407; font-weight: 800; display: grid; place-items: center; flex: none; font-size: 13px; margin-top: 1px; }
.beta-card { background: rgba(8,6,15,.6); backdrop-filter: blur(14px); border: 1px solid var(--line-2); border-radius: var(--radius); padding: 32px; }
.beta-card .who { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; }
.beta-card .who img { width: 58px; height: 58px; border-radius: 50%; object-fit: cover; border: 2px solid var(--line-2); }
.beta-card .who .nm { font-family: var(--font-display); font-weight: 700; font-size: 19px; }
.beta-card .who .rl { font-size: 12.5px; color: var(--muted); }
.beta-card p.q { color: var(--muted); font-style: italic; font-size: 15px; margin-bottom: 22px; }
.beta-card .contact-row { display: flex; flex-direction: column; gap: 10px; }
.beta-card .cl { display: flex; align-items: center; gap: 12px; padding: 13px 16px; border-radius: 13px; border: 1px solid var(--line); background: var(--surface); transition: .3s; font-size: 14.5px; }
.beta-card .cl:hover { border-color: var(--line-2); transform: translateX(4px); }
.beta-card .cl .k { font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted-2); }

/* ---------- Contact / CTA ---------- */
.cta-final { text-align: center; }
.cta-final h2 { font-size: clamp(36px, 6.5vw, 88px); max-width: 16ch; margin-inline: auto; }
.cta-final .lead { margin: 26px auto 0; }
.cta-final .btn { margin-top: 40px; padding: 18px 34px; font-size: 17px; }
.cta-info { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px 40px; margin-top: 44px; color: var(--muted); font-size: 15px; }
.cta-info a { color: var(--ink); font-weight: 600; }
.cta-info a:hover { color: var(--pink); }

/* ---------- Footer ---------- */
.footer { border-top: 1px solid var(--line); padding-block: 50px; }
.footer-grid { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 24px; }
.footer .brand { display: flex; align-items: center; gap: 11px; }
.footer .brand img { height: 30px; width: auto; display: block; }
.footer .brand .dot { width: 11px; height: 11px; border-radius: 50%; background: var(--grad); }
.footer .f-links { display: flex; gap: 26px; flex-wrap: wrap; }
.footer .f-links a { color: var(--muted); font-size: 14.5px; white-space: nowrap; }
.footer .f-links a:hover { color: var(--ink); }
.footer .copy { color: var(--muted-2); font-size: 13px; margin-top: 26px; }
.footer .copy a { color: var(--muted); text-decoration: underline; text-underline-offset: 2px; }
.footer .copy a:hover { color: var(--ink); }

/* ---------- Animations ---------- */
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 4px rgba(255,45,120,.18); } 50% { box-shadow: 0 0 0 7px rgba(255,45,120,.05); } }
@keyframes livePulse { 0% { box-shadow: 0 0 0 0 rgba(198,255,58,.6); } 70% { box-shadow: 0 0 0 10px rgba(198,255,58,0); } 100% { box-shadow: 0 0 0 0 rgba(198,255,58,0); } }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
@keyframes scrollX { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes scrollDot { 0% { opacity: 1; transform: translate(-50%, 0); } 70% { opacity: 0; transform: translate(-50%, 12px); } 100% { opacity: 0; } }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .nav-links, .nav-login { display: none; }
  .burger { display: flex; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-wrap: wrap; }
  .hero-actions .btn { flex: 1 1 auto; justify-content: center; }
  .collage { max-width: 460px; margin-inline: auto; width: 100%; margin-top: 20px; }
  .how { grid-template-columns: 1fr; }
  .how-sticky { position: static; margin-bottom: 30px; }
  .serv.feature { grid-column: span 1; }
  .beta-grid { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  body { font-size: 16px; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .prob-grid, .serv-grid, .team-grid, .print-grid { grid-template-columns: 1fr; }
  .crow { grid-template-columns: 1.4fr 1fr 1fr; }
  .crow > div { font-size: 13px; padding: 14px 12px; }
  .crow.head > div { font-size: 12px; }
  .hero h1 { font-size: clamp(38px, 12vw, 64px); }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
  html { scroll-behavior: auto; }
}