/* ========================================================================
   Rokudan SaaS — Marketing (Landing)
   ======================================================================== */

.marketing {
  background: var(--cream);
  position: relative;
}

/* —— Top nav —— */
.nav {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(250, 246, 232, 0.84);
  backdrop-filter: saturate(160%) blur(18px);
  -webkit-backdrop-filter: saturate(160%) blur(18px);
  border-bottom: 1px solid var(--line-2);
}
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--sp-7);
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-6);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: var(--sp-7);
}
.nav-links a {
  font-size: var(--fs-sm);
  color: var(--ink-2);
  font-weight: 500;
  letter-spacing: -0.01em;
}
.nav-links a:hover { color: var(--violet); }
.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}

/* —— Hero —— */
.hero {
  padding: clamp(80px, 12vw, 160px) var(--sp-7) clamp(60px, 8vw, 110px);
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 10%, rgba(119, 71, 255, 0.18), transparent 50%),
    radial-gradient(circle at 12% 75%, rgba(119, 71, 255, 0.06), transparent 45%);
  pointer-events: none;
  z-index: 0;
}
.hero-inner {
  max-width: var(--container);
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(40px, 6vw, 88px);
  align-items: center;
}
.hero-eyebrow {
  margin-bottom: var(--sp-6);
}
.hero h1 {
  font-size: clamp(48px, 7vw, 92px);
  line-height: 0.96;
  letter-spacing: -0.04em;
  margin-bottom: var(--sp-6);
}
.hero h1 em {
  font-style: italic;
  font-weight: 300;
  color: var(--violet);
}
.hero p.lead {
  font-size: clamp(16px, 1.4vw, 19px);
  color: var(--ink-2);
  line-height: 1.55;
  max-width: 540px;
  margin-bottom: var(--sp-7);
}
.hero-cta {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  margin-bottom: var(--sp-8);
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
  border-top: 1px solid var(--line);
  padding-top: var(--sp-6);
  max-width: 540px;
}
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 6px;
}
.hero-stat-lbl {
  font-size: var(--fs-xs);
  color: var(--mute);
  letter-spacing: -0.01em;
}

/* —— Hero mockup —— */
.hero-mockup {
  position: relative;
  height: 580px;
}
.mockup-card {
  position: absolute;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.mockup-1 {
  top: 0; left: 0;
  width: 92%;
  height: 460px;
  transform: rotate(-1.2deg);
}
.mockup-2 {
  bottom: 0; right: 0;
  width: 64%;
  background: var(--ink);
  color: var(--cream);
  padding: var(--sp-5);
  transform: rotate(2.5deg);
  z-index: 2;
}
.mockup-tile {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}
.mockup-2 .tile-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: var(--fs-xs);
  color: rgba(255, 251, 236, 0.55);
  font-family: var(--font-mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.mockup-2 .tile-value {
  font-family: var(--font-display);
  font-size: 38px;
  letter-spacing: -0.03em;
}
.mockup-2 .tile-trend {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: var(--fs-xs);
  color: #92E5A8;
  font-family: var(--font-mono);
}
.mockup-2 .tile-bars {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 48px;
  margin-top: var(--sp-3);
}
.mockup-2 .tile-bars > div {
  flex: 1;
  background: rgba(255, 251, 236, 0.18);
  border-radius: 2px;
}
.mockup-2 .tile-bars > div.hi { background: var(--violet); }

/* mockup-1 content */
.mc-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--sp-4) var(--sp-5);
  border-bottom: 1px solid var(--line);
}
.mc-tabs {
  display: flex;
  gap: var(--sp-2);
}
.mc-tab {
  padding: 6px 12px;
  font-size: 11px;
  border-radius: var(--r-pill);
  background: var(--cream-2);
  color: var(--mute);
  font-weight: 500;
}
.mc-tab.active { background: var(--ink); color: #fff; }
.mc-dots {
  display: flex;
  gap: 6px;
}
.mc-dots > i { width: 8px; height: 8px; border-radius: 50%; background: var(--line); }
.mc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: var(--sp-3);
  padding: var(--sp-5);
}
.mc-item {
  aspect-ratio: 1;
  border-radius: var(--r-md);
  background: linear-gradient(160deg, var(--cream-2), var(--paper));
  border: 1px solid var(--line);
  padding: var(--sp-3);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}
.mc-item.featured {
  background: linear-gradient(160deg, var(--violet) 0%, #B095FF 100%);
  color: #fff;
  border: 0;
}
.mc-item.dark {
  background: var(--ink);
  color: var(--cream);
  border: 0;
}
.mc-item-icon {
  width: 26px; height: 26px;
  border-radius: var(--r-sm);
  background: rgba(0, 0, 0, 0.08);
  display: grid;
  place-items: center;
}
.mc-item.featured .mc-item-icon,
.mc-item.dark .mc-item-icon { background: rgba(255, 255, 255, 0.18); }
.mc-item-name {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.mc-item-credits {
  display: flex;
  align-items: baseline;
  gap: 4px;
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 600;
}
.mc-item-credits small {
  font-size: 9px;
  opacity: 0.7;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* —— Section common —— */
.section {
  padding: clamp(80px, 10vw, 140px) var(--sp-7);
  position: relative;
}
.section-inner {
  max-width: var(--container);
  margin: 0 auto;
}
.section-head {
  margin-bottom: var(--sp-10);
  max-width: 720px;
}
.section-head .eyebrow { margin-bottom: var(--sp-5); }
.section-head h2 {
  font-size: clamp(36px, 4.8vw, 64px);
  line-height: 1;
  letter-spacing: -0.035em;
}
.section-head h2 em {
  font-style: italic;
  color: var(--violet);
  font-weight: 300;
}
.section-head p {
  margin-top: var(--sp-5);
  font-size: var(--fs-md);
  color: var(--ink-2);
  line-height: 1.55;
  max-width: 600px;
}

/* —— Concept (3 cards) —— */
.concept-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
}
.concept-card {
  padding: var(--sp-7);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
  min-height: 360px;
  position: relative;
}
.concept-num {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--mute-2);
  letter-spacing: -0.02em;
}
.concept-card h3 {
  font-size: 26px;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-top: auto;
}
.concept-card p {
  font-size: var(--fs-base);
  color: var(--mute);
  line-height: 1.55;
}

/* —— Économie : tableau de crédits visual —— */
.economy {
  background: var(--ink);
  color: var(--cream);
  border-radius: var(--r-3xl);
  padding: clamp(60px, 7vw, 100px) clamp(40px, 5vw, 80px);
  position: relative;
  overflow: hidden;
}
.economy::before {
  content: "";
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(119, 71, 255, 0.25), transparent 65%);
  pointer-events: none;
}
.economy .section-head { color: var(--cream); }
.economy .section-head h2 { color: var(--cream); }
.economy .section-head h2 em { color: #B095FF; }
.economy .section-head p { color: rgba(255, 251, 236, 0.7); }
.economy .eyebrow { color: rgba(255, 251, 236, 0.55); }

.economy-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: start;
}
.economy-rows {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.economy-row {
  display: grid;
  grid-template-columns: 32px 1fr auto;
  align-items: center;
  gap: var(--sp-4);
  padding: var(--sp-4) var(--sp-5);
  border-bottom: 1px solid rgba(255, 251, 236, 0.08);
  font-size: var(--fs-md);
}
.economy-row:first-child {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 251, 236, 0.60);
  font-weight: 500;
  padding: var(--sp-3) var(--sp-5);
}
.economy-row .row-icon {
  width: 28px; height: 28px;
  border-radius: var(--r-sm);
  background: rgba(255, 251, 236, 0.06);
  display: grid;
  place-items: center;
}
.economy-row .row-icon svg { width: 14px; height: 14px; }
.economy-row .row-credits {
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
  font-size: var(--fs-md);
  color: var(--violet);
  font-weight: 500;
}

/* —— Pricing —— */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-4);
}
.pricing-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: var(--sp-7);
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
  position: relative;
}
.pricing-card.featured {
  background: var(--ink);
  color: var(--cream);
  border: 0;
  transform: translateY(-12px);
}
.pricing-card .price-name {
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: -0.02em;
}
.pricing-card .price-tag {
  display: flex;
  align-items: baseline;
  gap: var(--sp-2);
}
.pricing-card .price-tag .num {
  font-family: var(--font-display);
  font-size: 44px;
  letter-spacing: -0.03em;
  line-height: 1;
}
.pricing-card .price-tag .per {
  font-size: var(--fs-sm);
  color: var(--mute);
}
.pricing-card.featured .price-tag .per { color: rgba(255, 251, 236, 0.55); }
.pricing-card .credits-line {
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--mute);
  padding: var(--sp-3) 0;
  border-top: 1px dashed var(--line);
  border-bottom: 1px dashed var(--line);
}
.pricing-card.featured .credits-line {
  color: rgba(255, 251, 236, 0.7);
  border-color: rgba(255, 251, 236, 0.60);
}
.pricing-card .credits-num {
  color: var(--violet);
  font-weight: 600;
  font-size: var(--fs-base);
}
.pricing-card.featured .credits-num { color: #B095FF; }
.pricing-features {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: var(--fs-sm);
  color: var(--ink-2);
}
.pricing-card.featured .pricing-features { color: rgba(255, 251, 236, 0.85); }
.pricing-features li {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
}
.pricing-features li::before {
  content: "→";
  font-family: var(--font-mono);
  color: var(--violet);
  font-size: 11px;
}
.pricing-card .pricing-cta {
  margin-top: auto;
}
.price-badge {
  position: absolute;
  top: var(--sp-4);
  right: var(--sp-4);
  background: var(--violet);
  color: #fff;
  font-size: 10px;
  padding: 4px 8px;
  border-radius: var(--r-pill);
  font-family: var(--font-mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* —— Workflow —— */
.workflow {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--sp-4);
  counter-reset: step;
}
.workflow-step {
  padding: var(--sp-5);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  position: relative;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}
.workflow-step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  color: var(--violet);
  letter-spacing: 0.06em;
}
.workflow-step h4 {
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-top: var(--sp-2);
}
.workflow-step p {
  font-size: var(--fs-sm);
  color: var(--mute);
  line-height: 1.5;
  margin-top: auto;
}

/* —— Features grid —— */
.feats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-4);
}
.feat {
  padding: var(--sp-6);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  min-height: 240px;
}
.feat-icon {
  width: 40px; height: 40px;
  border-radius: var(--r-md);
  background: var(--cream-2);
  display: grid;
  place-items: center;
}
.feat-icon svg { width: 18px; height: 18px; color: var(--ink); }
.feat h4 {
  font-size: 17px;
  font-family: var(--font-sans);
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.25;
  margin-top: auto;
}
.feat p {
  font-size: var(--fs-sm);
  color: var(--mute);
  line-height: 1.55;
}

/* —— Catalog preview —— */
.catalog-cats { margin-bottom: var(--sp-7); }

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-4);
}

/* —— Showcase bento (refonte aperçu catalogue) —— */
.showcase {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: var(--sp-4);
}
.sc-card {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--paper);
  cursor: pointer;
  transition: transform var(--t-base) var(--ease-out), box-shadow var(--t-base) var(--ease-out);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.sc-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.sc-card .sc-visual {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.sc-card .sc-body {
  position: relative;
  z-index: 2;
  padding: var(--sp-5);
}
.sc-card .sc-cat {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 9px;
  border-radius: var(--r-pill);
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  margin-bottom: var(--sp-3);
  backdrop-filter: blur(6px);
}
.sc-card .sc-name {
  font-family: var(--font-display);
  font-size: 21px;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--ink);
}
.sc-card .sc-meta {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  margin-top: var(--sp-2);
}
.sc-card .sc-cost {
  font-family: var(--font-mono);
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--violet);
}
.sc-card .sc-cost small {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--mute);
}
.sc-card .sc-delay {
  font-size: 11px;
  color: var(--mute);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.sc-card .sc-arrow {
  position: absolute;
  top: var(--sp-4);
  right: var(--sp-4);
  z-index: 3;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  display: grid;
  place-items: center;
  opacity: 0;
  transform: scale(0.8) rotate(-30deg);
  transition: all var(--t-base) var(--ease-spring);
}
.sc-card:hover .sc-arrow {
  opacity: 1;
  transform: scale(1) rotate(0);
}
.sc-card .sc-arrow svg { width: 14px; height: 14px; color: var(--ink); }

/* Spans */
.sc-card.span-2x2 { grid-column: span 2; grid-row: span 2; }
.sc-card.span-2w  { grid-column: span 2; }
.sc-card.span-2h  { grid-row: span 2; }

/* Dark variant */
.sc-card.dark { background: var(--ink); border: 0; }
.sc-card.dark .sc-name { color: var(--cream); }
.sc-card.dark .sc-delay { color: rgba(255, 251, 236, 0.55); }
.sc-card.dark .sc-cost small { color: rgba(255, 251, 236, 0.65); }
.sc-card.dark .sc-cost { color: #B095FF; }

/* Violet variant */
.sc-card.violet { background: var(--violet); border: 0; }
.sc-card.violet .sc-name { color: #fff; }
.sc-card.violet .sc-cat { background: rgba(255, 255, 255, 0.95); }
.sc-card.violet .sc-cost { color: #fff; }
.sc-card.violet .sc-cost small,
.sc-card.violet .sc-delay { color: rgba(255, 255, 255, 0.7); }

/* —— Mockups inside showcase visuals —— */
/* Video showcase */
.sc-video {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 70% 25%, rgba(119, 71, 255, 0.5), transparent 55%),
    linear-gradient(160deg, #15131F 0%, #0A0A0A 100%);
}
.sc-video::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 38px, rgba(255,255,255,0.025) 38px, rgba(255,255,255,0.025) 39px);
}
.sc-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 72px; height: 72px;
  border-radius: 50%;
  background: rgba(255, 251, 236, 0.95);
  display: grid;
  place-items: center;
  box-shadow: 0 0 0 0 rgba(255, 251, 236, 0.4);
  animation: scPulse 2.6s var(--ease-out) infinite;
}
@keyframes scPulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 251, 236, 0.35); }
  70% { box-shadow: 0 0 0 26px rgba(255, 251, 236, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 251, 236, 0); }
}
.sc-play svg { width: 22px; height: 22px; color: var(--ink); margin-left: 3px; }
.sc-video-bar {
  position: absolute;
  bottom: 96px; left: var(--sp-5); right: var(--sp-5);
  height: 3px;
  background: rgba(255, 251, 236, 0.15);
  border-radius: var(--r-pill);
}
.sc-video-bar::after {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 38%;
  background: var(--violet);
  border-radius: var(--r-pill);
}
.sc-video-time {
  position: absolute;
  bottom: 104px; right: var(--sp-5);
  font-family: var(--font-mono);
  font-size: 10px;
  color: rgba(255, 251, 236, 0.6);
}

/* Poster mockup (affiche match) */
.sc-poster {
  position: absolute;
  inset: 0;
  background: linear-gradient(165deg, #1a1530 0%, #0A0A0A 70%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--sp-6) var(--sp-5) 110px;
  gap: var(--sp-2);
}
.sc-poster::before {
  content: "";
  position: absolute;
  top: -40px; left: 50%;
  transform: translateX(-50%);
  width: 160px; height: 160px;
  background: radial-gradient(circle, rgba(119, 71, 255, 0.55), transparent 70%);
}
.sc-poster-label {
  position: relative;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 251, 236, 0.65);
}
.sc-poster-score {
  position: relative;
  font-family: var(--font-display);
  font-size: 64px;
  letter-spacing: -0.04em;
  color: var(--cream);
  line-height: 0.9;
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}
.sc-poster-score span {
  font-size: 22px;
  color: rgba(255, 251, 236, 0.60);
}
.sc-poster-teams {
  position: relative;
  font-size: 11px;
  color: rgba(255, 251, 236, 0.7);
  font-weight: 500;
  letter-spacing: 0.04em;
}

/* Stories mockup (pack matchday) */
.sc-stories {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, var(--cream-2), var(--paper));
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-3);
  padding-bottom: 88px;
}
.sc-story {
  width: 64px;
  height: 116px;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}
.sc-story:nth-child(1) { transform: rotate(-6deg) translateY(8px); background: linear-gradient(160deg, var(--violet), #B095FF); }
.sc-story:nth-child(2) { transform: translateY(-6px); background: var(--ink); z-index: 2; }
.sc-story:nth-child(3) { transform: rotate(6deg) translateY(8px); background: linear-gradient(160deg, #2C2640, #0A0A0A); }
.sc-story::before {
  content: "";
  position: absolute;
  left: 8px; right: 8px; bottom: 10px;
  height: 4px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: var(--r-pill);
}
.sc-story::after {
  content: "";
  position: absolute;
  left: 8px; bottom: 18px;
  width: 22px;
  height: 4px;
  background: rgba(255, 255, 255, 0.85);
  border-radius: var(--r-pill);
}

/* Brand kit swatches mockup */
.sc-swatches {
  position: absolute;
  inset: 0;
  display: flex;
  padding-bottom: 88px;
}
.sc-swatches > div { flex: 1; }
.sc-swatches > div:nth-child(1) { background: var(--violet); }
.sc-swatches > div:nth-child(2) { background: var(--ink); }
.sc-swatches > div:nth-child(3) { background: var(--cream-3); }
.sc-swatches > div:nth-child(4) { background: #16A34A; }

/* IA shimmer mockup */
.sc-ai {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, #0A0A0A, #15131F);
  padding-bottom: 88px;
  display: grid;
  place-items: center;
}
.sc-ai-orb {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, var(--violet), #B095FF, var(--cream), var(--violet));
  filter: blur(2px);
  animation: scSpin 6s linear infinite;
}
@keyframes scSpin { to { transform: rotate(360deg); } }
.sc-ai::after {
  content: "";
  position: absolute;
  width: 80px; height: 80px;
  border-radius: 50%;
  background: #0A0A0A;
  transform: scale(0.62);
}

/* —— CTA final —— */
.cta-final {
  background: var(--violet);
  border-radius: var(--r-3xl);
  padding: clamp(60px, 7vw, 100px) clamp(40px, 5vw, 80px);
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-final::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(255,255,255,0.18), transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(255,255,255,0.12), transparent 50%);
}
.cta-final h2 {
  font-size: clamp(40px, 5vw, 64px);
  color: #fff;
  position: relative;
  letter-spacing: -0.03em;
}
.cta-final h2 em {
  font-style: italic;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.7);
}
.cta-final p {
  color: rgba(255, 255, 255, 0.85);
  font-size: var(--fs-md);
  margin: var(--sp-5) auto 0;
  max-width: 560px;
  position: relative;
}
.cta-final .btn-group {
  display: inline-flex;
  gap: var(--sp-3);
  margin-top: var(--sp-7);
  position: relative;
}
.cta-final .btn-secondary {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.2);
  color: #fff;
}
.cta-final .btn-secondary:hover {
  background: rgba(255,255,255,0.22);
}

/* —— Footer —— */
.footer {
  padding: var(--sp-10) var(--sp-7) var(--sp-7);
  border-top: 1px solid var(--line);
}
.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--sp-8);
  margin-bottom: var(--sp-10);
}
.footer-inner h5 {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--mute);
  font-weight: 500;
  margin-bottom: var(--sp-4);
}
.footer-inner ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  font-size: var(--fs-sm);
}
.footer-inner ul a:hover { color: var(--violet); }
.footer-tag {
  margin-top: var(--sp-4);
  font-size: var(--fs-sm);
  color: var(--mute);
  max-width: 280px;
  line-height: 1.5;
}
.footer-bottom {
  max-width: var(--container);
  margin: 0 auto;
  padding-top: var(--sp-6);
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: var(--fs-xs);
  color: var(--mute);
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
}

/* —— Responsive —— */
@media (max-width: 1080px) {
  .hero-inner { grid-template-columns: 1fr; gap: var(--sp-9); }
  .hero-mockup { height: 480px; }
  .concept-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-card.featured { transform: none; }
  .workflow { grid-template-columns: repeat(3, 1fr); }
  .feats { grid-template-columns: repeat(2, 1fr); }
  .catalog-grid { grid-template-columns: repeat(2, 1fr); }
  .showcase { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .sc-card.span-2x2 { grid-column: span 2; grid-row: span 2; }
  .sc-card.span-2w { grid-column: span 2; }
  .economy-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .nav-links { display: none; }
  .pricing-grid { grid-template-columns: 1fr; }
  .workflow { grid-template-columns: 1fr; }
  .feats { grid-template-columns: 1fr; }
  .catalog-grid { grid-template-columns: 1fr; }
  .showcase { grid-template-columns: 1fr; }
  .sc-card.span-2x2, .sc-card.span-2w, .sc-card.span-2h { grid-column: span 1; grid-row: span 1; }
  .sc-card.span-2x2 { grid-row: span 2; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: var(--sp-3); }
}
