/* ==========================================================================
   PAYDURA LANDING PAGE — 100% Faithful Recreation of Design Mockup
   ========================================================================== */

/* --- Design Tokens --- */
:root {
  --purple: #6857eb;
  --purple-hover: #5444d8;
  --purple-light: #f4f2ff;
  --purple-tint: #eeeaff;
  --purple-line: #dcd5fe;
  
  --lime: #bcf32b;
  --lime-ring: #d8f998;
  --lime-bg: #edf9cd;
  --lime-text: #3f6a00;
  
  --ink: #111633;
  --ink-secondary: #232742;
  --gray: #616c87;
  --gray-light: #8e97af;
  --border: #eef1f7;
  --border-dark: #e1e5f0;
  
  --card-bg: #ffffff;
  --bg-page: #ffffff;
  --bg-subtle: #faf9ff;
  
  --shadow-sm: 0 2px 8px rgba(20, 25, 55, 0.04);
  --shadow-md: 0 8px 24px rgba(20, 25, 55, 0.06);
  --shadow-lg: 0 16px 48px rgba(25, 20, 70, 0.08);
  --shadow-purple: 0 8px 24px rgba(104, 87, 235, 0.28);
  --shadow-phone: 0 24px 60px rgba(20, 16, 55, 0.16);
  
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 24px;
  --radius-pill: 9999px;
}

/* --- Base & Reset --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 75px;
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--ink);
  background-color: var(--bg-page);
  -webkit-font-smoothing: antialiased;
}

body {
  margin: 0;
  line-height: 1.55;
  overflow-x: hidden;
  font-family: inherit;
}

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

button {
  font-family: inherit;
  border: none;
  background: none;
  cursor: pointer;
}

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

ul, ol {
  list-style: none;
}

/* --- Layout Utility --- */
.wrap {
  width: min(1180px, 100% - 48px);
  margin-inline: auto;
  position: relative;
}

.center {
  text-align: center;
}

/* --- Typography Utilities --- */
.eyebrow {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--purple);
  margin-bottom: 12px;
  display: block;
}

.eyebrow-pill {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--purple);
  margin-bottom: 10px;
}

.section-title-wrap {
  max-width: 620px;
  margin-bottom: 48px;
}

.section-title-wrap.center {
  margin-inline: auto;
}

.section-title-wrap h2 {
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.15;
  color: var(--ink);
}

/* --- Button Component System --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 22px;
  height: 46px;
  border-radius: var(--radius-md);
  font-size: 13.5px;
  font-weight: 700;
  transition: all 0.2s ease;
  cursor: pointer;
  white-space: nowrap;
  border: none;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn svg {
  width: 16px;
  height: 16px;
}

.btn-purple {
  background: var(--purple);
  color: #ffffff;
  box-shadow: var(--shadow-purple);
}

.btn-purple:hover {
  background: var(--purple-hover);
}

.btn-dark-pill {
  background: var(--ink);
  color: #ffffff;
  border-radius: var(--radius-pill);
  height: 40px;
  padding: 0 18px;
  font-size: 13px;
  font-weight: 700;
}

.btn-dark-pill:hover {
  background: #000000;
}

.btn-ghost {
  background: var(--purple-light);
  color: var(--purple);
  border: 1px solid var(--purple-tint);
}

.btn-ghost:hover {
  background: var(--purple-tint);
}

.btn-outline {
  background: #ffffff;
  color: var(--ink);
  border: 1px solid var(--border-dark);
}

.btn-outline:hover {
  background: #f9faff;
}

.btn-full {
  width: 100%;
}

/* ==========================================================================
   HEADER
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 70px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.logo img {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  object-fit: cover;
}

.nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav a {
  font-size: 14px;
  font-weight: 600;
  color: #4b5568;
  transition: color 0.15s ease;
}

.nav a:hover {
  color: var(--purple);
}

.header-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Language Dropdown */
.lang-dropdown {
  position: relative;
}

.lang-toggle {
  height: 36px;
  padding: 0 12px;
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-pill);
  background: #ffffff;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  transition: border-color 0.15s ease;
}

.lang-toggle:hover {
  border-color: var(--purple);
}

.lang-toggle svg {
  width: 14px;
  height: 14px;
  color: var(--gray);
}

.lang-menu {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  min-width: 140px;
  padding: 5px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  z-index: 10;
}

.lang-menu button {
  display: block;
  width: 100%;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 600;
  text-align: start;
  color: var(--ink);
  transition: all 0.12s ease;
}

.lang-menu button:hover,
.lang-menu button.active {
  background: var(--purple-light);
  color: var(--purple);
}

.hamburger {
  display: none;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--border-dark);
  place-items: center;
  color: var(--ink);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  padding: 48px 0 64px;
  background: linear-gradient(180deg, #ffffff 0%, #faf9ff 100%);
  position: relative;
}

.hero-layout {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  align-items: center;
  gap: 32px;
  min-height: 660px;
}

/* Left Column */
.hero-content {
  z-index: 2;
}

.pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  background: var(--lime-bg);
  color: var(--lime-text);
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}

.pill-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #84cc16;
}

.hero-content h1 {
  font-size: clamp(38px, 4.6vw, 56px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: var(--ink);
  margin-bottom: 20px;
}

.hero-description {
  font-size: 14.5px;
  line-height: 1.68;
  color: var(--gray);
  max-width: 430px;
  margin-bottom: 28px;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-cta-group .btn {
  height: 48px;
  font-size: 14px;
}

.play-arrow {
  font-size: 11px;
  margin-left: 2px;
}

.hero-meta {
  margin-top: 22px;
  font-size: 12px;
  font-weight: 500;
  color: var(--gray-light);
}

/* Right Column: Phone + Milestone Tree */
.hero-showcase {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  position: relative;
  width: 100%;
}

/* Phone Mockup (Straight & Realistic) */
.phone-wrapper {
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}

.phone-bezel {
  width: 290px;
  height: 595px;
  border: 7px solid #1c1f35;
  border-radius: 40px;
  background: #ffffff;
  overflow: hidden;
  box-shadow: var(--shadow-phone);
  position: relative;
}

.phone-speaker-notch {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 44px;
  height: 5px;
  background: #1c1f35;
  border-radius: 3px;
  z-index: 3;
}

.phone-screen-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

/* Vertical Connected Milestone Tree (Screenshot 1 Exact Match) */
.milestone-tree {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 10px 0;
}

.tree-line {
  position: absolute;
  left: 26px;
  top: 26px;
  bottom: 26px;
  width: 2px;
  background: #e0dbfd;
  z-index: 1;
}

.tree-node {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 16px;
}

.node-icon-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #ffffff;
  border: 2px solid var(--lime);
  box-shadow: 0 0 0 5px var(--lime-bg);
  display: grid;
  place-items: center;
  color: var(--purple);
  flex-shrink: 0;
}

.node-icon-circle svg {
  width: 22px;
  height: 22px;
}

.glyph-dollar {
  font-size: 24px;
  font-weight: 800;
  color: var(--purple);
  line-height: 1;
}

.node-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.node-text strong {
  font-size: 16px;
  font-weight: 800;
  color: var(--purple);
  line-height: 1.25;
}

.node-text span {
  font-size: 13px;
  color: var(--gray);
  font-weight: 400;
  line-height: 1.35;
}

/* ==========================================================================
   TRUST BAR
   ========================================================================== */
.trust-bar {
  border-block: 1px solid var(--border);
  padding: 24px 0;
  background: #ffffff;
  position: relative;
  z-index: 2;
}

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

.trust-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 6px 16px;
  border-right: 1px solid var(--border);
}

.trust-item:last-child {
  border-right: none;
}

.trust-ico {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--purple);
  flex-shrink: 0;
}

.trust-ico svg {
  width: 22px;
  height: 22px;
}

.currency-symbols {
  font-size: 17px;
  font-weight: 800;
  color: var(--purple);
  letter-spacing: -0.04em;
}

.trust-txt strong {
  font-size: 13.5px;
  font-weight: 800;
  display: block;
}

.trust-txt small {
  font-size: 11.5px;
  color: var(--gray);
  display: block;
}

/* ==========================================================================
   HOW IT WORKS
   ========================================================================== */
.how-section {
  padding: 80px 0 60px;
}

.how-steps-flow {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 16px;
}

.step-column {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.step-badge {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--lime);
  color: var(--ink);
  font-size: 15px;
  font-weight: 800;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  box-shadow: 0 2px 8px rgba(188, 243, 43, 0.35);
  border: 2px solid #ffffff;
}

.step-column h3 {
  font-size: 15px;
  font-weight: 800;
  margin-bottom: 4px;
}

.step-column p {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.5;
  margin-bottom: 16px;
  min-height: 38px;
}

.step-flow-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #94a3b8;
  padding-top: 60px;
  flex-shrink: 0;
}

.step-flow-arrow svg {
  width: 22px;
  height: 22px;
}

/* Mockup Cards */
.mockup-img-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  padding: 8px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.mockup-img-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.app-screen-img-fluid {
  width: 100%;
  height: auto;
  max-height: 280px;
  object-fit: contain;
  border-radius: 12px;
  display: block;
}

.mockup-card-img-wrap {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  display: flex;
  flex: 1;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.mockup-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 18px;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.mockup-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.card-header-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.mc-bold-title {
  font-size: 13.5px;
  font-weight: 800;
  color: var(--ink);
}

.mc-bold-title.mc-purple-title {
  color: var(--purple);
  font-size: 14.5px;
}

.mc-sub-date {
  font-size: 11.5px;
  color: var(--gray);
}

.mc-icon-btn {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #f4f5f8;
  display: grid;
  place-items: center;
  color: var(--gray);
}

.mc-icon-btn svg {
  width: 12px;
  height: 12px;
}

.salary-amount-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.salary-num-wrap {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.currency-mark {
  font-size: 18px;
  font-weight: 800;
  color: var(--purple);
}

.salary-number {
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.money-left-sub {
  font-size: 11px;
  color: var(--gray);
  font-weight: 600;
  display: block;
  margin-top: 1px;
}

.mini-donut-badge {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 3px solid #e0f2fe;
  background: #f0fdf4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.mini-donut-badge.ring-lavender {
  width: 56px;
  height: 56px;
  border: 5px solid #dcd7fa;
  background: #ffffff;
}

.mini-donut-badge span {
  font-size: 12px;
  font-weight: 800;
  color: #16a34a;
  line-height: 1;
}

.mini-donut-badge small {
  font-size: 8.5px;
  font-weight: 600;
  color: var(--gray);
  text-transform: lowercase;
}

.mc-footer-tag {
  font-size: 12px;
  font-weight: 500;
  color: var(--gray);
}

.mc-footer-tag strong {
  font-weight: 800;
  color: var(--ink);
}

.green-bullet {
  color: #84cc16;
  margin-right: 4px;
}

/* Step 2 Safe Card */
.safe-card {
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, #faf9ff 0%, #ffffff 100%);
  border-color: var(--purple-tint);
}

.safe-label-top {
  font-size: 13px;
  color: var(--gray);
  font-weight: 600;
}

.safe-huge-number {
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin: 4px 0 12px;
}

.btn-add-income {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  background: var(--purple);
  color: #ffffff;
  border-radius: var(--radius-pill);
  padding: 10px 22px;
  font-size: 13.5px;
  font-weight: 700;
  transition: all 0.15s ease;
}

.btn-add-income:hover {
  background: var(--purple-hover);
  transform: translateY(-1px);
}

.btn-add-income svg {
  width: 15px;
  height: 15px;
}

.salary-flow-card {
  position: relative;
  overflow: hidden;
}

.flow-ribbon-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.salary-flow-card .card-header-row,
.salary-flow-card .salary-amount-row,
.salary-flow-card .mc-footer-tag {
  position: relative;
  z-index: 2;
}

.flow-bottom-section {
  position: relative;
  z-index: 2;
  margin-top: 24px;
  padding-top: 14px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Step 3 Expense List (Screenshot Exact Match) */
.expenses-mockup-card {
  padding: 20px;
}

.mc-view-all-link {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--purple);
  transition: opacity 0.15s ease;
}

.mc-view-all-link:hover {
  opacity: 0.8;
}

.expense-list-mini {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 4px;
}

.app-expense-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid #f8f9fc;
}

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

.app-exp-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.app-exp-icon svg {
  width: 20px;
  height: 20px;
}

.exp-ico-yellow {
  background: #fef9c3;
  color: #ca8a04;
}

.exp-ico-blue {
  background: #eff6ff;
  color: #2563eb;
}

.exp-ico-green {
  background: #ecfdf5;
  color: #16a34a;
}

.app-exp-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.app-exp-name {
  font-size: 14.5px;
  font-weight: 800;
  color: var(--ink);
  line-height: 1.2;
}

.app-exp-time {
  font-size: 11.5px;
  color: var(--gray);
  font-weight: 400;
}

.app-exp-amount {
  display: flex;
  align-items: center;
  gap: 6px;
}

.app-exp-amount span {
  font-size: 15px;
  font-weight: 800;
  color: var(--ink);
}

.app-exp-amount svg {
  width: 16px;
  height: 16px;
  color: var(--gray);
}

/* ==========================================================================
   BUDGETS & PROGRESS (3-CARD SHOWCASE)
   ========================================================================== */
.bp-section {
  padding: 60px 0 75px;
  background: #ffffff;
}

.bp-layout-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  align-items: center;
  gap: 48px;
}

.bp-headline-col h2 {
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.1;
  margin-bottom: 16px;
}

.bp-headline-col p {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--gray);
  max-width: 400px;
}

/* 3 Cards Showcase Grid */
.bp-showcase-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.75fr 1.35fr;
  gap: 16px;
  align-items: stretch;
}

.bp-img-card {
  border-radius: var(--radius-xl);
  padding: 0;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.bp-img-card .app-screen-img-fluid {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  border-radius: 0;
}

.bp-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 18px;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

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

.bp-card-head h4 {
  font-size: 14px;
  font-weight: 800;
}

.round-add-btn {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--purple);
  color: #ffffff;
  font-size: 15px;
  font-weight: 800;
  display: grid;
  place-items: center;
  transition: transform 0.15s ease;
}

.round-add-btn:hover {
  transform: scale(1.1);
}

.badge-tag {
  font-size: 8.5px;
  font-weight: 800;
  letter-spacing: 0.06em;
  background: var(--purple-light);
  color: var(--purple);
  padding: 2px 7px;
  border-radius: 5px;
}

/* Card 1: Category Budgets */
.budget-items-list {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.b-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.b-ico {
  width: 26px;
  height: 26px;
  border-radius: 7px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.b-ico svg {
  width: 12px;
  height: 12px;
}

.b-ico-pink { background: #fdf2f8; color: #db2777; }
.b-ico-teal { background: #f0fdfa; color: #0d9488; }
.b-ico-purple { background: #f4f2ff; color: #6857eb; }
.b-ico-red { background: #fef2f2; color: #ef4444; }
.b-ico-orange { background: #fffbeb; color: #d97706; }

.b-details {
  flex: 1;
}

.b-top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 2px;
}

.b-top strong {
  font-size: 10.5px;
  font-weight: 700;
}

.b-top span {
  font-size: 10.5px;
  font-weight: 700;
}

.b-bar {
  height: 4px;
  border-radius: 2px;
  background: #f1f3f8;
  overflow: hidden;
  margin-bottom: 2px;
}

.b-fill {
  height: 100%;
  border-radius: 2px;
}

.fill-green { background: #10b981; }
.fill-blue { background: #3b82f6; }
.fill-purple { background: var(--purple); }
.fill-pink { background: #ec4899; }
.fill-orange { background: #f59e0b; }

.b-bot {
  display: flex;
  justify-content: space-between;
  font-size: 9px;
  color: var(--gray);
}

/* Card 2: Spending Rhythm */
.rhythm-chart-area {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 5px;
  height: 110px;
  padding: 8px 4px;
}

.rhythm-column-bar {
  flex: 1;
  height: var(--bar-h);
  background: #edeaff;
  border-radius: 4px 4px 0 0;
  transition: height 0.3s ease;
}

.rhythm-column-bar:nth-child(3) {
  background: var(--purple);
}

.rhythm-bottom-action {
  display: flex;
  justify-content: flex-end;
  margin-top: 4px;
}

/* Card 3: 2026 Overview & Salary Breakdown */
.card-overview {
  padding: 16px;
  gap: 12px;
}

.overview-head-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 8px;
}

.ov-title {
  font-size: 11px;
  font-weight: 700;
  color: var(--gray);
}

.ov-total small {
  font-size: 9px;
  color: var(--gray);
  display: block;
}

.ov-total strong {
  font-size: 15px;
  font-weight: 800;
  color: var(--ink);
}

.months-bar-chart {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2px;
  height: 48px;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 10px;
}

.m-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  height: 100%;
  justify-content: flex-end;
}

.m-bar {
  width: 100%;
  max-width: 8px;
  background: #edeaff;
  border-radius: 2px 2px 0 0;
}

.m-col.active .m-bar {
  background: var(--purple);
}

.m-col span {
  font-size: 7.5px;
  color: var(--gray-light);
  margin-top: 2px;
}

.salary-subcard {
  background: #f8f9fc;
  border-radius: var(--radius-md);
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.subcard-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.subcard-header strong {
  font-size: 11.5px;
  font-weight: 800;
  display: block;
}

.muted-small {
  font-size: 9.5px;
  color: var(--gray);
}

.subcard-actions {
  display: flex;
  gap: 6px;
  color: var(--gray);
}

.subcard-actions svg {
  width: 12px;
  height: 12px;
  cursor: pointer;
}

.salary-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 4px;
  text-align: center;
}

.cell-label {
  font-size: 11.5px;
  font-weight: 800;
  display: block;
}

.green-txt {
  color: #10b981;
}

.stat-cell small {
  font-size: 8.5px;
  color: var(--gray);
}

.savings-progress-row {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.sav-tag {
  font-size: 9px;
  font-weight: 800;
  color: #10b981;
}

.sav-progress-track {
  height: 5px;
  border-radius: 3px;
  background: #e2e8f0;
  overflow: hidden;
}

.sav-progress-fill {
  height: 100%;
  background: #10b981;
  border-radius: 3px;
}

.compare-salaries-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  font-size: 9.5px;
  font-weight: 700;
  color: var(--gray);
  margin-top: 2px;
}

.compare-salaries-link svg {
  width: 11px;
  height: 11px;
}

/* ==========================================================================
   EVERYTHING YOU NEED (MOSAIC GRID - Screenshot 2 Exact Match)
   ========================================================================== */
.everything-section {
  padding: 70px 0;
  background: #faf9ff;
}

.features-mosaic-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.feat-box {
  background: #ffffff;
  border: 1px solid #f1f3f9;
  border-radius: 20px;
  padding: 24px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.02);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feat-box:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.feat-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--purple-light);
  color: var(--purple);
  display: grid;
  place-items: center;
  margin-bottom: 12px;
}

.feat-icon-wrap svg {
  width: 20px;
  height: 20px;
  stroke-width: 1.85;
}

.feat-box strong {
  font-size: 14px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 4px;
  display: block;
}

.feat-box p {
  font-size: 11.5px;
  color: var(--gray);
  line-height: 1.45;
  font-weight: 400;
}

/* ==========================================================================
   SECURITY & PRIVACY STRIP (Screenshot 3 Exact Match)
   ========================================================================== */
.security-strip-section {
  padding: 56px 0;
  background: #ffffff;
  border-block: 1px solid var(--border);
}

.connected-nodes-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.sec-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex-shrink: 0;
  max-width: 170px;
}

.sec-circle-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 1.5px solid var(--purple-line);
  background: #ffffff;
  display: grid;
  place-items: center;
  color: var(--ink-secondary);
  margin-bottom: 14px;
  box-shadow: 0 4px 16px rgba(104, 87, 235, 0.05);
}

.sec-circle-icon svg {
  width: 24px;
  height: 24px;
  stroke-width: 1.75;
}

.sec-node strong {
  font-size: 13.5px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 4px;
}

.sec-node p {
  font-size: 11.5px;
  color: var(--gray);
  line-height: 1.4;
  font-weight: 400;
}

.node-dotted-line {
  flex: 1;
  height: 0;
  border-top: 2px dashed #b8affc;
  margin-bottom: 46px;
  margin-inline: 8px;
}

/* ==========================================================================
   PAYDAY CYCLE COMPARISON
   ========================================================================== */
.comparison-section {
  padding: 70px 0;
  background: #ffffff;
}

.compare-cards-wrapper {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 28px;
  align-items: center;
  max-width: 860px;
  margin-inline: auto;
}

.compare-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
}

.compare-card h3 {
  font-size: 17px;
  font-weight: 800;
  margin-bottom: 4px;
}

.compare-subhead {
  font-size: 12px;
  color: var(--gray);
  margin-bottom: 18px;
}

.check-feature-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.check-feature-list li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
}

.check-feature-list svg {
  width: 16px;
  height: 16px;
  color: var(--purple);
  flex-shrink: 0;
}

.vs-circle-badge {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--purple);
  color: #ffffff;
  font-size: 14px;
  font-weight: 800;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-purple);
  flex-shrink: 0;
}

/* ==========================================================================
   DOWNLOAD SECTION (Screenshot 4 Exact Match)
   ========================================================================== */
.download-beta-section {
  padding: 60px 0 75px;
  background: #f8f7fd;
}

.download-beta-grid {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  align-items: center;
  gap: 48px;
}

.dl-text-side h2 {
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.1;
  margin-bottom: 16px;
}

.dl-text-side p {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--gray);
  max-width: 380px;
}

.dl-unified-card {
  background: #ffffff;
  border: 1px solid #f1f3f9;
  border-radius: 24px;
  padding: 36px 40px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
  width: 100%;
}

.dl-card-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  width: 100%;
}

/* Specs Column */
.dl-specs-column {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.spec-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #f3f4f6;
  font-size: 13px;
}

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

.spec-row span {
  color: var(--gray);
}

.spec-row strong {
  font-weight: 800;
  color: var(--ink);
}

/* Install Column */
.dl-install-column {
  border-left: 1px solid #f1f3f9;
  padding-left: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}

.dl-install-column h4 {
  font-size: 16px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 14px;
}

.install-steps-ol {
  padding-left: 18px;
  margin-bottom: 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  list-style: decimal;
  width: 100%;
}

.install-steps-ol li {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.5;
}

.dl-btn-stack {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

.dl-btn-stack .btn {
  height: 48px;
  font-size: 14px;
  font-weight: 700;
  border-radius: 12px;
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* QR Code Column */
.dl-qr-column {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.qr-code-box {
  width: 120px;
  height: 120px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 8px;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-sm);
  margin-bottom: 8px;
}

.qr-svg {
  width: 100%;
  height: 100%;
}

.qr-caption {
  font-size: 11.5px;
  font-weight: 600;
  color: var(--gray);
}

.dl-bottom-disclaimer {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid #f3f4f6;
  font-size: 11.5px;
  color: var(--gray-light);
  line-height: 1.5;
}

.dl-bottom-disclaimer strong {
  color: var(--purple);
}

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq-section {
  padding: 60px 0 80px;
}

.faq-main-heading {
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
}

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

.faq-item {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 0 16px;
  transition: all 0.2s ease;
}

.faq-item:hover,
.faq-item[open] {
  border-color: var(--purple-tint);
  box-shadow: var(--shadow-sm);
}

.faq-item summary {
  list-style: none;
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  user-select: none;
}

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

.faq-item summary svg {
  width: 15px;
  height: 15px;
  color: var(--gray);
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.faq-item[open] summary svg {
  transform: rotate(180deg);
  color: var(--purple);
}

.faq-item p {
  padding-bottom: 14px;
  font-size: 12.5px;
  color: var(--gray);
  line-height: 1.6;
}

.faq-item p a {
  color: var(--purple);
  text-decoration: underline;
}

.faq-bottom-link {
  text-align: center;
}

.faq-bottom-link a {
  font-size: 13px;
  font-weight: 700;
  color: var(--purple);
  display: inline-block;
  transition: transform 0.15s ease;
}

.faq-bottom-link a:hover {
  transform: translateX(4px);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 60px 0 32px;
  background: #ffffff;
}

.footer-columns-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr;
  gap: 32px;
}

.footer-brand-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-brand-col p {
  font-size: 12px;
  color: var(--gray);
  line-height: 1.6;
  max-width: 260px;
}

.social-icon-row {
  display: flex;
  gap: 8px;
  margin-top: 4px;
}

.social-icon-row a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--border-dark);
  display: grid;
  place-items: center;
  color: var(--gray);
  transition: all 0.15s ease;
}

.social-icon-row a:hover {
  color: var(--purple);
  border-color: var(--purple);
  background: var(--purple-light);
}

.social-icon-row svg {
  width: 15px;
  height: 15px;
}

.footer-nav-col {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.footer-nav-col strong {
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 4px;
}

.footer-nav-col a {
  font-size: 12px;
  color: var(--gray);
  transition: color 0.15s ease;
}

.footer-nav-col a:hover {
  color: var(--purple);
}

.footer-bottom-bar {
  margin-top: 44px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  font-size: 11.5px;
  color: var(--gray-light);
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS
   ========================================================================== */
@media (max-width: 1080px) {
  .hero-layout,
  .bp-layout-grid,
  .download-beta-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .hero-content {
    text-align: center;
  }

  .pill-badge {
    margin-inline: auto;
  }

  .hero-description {
    margin-inline: auto;
  }

  .hero-cta-group {
    justify-content: center;
  }

  .bp-showcase-grid {
    grid-template-columns: 1fr 1fr;
  }

  .card-overview {
    grid-column: 1 / -1;
  }

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

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

  .footer-columns-grid {
    grid-template-columns: 1.5fr repeat(2, 1fr);
    gap: 28px;
  }
}

@media (max-width: 880px) {
  .nav {
    display: none;
    position: absolute;
    top: 70px;
    inset-inline: 16px;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    flex-direction: column;
    padding: 14px;
    gap: 10px;
    z-index: 50;
  }

  .nav.open {
    display: flex;
  }

  .hamburger {
    display: grid;
  }

  .btn-dark-pill {
    display: none;
  }

  .how-steps-flow {
    flex-direction: column;
  }

  .step-flow-arrow {
    transform: rotate(90deg);
    padding: 10px 0;
  }

  .bp-showcase-grid {
    grid-template-columns: 1fr;
  }

  .trust-row {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .trust-item {
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding-bottom: 14px;
  }

  .connected-nodes-row {
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
  }

  .node-dotted-line {
    display: none;
  }

  .compare-cards-wrapper {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .vs-circle-badge {
    margin-inline: auto;
  }

  .dl-card-content-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 640px) {
  .wrap {
    width: calc(100% - 28px);
  }

  .hero-content h1 {
    font-size: 36px;
  }

  .hero-showcase {
    flex-direction: column;
    gap: 24px;
  }

  .phone-bezel {
    width: 260px;
    height: 530px;
  }

  .trust-row {
    grid-template-columns: 1fr;
  }

  .trust-item {
    justify-content: flex-start;
  }

  .faq-accordion-grid {
    grid-template-columns: 1fr;
  }

  .features-mosaic-grid {
    grid-template-columns: 1fr;
  }

  .footer-columns-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand-col {
    grid-column: 1 / -1;
  }

  .footer-bottom-bar {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}

/* ==========================================================================
   RTL (ARABIC) SUPPORT
   ========================================================================== */
[dir="rtl"] {
  text-align: right;
}

[dir="rtl"] .nav a,
[dir="rtl"] .lang-menu button {
  text-align: right;
}

[dir="rtl"] .phone-bezel {
  direction: ltr;
}

[dir="rtl"] .install-steps-ol {
  padding-left: 0;
  padding-right: 16px;
}

[dir="rtl"] .faq-bottom-link a:hover {
  transform: translateX(-4px);
}

[dir="rtl"] .tree-line {
  left: auto !important;
  right: 23px !important;
}

[dir="rtl"] .milestone-tree {
  text-align: right;
}

[dir="rtl"] .feat-box {
  text-align: right !important;
  border-right: 0 !important;
  border-left: 1px solid var(--border-dark);
}

[dir="rtl"] .feat-box:nth-child(5),
[dir="rtl"] .feat-box:last-child {
  border-left: 0 !important;
}

[dir="rtl"] .feat-copy {
  text-align: right !important;
}

[dir="rtl"] .feat-copy strong {
  text-align: right !important;
  margin: 0 0 2px !important;
}

[dir="rtl"] .feat-copy p {
  text-align: right !important;
  margin: 0 !important;
}

[dir="rtl"] .comparison-section .section-title-wrap,
[dir="rtl"] .comparison-section .section-title-wrap.center {
  text-align: right !important;
  margin-left: auto !important;
  margin-right: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
}

[dir="rtl"] .comparison-section .section-title-wrap .eyebrow-pill {
  margin-left: 0 !important;
  margin-right: 0 !important;
  align-self: flex-start !important;
}

[dir="rtl"] .comparison-section .section-title-wrap h2 {
  text-align: right !important;
}

[dir="rtl"] .compare-card {
  text-align: right !important;
}

[dir="rtl"] .check-feature-list li {
  text-align: right !important;
}

[dir="rtl"] .dl-install-column {
  border-left: none;
  border-right: 1px solid #f1f3f9;
  padding-left: 0;
  padding-right: 36px;
}

/* ========================================================================== 
   SELECTED REFERENCE FIDELITY OVERRIDES
   Keeps the existing content and behavior while matching the approved mockup.
   ========================================================================== */
.site-header {
  height: 62px;
}

.header-inner {
  height: 62px;
}

.hero-section {
  padding: 30px 0 28px;
}

.hero-layout {
  grid-template-columns: minmax(290px, 0.86fr) minmax(510px, 1.34fr);
  gap: 28px;
  min-height: 500px;
}

.hero-content h1 {
  font-size: clamp(42px, 4.25vw, 54px);
  line-height: 1.04;
  margin-bottom: 18px;
}

.hero-description {
  font-size: 13.5px;
  line-height: 1.58;
  max-width: 390px;
  margin-bottom: 22px;
}

.hero-meta {
  margin-top: 18px;
  font-size: 11px;
}

.hero-showcase {
  justify-content: flex-start;
  gap: 34px;
}

.phone-bezel {
  width: 224px;
  height: 458px;
  border-width: 6px;
  border-radius: 34px;
}

.phone-speaker-notch {
  top: 7px;
  width: 38px;
  height: 4px;
}

.milestone-tree {
  gap: 27px;
  padding: 6px 0;
  min-width: 235px;
}

.tree-line {
  left: 23px;
  top: 23px;
  bottom: 23px;
  background: #ded8ff;
}

.tree-node {
  gap: 14px;
}

.node-icon-circle {
  width: 46px;
  height: 46px;
  border-width: 1.5px;
  box-shadow: 0 0 0 4px var(--lime-bg);
}

.node-icon-circle svg {
  width: 19px;
  height: 19px;
}

.glyph-dollar {
  font-size: 21px;
}

.node-text strong {
  font-size: 14px;
}

.node-text span {
  max-width: 168px;
  font-size: 11.5px;
  line-height: 1.35;
}

.everything-section {
  padding: 46px 0 42px;
  background: #ffffff;
}

.everything-section .section-title-wrap {
  margin-bottom: 28px;
}

.everything-section .section-title-wrap h2 {
  font-size: 29px;
}

.features-mosaic-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  column-gap: 0;
  row-gap: 24px;
}

.feat-box {
  min-height: 64px;
  padding: 4px 16px;
  flex-direction: row;
  align-items: flex-start;
  gap: 10px;
  text-align: left;
  border: 0;
  border-right: 1px solid var(--border-dark);
  border-radius: 0;
  box-shadow: none;
}

.feat-box:nth-child(5),
.feat-box:last-child {
  border-right: 0;
}

.feat-box:hover {
  transform: none;
  box-shadow: none;
}

.feat-icon-wrap {
  width: 28px;
  height: 28px;
  margin: 0;
  border-radius: 0;
  background: transparent;
  flex: 0 0 28px;
}

.feat-icon-wrap svg {
  width: 22px;
  height: 22px;
  stroke-width: 1.8;
}

.feat-copy {
  min-width: 0;
}

.feat-box strong {
  margin: 0 0 2px;
  font-size: 11px;
  line-height: 1.3;
}

.feat-box p {
  font-size: 9.5px;
  line-height: 1.4;
}

.security-strip-section {
  padding: 42px 0 38px;
}

.connected-nodes-row {
  gap: 8px;
}

.sec-node {
  width: 154px;
}

.sec-circle-icon {
  width: 52px;
  height: 52px;
  margin-bottom: 10px;
}

.sec-circle-icon svg {
  width: 21px;
  height: 21px;
}

.sec-node strong {
  margin-bottom: 2px;
  font-size: 11.5px;
}

.sec-node p {
  font-size: 9.5px;
  line-height: 1.35;
}

.node-dotted-line {
  margin: 0 8px 42px;
  border-top-width: 1px;
}

.comparison-section {
  padding: 44px 0;
}

.comparison-section > .wrap {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(500px, 1.18fr);
  align-items: center;
  gap: 44px;
}

.comparison-section .section-title-wrap,
.comparison-section .section-title-wrap.center {
  max-width: 360px;
  margin: 0;
  text-align: left;
}

.comparison-section .section-title-wrap h2 {
  font-size: 30px;
  line-height: 1.18;
}

.compare-cards-wrapper {
  max-width: none;
  grid-template-columns: 1fr 38px 1fr;
  gap: 10px;
}

.compare-card {
  padding: 18px 17px;
  border-radius: 14px;
  box-shadow: none;
}

.compare-card h3 {
  font-size: 14px;
}

.compare-subhead {
  margin-bottom: 12px;
  font-size: 10px;
}

.check-feature-list {
  gap: 8px;
}

.check-feature-list li {
  gap: 7px;
  font-size: 10.5px;
}

.check-feature-list svg {
  width: 13px;
  height: 13px;
}

.vs-circle-badge {
  width: 38px;
  height: 38px;
  font-size: 11px;
}

.download-beta-section {
  padding: 44px 0 48px;
}

.download-beta-grid {
  grid-template-columns: minmax(240px, 0.6fr) minmax(500px, 1.4fr);
  gap: 36px;
  align-items: center;
}

.dl-text-side h2 {
  font-size: 32px;
  margin-bottom: 12px;
}

.dl-text-side p {
  max-width: 320px;
  font-size: 13.5px;
}

.dl-unified-card {
  padding: 28px 32px;
  border-radius: 20px;
  box-shadow: var(--shadow-md);
  width: 100%;
}

.dl-card-content-grid {
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: center;
  width: 100%;
}

.spec-row {
  padding: 10px 0;
  font-size: 12px;
}

.dl-install-column {
  border-left: 1px solid #f1f3f9;
  padding-left: 36px;
  width: 100%;
}

.dl-install-column h4 {
  margin-bottom: 10px;
  font-size: 14px;
}

.install-steps-ol {
  gap: 6px;
  margin-bottom: 16px;
  width: 100%;
}

.install-steps-ol li {
  font-size: 12px;
  line-height: 1.45;
}

.dl-btn-stack {
  gap: 8px;
  width: 100%;
}

.dl-btn-stack .btn {
  height: 42px;
  border-radius: 10px;
  font-size: 12.5px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dl-bottom-disclaimer {
  margin-top: 18px;
  padding-top: 14px;
  font-size: 11px;
}

@media (max-width: 900px) {
  .hero-layout,
  .comparison-section > .wrap,
  .download-beta-grid {
    grid-template-columns: 1fr;
  }

  .hero-content,
  .comparison-section .section-title-wrap,
  .comparison-section .section-title-wrap.center,
  .dl-text-side {
    text-align: center;
    margin-inline: auto;
  }

  .hero-description,
  .dl-text-side p {
    margin-inline: auto;
  }

  .hero-showcase {
    justify-content: center;
  }

  .features-mosaic-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .feat-box:nth-child(5) {
    border-right: 1px solid var(--border-dark);
  }

  .feat-box:nth-child(3n),
  .feat-box:last-child {
    border-right: 0;
  }
}

@media (max-width: 640px) {
  .hero-showcase {
    flex-direction: column;
  }

  .milestone-tree {
    width: min(100%, 320px);
  }

  .features-mosaic-grid {
    grid-template-columns: 1fr 1fr;
  }

  .feat-box:nth-child(3n) {
    border-right: 1px solid var(--border-dark);
  }

  .feat-box:nth-child(2n),
  .feat-box:last-child {
    border-right: 0;
  }

  .connected-nodes-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .sec-node {
    width: auto;
  }

  .compare-cards-wrapper,
  .dl-card-content-grid {
    grid-template-columns: 1fr;
  }
}
