/* =========================================================
   Web-IT.Expert — Web Studio. Site-building agency UI
   ========================================================= */
:root {
  --bg: #0C0810;
  --bg-2: #130B19;
  --surface: rgba(255,255,255,.04);
  --surface-2: rgba(255,255,255,.07);
  --stroke: rgba(255,255,255,.09);
  --stroke-2: rgba(255,255,255,.16);

  --text: #F3ECF2;
  --soft: #C3B6C4;
  --muted: #8A7E92;

  --c1: #FF6A3D;
  --c2: #FF4D8D;
  --c3: #A855F7;

  --grad: linear-gradient(120deg, #FF6A3D 0%, #FF4D8D 52%, #A855F7 100%);
  --glow: rgba(255,77,141,.5);
  --glow-2: rgba(168,85,247,.45);

  --radius: 18px;
  --radius-sm: 12px;
  --container: 1180px;
  --ease: cubic-bezier(.22,1,.36,1);
  --shadow: 0 30px 80px -34px rgba(0,0,0,.82);

  --sans: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --disp: 'Outfit', var(--sans);
  --mono: 'JetBrains Mono', ui-monospace, Menlo, Consolas, monospace;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: var(--sans); background: var(--bg); color: var(--text); line-height: 1.6; font-size: 16px; overflow-x: hidden; -webkit-font-smoothing: antialiased; }
img, svg, canvas { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
ul { list-style: none; }
::selection { background: rgba(255,77,141,.34); color: #fff; }
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 22px; }
.container.narrow { max-width: 820px; }

/* ---------- Background ---------- */
.bg { position: fixed; inset: 0; z-index: -2; overflow: hidden; pointer-events: none; }
.bg__ink { position: absolute; inset: 0; width: 100%; height: 100%; opacity: .74; mix-blend-mode: screen; filter: saturate(1.25) contrast(1.04); transform: translateZ(0); }
.bg__grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.02) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.02) 1px, transparent 1px); background-size: 56px 56px; mask-image: radial-gradient(ellipse 75% 60% at 50% 0%, #000 30%, transparent 78%); -webkit-mask-image: radial-gradient(ellipse 75% 60% at 50% 0%, #000 30%, transparent 78%); }
.bg__glow { position: absolute; border-radius: 50%; filter: blur(100px); opacity: .42; mix-blend-mode: screen; animation: float 22s ease-in-out infinite; }
.bg__glow--1 { width: 50vw; height: 50vw; top: -16vw; left: -8vw; background: radial-gradient(circle, rgba(255,106,61,.55), transparent 62%); }
.bg__glow--2 { width: 46vw; height: 46vw; top: 24vh; right: -14vw; background: radial-gradient(circle, rgba(255,77,141,.5), transparent 62%); animation-delay: -7s; }
.bg__glow--3 { width: 44vw; height: 44vw; bottom: -16vw; left: 24vw; background: radial-gradient(circle, rgba(168,85,247,.45), transparent 62%); animation-delay: -13s; }
@keyframes float { 0%,100% { transform: translate(0,0) scale(1);} 50% { transform: translate(3vw,-3vh) scale(1.08);} }
.bg__noise { position: absolute; inset: 0; opacity: .03; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"); }

.scroll-progress { position: fixed; top: 0; left: 0; right: 0; height: 2px; z-index: 100; }
.scroll-progress span { display: block; height: 100%; width: 0; background: var(--grad); box-shadow: 0 0 12px var(--glow); }

/* ---------- Buttons ---------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 9px; padding: 13px 22px; border: 1px solid transparent; border-radius: 999px; font-weight: 600; font-size: .95rem; letter-spacing: -.01em; white-space: nowrap; position: relative; transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s, border-color .3s; }
.btn svg { transition: transform .3s var(--ease); }
.btn:hover svg { transform: translateX(3px); }
.btn--primary { color: #fff; background: linear-gradient(120deg, #FF6A3D, #FF4D8D 60%, #B14DF0); box-shadow: 0 10px 30px -8px var(--glow), inset 0 1px 0 rgba(255,255,255,.28); }
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 18px 44px -10px var(--glow); }
@property --beam { syntax: '<angle>'; inherits: false; initial-value: 0deg; }
.btn--primary::before { content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1.5px; pointer-events: none; background: conic-gradient(from var(--beam), transparent 0 72deg, rgba(255,255,255,.92) 90deg, transparent 108deg 360deg); -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; animation: beam 3.4s linear infinite; opacity: .8; }
@keyframes beam { to { --beam: 360deg; } }
.btn--ghost { color: var(--text); background: var(--surface-2); border-color: var(--stroke-2); backdrop-filter: blur(10px); }
.btn--ghost:hover { transform: translateY(-2px); border-color: rgba(255,255,255,.32); background: rgba(255,255,255,.1); }
.btn--block { width: 100%; }
.btn--voice { padding: 10px 15px; color: #fff; border-color: rgba(255,77,141,.44); background: radial-gradient(circle at 26% 20%, rgba(255,255,255,.34), transparent 24%), var(--grad); box-shadow: 0 16px 36px -18px rgba(255,77,141,.95), inset 0 1px 0 rgba(255,255,255,.36); font-weight: 800; }
.btn--voice:hover { transform: translateY(-2px); box-shadow: 0 20px 48px -18px rgba(255,106,61,.92); }
.btn--voice svg { width: 18px; height: 18px; flex: none; }

/* ---------- Bits ---------- */
.pill { display: inline-flex; align-items: center; gap: 9px; padding: 7px 15px 7px 12px; border-radius: 999px; font-size: .82rem; font-weight: 500; color: var(--soft); background: var(--surface); border: 1px solid var(--stroke); backdrop-filter: blur(10px); }
.pill__pulse { width: 7px; height: 7px; border-radius: 50%; background: var(--c1); box-shadow: 0 0 10px var(--c1); animation: blink 1.6s infinite; }
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: .35; } }
.eyebrow { display: inline-block; font-family: var(--mono); font-size: .78rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; margin-bottom: 14px; }
.grad { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }

.glass { position: relative; background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02)); border: 1px solid var(--stroke); border-radius: var(--radius); backdrop-filter: blur(14px); box-shadow: var(--shadow); }
.glass::before { content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1px; background: linear-gradient(140deg, rgba(255,255,255,.2), transparent 42%); -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none; }

/* ---------- Header ---------- */
.header { position: fixed; top: 0; left: 0; right: 0; z-index: 90; border-bottom: 1px solid transparent; transition: background .4s var(--ease), border-color .4s, backdrop-filter .4s; }
.header.scrolled { background: rgba(12,8,16,.72); backdrop-filter: blur(18px) saturate(140%); border-bottom-color: var(--stroke); }
.header__inner { display: flex; align-items: center; justify-content: space-between; height: 70px; }
.brand { display: inline-flex; align-items: center; gap: 11px; font-family: var(--disp); font-weight: 700; font-size: 1.08rem; letter-spacing: -.02em; }
.brand__mark { width: 34px; height: 34px; flex: none; filter: drop-shadow(0 4px 12px rgba(255,77,141,.45)); }
.brand__dot { color: var(--c1); }
.brand__sub { color: var(--muted); font-family: var(--mono); font-weight: 500; font-size: .8rem; }
.header__right { display: flex; align-items: center; gap: 12px; }
.nav { display: flex; align-items: center; gap: 4px; }
.nav__link { padding: 9px 13px; border-radius: 10px; font-size: .92rem; font-weight: 500; color: var(--soft); transition: color .25s, background .25s; }
.nav__link:hover { color: var(--text); background: var(--surface); }
.nav__link.is-active { color: #fff; background: var(--surface-2); }
.nav__cta { margin-left: 6px; padding: 10px 18px; }
.nav__email { flex: 0 0 auto; padding: 8px 11px; border-radius: 999px; color: #FF7AA8; font-size: .78rem; font-weight: 800; white-space: nowrap; background: rgba(255,77,141,.09); border: 1px solid rgba(255,77,141,.24); transition: color .22s, background .22s, border-color .22s, transform .22s var(--ease); }
.nav__email:hover, .nav__email:focus-visible { outline: none; color: var(--text); background: rgba(255,106,61,.13); border-color: rgba(255,77,141,.48); transform: translateY(-1px); }
.nav__voice { margin-left: 4px; flex: 0 0 auto; }
.header-voice { display: none; width: 44px; height: 44px; flex: none; place-items: center; border-radius: 12px; border: 1px solid rgba(255,77,141,.36); color: #fff; background: var(--grad); box-shadow: 0 16px 34px -20px rgba(255,77,141,.9), inset 0 1px 0 rgba(255,255,255,.34); }
.header-voice svg { width: 22px; height: 22px; }
.header-voice:hover, .header-voice:focus-visible { outline: none; transform: translateY(-1px); box-shadow: 0 20px 44px -20px rgba(255,106,61,.95); }
.theme-toggle { width: 42px; height: 42px; border-radius: 12px; flex: none; border: 1px solid var(--stroke); background: var(--surface); color: var(--soft); display: grid; place-items: center; transition: color .25s, border-color .25s, background .25s, transform .25s var(--ease); }
.theme-toggle:hover { color: var(--text); border-color: var(--stroke-2); transform: translateY(-1px); }
.theme-toggle svg { width: 19px; height: 19px; }
.theme-toggle .ic-moon { display: none; }
[data-theme="light"] .theme-toggle .ic-sun { display: none; }
[data-theme="light"] .theme-toggle .ic-moon { display: block; }
.nav-toggle { display: none; width: 44px; height: 44px; border: 1px solid var(--stroke); border-radius: 12px; background: var(--surface); flex-direction: column; align-items: center; justify-content: center; gap: 5px; }
.nav-toggle span { width: 20px; height: 2px; background: var(--text); border-radius: 2px; transition: transform .3s var(--ease), opacity .3s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Sections ---------- */
.section { padding: clamp(56px, 7.5vw, 100px) 0; position: relative; }
.head { max-width: 720px; margin: 0 auto clamp(30px, 4vw, 48px); text-align: center; }
.title { font-family: var(--disp); font-weight: 700; font-size: clamp(1.85rem, 4.2vw, 2.9rem); line-height: 1.1; letter-spacing: -.03em; }
.lead { margin-top: 16px; color: var(--muted); font-size: clamp(1rem, 1.6vw, 1.1rem); }

/* ---------- Hero ---------- */
.hero { position: relative; padding-top: 122px; padding-bottom: 32px; }
.hero__inner { display: grid; grid-template-columns: 1.02fr .98fr; gap: clamp(30px, 4vw, 52px); align-items: center; }
.hero__title { font-family: var(--disp); font-weight: 800; font-size: clamp(2.2rem, 5.4vw, 4rem); line-height: 1.04; letter-spacing: -.035em; margin: 20px 0 0; }
.hero__title .grad { background-size: 220% auto; animation: sheen 7s ease-in-out infinite; }
@keyframes sheen { 0%,100% { background-position: 0% center; } 50% { background-position: 100% center; } }
.hero__sub { margin-top: 20px; max-width: 540px; color: var(--soft); font-size: clamp(1rem, 1.6vw, 1.15rem); }
.hero__sub b { color: var(--text); font-weight: 700; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 30px; }
.hero__stats { display: grid; grid-template-columns: repeat(4, auto); gap: 24px; margin-top: 40px; }
.stat__n { display: block; font-family: var(--disp); font-weight: 800; font-size: clamp(1.4rem, 2.6vw, 1.9rem); letter-spacing: -.03em; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat__l { font-size: .76rem; color: var(--muted); }

/* ---------- Hero showpiece (stacked frames) ---------- */
.hero__show { position: relative; min-height: 400px; }
.hero__show .frame { position: absolute; box-shadow: 0 40px 80px -30px rgba(0,0,0,.7); }
.frame--front { width: 78%; left: 0; top: 12%; z-index: 3; animation: floatY 7s ease-in-out infinite; }
.frame--back1 { width: 64%; right: 0; top: 0; z-index: 2; transform: rotate(3deg) scale(.96); opacity: .92; animation: floatY 8s ease-in-out infinite reverse; }
.frame--back2 { width: 56%; right: 8%; bottom: 0; z-index: 1; transform: rotate(-4deg) scale(.9); opacity: .78; animation: floatY 9s ease-in-out infinite; animation-delay: -2s; }
@keyframes floatY { 0%,100% { translate: 0 0; } 50% { translate: 0 -14px; } }
.show-chip { position: absolute; z-index: 4; font-family: var(--mono); font-size: .8rem; font-weight: 600; padding: 9px 14px; border-radius: 12px; background: var(--surface-2); border: 1px solid var(--stroke-2); backdrop-filter: blur(10px); box-shadow: 0 12px 30px -12px rgba(0,0,0,.6); animation: floatY 5s ease-in-out infinite; }
.show-chip--a { top: 4%; left: -4%; color: var(--c1); animation-delay: -1s; }
.show-chip--b { bottom: 6%; right: -2%; color: var(--c3); }

/* ---------- Browser frame + site mockups ---------- */
.frame { border-radius: 14px; overflow: hidden; background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02)); border: 1px solid var(--stroke-2); }
.frame__bar { display: flex; align-items: center; gap: 7px; padding: 9px 12px; border-bottom: 1px solid var(--stroke); background: rgba(255,255,255,.03); }
.frame__bar .d { width: 9px; height: 9px; border-radius: 50%; background: #3a3340; }
.frame__bar .d:nth-child(1){background:#ff5f57;} .frame__bar .d:nth-child(2){background:#febc2e;} .frame__bar .d:nth-child(3){background:#28c840;}
.frame__url { margin-left: 8px; font-family: var(--mono); font-size: .68rem; color: var(--muted); background: rgba(0,0,0,.3); padding: 4px 10px; border-radius: 6px; flex: 1; }
.frame__view { position: relative; height: 240px; overflow: hidden; background: #0e0a13; }
.site { display: grid; gap: 9px; padding: 12px; transition: transform 3.4s var(--ease); }
.frame:hover .site:not(.is-auto) { transform: translateY(-42%); }
.site.is-auto { animation: autoscroll 9s ease-in-out infinite alternate; }
@keyframes autoscroll { 0%,12% { transform: translateY(0); } 88%,100% { transform: translateY(-42%); } }

/* mockup primitives */
.ac { background: var(--ac); }
.ac-soft { background: color-mix(in srgb, var(--ac) 18%, transparent); }
.mk-top { display: flex; align-items: center; gap: 7px; padding-bottom: 2px; }
.mk-dot { width: 16px; height: 16px; border-radius: 5px; flex: none; }
.mk-nav { width: 26px; height: 6px; border-radius: 3px; background: rgba(255,255,255,.14); }
.mk-search2 { flex: 1; height: 12px; border-radius: 6px; background: rgba(255,255,255,.08); margin-left: auto; max-width: 60px; }
.mk-searchbar { flex: 1; height: 16px; border-radius: 8px; background: rgba(255,255,255,.1); }
.mk-l { height: 8px; border-radius: 4px; background: rgba(255,255,255,.16); }
.mk-l.dim { background: rgba(255,255,255,.09); }
.w40 { width: 40%; } .w50 { width: 50%; } .w60 { width: 60%; } .w70 { width: 70%; } .w80 { width: 80%; } .w90 { width: 90%; }
.mk-pill { width: 64px; height: 16px; border-radius: 8px; }
.mk-pill.sm { width: 40px; height: 12px; margin-left: auto; }
.mk-hero { border-radius: 10px; padding: 16px 14px; display: grid; gap: 8px; min-height: 78px; }
.mk-hero.tall2 { min-height: 96px; }
.mk-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.mk-cards:has(.t:nth-child(2):last-child) { grid-template-columns: repeat(2, 1fr); }
.mk-card { height: 40px; border-radius: 8px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.05); }
.mk-card.t { height: 60px; }
.mk-band { height: 30px; border-radius: 9px; }
.mk-band.wide { height: 50px; }
.mk-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.mk-grid.sm { grid-template-columns: repeat(3, 1fr); gap: 6px; }
.mk-prod { display: grid; gap: 5px; }
.mk-img { height: 44px; border-radius: 7px; }
.mk-grid.sm .mk-img { height: 34px; }
.mk-mkt { display: grid; grid-template-columns: 26% 1fr; gap: 9px; }
.mk-side2 { display: grid; gap: 7px; align-content: start; padding: 8px; border-radius: 8px; background: rgba(255,255,255,.04); }
.mk-side2 .mk-l { height: 7px; }
.mk-split { display: grid; grid-template-columns: 1fr 38%; gap: 10px; align-items: center; }
.mk-col { display: grid; gap: 8px; }
.mk-block { height: 84px; border-radius: 10px; }
.mk-logos { display: flex; gap: 10px; padding: 4px 0; }
.mk-logos span { flex: 1; height: 14px; border-radius: 5px; background: rgba(255,255,255,.07); }
.mk-app { display: grid; grid-template-columns: 26% 1fr; gap: 9px; height: 100%; }
.mk-appside { display: grid; gap: 7px; align-content: start; padding: 9px; border-radius: 9px; background: rgba(255,255,255,.04); }
.mk-appside .mk-l { height: 7px; background: rgba(255,255,255,.1); }
.mk-appmain { display: grid; gap: 9px; align-content: start; }
.mk-apptop { display: flex; align-items: center; gap: 8px; }
.mk-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 7px; }
.mk-stat { height: 34px; border-radius: 8px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.05); }
.mk-chart { display: flex; align-items: flex-end; gap: 6px; height: 70px; padding: 8px; border-radius: 9px; background: rgba(255,255,255,.04); }
.mk-chart span { flex: 1; border-radius: 4px 4px 2px 2px; background: var(--ac); opacity: .85; }

/* ---------- Filters + works ---------- */
.filters { display: flex; flex-wrap: wrap; gap: 9px; justify-content: center; margin-bottom: 30px; }
.filter { padding: 9px 17px; border-radius: 999px; border: 1px solid var(--stroke); background: var(--surface); color: var(--soft); font-weight: 600; font-size: .88rem; transition: color .25s, border-color .25s, background .25s, transform .2s var(--ease); }
.filter:hover { color: var(--text); border-color: var(--stroke-2); transform: translateY(-1px); }
.filter.is-active { color: #fff; background: var(--grad); border-color: transparent; box-shadow: 0 10px 26px -10px var(--glow); }

.works { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.work { transition: transform .3s var(--ease), opacity .35s var(--ease); }
.work[data-href] { cursor: pointer; }
.work[data-href]:focus-visible { outline: 2px solid var(--c1); outline-offset: 6px; border-radius: var(--radius-sm); }
.work.is-hidden { display: none; }
.work.fade-in { animation: fadeUp .5s var(--ease) backwards; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
.work .frame { box-shadow: 0 20px 50px -28px rgba(0,0,0,.7); transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s; }
.work:hover .frame { transform: translateY(-5px); border-color: var(--stroke-2); box-shadow: 0 36px 70px -30px var(--glow); }
.work__meta { display: flex; align-items: center; justify-content: space-between; padding: 14px 4px 0; }
.work__meta h3 { font-family: var(--disp); font-size: 1.05rem; letter-spacing: -.02em; }
.work__meta span { font-size: .8rem; color: var(--muted); }
.work__go { font-size: 1.2rem; color: var(--muted); transition: transform .3s var(--ease), color .3s; }
.work:hover .work__go { color: var(--c1); transform: translateX(4px); }

/* ---------- Cards ---------- */
.grid { display: grid; gap: 16px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.card { padding: 26px; transition: transform .25s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease); transform-style: preserve-3d; }
.card h3 { font-family: var(--disp); font-size: 1.12rem; letter-spacing: -.02em; margin: 15px 0 7px; }
.card p { color: var(--muted); font-size: .92rem; }
.card--mini { padding: 22px; }
.card--mini h3 { font-size: 1rem; margin: 14px 0 6px; }
.card__price { display: inline-block; margin-top: 14px; font-family: var(--mono); font-size: .85rem; font-weight: 600; padding: 5px 12px; border-radius: 999px; background: rgba(255,77,141,.1); border: 1px solid rgba(255,77,141,.3); color: var(--c2); }
.card::after { content: ""; position: absolute; inset: 0; border-radius: inherit; pointer-events: none; z-index: 0; opacity: 0; transition: opacity .4s var(--ease); background: radial-gradient(300px circle at var(--mx,50%) var(--my,50%), rgba(255,77,141,.16), transparent 45%); }
.card:hover::after { opacity: 1; }
.card:hover { border-color: var(--stroke-2); box-shadow: 0 30px 70px -30px rgba(255,77,141,.42); }
.card > * { position: relative; z-index: 1; }

/* ---------- Icon tiles ---------- */
.ic { width: 52px; height: 52px; border-radius: 14px; flex: none; position: relative; background: linear-gradient(160deg, rgba(255,255,255,.09), rgba(255,255,255,.015)); border: 1px solid var(--stroke-2); box-shadow: inset 0 1px 0 rgba(255,255,255,.12); transition: transform .4s var(--ease), box-shadow .4s var(--ease); }
.ic::before { content: ""; position: absolute; inset: 0; border-radius: inherit; background: radial-gradient(circle at 50% 40%, var(--glow), transparent 66%); opacity: .4; transition: opacity .4s; }
.card:hover .ic { transform: translateY(-3px) scale(1.05); box-shadow: 0 16px 30px -16px var(--glow); }
.card:hover .ic::before { opacity: .85; }
.ic::after { content: ""; position: absolute; inset: 0; z-index: 1; background: var(--grad); filter: drop-shadow(0 1px 5px var(--glow)); -webkit-mask-position: center; mask-position: center; -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat; -webkit-mask-size: 25px; mask-size: 25px; }
[data-i="bolt"]::after { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23000'%3E%3Cpolygon points='13 2 3 14 12 14 11 22 21 10 12 10 13 2'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23000'%3E%3Cpolygon points='13 2 3 14 12 14 11 22 21 10 12 10 13 2'/%3E%3C/svg%3E"); }
[data-i="building"]::after { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='4' y='2' width='16' height='20' rx='2'/%3E%3Cpath d='M9 22v-4h6v4M8 6h.01M12 6h.01M16 6h.01M8 10h.01M12 10h.01M16 10h.01M8 14h.01M12 14h.01M16 14h.01'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='4' y='2' width='16' height='20' rx='2'/%3E%3Cpath d='M9 22v-4h6v4M8 6h.01M12 6h.01M16 6h.01M8 10h.01M12 10h.01M16 10h.01M8 14h.01M12 14h.01M16 14h.01'/%3E%3C/svg%3E"); }
[data-i="cart"]::after { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='9' cy='21' r='1'/%3E%3Ccircle cx='20' cy='21' r='1'/%3E%3Cpath d='M1 1h4l2.7 13.4a2 2 0 0 0 2 1.6h9.7a2 2 0 0 0 2-1.6L23 6H6'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='9' cy='21' r='1'/%3E%3Ccircle cx='20' cy='21' r='1'/%3E%3Cpath d='M1 1h4l2.7 13.4a2 2 0 0 0 2 1.6h9.7a2 2 0 0 0 2-1.6L23 6H6'/%3E%3C/svg%3E"); }
[data-i="grid"]::after { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='3' width='7' height='7' rx='1'/%3E%3Crect x='14' y='3' width='7' height='7' rx='1'/%3E%3Crect x='3' y='14' width='7' height='7' rx='1'/%3E%3Crect x='14' y='14' width='7' height='7' rx='1'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='3' width='7' height='7' rx='1'/%3E%3Crect x='14' y='3' width='7' height='7' rx='1'/%3E%3Crect x='3' y='14' width='7' height='7' rx='1'/%3E%3Crect x='14' y='14' width='7' height='7' rx='1'/%3E%3C/svg%3E"); }
[data-i="app"]::after { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='3' width='18' height='18' rx='2'/%3E%3Cpath d='M3 9h18M9 21V9'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='3' width='18' height='18' rx='2'/%3E%3Cpath d='M3 9h18M9 21V9'/%3E%3C/svg%3E"); }
[data-i="refresh"]::after { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='23 4 23 10 17 10'/%3E%3Cpolyline points='1 20 1 14 7 14'/%3E%3Cpath d='M3.5 9a9 9 0 0 1 14.85-3.36L23 10M1 14l4.65 4.36A9 9 0 0 0 20.5 15'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='23 4 23 10 17 10'/%3E%3Cpolyline points='1 20 1 14 7 14'/%3E%3Cpath d='M3.5 9a9 9 0 0 1 14.85-3.36L23 10M1 14l4.65 4.36A9 9 0 0 0 20.5 15'/%3E%3C/svg%3E"); }
[data-i="palette"]::after { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='13.5' cy='6.5' r='.5' fill='%23000'/%3E%3Ccircle cx='17.5' cy='10.5' r='.5' fill='%23000'/%3E%3Ccircle cx='8.5' cy='7.5' r='.5' fill='%23000'/%3E%3Ccircle cx='6.5' cy='12.5' r='.5' fill='%23000'/%3E%3Cpath d='M12 2a10 10 0 0 0 0 20 2 2 0 0 0 2-2 2 2 0 0 1 2-2h2a4 4 0 0 0 4-4 10 10 0 0 0-12-8z'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='13.5' cy='6.5' r='.5' fill='%23000'/%3E%3Ccircle cx='17.5' cy='10.5' r='.5' fill='%23000'/%3E%3Ccircle cx='8.5' cy='7.5' r='.5' fill='%23000'/%3E%3Ccircle cx='6.5' cy='12.5' r='.5' fill='%23000'/%3E%3Cpath d='M12 2a10 10 0 0 0 0 20 2 2 0 0 0 2-2 2 2 0 0 1 2-2h2a4 4 0 0 0 4-4 10 10 0 0 0-12-8z'/%3E%3C/svg%3E"); }
[data-i="phone"]::after { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='6' y='2' width='12' height='20' rx='2'/%3E%3Cline x1='11' y1='18' x2='13' y2='18'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='6' y='2' width='12' height='20' rx='2'/%3E%3Cline x1='11' y1='18' x2='13' y2='18'/%3E%3C/svg%3E"); }
[data-i="rocket"]::after { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4.5 16.5c-1.5 1.26-2 5-2 5s3.74-.5 5-2c.71-.84.7-2.13-.09-2.91a2.18 2.18 0 0 0-2.91 0z'/%3E%3Cpath d='M12 15l-3-3a22 22 0 0 1 2-3.95A12.88 12.88 0 0 1 22 2c0 2.72-.78 7.5-6 11a22.35 22.35 0 0 1-4 2z'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4.5 16.5c-1.5 1.26-2 5-2 5s3.74-.5 5-2c.71-.84.7-2.13-.09-2.91a2.18 2.18 0 0 0-2.91 0z'/%3E%3Cpath d='M12 15l-3-3a22 22 0 0 1 2-3.95A12.88 12.88 0 0 1 22 2c0 2.72-.78 7.5-6 11a22.35 22.35 0 0 1-4 2z'/%3E%3C/svg%3E"); }
[data-i="search"]::after { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round'%3E%3Ccircle cx='11' cy='11' r='7'/%3E%3Cline x1='21' y1='21' x2='16.5' y2='16.5'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round'%3E%3Ccircle cx='11' cy='11' r='7'/%3E%3Cline x1='21' y1='21' x2='16.5' y2='16.5'/%3E%3C/svg%3E"); }
[data-i="edit"]::after { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M11 4H4a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-7'/%3E%3Cpath d='M18.5 2.5a2.12 2.12 0 0 1 3 3L12 15l-4 1 1-4z'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M11 4H4a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-7'/%3E%3Cpath d='M18.5 2.5a2.12 2.12 0 0 1 3 3L12 15l-4 1 1-4z'/%3E%3C/svg%3E"); }
[data-i="plug"]::after { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M10 13a5 5 0 0 0 7 0l3-3a5 5 0 0 0-7-7l-1 1'/%3E%3Cpath d='M14 11a5 5 0 0 0-7 0l-3 3a5 5 0 0 0 7 7l1-1'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M10 13a5 5 0 0 0 7 0l3-3a5 5 0 0 0-7-7l-1 1'/%3E%3Cpath d='M14 11a5 5 0 0 0-7 0l-3 3a5 5 0 0 0 7 7l1-1'/%3E%3C/svg%3E"); }
[data-i="shield"]::after { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z'/%3E%3Cpath d='M9 12l2 2 4-4'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z'/%3E%3Cpath d='M9 12l2 2 4-4'/%3E%3C/svg%3E"); }
[data-i="support"]::after { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='M4 12a8 8 0 0 1 16 0'/%3E%3Crect x='2' y='12' width='5' height='7' rx='2'/%3E%3Crect x='17' y='12' width='5' height='7' rx='2'/%3E%3Cpath d='M20 19a4 4 0 0 1-4 3h-2'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='M4 12a8 8 0 0 1 16 0'/%3E%3Crect x='2' y='12' width='5' height='7' rx='2'/%3E%3Crect x='17' y='12' width='5' height='7' rx='2'/%3E%3Cpath d='M20 19a4 4 0 0 1-4 3h-2'/%3E%3C/svg%3E"); }
[data-i="chat"]::after { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 11.5a8.38 8.38 0 0 1-9 8.5 8.5 8.5 0 0 1-3.8-.9L3 20l1.9-5.2A8.38 8.38 0 0 1 4 11.5 8.5 8.5 0 0 1 12.5 3 8.38 8.38 0 0 1 21 11.5z'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 11.5a8.38 8.38 0 0 1-9 8.5 8.5 8.5 0 0 1-3.8-.9L3 20l1.9-5.2A8.38 8.38 0 0 1 4 11.5 8.5 8.5 0 0 1 12.5 3 8.38 8.38 0 0 1 21 11.5z'/%3E%3C/svg%3E"); }

/* ---------- Pipeline ---------- */
.pipeline { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr auto 1fr; align-items: center; gap: 10px; }
.pipe { padding: 24px 18px; text-align: center; }
button.pipe { width: 100%; color: inherit; font: inherit; cursor: pointer; }
.pipe.is-active { border-color: rgba(255,77,141,.5); box-shadow: 0 24px 60px -34px var(--glow); }
.pipe .ic { margin: 0 auto 14px; }
.pipe__n { display: block; font-family: var(--mono); font-size: .78rem; color: var(--c1); margin-bottom: 8px; }
.pipe h3 { font-family: var(--disp); font-size: 1.05rem; margin-bottom: 6px; }
.pipe p { color: var(--muted); font-size: .85rem; }
.pipe__arrow { width: 100%; height: 2px; min-width: 16px; position: relative; background: linear-gradient(90deg, rgba(255,106,61,.5), rgba(168,85,247,.4)); border-radius: 2px; overflow: hidden; }
.pipe__arrow::after { content: ""; position: absolute; top: 50%; left: 0; width: 8px; height: 8px; margin-top: -4px; border-radius: 50%; background: #fff; box-shadow: 0 0 10px var(--c1); animation: flow 2.2s linear infinite; }
@keyframes flow { from { left: -8px; opacity: 0; } 15%,85% { opacity: 1; } to { left: 100%; opacity: 0; } }
.process-detail { max-width: 820px; margin: 28px auto 0; padding: 28px; }
.process-detail__step { display: inline-block; font-family: var(--mono); color: var(--c1); font-size: .78rem; margin-bottom: 10px; }
.process-detail h3 { font-family: var(--disp); font-size: 1.4rem; letter-spacing: -.02em; margin-bottom: 8px; }
.process-detail p { color: var(--soft); }
.process-detail__list { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.process-detail__list li { padding: 6px 11px; border-radius: 999px; background: var(--surface-2); border: 1px solid var(--stroke); color: var(--soft); font-size: .84rem; }

/* ---------- Pricing ---------- */
.price { display: flex; flex-direction: column; }
.price h3 { font-family: var(--disp); font-size: 1.18rem; margin: 0 0 6px; }
.price__v { font-family: var(--disp); font-weight: 800; font-size: 1.7rem; letter-spacing: -.02em; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.price__d { color: var(--muted); font-size: .85rem; margin-top: 2px; }
.price--hot { border-color: rgba(255,77,141,.4); box-shadow: 0 30px 70px -34px rgba(255,77,141,.55); }
.price__badge { position: absolute; top: 16px; right: 16px; font-family: var(--mono); font-size: .66rem; text-transform: uppercase; letter-spacing: .08em; padding: 4px 10px; border-radius: 999px; background: var(--grad); color: #fff; font-weight: 700; }
.ticks { display: grid; gap: 10px; margin: 18px 0 22px; }
.ticks li { position: relative; padding-left: 28px; color: var(--soft); font-size: .9rem; }
.ticks li::before { content: ""; position: absolute; left: 0; top: 3px; width: 18px; height: 18px; border-radius: 50%; background: var(--grad); -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/12px no-repeat; mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/12px no-repeat; }
.ticks--lg li { font-size: 1rem; margin-bottom: 2px; }
.price .btn { margin-top: auto; }

/* ---------- FAQ ---------- */
.faq { display: grid; gap: 12px; }
.faq__i { border: 1px solid var(--stroke); border-radius: var(--radius-sm); background: var(--surface); overflow: hidden; transition: border-color .3s, background .3s; }
.faq__i[open] { border-color: var(--stroke-2); background: var(--surface-2); }
.faq__i summary { list-style: none; cursor: pointer; padding: 19px 22px; font-family: var(--disp); font-weight: 600; font-size: 1.04rem; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.faq__i summary::-webkit-details-marker { display: none; }
.faq__i summary::after { content: ""; width: 22px; height: 22px; flex: none; border-radius: 50%; border: 1px solid var(--stroke-2); background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23C3B6C4' stroke-width='2.5' stroke-linecap='round'%3E%3Cline x1='12' y1='6' x2='12' y2='18'/%3E%3Cline x1='6' y1='12' x2='18' y2='12'/%3E%3C/svg%3E") center/13px no-repeat; transition: transform .3s var(--ease); }
.faq__i[open] summary::after { transform: rotate(135deg); }
.faq__b { padding: 0 22px 19px; color: var(--muted); }

/* ---------- CTA / form ---------- */
.cta { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 4vw, 56px); padding: clamp(32px, 4vw, 52px); align-items: center; overflow: hidden; }
.cta__glow { position: absolute; inset: 0; background: radial-gradient(ellipse 50% 60% at 12% 25%, rgba(255,106,61,.2), transparent 60%), radial-gradient(ellipse 50% 60% at 90% 85%, rgba(168,85,247,.18), transparent 60%); pointer-events: none; }
.cta__left { position: relative; }
.cta .title, .cta .lead { text-align: left; }
.form { position: relative; display: grid; gap: 15px; }
.field { display: grid; gap: 7px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.field label { font-size: .8rem; font-weight: 500; color: var(--soft); }
.field input, .field select, .field textarea { width: 100%; padding: 13px 15px; border-radius: 12px; background: rgba(0,0,0,.28); border: 1px solid var(--stroke); color: var(--text); font-family: inherit; font-size: .95rem; transition: border-color .25s, box-shadow .25s, background .25s; }
.field input::placeholder { color: #6f6577; }
.field textarea { resize: vertical; min-height: 96px; }
.field input::placeholder, .field textarea::placeholder { color: #6f6577; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: rgba(255,77,141,.6); box-shadow: 0 0 0 3px rgba(255,77,141,.18); background: rgba(0,0,0,.4); }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238A7E92' stroke-width='2' stroke-linecap='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; background-size: 18px; padding-right: 40px; }
.field select option { background: #160d1c; }
.field input.invalid { border-color: #f87171; box-shadow: 0 0 0 3px rgba(248,113,113,.15); }
.form__note { font-size: .78rem; color: var(--muted); text-align: center; }
.form__ok { margin-top: 2px; padding: 13px 16px; border-radius: 12px; background: rgba(52,211,153,.12); border: 1px solid rgba(52,211,153,.35); color: #6ee7b7; font-size: .9rem; text-align: center; }
.form__ok.is-error { background: rgba(248,113,113,.12); border-color: rgba(248,113,113,.35); color: #fca5a5; }

/* ---------- Generated pages ---------- */
.page-main { padding-top: 70px; }
.page-hero { padding: clamp(76px, 10vw, 130px) 0 clamp(36px, 6vw, 70px); }
.page-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; align-items: stretch; }
.page-panel { padding: 28px; }
.page-panel h2, .directory-card h2, .guide-prose h2 { font-family: var(--disp); letter-spacing: -.02em; line-height: 1.15; }
.page-panel h2 { font-size: 1.55rem; margin-bottom: 10px; }
.page-panel p { color: var(--soft); }
.directory-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.directory-card { min-height: 230px; display: flex; flex-direction: column; align-items: flex-start; }
.directory-card h2 { font-size: 1.28rem; margin: 20px 0 8px; }
.directory-card p { color: var(--muted); }
.kase__more { margin-top: auto; color: var(--c1); font-weight: 700; font-size: .92rem; }
.guide-prose { color: var(--soft); }
.guide-prose h2 { color: var(--text); font-size: 1.45rem; margin: 26px 0 10px; }
.guide-prose p { margin-bottom: 16px; }

/* ---------- Modals ---------- */
.modal-open { overflow: hidden; }
.modal-shell { position: fixed; inset: 0; z-index: 140; display: grid; place-items: center; padding: 22px; opacity: 0; pointer-events: none; transition: opacity .25s var(--ease); }
.modal-shell.is-open { opacity: 1; pointer-events: auto; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(5,3,8,.72); backdrop-filter: blur(12px); }
.modal-card { width: min(620px, 100%); padding: 30px; z-index: 1; }
.modal-close { position: absolute; top: 14px; right: 14px; width: 36px; height: 36px; border-radius: 12px; border: 1px solid var(--stroke); background: var(--surface); color: var(--soft); font-size: 1.4rem; line-height: 1; }
.modal-eyebrow { font-family: var(--mono); font-size: .76rem; color: var(--c1); text-transform: uppercase; letter-spacing: .1em; }
.modal-title { font-family: var(--disp); font-size: 1.8rem; line-height: 1.1; margin: 10px 42px 10px 0; }
.modal-text { color: var(--soft); margin-bottom: 18px; }

/* ---------- Voice call ---------- */
.voice-call-shell { position: fixed; inset: 0; z-index: 150; display: grid; place-items: center; padding: 22px; opacity: 0; pointer-events: none; transition: opacity .24s var(--ease); }
.voice-call-shell.is-open { opacity: 1; pointer-events: auto; }
.voice-call-backdrop { position: absolute; inset: 0; background: rgba(3,5,12,.7); backdrop-filter: blur(12px); }
.voice-call { position: relative; width: min(540px, 100%); min-height: 560px; max-height: min(760px, calc(100vh - 36px)); display: grid; gap: 18px; overflow: hidden; padding: 24px; border-radius: 26px; transform: translateY(18px) scale(.96); transition: transform .28s var(--ease); }
.voice-call-shell.is-open .voice-call { transform: none; }
.voice-call__top { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; }
.voice-call__kicker { display: block; margin-bottom: 4px; font-family: var(--mono); font-size: .78rem; color: var(--c1); text-transform: uppercase; letter-spacing: .12em; }
.voice-call__top h2 { font-family: var(--disp); font-size: clamp(1.5rem, 3vw, 1.9rem); letter-spacing: -.02em; }
.voice-call__close { width: 46px; height: 46px; border-radius: 15px; border: 1px solid var(--stroke); background: var(--surface-2); color: var(--text); font-size: 1.55rem; line-height: 1; display: grid; place-items: center; }
.voice-call__stage { position: relative; min-height: 172px; display: grid; place-items: center; isolation: isolate; }
.voice-call__ring { position: absolute; width: 136px; height: 136px; border-radius: 50%; border: 1px solid rgba(255,77,141,.34); box-shadow: inset 0 0 34px rgba(255,77,141,.09), 0 0 54px -18px rgba(255,106,61,.9); }
.voice-call__ring::before, .voice-call__ring::after { content: ""; position: absolute; inset: -16px; border-radius: inherit; border: 1px solid rgba(255,106,61,.28); opacity: .46; animation: voicePulse 2s ease-out infinite; }
.voice-call__ring::after { inset: -30px; animation-delay: .55s; }
.voice-call__core { position: relative; z-index: 1; width: 104px; height: 104px; display: grid; place-items: center; border-radius: 31px; color: #fff; background: var(--grad); box-shadow: 0 24px 58px -22px rgba(255,77,141,.95), inset 0 1px 0 rgba(255,255,255,.4); }
.voice-call__core svg { width: 46px; height: 46px; }
.voice-call-shell[data-voice-state="connecting"] .voice-call__core, .voice-call-shell[data-voice-state="listening"] .voice-call__core { animation: voiceThink 1.05s var(--ease) infinite; }
.voice-call-shell[data-voice-state="listening"] .voice-call__ring::before, .voice-call-shell[data-voice-state="listening"] .voice-call__ring::after { animation-duration: 1.05s; }
@keyframes voicePulse { 0% { transform: scale(.75); opacity: .55; } 100% { transform: scale(1.2); opacity: 0; } }
@keyframes voiceThink { 0%,100% { transform: scale(1); } 50% { transform: scale(.94); } }
.voice-call__status { min-height: 52px; color: var(--soft); font-size: 1.05rem; }
.voice-call__log { display: grid; gap: 8px; align-content: start; min-height: 120px; max-height: 210px; overflow: auto; padding: 2px 3px 6px; }
.voice-call__msg { width: fit-content; max-width: 88%; padding: 10px 12px; border-radius: 16px; font-size: .92rem; line-height: 1.45; border: 1px solid var(--stroke); background: rgba(255,255,255,.045); }
.voice-call__msg--user { justify-self: end; color: #fff; background: var(--grad); border-color: transparent; }
.voice-call__msg--agent { justify-self: start; color: var(--text); }
.voice-call__actions { display: grid; grid-template-columns: 1.2fr 1fr; gap: 10px; margin-top: auto; }
.voice-call__btn { min-height: 52px; border-radius: 15px; border: 1px solid var(--stroke); background: var(--surface-2); color: var(--text); font-weight: 800; padding: 10px 12px; transition: transform .22s var(--ease), border-color .22s, background .22s; }
.voice-call__btn:hover:not(:disabled) { border-color: rgba(255,77,141,.4); background: rgba(255,255,255,.08); transform: translateY(-1px); }
.voice-call__btn:disabled { opacity: .5; cursor: not-allowed; }
.voice-call__btn--start { color: #fff; border-color: transparent; background: var(--grad); }
.voice-call__btn--end { color: #fecdd3; border-color: rgba(244,63,94,.32); background: rgba(244,63,94,.08); }
.voice-call-shell.is-muted .voice-call__core { filter: grayscale(.35); opacity: .72; }

/* ---------- Back to top + AI agent ---------- */
.back-to-top { position: fixed; right: max(22px, env(safe-area-inset-right)); bottom: max(22px, env(safe-area-inset-bottom)); z-index: 118; width: 62px; height: 62px; border: 0; border-radius: 21px; color: #fff; background: linear-gradient(145deg, rgba(20,8,16,.96), rgba(30,13,26,.92) 54%, rgba(11,8,18,.98)); box-shadow: 0 28px 58px -22px rgba(255,77,141,.82), 0 0 0 1px rgba(255,77,141,.24), inset 0 1px 0 rgba(255,255,255,.18), inset 0 -15px 30px rgba(0,0,0,.42); backdrop-filter: blur(18px) saturate(150%); display: grid; place-items: center; opacity: 0; transform: translateY(18px) scale(.82) rotate(5deg); pointer-events: none; isolation: isolate; overflow: visible; transition: opacity .28s var(--ease), transform .34s var(--ease), box-shadow .28s; clip-path: polygon(21% 0, 100% 0, 100% 79%, 79% 100%, 0 100%, 0 21%); }
.back-to-top::before { content: ""; position: absolute; inset: -2px; z-index: -1; border-radius: 23px; clip-path: inherit; background: conic-gradient(from var(--beam), rgba(255,106,61,.08), rgba(255,106,61,.96), rgba(255,77,141,.96), rgba(168,85,247,.92), rgba(255,77,141,.7), rgba(255,106,61,.08)); animation: beam 3.2s linear infinite; filter: drop-shadow(0 0 16px rgba(255,77,141,.72)); }
.back-to-top::after { content: ""; position: absolute; inset: -10px; z-index: -2; border-radius: 28px; clip-path: inherit; border: 1px solid rgba(255,77,141,.3); opacity: 0; transform: scale(.84); animation: backPulse 2.35s ease-out infinite; }
.back-to-top__core { position: relative; width: 48px; height: 48px; border-radius: 16px; clip-path: polygon(20% 0, 100% 0, 100% 80%, 80% 100%, 0 100%, 0 20%); display: grid; place-items: center; background: radial-gradient(circle at 50% 28%, rgba(255,106,61,.22), transparent 42%), linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,.035)); box-shadow: inset 0 0 0 1px rgba(255,255,255,.14), inset 0 -13px 18px rgba(0,0,0,.35); }
.back-to-top__chevron { position: relative; z-index: 1; width: 34px; height: 34px; color: #fff; filter: drop-shadow(0 0 5px rgba(255,255,255,.68)) drop-shadow(0 0 12px rgba(255,106,61,.86)) drop-shadow(0 0 20px rgba(255,77,141,.52)); animation: backThrust 1.45s var(--ease) infinite; }
.back-to-top__spark { position: absolute; inset: 8px -18px auto auto; width: 38px; height: 2px; z-index: 2; border-radius: 999px; background: linear-gradient(90deg, transparent, rgba(255,255,255,.85), transparent); opacity: .76; transform: rotate(-45deg) translateX(-28px); animation: backSpark 2.05s ease-in-out infinite; pointer-events: none; }
.back-to-top.is-visible { opacity: 1; transform: none; pointer-events: auto; }
.back-to-top:hover, .back-to-top:focus-visible { outline: none; transform: translateY(-4px) scale(1.06); box-shadow: 0 32px 72px -18px rgba(255,77,141,.88), 0 0 0 1px rgba(255,106,61,.42), inset 0 1px 0 rgba(255,255,255,.24), inset 0 -16px 30px rgba(0,0,0,.38); }
@keyframes backPulse { 0% { opacity: .5; transform: scale(.82); } 100% { opacity: 0; transform: scale(1.2); } }
@keyframes backThrust { 0%,100% { transform: translateY(1px); } 50% { transform: translateY(-3px); } }
@keyframes backSpark { 0%,100% { opacity: 0; transform: rotate(-45deg) translateX(-30px); } 48% { opacity: .82; transform: rotate(-45deg) translateX(18px); } }
.agent-widget { position: fixed; right: 98px; bottom: max(22px, env(safe-area-inset-bottom)); z-index: 120; }
.agent-launcher { position: relative; width: 92px; height: 66px; border: 1px solid rgba(255,77,141,.34); border-radius: 20px; color: var(--text); background: linear-gradient(145deg, rgba(20,8,16,.94), rgba(26,13,24,.88)); box-shadow: 0 24px 54px -24px rgba(255,77,141,.82), inset 0 1px 0 rgba(255,255,255,.12); backdrop-filter: blur(16px); display: grid; place-items: center; isolation: isolate; overflow: hidden; }
.agent-launcher::before { content: ""; position: absolute; inset: auto 10px -28px; height: 58px; border-radius: 999px; background: linear-gradient(135deg, rgba(255,106,61,.66), rgba(255,77,141,.66), rgba(168,85,247,.62)); filter: blur(18px); opacity: .82; }
.agent-launcher__pulse { position: absolute; right: 11px; top: 11px; width: 10px; height: 10px; border-radius: 50%; background: var(--c2); box-shadow: 0 0 0 9px rgba(255,77,141,.1), 0 0 16px rgba(255,77,141,.9); animation: blink 1.6s infinite; }
.agent-launcher__text { position: relative; z-index: 1; display: grid; justify-items: center; line-height: 1.05; }
.agent-launcher b { font-family: var(--disp); color: var(--c1); font-size: 1.08rem; }
.agent-launcher small { color: var(--soft); font-size: .76rem; font-weight: 800; }
.agent-panel { position: absolute; right: 0; bottom: 78px; width: min(574px, calc(100vw - 44px)); height: min(780px, calc(100vh - 112px)); display: grid; grid-template-rows: auto auto 1fr auto auto; overflow: hidden; opacity: 0; transform: translateY(18px) scale(.98); pointer-events: none; transition: opacity .25s, transform .25s var(--ease); border-radius: 28px; background: linear-gradient(180deg, rgba(16,19,29,.96), rgba(6,9,18,.98)); }
.agent-widget.is-open .agent-panel { opacity: 1; transform: none; pointer-events: auto; }
.agent-panel__top { display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; padding: 28px 22px 16px; border-bottom: 1px solid var(--stroke); }
.agent-kicker { display: block; font-family: var(--mono); color: var(--c1); text-transform: uppercase; letter-spacing: .12em; font-size: .75rem; font-weight: 800; margin-bottom: 4px; }
.agent-panel__top h2 { font-family: var(--disp); font-size: clamp(1.35rem, 2.4vw, 1.8rem); line-height: 1.08; letter-spacing: -.02em; }
.agent-panel__tools { display: flex; gap: 8px; }
.agent-reset, .agent-close { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 14px; border: 1px solid var(--stroke); background: var(--surface-2); color: var(--soft); font-size: 1.5rem; line-height: 1; }
.agent-reset svg { width: 20px; height: 20px; }
.agent-reset:hover, .agent-close:hover { color: var(--text); border-color: rgba(255,77,141,.36); }
.agent-steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 8px; padding: 14px 18px; border-bottom: 1px solid rgba(255,255,255,.055); }
.agent-steps span { display: grid; justify-items: center; gap: 3px; font-family: var(--mono); color: var(--muted); font-size: .78rem; text-transform: uppercase; }
.agent-steps span::before { content: ""; width: 22px; height: 22px; border-radius: 50%; border: 1px solid var(--stroke-2); background: rgba(255,255,255,.04); box-shadow: inset 0 0 0 5px rgba(0,0,0,.12); }
.agent-steps span.is-active { color: #FF7AA8; }
.agent-steps span.is-active::before { background: var(--grad); border-color: transparent; box-shadow: 0 0 18px rgba(255,77,141,.38); }
.agent-steps small { font-size: .64rem; font-weight: 800; }
.agent-log { display: grid; align-content: start; gap: 12px; overflow: auto; padding: 22px 18px; min-height: 0; }
.agent-msg { max-width: 84%; padding: 14px 16px; border-radius: 18px; line-height: 1.45; font-size: .98rem; overflow-wrap: anywhere; }
.agent-msg--bot { justify-self: start; color: var(--soft); background: rgba(255,255,255,.055); border: 1px solid var(--stroke); box-shadow: inset 0 1px 0 rgba(255,255,255,.05); }
.agent-msg--user { justify-self: end; color: #fff; background: var(--grad); font-weight: 700; }
.agent-chips { display: flex; gap: 8px; overflow-x: auto; padding: 0 18px 14px; scrollbar-width: thin; }
.agent-chips button { flex: 0 0 auto; padding: 8px 11px; border-radius: 999px; border: 1px solid rgba(255,77,141,.22); background: rgba(255,77,141,.08); color: var(--soft); font-weight: 700; }
.agent-input { display: grid; grid-template-columns: 48px 1fr 54px; gap: 8px; padding: 14px 18px 18px; border-top: 1px solid rgba(255,255,255,.055); background: rgba(0,0,0,.18); }
.agent-attach, .agent-send { border: 0; border-radius: 16px; display: grid; place-items: center; }
.agent-attach { color: var(--soft); background: var(--surface-2); border: 1px solid var(--stroke); }
.agent-attach svg, .agent-send svg { width: 22px; height: 22px; }
.agent-input textarea { min-width: 0; max-height: 118px; resize: none; border: 1px solid rgba(255,77,141,.32); border-radius: 18px; background: rgba(0,0,0,.34); color: var(--text); padding: 13px 15px; outline: none; box-shadow: 0 0 0 3px rgba(255,77,141,.08); }
.agent-input textarea:focus { border-color: rgba(255,77,141,.74); box-shadow: 0 0 0 4px rgba(255,77,141,.13); }
.agent-send { color: #fff; background: var(--grad); }

/* ---------- Footer ---------- */
.footer { border-top: 1px solid var(--stroke); padding-top: 56px; margin-top: 30px; }
.footer__inner { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 36px; padding-bottom: 44px; }
.footer__brand p { color: var(--muted); margin-top: 14px; max-width: 300px; font-size: .92rem; }
.footer__col h4 { font-family: var(--disp); font-size: .95rem; margin-bottom: 14px; }
.footer__col a { display: block; color: var(--muted); padding: 6px 0; font-size: .92rem; transition: color .25s; }
.footer__col a:hover { color: var(--text); }
.footer__bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; padding: 22px; border-top: 1px solid var(--stroke); color: var(--muted); font-size: .84rem; font-family: var(--mono); }

/* ---------- Reveal + interactive ---------- */
[data-reveal] { opacity: 0; filter: blur(10px); transition: opacity .9s var(--ease), filter .9s var(--ease); will-change: opacity, filter; }
[data-reveal].in { opacity: 1; filter: blur(0); }
.grid [data-reveal], .pipeline [data-reveal], .works [data-reveal] { transition-delay: calc(var(--i, 0) * 55ms); }
.cursor-glow { position: fixed; left: 0; top: 0; width: 440px; height: 440px; margin: -220px 0 0 -220px; border-radius: 50%; pointer-events: none; z-index: -1; background: radial-gradient(circle, var(--glow), transparent 60%); opacity: 0; mix-blend-mode: screen; filter: blur(34px); transition: opacity .5s var(--ease); }
.cursor-glow.on { opacity: .5; }
[data-parallax] { transform: translate3d(0, var(--py, 0px), 0); will-change: transform; }

/* ---------- Responsive ---------- */
@media (max-width: 1040px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__show { max-width: 560px; min-height: 360px; }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .works { grid-template-columns: repeat(2, 1fr); }
  .pipeline { grid-template-columns: repeat(3, 1fr); }
  .pipe__arrow { display: none; }
}
@media (max-width: 760px) {
  .nav { position: fixed; inset: 70px 0 auto; flex-direction: column; align-items: stretch; gap: 6px; padding: 18px 22px 26px; background: rgba(12,8,16,.96); backdrop-filter: blur(18px); border-bottom: 1px solid var(--stroke); transform: translateY(-12px); opacity: 0; pointer-events: none; transition: transform .35s var(--ease), opacity .35s; }
  .nav.nav--simple { position: static; inset: auto; flex: 1 1 auto; min-width: 0; flex-direction: row; align-items: center; justify-content: flex-end; gap: 6px; padding: 0; overflow-x: auto; background: transparent; border: 0; backdrop-filter: none; transform: none; opacity: 1; pointer-events: auto; }
  .nav.open { transform: none; opacity: 1; pointer-events: auto; }
  .nav__link { padding: 13px 14px; }
  .nav.nav--simple .nav__link { display: none; }
  .nav__email { display: block; width: 100%; height: auto; padding: 13px 14px; text-align: center; font-size: .9rem; }
  .nav.nav--simple .nav__email { display: none; }
  .nav__voice { width: 100%; justify-content: center; margin-left: 0; }
  .nav.nav--simple .nav__voice { display: none; }
  .nav__cta { margin-left: 0; text-align: center; }
  .nav.nav--simple .nav__cta { flex: 0 0 auto; width: auto; padding: 10px 14px; white-space: nowrap; }
  .header-voice { display: grid; }
  .nav-toggle { display: flex; }
  .hero__stats { grid-template-columns: repeat(2, 1fr); gap: 22px 18px; }
  .hero__show { min-height: 300px; }
  .frame--back1, .frame--back2 { display: none; }
  .frame--front { position: relative; width: 100%; top: 0; }
  .cta { grid-template-columns: 1fr; }
  .voice-call-shell { padding: 14px; align-items: end; }
  .voice-call { width: 100%; min-height: auto; max-height: min(82vh, 680px); gap: 13px; padding: 18px; border-radius: 22px; }
  .voice-call__stage { min-height: 116px; }
  .voice-call__ring { width: 104px; height: 104px; }
  .voice-call__core { width: 68px; height: 68px; border-radius: 23px; }
  .voice-call__core svg { width: 32px; height: 32px; }
  .agent-widget { right: 78px; bottom: max(14px, env(safe-area-inset-bottom)); }
  .agent-panel { position: fixed; left: 14px; right: 14px; bottom: 84px; width: auto; height: min(76vh, 680px); border-radius: 22px; }
  body.agent-open .back-to-top { opacity: 0; transform: translateY(18px) scale(.82); pointer-events: none; }
  .footer__inner { grid-template-columns: 1fr 1fr; gap: 30px; }
  .footer__brand { grid-column: span 2; }
}
@media (max-width: 560px) {
  .grid--3, .grid--4, .pipeline, .works { grid-template-columns: 1fr; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; }
  .field-row { grid-template-columns: 1fr; }
  .voice-call__top h2 { font-size: 1.45rem; }
  .voice-call__actions { grid-template-columns: 1fr; }
  .back-to-top { right: max(14px, env(safe-area-inset-right)); bottom: max(14px, env(safe-area-inset-bottom)); width: 48px; height: 48px; border-radius: 17px; }
  .back-to-top__core { width: 38px; height: 38px; border-radius: 13px; }
  .back-to-top__chevron { width: 28px; height: 28px; }
  .agent-widget { right: 70px; bottom: max(14px, env(safe-area-inset-bottom)); }
  .agent-launcher { width: 76px; height: 58px; border-radius: 18px; }
  .agent-launcher b { font-size: .95rem; }
  .agent-launcher small { font-size: .68rem; }
  .agent-panel { left: 10px; right: 10px; bottom: 76px; width: auto; height: min(78vh, 640px); }
  .agent-panel__top { padding: 18px 16px 12px; gap: 10px; }
  .agent-panel__top h2 { font-size: 1.28rem; }
  .agent-reset, .agent-close { width: 38px; height: 38px; border-radius: 12px; }
  .agent-steps { gap: 4px; padding: 12px 10px; }
  .agent-steps span { font-size: .58rem; }
  .agent-steps span::before { width: 18px; height: 18px; }
  .agent-log { padding: 16px 12px; gap: 10px; }
  .agent-msg { max-width: 92%; padding: 12px 13px; font-size: .92rem; }
  .agent-chips { padding: 0 12px 12px; }
  .agent-input { grid-template-columns: 42px 1fr 46px; gap: 7px; padding: 12px; }
  .agent-input textarea { padding: 12px 13px; border-radius: 15px; }
  .footer__inner { grid-template-columns: 1fr; }
  .footer__brand { grid-column: auto; }
}

/* =========================================================
   Light theme
   ========================================================= */
[data-theme="light"] {
  --bg: #F7F4F8; --bg-2: #FFFFFF;
  --surface: rgba(40,16,40,.04); --surface-2: rgba(40,16,40,.06);
  --stroke: rgba(40,16,40,.1); --stroke-2: rgba(40,16,40,.17);
  --text: #170A18; --soft: #4A3E4C; --muted: #756A78;
  --glow: rgba(255,77,141,.26);
  --shadow: 0 30px 60px -30px rgba(80,30,70,.2);
}
[data-theme="light"] body { color: var(--text); }
[data-theme="light"] .glass { background: linear-gradient(180deg, rgba(255,255,255,.86), rgba(255,255,255,.62)); }
[data-theme="light"] .glass::before { background: linear-gradient(140deg, rgba(255,255,255,.95), transparent 42%); }
[data-theme="light"] .header.scrolled { background: rgba(255,255,255,.78); }
[data-theme="light"] .bg__grid { background-image: linear-gradient(rgba(40,16,40,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(40,16,40,.05) 1px, transparent 1px); }
[data-theme="light"] .bg__ink { opacity: .28; mix-blend-mode: multiply; filter: saturate(1.1) contrast(.96); }
[data-theme="light"] .bg__glow { mix-blend-mode: normal; opacity: .2; }
[data-theme="light"] .bg__noise { opacity: .02; }
/* keep the website mockups dark like real screenshots */
[data-theme="light"] .frame { background: linear-gradient(180deg, rgba(20,14,26,.97), rgba(14,10,19,.97)); border-color: rgba(40,16,40,.1); }
[data-theme="light"] .frame__bar { background: rgba(255,255,255,.04); border-color: rgba(255,255,255,.08); }
[data-theme="light"] .ic { background: linear-gradient(160deg, rgba(40,16,40,.06), rgba(40,16,40,.02)); box-shadow: inset 0 1px 0 rgba(255,255,255,.7); }
[data-theme="light"] .ic::before { opacity: .3; }
[data-theme="light"] .card::after { background: radial-gradient(300px circle at var(--mx,50%) var(--my,50%), rgba(40,16,40,.06), transparent 45%); }
[data-theme="light"] .btn--ghost:hover { background: rgba(40,16,40,.05); border-color: rgba(40,16,40,.2); }
[data-theme="light"] .filter.is-active { color: #fff; }
[data-theme="light"] .field input, [data-theme="light"] .field select { background: #fff; border-color: rgba(40,16,40,.14); }
[data-theme="light"] .field input::placeholder { color: #9a8f9c; }
[data-theme="light"] .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='%23756A78' stroke-width='2' stroke-linecap='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; background-size: 18px; }
[data-theme="light"] .field select option { background: #fff; }
[data-theme="light"] .faq__i summary::after { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234A3E4C' stroke-width='2.5' stroke-linecap='round'%3E%3Cline x1='12' y1='6' x2='12' y2='18'/%3E%3Cline x1='6' y1='12' x2='18' y2='12'/%3E%3C/svg%3E"); }
@media (max-width: 760px) { [data-theme="light"] .nav { background: rgba(255,255,255,.96); } }
