:root { --page-bg: #e6e8ee; }

body {
  background:
    radial-gradient(ellipse at 22% 15%, rgba(150,158,175,0.24) 0%, transparent 45%),
    radial-gradient(ellipse at 78% 18%, rgba(160,155,175,0.18) 0%, transparent 45%),
    radial-gradient(ellipse at 60% 85%, rgba(150,155,165,0.15) 0%, transparent 45%),
    radial-gradient(ellipse 85vw 85vh at 50% 45%, rgba(255,255,255,0.85) 0%, rgba(255,255,255,0.4) 30%, transparent 60%),
    radial-gradient(ellipse 65vw 55vh at 50% 45%, #fbfcfe 0%, #eef0f4 45%, #e6e8ee 80%, #e6e8ee 100%);
  background-attachment: fixed;
}

/* ══════════════ HERO ══════════════ */
.hero {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  z-index: 0;
  background: transparent;
}

/* White card that slides over the hero */
.ad-content-card {
  position: relative;
  z-index: 1;
  background: #fff;
  border-radius: 8px 8px 0 0;
  margin-top: -40px;
  box-shadow: 0 -4px 40px rgba(0,0,0,0.04);
}

.hero::before, .hero::after { content: none; }


.orbit { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; pointer-events: none; }
.orbit-track { position: relative; width: 100%; height: 100%; }
.orbit-item { position: absolute; top: 50%; left: 50%; will-change: transform, opacity; }
.orbit-item img { display: block; aspect-ratio: 4/5; object-fit: cover; border-radius: 4px; }

.hero-content {
  position: relative; z-index: 2;
  text-align: center; max-width: 440px; padding: 0 24px;
  display: flex; flex-direction: column; align-items: center;
  opacity: 0; transform: translateY(12px);
  animation: fadeUp 0.7s ease-out 0.4s forwards;
  margin-top: -58px;
}

@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }

.hero-label {
  font-size: 40px; font-weight: 400; letter-spacing: -0.03em; line-height: 1;
  background: linear-gradient(135deg, rgba(0,0,0,0.12) 0%, rgba(0,0,0,0.22) 30%, rgba(0,0,0,0.10) 50%, rgba(0,0,0,0.20) 70%, rgba(0,0,0,0.12) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-title { font-size: 40px; font-weight: 500; line-height: 1; letter-spacing: -0.03em; margin-bottom: 16px; }
.hero-body { font-size: 12px; font-weight: 400; line-height: 1.45; color: rgba(0,0,0,0.45); max-width: 340px; letter-spacing: -0.01em; margin-bottom: 28px; }

.hero-cta {
  display: inline-flex;
  align-items: center;
  height: 40px;
  padding: 0 22px;
  background: #000;
  color: #fff;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: -0.01em;
  text-decoration: none;
  transition: background 0.25s ease, transform 0.25s ease;
}
.hero-cta:hover {
  background: rgba(0, 0, 0, 0.6);
  transform: translateY(-1px);
}
.hero-cta:active {
  transform: translateY(0);
}

/* ══════════════ SHARED ══════════════ */
.s-section {
  width: 100%;
  padding: 100px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #fff;
}

.s-inner {
  max-width: 620px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.s-inner-wide { max-width: 840px; }
.s-inner-full { max-width: 960px; }

.s-eyebrow {
  font-size: 10px;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.4);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  line-height: 14px;
  margin-bottom: 16px;
  text-align: center;
}





/* Unified section headline */
.section-headline {
  font-size: clamp(22px, 2.8vw, 32px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #000;
  text-align: center;
  text-wrap: balance;
  max-width: 640px;
  margin: 0 auto 20px;
}

/* Shared shine — both .hl-full and .hl-muted animate in sync */
.hl-full, .hl-muted {
  background-size: 260% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  animation: hl-shimmer 9s ease-in-out infinite;
}

.hl-full {
  background-image: linear-gradient(
    100deg,
    #0a0a0a 0%,
    #0f0f0f 35%,
    #2e2e2e 50%,
    #0f0f0f 65%,
    #0a0a0a 100%
  );
}

.hl-muted {
  background-image: linear-gradient(
    100deg,
    rgba(0,0,0,0.3) 0%,
    rgba(0,0,0,0.3) 35%,
    rgba(0,0,0,0.18) 50%,
    rgba(0,0,0,0.3) 65%,
    rgba(0,0,0,0.3) 100%
  );
}

@keyframes hl-shimmer {
  0%   { background-position: 0% 50%; }
  13%  { background-position: 100% 50%; }
  50%  { background-position: 100% 50%; }
  63%  { background-position: 0% 50%; }
  100% { background-position: 0% 50%; }
}

@media (prefers-reduced-motion: reduce) {
  .hl-full, .hl-muted { animation: none; }
}

.s-body {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.45;
  color: rgba(0, 0, 0, 0.45);
  max-width: 440px;
  letter-spacing: -0.01em;
  text-wrap: balance;
}

.s-body-center { text-align: center; }

.s-cta-btn {
  display: inline-flex;
  align-items: center;
  height: 40px;
  padding: 0 22px;
  background: #000;
  color: #fff;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: -0.01em;
  text-decoration: none;
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.s-cta-btn:hover {
  background: rgba(0, 0, 0, 0.6);
  transform: translateY(-1px);
}
.s-cta-btn:active {
  transform: translateY(0);
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.65s ease, transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered inner reveal — elements marked .reveal-in inside a .reveal section
   fade + lift in sequence. JS assigns --stagger-i per element. */
.reveal-in {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.6s ease, transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: calc(var(--stagger-i, 0) * 70ms);
}
.reveal.revealed .reveal-in {
  opacity: 1;
  transform: translateY(0);
}

/* ══════════════ S1: FLYWHEEL ══════════════ */
/* ══════════════ INTRO STATEMENT ══════════════ */








.s-flywheel { padding-top: 130px; padding-bottom: 40px; }

/* Clover diagram — four overlapping circles */
/* ── Workflow flywheel — arc-segmented ring with stepping activation ── */
.wf-flywheel {
  position: relative;
  width: 420px;
  max-width: 100%;
  aspect-ratio: 1 / 1;
  margin: 8px auto 16px;
}

.wf-ring {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}

/* Center caption — appears only when Create is active */
.wf-center-caption {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1px;
  text-align: center;
  line-height: 1.25;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.85s cubic-bezier(0.4, 0, 0.2, 1);
}

.wf-center-eyebrow {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: rgba(0, 0, 0, 0.35);
}

.wf-center-name {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: rgba(0, 0, 0, 0.6);
}

.wf-flywheel.is-create-active .wf-center-caption {
  opacity: 1;
}

.wf-arc {
  stroke: rgba(0, 0, 0, 0.06);
  stroke-width: 4;
  fill: none;
  stroke-linecap: round;
  transition: stroke-width 0.5s ease, filter 0.5s ease;
}

.wf-arc.active {
  stroke-width: 7.5;
  filter: drop-shadow(0 0 8px rgba(132, 204, 22, 0.4));
}

/* Only the active arc swaps to its green gradient */
.wf-arc-top.active { stroke: url(#wfArcTopGrad); }
.wf-arc-right.active { stroke: url(#wfArcRightGrad); }
.wf-arc-bottom.active { stroke: url(#wfArcBottomGrad); }
.wf-arc-left.active { stroke: url(#wfArcLeftGrad); }

/* Sphere wrapper matches the ring radius so the dot travels on the stroke */
.wf-sphere {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 63.2%;
  height: 63.2%;
  pointer-events: none;
}

.wf-sphere-orbit {
  position: absolute;
  inset: 0;
  will-change: transform;
}

.wf-sphere-satellite {
  position: absolute;
  top: -7px;
  left: 50%;
  transform: translateX(-50%);
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow:
    0 2px 10px rgba(0, 0, 0, 0.18),
    0 0 16px rgba(255, 255, 255, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

/* Station pills — translucent blur matching the floating nav */
.wf-station {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px 8px 12px;
  background: rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1;
  white-space: nowrap;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
  transition: background 0.45s ease, color 0.45s ease, box-shadow 0.45s ease, transform 0.45s cubic-bezier(0.65, 0, 0.35, 1);
  transform-origin: center;
}

.wf-station-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  flex-shrink: 0;
  transition: background 0.45s ease, box-shadow 0.45s ease;
}

.wf-station.active {
  background: rgba(0, 0, 0, 0.4);
  color: #fff;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
}

.wf-station.active .wf-station-dot {
  background: #fff;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.65);
}

/* Station positions — centered on the arc ring at each cardinal. Active scales up. */
.wf-station-top { top: 18.4%;    left: 50%;    transform: translate(-50%, -50%) scale(1); }
.wf-station-top.active { transform: translate(-50%, -50%) scale(1.08); }

.wf-station-right { top: 50%;      right: 18.4%; transform: translate(50%, -50%) scale(1); }
.wf-station-right.active { transform: translate(50%, -50%) scale(1.08); }

.wf-station-bottom { bottom: 18.4%; left: 50%;    transform: translate(-50%, 50%) scale(1); }
.wf-station-bottom.active { transform: translate(-50%, 50%) scale(1.08); }

.wf-station-left { top: 50%;      left: 18.4%;  transform: translate(-50%, -50%) scale(1); }
.wf-station-left.active { transform: translate(-50%, -50%) scale(1.08); }

/* Create — "this is what I do". Brighter dot always + shimmery glow when active. */
.wf-station-right {
  background: rgba(0, 0, 0, 0.32);
  color: rgba(255, 255, 255, 0.88);
}
.wf-station-right .wf-station-dot {
  background: #fff;
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.55);
}

/* Shimmer overlay — subtle white sheen sweeping across the pill */
.wf-station-right::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    110deg,
    transparent 30%,
    rgba(255, 255, 255, 0.22) 50%,
    transparent 70%
  );
  background-size: 220% 100%;
  background-position: -120% 0%;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
}

/* Active Create: glow halo + animated shimmer */
.wf-station-right.active {
  box-shadow:
    0 10px 28px rgba(0, 0, 0, 0.22),
    0 0 24px rgba(255, 255, 255, 0.22);
}
.wf-station-right.active::after {
  opacity: 1;
  animation: wf-pill-shimmer 3.2s linear infinite;
}

@keyframes wf-pill-shimmer {
  0%   { background-position: -120% 0%; }
  100% { background-position: 220% 0%; }
}

@media (prefers-reduced-motion: reduce) {
  .wf-station-right.active::after { animation: none; opacity: 0; }
}

/* Credit pill — placed beneath the flywheel */

.s-flywheel .s-inner {
  position: relative;
}

@media (prefers-reduced-motion: reduce) {
  .wf-sphere-orbit, .wf-arc { transition: none; }
}













/* Active ring — Ad Studio */












/* Credit pill beneath the flywheel — matches floating nav style */










/* ══════════════ S3: PROCESS BREAKDOWN ══════════════ */
.s-flow {
  padding: 40px 20px 80px;
}

.s-flow .s-inner {
  max-width: none;
}

.process-box {
  width: 100%;
  background: #fafafa;
  border-radius: 8px;
  padding: 48px 40px 52px;
}

.process-eyebrow {
  text-align: left;
  margin-bottom: 10px;
}

.process-headline {
  text-align: left;
  margin: 0 0 40px;
  max-width: 480px;
  text-wrap: balance;
}

/* Per-step subtle loader — one bar per step, cycles to show progression */







@keyframes process-bar-fill {
  0%    { transform: scaleX(0); transform-origin: left; }
  11%   { transform: scaleX(1); transform-origin: left; }
  28%   { transform: scaleX(1); transform-origin: right; }
  36%   { transform: scaleX(0); transform-origin: right; }
  100%  { transform: scaleX(0); transform-origin: right; }
}



.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 300px));
  grid-template-rows: auto auto auto auto;
  column-gap: 72px;
  row-gap: 0;
  justify-content: center;
  align-items: start;
}

.process-step {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 4;
  row-gap: 0;
  background: transparent;
  border: none;
  padding: 0;
}

.process-step > .process-graphic {
  width: 260px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.process-step-num {
  display: block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.4);
  margin: 0 0 10px;
}



.process-step-title {
  font-size: 16px;
  font-weight: 400;
  color: #000;
  letter-spacing: -0.01em;
  line-height: 1.35;
  margin: 0 0 6px;
  text-align: left;
}

.process-step-body {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
  color: rgba(0, 0, 0, 0.4);
  letter-spacing: -0.01em;
  margin: 0;
  text-align: left;
}

/* ── Step 2 — Plain window: loading ring + pulsing status ── */
.graphic-mod.graphic-mod-work {
  align-self: stretch;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding: 24px;
  overflow: hidden;
}

.work-loader-wrap {
  width: 46%;
  max-width: 96px;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.work-loader {
  width: 100%;
  height: 100%;
  animation: work-loader-spin 4.2s linear infinite;
}

.work-loader-arc {
  filter: drop-shadow(0 0 5px rgba(34, 197, 94, 0.4));
}

@keyframes work-loader-spin {
  to { transform: rotate(360deg); }
}

.work-status-line {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.work-status-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.25);
  display: inline-block;
  animation: work-pulse 6.5s ease-in-out infinite;
}

.work-status-text {
  font-size: 10px;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.3);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  animation: work-pulse 6.5s ease-in-out infinite;
}

@keyframes work-pulse {
  0%, 100% { opacity: 0; }
  50%      { opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .work-loader { animation: none; }
  .work-status-dot, .work-status-text { animation: none; opacity: 0.7; }
}

/* ── Step 3 — Finder-style window with 8 thumbnails ── */
/* .process-graphic-finder inherits sizing/flex from .process-graphic — matches Step 1 */
.graphic-mod.graphic-mod-finder {
  align-self: stretch;
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 0;
  overflow: hidden;
}

/* Finder window — reuses the Step 1 .form-head chrome, with 3 traffic-light dots in place of the single dot */
.finder-dots {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}

.finder-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.finder-dot-red { background: #ff5f57; }
.finder-dot-yellow { background: #febc2e; }
.finder-dot-green { background: #28c840; }

.finder-grid {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 8px 4px;
  padding: 14px 10px 12px;
  align-items: end;
  justify-items: center;
}

.finder-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  width: 100%;
}

.finder-icon {
  width: 78%;
  max-width: 40px;
  border-radius: 4px;
  overflow: hidden;
  background-color: #f2f3f5;
  background-image: url('process-step-3-sprite.webp');
  background-repeat: no-repeat;
  box-shadow: 0 2px 5px rgba(20, 30, 50, 0.08);
}

/* Sprite is 960×667: 4 portrait cells (240×427) on top, 4 square cells (240×240) below */
.finder-icon-portrait { aspect-ratio: 9 / 16; background-size: 400% 156.2%; }
.finder-icon-square { aspect-ratio: 1 / 1;  background-size: 400% 277.9%; }

.finder-icon-a1 { background-position: 0%      0%; }
.finder-icon-a2 { background-position: 33.333% 0%; }
.finder-icon-a3 { background-position: 66.666% 0%; }
.finder-icon-a4 { background-position: 100%    0%; }
.finder-icon-b1 { background-position: 0%      100%; }
.finder-icon-b2 { background-position: 33.333% 100%; }
.finder-icon-b3 { background-position: 66.666% 100%; }
.finder-icon-b4 { background-position: 100%    100%; }

.finder-label {
  font-size: 8px;
  font-weight: 600;
  color: #2e2e3c;
  letter-spacing: -0.01em;
  text-align: center;
  line-height: 1.2;
}

/* Per-icon muted gradients — neutral, site-vibe */











/* Bento grid */


































/* Brief card */

















/* Engine — canvas particle system */










/* Stacked assets */


















/* ══════════════ S3: WORKSPACE — Split layout ══════════════ */
.s-workspace { padding-top: 80px; padding-bottom: 80px; }










.split-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
  margin-top: 24px;
}

.workspace-visual {
  width: 100%;
  max-width: 880px;
  margin: 48px auto 0;
}

/* ══════════════ ClickUp-style workspace mock ══════════════ */
.cu-interface {
  background: #ffffff;
  color: #2e2e3c;
  font-family: 'Inter', 'SF Pro Text', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 12px;
  -webkit-font-smoothing: antialiased;
}

/* Breadcrumb */
.cu-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-bottom: 1px solid #eceff3;
}

.cu-crumb {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #2e2e3c;
  font-weight: 500;
  font-size: 12px;
}

.cu-badge {
  width: 16px;
  height: 16px;
  border-radius: 3px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, #5b5fd1 0%, #7c4dff 100%);
  line-height: 1;
  flex-shrink: 0;
}

.cu-badge-workspace {
  background: linear-gradient(135deg, #10b981 0%, #06b6d4 100%);
}



.cu-chevron {
  color: #a4a9b5;
  margin-left: 2px;
}

.cu-crumb-sep {
  color: #c7cad0;
  font-weight: 400;
}

.cu-star {
  color: #c7cad0;
  margin-left: 4px;
}

/* Tabs */
.cu-tabs {
  display: flex;
  align-items: center;
  padding: 0 16px;
  border-bottom: 1px solid #eceff3;
  gap: 4px;
  overflow: hidden;
}

.cu-tab {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 12px;
  font-size: 12px;
  font-weight: 500;
  color: #6c7081;
  background: transparent;
  border: none;
  cursor: default;
  position: relative;
  font-family: inherit;
  white-space: nowrap;
  letter-spacing: -0.005em;
}

.cu-tab-icon {
  color: #a4a9b5;
}

.cu-tab-icon-ink {
  color: #4f8cff;
}

.cu-tab-active {
  color: #2e2e3c;
  font-weight: 600;
}

.cu-tab-active::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 8px;
  right: 8px;
  height: 2px;
  background: #2e2e3c;
  border-radius: 1px;
}

.cu-tab-active .cu-tab-icon {
  color: #2e2e3c;
}





/* Kanban board */
.cu-board {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 12px;
  background: #fafbfc;
  max-height: 420px;
  overflow: hidden;
  position: relative;
}

.cu-col {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}

.cu-col-head {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 4px 9px 4px 8px;
  border-radius: 5px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #5f6472;
  background: #eef0f4;
  align-self: flex-start;
  margin-bottom: 2px;
}

.cu-col:nth-child(2) .cu-col-head {
  background: rgba(40, 97, 232, 0.1);
  color: #2861e8;
}

.cu-col:nth-child(3) .cu-col-head {
  background: rgba(24, 143, 74, 0.1);
  color: #188f4a;
}

.cu-col-icon {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.cu-col-icon-queue {
  background: #fff;
  border: 1.2px dashed #a4a9b5;
}

.cu-col-icon-progress {
  background: conic-gradient(#2861e8 0deg 180deg, transparent 180deg 360deg);
  border: 1.2px solid #2861e8;
}

.cu-col-icon-done {
  background: #17a94b;
}

.cu-col-count {
  margin-left: auto;
  color: inherit;
  font-weight: 700;
}

.cu-col-name {
  letter-spacing: 0.1em;
}

/* Tasks */
.cu-task {
  background: #fff;
  border-radius: 6px;
  padding: 10px 11px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  box-shadow: 0 1px 2px rgba(20, 30, 50, 0.05), 0 0 0 1px rgba(20, 30, 50, 0.04);
}

.cu-task-title {
  font-size: 13px;
  font-weight: 500;
  color: #2e2e3c;
  line-height: 1.35;
  letter-spacing: -0.005em;
}

.cu-task-thumb {
  width: 100%;
  aspect-ratio: 5 / 1;
  border-radius: 4px;
  background-size: cover;
  background-position: center;
  margin-bottom: 2px;
  background-color: #f4f6f8;
}

.cu-task-thumb-a { background-image: url('images/workspace-ad-1.webp'); }
.cu-task-thumb-b { background-image: url('images/workspace-ad-2.webp'); }
.cu-task-thumb-c { background-image: url('images/workspace-ad-3.webp'); }

.cu-task-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 2px;
}

.cu-field-icon {
  width: 12px;
  height: 10px;
  border: 1.2px solid #d1d5de;
  border-radius: 2px;
  background: transparent;
  flex-shrink: 0;
  position: relative;
}

.cu-field-icon::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 2px;
  right: 2px;
  height: 1px;
  background: #d1d5de;
}

/* Status pills — colour palette matches ClickUp's defaults */
.cu-status {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.2;
}

/* Solid pills — white text */
.cu-status-progress { background: #2563eb; color: #fff; }
.cu-status-feedback { background: #ea8014; color: #fff; }
.cu-status-done { background: #29c560; color: #fff; }


/* Outlined pills — dark text on white */
.cu-status-queued {
  background: #fff;
  color: #2e2e3c;
  border: 1px solid #d6d9e0;
  padding: 2px 7px;
}

/* Design round secondary label */
.cu-status-round {
  background: #fff;
  color: #6c7081;
  border: 1px solid #d6d9e0;
  padding: 2px 7px;
  font-weight: 500;
}



/* Add task row */


/* Fade-out at bottom of Complete column to hint more content */
.cu-board::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 80px;
  background: linear-gradient(to bottom, rgba(250, 251, 252, 0), rgba(250, 251, 252, 1));
  pointer-events: none;
}

/* ── Process graphic — FIXED 260×260 design (never scales, never reflows) ── */
.process-graphic {
  width: 260px;
  height: 260px;
  background: transparent;
  padding: 0;
  position: relative;
  box-sizing: border-box;
  font-family: 'Inter', 'SF Pro Text', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  user-select: none;
  -webkit-user-select: none;
  pointer-events: none;
  cursor: default;
  flex-shrink: 0;
}

.process-graphic img {
  -webkit-user-drag: none;
  user-drag: none;
}

.process-graphic > .graphic-mod {
  position: relative;
  width: 260px;
  height: 260px;
  flex: none;
  align-self: auto;
  min-height: 0;
  box-sizing: border-box;
}

.graphic-mod {
  background: #fff;
  border-radius: 8px;
  padding: 10px 13px;
  box-shadow:
    0 6px 18px rgba(20, 30, 50, 0.08),
    0 1px 3px rgba(20, 30, 50, 0.04),
    0 0 0 1px rgba(20, 30, 50, 0.035);
  position: relative;
}

.graphic-mod-form {
  align-self: stretch;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 0;
  z-index: 2;
  overflow: hidden;
}

.form-head {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 11px;
  border-bottom: 1px solid rgba(20, 30, 50, 0.06);
  background: #fbfbfc;
}

.form-head-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 6px rgba(34, 197, 94, 0.5);
  flex-shrink: 0;
}

.form-head-title {
  font-size: 11px;
  font-weight: 600;
  color: #2e2e3c;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.graphic-mod-form > .form-row {
  padding: 0 11px;
}
.graphic-mod-form > .form-row:last-of-type {
  padding-bottom: 4px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.form-label {
  font-size: 9.5px;
  font-weight: 600;
  color: #2e2e3c;
  letter-spacing: -0.01em;
  line-height: 1.2;
}





.form-input, .form-textarea {
  font-size: 9px;
  font-weight: 400;
  color: #a0a3b1;
  padding: 5px 7px;
  border: 1px solid #e1e4eb;
  border-radius: 4px;
  background: #fff;
  letter-spacing: -0.005em;
  line-height: 1.3;
}

.form-textarea {
  color: #3a3d4a;
  min-height: 20px;
  padding-bottom: 7px;
}

.form-upload {
  font-size: 9px;
  font-weight: 400;
  color: #8a8e9c;
  padding: 6px 9px;
  border: 1px dashed #c7cad0;
  border-radius: 4px;
  background: #fcfcfd;
  letter-spacing: -0.005em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.form-upload svg {
  color: #2861e8;
  flex-shrink: 0;
}

.form-footer {
  display: flex;
  padding: 0 11px 11px;
  border-top: none;
  margin-top: auto;
}

.graphic-mod-cta {
  flex: 1;
  background: #5b5fd1;
  color: #fff;
  font-weight: 600;
  font-size: 10px;
  padding: 7px 12px;
  border-radius: 4px;
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  box-shadow: 0 2px 6px rgba(91, 95, 209, 0.25);
}

.graphic-mod-cta svg {
  color: #fff;
  opacity: 0.9;
}

.split-pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  background: rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 8px;
  font-size: 11px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92);
  letter-spacing: -0.01em;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
}









.ws-mock-scaler {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.ws-mock {
  width: 880px;
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 12px;
  overflow: hidden;
  box-shadow:
    0 16px 60px rgba(0,0,0,0.06),
    0 4px 16px rgba(0,0,0,0.03);
  transform-origin: top left;
  transform: scale(var(--ws-scale, 1));
}

.ws-chrome {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-bottom: 1px solid rgba(0,0,0,0.04);
}

.ws-dots { display: flex; gap: 5px; }

.ws-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(0,0,0,0.06);
}

.ws-chrome-title {
  font-size: 10px;
  font-weight: 400;
  color: rgba(0,0,0,0.2);
}






























/* ══════════════ S4: ENHANCE ══════════════ */
.s-enhance {
  padding: 80px 40px 100px;
}

.enhance-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Dots — JS-driven bounce: left→right then right→left */


.ed {
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 2px;
  background: #000;
  will-change: width, opacity;
}

/* Heading */


/* Body — 12px, 30% opacity, 270px wide */


/* Card area */
.enhance-card-area {
  margin-top: 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.ep-disclaimer {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: -0.01em;
  color: rgba(0, 0, 0, 0.18);
  max-width: 440px;
  margin: 48px auto 0;
  text-align: center;
  text-wrap: balance;
}

/* Flip card — 325 × 392 (aspect ~0.83) matching Figma */
.ep-flip-wrap {
  width: 325px;
  height: 392px;
  perspective: 1150px;
  position: relative;
}

.ep-flip {
  width: 100%; height: 100%;
  position: relative;
  transform-style: preserve-3d;
}

.ep-flip-face {
  position: absolute; inset: 0;
  backface-visibility: hidden;
  border-radius: 2px;
  overflow: visible;
  transform-style: preserve-3d;
}

.ep-flip-face .ep-img {
  width: 100%; height: 100%;
  aspect-ratio: auto;
  border-radius: 2px;
  overflow: hidden;
}

.ep-flip-back { transform: rotateY(180deg); }

.ep-img {
  border-radius: 2px;
  overflow: hidden;
}

.ep-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

/* Original asset: product on a neutral light grey ground, centered with breathing room */
.ep-before {
  background: #ececee;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ep-before img {
  width: 72%;
  height: auto;
  max-height: 84%;
  object-fit: contain;
}

.ep-after { }

/* Flip is JS-driven — no CSS keyframes needed. */

/* Floating glass label — frosted blur pill, lifted off the card as a separate layer */
.ep-face-label {
  position: absolute;
  top: 20px;
  right: -20px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 24px;
  padding: 0 12px;
  background: rgba(80,80,80,0.3);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 5px;
  font-size: 11px;
  font-weight: 400;
  color: rgba(255,255,255,0.92);
  letter-spacing: 0;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12), 0 1px 3px rgba(0,0,0,0.08);
  transform: translateZ(30px);
  backface-visibility: hidden;
}


/* ══════════════ S5: BREAKER ══════════════ */










/* ══════════════ S6: FAQ ══════════════ */
.s-faq {
  padding-top: 80px;
  padding-bottom: 40px;
}


.faq-list { width: 100%; max-width: 540px; }

.faq-item { border-top: 1px solid rgba(0,0,0,0.05); }
.faq-item:last-child { border-bottom: 1px solid rgba(0,0,0,0.05); }

.faq-item summary {
  display: flex; align-items: center; justify-content: space-between;
  cursor: pointer; padding: 14px 0;
  font-size: 12px; font-weight: 500; color: rgba(0,0,0,0.55);
  letter-spacing: -0.01em; list-style: none; user-select: none;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '+'; font-size: 16px; font-weight: 300;
  color: rgba(0,0,0,0.15); margin-left: 16px; flex-shrink: 0;
  display: inline-block;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item[open] summary::after {
  content: '\2212';
  transform: rotate(180deg);
}

.faq-body {
  display: grid; grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item[open] .faq-body { grid-template-rows: 1fr; }
.faq-body-inner { overflow: hidden; }

.faq-body-inner p {
  font-size: 12px; font-weight: 400; line-height: 1.6;
  color: rgba(0,0,0,0.35); padding-bottom: 14px; max-width: 440px;
}

/* ══════════════ FAQ — natural flow, continues the white card ══════════════ */
.ad-faq-wrap {
  position: relative;
  z-index: 1;
  background: #fff;
}

.ad-faq-wrap .s-faq {
  background: #fff;
}

/* ══════════════ CLOSING — plain white ══════════════ */
.ad-closing-card {
  position: relative;
  z-index: 1;
  min-height: auto;
  display: flex;
  flex-direction: column;
  background: #fff;
}

.s-closing {
  padding: 140px 40px 140px;
  background: none;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.s-closing .s-body {
  margin-bottom: 36px;
}



/* Footer inside the closing card — sits at bottom */
.ad-closing-card .footer {
  margin-top: 0;
  background: none;
  flex-shrink: 0;
}

.ad-closing-card .footer .footer-left p, .ad-closing-card .footer .footer-col a {
  color: rgba(0,0,0,0.5);
}

.ad-closing-card .footer .footer-col a:hover {
  color: rgba(0,0,0,0.75);
}

/* ══════════════ RESPONSIVE ══════════════ */
@media (max-width: 768px) {
  /* ── Brighter hero background on mobile only ── */
  body {
    background:
      radial-gradient(ellipse at 22% 12%, rgba(150,158,175,0.18) 0%, transparent 50%),
      radial-gradient(ellipse at 78% 22%, rgba(160,155,175,0.14) 0%, transparent 50%),
      radial-gradient(ellipse 100vw 70vh at 50% 30%, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.55) 35%, transparent 70%),
      linear-gradient(180deg, #f6f7fb 0%, #ecedf2 100%);
  }

  /* ── Hero: title at top with equal padding around it, then a flat orbit, then body + CTA ── */
  .hero {
    position: relative;
    top: auto;
    height: auto;
    min-height: calc(100vh - 58px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 100px 14px 100px;
    overflow: hidden;
  }
  .hero-content {
    display: contents;
    animation: none;
  }
  .hero-label, .hero-title, .hero-body, .hero-cta {
    opacity: 0;
    transform: translateY(10px);
    animation: fadeUp 0.7s ease-out forwards;
  }
  /* Welcome to (already a soft metallic gradient via base styles) */
  .hero-label {
    order: 1;
    font-size: 46px;
    font-weight: 400;
    line-height: 0.95;
    letter-spacing: -0.03em;
    margin: 0;
    animation-delay: 0.1s;
  }
  /* Ad Studio — same metallic gradient as "Welcome to" but pulled much darker */
  .hero-title {
    order: 2;
    font-size: 46px;
    font-weight: 500;
    line-height: 0.95;
    letter-spacing: -0.03em;
    margin: 0;
    animation-delay: 0.18s;
    background: linear-gradient(135deg,
      rgba(0,0,0,0.78) 0%,
      rgba(0,0,0,1)    30%,
      rgba(0,0,0,0.72) 50%,
      rgba(0,0,0,0.95) 70%,
      rgba(0,0,0,0.82) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
  }
  /* Flat orbit sits beneath the title — equal padding above and below */
  .orbit {
    order: 3;
    position: relative;
    inset: auto;
    width: 100%;
    height: clamp(220px, 30vh, 280px);
    margin: 100px 0 100px;
  }
  .orbit-track { width: 100%; height: 100%; }
  .hero-body {
    order: 4;
    max-width: 340px;
    font-size: 14px;
    margin: 0;
    animation-delay: 0.36s;
  }
  .hero-cta {
    order: 5;
    margin: 28px 0 0;
    animation-delay: 0.5s;
  }

  /* More breathing room on the closing "Get in touch" section */
  .s-closing {
    padding: 140px 20px 140px;
  }

  /* More breathing room on the closing "Get in touch" section */
  .s-closing {
    padding: 140px 20px 140px;
  }

  /* ── Tight section spacing ── */
  .s-section { padding: 72px 20px; }
  .s-flywheel { padding-top: 72px; padding-bottom: 16px; }
  .s-flow { padding: 16px 20px 72px; }
  .s-workspace { padding: 72px 20px 56px; }
  .s-enhance { padding: 72px 20px 80px; }
  .s-faq { padding-top: 0; padding-bottom: 0; }
  .s-faq .s-inner { padding: 40px 0 0; }
  /* (s-closing padding lives in the hero block above) */

  /* ── Mobile typography ── */
  /* Section headlines (e.g. "Get in touch", "Breathe new life into your assets") */
  .section-headline {
    font-size: 30px;
    line-height: 1.1;
  }
  /* All body copy on Ad Studio uses one consistent size on mobile */
  .s-body { font-size: 14px; line-height: 1.5; }
  .process-step-title { font-size: 21px; }
  .process-step-body { font-size: 14px; line-height: 1.5; }

  /* FAQ — bigger titles + answers, with matching breathing padding */
  .faq-item summary {
    font-size: 15px;
    padding: 18px 0;
  }
  .faq-body-inner p {
    font-size: 14px;
    padding-bottom: 18px;
    line-height: 1.6;
  }

  /* ── Workflow flywheel tightening ── */
  .wf-flywheel { width: 100%; max-width: 420px; }
  .wf-sphere-satellite { width: 10px; height: 10px; top: -5px; }
  .wf-station { font-size: 11px; padding: 6px 10px 6px 9px; }
  .wf-station-dot { width: 4px; height: 4px; }
  .wf-arc { stroke-width: 1.2; }
  .wf-arc.active { stroke-width: 2.5; }

  /* ── Bento ── */
  
  

  /* ── Process: single column — text above graphic, hairlines between steps ── */
  .process-box { padding: 32px 20px 16px; border-radius: 8px; }
  .process-grid {
    display: block;
    grid-template-columns: none;
    grid-template-rows: none;
    max-width: 320px;
    margin: 0 auto;
    column-gap: 0;
    row-gap: 0;
  }
  .process-step {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    text-align: left;
    grid-row: auto;
    grid-template-rows: none;
    max-width: none;
    padding: 48px 0 48px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    border-bottom: none;
  }
  .process-step:last-child { padding-bottom: 24px; }
  .process-step-num { order: 1; margin: 0 0 10px; text-align: left; }
  .process-step-title { order: 2; margin: 0 0 8px; text-align: left; }
  .process-step-body { order: 3; margin: 0 0 28px; max-width: 340px; text-align: left; }
  /* Graphic stays centred while the text sits flush left */
  .process-step > .process-graphic {
    order: 4;
    margin: 0 auto;
  }
  
  .process-headline { margin-bottom: 24px; }

  /* ── Workspace: ClickUp mock stays locked; JS scales it to fit narrower viewports ── */
  .workspace-visual {
    width: 100%;
    margin: 32px 0 0;
  }
  .cu-board { grid-template-columns: repeat(3, 1fr); max-height: 380px; }
  .cu-tabs { overflow: hidden; }
  .cu-board::after { display: block; }

  /* ── Enhance ── */
  .ep-flip-wrap { width: 280px; height: 338px; }
  .ep-face-label { right: -8px; top: 16px; }

  /* ── Breaker ── */
  

  /* ── Workspace pills: force 2x2 on mobile so none stand alone ── */
  .split-pills {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
  }
  .split-pill {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}



@media (min-width: 1400px) {
  .hero-label, .hero-title { font-size: 48px; }
  
  
  
  
  
}

@media (prefers-reduced-motion: reduce) {
  .reveal { transition: none; opacity: 1; transform: none; }
  .reveal-in { transition: none; opacity: 1; transform: none; }
  .hero-content { animation: none; opacity: 1; transform: none; }
  .orbit { display: none; }
  
  .faq-body { transition: none; }
}
