/* ═══════════════════════════════════════════════════
   BULKWORK SUITE · LANDING CSS
   Design: Elegant white · Fraunces serif · Generous space
   Inspired by: hoodserve.com level of polish
═══════════════════════════════════════════════════ */

*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}

:root {
  /* Core palette */
  --ink:        #0c0d10;
  --ink2:       #1e2028;
  --muted:      #6b7280;
  --muted2:     #9ca3af;
  --line:       #e5e7eb;
  --line2:      #f3f4f6;
  --surface:    #f9fafb;
  --white:      #fff;

  /* Brand */
  --indigo:     #4f46e5;
  --indigo-dk:  #3730a3;
  --indigo-lt:  #eef2ff;
  --indigo-bd:  #c7d2fe;

  /* Accents */
  --rose:       #e11d48;
  --rose-lt:    #fff1f3;
  --rose-bd:    #fecdd3;
  --amber:      #d97706;
  --amber-lt:   #fffbeb;
  --amber-bd:   #fde68a;
  --teal:       #0d9488;
  --teal-lt:    #f0fdfa;
  --teal-bd:    #99f6e4;
  --violet:     #7c3aed;
  --violet-lt:  #f5f3ff;
  --violet-bd:  #ddd6fe;

  /* Typography */
  --serif: 'Fraunces', Georgia, 'Times New Roman', serif;
  --sans:  'Inter', system-ui, -apple-system, sans-serif;

  /* Radii */
  --r2:  4px;
  --r4:  8px;
  --r8:  14px;
  --r12: 20px;
  --r16: 28px;
  --rF:  9999px;

  /* Shadows */
  --sh1: 0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --sh2: 0 4px 16px rgba(0,0,0,.07), 0 1px 4px rgba(0,0,0,.04);
  --sh3: 0 12px 40px rgba(0,0,0,.10), 0 2px 8px rgba(0,0,0,.05);
  --sh-indigo: 0 8px 28px rgba(79,70,229,.28);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: inherit; text-decoration: none; }
ul,ol { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
img { display: block; max-width: 100%; height: auto; }

/* ── Wrap ── */
.wrap {
  width: min(1200px, calc(100% - 48px));
  margin-inline: auto;
}

/* ── Utility ── */
.w-full { width: 100%; }

/* ══════════════════════════════
   ANIMATIONS
══════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s cubic-bezier(.215,.61,.355,1),
              transform .6s cubic-bezier(.215,.61,.355,1);
}
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: .1s; }
.reveal[data-d="2"] { transition-delay: .2s; }
.reveal[data-d="3"] { transition-delay: .3s; }
.reveal[data-d="4"] { transition-delay: .4s; }

/* ══════════════════════════════
   TYPOGRAPHY
══════════════════════════════ */
h1,h2,h3 {
  font-family: var(--serif);
  line-height: 1.06;
  letter-spacing: -.015em;
  color: var(--ink);
  font-weight: 600;
}
h1 { font-size: clamp(2.6rem, 5.5vw, 4.2rem); }
h2 { font-size: clamp(2rem, 4vw, 3.1rem); }
h3 { font-size: clamp(1.3rem, 2.2vw, 1.65rem); line-height: 1.2; }

h1 em, h2 em, h3 em {
  font-style: italic;
  color: var(--indigo);
}

.eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--indigo);
  margin-bottom: 1rem;
}
.eyebrow-lt { color: #a5b4fc; }

.section-sub {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
  max-width: 54ch;
  margin-top: .65rem;
}

/* ══════════════════════════════
   BUTTONS
══════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: var(--rF);
  font-family: var(--sans);
  font-size: .88rem;
  font-weight: 600;
  padding: .58rem 1.3rem;
  transition: background .18s ease, color .18s ease, box-shadow .18s ease, transform .18s ease, border-color .18s ease;
  white-space: nowrap;
  line-height: 1;
}
.btn-lg { font-size: .95rem; padding: .75rem 1.75rem; }

.btn-primary {
  background: var(--indigo);
  color: #fff;
  box-shadow: var(--sh-indigo);
}
.btn-primary:hover {
  background: var(--indigo-dk);
  box-shadow: 0 14px 36px rgba(79,70,229,.35);
  transform: translateY(-2px);
}
.btn-primary:active { transform: translateY(0); }

.btn-ghost {
  background: var(--white);
  color: var(--ink2);
  border: 1.5px solid var(--line);
}
.btn-ghost:hover { border-color: var(--indigo-bd); color: var(--indigo); background: var(--indigo-lt); }

.btn-white {
  background: #fff;
  color: var(--indigo-dk);
  font-weight: 700;
}
.btn-white:hover { background: var(--indigo-lt); transform: translateY(-2px); }

.btn-outline-white {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.4);
}
.btn-outline-white:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.7); }

.arr { font-style: normal; transition: transform .18s ease; }
.btn:hover .arr { transform: translateX(3px); }

/* ══════════════════════════════
   NAV
══════════════════════════════ */
.nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(255,255,255,.93);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .2s ease;
}
.nav.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,.08); }

.nav-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: 68px;
}

.nav-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  text-decoration: none;
}
.brand-mark {
  width: 38px; height: 38px;
  border-radius: var(--r4);
  background: var(--indigo);
  color: #fff;
  font-family: var(--sans);
  font-size: .72rem;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  letter-spacing: .02em;
  flex-shrink: 0;
}
.brand-name {
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -.01em;
}

.brand-name img {
  display: block;
  width: min(300px, 46vw);
  max-height: 44px;
  object-fit: contain;
  object-position: left center;
}

.footer .brand-name img {
  width: min(210px, 42vw);
  max-height: 34px;
}

.nav-links {
  display: flex;
  gap: 2px;
  margin-left: auto;
}
.nav-links a {
  font-size: .87rem;
  font-weight: 500;
  color: var(--muted);
  padding: .45rem .85rem;
  border-radius: var(--r4);
  transition: color .15s ease, background .15s ease;
}
.nav-links a:hover { color: var(--ink); background: var(--surface); }

.nav-ctas { display: flex; gap: 8px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  margin-left: auto;
}
.bar {
  display: block;
  width: 22px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .22s ease, opacity .22s ease;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 10px;
  padding: 16px 24px 20px;
  border-top: 1px solid var(--line);
  background: var(--white);
}
.mobile-menu.open { display: flex; }
.mobile-menu a { font-size: .95rem; font-weight: 500; color: var(--ink2); }

/* ══════════════════════════════
   HERO
══════════════════════════════ */
.hero {
  position: relative;
  padding: 90px 0 80px;
  overflow: hidden;
  background: var(--white);
}

/* Decorative background */
.hero-deco { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.deco-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid;
}
.deco-ring-1 {
  width: 800px; height: 800px;
  top: -420px; right: -260px;
  border-color: var(--indigo-bd);
  opacity: .35;
}
.deco-ring-2 {
  width: 560px; height: 560px;
  top: -280px; right: -120px;
  border-color: var(--indigo-bd);
  opacity: .25;
  background: radial-gradient(circle at 60% 40%, var(--indigo-lt) 0%, transparent 70%);
}
.deco-dot-grid {
  position: absolute;
  top: 0; left: 0;
  width: 50%; height: 100%;
  background-image: radial-gradient(circle, var(--line) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: .5;
  mask-image: linear-gradient(to right, transparent, rgba(0,0,0,.06) 30%, transparent 70%);
  -webkit-mask-image: linear-gradient(to right, transparent, rgba(0,0,0,.06) 30%, transparent 70%);
}

.hero-wrap {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

/* Hero text */
.hero-text { max-width: 580px; }

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--indigo-lt);
  color: var(--indigo);
  border: 1px solid var(--indigo-bd);
  border-radius: var(--rF);
  font-size: .77rem;
  font-weight: 600;
  letter-spacing: .03em;
  padding: .38rem 1rem;
  margin-bottom: 1.4rem;
}
.pill-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--indigo);
  flex-shrink: 0;
  animation: blink 2.4s ease-in-out infinite;
}
@keyframes blink {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: .4; transform: scale(.75); }
}

.hero h1 { margin-bottom: 1.25rem; }

.hero-sub {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.75;
  margin-bottom: 2.1rem;
  max-width: 50ch;
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 1.75rem;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: .8rem;
  color: var(--muted);
}
.proof-item {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.proof-icon {
  width: 14px; height: 14px;
  color: #16a34a;
  flex-shrink: 0;
}
.proof-sep { opacity: .4; }

/* ── App Mockup ── */
.hero-mock {
  position: relative;
  perspective: 1200px;
}

.mock-window {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r12);
  box-shadow: 0 32px 80px rgba(0,0,0,.13), 0 4px 16px rgba(0,0,0,.07);
  overflow: hidden;
  transform: rotateY(-4deg) rotateX(2deg);
  transition: transform .5s ease;
}
.hero-mock:hover .mock-window {
  transform: rotateY(0deg) rotateX(0deg);
}

.mock-titlebar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}
.mock-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
}
.mock-red    { background: #ff5f57; }
.mock-yellow { background: #ffbd2e; }
.mock-green  { background: #28c840; }
.mock-url {
  margin-left: 10px;
  font-size: .72rem;
  color: var(--muted2);
  font-family: var(--sans);
  font-weight: 400;
}

.mock-body {
  display: flex;
  height: 380px;
}

.mock-sidebar {
  width: 140px;
  flex-shrink: 0;
  background: var(--ink2);
  display: flex;
  flex-direction: column;
  padding: 16px 10px;
  gap: 4px;
}
.mock-logo-sm {
  font-family: var(--sans);
  font-size: .65rem;
  font-weight: 800;
  color: #fff;
  background: var(--indigo);
  width: 28px; height: 28px;
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  letter-spacing: .04em;
}
.mock-nav { display: flex; flex-direction: column; gap: 2px; }
.mock-link {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: .72rem;
  font-weight: 500;
  color: rgba(255,255,255,.45);
  padding: 7px 8px;
  border-radius: 6px;
  cursor: default;
  transition: background .15s, color .15s;
  line-height: 1;
}
.mock-link svg { width: 13px; height: 13px; flex-shrink: 0; }
.mock-link.active { background: rgba(255,255,255,.1); color: #fff; }

.mock-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.mock-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  border-bottom: 1px solid var(--line);
}
.mock-page-title {
  font-size: .8rem;
  font-weight: 700;
  color: var(--ink);
}
.mock-badge {
  font-size: .68rem;
  font-weight: 600;
  background: var(--indigo-lt);
  color: var(--indigo);
  border: 1px solid var(--indigo-bd);
  border-radius: var(--rF);
  padding: .22rem .65rem;
}

.mock-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}
.mock-stat {
  background: var(--white);
  padding: 10px 14px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.mock-stat-val {
  font-size: .88rem;
  font-weight: 700;
  color: var(--ink);
  font-family: var(--sans);
}
.mock-stat-lbl {
  font-size: .64rem;
  color: var(--muted2);
  text-transform: uppercase;
  letter-spacing: .06em;
}

.mock-table { flex: 1; overflow: hidden; }
.mock-th {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 8px;
  padding: 7px 14px;
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  font-size: .62rem;
  font-weight: 700;
  color: var(--muted2);
  text-transform: uppercase;
  letter-spacing: .07em;
}
.mock-tr {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 8px;
  align-items: center;
  padding: 9px 14px;
  border-bottom: 1px solid var(--line2);
  font-size: .73rem;
  color: var(--ink2);
}
.mock-tr-dim { opacity: .45; }
.mock-status {
  border-radius: var(--rF);
  font-size: .62rem;
  font-weight: 700;
  padding: .18rem .55rem;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.mock-active  { background: #dcfce7; color: #16a34a; }
.mock-queued  { background: var(--indigo-lt); color: var(--indigo); }
.mock-done    { background: var(--line2); color: var(--muted); }
.mock-label   { background: var(--violet-lt); color: var(--violet); }

/* Floating accent chips */
.mock-chip {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--rF);
  box-shadow: var(--sh2);
  font-size: .72rem;
  font-weight: 600;
  color: var(--ink2);
  padding: .45rem .85rem;
  white-space: nowrap;
  animation: float 4s ease-in-out infinite;
}
.mock-chip svg { width: 13px; height: 13px; flex-shrink: 0; }
.mock-chip-1 { bottom: -16px; left: -40px; animation-delay: 0s; }
.mock-chip-2 { top: 60px; right: -48px; animation-delay: 1.3s; }
.mock-chip-3 { bottom: 60px; right: -36px; animation-delay: 2.5s; }
@keyframes float {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}

/* ══════════════════════════════
   INDUSTRY STRIP
══════════════════════════════ */
.industry-strip {
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 1rem 0;
  overflow: hidden;
}
.industry-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.industry-label {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--muted2);
  white-space: nowrap;
  flex-shrink: 0;
}
.industry-list {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.industry-list li {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .82rem;
  font-weight: 500;
  color: var(--muted);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--rF);
  padding: .32rem .85rem;
}
.ind-icon { font-size: .85rem; }

.deep-dives {
  padding: 90px 0;
  background: var(--white);
}

.deep-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.deep-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--r12);
  background: var(--white);
  box-shadow: var(--sh1);
  transition: transform .3s ease, box-shadow .3s ease;
}

.deep-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--sh3);
}

.deep-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: top center;
  border-bottom: 1px solid var(--line);
  background: var(--surface);
  transition: transform .45s ease;
}

.deep-card:hover img {
  transform: scale(1.025);
}

.deep-card-body {
  padding: 1.35rem;
}

.deep-card-body h3 {
  margin-bottom: .7rem;
  font-family: var(--sans);
  font-size: 1.03rem;
  font-weight: 700;
  line-height: 1.35;
}

.deep-card-body p {
  margin-bottom: 1.2rem;
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.7;
}

.learn-more-btn {
  margin-top: .75rem;
}

/* ══════════════════════════════
   FEATURE TOUR
══════════════════════════════ */
.tour {
  padding: 100px 0;
  background: var(--white);
}

.section-head { margin-bottom: 2.5rem; }
.section-head h2 { margin-bottom: .4rem; }

/* Tabs */
.tabs {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  padding-bottom: 4px;
  margin-bottom: 2.5rem;
  scrollbar-width: none;
}
.tabs::-webkit-scrollbar { display: none; }

.tab {
  flex-shrink: 0;
  padding: .5rem 1.15rem;
  border: 1.5px solid var(--line);
  border-radius: var(--rF);
  background: var(--white);
  color: var(--muted);
  font-size: .84rem;
  font-weight: 600;
  transition: all .18s ease;
}
.tab:hover { border-color: var(--indigo-bd); color: var(--indigo); background: var(--indigo-lt); }
.tab.active { background: var(--indigo); color: #fff; border-color: var(--indigo); box-shadow: var(--sh-indigo); }

/* Panels */
.panel {
  display: none;
  grid-template-columns: minmax(300px, 5fr) minmax(0, 7fr);
  gap: 32px;
  align-items: start;
}
.panel.active { display: grid; }

/* Copy side */
.panel-copy {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r12);
  padding: 2.25rem 2rem;
  box-shadow: var(--sh1);
  position: sticky;
  top: 88px;
}

.panel-tag {
  display: inline-flex;
  align-items: center;
  border-radius: var(--rF);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .3rem .85rem;
  margin-bottom: 1rem;
}
.panel-tag-indigo { background: var(--indigo-lt); color: var(--indigo); }
.panel-tag-rose   { background: var(--rose-lt);   color: var(--rose); }
.panel-tag-amber  { background: var(--amber-lt);  color: var(--amber); }
.panel-tag-teal   { background: var(--teal-lt);   color: var(--teal); }
.panel-tag-violet { background: var(--violet-lt); color: var(--violet); }

.panel-copy h3 { margin-bottom: .9rem; }

.panel-copy > p {
  color: var(--muted);
  font-size: .95rem;
  line-height: 1.75;
  margin-bottom: 1.4rem;
}

/* Feature list */
.flist { display: flex; flex-direction: column; gap: 10px; margin-bottom: 1.85rem; }
.flist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .875rem;
  color: var(--ink2);
  line-height: 1.55;
}
.flist li::before {
  content: '';
  flex-shrink: 0;
  margin-top: 2px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background-color: var(--indigo-lt);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 10 10' fill='none'%3E%3Cpath d='M2 5l2 2 4-4' stroke='%234f46e5' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

/* Media side */
.panel-media {
  border-radius: var(--r12);
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--sh2);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 460px;
  transition: box-shadow .35s ease;
}
.panel-media:hover { box-shadow: var(--sh3); }

.media-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--indigo);
  background: var(--indigo-lt);
  border-bottom: 1px solid var(--indigo-bd);
  padding: .65rem 1.1rem;
  flex-shrink: 0;
}
.media-label-icon { width: 13px; height: 13px; }

.panel-media img {
  flex: 1;
  width: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform .5s ease;
}
.panel-media:hover img { transform: scale(1.018); }

/* Dark variant */
.panel-dark { background: #0d1017; border-color: #1e2536; }
.media-label-dark { background: #192235; color: #a5b4fc; border-bottom-color: #2a3a5e; }
.panel-dark img { object-fit: contain; background: #080c13; }

/* Placeholder */
.panel-placeholder { background: var(--surface); }
.placeholder-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 3rem 2rem;
  color: var(--muted2);
}
.placeholder-body p { font-size: .85rem; font-weight: 500; }

/* ══════════════════════════════
   WHY SECTION
══════════════════════════════ */
.why {
  padding: 100px 0;
  background: var(--surface);
  border-top: 1px solid var(--line);
}

.why-head { max-width: 640px; margin-bottom: 3.5rem; }
.why-head h2 { margin-bottom: .4rem; }

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.why-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r12);
  padding: 1.85rem 1.6rem;
  box-shadow: var(--sh1);
  position: relative;
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease;
}
.why-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--indigo-lt), var(--indigo-bd));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s ease;
}
.why-card:hover { transform: translateY(-5px); box-shadow: var(--sh3); }
.why-card:hover::after { transform: scaleX(1); }

.why-num {
  font-family: var(--serif);
  font-size: 3.5rem;
  font-weight: 300;
  font-style: italic;
  line-height: 1;
  color: var(--line);
  margin-bottom: .5rem;
  letter-spacing: -.02em;
}

.why-icon-wrap {
  width: 42px; height: 42px;
  border-radius: var(--r4);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
}
.why-icon-wrap svg { width: 20px; height: 20px; }

.why-icon-indigo { background: var(--indigo-lt); color: var(--indigo); }
.why-icon-rose   { background: var(--rose-lt);   color: var(--rose); }
.why-icon-amber  { background: var(--amber-lt);  color: var(--amber); }
.why-icon-teal   { background: var(--teal-lt);   color: var(--teal); }

.why-title {
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: .6rem;
  line-height: 1.3;
}
.why-body {
  font-size: .875rem;
  color: var(--muted);
  line-height: 1.68;
}

/* ══════════════════════════════
   CTA SECTION
══════════════════════════════ */
.cta-section {
  position: relative;
  padding: 100px 0;
  background: var(--indigo-dk);
  overflow: hidden;
  text-align: center;
}

.cta-inner-deco { position: absolute; inset: 0; pointer-events: none; }
.cta-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.1);
}
.cta-ring-1 { width: 700px; height: 700px; top: -350px; right: -200px; }
.cta-ring-2 { width: 500px; height: 500px; bottom: -300px; left: -150px; }

.cta-box {
  position: relative;
  max-width: 720px;
  margin-inline: auto;
}
.cta-box h2 {
  color: #fff;
  font-size: clamp(1.9rem, 4vw, 3rem);
  margin-bottom: 1rem;
}
.cta-box h2 em { color: #a5b4fc; }

.cta-sub {
  color: rgba(255,255,255,.65);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 2.25rem;
  max-width: 50ch;
  margin-inline: auto;
}

.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ══════════════════════════════
   FOOTER
══════════════════════════════ */
.footer {
  background: var(--white);
  border-top: 1px solid var(--line);
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-copy, .footer-copy a { color: var(--muted); font-size: .82rem; }
.footer-copy a:hover { color: var(--indigo); }

/* ══════════════════════════════
   RESPONSIVE
══════════════════════════════ */
@media (max-width: 1100px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .deep-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 960px) {
  .hero-wrap { grid-template-columns: 1fr; gap: 60px; }
  .hero-text { max-width: 100%; }
  .hero-mock { max-width: 580px; margin-inline: auto; }
  .mock-window { transform: none; }
  .mock-chip-2, .mock-chip-3 { right: -16px; }
  .mock-chip-1 { left: -16px; }
  .panel { grid-template-columns: 1fr; }
  .panel-copy { position: static; }
  .panel-media { min-height: 360px; }
}

@media (max-width: 768px) {
  .nav-links, .nav-ctas { display: none; }
  .nav-toggle { display: flex; }
  .hero { padding: 60px 0 52px; }
  .tour, .why, .deep-dives { padding: 70px 0; }
  .cta-section { padding: 70px 0; }
  .industry-strip { padding: .8rem 0; }
  .mock-body { height: 300px; }
  .mock-sidebar { width: 110px; }
}

@media (max-width: 580px) {
  .why-grid, .deep-grid { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { width: 100%; justify-content: center; }
  .cta-btns { flex-direction: column; align-items: center; }
  .cta-btns .btn { width: 100%; max-width: 320px; justify-content: center; }
  .mock-chip { display: none; }
  .footer-inner { flex-direction: column; align-items: flex-start; padding: 18px 0; min-height: auto; }
}

@media (prefers-reduced-motion: reduce) {
  .reveal, .panel-media img, .why-card, .mock-chip, .mock-window {
    transition: none; animation: none;
  }
  .pill-dot { animation: none; }
}
