/* ===== Tessera Premium Design System ===== */
:root {
  --indigo: #4F46E5;
  --indigo-d: #3730A3;
  --indigo-dd: #1E1B4B;
  
  --teal: #0EA5A4;
  --teal-d: #0D9488;
  
  --coral: #EF4444;
  --amber: #F59E0B;
  
  --ink: #0F172A;
  --slate: #334155;
  --mute: #64748B;
  
  --mist: #F1F5F9;
  --mint: #ECFDF5;
  --cloud: #F8FAFC;
  --line: #E2E8F0;
  
  --white: #ffffff;
  --radius: 12px;
  --radius-lg: 20px;
  
  --shadow: 0 12px 30px -10px rgba(15, 23, 42, 0.12), 0 1px 3px rgba(15, 23, 42, 0.05);
  --shadow-sm: 0 4px 6px -1px rgba(15, 23, 42, 0.06), 0 1px 2px -1px rgba(15, 23, 42, 0.03);
  --maxw: 1200px;
  
  --font-body: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-heading: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: 96px 0;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink);
  font-weight: 800;
}

h1 {
  font-size: clamp(2.5rem, 5.5vw, 4.2rem);
}

h2 {
  font-size: clamp(2rem, 3.6vw, 3rem);
}

h3 {
  font-size: 1.35rem;
}

p {
  color: var(--slate);
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.8rem;
  color: var(--indigo);
  margin-bottom: 16px;
}

.lead {
  font-size: 1.2rem;
  color: var(--slate);
  max-width: 680px;
  line-height: 1.6;
}

.center {
  text-align: center;
}

.center .lead {
  margin: 0 auto;
}

.brand-text {
  color: var(--indigo);
}

/* Nav */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.nav .wrap {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 80px;
}

.brand {
  font-family: var(--font-heading);
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.45rem;
  color: var(--ink);
  letter-spacing: -0.02em;
  justify-self: start;
}

.brand .dot {
  width: 14px;
  height: 14px;
  background: var(--teal);
  transform: rotate(45deg);
  border-radius: 3px;
}

.nav-links {
  display: flex;
  gap: 28px;
  justify-content: center;
}

.nav-links a {
  font-family: var(--font-heading);
  color: var(--slate);
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.15s;
}

.nav-links a:hover, .nav-links a.active {
  color: var(--indigo);
}

.nav-cta {
  justify-self: end;
  display: flex;
  gap: 16px;
  align-items: center;
}

.btn {
  font-family: var(--font-heading);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 12px 24px;
  border-radius: var(--radius);
  transition: transform 0.15s, box-shadow 0.15s, background-color 0.15s, color 0.15s;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--indigo);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(79, 70, 229, 0.2);
}

.btn-primary:hover {
  background: var(--indigo-d);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(79, 70, 229, 0.3);
}

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

.btn-ghost:hover {
  background: var(--cloud);
  color: var(--indigo-d);
}

.btn-light {
  background: var(--white);
  color: var(--ink);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.btn-light:hover {
  background: var(--cloud);
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

.btn-lg {
  padding: 16px 32px;
  font-size: 1.05rem;
}

/* Hero */
.hero {
  padding: 96px 0 80px;
  background: var(--cloud);
  border-bottom: 1px solid var(--line);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero h1 {
  margin-bottom: 24px;
}

.hero .lead {
  margin-bottom: 36px;
}

.pill {
  font-family: var(--font-heading);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--indigo-d);
  box-shadow: var(--shadow-sm);
  margin-bottom: 28px;
}

.pill .tag {
  background: var(--mint);
  color: var(--teal-d);
  font-weight: 800;
  padding: 2px 10px;
  border-radius: 999px;
  font-size: 0.75rem;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.hero-note {
  font-size: 0.9rem;
  color: var(--mute);
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.hero-note span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.tick {
  color: var(--teal-d);
  font-weight: 900;
}

/* Logos / Proof */
.proof {
  padding: 48px 0;
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.proof p {
  text-align: center;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mute);
  font-weight: 700;
  margin-bottom: 24px;
}

.proof-row {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  align-items: center;
}

.lg {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--slate);
  font-weight: 800;
  font-size: 1.15rem;
  opacity: 0.8;
  letter-spacing: -0.02em;
}

.lg svg {
  width: 24px;
  height: 24px;
  flex: none;
}

/* Trust Section */
.trust-badges {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.tb {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 12px 20px;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--ink);
  box-shadow: var(--shadow-sm);
}

.tb .d {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
  flex: none;
}

/* Cards & Grids */
.grid {
  display: grid;
  gap: 24px;
}

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

.g2 {
  grid-template-columns: repeat(2, 1fr);
}

.g4 {
  grid-template-columns: repeat(4, 1fr);
}

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--indigo);
}

.card .ic {
  width: 52px;
  height: 52px;
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  background: var(--mist);
  color: var(--indigo);
}

.card .ic.t {
  background: var(--mint);
  color: var(--teal-d);
}

.card .ic svg {
  width: 26px;
  height: 26px;
}

.card h3 {
  margin-bottom: 10px;
}

.card p {
  font-size: 0.97rem;
}

.tint {
  background: var(--cloud);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.soft {
  background: var(--white);
}

/* Stat Band */
.stats {
  background: var(--ink);
  color: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.stats h2 {
  color: var(--white);
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 16px;
}

.stat {
  padding: 12px 8px;
  border-left: 2px solid var(--indigo);
  padding-left: 20px;
}

.stat .big {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--white);
  line-height: 1.1;
}

.stat .lbl {
  color: var(--mute);
  font-size: 0.95rem;
  margin-top: 8px;
}

/* Section Head */
.sec-head {
  max-width: 720px;
  margin-bottom: 56px;
}

.sec-head.center {
  margin-left: auto;
  margin-right: auto;
}

/* Feature Split */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.split.rev .txt {
  order: 2;
}

.feat-list {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feat-list li {
  list-style: none;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.feat-list .bullet {
  flex: none;
  width: 26px;
  height: 26px;
  border-radius: var(--radius);
  background: var(--mist);
  color: var(--indigo);
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 0.85rem;
  margin-top: 2px;
}

.feat-list b {
  color: var(--ink);
}

.feat-list span {
  color: var(--slate);
  font-size: 1rem;
}

/* Custom Animated HRMS Dashboard Mockup */
.hrms-dashboard {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: 0 32px 64px rgba(15, 23, 42, 0.08), 0 8px 24px rgba(15, 23, 42, 0.04);
  overflow: hidden;
  height: 540px;
  width: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.hrms-dashboard:hover {
  transform: translateY(-4px);
  box-shadow: 0 40px 80px rgba(15, 23, 42, 0.12), 0 12px 32px rgba(15, 23, 42, 0.06);
}

.dash-header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 20px;
  background: var(--cloud);
  border-bottom: 1px solid var(--line);
}

.dash-controls {
  display: flex;
  gap: 8px;
}

.dash-controls i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: block;
  background: #E2E8F0;
}

.dash-controls i:nth-child(1) { background: #FF5F56; }
.dash-controls i:nth-child(2) { background: #FFBD2E; }
.dash-controls i:nth-child(3) { background: #27C93F; }

.dash-url {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  color: var(--slate);
  background: var(--white);
  border: 1px solid var(--line);
  padding: 4px 20px;
  border-radius: 6px;
  flex: 1;
  text-align: center;
  max-width: 320px;
  margin: 0 auto;
  font-weight: 500;
}

.dash-container {
  display: flex;
  flex: 1;
  overflow: hidden;
  background: var(--white);
}

.dash-sidebar {
  width: 160px;
  background: var(--cloud);
  border-right: 1px solid var(--line);
  padding: 20px 12px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.dash-logo {
  font-family: var(--font-heading);
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--ink);
  padding-left: 8px;
}

.dash-logo .dot {
  width: 10px;
  height: 10px;
  background: var(--teal);
  transform: rotate(45deg);
  border-radius: 2px;
}

.dash-nav {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.dash-nav a {
  font-family: var(--font-heading);
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  font-size: 0.82rem;
  color: var(--slate);
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.15s;
  cursor: pointer;
}

.dash-nav a.active, .dash-nav a:hover {
  background: var(--white);
  color: var(--indigo);
  box-shadow: 0 2px 4px rgba(15, 23, 42, 0.03);
}

.nav-ic {
  width: 14px;
  height: 14px;
  opacity: 0.7;
}

.dash-nav a.active .nav-ic {
  color: var(--indigo);
  opacity: 1;
}

.dash-main {
  flex: 1;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: var(--white);
  overflow-y: auto;
}

.dash-banner {
  background: #EEF2FF;
  border: 1px solid rgba(79, 70, 229, 0.15);
  border-radius: 12px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.banner-pulse {
  width: 8px;
  height: 8px;
  background: var(--indigo);
  border-radius: 50%;
  position: relative;
  display: inline-block;
}

.banner-pulse::after {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 2px solid var(--indigo);
  animation: pulseRing 1.8s cubic-bezier(0.455, 0.03, 0.515, 0.955) infinite;
  opacity: 0;
}

.banner-txt {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--indigo-d);
}

.dash-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 16px;
}

.dash-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 105px;
}

.dash-card.wide {
  grid-column: span 2;
  min-height: 95px;
}

.card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.card-title {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--slate);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.card-badge {
  background: #ECFDF5;
  color: #10B981;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 6px;
}

.card-number {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--ink);
  line-height: 1.1;
  margin: 6px 0 4px;
}

.card-meta {
  font-size: 0.72rem;
  color: var(--slate);
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
}

.online-indicator {
  width: 6px;
  height: 6px;
  background: #10B981;
  border-radius: 50%;
}

.split-meter {
  height: 8px;
  background: #F1F5F9;
  border-radius: 4px;
  overflow: hidden;
  margin: 10px 0;
}

.split-fill {
  width: 70%;
  height: 100%;
  background: var(--indigo);
  border-radius: 4px;
  animation: meterFill 1.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.split-labels {
  display: flex;
  gap: 16px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--slate);
}

.color-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
  margin-right: 6px;
}

.color-dot.fiat { background: var(--indigo); }
.color-dot.usdc { background: var(--teal); }

.dash-feed {
  grid-column: span 2;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px 16px;
  background: var(--white);
}

.feed-head {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--slate);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 12px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 8px;
}

.feed-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.feed-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(226, 232, 240, 0.5);
  animation: feedSlideIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.feed-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.feed-item:nth-child(1) { animation-delay: 0.1s; }
.feed-item:nth-child(2) { animation-delay: 0.25s; }
.feed-item:nth-child(3) { animation-delay: 0.4s; }

.feed-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #EEF2FF;
  color: var(--indigo);
  display: flex;
  align-items: center;
  justify-content: center;
}

.feed-icon svg {
  width: 14px;
  height: 14px;
}

.feed-icon.secure {
  background: #ECFDF5;
  color: #10B981;
}

.feed-icon.device {
  background: #FFFBEB;
  color: #D97706;
}

.feed-details {
  flex: 1;
  display: flex;
  flex-direction: column;
  line-height: 1.25;
  text-align: left;
}

.feed-title {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--ink);
}

.feed-sub {
  font-size: 0.7rem;
  color: var(--slate);
  font-weight: 500;
}

.feed-time {
  font-size: 0.68rem;
  color: var(--slate);
  font-weight: 500;
}

@keyframes meterFill {
  from { width: 0; }
  to { width: 70%; }
}

@keyframes feedSlideIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulseRing {
  0% {
    transform: scale(0.7);
    opacity: 0.8;
  }
  80%, 100% {
    transform: scale(1.8);
    opacity: 0;
  }
}

/* Pure CSS/SVG Product Mockups */
.mock {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.mock-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 20px;
  background: var(--cloud);
  border-bottom: 1px solid var(--line);
}

.mock-bar i {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  display: block;
}

.mock-bar i:nth-child(1) { background: #FF6058; }
.mock-bar i:nth-child(2) { background: #FFBD2E; }
.mock-bar i:nth-child(3) { background: #28C840; }

.mock-bar .url {
  margin-left: 16px;
  font-size: 0.8rem;
  color: var(--mute);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 4px 14px;
}

.mock-body {
  display: grid;
  grid-template-columns: 180px 1fr;
  min-height: 360px;
}

.mside {
  background: var(--ink);
  padding: 24px 18px;
  color: var(--white);
  border-right: 1px solid var(--line);
}

.mside .ml {
  font-family: var(--font-heading);
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.1rem;
  margin-bottom: 24px;
}

.mside .ml .dot {
  width: 12px;
  height: 12px;
  background: var(--teal);
  transform: rotate(45deg);
  border-radius: 3px;
}

.mnav {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.mnav a {
  font-size: 0.88rem;
  color: var(--mute);
  padding: 10px 14px;
  border-radius: 8px;
  font-weight: 600;
}

.mnav a.on {
  background: var(--indigo);
  color: var(--white);
}

.mmain {
  padding: 24px;
  background: var(--white);
}

.mtitle {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.15rem;
  margin-bottom: 4px;
}

.msub {
  font-size: 0.85rem;
  color: var(--mute);
  margin-bottom: 20px;
}

.mrow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 16px;
}

.mstat {
  background: var(--cloud);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
}

.mstat .n {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--indigo);
}

.mstat .l {
  font-size: 0.75rem;
  color: var(--mute);
  margin-top: 4px;
}

.mstat.t .n {
  color: var(--teal-d);
}

.mcard {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
}

.mcard .h {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--slate);
  margin-bottom: 12px;
  display: flex;
  justify-content: space-between;
}

.bar {
  height: 8px;
  border-radius: 4px;
  background: var(--mist);
  overflow: hidden;
  margin: 8px 0;
}

.bar i {
  display: block;
  height: 100%;
  border-radius: 4px;
  background: var(--indigo);
}

.legend {
  display: flex;
  gap: 16px;
  font-size: 0.75rem;
  color: var(--slate);
  margin-top: 8px;
}

.legend span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.sw {
  width: 10px;
  height: 10px;
  border-radius: 3px;
  display: inline-block;
}

.row-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.88rem;
}

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

.avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--indigo);
  color: var(--white);
  display: inline-grid;
  place-items: center;
  font-size: 0.75rem;
  font-weight: 800;
  margin-right: 10px;
}

.who {
  display: flex;
  align-items: center;
}

.badge {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 999px;
  letter-spacing: 0.02em;
}

.badge.ok {
  background: var(--mint);
  color: var(--teal-d);
}

.badge.warn {
  background: #FEF2F2;
  color: var(--coral);
}

.badge.idg {
  background: var(--mist);
  color: var(--indigo);
}

/* Donut Chart Mock */
.donut {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: conic-gradient(var(--indigo) 0 70%, var(--teal) 70% 100%);
  position: relative;
  margin: 0 auto;
}

.donut::after {
  content: "";
  position: absolute;
  inset: 20px;
  background: var(--white);
  border-radius: 50%;
}

.donut .c {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-weight: 800;
  color: var(--indigo-d);
  font-size: 1rem;
  z-index: 2;
  text-align: center;
  line-height: 1.2;
}

.donut .c small {
  display: block;
  font-size: 0.65rem;
  color: var(--slate);
  margin-top: 1px;
  font-weight: 600;
}

/* Steps */
.steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  align-items: start;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.step:hover {
  border-color: var(--indigo);
  box-shadow: var(--shadow);
}

.step .num {
  font-family: var(--font-heading);
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  background: var(--indigo);
  color: var(--white);
  font-weight: 800;
  font-size: 1.25rem;
  display: grid;
  place-items: center;
}

.step h3 {
  margin-bottom: 6px;
}

/* Pricing plans */
.price-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: stretch;
}

.plan {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
}

.plan.pop {
  border: 2px solid var(--indigo);
  box-shadow: var(--shadow);
  position: relative;
}

.plan.pop .flag {
  font-family: var(--font-heading);
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--indigo);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 6px 16px;
  border-radius: 999px;
  text-transform: uppercase;
}

.plan .pname {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--ink);
}

.plan .seg {
  font-size: 0.85rem;
  color: var(--mute);
  margin: 6px 0 20px;
  min-height: 36px;
  line-height: 1.4;
}

.plan .pr {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--ink);
  line-height: 1;
}

.plan .pr small {
  font-size: 0.9rem;
  color: var(--mute);
  font-weight: 600;
}

.plan .pepm {
  font-size: 0.88rem;
  color: var(--teal-d);
  font-weight: 700;
  margin: 6px 0 24px;
}

.plan ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
  flex: 1;
}

.plan li {
  font-size: 0.9rem;
  color: var(--slate);
  display: flex;
  gap: 10px;
  line-height: 1.4;
}

.plan li::before {
  content: "✓";
  color: var(--teal-d);
  font-weight: 900;
}

.plan .btn {
  width: 100%;
  justify-content: center;
}

/* Rate Card Table */
.cmp {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.cmp th, .cmp td {
  padding: 16px 20px;
  text-align: left;
  font-size: 0.95rem;
  border-bottom: 1px solid var(--line);
}

.cmp thead th {
  font-family: var(--font-heading);
  background: var(--ink);
  color: var(--white);
  font-weight: 700;
}

.cmp tbody td:first-child {
  font-weight: 700;
  color: var(--ink);
}

.cmp tbody tr:nth-child(even) {
  background: var(--cloud);
}

.cmp .yes {
  color: var(--teal-d);
  font-weight: 800;
}

.cmp .no {
  color: var(--coral);
  font-weight: 700;
}

.cmp .col-t {
  background: var(--mist);
}

/* Large CTA Band */
.cta {
  background: var(--indigo-d);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 80px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta h2 {
  color: var(--white);
  margin-bottom: 16px;
}

.cta p {
  color: var(--mist);
  max-width: 600px;
  margin: 0 auto 32px;
  font-size: 1.1rem;
}

.cta .dia {
  position: absolute;
  width: 120px;
  height: 120px;
  background: var(--teal);
  transform: rotate(45deg);
  border-radius: var(--radius);
  opacity: 0.2;
}

.cta .dia.a {
  top: -40px;
  right: 60px;
}

.cta .dia.b {
  bottom: -50px;
  left: 40px;
  background: var(--coral);
  opacity: 0.15;
}

/* Quote */
.quote {
  background: var(--mist);
  border-radius: var(--radius-lg);
  padding: 56px;
}

.quote .q {
  font-family: var(--font-heading);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.4;
}

.quote .by {
  margin-top: 24px;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--indigo);
}

.quote .by small {
  display: block;
  color: var(--mute);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.9rem;
  margin-top: 4px;
}

/* Footer */
.footer {
  background: var(--ink);
  color: var(--mute);
  padding: 80px 0 40px;
  border-top: 1px solid var(--line);
}

.footer .cols {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer .brand {
  color: var(--white);
  margin-bottom: 16px;
}

.footer p {
  color: var(--mute);
  font-size: 0.95rem;
  max-width: 300px;
  line-height: 1.6;
}

.footer h4 {
  font-family: var(--font-heading);
  color: var(--white);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer a {
  display: block;
  color: var(--mute);
  font-size: 0.95rem;
  padding: 6px 0;
  transition: color 0.15s;
}

.footer a:hover {
  color: var(--white);
}

.footer .bot {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.88rem;
}

.disclaimer {
  font-size: 0.68rem;
  color: var(--mute);
  max-width: 960px;
  margin-top: 24px;
  line-height: 1.5;
  opacity: 0.75;
}

/* Interactive Capability Explorer */
.tabs {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 48px;
}

.tab {
  font-family: var(--font-heading);
  padding: 12px 24px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--white);
  font-weight: 700;
  color: var(--slate);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.18s;
  font-size: 0.95rem;
}

.tab:hover {
  border-color: var(--indigo);
  color: var(--indigo);
  transform: translateY(-1px);
}

.tab.active {
  background: var(--indigo);
  color: var(--white);
  border-color: var(--indigo);
  box-shadow: 0 4px 14px rgba(79, 70, 229, 0.25);
}

.tab .tdot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.6;
}

.trigs {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.explorer-panel {
  display: none;
}

.explorer-panel.active {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  animation: fadeUp 0.45s ease-out;
}

#as-step1, #as-step2, #as-step3, #as-loop, #as-sig, #as-who {
  transition: opacity 0.25s ease;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.explorer-panel .tag-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.chip {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--mist);
  color: var(--indigo);
}

.chip.t {
  background: var(--mint);
  color: var(--teal-d);
}

/* Pay-split studio */
.studio {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 64px;
  align-items: center;
}

.studio-donut {
  width: 210px;
  height: 210px;
  border-radius: 50%;
  position: relative;
  margin: 0 auto;
  transition: background 0.15s;
}

.studio-donut::after {
  content: "";
  position: absolute;
  inset: 32px;
  background: var(--white);
  border-radius: 50%;
  z-index: 1;
}

.studio-donut .c {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  z-index: 2;
  text-align: center;
}

.studio-donut .c .pct {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--indigo);
  line-height: 1;
}

.studio-donut .c .pl {
  font-size: 0.85rem;
  color: var(--mute);
  margin-top: 6px;
  font-weight: 600;
}

.slider-wrap {
  margin: 8px 0 24px;
}

.slider-wrap .vlabels {
  display: flex;
  justify-content: space-between;
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 12px;
}

.slider-wrap .vlabels .f {
  color: var(--indigo);
}

.slider-wrap .vlabels .s {
  color: var(--teal-d);
}

input[type=range] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 10px;
  border-radius: 6px;
  background: var(--line);
  outline: none;
  cursor: pointer;
}

input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--white);
  border: 4px solid var(--indigo);
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  cursor: pointer;
}

input[type=range]::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--white);
  border: 4px solid var(--indigo);
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  cursor: pointer;
}

.payout-rows {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
}

.payout-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--cloud);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px 20px;
}

.payout-row .who {
  font-weight: 600;
  color: var(--ink);
  font-size: 0.95rem;
}

.payout-row .amt {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--indigo);
}

.payout-row.s .amt {
  color: var(--teal-d);
}

.settle {
  margin-top: 16px;
  font-size: 0.95rem;
  color: var(--slate);
  display: flex;
  align-items: center;
  gap: 8px;
}

.settle b {
  color: var(--teal-d);
}

/* Savings Calculator */
.calc {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.calc-field {
  margin-bottom: 24px;
}

.calc-field label {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 12px;
  font-size: 0.98rem;
}

.calc-field label b {
  color: var(--indigo);
  font-size: 1.1rem;
}

.calc-result {
  background: var(--indigo-d);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 44px;
  text-align: center;
  box-shadow: var(--shadow);
}

.calc-result .rlabel {
  font-family: var(--font-heading);
  color: var(--mist);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.calc-result .save {
  font-family: var(--font-heading);
  font-size: 3.4rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 8px 0 4px;
  color: #34D399; /* solid active green */
}

.calc-result .sub {
  color: var(--mist);
  font-size: 0.95rem;
  margin-bottom: 24px;
}

.calc-compare {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 8px;
}

.calc-compare .box {
  flex: 1;
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 16px;
}

.calc-compare .box .n {
  font-family: var(--font-heading);
  font-size: 1.55rem;
  font-weight: 800;
}

.calc-compare .box .l {
  font-size: 0.78rem;
  color: var(--mute);
  margin-top: 4px;
}

.calc-compare .box.t {
  background: rgba(13, 166, 164, 0.15);
  border: 1px solid var(--teal);
}

/* Bento Grid */
.bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 160px;
  gap: 20px;
}

.bento .b {
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  overflow: hidden;
  position: relative;
}

.bento .b:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--indigo);
}

.bento .b h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.bento .b p {
  font-size: 0.88rem;
  line-height: 1.5;
}

.bento .b.wide {
  grid-column: span 2;
}

.bento .b.tall {
  grid-row: span 2;
}

.bento .b.dark {
  background: var(--indigo-d);
  border: none;
}

.bento .b.dark h3, .bento .b.dark p {
  color: var(--white);
}

.bento .b.dark p {
  color: var(--mist);
}

.bento .b.teal {
  background: var(--teal-d);
  border: none;
}

.bento .b.teal h3, .bento .b.teal p {
  color: var(--white);
}

.bento .b.teal p {
  color: var(--mint);
}

.bento .b.coral {
  background: var(--coral);
  border: none;
}

.bento .b.coral h3, .bento .b.coral p {
  color: var(--white);
}

.bento .b.coral p {
  color: #FEE2E2;
}

.bento .b.amber {
  background: var(--amber);
  border: none;
}

.bento .b.amber h3, .bento .b.amber p {
  color: var(--white);
}

.bento .b.amber p {
  color: #FEF3C7;
}

.bento .big-n {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--indigo);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 4px;
}

.bento .b.dark .big-n, .bento .b.teal .big-n, .bento .b.coral .big-n, .bento .b.amber .big-n {
  color: var(--white);
}

.bento .b .bi {
  font-size: 1.6rem;
  margin-bottom: 12px;
  display: block;
  line-height: 1;
}

/* Human / Happy Team */
.human {
  background: var(--cloud);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.team-panel {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 60px 32px 48px;
  text-align: center;
  overflow: hidden;
}

.team-stack {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.person {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 5px solid var(--white);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.15);
  margin-left: -20px;
  overflow: hidden;
  transition: transform 0.22s, box-shadow 0.22s;
  background: var(--cloud);
}

.person:first-child {
  margin-left: 0;
}

.person:hover {
  transform: translateY(-12px) scale(1.08);
  z-index: 6;
  box-shadow: 0 16px 30px rgba(15, 23, 42, 0.25);
}

.person svg {
  width: 100%;
  height: 100%;
  display: block;
}

.float {
  font-family: var(--font-heading);
  position: absolute;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 10px 16px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--indigo-d);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  gap: 8px;
  animation: bob 4.5s ease-in-out infinite;
}

.float .e {
  font-size: 1.1rem;
}

.float.f1 { top: 36px; left: 36px; animation-delay: 0.2s; }
.float.f2 { top: 60px; right: 40px; animation-delay: 1.2s; }
.float.f3 { bottom: 120px; left: 48px; animation-delay: 0.7s; }
.float.f4 { bottom: 96px; right: 48px; animation-delay: 1.7s; }

@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.happy-strip {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.happy-strip .hs .n {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--indigo);
  letter-spacing: -0.02em;
}

.happy-strip .hs .l {
  font-size: 0.85rem;
  color: var(--slate);
}

.team-cap {
  font-size: 1.1rem;
  color: var(--slate);
  max-width: 560px;
  margin: 0 auto 32px;
}

/* AI Companion Chat */
.companion {
  background: var(--white);
}

.relief {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.relief .mood {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 18px;
  box-shadow: var(--shadow-sm);
}

.relief .mood .face {
  font-size: 1.3rem;
}

.relief .mood .ml {
  font-weight: 700;
  color: var(--slate);
  font-size: 0.88rem;
}

.relief .mood.happy {
  background: var(--mint);
  border-color: transparent;
}

.relief .mood.happy .ml {
  color: var(--teal-d);
}

.relief .arrow {
  color: var(--indigo);
  font-weight: 900;
  font-size: 1.4rem;
}

.chat {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
  max-width: 460px;
  margin: 0 auto;
}

.chat-head {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  background: var(--indigo-d);
  color: var(--white);
}

.chat-head .orb {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  display: grid;
  place-items: center;
  font-size: 1.3rem;
  color: var(--teal);
}

.chat-head .nm {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.05rem;
}

.chat-head .st {
  font-size: 0.78rem;
  opacity: 0.9;
}

.chat-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 280px;
  background: var(--cloud);
}

.msg {
  max-width: 85%;
  padding: 12px 16px;
  border-radius: 16px;
  font-size: 0.92rem;
  line-height: 1.45;
  animation: fadeUp 0.35s ease-out;
}

.msg.bot {
  background: var(--white);
  border: 1px solid var(--line);
  border-bottom-left-radius: 4px;
  align-self: flex-start;
  color: var(--ink);
}

.msg.user {
  background: var(--indigo);
  color: var(--white);
  border-bottom-right-radius: 4px;
  align-self: flex-end;
}

.typing {
  display: inline-flex;
  gap: 5px;
  padding: 4px 0;
}

.typing span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--mute);
  animation: blink 1.2s infinite;
}

.typing span:nth-child(2) { animation-delay: 0.2s; }
.typing span:nth-child(3) { animation-delay: 0.4s; }

@keyframes blink {
  0%, 80%, 100% { opacity: 0.3; }
  40% { opacity: 1; }
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 16px;
  border-top: 1px solid var(--line);
  background: var(--white);
}

.qchip {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--cloud);
  color: var(--indigo-d);
  cursor: pointer;
  transition: all 0.15s;
}

.qchip:hover {
  background: var(--mist);
  border-color: var(--indigo);
  transform: translateY(-1px);
}

.qchip.active {
  background: var(--indigo);
  color: var(--white);
  border-color: var(--indigo);
}

/* Accessibility: Focus */
:focus-visible {
  outline: 3px solid var(--indigo);
  outline-offset: 3px;
  border-radius: 8px;
}

.btn:focus-visible {
  outline-color: var(--white);
  box-shadow: 0 0 0 3px var(--indigo);
}

/* CSS Mock Visualizations */
.viz-bars {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  height: 140px;
  padding: 16px 8px 0;
}

.viz-bars .bcol {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  height: 100%;
  justify-content: flex-end;
}

.viz-bars .bcol i {
  width: 100%;
  border-radius: 4px 4px 0 0;
  background: var(--indigo);
  display: block;
}

.viz-bars .bcol.t i {
  background: var(--teal);
}

.viz-bars .bcol span {
  font-size: 0.7rem;
  color: var(--mute);
  font-weight: 600;
}

.ring-wrap {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 8px 4px;
}

.ring {
  width: 110px;
  height: 110px;
  flex: none;
}

.ring .track {
  stroke: var(--mist);
  stroke-width: 11;
  fill: none;
}

.ring .val {
  stroke: var(--teal);
  stroke-width: 11;
  fill: none;
  stroke-linecap: round;
  transform: rotate(-90deg);
  transform-origin: 50% 50%;
}

.ring .rc {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 800;
  fill: var(--indigo);
}

.kanban {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.kcol {
  background: var(--cloud);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px;
}

.kcol .kh {
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--mute);
  margin-bottom: 10px;
}

.kcard {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
  box-shadow: var(--shadow-sm);
}

.kcard:last-child {
  margin-bottom: 0;
}

.kcard .km {
  font-size: 0.68rem;
  color: var(--mute);
  font-weight: 500;
  margin-top: 4px;
}

.devgrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.devtile {
  background: var(--cloud);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
  text-align: center;
}

.devtile .di {
  font-size: 1.6rem;
  line-height: 1;
}

.devtile .dn {
  font-weight: 700;
  font-size: 0.85rem;
  margin-top: 6px;
}

.devtile .ds {
  font-size: 0.72rem;
  color: var(--mute);
  margin-top: 2px;
}

.stepper {
  position: relative;
  padding-left: 10px;
}

.stepper .stp {
  position: relative;
  padding: 0 0 20px 28px;
}

.stepper .stp:last-child {
  padding-bottom: 0;
}

.stepper .stp::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 18px;
  bottom: -2px;
  width: 2px;
  background: var(--line);
}

.stepper .stp:last-child::before {
  display: none;
}

.stepper .stp .dotc {
  position: absolute;
  left: 0;
  top: 2px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--teal);
  display: grid;
  place-items: center;
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 900;
}

.stepper .stp .sl {
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--ink);
}

.stepper .stp .sm {
  font-size: 0.75rem;
  color: var(--mute);
}

.hbars {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.hbar .hl {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
}

.hbar .hl b {
  color: var(--teal-d);
}

/* Slim Mid-Page CTA */
.cta-slim {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  background: var(--mist);
  border-radius: var(--radius-lg);
  padding: 36px 44px;
  flex-wrap: wrap;
}

.cta-slim h3 {
  font-size: 1.55rem;
  color: var(--ink);
  margin-bottom: 4px;
}

.cta-slim p {
  font-size: 1rem;
}

/* Moat Cards */
.moat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.moat-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 32px 32px 96px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  overflow: hidden;
}

.moat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--indigo);
}

.moat-card .mi {
  position: absolute;
  left: 24px;
  top: 32px;
  width: 52px;
  height: 52px;
  border-radius: var(--radius);
  display: grid;
  place-items: center;
}

.moat-card .mi svg {
  width: 28px;
  height: 28px;
  stroke: var(--white);
  fill: none;
  stroke-width: 2;
}

.moat-card .qn {
  position: absolute;
  right: 24px;
  top: 18px;
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--mist);
  line-height: 1;
}

.moat-card h3 {
  margin-bottom: 8px;
  position: relative;
}

.mi.i1 { background: var(--indigo); }
.mi.i2 { background: var(--teal); }
.mi.i3 { background: var(--coral); }
.mi.i4 { background: var(--amber); }

/* Scroll Reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.in {
  opacity: 1;
  transform: none;
}

/* Media Queries */
@media (max-width: 960px) {
  .explorer-panel.active, .studio, .calc {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .bento {
    grid-template-columns: repeat(2, 1fr);
  }
  .bento .b.wide, .bento .b.tall {
    grid-column: auto;
    grid-row: auto;
  }
  .hero-grid, .split {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hrms-dashboard {
    height: 480px;
  }
  .dash-sidebar {
    width: 54px;
    padding: 16px 4px;
  }
  .dash-logo {
    font-size: 0;
    padding-left: 0;
    justify-content: center;
  }
  .dash-logo .dot {
    margin: 0;
    width: 12px;
    height: 12px;
  }
  .dash-nav a {
    justify-content: center;
    font-size: 0;
    padding: 10px;
    gap: 0;
  }
  .nav-ic {
    width: 18px;
    height: 18px;
    margin: 0;
  }
  .split.rev .txt {
    order: 0;
  }
  .g3, .g4, .stat-grid, .price-grid, .footer .cols {
    grid-template-columns: 1fr 1fr;
  }
  .nav-links {
    display: none;
  }
  .nav .wrap {
    display: flex;
    justify-content: space-between;
  }
  .cta {
    padding: 56px 24px;
  }
}

@media (max-width: 700px) {
  .float {
    display: none;
  }
  .person {
    width: 70px;
    height: 70px;
    margin-left: -14px;
    border-width: 3px;
  }
  .moat-grid {
    grid-template-columns: 1fr;
  }
  .cta-slim {
    text-align: center;
    justify-content: center;
    padding: 28px 20px;
  }
}

@media (max-width: 600px) {
  .g2, .g3, .g4, .stat-grid, .price-grid, .footer .cols, .mock-body {
    grid-template-columns: 1fr;
  }
  section {
    padding: 64px 0;
  }
  .mside {
    display: none;
  }
}

/* Custom Icon Styles to replace emojis */
.float-ic {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.5;
  flex: none;
}

.bento-ic {
  width: 28px;
  height: 28px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  margin-bottom: 12px;
  display: block;
}

.tile-ic {
  width: 26px;
  height: 26px;
  stroke: var(--indigo);
  fill: none;
  stroke-width: 2;
  margin: 0 auto;
  display: block;
}

.devtile .di {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 32px;
  margin-bottom: 4px;
}
