/* Magnetic - rebuilt from the Impacta layout, owned code */

@font-face { font-family: 'Inter'; font-style: normal; font-weight: 500; font-display: swap; src: url('assets/fonts/inter-500.woff2') format('woff2'); }
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 600; font-display: swap; src: url('assets/fonts/inter-600.woff2') format('woff2'); }
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 700; font-display: swap; src: url('assets/fonts/inter-700.woff2') format('woff2'); }

:root {
  --bg: #EEEEEE;
  --card: #F7F7F7;
  --card-bright: #FDFDFD;
  --panel: #EFEFEF;
  --ink: #1C1C1C;
  --dim: #575757;
  --faint: #8A8A8A;
  --accent: #2F6BFF;
  --accent-soft: #E4ECFF;
  --green: #16B70D;
  --white: #FDFDFD;
  --r-card: 32px;
  --r-inner: 24px;
  --shadow-card: 0 1px 2px rgba(0,0,0,.04), 0 12px 32px rgba(0,0,0,.05);
  --shadow-btn: 0 6px 14px rgba(0,0,0,.22), 0 2px 4px rgba(0,0,0,.18), inset 0 1px 0 rgba(255,255,255,.14);
  --shadow-red: 0 8px 20px rgba(47,107,255,.35), 0 2px 6px rgba(47,107,255,.3), inset 0 1px 0 rgba(255,255,255,.25);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.4;
  letter-spacing: -0.02em;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; border: 0; background: none; cursor: pointer; color: inherit; }
hr { border: 0; border-top: 1px solid rgba(0,0,0,.08); }

.container { max-width: 1080px; margin: 0 auto; padding: 0 24px; }
.center { display: flex; justify-content: center; }

h1 { font-size: 64px; font-weight: 600; line-height: 1.1; letter-spacing: -0.04em; }
h2 { font-size: 48px; font-weight: 600; line-height: 1.2; letter-spacing: -0.04em; }
h3 { font-size: 36px; font-weight: 600; line-height: 1.2; letter-spacing: -0.04em; }
h4 { font-size: 24px; font-weight: 600; line-height: 1.4; letter-spacing: -0.04em; }
h5 { font-size: 18px; font-weight: 600; line-height: 1.4; letter-spacing: -0.04em; }
.accent { color: var(--accent); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-size: 16px; font-weight: 500; letter-spacing: -0.02em;
  padding: 14px 26px; border-radius: 999px;
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); filter: brightness(1.06); }
.btn:active { transform: translateY(1px); }
.btn-dark { background: var(--ink); color: var(--white); box-shadow: var(--shadow-btn); }
.btn-red { background: var(--accent); color: var(--white); box-shadow: var(--shadow-red); }
.btn-white { background: var(--white); color: var(--ink); box-shadow: 0 4px 12px rgba(0,0,0,.08), inset 0 0 0 1px rgba(0,0,0,.05); }
.btn-wide { width: 100%; }

.tag-chip {
  display: inline-block; background: #E4E4E4; color: var(--dim);
  border: 1px solid rgba(0,0,0,.07); border-radius: 10px;
  padding: 8px 16px; font-size: 14px; letter-spacing: -0.02em;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.5);
}

/* ---------- nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  transition: background .25s ease, box-shadow .25s ease, backdrop-filter .25s ease;
}
.nav.scrolled { background: rgba(238,238,238,.82); backdrop-filter: blur(18px) saturate(140%); box-shadow: 0 1px 0 rgba(0,0,0,.05); }
@media (prefers-reduced-transparency: reduce) { .nav.scrolled { background: #EEEEEE; } }
.nav-inner {
  max-width: 1512px; margin: 0 auto; padding: 16px 40px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.brand { display: inline-flex; align-items: center; gap: 10px; }
.brand-mark {
  width: 40px; height: 40px; border-radius: 50%; background: var(--accent);
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 10px rgba(47,107,255,.35), inset 0 1px 0 rgba(255,255,255,.3);
}
.brand-name { font-size: 24px; font-weight: 700; letter-spacing: -0.03em; }
.nav-links { display: flex; gap: 28px; margin-left: auto; margin-right: 8px; }
.nav-links a { font-size: 16px; transition: opacity .15s ease; }
.nav-links a:hover { opacity: .6; }
.nav-burger { display: none; flex-direction: column; gap: 6px; padding: 10px; }
.nav-burger span { width: 22px; height: 2px; background: var(--ink); border-radius: 2px; }
.nav-menu { display: none; }

/* ---------- hero ---------- */
.hero { padding-top: 200px; }
.hero-top { text-align: center; }
.hero h1 { margin-bottom: 24px; }
.hero-sub { color: var(--dim); font-size: 18px; line-height: 1.4; max-width: 620px; margin: 0 auto 32px; }
.hero-ctas { display: flex; justify-content: center; gap: 14px; margin-bottom: 36px; }
.hero-rating { display: inline-flex; align-items: center; gap: 14px; }
.rating-avatars { display: flex; }
.rating-avatars img, .rating-mark {
  width: 42px; height: 42px; border-radius: 50%; object-fit: cover;
  border: 3px solid var(--bg); margin-left: -10px;
}
.rating-avatars img:first-child { margin-left: 0; }
.rating-mark { background: var(--accent); display: inline-flex; align-items: center; justify-content: center; }
.rating-text { text-align: left; }
.rating-score { font-size: 12px; display: flex; align-items: center; gap: 8px; }
.stars { color: var(--accent); font-size: 13px; letter-spacing: 2px; }
.rating-note { font-size: 12px; }

/* ---------- VSL ---------- */
.vsl {
  position: relative; max-width: 860px; margin: 56px auto 0;
  aspect-ratio: 16 / 9; border-radius: 28px; border: 8px solid var(--card-bright);
  overflow: hidden; background: #17181a; box-shadow: 0 24px 60px rgba(0,0,0,.18);
}
.vsl-bg {
  position: absolute; inset: -20px; background-size: cover; background-position: center;
  filter: blur(28px) brightness(.55) saturate(120%); transform: scale(1.1);
}
.vsl video {
  position: relative; height: 100%; margin: 0 auto; display: block; border-radius: 0;
}
.vsl-play {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: 88px; height: 88px; border-radius: 50%; background: var(--accent);
  display: flex; align-items: center; justify-content: center; padding-left: 6px;
  box-shadow: 0 12px 34px rgba(47,107,255,.45), inset 0 1px 0 rgba(255,255,255,.3);
  transition: transform .18s ease;
}
.vsl-play:hover { transform: translate(-50%, -50%) scale(1.06); }
@media (prefers-reduced-motion: no-preference) {
  .vsl-play { animation: pulse 2.4s ease-in-out infinite; }
  @keyframes pulse { 0%,100% { box-shadow: 0 12px 34px rgba(47,107,255,.45), 0 0 0 0 rgba(47,107,255,.35); } 50% { box-shadow: 0 12px 34px rgba(47,107,255,.45), 0 0 0 22px rgba(47,107,255,0); } }
}

.hero-reel { margin-top: 56px; overflow: hidden; }
.reel-track { display: flex; gap: 24px; width: max-content; animation: marquee 36s linear infinite; }
.reel-card {
  position: relative; width: 304px; flex: none;
  border-radius: 28px; border: 8px solid var(--card-bright);
  overflow: hidden; background: var(--card-bright);
  box-shadow: var(--shadow-card);
}
.reel-card > img, .reel-card > video { width: 100%; height: 424px; object-fit: cover; border-radius: 20px; display: block; }
.name-pill {
  position: absolute; left: 16px; bottom: 16px;
  display: inline-flex; align-items: center; gap: 8px;
  color: #fff; font-size: 16px; font-weight: 500;
  text-shadow: 0 1px 6px rgba(0,0,0,.5);
}
.name-pill img { width: 32px; height: 32px; border-radius: 50%; object-fit: cover; border: 2px solid rgba(255,255,255,.85); }
.reel-card::after {
  content: ''; position: absolute; inset: auto 0 0 0; height: 45%;
  background: linear-gradient(to top, rgba(0,0,0,.45), transparent);
  border-radius: 0 0 20px 20px; pointer-events: none;
}
.reel-card .name-pill { z-index: 1; }

.trusted { text-align: center; padding: 72px 0 0; }
.trusted > p { font-size: 18px; color: var(--ink); margin-bottom: 28px; }
.logo-marquee { overflow: hidden; max-width: 980px; margin: 0 auto;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 12%, #000 88%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 12%, #000 88%, transparent);
}
.logo-track { display: flex; align-items: center; gap: 76px; width: max-content; animation: marquee 28s linear infinite; }
.logo-img { height: 34px; width: auto; filter: grayscale(1) opacity(.7); }
.logo-img.dark { filter: brightness(0) opacity(.55); }
.logo-lockup { display: inline-flex; align-items: center; gap: 10px; }
.logo-lockup img { height: 30px; width: auto; filter: grayscale(1) brightness(.75); }
.logo-lockup span { color: #8A8A8A; font-size: 19px; font-weight: 700; letter-spacing: .06em; white-space: nowrap; }

@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- platforms ---------- */
.platforms { padding: 40px 0 0; }
.plat-stage { position: relative; height: 660px; display: flex; align-items: center; justify-content: center; text-align: center; }
.plat-stage h2 { max-width: 720px; position: relative; z-index: 1; }
/* icon offsets measured off the reference at 1440 (px from stage center) */
.app-icon {
  position: absolute; left: 50%; top: 50%; width: 72px; height: 72px; border-radius: 19px;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 18px 34px rgba(0,0,0,.18), inset 0 1px 0 rgba(255,255,255,.25);
}
.app-icon svg { width: 34px; height: 34px; }
.app-yt { background: #FF0000; width: 80px; height: 80px; transform: translate(calc(-50% + 2px), calc(-50% - 175px)); }
.app-yt svg { width: 40px; height: 40px; }
.app-x { background: #111; transform: translate(calc(-50% - 302px), calc(-50% - 127px)) rotate(-10deg); }
.app-snap { background: #FFFC00; transform: translate(calc(-50% + 307px), calc(-50% - 125px)) rotate(8deg); }
.app-tt { background: #111; transform: translate(calc(-50% - 159px), calc(-50% + 173px)) rotate(-8deg); }
.app-ig { background: linear-gradient(45deg, #FEDA75, #FA7E1E 30%, #D62976 60%, #962FBF 85%, #4F5BD5); transform: translate(calc(-50% + 165px), calc(-50% + 173px)) rotate(8deg); }

.plat-stage-2 { height: 600px; }
/* pill offsets measured off the reference at 1440 (px from stage center) */
.stat-pill {
  position: absolute; left: 50%; top: 50%;
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--card-bright); color: var(--dim);
  font-size: 18px; padding: 15px 24px; border-radius: 999px;
  box-shadow: 0 14px 28px rgba(0,0,0,.12), inset 0 1px 0 rgba(255,255,255,.8);
  white-space: nowrap;
}
.pill-avatars { display: flex; }
.pill-avatars img { width: 26px; height: 26px; border-radius: 50%; object-fit: cover; border: 2px solid #fff; margin-left: -8px; }
.pill-avatars img:first-child { margin-left: 0; }
.sp-1 { transform: translate(calc(-50% - 304px), calc(-50% - 133px)) rotate(-10deg); }
.sp-2 { transform: translate(-50%, calc(-50% - 177px)); }
.sp-3 { transform: translate(calc(-50% + 308px), calc(-50% - 133px)) rotate(8deg); }
.sp-4 { transform: translate(calc(-50% - 151px), calc(-50% + 160px)) rotate(-6deg); }
.sp-5 { transform: translate(calc(-50% + 155px), calc(-50% + 155px)) rotate(5deg); }

/* ---------- service components ---------- */
.comp { position: relative; width: 340px; height: 320px; }
.comp-mini, .comp-pill, .chat-bubble, .ads-card {
  background: var(--card-bright);
  box-shadow: 0 10px 26px rgba(20,30,60,.1), inset 0 1px 0 rgba(255,255,255,.8);
}
.comp-content .comp-tile {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -56%) rotate(-4deg);
  width: 108px; height: 108px; border-radius: 26px;
  background: linear-gradient(135deg, #7BA6FF, #2F6BFF 70%);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 22px 44px rgba(47,107,255,.35), inset 0 1px 0 rgba(255,255,255,.35);
}
.comp-mini {
  position: absolute; right: 8px; top: 34px; transform: rotate(5deg);
  border-radius: 16px; padding: 12px 16px; display: flex; align-items: center; gap: 10px;
}
.comp-num { font-size: 28px; font-weight: 600; letter-spacing: -0.04em; color: var(--accent); }
.comp-lbl { font-size: 12px; line-height: 1.25; color: var(--dim); text-align: left; }
.comp-pill {
  position: absolute; border-radius: 999px; padding: 10px 16px;
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--ink); white-space: nowrap;
}
.cp-check { left: 16px; bottom: 44px; transform: rotate(-3deg); }
.comp-spark { position: absolute; }
.cs-1 { left: 52px; top: 52px; }
.cs-2 { right: 76px; bottom: 88px; }

.comp-chat { display: flex; flex-direction: column; justify-content: center; gap: 18px; }
.chat-row { display: flex; align-items: flex-end; gap: 10px; }
.chat-row img { width: 34px; height: 34px; border-radius: 50%; object-fit: cover; flex: none; border: 2px solid #fff; box-shadow: 0 4px 10px rgba(0,0,0,.12); }
.chat-row.out { justify-content: flex-end; }
.chat-bubble {
  border-radius: 18px; border-bottom-left-radius: 6px;
  padding: 12px 16px; font-size: 13px; color: var(--ink); max-width: 240px; text-align: left;
}
.chat-row.out .chat-bubble { border-radius: 18px; border-bottom-right-radius: 6px; }
.chat-bubble.blue { background: linear-gradient(135deg, #5D8DFF, #2F6BFF); color: #fff; box-shadow: 0 12px 28px rgba(47,107,255,.35); }
.chat-bubble.typing { display: inline-flex; gap: 5px; padding: 15px 18px; }
.chat-bubble.typing i { width: 6px; height: 6px; border-radius: 50%; background: #B9C2D4; }
@media (prefers-reduced-motion: no-preference) {
  .chat-bubble.typing i { animation: tdot 1.2s ease-in-out infinite; }
  .chat-bubble.typing i:nth-child(2) { animation-delay: .2s; }
  .chat-bubble.typing i:nth-child(3) { animation-delay: .4s; }
  @keyframes tdot { 0%,60%,100% { opacity: .4; translate: 0 0; } 30% { opacity: 1; translate: 0 -3px; } }
}

.comp-ads { display: flex; align-items: center; justify-content: center; }
.ads-card { width: 250px; border-radius: 20px; padding: 20px 22px 16px; }
.ads-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.ads-head span:first-child { font-size: 13px; font-weight: 600; color: var(--ink); }
.ads-badge { background: var(--accent-soft); color: var(--accent); font-size: 11px; font-weight: 600; padding: 4px 10px; border-radius: 999px; }
.ads-bars { display: flex; align-items: flex-end; gap: 10px; height: 110px; }
.ads-bars i { flex: 1; height: var(--h); background: #E4E8F2; border-radius: 6px; position: relative; }
.ads-bars i.hot { background: linear-gradient(180deg, #6E9BFF, #2F6BFF); box-shadow: 0 8px 18px rgba(47,107,255,.35); }
.ads-tip {
  position: absolute; left: 50%; top: -34px; transform: translateX(-50%);
  background: var(--ink); color: #fff; font-size: 11px; font-weight: 600;
  padding: 5px 10px; border-radius: 8px; white-space: nowrap;
}
.ads-tip::after { content: ''; position: absolute; left: 50%; bottom: -4px; transform: translateX(-50%); border: 4px solid transparent; border-top-color: var(--ink); border-bottom: 0; }
.ads-days { display: flex; gap: 10px; margin-top: 10px; }
.ads-days span { flex: 1; text-align: center; font-size: 10px; color: var(--faint); }
.cp-tr { right: -6px; top: 26px; transform: rotate(4deg); }
.cp-bl { left: -10px; bottom: 36px; transform: rotate(-4deg); }

@media (prefers-reduced-motion: no-preference) {
  .float-a { animation: bob 5.5s ease-in-out infinite; }
  .float-b { animation: bob 6.5s ease-in-out .8s infinite; }
  .float-c { animation: bob 6s ease-in-out .4s infinite; }
  @keyframes bob { 0%,100% { translate: 0 0; } 50% { translate: 0 -14px; } }
}

/* ---------- section headers ---------- */
section { scroll-margin-top: 90px; }
.sec-head { text-align: center; margin-bottom: 64px; }
.sec-head .tag-chip { margin-bottom: 28px; }
.sec-head h2 { margin-bottom: 20px; }
.sec-sub { color: var(--dim); font-size: 16px; max-width: 430px; margin: 0 auto; }
.sec-sub.left { margin: 0; }

/* ---------- results ---------- */
.results { padding: 120px 0; }
.result-rows { margin-bottom: 72px; }
.result-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 56px 0; border-bottom: 1px solid rgba(0,0,0,.09);
}
.result-row:last-child { border-bottom: 0; }
.result-info { max-width: 400px; }
.result-info h4 { margin-bottom: 12px; }
.result-info p { color: var(--dim); }
.result-num { font-size: 100px; font-weight: 600; letter-spacing: -0.05em; line-height: .8; display: flex; align-items: center; }
.result-num .plus { color: var(--accent); font-size: 72px; font-weight: 500; margin-left: 6px; }

/* ---------- services ---------- */
.services { padding: 60px 0 120px; }
.service-card {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
  background: var(--card); border-radius: var(--r-card);
  padding: 16px; margin-bottom: 32px; box-shadow: var(--shadow-card);
}
.service-art {
  background: var(--panel); border-radius: var(--r-inner);
  min-height: 430px; display: flex; align-items: center; justify-content: center;
}
.service-copy { padding: 40px 40px 40px 8px; }
.service-flip .service-copy { padding: 40px 8px 40px 40px; }
.service-copy h3 { margin-bottom: 16px; }
.service-desc { color: var(--dim); margin-bottom: 24px; max-width: 420px; }
.check-list li { display: flex; align-items: center; gap: 10px; color: var(--dim); font-size: 14px; margin-bottom: 12px; }
.ic-check, .ic-x { flex: none; }
.service-copy .btn { margin-top: 16px; }

/* ---------- mission ---------- */
.mission { padding: 60px 0 120px; }
.mission-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 64px; align-items: start; }
.mission-media {
  border-radius: 28px; border: 8px solid var(--card-bright); overflow: hidden;
  background: var(--card-bright); box-shadow: var(--shadow-card);
}
.mission-media img { width: 100%; height: 560px; object-fit: cover; border-radius: 20px; }
.mission-copy .tag-chip { margin-bottom: 28px; }
.mission-copy h2 { margin-bottom: 20px; }
.mission-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 120px; }
.mini-stat {
  background: var(--card); border-radius: 20px; text-align: center;
  padding: 40px 20px 28px; box-shadow: var(--shadow-card);
}
.mini-num { font-size: 56px; font-weight: 600; letter-spacing: -0.05em; line-height: .8; margin-bottom: 14px; }
.mini-label { color: var(--dim); font-size: 14px; }

/* ---------- projects ---------- */
.projects { padding: 60px 0 120px; }
.proj-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px 40px; margin-bottom: 64px; }
.proj-media {
  position: relative; border-radius: 28px; border: 8px solid var(--card-bright);
  overflow: hidden; background: var(--card-bright); box-shadow: var(--shadow-card);
}
.proj-media img, .proj-media video { width: 100%; height: 380px; object-fit: cover; border-radius: 20px; transition: transform .5s ease; display: block; }
.proj-card:hover .proj-media img, .proj-card:hover .proj-media video { transform: scale(1.04); }
.proj-pills { position: absolute; left: 16px; bottom: 16px; display: flex; gap: 8px; z-index: 1; }
.proj-pills span {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(20,20,20,.55); color: #fff; font-size: 14px;
  padding: 7px 13px; border-radius: 999px; backdrop-filter: blur(8px);
}
@media (prefers-reduced-transparency: reduce) { .proj-pills span { background: rgba(20,20,20,.9); backdrop-filter: none; } }
.proj-media::after {
  content: ''; position: absolute; inset: auto 0 0 0; height: 40%;
  background: linear-gradient(to top, rgba(0,0,0,.4), transparent);
  border-radius: 0 0 20px 20px; pointer-events: none;
}
.proj-bar {
  margin-top: 16px; background: var(--card); border-radius: 20px;
  padding: 22px 28px; display: flex; align-items: center; justify-content: space-between;
  box-shadow: var(--shadow-card);
}
.proj-bar p { color: var(--dim); }

/* ---------- process ---------- */
.process { padding: 60px 0 120px; }
.process-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 64px; }
.process-head { position: sticky; top: 140px; align-self: start; }
.process-head .tag-chip { margin-bottom: 28px; }
.process-head h2 { margin-bottom: 20px; }
.step-card {
  background: var(--card); border-radius: 28px; padding: 16px 16px 40px;
  margin-bottom: 32px; box-shadow: var(--shadow-card);
}
.step-strip {
  background: var(--panel); border-radius: 18px; padding: 14px 20px;
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 240px;
}
.step-num {
  width: 52px; height: 52px; border-radius: 50%; background: var(--accent); color: #fff;
  display: inline-flex; align-items: center; justify-content: center; font-size: 16px;
  box-shadow: 0 6px 14px rgba(47,107,255,.4), inset 0 1px 0 rgba(255,255,255,.3);
}
.step-body { padding: 0 16px; }
.step-body h4 { margin-bottom: 12px; }
.step-body p { color: var(--dim); max-width: 430px; }

/* ---------- compare ---------- */
.compare { padding: 60px 0 120px; }
.compare-card {
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px;
  background: var(--card); border-radius: var(--r-card);
  padding: 48px; box-shadow: var(--shadow-card);
}
.compare-col h4 { margin-bottom: 28px; display: flex; align-items: center; gap: 12px; }
.compare-col li { display: flex; align-items: center; gap: 12px; font-size: 16px; margin-bottom: 18px; color: var(--dim); }
.compare-us {
  background: var(--card-bright); border: 2px solid var(--accent); border-radius: var(--r-inner);
  padding: 36px 40px; margin: -16px -12px -16px 0;
  box-shadow: 0 16px 40px rgba(47,107,255,.18);
}
.compare-mark {
  width: 36px; height: 36px; border-radius: 50%; background: var(--accent);
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 10px rgba(47,107,255,.35);
}

/* ---------- pricing ---------- */
.pricing { padding: 60px 0 120px; }
.toggle-wrap { display: flex; justify-content: center; margin-bottom: 56px; }
.bill-toggle {
  background: var(--card-bright); border-radius: 999px; padding: 7px;
  display: inline-flex; gap: 4px; box-shadow: 0 10px 26px rgba(0,0,0,.1), inset 0 1px 0 rgba(255,255,255,.8);
}
.toggle-opt { padding: 12px 26px; border-radius: 999px; font-size: 16px; color: var(--ink); transition: all .2s ease; }
.toggle-opt.active { background: var(--accent); color: #fff; box-shadow: var(--shadow-red); }
.plans { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 28px; margin-bottom: 32px; align-items: start; }
.plan-card {
  background: var(--card); border-radius: 28px; padding: 16px; box-shadow: var(--shadow-card);
}
.plan-card > .plan-tags, .plan-card > h5, .plan-card > .price, .plan-card > .plan-btn { margin-left: 16px; margin-right: 16px; }
.plan-inner-top { border-radius: 20px; }
.plan-tags { display: flex; align-items: center; justify-content: space-between; padding-top: 16px; margin-bottom: 20px; }
.plan-tag { background: var(--accent-soft); color: var(--accent); font-size: 12px; padding: 7px 13px; border-radius: 8px; }
.save-tag { color: var(--green); font-size: 12px; }
.plan-card h5 { margin-bottom: 20px; }
.price { display: flex; align-items: baseline; gap: 6px; margin-bottom: 24px; }
.price-num { font-size: 48px; font-weight: 600; letter-spacing: -0.04em; line-height: 1; }
.per { color: var(--dim); font-size: 12px; }
.plan-btn { display: flex; margin-bottom: 24px; }
.plan-card hr { margin: 0 16px 24px; }
.plan-list { padding: 0 16px 16px; }
.plan-hot { background: #E9F0FF; box-shadow: 0 0 0 2px var(--accent), 0 18px 44px rgba(47,107,255,.22); }
.custom-plan {
  display: grid; grid-template-columns: 1.2fr 1fr auto; gap: 40px; align-items: center;
  background: var(--card); border-radius: 28px; padding: 40px 48px; box-shadow: var(--shadow-card);
}
.custom-copy h4 { margin-bottom: 12px; }
.custom-copy p { color: var(--dim); }
.custom-list { display: grid; grid-template-columns: 1fr 1fr; gap: 4px 24px; }
.custom-list li { margin-bottom: 8px; white-space: nowrap; }

/* ---------- testimonials ---------- */
.testimonials { padding: 60px 0 120px; }
.feat-quote {
  display: grid; grid-template-columns: 400px 1fr; gap: 48px;
  background: var(--card); border-radius: var(--r-card); padding: 24px;
  box-shadow: var(--shadow-card); margin-bottom: 48px;
}
.feat-media { position: relative; border-radius: var(--r-inner); overflow: hidden; }
.feat-media img { width: 100%; height: 480px; object-fit: cover; }
.feat-pills { left: 12px; bottom: 12px; }
.feat-media::after {
  content: ''; position: absolute; inset: auto 0 0 0; height: 35%;
  background: linear-gradient(to top, rgba(0,0,0,.45), transparent); pointer-events: none;
}
.feat-body { position: relative; padding: 32px 32px 32px 0; display: flex; flex-direction: column; }
.quote-ic { margin-bottom: 28px; }
.feat-text { font-size: 24px; font-weight: 600; letter-spacing: -0.04em; line-height: 1.4; margin-bottom: auto; max-width: 640px; }
.feat-person { display: flex; align-items: center; gap: 14px; margin-top: 40px; }
.feat-person img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
.feat-person p { color: var(--dim); font-size: 16px; }
.feat-arrows { position: absolute; right: 24px; bottom: 32px; display: flex; gap: 12px; }
.arrow-btn {
  width: 48px; height: 48px; border-radius: 50%; background: var(--card-bright);
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 18px rgba(0,0,0,.12), inset 0 1px 0 rgba(255,255,255,.7);
  transition: transform .15s ease;
}
.arrow-btn:hover { transform: translateY(-1px); }
.quote-marquee { overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
}
.quote-row { display: flex; gap: 24px; width: max-content; margin-bottom: 24px; animation: marquee 42s linear infinite; }
.quote-row[data-dir="right"] { animation-direction: reverse; }
.quote-card {
  width: 480px; flex: none; background: linear-gradient(135deg, var(--card-bright), var(--card));
  border-radius: 24px; padding: 32px; box-shadow: var(--shadow-card);
}
.q-stars { color: var(--accent); font-size: 18px; letter-spacing: 4px; margin-bottom: 16px; }
.quote-card h5 { margin-bottom: 24px; max-width: 380px; }
.q-person { display: flex; align-items: center; gap: 10px; font-size: 16px; }
.q-person img { width: 32px; height: 32px; border-radius: 50%; object-fit: cover; }

/* ---------- faq ---------- */
.faq { padding: 60px 0 120px; }
.faq-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 64px; align-items: start; }
.faq-head .tag-chip { margin-bottom: 28px; }
.faq-head h2 { margin-bottom: 20px; }
.faq-ctas { display: flex; gap: 14px; margin-top: 32px; }
.faq-item {
  background: var(--card-bright); border-radius: 20px; margin-bottom: 20px;
  border: 1px solid transparent; box-shadow: var(--shadow-card);
  transition: border-color .2s ease;
}
.faq-item.open { border-color: var(--accent); }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px;
  text-align: left; font-size: 18px; font-weight: 600; letter-spacing: -0.04em;
  padding: 26px 28px;
}
.faq-item.open .faq-q { color: var(--accent); }
.faq-btn {
  flex: none; width: 40px; height: 40px; border-radius: 50%; background: var(--accent);
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 14px rgba(47,107,255,.35), inset 0 1px 0 rgba(255,255,255,.3);
  transition: transform .25s ease;
}
.faq-item.open .faq-btn { transform: rotate(45deg); }
.faq-a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .3s ease; }
.faq-item.open .faq-a { grid-template-rows: 1fr; }
.faq-a > p { overflow: hidden; color: var(--dim); padding: 0 76px 0 28px; }
.faq-item.open .faq-a > p { padding-bottom: 26px; }

/* ---------- articles ---------- */
.articles { padding: 60px 0 120px; }
.article-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-bottom: 64px; }
.article-media {
  position: relative; border-radius: 28px; border: 8px solid var(--card-bright);
  overflow: hidden; background: var(--card-bright); box-shadow: var(--shadow-card);
}
.article-media img { width: 100%; height: 380px; object-fit: cover; border-radius: 20px; transition: transform .5s ease; }
.article-card:hover .article-media img { transform: scale(1.04); }
.article-tag {
  position: absolute; left: 20px; top: 20px; background: rgba(20,20,20,.6); color: #fff;
  font-size: 14px; padding: 9px 16px; border-radius: 999px; backdrop-filter: blur(8px); z-index: 1;
}
@media (prefers-reduced-transparency: reduce) { .article-tag { background: rgba(20,20,20,.9); backdrop-filter: none; } }
.article-arrow {
  position: absolute; right: 20px; bottom: 20px; width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,.85); display: inline-flex; align-items: center; justify-content: center;
  backdrop-filter: blur(6px); z-index: 1; transition: transform .2s ease;
}
.article-card:hover .article-arrow { transform: translate(2px, -2px); }
.article-bar {
  margin-top: 16px; background: var(--card); border-radius: 20px; padding: 28px 32px;
  box-shadow: var(--shadow-card);
}
.article-bar h4 { margin-bottom: 10px; }
.article-bar p { color: var(--dim); }

/* ---------- cta ---------- */
.cta { padding: 60px 0 0; }
.cta-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.cta-copy .tag-chip { margin-bottom: 28px; }
.cta-copy h2 { margin-bottom: 20px; }
.cta-copy .btn { margin-top: 32px; }
.cta-media { position: relative; display: flex; justify-content: center; }
.phone-frame {
  position: relative; width: 320px; padding: 14px; background: #17181a;
  border-radius: 52px; box-shadow: 0 30px 70px rgba(0,0,0,.3), inset 0 1px 0 rgba(255,255,255,.12), 0 0 0 2px rgba(255,255,255,.06);
}
.phone-frame video { width: 100%; height: 560px; object-fit: cover; border-radius: 40px; display: block; }
.phone-bar {
  position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%);
  width: 110px; height: 4px; border-radius: 2px; background: rgba(255,255,255,.85); pointer-events: none;
}
.cta-pill { left: 34px; bottom: 44px; }
.phone-frame::before {
  content: ''; position: absolute; top: 26px; left: 50%; transform: translateX(-50%);
  width: 96px; height: 26px; border-radius: 14px; background: #17181a; z-index: 1;
}

/* ---------- footer ---------- */
.footer { padding: 120px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 1.1fr 1.2fr 1fr; gap: 56px; margin-bottom: 56px; }
.footer-brand > p { color: var(--dim); margin: 20px 0 24px; max-width: 300px; }
.socials { display: flex; gap: 12px; }
.socials a {
  width: 44px; height: 44px; border-radius: 50%; background: var(--ink); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-btn); transition: transform .15s ease;
}
.socials a:hover { transform: translateY(-2px); }
.footer-links { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.link-head { color: var(--faint); margin-bottom: 20px; }
.link-head.dark { color: var(--ink); font-weight: 600; }
.link-col nav { display: flex; flex-direction: column; gap: 14px; align-items: flex-start; }
.link-col a { transition: opacity .15s ease; }
.link-col a:hover { opacity: .6; }
.newsletter {
  background: var(--card); border-radius: var(--r-inner); padding: 32px;
  box-shadow: var(--shadow-card);
}
.newsletter input {
  width: 100%; font: inherit; font-size: 16px; color: var(--ink);
  background: var(--bg); border: 1px solid rgba(0,0,0,.1); border-radius: 12px;
  padding: 14px 16px; margin-bottom: 16px; outline: none;
}
.newsletter input:focus { border-color: var(--accent); }
.fine-print { color: var(--dim); font-size: 13px; text-align: center; margin-top: 16px; }
.fine-print a { text-decoration: underline; }
.form-msg { font-size: 13px; text-align: center; margin-top: 10px; min-height: 18px; }
.form-msg.ok { color: var(--green); }
.form-msg.err { color: var(--accent); }
.footer-bar {
  background: var(--card); border-radius: 18px; padding: 24px 32px;
  display: flex; align-items: center; justify-content: space-between;
  box-shadow: var(--shadow-card); color: var(--dim);
}

/* ---------- reveal animation ---------- */
@media (prefers-reduced-motion: no-preference) {
  .reveal-words .w { display: inline-block; opacity: 0; transform: translateY(18px); filter: blur(6px); transition: opacity .5s ease, transform .5s ease, filter .5s ease; }
  .reveal-words.in .w { opacity: 1; transform: none; filter: none; }
  .rise { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
  .rise.in { opacity: 1; transform: none; }
}

/* ---------- responsive ---------- */
@media (max-width: 1100px) {
  h1 { font-size: 52px; }
  h2 { font-size: 40px; }
  .plat-stage, .plat-stage-2 { height: 640px; }
  .result-num { font-size: 76px; }
  .result-num .plus { font-size: 56px; }
}

@media (max-width: 860px) {
  h1 { font-size: 42px; }
  h2 { font-size: 33px; }
  h3 { font-size: 28px; }
  .nav-inner { padding: 12px 20px; }
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: flex; }
  .nav-menu.openm {
    display: flex; flex-direction: column; gap: 20px;
    background: rgba(238,238,238,.95); backdrop-filter: blur(18px);
    padding: 24px 28px 32px; font-size: 18px;
    box-shadow: 0 20px 40px rgba(0,0,0,.1);
  }
  .hero { padding-top: 140px; }
  .hero-sub { font-size: 16px; }
  .hero-ctas { flex-wrap: wrap; }
  .reel-card { width: 240px; }
  .reel-card > img, .reel-card > video { height: 336px; }
  .plat-stage, .plat-stage-2 { height: 480px; padding: 0 16px; }
  .app-icon { width: 54px; height: 54px; border-radius: 14px; }
  .app-icon svg { width: 26px; height: 26px; }
  .app-yt { width: 60px; height: 60px; transform: translate(-50%, calc(-50% - 130px)); }
  .app-yt svg { width: 30px; height: 30px; }
  .app-x { transform: translate(calc(-50% - 128px), calc(-50% - 96px)) rotate(-10deg); }
  .app-snap { transform: translate(calc(-50% + 130px), calc(-50% - 95px)) rotate(8deg); }
  .app-tt { transform: translate(calc(-50% - 72px), calc(-50% + 128px)) rotate(-8deg); }
  .app-ig { transform: translate(calc(-50% + 75px), calc(-50% + 128px)) rotate(8deg); }
  .stat-pill { font-size: 13px; padding: 10px 15px; }
  .pill-avatars img { width: 20px; height: 20px; }
  .sp-1 { transform: translate(calc(-50% - 96px), calc(-50% - 130px)) rotate(-10deg); }
  .sp-2 { transform: translate(-50%, calc(-50% - 185px)); }
  .sp-3 { transform: translate(calc(-50% + 92px), calc(-50% - 78px)) rotate(8deg); }
  .sp-4 { transform: translate(calc(-50% - 62px), calc(-50% + 120px)) rotate(-6deg); }
  .sp-5 { transform: translate(calc(-50% + 68px), calc(-50% + 172px)) rotate(5deg); }
  .comp { width: 300px; height: 300px; }
  .comp-mini { right: 0; }
  .cp-tr { right: 0; }
  .cp-bl { left: 0; }
  .logo-img { height: 26px; }
  .logo-lockup img { height: 24px; }
  .logo-lockup span { font-size: 16px; }
  .result-row { flex-direction: column; align-items: flex-start; gap: 24px; padding: 40px 0; }
  .result-num { font-size: 64px; }
  .service-card, .service-flip { grid-template-columns: 1fr; gap: 24px; }
  .service-art { min-height: 300px; }
  .service-copy, .service-flip .service-copy { padding: 8px 24px 24px; }
  .service-flip .service-copy { order: 2; }
  .mission-grid { grid-template-columns: 1fr; gap: 40px; }
  .mission-media img { height: 400px; }
  .mission-stats { margin-top: 40px; }
  .proj-grid { grid-template-columns: 1fr; }
  .proj-media img { height: 300px; }
  .process-grid { grid-template-columns: 1fr; gap: 40px; }
  .process-head { position: static; }
  .step-strip { margin-bottom: 120px; }
  .compare-card { grid-template-columns: 1fr; padding: 28px; gap: 32px; }
  .compare-us { margin: 0; padding: 28px; }
  .plans { grid-template-columns: 1fr; }
  .custom-plan { grid-template-columns: 1fr; gap: 24px; padding: 28px; }
  .feat-quote { grid-template-columns: 1fr; }
  .feat-media img { height: 380px; }
  .feat-body { padding: 8px 8px 72px; }
  .feat-text { font-size: 20px; }
  .feat-arrows { right: 8px; bottom: 8px; }
  .quote-card { width: 340px; padding: 24px; }
  .faq-grid { grid-template-columns: 1fr; gap: 40px; }
  .faq-q { font-size: 16px; padding: 20px; }
  .faq-a > p { padding: 0 20px; }
  .faq-item.open .faq-a > p { padding-bottom: 20px; }
  .article-grid { grid-template-columns: 1fr; }
  .article-media img { height: 300px; }
  .cta-grid { grid-template-columns: 1fr; }
  .footer { padding-top: 80px; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-bar { flex-direction: column; gap: 8px; text-align: center; }
  .results, .services, .mission, .projects, .process, .compare, .pricing, .testimonials, .faq, .articles { padding-top: 40px; padding-bottom: 80px; }
}
