/* =============================================================================
   YURBI HOMEPAGE STYLES
   Layout only. Tokens and reusable components in global.css.
   ============================================================================= */


/* =============================================================================
   HERO
   ============================================================================= */
.hero {
  padding-top: var(--s-20);
  padding-inline: var(--s-6);
  padding-bottom: 0;
  background: linear-gradient(180deg, var(--bg-blue) 0%, var(--bg) 100%);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 70% -10%, rgba(0,95,172,.08) 0%, transparent 65%),
    radial-gradient(ellipse 40% 40% at 5%  50%, rgba(4,122,24,.04)  0%, transparent 60%);
  pointer-events: none;
}
.hero-inner { max-width: var(--max-w); margin-inline: auto; position: relative; z-index: 1; }
.hero-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-16);
  align-items: center;
  padding-bottom: var(--s-16);
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: var(--s-2);
  background: var(--blue-soft); border: 1px solid var(--blue-soft2);
  color: var(--blue); font-size: var(--t-sm); font-weight: var(--w-semibold);
  padding: 6px 14px; border-radius: var(--r-full); margin-bottom: var(--s-5);
}
.hero-eyebrow-dot {
  width: 7px; height: 7px; background: var(--green); border-radius: 50%; flex-shrink: 0;
  animation: pulse-dot 2.4s ease-in-out 3; animation-delay: 1.5s;
}
@keyframes pulse-dot {
  0%,100% { opacity:1; transform:scale(1); }
  50%      { opacity:.6; transform:scale(.85); }
}
.hero h1 {
  font-size: 3.5rem; font-weight: var(--w-xbold); line-height: 1.08;
  letter-spacing: -0.03em; color: var(--text); margin-bottom: var(--s-6);
}
.hero-subtitle {
  font-size: var(--t-lead); color: var(--text-sec); line-height: var(--lh-relaxed);
  max-width: 480px; margin-bottom: var(--s-8);
}
.hero-ctas { display:flex; align-items:center; gap:var(--s-3); flex-wrap:wrap; margin-bottom:var(--s-8); }
.hero-proof { list-style:none; display:flex; flex-direction:column; gap:var(--s-2); }
.hero-proof-item {
  display:flex; align-items:center; gap:var(--s-2);
  font-size:var(--t-sm); color:var(--text-sec);
}
.hero-proof-item svg { width:15px; height:15px; color:var(--green); flex-shrink:0; }
.hero-proof-item strong { color:var(--text); font-weight:var(--w-semibold); }
.hero-proof-link {
  color: var(--blue); font-weight: var(--w-semibold);
  text-decoration: none; transition: color .15s;
}
.hero-proof-link:hover { color: var(--blue-dark); text-decoration: underline; }

/* ── Hero Visual ── */
.hero-visual { position:relative; }
.hv-browser {
  background:#fff; border-radius:var(--r-lg); box-shadow:var(--sh-xl);
  overflow:hidden; border:1px solid var(--border);
}
.hv-bar {
  background:#F1F5F9; border-bottom:1px solid var(--border);
  padding:10px var(--s-4); display:flex; align-items:center; gap:var(--s-3);
}
.hv-dots { display:flex; gap:5px; flex-shrink:0; }
.hv-dots span { width:10px; height:10px; border-radius:50%; display:block; }
.hv-dots span:nth-child(1){background:#FF5F57}
.hv-dots span:nth-child(2){background:#FEBC2E}
.hv-dots span:nth-child(3){background:#28C840}
.hv-url {
  flex:1; background:#fff; border:1px solid var(--border); border-radius:5px;
  padding:4px 10px; font-family:var(--mono); font-size:11px; color:var(--text-muted);
  max-width:260px; margin-inline:auto; display:flex; align-items:center; gap:5px;
}
.hv-url svg { width:10px; height:10px; opacity:.6; }
.hv-brand-pill {
  background:var(--blue); color:#fff; font-size:10px; font-weight:var(--w-bold);
  padding:3px 10px; border-radius:var(--r-full); white-space:nowrap; flex-shrink:0;
}
.hv-body { display:flex; min-height:280px; }
.hv-sidebar {
  width:52px; background:var(--navy); padding:12px 8px;
  display:flex; flex-direction:column; gap:6px; flex-shrink:0;
}
.hv-logo-spot { width:36px; height:24px; background:var(--blue); border-radius:var(--r-sm); margin-bottom:8px; }
.hv-nav-item { width:36px; height:8px; background:rgba(255,255,255,.12); border-radius:4px; }
.hv-nav-active { background:rgba(255,255,255,.35) !important; }
.hv-content { flex:1; padding:16px; background:var(--bg-subtle); }
.hv-page-title { width:140px; height:10px; background:var(--border); border-radius:4px; margin-bottom:14px; }
.hv-kpis { display:grid; grid-template-columns:repeat(3,1fr); gap:8px; margin-bottom:12px; }
.hv-kpi { background:#fff; border:1px solid var(--border-sub); border-radius:var(--r-sm); padding:10px; }
.hv-kpi-val { font-size:1rem; font-weight:var(--w-xbold); line-height:1.2; }
.hv-kpi-label { font-size:10px; color:var(--text-muted); margin-top:2px; }
.hv-kpi-chg { font-size:10px; font-weight:var(--w-bold); margin-top:2px; }
.hv-up { color:var(--green); }
.hv-charts { display:grid; grid-template-columns:1fr auto; gap:10px; margin-bottom:10px; }
.hv-chart-main,.hv-chart-side {
  background:#fff; border:1px solid var(--border-sub); border-radius:var(--r-sm); padding:10px;
}
.hv-chart-label { font-size:10px; font-weight:var(--w-bold); color:var(--text-muted); margin-bottom:8px; text-transform:uppercase; letter-spacing:.05em; }
.hv-bars { display:flex; align-items:flex-end; gap:4px; height:60px; }
.hv-bar { flex:1; background:var(--blue-soft2); border-radius:3px 3px 0 0; }
.hv-bar-accent { background:var(--blue) !important; }
.hv-donut { width:64px; height:64px; }
.hv-donut svg { width:100%; height:100%; }
.hv-chart-side { display:flex; flex-direction:column; align-items:center; }
.hv-tenant-badge {
  display:inline-flex; align-items:center; gap:6px;
  background:var(--green-soft); border:1px solid var(--green-border);
  color:var(--green); font-size:11px; font-weight:var(--w-semibold);
  padding:5px 10px; border-radius:var(--r-full);
}
.hv-tenant-badge svg { width:12px; height:12px; }
.hv-float {
  position:absolute; background:#fff; border:1px solid var(--border);
  border-radius:var(--r-md); box-shadow:var(--sh-md);
  padding:10px 14px; display:flex; align-items:center; gap:10px;
  font-size:var(--t-caption); animation:float-bob 3s ease-in-out infinite;
}
.hv-float svg { width:20px; height:20px; flex-shrink:0; }
.hv-float strong { display:block; font-weight:var(--w-bold); color:var(--text); font-size:var(--t-sm); }
.hv-float span { color:var(--text-muted); }
.hv-float-top { top:50px; left:-28px; border-color:var(--green-border); }
.hv-float-top svg { color:var(--green); }
.hv-float-bottom { bottom:-18px; right:-20px; animation-delay:1.5s; }
.hv-float-bottom svg { color:var(--blue); }
@keyframes float-bob {
  0%,100% { transform:translateY(0); }
  50%      { transform:translateY(-5px); }
}


/* =============================================================================
   ICP ROUTING STRIP
   ============================================================================= */
.icp-section { padding-block: var(--s-12); }
.icp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-5); }
.icp-card {
  display: flex; flex-direction: column; gap: var(--s-4);
  padding: var(--s-7); border: 1.5px solid var(--border-sub);
  border-radius: var(--r-xl); background: var(--bg);
  transition: border-color .18s, box-shadow .18s, transform .18s;
}
.icp-card:hover { border-color: var(--blue); box-shadow: var(--sh-md); transform: translateY(-2px); }
.icp-card-primary { border-color: var(--blue); background: var(--bg-blue); box-shadow: var(--sh-blue); }
.icp-card-primary:hover { box-shadow: 0 8px 32px rgba(0,95,172,.28); }
.icp-icon {
  width: 44px; height: 44px; border-radius: var(--r-md);
  background: var(--blue-soft); border: 1px solid var(--blue-soft2);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.icp-icon svg { width: 20px; height: 20px; color: var(--blue); }
.icp-card-primary .icp-icon { background: var(--blue); border-color: var(--blue-dark); }
.icp-card-primary .icp-icon svg { color: #fff; }
.icp-badge {
  display: inline-flex; align-self: flex-start;
  font-size: var(--t-caption); font-weight: var(--w-bold);
  letter-spacing: var(--ls-wide); text-transform: uppercase;
  color: var(--blue); background: rgba(0,95,172,.12);
  border: 1px solid var(--blue-soft2); padding: 3px 10px; border-radius: var(--r-full);
  margin-top: calc(-1 * var(--s-2));
}
.icp-title { font-size: var(--t-card); font-weight: var(--w-bold); color: var(--text); line-height: var(--lh-snug); margin: 0; }
.icp-desc { font-size: var(--t-base); color: var(--text-sec); line-height: var(--lh-relaxed); flex: 1; margin: 0; }
.icp-link {
  display: inline-flex; align-items: center; gap: var(--s-2);
  font-size: var(--t-sm); font-weight: var(--w-semibold); color: var(--blue);
  text-decoration: none; margin-top: auto; transition: gap .15s, color .15s;
}
.icp-link svg { width: 14px; height: 14px; flex-shrink: 0; transition: transform .15s; }
.icp-link:hover { color: var(--blue-dark); }
.icp-link:hover svg { transform: translateX(3px); }


/* =============================================================================
   SPRINT DIAGRAM
   ============================================================================= */
.sprint-diagram {
  max-width: 820px; margin-inline: auto; background: var(--bg);
  border: 1px solid var(--border-sub); border-radius: var(--r-xl);
  padding: var(--s-10); display: flex; flex-direction: column; gap: var(--s-6);
}
.sprint-label-row {
  display:flex; align-items:baseline; justify-content:space-between;
  margin-bottom:var(--s-4); flex-wrap:wrap; gap:var(--s-2);
}
.sprint-title { font-size:var(--t-sm); font-weight:var(--w-bold); color:var(--text); }
.sprint-title-before { color: var(--text-muted); font-weight: var(--w-medium); }
.sprint-bar {
  display:flex; border-radius:var(--r-md); overflow:hidden; height:56px; margin-bottom:var(--s-4);
}
.sprint-seg {
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  padding:4px 8px; gap:2px; min-width:0;
}
.sprint-seg span { font-size:10px; color:rgba(255,255,255,.85); white-space:nowrap; overflow:hidden; text-overflow:ellipsis; max-width:100%; }
.sprint-seg strong { font-size:var(--t-sm); color:#fff; font-weight:var(--w-xbold); }
.sprint-seg-core     { background:var(--blue); flex:0.40; }
.sprint-seg-reporting{ background:#E53E3E; flex:0.30; }
.sprint-seg-bugs     { background:#718096; flex:0.16; }
.sprint-seg-other    { background:#A0AEC0; flex:0.14; }
.sprint-seg-core-after { background:var(--green); flex:0.70; }
.sprint-after-label {
  font-size:var(--t-sm); font-weight:var(--w-bold); color:var(--green);
  margin-bottom:var(--s-3); display:flex; align-items:center; gap:var(--s-2);
}
.sprint-after-label svg { width:16px; height:16px; flex-shrink:0; }
.sprint-bar-after { margin-bottom:var(--s-3); }
.sprint-after-note {
  display:flex; align-items:center; gap:var(--s-2);
  font-size:var(--t-sm); color:var(--green); font-weight:var(--w-semibold);
}
.sprint-after-note svg { width:16px; height:16px; flex-shrink:0; }
.sprint-before-wrap { border-top: 1px solid var(--border-sub); padding-top: var(--s-6); }
.sprint-before-note {
  display: flex; align-items: flex-start; gap: var(--s-3);
  background: var(--bg-subtle); border: 1px solid var(--border-sub);
  border-radius: var(--r-md); padding: var(--s-3) var(--s-4);
}
.sprint-before-note svg { width:16px; height:16px; color:var(--text-muted); flex-shrink:0; margin-top:2px; }
.sprint-before-note span { font-size:var(--t-sm); color:var(--text-muted); line-height:var(--lh-relaxed); }
.sprint-bvb-cta { max-width: 820px; margin-inline: auto; margin-top: var(--s-6); }


/* =============================================================================
   WHAT YOUR CUSTOMERS GET — Report builder mockup + feature grid
   ============================================================================= */
.wycg-section { background: var(--bg); }

/* ── Swappable media area ── */
.wycg-media {
  max-width: 860px;
  margin-inline: auto;
  margin-bottom: var(--s-12);
}

/* When real screenshot/video is added, apply this class to the img or video */
.wycg-screenshot {
  width: 100%;
  border-radius: var(--r-xl);
  box-shadow: var(--sh-xl);
  border: 1px solid var(--border);
  display: block;
}

.wycg-media-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-2);
  font-size: var(--t-caption);
  color: var(--text-muted);
  font-style: italic;
  margin-top: var(--s-3);
}
.wycg-media-note svg { width: 14px; height: 14px; flex-shrink: 0; }

/* ── Report builder mockup (placeholder until screenshot available) ── */
.wycg-rb-mockup {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  box-shadow: var(--sh-xl);
  overflow: hidden;
}

.wycg-rb-chrome {
  background: #F1F5F9;
  border-bottom: 1px solid var(--border);
  padding: 10px var(--s-4);
  display: flex;
  align-items: center;
  gap: var(--s-3);
}
.wycg-rb-dots { display: flex; gap: 5px; flex-shrink: 0; }
.wycg-rb-dots span { width: 10px; height: 10px; border-radius: 50%; display: block; }
.wycg-rb-dots span:nth-child(1){background:#FF5F57}
.wycg-rb-dots span:nth-child(2){background:#FEBC2E}
.wycg-rb-dots span:nth-child(3){background:#28C840}
.wycg-rb-url {
  flex: 1; background: #fff; border: 1px solid var(--border); border-radius: 5px;
  padding: 4px 10px; font-family: var(--mono); font-size: 11px; color: var(--text-muted);
  max-width: 300px; margin-inline: auto;
  display: flex; align-items: center; gap: 5px;
}
.wycg-rb-url svg { width: 10px; height: 10px; opacity: .6; }
.wycg-rb-brand {
  background: var(--blue); color: #fff; font-size: 10px; font-weight: var(--w-bold);
  padding: 3px 10px; border-radius: var(--r-full); white-space: nowrap; flex-shrink: 0;
}

.wycg-rb-body {
  display: grid;
  grid-template-columns: 180px 1fr;
  min-height: 320px;
}

/* Left: field explorer */
.wycg-rb-fields {
  background: var(--bg-subtle);
  border-right: 1px solid var(--border-sub);
  padding: var(--s-4);
  display: flex;
  flex-direction: column;
  gap: var(--s-1);
}
.wycg-rb-fields-head {
  font-size: var(--t-caption);
  font-weight: var(--w-xbold);
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: var(--ls-wide);
  margin-bottom: var(--s-3);
  padding-bottom: var(--s-3);
  border-bottom: 1px solid var(--border-sub);
}
.wycg-rb-field-group { margin-bottom: var(--s-2); }
.wycg-rb-group-label {
  display: flex; align-items: center; gap: 4px;
  font-size: var(--t-sm); font-weight: var(--w-bold); color: var(--text);
  padding: var(--s-1) var(--s-2); border-radius: var(--r-sm);
  cursor: pointer; margin-bottom: 2px;
}
.wycg-rb-group-label svg { width: 12px; height: 12px; flex-shrink: 0; }
.wycg-rb-field {
  font-size: var(--t-sm); color: var(--text-sec); font-weight: var(--w-medium);
  padding: 5px var(--s-2) 5px var(--s-5);
  border-radius: var(--r-sm); cursor: pointer;
  transition: background .12s, color .12s;
}
.wycg-rb-field:hover { background: var(--bg-blue); color: var(--blue); }
.wycg-rb-field-active {
  background: var(--blue-soft); color: var(--blue); font-weight: var(--w-semibold);
}

/* Right: report canvas */
.wycg-rb-canvas {
  display: flex;
  flex-direction: column;
  padding: var(--s-4);
  gap: var(--s-3);
  background: var(--bg);
}
.wycg-rb-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-3);
  padding-bottom: var(--s-3);
  border-bottom: 1px solid var(--border-sub);
}
.wycg-rb-report-title {
  font-size: var(--t-base);
  font-weight: var(--w-bold);
  color: var(--text);
}
.wycg-rb-chart-types {
  display: flex;
  align-items: center;
  gap: 4px;
}
.wycg-rb-ct {
  width: 28px; height: 28px; border-radius: var(--r-sm);
  border: 1px solid var(--border-sub);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); cursor: pointer;
  transition: background .12s, color .12s, border-color .12s;
}
.wycg-rb-ct svg { width: 14px; height: 14px; }
.wycg-rb-ct:hover { background: var(--bg-subtle); color: var(--text); }
.wycg-rb-ct-active {
  background: var(--blue); border-color: var(--blue); color: #fff;
}
.wycg-rb-ct-more {
  font-size: var(--t-caption); font-weight: var(--w-bold); color: var(--blue);
  padding: 3px 6px; background: var(--blue-soft); border-radius: var(--r-sm);
  border: 1px solid var(--blue-soft2); white-space: nowrap;
}

/* Chart area */
.wycg-rb-chart-area {
  flex: 1;
  display: flex;
  align-items: flex-end;
  padding-bottom: var(--s-2);
}
.wycg-rb-bars {
  display: flex;
  align-items: flex-end;
  gap: var(--s-5);
  height: 160px;
  width: 100%;
  padding-bottom: var(--s-5);
}
.wycg-rb-bar-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s-2);
  height: 100%;
  justify-content: flex-end;
}
.wycg-rb-bar-fill {
  width: 100%;
  background: var(--blue-soft2);
  border-radius: 4px 4px 0 0;
  transition: background .2s;
}
.wycg-rb-bar-group:hover .wycg-rb-bar-fill { background: var(--blue-soft); }
.wycg-rb-bar-hl { background: var(--blue) !important; }
.wycg-rb-bar-group span {
  font-size: var(--t-caption); color: var(--text-muted); font-weight: var(--w-medium);
  white-space: nowrap;
}

/* Bottom actions */
.wycg-rb-actions {
  display: flex;
  gap: var(--s-2);
  padding-top: var(--s-3);
  border-top: 1px solid var(--border-sub);
}
.wycg-rb-action-btn {
  display: flex; align-items: center; gap: var(--s-1);
  font-size: var(--t-sm); font-weight: var(--w-semibold); color: var(--text-sec);
  background: var(--bg-subtle); border: 1px solid var(--border-sub);
  border-radius: var(--r-md); padding: 6px var(--s-3);
  cursor: pointer; transition: background .12s, color .12s, border-color .12s;
}
.wycg-rb-action-btn svg { width: 14px; height: 14px; }
.wycg-rb-action-btn:hover { background: var(--blue-soft); color: var(--blue); border-color: var(--blue-soft2); }

/* ── Feature grid ── */
.wycg-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-6);
}
.wycg-feat {
  display: flex;
  gap: var(--s-4);
  align-items: flex-start;
  padding: var(--s-5);
  border: 1px solid var(--border-sub);
  border-radius: var(--r-lg);
  background: var(--bg);
  transition: border-color .18s, box-shadow .18s;
}
.wycg-feat:hover { border-color: var(--blue-soft2); box-shadow: var(--sh-sm); }
.wycg-feat-highlight {
  border-color: var(--green-border);
  background: var(--green-soft);
}
.wycg-feat-highlight:hover { border-color: var(--green); }
.wycg-feat-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  background: var(--blue-soft); border: 1px solid var(--blue-soft2);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
}
.wycg-feat-icon svg { width: 18px; height: 18px; color: var(--blue); }
.wycg-feat-highlight .wycg-feat-icon {
  background: var(--green-soft); border-color: var(--green-border);
}
.wycg-feat-highlight .wycg-feat-icon svg { color: var(--green); }
.wycg-feat-body { flex: 1; }
.wycg-feat-title {
  font-size: var(--t-base); font-weight: var(--w-bold); color: var(--text);
  line-height: var(--lh-snug); margin: 0 0 var(--s-2);
}
.wycg-feat-desc {
  font-size: var(--t-base); color: var(--text-sec);
  line-height: var(--lh-relaxed); margin: 0;
}


/* =============================================================================
   HOW IT WORKS — 3-step layout
   ============================================================================= */
.hw-steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: start;
  gap: 0;
  margin-bottom: var(--s-8);
}
.hw-step {
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
  padding: var(--s-8);
  background: var(--bg);
  border: 1.5px solid var(--border-sub);
  border-radius: var(--r-xl);
  position: relative;
}
.hw-step-num {
  font-size: 4rem;
  font-weight: var(--w-xbold);
  color: var(--border-sub);
  line-height: 1;
  letter-spacing: -0.04em;
  position: absolute;
  top: var(--s-6);
  right: var(--s-6);
  user-select: none;
}
.hw-step-icon {
  width: 48px; height: 48px;
  background: var(--blue-soft); border: 1px solid var(--blue-soft2);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
}
.hw-step-icon svg { width: 22px; height: 22px; color: var(--blue); }
.hw-step-time {
  display: inline-flex;
  align-self: flex-start;
  font-size: var(--t-caption);
  font-weight: var(--w-bold);
  color: var(--blue);
  background: var(--blue-soft);
  border: 1px solid var(--blue-soft2);
  padding: 3px 10px;
  border-radius: var(--r-full);
}
.hw-step-title {
  font-size: var(--t-xl); font-weight: var(--w-bold); color: var(--text);
  line-height: var(--lh-snug); margin: 0;
}
.hw-step-body {
  font-size: var(--t-base); color: var(--text-sec);
  line-height: var(--lh-relaxed); margin: 0; flex: 1;
}
.hw-step-tags {
  display: flex; flex-wrap: wrap; gap: var(--s-2); margin-top: auto; padding-top: var(--s-2);
}
.hw-tag {
  font-size: var(--t-caption); font-weight: var(--w-bold);
  color: var(--green); background: var(--green-soft);
  border: 1px solid var(--green-border);
  padding: 3px 9px; border-radius: var(--r-full);
}
.hw-connector {
  display: flex; align-items: center; justify-content: center;
  padding: 0 var(--s-4); padding-top: var(--s-16);
  color: var(--blue-soft2); flex-shrink: 0;
}
.hw-connector svg { width: 28px; height: 28px; color: var(--blue-soft2); }
.hw-ttv-callout { margin-top: 0; margin-bottom: 0; }


/* =============================================================================
   DIFFERENTIATOR CARDS
   ============================================================================= */
.diff-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:var(--s-6); }
.diff-card {
  background:var(--bg); border:1px solid var(--border-sub); border-radius:var(--r-xl);
  overflow:hidden; transition:border-color .18s, box-shadow .18s, transform .18s;
}
.diff-card:hover { border-color:var(--blue); box-shadow:var(--sh-md); transform:translateY(-2px); }
.diff-card-visual {
  height:180px; padding:var(--s-5);
  display:flex; flex-direction:column; justify-content:center; align-items:center;
  position:relative; background:var(--bg-subtle); border-bottom:1px solid var(--border-sub);
}
.dcv-browser {
  background:#fff; border-radius:var(--r-md); box-shadow:var(--sh-md);
  overflow:hidden; width:180px; border:1px solid var(--border);
}
.dcv-bar {
  background:#F1F5F9; border-bottom:1px solid var(--border);
  padding:6px 8px; display:flex; align-items:center; gap:6px;
}
.dcv-dots { display:flex; gap:3px; }
.dcv-dots span { width:7px; height:7px; border-radius:50%; display:block; }
.dcv-dots span:nth-child(1){background:#FF5F57}
.dcv-dots span:nth-child(2){background:#FEBC2E}
.dcv-dots span:nth-child(3){background:#28C840}
.dcv-url { font-family:var(--mono); font-size:9px; color:var(--text-muted); flex:1; }
.dcv-body { padding:8px; background:var(--bg-subtle); }
.dcv-logo { width:40px; height:10px; background:var(--blue); border-radius:3px; margin-bottom:6px; opacity:.7; }
.dcv-lines { display:flex; flex-direction:column; gap:4px; margin-bottom:6px; }
.dcv-line { height:5px; background:var(--border); border-radius:2px; width:100%; }
.dcv-line-wide { width:85%; }
.dcv-line-med  { width:60%; }
.dcv-bars { display:flex; align-items:flex-end; gap:3px; height:28px; }
.dcv-bars div { flex:1; background:var(--blue-soft2); border-radius:2px 2px 0 0; }
.dcv-bars div:last-child { background:var(--blue); }
.dcv-tenants { display:flex; flex-direction:column; gap:6px; width:100%; }
.dcv-tenant {
  display:flex; align-items:center; gap:8px;
  background:#fff; border:1px solid var(--border-sub); border-radius:var(--r-sm); padding:6px 10px;
}
.dcv-tenant-dot { width:8px; height:8px; border-radius:50%; flex-shrink:0; }
.dcv-tenant-info { flex:1; }
.dcv-tenant-info strong { display:block; font-size:11px; color:var(--text); font-weight:var(--w-bold); }
.dcv-tenant-info span  { font-size:9px; color:var(--text-muted); font-family:var(--mono); }
.dcv-tenant-secure { font-size:11px; color:var(--green); font-weight:bold; }
.dcv-price-rows { display:flex; flex-direction:column; gap:4px; width:100%; }
.dcv-price-row {
  display:flex; align-items:center; justify-content:space-between;
  padding:5px 10px; border-radius:var(--r-sm); gap:var(--s-3);
}
.dcv-price-row span:first-child { font-size:11px; color:var(--text-sec); }
.dcv-price-val { font-size:11px; font-weight:var(--w-bold); white-space:nowrap; }
.dcv-them  { background:rgba(229,62,62,.06); }
.dcv-yurbi { background:rgba(4,122,24,.1); }
.dcv-high  { color:#C53030; }
.dcv-low   { color:var(--green); }
.dcv-badge {
  position:absolute; bottom:var(--s-3); left:50%; transform:translateX(-50%);
  white-space:nowrap; font-size:10px; font-weight:var(--w-bold);
  padding:4px 10px; border-radius:var(--r-full);
}
.dcv-badge-invisible { background:var(--navy); color:#fff; }
.dcv-badge-secure    { background:var(--green-soft); color:var(--green); border:1px solid var(--green-border); display:flex; align-items:center; gap:4px; }
.dcv-badge-secure svg { width:10px; height:10px; }
.dcv-badge-price     { background:var(--blue-soft); color:var(--blue); border:1px solid var(--blue-soft2); }
.diff-card h3 { font-size:var(--t-card); font-weight:var(--w-bold); color:var(--text); margin-bottom:var(--s-2); line-height:var(--lh-snug); padding:var(--s-6) var(--s-6) 0; }
.diff-card p { font-size:var(--t-base); color:var(--text-sec); line-height:var(--lh-relaxed); padding:0 var(--s-6); margin-bottom:var(--s-4); }
.diff-card .sf-link { margin:0 var(--s-6) var(--s-6); display:inline-flex; }
.sf-link { font-size:var(--t-sm); color:var(--blue); font-weight:var(--w-semibold); text-decoration:none; display:inline-flex; align-items:center; gap:4px; transition:color .15s; }
.sf-link:hover { color:var(--blue-dark); }


/* =============================================================================
   WHY YURBI
   ============================================================================= */
.why-grid { display:grid; grid-template-columns:1fr 1fr; gap:var(--s-6); margin-bottom:var(--s-8); }
.why-col { border-radius:var(--r-xl); overflow:hidden; }
.why-col-them  { border:1px solid var(--border-sub); }
.why-col-yurbi { border:2px solid var(--blue); box-shadow:var(--sh-blue); }
.why-col-header { padding:var(--s-6) var(--s-8); border-bottom:1px solid var(--border-sub); display:flex; align-items:center; gap:var(--s-3); }
.why-col-them .why-col-header  { background:var(--bg-subtle); }
.why-col-yurbi .why-col-header { background:var(--blue-soft); }
.why-col-header h3 { font-size:var(--t-base); font-weight:var(--w-bold); color:var(--text); }
.why-col-badge { background:var(--blue); color:#fff; font-size:var(--t-caption); font-weight:var(--w-bold); padding:3px 10px; border-radius:var(--r-full); white-space:nowrap; flex-shrink:0; }
.why-list { list-style:none; padding:var(--s-6) var(--s-8); display:flex; flex-direction:column; gap:var(--s-4); background:var(--bg); }
.why-list li { display:flex; align-items:flex-start; gap:var(--s-3); font-size:var(--t-base); line-height:var(--lh-normal); }
.why-list li svg { width:16px; height:16px; flex-shrink:0; margin-top:3px; }
.why-list-bad  li  { color:var(--text-sec); }
.why-list-bad  svg { color:#E53E3E; }
.why-list-good li  { color:var(--text); font-weight:var(--w-medium); }
.why-list-good svg { color:var(--green); }
.why-cta { text-align:center; }
.why-col-compare-links { display:flex; flex-wrap:wrap; gap:var(--s-1) var(--s-4); margin-top:var(--s-4); padding-top:var(--s-4); border-top:1px solid var(--border-sub); }
.why-col-compare-links a { font-size:var(--t-sm); font-weight:var(--w-semibold); color:var(--text-muted); text-decoration:none; transition:color .15s; }
.why-col-compare-links a:hover { color:var(--blue); }
.why-calc-cta { display:flex; align-items:center; gap:var(--s-4); margin-top:var(--s-6); padding:var(--s-5) var(--s-6); background:var(--bg-blue); border:1px solid var(--blue-soft2); border-radius:var(--r-lg); flex-wrap:wrap; }
.why-calc-cta > svg { width:22px; height:22px; color:var(--blue); flex-shrink:0; }
.why-calc-cta-text { flex:1; min-width:200px; }
.why-calc-cta-text strong { display:block; font-size:var(--t-base); font-weight:var(--w-bold); color:var(--text); margin-bottom:var(--s-1); }
.why-calc-cta-text span { font-size:var(--t-sm); color:var(--text-muted); line-height:var(--lh-normal); }


/* =============================================================================
   LEGACY SECTION
   ============================================================================= */
.legacy-inner { display:grid; grid-template-columns:1fr auto; gap:var(--s-16); align-items:center; }
.legacy-copy .sh-title { margin-bottom:var(--s-4); }
.legacy-copy p { font-size:var(--t-body); color:var(--text-sec); margin-bottom:var(--s-6); }
.legacy-links { display:flex; gap:var(--s-3); flex-wrap:wrap; }
.legacy-stat-inner { background:var(--navy); border-radius:var(--r-xl); padding:var(--s-10); text-align:center; min-width:220px; display:flex; flex-direction:column; align-items:center; gap:var(--s-4); -webkit-font-smoothing:antialiased; }
.legacy-stat-icon { width:48px; height:48px; background:rgba(4,122,24,.15); border-radius:var(--r-md); display:flex; align-items:center; justify-content:center; }
.legacy-stat-icon svg { width:24px; height:24px; color:var(--on-dark-badge); }
.legacy-stat-label { font-size:var(--t-sm); color:var(--on-dark-sec); line-height:var(--lh-relaxed); max-width:200px; }
.legacy-stat-link { font-size:var(--t-sm); font-weight:var(--w-semibold); color:var(--on-dark-link); text-decoration:underline; }
.legacy-stat-link:hover { color:#fff; }


/* =============================================================================
   ON-PREM ISV DEPLOYMENT
   ============================================================================= */
.deploy-inner { display:grid; grid-template-columns:1fr 1fr; gap:var(--s-16); align-items:start; }
.deploy-copy { display:flex; flex-direction:column; gap:var(--s-6); }
.deploy-copy h2 { font-size:var(--t-3xl); line-height:var(--lh-tight); letter-spacing:var(--ls-snug); color:var(--text); }
.deploy-copy > p { color:var(--text-sec); line-height:var(--lh-relaxed); }
.deploy-migration-callout { margin-top:0; }
.deploy-cta { align-self:flex-start; }
.deploy-topology { display:flex; flex-direction:column; gap:var(--s-4); }
.deploy-topology-eyebrow { font-size:var(--t-sm); font-weight:var(--w-bold); color:var(--text-muted); text-align:center; letter-spacing:var(--ls-wide); text-transform:uppercase; margin:0; }
.deploy-customers { display:grid; grid-template-columns:repeat(4,1fr); gap:var(--s-3); }
.deploy-customer { display:flex; flex-direction:column; align-items:center; gap:var(--s-2); padding:var(--s-4) var(--s-2); background:var(--bg); border:1.5px solid var(--border-sub); border-radius:var(--r-md); text-align:center; box-shadow:var(--sh-sm); }
.deploy-customer-server { width:44px; height:44px; background:var(--blue-soft); border-radius:var(--r-md); display:flex; align-items:center; justify-content:center; color:var(--blue); flex-shrink:0; }
.deploy-customer-server svg { width:22px; height:22px; }
.deploy-customer-name { font-size:var(--t-caption); font-weight:var(--w-bold); color:var(--text); line-height:var(--lh-snug); }
.deploy-instance-badge { font-size:var(--t-caption); font-weight:var(--w-bold); color:var(--green); background:var(--green-soft); border:1px solid var(--green-border); padding:2px var(--s-2); border-radius:var(--r-full); white-space:nowrap; }
.deploy-customer-more .deploy-customer-server { background:var(--bg-muted); color:var(--text-muted); }
.deploy-customer-server-more { background:var(--bg-muted) !important; }
.deploy-customer-server-more span { font-size:var(--t-base); font-weight:var(--w-xbold); color:var(--text-muted); line-height:1; }
.deploy-stat-row { display:flex; background:var(--navy); border-radius:var(--r-lg); overflow:hidden; }
.deploy-stat-item { flex:1; display:flex; flex-direction:column; align-items:center; justify-content:center; padding:var(--s-5) var(--s-3); text-align:center; gap:var(--s-1); }
.deploy-stat-item strong { font-size:var(--t-2xl); font-weight:var(--w-xbold); color:var(--on-dark); line-height:var(--lh-tight); }
.deploy-stat-item span { font-size:var(--t-caption); color:var(--on-dark-sec); font-weight:var(--w-medium); line-height:var(--lh-normal); }
.deploy-stat-sep { width:1px; background:rgba(255,255,255,.1); align-self:stretch; margin:var(--s-4) 0; flex-shrink:0; }
.deploy-topology-note { font-size:var(--t-caption); color:var(--text-muted); text-align:center; font-weight:var(--w-medium); line-height:var(--lh-normal); margin:0; }
.deploy-topology-note a { color:var(--blue); text-decoration:underline; text-underline-offset:2px; }


/* =============================================================================
   RESPONSIVE
   ============================================================================= */
@media (max-width: 1024px) {
  .hero-top { grid-template-columns: 1fr; gap: var(--s-12); }
  .hero-visual { display: none; }
  .icp-grid { grid-template-columns: 1fr; }
  .diff-grid { grid-template-columns: 1fr; }
  .why-grid  { grid-template-columns: 1fr; }
  .legacy-inner { grid-template-columns: 1fr; }
  .legacy-stat  { display: none; }
  .hw-steps {
    grid-template-columns: 1fr;
    gap: var(--s-6);
  }
  .hw-connector { display: none; }
  .hw-step-num { display: none; }
  .wycg-features { grid-template-columns: repeat(2, 1fr); }
  .wycg-rb-body { grid-template-columns: 160px 1fr; }
  .deploy-inner { grid-template-columns: 1fr; gap: var(--s-10); }
  .deploy-cta { align-self: flex-start; }
}

@media (max-width: 768px) {
  .hero h1 { font-size: var(--t-4xl); }
  .sprint-diagram { padding: var(--s-6); }
  .diff-grid { grid-template-columns: 1fr; }
  .wycg-features { grid-template-columns: 1fr; }
  .wycg-rb-body { grid-template-columns: 1fr; }
  .wycg-rb-fields { display: none; }
}

@media (max-width: 640px) {
  .icp-section { padding-block: var(--s-10); }
  .deploy-customers { grid-template-columns: repeat(2, 1fr); }
  .deploy-stat-row { flex-direction: column; border-radius: var(--r-lg); }
  .deploy-stat-sep { width: auto; height: 1px; margin: 0 var(--s-4); align-self: auto; }
  .deploy-stat-item { padding: var(--s-4); }
  .why-calc-cta { flex-direction: column; text-align: center; align-items: center; }
}
