/* =============================================================
   Luppy Landing — local stylesheet
   Tokens come from assets/luppy-tokens.css
   ============================================================= */

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: #ffffff;
  color: var(--color-link);
  font-family: var(--font-sans);
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; }
a { color: inherit; text-decoration: none; }

/* ----- container ----- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.82);
  backdrop-filter: saturate(180%) blur(10px);
  -webkit-backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, background .2s ease;
}
.nav.scrolled { border-bottom-color: var(--color-border); }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 32px;
}
.nav-logo img { height: 28px; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: var(--text-sm);
  font-weight: var(--font-medium);
  color: var(--color-link);
}
.nav-links a { transition: color .15s; }
.nav-links a:hover { color: var(--color-primary); text-decoration: none; }
.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}
@media (max-width: 880px) {
  .nav-links { display: none; }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 42px;
  padding: 0 18px;
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  font-weight: var(--font-semibold);
  border: 1px solid transparent;
  transition: background .15s, color .15s, border-color .15s, transform .1s;
  white-space: nowrap;
}
.btn-solid {
  background: var(--color-primary);
  color: #fff;
  box-shadow: 0 1px 2px rgba(59,130,246,0.25), 0 10px 30px -10px rgba(59,130,246,0.45);
}
.btn-solid:hover { background: var(--color-primary-emphasis); }
.btn-ghost {
  color: var(--color-link);
  background: transparent;
}
.btn-ghost:hover { background: var(--color-lightprimary); color: var(--color-primary); }
.btn-outline {
  color: var(--color-primary);
  border-color: var(--color-primary);
  background: transparent;
}
.btn-outline:hover { background: var(--color-primary); color: #fff; }
.btn-light {
  background: var(--color-lightprimary);
  color: var(--color-primary);
}
.btn-light:hover { background: var(--color-primary); color: #fff; }
.btn-lg { height: 52px; padding: 0 24px; font-size: var(--text-base); border-radius: 10px; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  padding: 56px 0 80px;
  overflow: hidden;
  background:
    radial-gradient(1100px 600px at 90% -10%, rgba(20,184,166,0.10), transparent 60%),
    radial-gradient(900px 600px at -10% 30%, rgba(59,130,246,0.10), transparent 55%),
    linear-gradient(180deg, #ffffff 0%, #f8faff 100%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 880px) {
  .hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-visual { max-width: 540px; margin: 0 auto; }
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px 6px 8px;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  font-size: 12px;
  font-weight: var(--font-semibold);
  color: var(--color-link);
  box-shadow: var(--shadow-sm);
  margin-bottom: 22px;
}
.hero-eyebrow .dot {
  width: 18px; height: 18px;
  border-radius: 999px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--color-lightsuccess);
  color: var(--color-success);
}
.hero-eyebrow .pill {
  background: var(--color-lightprimary);
  color: var(--color-primary);
  font-size: 11px;
  font-weight: var(--font-bold);
  padding: 2px 7px;
  border-radius: 999px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.hero h1 {
  font-size: clamp(40px, 5.4vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-weight: 800;
  color: var(--color-link);
  margin: 0 0 20px;
  text-wrap: balance;
}
.hero h1 .accent {
  background: linear-gradient(120deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero p.lead {
  font-size: 18px;
  line-height: 1.55;
  color: var(--color-bodytext);
  max-width: 520px;
  margin: 0 0 28px;
}
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-meta {
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: var(--text-xs);
  color: var(--color-bodytext);
  font-weight: var(--font-medium);
}
.hero-meta-item { display: flex; align-items: center; gap: 6px; }
.hero-meta-item .iconify { color: var(--color-success); }

/* ----- hero visual stage ----- */
.hero-visual {
  position: relative;
  width: 100%;
  height: clamp(480px, 56vw, 600px);
  perspective: 1800px;
  perspective-origin: 50% 40%;
}
.scene { transform-style: preserve-3d; position: absolute; inset: 0; }

/* card style shared in 3D illustrations */
.iso-card {
  position: absolute;
  background: #fff;
  border-radius: 16px;
  box-shadow:
    0 30px 60px -25px rgba(31,52,82,0.25),
    0 10px 20px -10px rgba(31,52,82,0.12),
    0 1px 0 rgba(255,255,255,0.6) inset;
  transform-style: preserve-3d;
  overflow: hidden;
  border: 1px solid rgba(229,229,229,0.7);
}
.iso-card.dark {
  background: #1a2537;
  border-color: rgba(255,255,255,0.06);
  color: #fff;
}

/* floor / shadow glow under the scene */
.hero-visual::after {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: 4%;
  height: 60px;
  background: radial-gradient(ellipse at center, rgba(31,52,82,0.22), transparent 70%);
  filter: blur(6px);
  z-index: 0;
}

/* mini app components — building blocks for the 3D scene */
.mini-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 16px;
  border-bottom: 1px solid var(--color-border);
  font-weight: var(--font-semibold);
  font-size: 13px;
  color: var(--color-link);
}
.mini-tabs { display: flex; gap: 6px; }
.mini-tab {
  font-size: 11px; padding: 4px 10px;
  border-radius: 999px;
  color: var(--color-bodytext);
}
.mini-tab.active { background: var(--color-lightprimary); color: var(--color-primary); font-weight: 600; }

.mini-row {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 16px;
  font-size: 12px;
  border-top: 1px dashed rgba(0,0,0,0.04);
}
.mini-row:first-of-type { border-top: 0; }
.avatar {
  width: 26px; height: 26px; border-radius: 999px;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 700; font-size: 11px; flex: none;
}
.av-1 { background: linear-gradient(135deg, #3b82f6, #6366f1); }
.av-2 { background: linear-gradient(135deg, #14b8a6, #06b6d4); }
.av-3 { background: linear-gradient(135deg, #f59e0b, #ef4444); }
.av-4 { background: linear-gradient(135deg, #8b5cf6, #ec4899); }

.chip {
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 999px;
  letter-spacing: 0.02em;
}
.chip-success { background: var(--color-lightsuccess); color: var(--color-success); }
.chip-warning { background: var(--color-lightwarning); color: #b88406; }
.chip-info { background: var(--color-lightinfo); color: #0891b2; }
.chip-primary { background: var(--color-lightprimary); color: var(--color-primary); }

/* ----- floating accent shapes ----- */
.float-shape {
  position: absolute;
  border-radius: 24px;
  pointer-events: none;
  transform-style: preserve-3d;
  filter: drop-shadow(0 20px 30px rgba(59,130,246,0.25));
}
.shape-sphere {
  width: 90px; height: 90px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 30% 30%, #fff 0%, #93c5fd 30%, #3b82f6 70%, #1e40af 100%);
}
.shape-cube {
  width: 80px; height: 80px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--color-secondary), #0d9488);
}
.shape-pill {
  width: 130px; height: 50px;
  border-radius: 999px;
  background: linear-gradient(135deg, #5d87ff, #3b82f6);
}
.shape-ring {
  width: 110px; height: 110px;
  border-radius: 999px;
  background: transparent;
  border: 10px solid var(--color-secondary);
  box-shadow: 0 20px 40px -15px rgba(20,184,166,0.5);
}

/* sparkle dots */
.sparkle {
  position: absolute;
  width: 8px; height: 8px;
  background: var(--color-primary);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(59,130,246,0.18);
}

/* ----- floating animation ----- */
@keyframes floaty1 { 0%,100% { transform: translateY(0) } 50% { transform: translateY(-10px) } }
@keyframes floaty2 { 0%,100% { transform: translateY(0) } 50% { transform: translateY(12px) } }
@keyframes floaty3 { 0%,100% { transform: translateY(0) } 50% { transform: translateY(-7px) } }
.f1 { animation: floaty1 6s ease-in-out infinite; }
.f2 { animation: floaty2 7s ease-in-out infinite; }
.f3 { animation: floaty3 5.5s ease-in-out infinite; }

/* ============================================================
   STATS STRIP
   ============================================================ */
.stats {
  padding: 32px 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  background: #fff;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 800px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}
.stat {
  text-align: left;
  border-left: 1px solid var(--color-border);
  padding-left: 20px;
}
.stat:first-child { border-left: 0; padding-left: 0; }
.stat .num {
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--color-link);
  line-height: 1;
}
.stat .num .unit { color: var(--color-primary); }
.stat .lbl {
  font-size: 13px;
  color: var(--color-bodytext);
  margin-top: 8px;
  font-weight: 500;
}

/* ============================================================
   SECTION SHELL
   ============================================================ */
.section {
  padding: 96px 0;
}
.section.muted { background: var(--color-lightgray); }
.section-head {
  text-align: center;
  max-width: 660px;
  margin: 0 auto 56px;
}
.section-eyebrow {
  display: inline-block;
  background: var(--color-lightprimary);
  color: var(--color-primary);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 999px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.section h2 {
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.015em;
  font-weight: 800;
  color: var(--color-link);
  margin: 0 0 14px;
  text-wrap: balance;
}
.section .sub {
  font-size: 17px;
  color: var(--color-bodytext);
  line-height: 1.5;
  margin: 0;
}

/* ============================================================
   FEATURES
   ============================================================ */
.feat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 1000px) { .feat-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .feat-grid { grid-template-columns: 1fr; } }
.feat-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 18px;
  padding: 24px;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.feat-card:hover {
  transform: translateY(-3px);
  border-color: transparent;
  box-shadow: 0 24px 50px -25px rgba(31,52,82,0.18);
}
.feat-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.feat-icon.f-primary { background: var(--color-lightprimary); color: var(--color-primary); }
.feat-icon.f-success { background: var(--color-lightsuccess); color: var(--color-success); }
.feat-icon.f-warning { background: var(--color-lightwarning); color: #b88406; }
.feat-icon.f-info { background: var(--color-lightinfo); color: #0891b2; }
.feat-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin: 0 0 8px;
  color: var(--color-link);
}
.feat-card p {
  font-size: 14px;
  color: var(--color-bodytext);
  line-height: 1.55;
  margin: 0;
}

/* ============================================================
   PRODUCT PREVIEW
   ============================================================ */
.product-preview {
  position: relative;
}
.preview-frame {
  position: relative;
  border-radius: 22px;
  background: linear-gradient(180deg, #ffffff 0%, #f4f7fb 100%);
  border: 1px solid var(--color-border);
  box-shadow:
    0 60px 120px -50px rgba(31,52,82,0.30),
    0 30px 60px -30px rgba(31,52,82,0.15);
  overflow: hidden;
  padding: 14px;
}
.preview-traffic {
  display: flex; align-items: center; gap: 6px; padding: 4px 4px 10px;
}
.preview-traffic .dot {
  width: 11px; height: 11px; border-radius: 999px;
}
.dot.r { background: #ff5f57; }
.dot.y { background: #febc2e; }
.dot.g { background: #28c840; }
.preview-traffic .url {
  margin-left: auto;
  margin-right: auto;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  font-size: 11px;
  color: var(--color-bodytext);
  padding: 4px 12px;
  font-family: ui-monospace, Menlo, monospace;
}
.preview-body {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 14px;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--color-border);
}
/* hide on narrow */
@media (max-width: 700px) {
  .preview-body { grid-template-columns: 1fr; }
  .preview-sidebar { display: none; }
}

.preview-sidebar {
  background: var(--color-lightgray);
  padding: 18px 14px;
  border-right: 1px solid var(--color-border);
}
.preview-sidebar .logo-row {
  display: flex; align-items: center; gap: 10px;
  font-weight: 800; color: var(--color-primary);
  padding: 0 6px 16px;
  border-bottom: 1px solid var(--color-border);
  margin-bottom: 16px;
}
.preview-sidebar .logo-row .ic {
  width: 28px; height: 28px; border-radius: 8px;
  background: linear-gradient(135deg, #34d399, #3b82f6);
}
.nav-item {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 10px;
  border-radius: 8px;
  font-size: 13px;
  color: var(--color-link);
  font-weight: 500;
  margin-bottom: 2px;
}
.nav-item .iconify { font-size: 18px; color: var(--color-bodytext); }
.nav-item.active {
  background: var(--color-primary);
  color: #fff;
}
.nav-item.active .iconify { color: #fff; }

.preview-main {
  padding: 22px;
  min-height: 480px;
}
.preview-bread {
  font-size: 12px; color: var(--color-bodytext);
  display: flex; align-items: center; gap: 6px;
  margin-bottom: 14px;
}
.preview-bread .iconify { color: var(--color-primary); }
.preview-bread .last {
  background: var(--color-lightprimary); color: var(--color-primary);
  padding: 2px 8px; border-radius: 999px; font-weight: 600;
}
.preview-toolbar {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 18px;
}
.preview-toolbar h3 { font-size: 18px; font-weight: 700; margin: 0; }
.preview-stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px;
  margin-bottom: 18px;
}
.preview-stat {
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 14px;
}
.preview-stat .lbl { font-size: 11px; color: var(--color-bodytext); font-weight: 600; text-transform: uppercase; letter-spacing: .04em; }
.preview-stat .num { font-size: 22px; font-weight: 800; color: var(--color-link); margin-top: 4px; }
.preview-stat .delta { font-size: 11px; color: var(--color-success); font-weight: 700; margin-top: 2px; display:flex; align-items:center; gap:4px; }

.preview-table {
  border: 1px solid var(--color-border);
  border-radius: 12px;
  overflow: hidden;
}
.preview-table-head, .preview-table-row {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 0.8fr 0.6fr;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  font-size: 12px;
}
.preview-table-head {
  background: var(--color-lightgray);
  color: var(--color-bodytext);
  text-transform: uppercase;
  letter-spacing: .04em;
  font-weight: 700;
  font-size: 10px;
}
.preview-table-row {
  border-top: 1px solid var(--color-border);
  color: var(--color-link);
  font-weight: 500;
}
.preview-table-row .name { display: flex; align-items: center; gap: 10px; font-weight: 600; }
.preview-table-row .sub { font-size: 11px; color: var(--color-bodytext); font-weight: 400; }
@media (max-width: 700px) {
  .preview-table-head, .preview-table-row {
    grid-template-columns: 1.4fr 1fr 0.8fr;
  }
  .preview-table-head > :nth-child(2),
  .preview-table-head > :nth-child(5),
  .preview-table-row > :nth-child(2),
  .preview-table-row > :nth-child(5) { display: none; }
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
}
@media (max-width: 900px) { .how-grid { grid-template-columns: 1fr; } }
.how-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 20px;
  padding: 32px 28px 28px;
  overflow: hidden;
}
.how-step {
  width: 38px; height: 38px;
  border-radius: 12px;
  background: var(--color-lightprimary);
  color: var(--color-primary);
  font-weight: 800;
  font-size: 16px;
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.how-card h3 {
  font-size: 18px; font-weight: 700; margin: 0 0 10px;
  color: var(--color-link);
}
.how-card p {
  font-size: 14px; color: var(--color-bodytext); line-height: 1.55; margin: 0 0 18px;
}
.how-illo {
  margin-top: 16px;
  height: 140px;
  border-radius: 14px;
  background: var(--color-lightgray);
  position: relative;
  overflow: hidden;
}

/* ============================================================
   WALKTHROUGH (interactive 5-step tour)
   ============================================================ */
.walk-shell {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 24px;
  box-shadow: 0 40px 90px -50px rgba(31,52,82,0.28);
  padding: 36px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
@media (max-width: 900px) {
  .walk-shell { grid-template-columns: 1fr; gap: 28px; padding: 24px; }
}

/* steps column */
.walk-steps { display: flex; flex-direction: column; }
.walk-step {
  position: relative;
  display: flex;
  gap: 16px;
  padding: 14px 16px;
  border-radius: 14px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: border-color .25s;
}
.walk-step.active {
  background: rgba(59,130,246,0.10);
  border-color: rgba(59,130,246,0.28);
}
/* connector line */
.walk-step:not(:last-child)::before {
  content: "";
  position: absolute;
  left: calc(16px + 15px);
  top: 46px;
  bottom: -10px;
  width: 2px;
  background: var(--color-border);
}
.walk-step.done:not(:last-child)::before { background: var(--color-success); }
.walk-num {
  position: relative;
  z-index: 1;
  width: 30px; height: 30px;
  flex: none;
  border-radius: 999px;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700;
  background: var(--color-light-emphasis);
  color: var(--color-bodytext);
  transition: transform .25s;
}
.walk-step.done .walk-num { background: #2ea95c; color: #fff; }
.walk-step.active .walk-num { background: var(--color-primary); color: #fff; transform: scale(1.08); }
.walk-step-body { padding-top: 4px; }
.walk-step-body .t {
  font-size: 15px; font-weight: 700; color: var(--color-link);
}
.walk-step-body .d {
  font-size: 14px; color: var(--color-bodytext); line-height: 1.5;
}

/* progress control */
.walk-progress {
  display: flex; align-items: center; gap: 14px;
  margin-top: 22px;
  padding: 0 16px;
}
.walk-play {
  width: 36px; height: 36px; flex: none;
  border-radius: 999px;
  border: 1px solid var(--color-border);
  background: #fff;
  color: var(--color-primary);
  display: flex; align-items: center; justify-content: center;
  transition: background .15s, border-color .15s;
}
.walk-play:hover { background: var(--color-lightprimary); border-color: transparent; }
.walk-progress .lbl { font-size: 12px; font-weight: 600; color: var(--color-bodytext); white-space: nowrap; }
.walk-track {
  flex: 1; height: 5px; border-radius: 999px;
  background: var(--color-light-emphasis);
  overflow: hidden;
}
.walk-bar {
  height: 100%; border-radius: 999px;
  background: var(--color-primary);
  transition: width .4s ease;
}

/* preview pane */
.walk-pane {
  background: var(--color-lightgray);
  border: 1px solid var(--color-border);
  border-radius: 18px;
  padding: 18px;
  min-height: 340px;
  display: flex;
  flex-direction: column;
}
.walk-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 14px;
  padding: 18px;
  box-shadow: var(--shadow-sm);
  animation: walkfade .45s ease;
}
@keyframes walkfade {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
.walk-card-head {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 700; color: var(--color-link);
  margin-bottom: 14px;
}
.walk-card-head .iconify { color: var(--color-primary); }
.walk-tag-logged {
  margin-left: auto;
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 12px; font-weight: 700; color: var(--color-success);
}

/* ============================================================
   WHY DIFFERENT (5 benefit cards)
   ============================================================ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}
@media (max-width: 1000px) { .why-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px) { .why-grid { grid-template-columns: 1fr 1fr; } }
.why-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 22px 20px;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.why-card:hover {
  transform: translateY(-3px);
  border-color: transparent;
  box-shadow: 0 22px 44px -26px rgba(31,52,82,0.2);
}
.why-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--color-lightprimary);
  color: var(--color-primary);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.why-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-link);
  margin: 0 0 8px;
  line-height: 1.25;
}
.why-card p {
  font-size: 13px;
  color: var(--color-bodytext);
  line-height: 1.55;
  margin: 0;
}

/* ============================================================
   PROBLEM (the everyday mess)
   ============================================================ */
.section-eyebrow.danger {
  background: var(--color-lighterror);
  color: var(--color-error);
}
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 1060px;
  margin: 0 auto;
}
@media (max-width: 860px) { .problem-grid { grid-template-columns: 1fr; max-width: 520px; } }
.problem-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 14px;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.problem-x {
  width: 30px; height: 30px;
  flex: none;
  border-radius: 999px;
  background: var(--color-lighterror);
  color: var(--color-error);
  display: flex; align-items: center; justify-content: center;
}
.problem-card span {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-link);
  line-height: 1.4;
}
.problem-foot {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
  font-size: 18px;
  font-weight: 700;
  color: var(--color-link);
}
.problem-foot .iconify { color: var(--color-primary); }

/* ============================================================
   A DAY IN YOUR BUSINESS (alternating rows + mock UIs)
   ============================================================ */
.day-row {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 56px;
  align-items: center;
  margin-bottom: 88px;
}
.day-row:last-child { margin-bottom: 0; }
.day-row.flip .day-copy { order: 2; }
.day-row.flip .day-visual { order: 1; }
@media (max-width: 920px) {
  .day-row { grid-template-columns: 1fr; gap: 28px; margin-bottom: 56px; }
  .day-row.flip .day-copy { order: 1; }
  .day-row.flip .day-visual { order: 2; }
}
.day-badge {
  width: 30px; height: 30px;
  border-radius: 999px;
  background: var(--color-lightprimary);
  color: var(--color-primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700;
  margin-bottom: 18px;
}
.day-copy h3 {
  font-size: clamp(22px, 2.6vw, 28px);
  font-weight: 800;
  letter-spacing: -0.015em;
  color: var(--color-link);
  line-height: 1.15;
  margin: 0 0 12px;
}
.day-copy > p {
  font-size: 15px;
  color: var(--color-bodytext);
  line-height: 1.6;
  margin: 0 0 18px;
  max-width: 440px;
}
.day-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.day-list li {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; color: var(--color-link); font-weight: 500;
}
.day-list li .iconify { color: var(--color-success); flex: none; }

/* mock window chrome */
.mock {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 40px 80px -45px rgba(31,52,82,0.30), 0 16px 32px -20px rgba(31,52,82,0.12);
}
.mock-bar {
  display: flex; align-items: center; gap: 7px;
  padding: 11px 14px;
  border-bottom: 1px solid var(--color-border);
  background: var(--color-lightgray);
}
.mock-bar .tl { width: 10px; height: 10px; border-radius: 999px; }
.mock-bar .tl.r { background: #ff5f57; }
.mock-bar .tl.y { background: #febc2e; }
.mock-bar .tl.g { background: #28c840; }
.mock-bar .ttl {
  margin-left: 8px; font-size: 12px; color: var(--color-bodytext); font-weight: 600;
  display: flex; align-items: center; gap: 6px;
}
.mock-body { padding: 16px; }

/* calendar week view */
.cal-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 12px;
}
.cal-head .wk { font-size: 14px; font-weight: 700; color: var(--color-link); }
.cal-head .ctrls { display: flex; align-items: center; gap: 6px; }
.cal-head .ctrls .nav-btn {
  width: 26px; height: 26px; border-radius: 7px; border: 1px solid var(--color-border);
  display: flex; align-items: center; justify-content: center; color: var(--color-bodytext);
  background: #fff;
}
.cal-head .ctrls .today-btn {
  height: 26px; padding: 0 12px; border-radius: 7px; border: 1px solid var(--color-border);
  font-size: 12px; font-weight: 600; color: var(--color-link); background: #fff;
  display: flex; align-items: center;
}
.cal-grid { width: 100%; border-collapse: collapse; }
.cal-grid th {
  font-size: 11px; font-weight: 700; color: var(--color-bodytext);
  text-align: center; padding: 8px 4px;
  background: var(--color-lightgray);
  border: 1px solid var(--color-border);
}
.cal-grid th:first-child { width: 44px; }
.cal-grid td {
  border: 1px solid var(--color-border);
  height: 30px; padding: 3px;
  vertical-align: top;
}
.cal-grid td.time {
  font-size: 10px; color: var(--color-bodytext); font-weight: 600;
  text-align: center; background: #fff; vertical-align: middle;
}
.cal-ev {
  font-size: 9.5px; font-weight: 700;
  padding: 3px 5px; border-radius: 5px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  line-height: 1.3;
}
.cal-ev.green { background: var(--color-lightsuccess); color: var(--color-success); }
.cal-ev.blue { background: var(--color-lightprimary); color: var(--color-primary); }
.cal-ev.amber { background: var(--color-lightwarning); color: #b88406; }
.cal-ev.teal { background: var(--color-lightsecondary); color: #0d9488; }

/* crew day view */
.crew-head {
  display: flex; align-items: center; justify-content: space-between;
  padding-bottom: 12px; margin-bottom: 4px;
  border-bottom: 1px solid var(--color-border);
}
.crew-head .l { font-size: 14px; font-weight: 700; color: var(--color-link); }
.crew-head .r { font-size: 12px; color: var(--color-bodytext); font-weight: 500; }
.crew-row {
  display: flex; align-items: center; gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--color-border);
}
.crew-row:last-child { border-bottom: 0; }
.crew-row .time { font-size: 13px; font-weight: 700; color: var(--color-link); width: 42px; flex: none; }
.crew-row .info { flex: 1; min-width: 0; }
.crew-row .info .n { font-size: 13px; font-weight: 600; color: var(--color-link); }
.crew-row .info .a { font-size: 11px; color: var(--color-bodytext); }
.crew-row .who {
  font-size: 10px; font-weight: 700; color: var(--color-bodytext);
  margin-bottom: 4px; text-align: right;
}

/* invoice */
.inv-head {
  display: flex; align-items: flex-start; justify-content: space-between;
  margin-bottom: 16px;
}
.inv-head .inv-no { font-size: 17px; font-weight: 800; color: var(--color-link); }
.inv-head .inv-id { font-size: 12px; color: var(--color-bodytext); font-weight: 600; margin-top: 2px; }
.inv-meta { text-align: right; font-size: 11px; color: var(--color-bodytext); line-height: 1.7; }
.inv-client {
  font-size: 13px; font-weight: 700; color: var(--color-link);
}
.inv-client .email { font-size: 12px; font-weight: 500; color: var(--color-bodytext); }
.inv-lines { margin: 16px 0 0; }
.inv-line {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 0; border-top: 1px solid var(--color-border);
  font-size: 13px; color: var(--color-bodytext);
}
.inv-line .amt { font-weight: 600; color: var(--color-link); }
.inv-total {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 0 2px; border-top: 2px solid var(--color-border); margin-top: 4px;
  font-size: 16px; font-weight: 800; color: var(--color-link);
}

/* ============================================================
   FEEL (what your team will feel — green accent)
   ============================================================ */
.section-eyebrow.success {
  background: var(--color-lightsuccess);
  color: var(--color-success);
}
.feel-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 1000px) { .feel-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .feel-grid { grid-template-columns: 1fr; } }
.feel-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 18px;
  padding: 26px 24px;
  overflow: hidden;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.feel-card:hover {
  transform: translateY(-3px);
  border-color: transparent;
  box-shadow: 0 24px 50px -28px rgba(31,52,82,0.2);
}
/* decorative corner blob */
.feel-card::after {
  content: "";
  position: absolute;
  top: -34px; right: -34px;
  width: 90px; height: 90px;
  border-radius: 999px;
  background: var(--color-lightprimary);
  opacity: 0.7;
}
.feel-icon {
  position: relative;
  z-index: 1;
  width: 46px; height: 46px;
  border-radius: 13px;
  background: var(--color-lightsuccess);
  color: var(--color-success);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
}
.feel-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--color-link);
  margin: 0 0 8px;
}
.feel-card p {
  font-size: 14px;
  color: var(--color-bodytext);
  line-height: 1.55;
  margin: 0;
}

/* ============================================================
   PRICING
   ============================================================ */
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width: 900px) { .price-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; } }
.price-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 20px;
  padding: 30px 28px;
  position: relative;
  display: flex;
  flex-direction: column;
}
.price-card.featured {
  background: #0f1c33;
  color: #fff;
  border-color: #0f1c33;
  transform: scale(1.02);
  box-shadow: 0 40px 80px -30px rgba(31,52,82,0.45);
}
.price-card.featured h3, .price-card.featured .price-num { color: #fff; }
.price-card.featured .price-desc { color: rgba(255,255,255,0.6); }
.price-tag {
  position: absolute; top: 20px; right: 20px;
  background: var(--color-secondary);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
}
.price-card h3 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-bodytext);
  margin: 0 0 14px;
}
.price-num {
  font-size: 44px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--color-link);
  line-height: 1;
}
.price-num .suffix {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-bodytext);
  margin-left: 4px;
}
.price-desc {
  font-size: 13px;
  color: var(--color-bodytext);
  margin: 10px 0 22px;
  line-height: 1.5;
}
.price-list {
  list-style: none;
  padding: 0;
  margin: 0 0 26px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.price-list li {
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.price-list li .iconify {
  color: var(--color-success);
  flex: none;
  font-size: 18px;
}
.price-card.featured .price-list li .iconify { color: var(--color-secondary); }
.price-card.featured .price-list li { color: rgba(255,255,255,0.85); }
.price-cta { width: 100%; }
.price-note {
  display: flex;
  gap: 10px;
  margin-top: 16px;
  padding: 12px 14px;
  background: var(--color-lightprimary);
  border-radius: 10px;
}
.price-note .iconify { color: var(--color-primary); flex: none; margin-top: 1px; }
.price-note strong {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--color-link);
}
.price-note span {
  display: block;
  font-size: 12px;
  color: var(--color-bodytext);
  line-height: 1.45;
  margin-top: 2px;
}
.price-card.featured .price-note {
  background: rgba(255,255,255,0.08);
}
.price-card.featured .price-note strong { color: #fff; }
.price-card.featured .price-note span { color: rgba(255,255,255,0.7); }
.price-card.featured .btn-light {
  background: rgba(255,255,255,0.12);
  color: #fff;
}
.price-card.featured .btn-light:hover {
  background: #fff;
  color: var(--color-primary);
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width: 900px) { .testi-grid { grid-template-columns: 1fr; } }
.testi-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 20px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.testi-quote {
  font-size: 15px;
  line-height: 1.55;
  color: var(--color-link);
  font-weight: 500;
  flex: 1;
}
.testi-foot {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--color-border);
  padding-top: 14px;
}
.testi-foot .avatar { width: 38px; height: 38px; font-size: 13px; }
.testi-foot .name { font-size: 13px; font-weight: 700; color: var(--color-link); }
.testi-foot .role { font-size: 12px; color: var(--color-bodytext); }
.testi-stars {
  display: flex; gap: 2px; color: #f8c20a;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-wrap {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 14px;
  padding: 18px 22px;
  transition: border-color .15s, box-shadow .15s;
}
.faq[open] {
  border-color: var(--color-primary);
  box-shadow: 0 12px 30px -18px rgba(59,130,246,0.35);
}
.faq summary {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 600;
  font-size: 15px;
  color: var(--color-link);
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary .chev {
  width: 28px; height: 28px;
  border-radius: 999px;
  background: var(--color-lightprimary);
  color: var(--color-primary);
  display: flex; align-items: center; justify-content: center;
  transition: transform .2s;
}
.faq[open] summary .chev { transform: rotate(180deg); }
.faq .ans {
  margin-top: 12px;
  font-size: 14px;
  color: var(--color-bodytext);
  line-height: 1.6;
}

/* ============================================================
   CTA
   ============================================================ */
.final-cta {
  padding: 96px 0;
}
.cta-card {
  position: relative;
  border-radius: 28px;
  padding: 64px 56px;
  background: linear-gradient(120deg, #2563eb 0%, #3b82f6 55%, #4f93f7 100%);
  color: #fff;
  text-align: center;
  overflow: hidden;
  box-shadow: 0 50px 100px -40px rgba(59,130,246,0.6);
}
.cta-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(220px 220px at 8% 12%, rgba(255,255,255,0.14), transparent 70%),
    radial-gradient(280px 280px at 94% 96%, rgba(255,255,255,0.16), transparent 70%);
  pointer-events: none;
}
.cta-card h2 {
  position: relative;
  font-size: clamp(28px, 3.6vw, 44px);
  font-weight: 800;
  color: #fff;
  margin: 0 0 14px;
  line-height: 1.1;
  letter-spacing: -0.015em;
}
.cta-card p {
  position: relative;
  font-size: 17px;
  color: rgba(255,255,255,0.85);
  max-width: 540px;
  margin: 0 auto 28px;
}
.cta-card .hero-ctas { position: relative; justify-content: center; }
.cta-card .btn-solid {
  background: #fff;
  color: var(--color-primary);
}
.cta-card .btn-solid:hover { background: #f1f5ff; }
.cta-card .btn-outline {
  border-color: rgba(255,255,255,0.4);
  color: #fff;
}
.cta-card .btn-outline:hover { background: rgba(255,255,255,0.15); color: #fff; }
.cta-checks {
  position: relative;
  margin-top: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.92);
}
.cta-checks span { display: inline-flex; align-items: center; gap: 6px; }
.cta-checks span .iconify { color: #86efac; }
.cta-checks .sep { color: rgba(255,255,255,0.45); }
@media (max-width: 520px) { .cta-checks .sep { display: none; } }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #0b1322;
  color: rgba(255,255,255,0.7);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 32px;
}
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
.footer img { height: 24px; }
.footer h4 {
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0 0 14px;
}
.footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.footer a { font-size: 14px; color: rgba(255,255,255,0.65); transition: color .15s; }
.footer a:hover { color: #fff; text-decoration: none; }
.footer-bottom {
  margin-top: 56px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  gap: 14px;
  flex-wrap: wrap;
}
.footer-tagline {
  font-size: 14px;
  line-height: 1.6;
  max-width: 320px;
  margin: 14px 0 18px;
}
.social-row { display: flex; gap: 10px; margin-top: 8px; }
.social-row a {
  width: 34px; height: 34px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  color: rgba(255,255,255,0.75);
  transition: background .15s, color .15s;
}
.social-row a:hover { background: var(--color-primary); color: #fff; }
