/* =============================================================
   Creative Factory — Main Site Styles
   Dark premium aesthetic — ecomflows / Linear / Vercel tier
   Requires: /css/tokens.css loaded first
   ============================================================= */

/* ── Reset ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--color-bg);
  color: var(--color-text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding-bottom: 100px;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── Container ───────────────────────────────────────────── */
.sc-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: var(--section-pad-y) var(--container-pad);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

/* ── Typography Defaults ─────────────────────────────────── */
.heading {
  font-family: var(--font-heading);
  font-weight: var(--weight-regular);
  color: var(--color-text);
  text-align: center;
  line-height: 1.15;
}

.paragraph {
  font-family: var(--font-body);
  font-size: 16px;
  text-align: center;
  color: var(--color-text-secondary);
  line-height: 1.7;
}

.overline {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: var(--weight-semibold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-accent);
  text-align: center;
  margin-bottom: 12px;
}

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: var(--radius-xl);
  padding: 16px 40px;
  font-family: var(--font-body);
  font-weight: var(--weight-medium);
  font-size: 15px;
  cursor: pointer;
  transition: all var(--transition-fast);
  text-decoration: none;
  line-height: 1;
  border: none;
  position: relative;
}

.btn-primary {
  background: var(--btn-primary-gradient);
  color: #fff;
  box-shadow: 0 0 20px rgba(70, 114, 254, 0.3), 0 2px 8px rgba(0, 0, 0, 0.3);
}

.btn-primary:hover {
  box-shadow: 0 0 30px rgba(70, 114, 254, 0.5), 0 4px 16px rgba(0, 0, 0, 0.4);
  transform: translateY(-1px);
}

.btn-secondary {
  background: transparent;
  color: var(--color-text-secondary);
  border: 1px solid var(--color-border);
}

.btn-secondary:hover {
  border-color: var(--color-accent);
  color: var(--color-text);
}

.btn-light {
  background: var(--btn-primary-gradient);
  color: #fff;
  border: none;
  box-shadow: 0 0 20px rgba(70, 114, 254, 0.3);
}

.btn-light:hover {
  box-shadow: 0 0 30px rgba(70, 114, 254, 0.5);
  transform: translateY(-1px);
}

/* ── Floating Bottom Nav ─────────────────────────────────── */
/* ── Floating Bottom Nav ─────────────────────────────────── */
.bottom-nav {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  background: rgba(8, 10, 16, 0.88);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-radius: 100px;
  border: 1px solid var(--color-border);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  padding: 7px;
  display: flex;
  align-items: center;
  gap: 0;
  max-width: min(90vw, 720px);
}

.nav-toggle {
  display: flex;
  align-items: center;
  background: rgba(21, 26, 41, 0.6);
  border: 1px solid var(--color-border-subtle);
  border-radius: 100px;
  padding: 4px;
  margin-right: 8px;
  flex-shrink: 0;
}

.nav-toggle-btn {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: var(--weight-medium);
  padding: 8px 16px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  background: transparent;
  color: var(--color-text-muted);
  transition: all 0.15s ease;
  white-space: nowrap;
  text-decoration: none;
}

.nav-toggle-btn:hover {
  color: var(--color-text-secondary);
}

.nav-toggle-btn.active {
  background: var(--btn-primary-gradient);
  color: #fff;
  border: none;
  box-shadow: 0 0 12px rgba(70, 114, 254, 0.3);
}

.nav-divider {
  width: 1px;
  height: 20px;
  background: var(--color-border);
  margin: 0 4px;
  flex-shrink: 0;
}

.nav-link {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: var(--weight-regular);
  padding: 8px 14px;
  border-radius: 100px;
  border: 1px solid var(--color-border-subtle);
  color: var(--color-text-secondary);
  text-decoration: none;
  white-space: nowrap;
  background: transparent;
  margin: 0 2px;
  transition: all var(--transition-fast);
}

.nav-link:hover {
  border-color: var(--color-border);
  color: var(--color-text);
}

.nav-link.nav-home {
  padding: 8px 12px;
  font-size: 14px;
}

.nav-cta {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: var(--weight-medium);
  padding: 8px 18px;
  border-radius: 100px;
  background: var(--btn-primary-gradient);
  color: #fff;
  text-decoration: none;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: all var(--transition-fast);
  margin-left: 2px;
  box-shadow: 0 0 12px rgba(70, 114, 254, 0.3);
  flex-shrink: 0;
}

.nav-cta:hover {
  box-shadow: 0 0 20px rgba(70, 114, 254, 0.5);
  transform: translateY(-1px);
}

/* Nav — tablet: hide links, keep toggle + CTA */
@media (max-width: 960px) {
  .nav-home,
  .nav-divider,
  .nav-link { display: none; }

  .bottom-nav {
    width: 85vw;
    justify-content: space-between;
  }

  .nav-cta {
    flex: 1;
    text-align: center;
  }
}

/* Nav — small mobile: compact everything */
@media (max-width: 400px) {
  .bottom-nav { padding: 5px; }
  .nav-toggle-btn { font-size: 11px; padding: 6px 12px; }
  .nav-cta { font-size: 11px; padding: 6px 14px; }
}

/* ══════════════════════════════════════════════════════════
   HERO — Luxury-dark editorial

   Asymmetric two-column: commanding left copy + fanned
   portfolio cards bleeding rightward. A single radial orb
   behind the cards adds depth without competing.

   Typography stack: tight overline → large display heading
   with serif accent → body → outlined CTA → muted stats.
   Every element earns its space.
   ══════════════════════════════════════════════════════════ */

.section-hero {
  background:
    radial-gradient(circle at 1px 1px, rgba(134, 164, 255, 0.03) 1px, transparent 0) 0 0 / 32px 32px,
    var(--color-bg);
  position: relative;
  overflow: hidden;
}

/* Atmospheric orb — primary, behind the card fan */
.section-hero::after {
  content: '';
  position: absolute;
  top: 5%;
  right: -8%;
  width: 800px;
  height: 800px;
  background: radial-gradient(
    circle,
    rgba(70, 114, 254, 0.12) 0%,
    rgba(105, 68, 255, 0.05) 35%,
    transparent 65%
  );
  pointer-events: none;
  z-index: 0;
}

/* Secondary orb — subtle warmth on the left */
.section-hero::before {
  content: '';
  position: absolute;
  bottom: -10%;
  left: -12%;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(70, 114, 254, 0.06) 0%,
    transparent 60%
  );
  pointer-events: none;
  z-index: 0;
}

/* Bottom gradient fade — seamless transition to next section */
.section-hero .hero-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(12, 15, 25, 0.4) 50%,
    var(--color-bg-alt) 100%
  );
  pointer-events: none;
  z-index: 2;
}

.section-hero .sc-container {
  padding-top: 48px;
  padding-bottom: 96px;
  min-height: 85vh;
  justify-content: center;
  position: relative;
  z-index: 1;
}

/* ── Layout grid ─────────────────────────────────── */
.hero-layout {
  display: grid;
  grid-template-columns: 52% 48%;
  gap: 32px;
  align-items: center;
  width: 100%;
}

/* ── Left column: copy ───────────────────────────── */
.hero-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-logo {
  width: 150px;
  height: auto;
  margin-bottom: 32px;
  filter: brightness(0) invert(1);
  opacity: 0.9;
  align-self: flex-start;
}

/* Frosted pill — luminous edge, barely-there fill */
.hero-tagline {
  font-family: var(--font-body);
  font-size: 10.5px;
  font-weight: var(--weight-medium);
  color: var(--color-accent);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 28px;
  background: linear-gradient(
    135deg,
    rgba(134, 164, 255, 0.07),
    rgba(105, 68, 255, 0.03)
  );
  border: 1px solid rgba(134, 164, 255, 0.14);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 6px 16px;
  border-radius: 100px;
  display: inline-block;
}

/* Display heading — Inter at 44px reads clean and
   commanding without the heaviness of Monument. */
.hero-headline {
  font-family: var(--font-heading);
  font-weight: var(--weight-regular);
  font-size: clamp(42px, 4.5vw, 56px);
  line-height: 1.12;
  color: var(--color-text);
  margin-bottom: 24px;
  letter-spacing: -0.025em;
}

/* Accent phrase — Instrument Serif italic breaks the
   geometric rigidity of Inter, adds editorial warmth. */
.hero-headline em {
  font-family: var(--font-accent);
  font-style: italic;
  color: var(--color-text-muted);
  letter-spacing: -0.01em;
}

.hero-body {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--color-text-secondary);
  line-height: 1.75;
  max-width: 500px;
  margin-bottom: 28px;
}

/* ── Hero Actions (CTA + chips) ──────────────────── */
.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-actions .btn {
  align-self: flex-start;
  padding: 16px 40px;
  font-size: 15px;
}

.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 104px;
  justify-content: center;
  width: 100%;
}

.hero-chips .feature-chip {
  font-size: 14px;
  padding: 10px 20px;
}

/* ── Hero Entrance Animations ────────────────────── */
@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-anim {
  opacity: 0;
  animation: heroFadeUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: calc(0.15s + var(--anim-order, 0) * 0.12s);
}

/* ── Right column: delivery showcase ─────────────── */
.hero-showcase {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 420px;
}

/* ── Brief Card (behind) ────────────────────────── */
.hero-brief-card {
  position: absolute;
  top: 0;
  right: 20px;
  width: 300px;
  background: var(--color-bg-surface);
  border: 1px solid var(--color-border-subtle);
  border-radius: 16px;
  padding: 20px 24px;
  transform: rotate(2deg) translateY(0);
  z-index: 1;
  opacity: 0.55;
  transition: opacity var(--transition-normal), transform var(--transition-normal);
}

.hero-showcase:hover .hero-brief-card {
  opacity: 0.7;
  transform: rotate(3deg) translate(20px, -20px);
}

.hero-showcase:hover .hero-delivery-card {
  transform: translate(-10px, 6px);
}

.hero-brief-status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: var(--weight-medium);
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}

.hero-brief-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}

.hero-brief-dot--sent {
  background: var(--color-text-muted);
}

.hero-brief-dot--ready {
  background: #34d399;
  box-shadow: 0 0 8px rgba(52, 211, 153, 0.4);
}

.hero-brief-title {
  font-size: 14px;
  font-weight: var(--weight-medium);
  color: var(--color-text-secondary);
  margin-bottom: 4px;
}

.hero-brief-meta {
  font-size: 12px;
  color: var(--color-text-muted);
}

/* ── Delivery Card (front, primary) ─────────────── */
.hero-delivery-card {
  position: relative;
  width: 380px;
  background:
    linear-gradient(
      160deg,
      rgba(134, 164, 255, 0.04) 0%,
      rgba(21, 26, 41, 0.95) 40%
    ),
    var(--color-bg-surface);
  border: 1px solid rgba(134, 164, 255, 0.18);
  border-radius: 20px;
  padding: 28px;
  z-index: 2;
  margin-top: 60px;
  box-shadow:
    0 32px 80px rgba(0, 0, 0, 0.4),
    0 0 40px -10px rgba(70, 114, 254, 0.1);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.hero-showcase:hover .hero-delivery-card {
  transform: translateY(-4px);
  box-shadow:
    0 36px 90px rgba(0, 0, 0, 0.45),
    0 0 50px -10px rgba(70, 114, 254, 0.15);
}

.hero-delivery-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.hero-delivery-status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: var(--weight-semibold);
  color: #34d399;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.hero-delivery-time {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 14px;
  color: var(--color-accent);
}

.hero-delivery-title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: var(--weight-semibold);
  color: var(--color-text);
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

/* Thumbnail grid */
.hero-delivery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 20px;
}

.hero-delivery-thumb {
  aspect-ratio: 9 / 16;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

.hero-delivery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-delivery-thumb--more::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(8, 10, 16, 0.6);
  border-radius: 10px;
}

.hero-delivery-more {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: var(--weight-semibold);
  color: var(--color-text);
  z-index: 1;
}

/* Footer row */
.hero-delivery-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid var(--color-border-subtle);
}

.hero-delivery-meta {
  font-size: 12px;
  color: var(--color-text-muted);
}

/* ── Floating Notification Toast ─────────────────── */
.hero-notif {
  position: absolute;
  bottom: 10px;
  left: -20px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 12px;
  background:
    linear-gradient(
      135deg,
      rgba(21, 26, 41, 0.92),
      rgba(14, 18, 29, 0.96)
    );
  border: 1px solid rgba(134, 164, 255, 0.15);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 14px;
  padding: 14px 20px;
  box-shadow:
    0 16px 48px rgba(0, 0, 0, 0.4),
    0 0 20px -8px rgba(70, 114, 254, 0.1);
  transition: transform var(--transition-normal);
  max-width: 340px;
}

.hero-showcase:hover .hero-notif {
  transform: translate(-6px, 4px);
}

.hero-notif-icon {
  font-size: 20px;
  flex-shrink: 0;
}

.hero-notif-text {
  flex: 1;
  min-width: 0;
}

.hero-notif-title {
  font-size: 13px;
  font-weight: var(--weight-semibold);
  color: var(--color-text);
  margin-bottom: 2px;
}

.hero-notif-sub {
  font-size: 11px;
  color: var(--color-text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hero-notif-time {
  font-size: 10px;
  color: var(--color-text-muted);
  white-space: nowrap;
  flex-shrink: 0;
  align-self: flex-start;
  margin-top: 2px;
}

.hero-delivery-badge {
  font-size: 11px;
  font-weight: var(--weight-semibold);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #34d399;
  background: rgba(52, 211, 153, 0.08);
  border: 1px solid rgba(52, 211, 153, 0.2);
  padding: 4px 12px;
  border-radius: 100px;
}

/* ── Two-Column Layout (Problem + Origin) ────────────────── */
.two-col-layout {
  display: flex;
  gap: 60px;
  align-items: center;
  width: 100%;
}

.two-col-text {
  flex: 1;
}

.two-col-image {
  flex: 0 0 auto;
  max-width: 380px;
}

.two-col-image img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-card);
  filter: drop-shadow(0 8px 32px rgba(0,0,0,0.4));
}

/* ── PROBLEM ──────────────────────────────────────────────
   Design reference: ecomflows.io "Brand Problems" section
   Two-column: sticky headline left, stacked cards right
   Cards: compact, dark surface, subtle border, red ✕ icon
   ────────────────────────────────────────────────────────── */
.section-problem {
  background: var(--color-bg-alt);
}

.section-problem .sc-container {
  align-items: flex-start;
}

.section-problem .overline {
  text-align: left;
}

.problem-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  width: 100%;
  align-items: start;
}

.problem-left {
  position: sticky;
  top: 120px;
  padding-top: 8px;
}

.problem-headline {
  font-family: var(--font-heading);
  font-weight: var(--weight-regular);
  font-size: clamp(36px, 3.5vw, 44px);
  line-height: 1.15;
  color: var(--color-text);
  letter-spacing: -0.02em;
}

.problem-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.problem-card {
  background: var(--color-bg-surface);
  border: 1px solid var(--color-border-subtle);
  border-radius: 1rem;
  padding: 24px 28px;
  transition: border-color var(--transition-normal);
}

.problem-card:hover {
  border-color: var(--color-border);
}

.problem-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 80, 80, 0.1);
  color: #ff5050;
  font-size: 12px;
  font-weight: var(--weight-bold);
  margin-bottom: 12px;
}

.problem-card-title {
  font-family: var(--font-body);
  font-weight: var(--weight-semibold);
  font-size: 16px;
  color: var(--color-text);
  margin-bottom: 6px;
}

.problem-card-body {
  font-size: 14px;
  color: var(--color-text-secondary);
  line-height: 1.6;
}

/* ── VALUE STRIP (inside problem section) ─────────────────
   3-column icon strip below the problem cards
   ────────────────────────────────────────────────────────── */
.value-strip-grid {
  padding-top: 64px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  width: 100%;
}

.value-strip-item {
  text-align: left;
}

.value-strip-icon {
  color: var(--color-text-muted);
  margin-bottom: 24px;
  opacity: 0.7;
}

.value-strip-title {
  font-family: var(--font-heading);
  font-weight: var(--weight-semibold);
  font-size: 18px;
  color: var(--color-text);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.value-strip-body {
  font-size: 14px;
  color: var(--color-text-secondary);
  line-height: 1.6;
}

/* ── ORIGIN STORY ──────────────────────────────────────────
   Design reference: ecomflows.io "Why Ecomflows?" section
   Two-column: text left (55%), image card right (45%)
   Tight vertical rhythm, generous horizontal gap
   ────────────────────────────────────────────────────────── */
.section-origin {
  background: var(--color-bg-tertiary);
}

.section-origin .sc-container {
  align-items: flex-start;
}

.section-origin .overline {
  text-align: left;
}

.origin-layout {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: center;
  width: 100%;
}

.origin-text {
  padding-top: 8px;
}

.origin-heading {
  font-family: var(--font-heading);
  font-weight: var(--weight-regular);
  font-size: clamp(36px, 3.5vw, 44px);
  line-height: 1.15;
  color: var(--color-text);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.origin-heading em {
  font-family: var(--font-accent);
  font-style: italic;
  color: var(--color-text-muted);
  letter-spacing: -0.01em;
}

.origin-body {
  font-size: 15px;
  color: var(--color-text);
  line-height: 1.65;
  max-width: 520px;
  margin-bottom: 24px;
}

.origin-bullets {
  list-style: none;
  margin-bottom: 28px;
}

.origin-bullets li {
  padding: 5px 0;
  font-size: 14px;
  color: var(--color-text-secondary);
  line-height: 1.5;
  display: flex;
  align-items: center;
  gap: 12px;
}

.origin-bullets li::before {
  content: "✓";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(134, 164, 255, 0.12);
  color: var(--color-accent);
  font-size: 11px;
  font-weight: var(--weight-bold);
  flex-shrink: 0;
}

.origin-image {
  background: var(--color-bg-surface);
  border-radius: 1.5rem;
  border: 1px solid var(--color-border);
  padding: 28px;
  overflow: hidden;
}

.origin-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
}

/* ── Origin Visual — Coded Slack Card ────────────── */
.origin-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.origin-slack-card {
  background:
    linear-gradient(160deg, rgba(134, 164, 255, 0.04) 0%, rgba(21, 26, 41, 0.95) 40%),
    var(--color-bg-surface);
  border: 1px solid rgba(134, 164, 255, 0.18);
  border-radius: 20px;
  padding: 28px;
  max-width: 380px;
  box-shadow:
    0 24px 64px rgba(0, 0, 0, 0.4),
    0 0 30px -10px rgba(70, 114, 254, 0.1);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease;
}

.origin-slack-card:hover {
  transform: translateY(-6px) rotate(-0.5deg);
  box-shadow:
    0 32px 80px rgba(0, 0, 0, 0.5),
    0 0 50px -10px rgba(70, 114, 254, 0.18);
}

.origin-slack-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.origin-slack-avatar {
  width: 28px;
  height: 28px;
  filter: brightness(0) invert(1);
  opacity: 0.8;
}

.origin-slack-name {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: var(--weight-semibold);
  color: var(--color-text);
  flex: 1;
}

.origin-slack-time {
  font-size: 11px;
  color: var(--color-text-muted);
}

.origin-slack-msg {
  font-size: 14px;
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin-bottom: 16px;
}

.origin-slack-files {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.origin-slack-file {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(134, 164, 255, 0.06);
  border: 1px solid rgba(134, 164, 255, 0.12);
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 12px;
  color: var(--color-text-secondary);
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.origin-slack-file:hover {
  background: rgba(134, 164, 255, 0.12);
  border-color: rgba(134, 164, 255, 0.25);
  transform: translateX(4px);
}

.origin-slack-file svg {
  flex-shrink: 0;
  color: var(--color-accent);
}

.origin-slack-reactions {
  display: flex;
  gap: 8px;
}

.origin-slack-reaction {
  background: rgba(134, 164, 255, 0.08);
  border: 1px solid rgba(134, 164, 255, 0.15);
  border-radius: 100px;
  padding: 4px 10px;
  font-size: 12px;
  color: var(--color-text-secondary);
  cursor: pointer;
  transition: background 0.15s ease, transform 0.15s ease;
  user-select: none;
}

.origin-slack-reaction:hover {
  background: rgba(134, 164, 255, 0.18);
  transform: scale(1.1);
}

.origin-slack-reaction:active {
  transform: scale(0.95);
}

/* ══════════════════════════════════════════════════════════
   COMPARISON — Them vs Us

   Two-column: left is flat/muted (their problems),
   right is an elevated dark card (our strengths).
   The asymmetry signals which side wins.
   ══════════════════════════════════════════════════════════ */
/* ══════════════════════════════════════════════════════════
   COMPARISON — Them vs Us

   Side-by-side columns: left flat/muted, right elevated
   dark card. Emojis float near headers for personality.
   Rows are distinct bands. Centered CTA anchors the bottom.
   ══════════════════════════════════════════════════════════ */
.section-compare {
  background: var(--color-bg-alt);
}

.section-compare .sc-container {
  align-items: flex-start;
}

.section-compare .origin-heading {
  margin-bottom: 48px;
}

.compare-overline {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 15px;
  color: var(--color-text-muted);
  text-align: left;
  margin-bottom: 10px;
}

.compare-heading {
  font-family: var(--font-heading);
  font-weight: var(--weight-regular);
  font-size: clamp(36px, 3.5vw, 44px);
  color: var(--color-text);
  text-align: center;
  margin-bottom: 56px;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.compare-highlight {
  position: relative;
  color: var(--color-accent);
}

.compare-highlight::before {
  content: '';
  position: absolute;
  left: -8px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--color-accent);
  border-radius: 2px;
}

.compare-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  width: 100%;
  align-items: stretch;
}

/* ── Column headers ──────────────────────────────── */
.compare-col-header {
  padding-bottom: 20px;
  margin-bottom: 4px;
  position: relative;
  overflow: visible;
}

.compare-col-title {
  font-family: var(--font-heading);
  font-weight: var(--weight-medium);
  font-size: 20px;
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Frosted glass sticker — floats off the corner
   like a physical sticker placed on a card */
.compare-emoji {
  font-size: 28px;
  line-height: 1;
  position: absolute;
  top: -18px;
  right: -10px;
  transform: rotate(12deg);
  z-index: 2;
  background: linear-gradient(
    135deg,
    rgba(134, 164, 255, 0.1),
    rgba(105, 68, 255, 0.06)
  );
  border: 1px solid rgba(134, 164, 255, 0.18);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 10px 14px;
  border-radius: 16px;
  box-shadow:
    0 8px 24px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

/* ── Left: Other agencies (muted, flat) ──────────── */
.compare-them {
  padding: 32px 40px 32px 0;
}

.compare-them .compare-col-title {
  color: var(--color-text-muted);
}

/* ── Shared list styles ──────────────────────────── */
.compare-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.compare-list li {
  padding: 16px 0;
  font-size: 15px;
  line-height: 1.5;
  display: flex;
  align-items: center;
  gap: 14px;
  border-bottom: 1px solid var(--color-border-subtle);
}

.compare-list li:last-child {
  border-bottom: none;
}

/* Bad list — muted ✕ */
.compare-list--bad li::before {
  content: "✕";
  color: var(--color-text-muted);
  font-size: 13px;
  flex-shrink: 0;
  opacity: 0.4;
}

.compare-list--bad li {
  color: var(--color-text-muted);
}

/* ── Right: Creative Factory (elevated card) ─────── */
.compare-us {
  background: linear-gradient(
    160deg,
    var(--color-bg-surface) 0%,
    rgba(14, 18, 29, 0.95) 100%
  );
  border: 1px solid var(--color-border);
  border-radius: 1.5rem;
  padding: 32px 36px;
  position: relative;
  overflow: hidden;
}

.compare-us .compare-col-title {
  color: var(--color-text);
}

.compare-us .compare-list li {
  border-bottom-color: rgba(201, 208, 232, 0.08);
  color: var(--color-text-secondary);
}

/* Good list — accent ✓ in rounded squares */
.compare-list--good li::before {
  content: "✓";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 6px;
  background: rgba(134, 164, 255, 0.15);
  color: var(--color-accent);
  font-size: 12px;
  font-weight: var(--weight-bold);
  flex-shrink: 0;
}

/* ── Bottom CTA ──────────────────────────────────── */
.compare-bottom-cta {
  display: block;
  margin: 48px auto 0;
  width: fit-content;
  padding: 16px 48px;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: var(--weight-semibold);
}

/* ── Section Shared Styles ───────────────────────────────── */
.section-heading {
  font-family: var(--font-heading);
  font-weight: var(--weight-regular);
  font-size: clamp(36px, 3.5vw, 44px);
  line-height: 1.15;
  color: var(--color-text);
  text-align: center;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.section-subtext {
  font-size: 16px;
  color: var(--color-text-secondary);
  text-align: center;
  margin-bottom: 40px;
}

.section-divider {
  border: none;
  border-top: 1px solid var(--color-border-subtle);
  width: 100%;
  margin: 0 0 40px;
}

/* ── PORTFOLIO ───────────────────────────────────────────── */
.section-portfolio {
  background: var(--color-bg);
}

.section-portfolio .sc-container { align-items: flex-start; }
.section-portfolio .overline { text-align: left; }

.portfolio-hero-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
  margin-bottom: 48px;
  gap: 40px;
}

.portfolio-hero-left {
  flex: 1;
}

.portfolio-hero-left .origin-heading {
  text-align: left;
  max-width: 600px;
}

.portfolio-hero-left .origin-body {
  text-align: left;
  color: var(--color-text-muted);
  margin-bottom: 0;
}

.portfolio-tabs {
  display: flex;
  gap: 6px;
  flex-shrink: 0;
  background: rgba(21, 26, 41, 0.6);
  border: 1px solid var(--color-border-subtle);
  border-radius: 100px;
  padding: 5px;
  margin-right: 56px; /* align with right edge of carousel cards (44px arrow + 12px gap) */
}

.tab {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: var(--weight-medium);
  padding: 10px 28px;
  border-radius: 100px;
  border: none;
  background: transparent;
  color: var(--color-text-muted);
  cursor: pointer;
  transition: all 0.15s ease;
}

.tab:hover {
  color: var(--color-text-secondary);
}

.tab.active {
  background: var(--btn-primary-gradient);
  color: #fff;
  border: none;
  box-shadow: 0 0 12px rgba(70, 114, 254, 0.3);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  width: 100%;
}

.portfolio-grid.hidden { display: none; }

.portfolio-card {
  width: 100%;
  aspect-ratio: 9 / 16;
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1px solid var(--color-border-subtle);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.portfolio-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.portfolio-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── Video thumbnail cards ────────────────────────── */
.portfolio-card--video {
  position: relative;
  display: block;
  cursor: pointer;
  background: var(--color-bg-surface);
}

.portfolio-card--video img {
  transition: transform 0.4s ease, filter 0.4s ease;
}

.portfolio-card--video:hover img {
  transform: scale(1.05);
  filter: brightness(0.7);
}

/* Play button overlay — always visible */
.video-play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.15);
  transition: background 0.3s ease;
}

.portfolio-card--video:hover .video-play-overlay {
  background: rgba(0, 0, 0, 0.35);
}

.video-play-icon {
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.5));
  transition: transform 0.3s ease;
}

.portfolio-card--video:hover .video-play-icon {
  transform: scale(1.1);
}

/* ── Video Carousel ───────────────────────────────── */
.video-carousel-wrap {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
}

.video-carousel-wrap.hidden { display: none; }

.video-carousel {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  -ms-overflow-style: none;
  scrollbar-width: none;
  padding: 4px 0;
}

.video-carousel::-webkit-scrollbar { display: none; }

.video-carousel .portfolio-card--video,
.video-carousel .portfolio-card {
  flex: 0 0 calc((100% - 48px) / 4);
  scroll-snap-align: start;
  aspect-ratio: 9 / 16;
}

/* Carousel arrows */
.carousel-arrow {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  background: rgba(21, 26, 41, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--color-text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition-fast), border-color var(--transition-fast), transform var(--transition-fast);
  z-index: 2;
}

.carousel-arrow:hover {
  background: rgba(70, 114, 254, 0.15);
  border-color: var(--color-accent);
  transform: scale(1.08);
}


/* ── PROCESS (How It Works) ──────────────────────────────── */
.section-process {
  background: var(--color-bg-alt);
}

.section-process .sc-container {
  align-items: flex-start;
}

.section-process .overline {
  text-align: left;
}

.section-process .section-heading {
  text-align: left;
  max-width: 600px;
  font-size: 36px;
}

.section-process .section-subtext {
  text-align: left;
  margin-bottom: 24px;
}

/* Process hero row — text left, annotated CTA right */
.process-hero-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-bottom: 48px;
}

.process-hero-left {
  flex: 1;
}

/* Annotated CTA — stacked vertically, shifted left 20% into the space */
.cta-annotated {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  margin-right: 10%;
}

.cta-annotation {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 14px;
  color: var(--color-accent);
  transform: rotate(-3deg);
  letter-spacing: 0.01em;
  opacity: 0.85;
}

.cta-arrow {
  color: var(--color-accent);
  opacity: 0.5;
  margin: -4px 0 -2px;
  align-self: flex-end;
  margin-right: 16px;
}

/* Ghost button — outline with subtle blue glow */
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 36px;
  border-radius: 100px;
  border: 1px solid rgba(134, 164, 255, 0.25);
  background: transparent;
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: var(--weight-medium);
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.25s ease;
  box-shadow: 0 0 20px rgba(134, 164, 255, 0.06);
  flex-shrink: 0;
}

.btn-ghost:hover {
  border-color: rgba(134, 164, 255, 0.5);
  box-shadow: 0 0 28px rgba(134, 164, 255, 0.12);
  color: var(--color-accent);
}

.process-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.feature-chip {
  background: linear-gradient(135deg, rgba(134,164,255,0.07), rgba(105,68,255,0.04));
  border: 1px solid rgba(134, 164, 255, 0.14);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  color: var(--color-text-secondary);
  border-radius: 100px;
  padding: 8px 20px;
  font-size: 13px;
  font-weight: var(--weight-medium);
  transition: border-color var(--transition-fast);
}

.feature-chip:hover {
  border-color: rgba(134, 164, 255, 0.3);
}

/* ── Timeline ─────────────────────────────────────────────
   Horizontal numbered nodes connected by a track line.
   Each node: gradient circle → bold title → muted desc.
   Adapted from ecomflows "15-Day Build Process" pattern.
   ────────────────────────────────────────────────────────── */
.timeline-row {
  display: grid;
  grid-template-columns: 3fr 1fr;
  gap: 40px;
  width: 100%;
  align-items: start;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  padding-top: 24px;
}

.timeline--3-steps {
  grid-template-columns: repeat(3, 1fr);
}

/* Horizontal connecting line behind the nodes */
.timeline-track {
  position: absolute;
  top: calc(24px + 24px); /* aligns to center of 48px nodes */
  left: 10%;
  right: 10%;
  height: 2px;
  background: var(--color-border);
  z-index: 0;
}

.timeline-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
}

/* Numbered circle node — dark gradient with accent ring */
.timeline-node {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--color-bg-surface), var(--color-bg));
  border: 2px solid var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: var(--weight-semibold);
  font-size: 16px;
  color: var(--color-text);
  margin-bottom: 20px;
  box-shadow:
    0 0 16px rgba(134, 164, 255, 0.12),
    0 4px 12px rgba(0, 0, 0, 0.3);
}

.timeline-title {
  font-family: var(--font-heading);
  font-weight: var(--weight-medium);
  font-size: 16px;
  color: var(--color-text);
  margin-bottom: 12px;
}

.timeline-desc {
  font-size: 13px;
  color: var(--color-text-secondary);
  line-height: 1.7;
  max-width: 200px;
  padding: 0 8px;
}

/* Check-in card — right column */
.timeline-post {
  background: var(--color-bg-surface);
  border: 1px solid var(--color-border-subtle);
  border-radius: 1rem;
  padding: 28px 24px;
  margin-top: 24px;
  text-align: center;
}

.timeline-post-label {
  font-family: var(--font-accent);
  font-size: 15px;
  color: var(--color-text-secondary);
  margin-bottom: 6px;
}

.timeline-post-accent {
  color: var(--color-accent);
  font-family: var(--font-accent);
  font-style: italic;
}

.timeline-post-body {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.6;
  max-width: 420px;
  margin: 0 auto;
}

/* Bottom CTA */
.timeline-cta {
  display: block;
  margin: 36px auto 0;
  width: fit-content;
  padding: 16px 48px;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: var(--weight-semibold);
}

/* ── DIFFERENTIATORS ─────────────────────────────────────── */
.section-differentiators {
  background: var(--color-bg-tertiary);
}

.section-differentiators .sc-container {
  align-items: flex-start;
}

.section-differentiators .overline { text-align: left; }

.section-differentiators .section-heading {
  text-align: left;
}

.differentiators-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
  width: 100%;
  margin-top: 16px;
}

.differentiator-card {
  background: transparent;
  border: none;
  padding: 0;
}

.differentiator-icon {
  width: 32px;
  height: 32px;
  margin-bottom: 28px;
  object-fit: contain;
  opacity: 0.5;
  filter: brightness(0) invert(0.6) sepia(1) saturate(3) hue-rotate(200deg);
}

.differentiator-title {
  font-family: var(--font-heading);
  font-weight: var(--weight-medium);
  font-size: 16px;
  color: var(--color-text);
  margin-bottom: 12px;
  line-height: 1.3;
}

.differentiator-body {
  font-size: 14px;
  color: var(--color-text-secondary);
  line-height: 1.7;
}

/* ── PRICING ─────────────────────────────────────────────── */
/* ── Pricing Section ─────────────────────────────────────── */
.section-pricing {
  background: var(--color-bg);
}

.section-pricing .sc-container {
  align-items: flex-start;
}

.pricing-hero-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  gap: 40px;
}

.pricing-hero-left {
  flex: 1;
}

.pricing-hero-left .overline { text-align: left; }

.section-pricing .origin-heading {
  text-align: left;
  max-width: 700px;
}

.section-pricing .origin-body {
  color: var(--color-text);
  text-align: left;
  max-width: 560px;
  margin-bottom: 12px;
  font-size: 15px;
}

.pricing-hero-left .process-chips {
  margin-bottom: 0;
}

.pricing-hero-row {
  margin-bottom: 48px;
}

/* ── Pricing Grid ─────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  width: 100%;
  align-items: stretch;
}

/* ── Pricing Card — base ─────────────────────────────── */
.pricing-card {
  position: relative;
  background: var(--color-bg-surface);
  border: 1px solid var(--color-border-subtle);
  border-radius: 20px;
  padding: 36px 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: border-color var(--transition-normal), transform var(--transition-normal);
}

.pricing-card:hover {
  border-color: var(--color-border);
  transform: translateY(-3px);
}

/* ── Featured Card — accent glow ─────────────────────── */
.pricing-card--featured {
  border-color: rgba(70, 114, 254, 0.45);
  background:
    radial-gradient(ellipse 120% 60% at 50% -10%, rgba(70, 114, 254, 0.08) 0%, transparent 70%),
    var(--color-bg-surface);
  box-shadow:
    0 0 40px -10px rgba(70, 114, 254, 0.15),
    0 1px 0 0 rgba(70, 114, 254, 0.2) inset;
}

.pricing-card--featured:hover {
  border-color: rgba(70, 114, 254, 0.6);
}

/* ── "Most Popular" badge ────────────────────────────── */
.pricing-badge-popular {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--btn-primary-gradient);
  color: #fff;
  font-size: 11px;
  font-weight: var(--weight-semibold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 18px;
  border-radius: 100px;
  white-space: nowrap;
}

/* ── Card Top (name, desc, price) ────────────────────── */
.pricing-card-top {
  margin-bottom: 28px;
}

.pricing-name {
  font-family: var(--font-heading);
  font-weight: var(--weight-semibold);
  font-size: 18px;
  color: var(--color-text);
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}

.pricing-desc {
  font-size: 13px;
  color: var(--color-text-muted);
  line-height: 1.4;
  margin-bottom: 20px;
}

.pricing-price {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: var(--weight-bold);
  color: var(--color-text);
  line-height: 1;
  letter-spacing: -0.03em;
}

.pricing-currency {
  font-size: 28px;
  font-weight: var(--weight-medium);
  color: var(--color-text-secondary);
  vertical-align: super;
  margin-right: 2px;
}

.pricing-period {
  font-size: 15px;
  font-weight: var(--weight-regular);
  color: var(--color-text-muted);
  letter-spacing: 0;
  margin-left: 2px;
}

/* ── Metrics Strip (hero numbers) ────────────────────── */
.pricing-metrics {
  display: flex;
  gap: 0;
  border-top: 1px solid var(--color-border-subtle);
  border-bottom: 1px solid var(--color-border-subtle);
  margin-bottom: 24px;
}

.pricing-metric {
  flex: 1;
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.pricing-metric + .pricing-metric {
  border-left: 1px solid var(--color-border-subtle);
  padding-left: 24px;
}

.pricing-metric-value {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 32px;
  color: var(--color-text);
  line-height: 1;
}

.pricing-metric-label {
  font-size: 12px;
  color: var(--color-text-muted);
  letter-spacing: 0.02em;
}

/* ── Detail Rows (structured key-value) ──────────────── */
.pricing-details {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 28px;
  flex: 1;
}

.pricing-detail-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(201, 208, 232, 0.06);
}

.pricing-detail-row:last-child {
  border-bottom: none;
}

.pricing-detail-label {
  font-size: 13px;
  color: var(--color-text-muted);
}

.pricing-detail-value {
  font-size: 13px;
  color: var(--color-text-secondary);
  font-weight: var(--weight-medium);
}

/* ── Card CTA ────────────────────────────────────────── */
.pricing-card .btn {
  width: 100%;
  text-align: center;
  margin-top: auto;
}

.btn-ghost-pricing {
  display: inline-block;
  width: 100%;
  text-align: center;
  padding: 14px 28px;
  border-radius: var(--radius-xl);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: var(--weight-semibold);
  color: var(--color-text);
  background: transparent;
  border: 1px solid var(--color-border);
  cursor: pointer;
  transition: background var(--transition-fast), border-color var(--transition-fast);
  text-decoration: none;
}

.btn-ghost-pricing:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--color-text-muted);
}

/* ── Custom Pricing Note ─────────────────────────────── */
.pricing-custom-note {
  margin-top: 32px;
  font-size: 14px;
  color: var(--color-text-muted);
  text-align: center;
  width: 100%;
}

.pricing-custom-note a {
  color: var(--color-accent);
  text-decoration: none;
  font-weight: var(--weight-medium);
  transition: color var(--transition-fast);
}

.pricing-custom-note a:hover {
  color: #fff;
}

/* ══════════════════════════════════════════════════════════
   WORK SHOWCASE — 3×3 portfolio grid

   Each card: rounded image with category badge overlay,
   client name, and a bold stat below. Phone-mockup
   aspect ratio preserved. Hover lifts card subtly.
   ══════════════════════════════════════════════════════════ */
.section-showcase {
  background: var(--color-bg);
}

.section-showcase .sc-container {
  align-items: flex-start;
}

.section-showcase .overline {
  text-align: left;
}

.section-showcase .origin-heading {
  text-align: left;
  margin-bottom: 48px;
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 32px;
  width: 100%;
  justify-items: center;
}

.showcase-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.showcase-card:hover {
  transform: translateY(-8px);
}

/* Phone bezel frame */
.showcase-img {
  position: relative;
  background: #1a1a1a;
  border-radius: 28px;
  padding: 8px;
  margin-bottom: 16px;
  box-shadow:
    0 16px 48px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.06),
    inset 0 0 0 1px rgba(255, 255, 255, 0.04);
  overflow: visible;
  aspect-ratio: auto;
  transition: box-shadow 0.4s ease;
}

.showcase-card:hover .showcase-img {
  box-shadow:
    0 24px 64px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(134, 164, 255, 0.12),
    inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

/* Phone notch */
.showcase-img::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 56px;
  height: 18px;
  background: #111;
  border-radius: 0 0 12px 12px;
  z-index: 5;
}

/* Screen reflection overlay */
.showcase-img::after {
  content: '';
  position: absolute;
  inset: 8px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.07) 0%,
    transparent 40%,
    transparent 60%,
    rgba(255, 255, 255, 0.02) 100%
  );
  border-radius: 20px;
  pointer-events: none;
  z-index: 4;
}

.showcase-img img {
  width: 100%;
  height: auto;
  aspect-ratio: 9 / 19.5;
  object-fit: cover;
  border-radius: 20px;
  transition: transform 0.4s ease;
  display: block;
}

.showcase-card:hover .showcase-img img {
  transform: scale(1.02);
}

.showcase-badge {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(8, 10, 16, 0.8);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(201, 208, 232, 0.12);
  color: var(--color-text);
  font-size: 9px;
  font-weight: var(--weight-semibold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
  z-index: 5;
}

.showcase-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 2px;
  background: var(--color-accent);
  flex-shrink: 0;
}

.showcase-name {
  font-family: var(--font-heading);
  font-weight: var(--weight-medium);
  font-size: 16px;
  color: var(--color-text);
  margin-bottom: 4px;
  text-align: center;
}

.showcase-stat {
  font-size: 13px;
  color: var(--color-text-secondary);
  text-align: center;
}

.showcase-stat strong {
  color: var(--color-accent);
  font-weight: var(--weight-semibold);
}

/* ── FAQ ─────────────────────────────────────────────────── */
.section-faq {
  background: var(--color-bg-alt);
}

.section-faq .sc-container {
  align-items: flex-start;
}

.faq-layout {
  display: flex;
  gap: 60px;
  width: 100%;
  align-items: flex-start;
}

.faq-cta-card {
  flex: 0 0 300px;
  position: sticky;
  top: 30px;
}

.faq-cta-card .overline { text-align: left; }

.faq-cta-heading {
  font-family: var(--font-heading);
  font-weight: var(--weight-medium);
  font-size: 22px;
  color: var(--color-text);
  margin-bottom: 12px;
  line-height: 1.2;
}

.faq-cta-body {
  font-size: 14px;
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: 24px;
}

.faq-list {
  flex: 1;
}

.faq-item {
  border-bottom: 1px solid var(--color-border);
}

.faq-question {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  font-family: var(--font-heading);
  font-weight: var(--weight-medium);
  font-size: 16px;
  color: var(--color-text);
  user-select: none;
  transition: color var(--transition-fast);
}

.faq-question:hover {
  color: var(--color-accent);
}

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

.faq-icon {
  width: 20px;
  height: 20px;
  transition: transform 0.2s ease;
  flex-shrink: 0;
  filter: brightness(0) invert(0.5) sepia(1) saturate(2) hue-rotate(200deg);
}

details[open] .faq-icon { transform: rotate(45deg); }

.faq-answer {
  padding-bottom: 24px;
  color: var(--color-text-secondary);
  line-height: 1.7;
  font-size: 15px;
}

/* ── SISTER AGENCY CTA ───────────────────────────────────── */
.section-sister-cta {
  background: linear-gradient(135deg, #1a1040 0%, #0e1a3d 50%, #0c1530 100%);
  position: relative;
  overflow: hidden;
}

/* Subtle gradient orb */
.section-sister-cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(105, 68, 255, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.section-sister-cta .sc-container {
  position: relative;
  z-index: 1;
}

.section-sister-cta .origin-heading {
  color: var(--color-text);
}

.sister-cta-body {
  font-size: 16px;
  color: var(--color-text-secondary);
  text-align: center;
  margin-bottom: 36px;
}

/* ── Brands-specific ─────────────────────────────────────── */

/* Ticker */
.ticker-banner {
  background: var(--color-bg-tertiary);
  padding: 12px 0;
  overflow: hidden;
  white-space: nowrap;
  border-top: 1px solid var(--color-border-subtle);
  border-bottom: 1px solid var(--color-border-subtle);
}

.ticker-inner {
  display: inline-flex;
  gap: 40px;
  animation: marquee 20s linear infinite;
}

.ticker-inner span {
  font-size: 13px;
  font-weight: var(--weight-semibold);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-accent);
}

.ticker-inner .ticker-sep { color: var(--color-text-muted); }

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

/* Solution */
.section-solution .sc-container { align-items: flex-start; }

.section-solution .section-heading {
  text-align: left;
  font-size: 22px;
  max-width: 700px;
}

.solution-bullets {
  list-style: none;
  margin-top: 24px;
}

.solution-bullets li {
  padding: 10px 0;
  font-size: 16px;
  color: var(--color-text-secondary);
  line-height: 1.7;
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.solution-bullets li::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-accent);
  flex-shrink: 0;
  margin-top: 9px;
}

/* Comparison */
.section-comparison .sc-container { align-items: center; }

.comparison-table {
  width: 100%;
  max-width: 900px;
  border-collapse: collapse;
  font-size: 15px;
  margin-top: 32px;
}

.comparison-table th {
  padding: 14px 20px;
  font-family: var(--font-heading);
  font-weight: var(--weight-medium);
  font-size: 13px;
  letter-spacing: 0.05em;
  text-align: center;
}

.comparison-table th:first-child {
  color: var(--color-text-muted);
  background: var(--color-bg-surface);
  border-radius: 12px 12px 0 0;
}

.comparison-table th:last-child {
  color: #fff;
  background: var(--btn-primary-gradient);
  border-radius: 12px 12px 0 0;
}

.comparison-table td {
  padding: 14px 20px;
  text-align: center;
  color: var(--color-text-secondary);
  border-bottom: 1px solid var(--color-border-subtle);
}

.comparison-table td:last-child {
  font-weight: var(--weight-semibold);
  color: var(--color-text);
}

/* Case Studies */
.section-case-studies { background: var(--color-bg); }

.section-case-studies .section-heading { color: var(--color-text); }
.section-case-studies .section-subtext { color: var(--color-text-secondary); margin-bottom: 48px; }

.case-studies-grid {
  display: flex;
  gap: 24px;
  width: 100%;
}

.case-study-card {
  flex: 1;
  background: var(--color-bg-surface);
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-card);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: border-color var(--transition-normal);
}

.case-study-card:hover {
  border-color: var(--color-border);
}

.case-stat {
  font-family: var(--font-heading);
  font-weight: var(--weight-medium);
  font-size: 20px;
  color: var(--color-accent);
  line-height: 1.2;
}

.case-quote {
  font-size: 14px;
  color: var(--color-text-secondary);
  line-height: 1.7;
  font-style: italic;
}

.case-results { display: flex; flex-wrap: wrap; gap: 8px; }

.result-pill {
  background: rgba(134, 164, 255, 0.1);
  border: 1px solid rgba(134, 164, 255, 0.15);
  border-radius: 100px;
  padding: 5px 14px;
  font-size: 12px;
  font-weight: var(--weight-semibold);
  color: var(--color-accent);
}

/* Testimonials */
.section-testimonials .section-heading { margin-bottom: 40px; }

.testimonials-grid {
  display: flex;
  gap: 24px;
  width: 100%;
}

.testimonial-card {
  flex: 1;
  background: var(--color-bg-surface);
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-card);
  padding: 32px;
  transition: border-color var(--transition-normal);
}

.testimonial-card:hover {
  border-color: var(--color-border);
}

.testimonial-quote {
  font-size: 15px;
  color: var(--color-text-secondary);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 24px;
}

.testimonial-name {
  font-weight: var(--weight-semibold);
  color: var(--color-text);
  font-size: 14px;
}

.testimonial-title {
  font-size: 12px;
  color: var(--color-text-muted);
  margin-top: 4px;
}

/* ── Footer ──────────────────────────────────────────────── */
.site-footer {
  background: var(--color-bg);
  padding: 80px 0 30px;
  text-align: center;
  border-top: 1px solid var(--color-border-subtle);
}

.site-footer__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

.site-footer__logo { margin-bottom: 40px; }

.footer-logo-large {
  width: 500px;
  max-width: 90%;
  height: auto;
  margin: 0 auto;
  opacity: 0.08;
  filter: brightness(0) invert(1);
}

.site-footer__bottom {
  border-top: 1px solid var(--color-border-subtle);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 16px;
}

.site-footer__locations {
  font-size: 12px;
  color: var(--color-text-muted);
  line-height: 1.8;
  text-align: left;
}

.site-footer__copy {
  font-size: 12px;
  color: var(--color-text-muted);
}

/* ── Mobile ──────────────────────────────────────────────── */
@media (max-width: 768px) {
  .sc-container {
    padding: 80px 24px;
  }

  .hero-layout { grid-template-columns: 1fr; }
  .hero-headline { font-size: 34px; }
  .hero-body { font-size: 14px; }
  .hero-showcase { min-height: auto; margin-top: 24px; position: relative; padding-top: 40px; padding-bottom: 40px; }
  .hero-brief-card {
    position: absolute;
    top: 0;
    right: 0;
    left: auto;
    width: 70%;
    transform: none;
    opacity: 0.5;
  }
  .hero-delivery-card { width: 100%; margin-top: 0; }
  .hero-notif {
    position: absolute;
    bottom: 0;
    left: 0;
    max-width: 85%;
  }
  .stat-item { font-size: 11px; padding: 0 10px; }
  .stat-divider { height: 12px; }

  .hero-chips { flex-direction: row; }
  .feature-chip { font-size: 10px; padding: 6px 12px; }
  .hero-actions .btn { align-self: stretch; text-align: center; }

  .bottom-nav {
    bottom: 12px;
    padding: 5px;
    width: calc(100vw - 24px);
    max-width: none;
    gap: 0;
  }


  .two-col-layout { flex-direction: column; }
  .two-col-image { max-width: 100%; order: -1; }
  .origin-layout { grid-template-columns: 1fr; gap: 40px; }
  .origin-heading { font-size: 32px; }
  .origin-image { order: -1; }
  .origin-visual { order: -1; }
  .origin-slack-card { max-width: 100%; }

  .portfolio-grid,
  #tab-static {
    grid-template-columns: repeat(2, 1fr);
  }

  .video-carousel .portfolio-card--video,
  .video-carousel .portfolio-card {
    flex: 0 0 calc((100% - 20px) / 2.5);
  }

  .video-play-overlay { opacity: 1; }
  .video-play-icon { width: 36px; height: 36px; }
  .carousel-arrow { width: 36px; height: 36px; }

  .portfolio-card { flex-shrink: 0; }

  .process-hero-row { flex-direction: column; align-items: flex-start; gap: 32px; }
  .timeline-row { grid-template-columns: 1fr; }
  .timeline { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .timeline-track { display: none; }
  .portfolio-hero-row { flex-direction: column; align-items: flex-start; gap: 24px; }
  .showcase-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .showcase-img { border-radius: 22px; padding: 6px; }
  .showcase-img::before { width: 44px; height: 14px; border-radius: 0 0 9px 9px; top: 6px; }
  .showcase-img img { border-radius: 17px; }
  .showcase-img::after { inset: 6px; border-radius: 17px; }
  .compare-layout { grid-template-columns: 1fr; }
  .compare-them { padding: 0 0 32px; }
  .compare-us { margin-top: 8px; }
  .compare-heading { font-size: 28px; margin-bottom: 36px; }

  .value-strip-grid { grid-template-columns: 1fr; gap: 32px; }

  .problem-layout { grid-template-columns: 1fr; gap: 40px; }
  .problem-left { position: static; }
  .problem-headline { font-size: 32px; }
  .differentiators-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .pricing-hero-row { flex-direction: column; gap: 24px; }
  .pricing-grid { grid-template-columns: 1fr; gap: 16px; }
  .pricing-card--featured { order: -1; }
  .pricing-badge-popular { top: -12px; }
  .pricing-price { font-size: 40px; }
  .pricing-metric-value { font-size: 26px; }
  .case-studies-grid { flex-direction: column; }
  .testimonials-grid { flex-direction: column; }
  .faq-layout { flex-direction: column; }
  .faq-cta-card { position: static; flex: auto; }

  .section-heading { font-size: 24px; }
  .section-process .section-heading { font-size: 28px; }
  .section-pricing .origin-heading { font-size: 28px; }
  .section-sister-cta .origin-heading { font-size: 28px; }

  .site-footer__inner { padding: 0 24px; }
  .site-footer__bottom { flex-direction: column; text-align: center; }
  .site-footer__locations { text-align: center; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 28px; line-height: 1.1; }
  .sc-container { padding: 60px 16px; }
}

/* ── Phone Mockup Showcase ──────────────────────────────── */
.section-phones {
  background:
    radial-gradient(ellipse 70% 50% at 50% 80%, rgba(70, 114, 254, 0.06) 0%, transparent 70%),
    var(--color-bg);
  overflow: hidden;
}
.section-phones .sc-container {
  align-items: center;
  padding-top: var(--space-16);
  padding-bottom: var(--space-16);
}
.phones-row {
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1200px;
  padding: 40px 0 20px;
  gap: 0;
}
.phone-mock {
  position: relative;
  width: 200px;
  flex-shrink: 0;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), z-index 0s;
}
.phone-mock:nth-child(1) {
  transform: rotate(-12deg) translateX(50px) translateZ(-80px) scale(0.88);
  z-index: 1;
  opacity: 0.7;
}
.phone-mock:nth-child(2) {
  transform: rotate(-6deg) translateX(24px) translateZ(-30px) scale(0.95);
  z-index: 2;
  opacity: 0.85;
}
.phone-mock:nth-child(3) {
  transform: translateZ(20px) scale(1.04);
  z-index: 4;
}
.phone-mock:nth-child(4) {
  transform: rotate(6deg) translateX(-24px) translateZ(-30px) scale(0.95);
  z-index: 2;
  opacity: 0.85;
}
.phone-mock:nth-child(5) {
  transform: rotate(12deg) translateX(-50px) translateZ(-80px) scale(0.88);
  z-index: 1;
  opacity: 0.7;
}
.phone-mock:hover {
  transform: translateZ(50px) scale(1.08) rotate(0deg) !important;
  z-index: 10 !important;
  opacity: 1 !important;
}
.phone-bezel {
  background: #1a1a1a;
  border-radius: 32px;
  padding: 10px;
  box-shadow:
    0 24px 64px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(255, 255, 255, 0.06),
    inset 0 0 0 1px rgba(255, 255, 255, 0.04);
  position: relative;
}
.phone-bezel::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 72px;
  height: 22px;
  background: #111;
  border-radius: 0 0 14px 14px;
  z-index: 5;
}
.phone-screen {
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 9 / 19.5;
  position: relative;
  background: var(--color-bg-surface);
}
.phone-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.phone-screen::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.07) 0%,
    transparent 40%,
    transparent 60%,
    rgba(255, 255, 255, 0.02) 100%
  );
  border-radius: 24px;
  pointer-events: none;
}
.phone-label {
  text-align: center;
  margin-top: 14px;
  opacity: 0;
  transform: translateY(6px);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.phone-mock:hover .phone-label {
  opacity: 1;
  transform: translateY(0);
}
.phone-mock:nth-child(3) .phone-label {
  opacity: 1;
  transform: translateY(0);
}
.phone-label-brand {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: var(--weight-semibold);
  color: var(--color-text);
  display: block;
  margin-bottom: 2px;
}
.phone-label-type {
  font-size: 11px;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

@media (max-width: 768px) {
  .phones-row {
    gap: 0;
    padding: 20px 0;
  }
  .phone-mock { width: 140px; }
  .phone-mock:nth-child(1),
  .phone-mock:nth-child(5) { display: none; }
  .phone-mock:nth-child(2) {
    transform: rotate(-8deg) translateX(16px) scale(0.92);
  }
  .phone-mock:nth-child(4) {
    transform: rotate(8deg) translateX(-16px) scale(0.92);
  }
  .phone-bezel { border-radius: 24px; padding: 8px; }
  .phone-bezel::before { width: 56px; height: 18px; border-radius: 0 0 10px 10px; top: 8px; }
  .phone-screen { border-radius: 18px; }
}
@media (max-width: 480px) {
  .phone-mock { width: 110px; }
  .phone-bezel { border-radius: 20px; padding: 6px; }
  .phone-screen { border-radius: 15px; }
}
