/* Checkout Creatives — site styles v0.1
   Palette sampled to approximate the logo. Swap --blue for the exact hex from the logo file. */

:root {
  --blue: #1B7CFF;
  --blue-600: #0B5CE0;
  --blue-tint: #E8F1FF;
  --ink: #0C0D10;
  --ink-soft: #16181D;
  --bone: #F4F3EF;
  --white: #FFFFFF;
  --muted: #6B6E76;
  --line: rgba(12, 13, 16, 0.10);
  --line-strong: rgba(12, 13, 16, 0.16);

  --display: "Space Grotesk", "Inter", system-ui, sans-serif;
  --body: "Inter", system-ui, -apple-system, sans-serif;

  --r-sm: 12px;
  --r: 18px;
  --r-lg: 28px;

  --container: 1200px;
  --gutter: clamp(20px, 5vw, 56px);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body {
  margin: 0;
  font-family: var(--body);
  color: var(--ink);
  background: var(--bone);
  font-size: 17px;
  line-height: 1.55;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin: 0;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding-block: clamp(72px, 11vw, 150px); }
.eyebrow {
  font-family: var(--display);
  font-weight: 500;
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue);
  margin: 0 0 22px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow .spark { width: 14px; height: 14px; color: var(--blue); }
.lede { color: var(--muted); font-size: clamp(1.05rem, 1.6vw, 1.32rem); max-width: 46ch; }
.hl { color: var(--blue); }

/* ---------- Sparkle mark ---------- */
.spark { display: inline-block; fill: currentColor; }

/* ---------- Logo ---------- */
.logo { display: inline-flex; align-items: center; gap: 11px; font-family: var(--display); font-weight: 700; font-size: 1.16rem; letter-spacing: -0.02em; }
.logo__mark { width: 30px; height: 30px; flex: none; color: var(--blue); }
.logo--light { color: var(--white); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 26px; border-radius: 999px; border: 1px solid transparent;
  font-family: var(--display); font-weight: 600; font-size: 0.98rem; letter-spacing: -0.01em;
  transition: transform 0.25s var(--ease), background 0.2s var(--ease), color 0.2s var(--ease), box-shadow 0.25s var(--ease);
  will-change: transform;
}
.btn--primary { background: var(--blue); color: #fff; box-shadow: 0 10px 30px -12px rgba(27, 124, 255, 0.7); }
.btn--primary:hover { background: var(--blue-600); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line-strong); }
.btn--ghost:hover { border-color: var(--ink); }
.btn--light { background: #fff; color: var(--ink); }
.btn--light:hover { transform: translateY(-2px); }
.btn--lg { padding: 18px 34px; font-size: 1.05rem; }

/* Nav removed — headerless design per request. */

/* ---------- Hero ---------- */
.hero { padding-top: clamp(80px, 9vw, 130px); padding-bottom: 0; text-align: center; position: relative; }
.hero__inner { max-width: 1200px; margin-inline: auto; }
.hero h1 {
  font-size: clamp(2.1rem, 4.6vw, 4.2rem);
  line-height: 1.03;
  margin: 22px 0 0;
  text-wrap: balance;
}
.hero__sub { margin: 30px auto 0; max-width: 46ch; color: var(--muted); font-size: clamp(1.08rem, 1.7vw, 1.32rem); }
.hero__actions { margin-top: 40px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero__trust { margin-top: 30px; font-size: 0.9rem; color: var(--muted); }

/* ---------- Marquee creative wall ---------- */
.wall { margin-top: clamp(48px, 7vw, 92px); padding-bottom: clamp(40px, 6vw, 80px); display: grid; gap: 22px; }
.marquee { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee__track { display: flex; gap: 22px; width: max-content; animation: marquee 46s linear infinite; }
.marquee--rev .marquee__track { animation-duration: 54s; animation-direction: reverse; }
.marquee:hover .marquee__track { animation-play-state: paused; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- Ad mock card ---------- */
.ad {
  width: 232px; flex: none; aspect-ratio: 4 / 5; border-radius: var(--r);
  padding: 18px; display: flex; flex-direction: column; gap: 12px;
  position: relative; overflow: hidden; box-shadow: 0 18px 40px -26px rgba(12, 13, 16, 0.4);
}
.ad__brand { display: flex; align-items: center; gap: 8px; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.04em; opacity: 0.9; text-transform: uppercase; }
.ad__brand i { width: 16px; height: 16px; border-radius: 5px; background: currentColor; opacity: 0.5; display: block; }
.ad__head { font-family: var(--display); font-weight: 700; font-size: 1.32rem; line-height: 1.02; letter-spacing: -0.02em; }
.ad__product { flex: 1; border-radius: 12px; display: grid; place-items: center; margin-block: 2px; }
.ad__product::after { content: ""; width: 46%; aspect-ratio: 1; border-radius: 50%; background: currentColor; opacity: 0.22; }
.ad__foot { display: flex; align-items: center; justify-content: space-between; }
.ad__pill { font-size: 0.72rem; font-weight: 700; padding: 7px 12px; border-radius: 999px; }
.ad__price { font-family: var(--display); font-weight: 700; font-size: 0.95rem; }
.ad .ad__spark { position: absolute; top: 14px; right: 14px; width: 18px; height: 18px; opacity: 0.9; }
.ad__play { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 48px; height: 48px; border-radius: 50%; background: rgba(255,255,255,0.94); display: grid; place-items: center; box-shadow: 0 8px 20px -8px rgba(0,0,0,0.55); }
.ad__play::after { content: ""; margin-left: 4px; border-left: 15px solid var(--blue); border-top: 9px solid transparent; border-bottom: 9px solid transparent; }

.ad--blue { background: var(--blue); color: #fff; }
.ad--blue .ad__product { background: rgba(255,255,255,0.14); }
.ad--blue .ad__pill { background: #fff; color: var(--blue); }
.ad--ink { background: var(--ink); color: #fff; }
.ad--ink .ad__product { background: rgba(255,255,255,0.10); }
.ad--ink .ad__pill { background: var(--blue); color: #fff; }
.ad--tint { background: var(--blue-tint); color: var(--ink); }
.ad--tint .ad__product { background: rgba(27,124,255,0.16); color: var(--blue); }
.ad--tint .ad__pill { background: var(--blue); color: #fff; }
.ad--white { background: #fff; color: var(--ink); border: 1px solid var(--line); }
.ad--white .ad__product { background: rgba(12,13,16,0.06); }
.ad--white .ad__pill { background: var(--ink); color: #fff; }
.ad--grad { background: linear-gradient(150deg, var(--blue), #6aa8ff); color: #fff; }
.ad--grad .ad__product { background: rgba(255,255,255,0.18); }
.ad--grad .ad__pill { background: #fff; color: var(--blue); }

/* ---------- Insight ---------- */
.insight { text-align: center; }
.insight h2 { font-size: clamp(2rem, 5vw, 3.6rem); max-width: 20ch; margin-inline: auto; }
.insight p { margin: 28px auto 0; max-width: 54ch; color: var(--muted); font-size: clamp(1.05rem, 1.6vw, 1.24rem); }

/* ---------- Offer ---------- */
.offer__grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(32px, 6vw, 80px); align-items: center; }
.offer h2 { font-size: clamp(2rem, 4.4vw, 3.4rem); }
.offer .lede { margin-top: 24px; }
.offer__list { margin: 30px 0 0; padding: 0; list-style: none; display: grid; gap: 14px; }
.offer__list li { display: flex; gap: 12px; align-items: flex-start; font-size: 1.03rem; }
.offer__list .spark { color: var(--blue); width: 18px; height: 18px; margin-top: 4px; flex: none; }

.counter {
  background: var(--ink); color: #fff; border-radius: var(--r-lg); padding: clamp(28px, 4vw, 44px);
  position: relative; overflow: hidden;
}
.counter__num { font-family: var(--display); font-weight: 700; font-size: clamp(5rem, 14vw, 9rem); line-height: 0.9; letter-spacing: -0.04em; }
.counter__label { color: rgba(255,255,255,0.66); font-size: 1.05rem; margin-top: 6px; }
.counter__tiles { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; margin-top: 28px; }
.counter__tiles i {
  aspect-ratio: 4/5; border-radius: 9px; background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12); display: block;
  opacity: 0; transform: translateY(10px) scale(0.9);
  transition: opacity 0.4s var(--ease), transform 0.5s var(--ease);
}
.counter__tiles i.pop { opacity: 1; transform: none; }
.counter__tiles i:nth-child(odd) { background: rgba(27,124,255,0.55); border-color: rgba(27,124,255,0.7); }

/* ---------- Andromeda (dark) ---------- */
.andromeda { background: var(--ink); color: #fff; }
.andromeda .eyebrow { color: #7db2ff; }
.andromeda__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 76px); align-items: center; }
.andromeda h2 { font-size: clamp(2rem, 4.4vw, 3.4rem); }
.andromeda p { color: rgba(255,255,255,0.7); margin-top: 24px; font-size: 1.1rem; max-width: 48ch; }
.andromeda p b { color: #fff; font-weight: 600; }
.swarm { display: flex; flex-wrap: wrap; gap: 9px; align-content: center; }
.swarm i {
  width: 40px; height: 50px; border-radius: 8px; background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12); display: block; transition: transform 0.4s var(--ease), background 0.4s;
}
.swarm i.hot { background: var(--blue); border-color: var(--blue); box-shadow: 0 0 0 4px rgba(27,124,255,0.22); transform: scale(1.08); }

/* ---------- Steps ---------- */
.steps__head { max-width: 30ch; margin-bottom: clamp(38px, 5vw, 64px); }
.steps__head h2 { font-size: clamp(2rem, 4.4vw, 3.4rem); }
.steps__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.step { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(24px, 3vw, 36px); transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease); }
.step:hover { transform: translateY(-6px); box-shadow: 0 30px 60px -40px rgba(12,13,16,0.5); }
.step__no { font-family: var(--display); font-weight: 700; font-size: 0.95rem; color: var(--blue); letter-spacing: 0.1em; }
.step h3 { font-size: 1.5rem; margin: 20px 0 12px; }
.step p { color: var(--muted); margin: 0; }

/* ---------- Work teaser + Work page ---------- */
.work__head { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; margin-bottom: clamp(34px, 4vw, 54px); flex-wrap: wrap; }
.work__head h2 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
.grid-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.tile {
  aspect-ratio: 4/5; border-radius: var(--r); position: relative; overflow: hidden;
  display: flex; padding: 20px; cursor: pointer;
}
.tile .placeholder-note { position: absolute; inset: auto 16px 16px; font-size: 0.74rem; opacity: 0.7; font-weight: 600; letter-spacing: 0.03em; text-transform: uppercase; }
.tile__spark { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 34%; opacity: 0.9; transition: transform 0.5s var(--ease); }
.tile:hover .tile__spark { transform: translate(-50%, -50%) rotate(90deg) scale(1.08); }

.filters { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 34px; }
.chip { padding: 9px 16px; border-radius: 999px; border: 1px solid var(--line-strong); font-size: 0.9rem; font-weight: 500; background: transparent; transition: background 0.2s, color 0.2s, border-color 0.2s; }
.chip.is-on, .chip:hover { background: var(--ink); color: #fff; border-color: var(--ink); }

.placeholder-banner {
  margin-top: 40px; text-align: center; padding: 22px; border: 1px dashed var(--line-strong);
  border-radius: var(--r); color: var(--muted); font-size: 0.96rem;
}

/* ---------- What you get ---------- */
.get__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.get__col h3 { font-size: 1.35rem; margin-bottom: 16px; }
.get__col ul { margin: 0; padding: 0; list-style: none; display: grid; gap: 11px; }
.get__col li { color: var(--muted); padding-left: 22px; position: relative; }
.get__col li::before { content: ""; position: absolute; left: 0; top: 9px; width: 8px; height: 8px; border-radius: 2px; background: var(--blue); }

/* ---------- Pricing ---------- */
.pricing { text-align: center; }
.plan {
  max-width: 520px; margin: clamp(34px, 4vw, 52px) auto 0; background: #fff; border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: clamp(30px, 4vw, 48px); text-align: left; position: relative;
  box-shadow: 0 40px 90px -60px rgba(12,13,16,0.5);
}
.plan__tag { display: inline-block; font-family: var(--display); font-weight: 600; font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--blue); }
.plan__price { font-family: var(--display); font-weight: 700; font-size: clamp(2.4rem, 5vw, 3.4rem); margin: 14px 0 4px; letter-spacing: -0.03em; }
.plan__price span { font-size: 1rem; color: var(--muted); font-weight: 500; letter-spacing: 0; }
.plan ul { list-style: none; margin: 26px 0; padding: 0; display: grid; gap: 13px; }
.plan li { display: flex; gap: 11px; }
.plan li .spark { color: var(--blue); width: 18px; height: 18px; flex: none; margin-top: 3px; }
.plan .btn { width: 100%; }
.plan__note { text-align: center; color: var(--muted); font-size: 0.86rem; margin-top: 14px; }

/* ---------- FAQ ---------- */
.faq { max-width: 780px; margin-inline: auto; }
.faq__item { border-top: 1px solid var(--line); }
.faq__item:last-child { border-bottom: 1px solid var(--line); }
.faq__item summary { list-style: none; cursor: pointer; padding: 26px 0; font-family: var(--display); font-weight: 600; font-size: clamp(1.1rem, 2vw, 1.4rem); display: flex; justify-content: space-between; gap: 20px; align-items: center; }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary .plus { width: 22px; height: 22px; flex: none; position: relative; }
.faq__item summary .plus::before, .faq__item summary .plus::after { content: ""; position: absolute; inset: 50% 0 auto 0; height: 2px; background: var(--blue); transition: transform 0.3s var(--ease); }
.faq__item summary .plus::after { transform: rotate(90deg); }
.faq__item[open] summary .plus::after { transform: rotate(0); }
.faq__item p { margin: 0 0 26px; color: var(--muted); max-width: 62ch; }

/* ---------- CTA / contact ---------- */
.cta { background: var(--ink); color: #fff; text-align: center; position: relative; overflow: hidden; }
.cta h2 { font-size: clamp(2.3rem, 5.5vw, 4.2rem); max-width: 18ch; margin-inline: auto; }
.cta p { color: rgba(255,255,255,0.66); margin: 24px auto 0; max-width: 42ch; font-size: 1.1rem; }
.cta__form { margin: 40px auto 0; max-width: 540px; display: flex; gap: 10px; flex-wrap: wrap; }
.cta__form input { flex: 1 1 200px; padding: 16px 20px; border-radius: 999px; border: 1px solid rgba(255,255,255,0.18); background: rgba(255,255,255,0.06); color: #fff; font-family: inherit; font-size: 1rem; }
.cta__form input::placeholder { color: rgba(255,255,255,0.5); }
.cta__form input:focus { outline: none; border-color: var(--blue); }
.cta__ok { margin-top: 22px; color: #7db2ff; font-weight: 600; }
.cta__contact { margin-top: 26px; color: rgba(255,255,255,0.62); font-size: 0.96rem; }
.cta__contact a { color: #fff; border-bottom: 1px solid rgba(255,255,255,0.32); transition: border-color 0.2s; }
.cta__contact a:hover { border-color: #fff; }
.cta__glow { position: absolute; width: 620px; height: 620px; border-radius: 50%; background: radial-gradient(circle, rgba(27,124,255,0.5), transparent 62%); top: -240px; left: 50%; transform: translateX(-50%); pointer-events: none; }

/* ---------- Footer ---------- */
.footer { background: var(--bone); padding-block: clamp(48px, 6vw, 72px); border-top: 1px solid var(--line); }
.footer__top { display: flex; justify-content: space-between; gap: 30px; flex-wrap: wrap; align-items: flex-start; }
.footer__tag { color: var(--muted); max-width: 30ch; margin-top: 16px; }
.footer__links { display: flex; gap: 46px; flex-wrap: wrap; }
.footer__col h4 { font-family: var(--display); font-size: 0.82rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-bottom: 14px; }
.footer__col a { display: block; padding: 5px 0; opacity: 0.82; }
.footer__col a:hover { opacity: 1; color: var(--blue); }
.footer__bar { margin-top: 48px; padding-top: 22px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; color: var(--muted); font-size: 0.86rem; }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.08s; }
.reveal[data-delay="2"] { transition-delay: 0.16s; }
.reveal[data-delay="3"] { transition-delay: 0.24s; }

/* Custom cursor removed per request. */

/* Intro/loading screen removed per request. */

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .offer__grid, .andromeda__grid { grid-template-columns: 1fr; }
  .steps__grid, .get__grid { grid-template-columns: 1fr; }
  .grid-cards { grid-template-columns: repeat(2, 1fr); }
  .counter__tiles { grid-template-columns: repeat(5, 1fr); }
}
@media (max-width: 520px) {
  .grid-cards { grid-template-columns: 1fr 1fr; gap: 12px; }
  .hero__actions .btn { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
  .marquee__track { animation: none; }
}
