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

:root {
  --p: #5851DB;
  --s: #833AB4;
  --t: #405DE6;
  --grad: linear-gradient(135deg, var(--p) 0%, var(--s) 100%);
  --grad2: linear-gradient(135deg, var(--t) 0%, var(--p) 55%, var(--s) 100%);
  --bg: #FFFFFF;
  --bg2: #F8F9FA;
  --bg3: #F0EFFE;
  --border: rgba(88,81,219,0.12);
  --text: #0D0B1F;
  --muted: #6B6880;
  --light: #A09CC0;
}

html { scroll-behavior: smooth; }
body { font-family: 'Syne', sans-serif; background: var(--bg); color: var(--text); overflow-x: hidden; line-height: 1.6; }

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 56px;
  background: rgba(255,255,255,0.82);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(88,81,219,0.08);
  transition: all 0.3s;
}
nav.scrolled { padding: 14px 56px; box-shadow: 0 4px 32px rgba(88,81,219,0.08); }

.nav-logo {
  display: flex; align-items: center; gap: 11px;
  font-size: 22px; font-weight: 800; letter-spacing: -0.03em; color: var(--text);
  text-decoration: none;
}
.nav-logo img { display: block; }
.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a { color: var(--muted); text-decoration: none; font-size: 14px; font-weight: 600; transition: color 0.2s; }
.nav-links a:hover { color: var(--p); }
.nav-cta {
  background: var(--grad); color: #fff; padding: 10px 26px;
  border-radius: 100px; font-size: 14px; font-weight: 700;
  text-decoration: none; box-shadow: 0 4px 18px rgba(88,81,219,0.3);
  transition: opacity 0.2s, transform 0.2s, box-shadow 0.2s;
}
.nav-cta:hover { opacity: 0.9; transform: translateY(-1px); box-shadow: 0 8px 24px rgba(88,81,219,0.4); }

/* HERO */
.hero {
  position: relative; min-height: 100vh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 160px 24px 120px; overflow: hidden;
  background: linear-gradient(180deg, #FAFAFF 0%, #FFFFFF 70%);
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(88,81,219,0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(88,81,219,0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 20%, transparent 100%);
}
.hero-blob { position: absolute; border-radius: 50%; filter: blur(90px); pointer-events: none; opacity: 0.45; }
.blob1 { width: 640px; height: 640px; background: rgba(88,81,219,0.18); top: -160px; left: -120px; animation: d1 14s ease-in-out infinite; }
.blob2 { width: 500px; height: 500px; background: rgba(131,58,180,0.14); top: 60px; right: -80px; animation: d2 18s ease-in-out infinite; }
.blob3 { width: 360px; height: 360px; background: rgba(64,93,230,0.12); bottom: 60px; left: 35%; animation: d3 11s ease-in-out infinite; }
@keyframes d1 { 0%,100%{transform:translate(0,0)} 50%{transform:translate(30px,24px)} }
@keyframes d2 { 0%,100%{transform:translate(0,0)} 50%{transform:translate(-24px,32px)} }
@keyframes d3 { 0%,100%{transform:translate(0,0)} 50%{transform:translate(16px,-24px)} }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(88,81,219,0.08); border: 1px solid rgba(88,81,219,0.2);
  padding: 7px 18px; border-radius: 100px;
  font-size: 12px; font-weight: 700; color: var(--p);
  margin-bottom: 28px; letter-spacing: 0.06em; text-transform: uppercase;
  position: relative; z-index: 1;
  animation: fadeUp 0.7s ease both;
}
.badge-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--p); animation: pulse 2s ease infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.4;transform:scale(0.8)} }
@keyframes fadeUp { from{opacity:0;transform:translateY(24px)} to{opacity:1;transform:translateY(0)} }

.hero-title {
  font-size: clamp(56px, 9.5vw, 108px); font-weight: 800; letter-spacing: -0.045em; line-height: 0.92;
  color: var(--text); max-width: 900px; position: relative; z-index: 1;
  animation: fadeUp 0.7s 0.08s ease both;
}
.grad-word { background: var(--grad2); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-sub {
  margin-top: 28px; font-size: clamp(16px, 2.2vw, 20px); color: var(--muted);
  max-width: 520px; font-weight: 400; line-height: 1.6; position: relative; z-index: 1;
  animation: fadeUp 0.7s 0.16s ease both;
}
.hero-actions { display: flex; gap: 14px; margin-top: 44px; flex-wrap: wrap; justify-content: center; position: relative; z-index: 1; animation: fadeUp 0.7s 0.24s ease both; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--grad); color: #fff; padding: 17px 38px;
  border-radius: 100px; font-size: 16px; font-weight: 700; text-decoration: none;
  box-shadow: 0 8px 28px rgba(88,81,219,0.35); transition: transform 0.2s, box-shadow 0.2s;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(88,81,219,0.45); }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 10px;
  background: #fff; border: 1.5px solid rgba(88,81,219,0.2); color: var(--p);
  padding: 17px 38px; border-radius: 100px; font-size: 16px; font-weight: 700;
  text-decoration: none; transition: border-color 0.2s, background 0.2s, transform 0.2s;
}
.btn-ghost:hover { border-color: var(--p); background: var(--bg3); transform: translateY(-3px); }

.hero-stats {
  display: flex; margin-top: 80px; flex-wrap: wrap; justify-content: center;
  background: #fff; border: 1px solid var(--border); border-radius: 20px; overflow: hidden;
  box-shadow: 0 8px 40px rgba(88,81,219,0.08); position: relative; z-index: 1;
  animation: fadeUp 0.7s 0.32s ease both;
}
.stat { padding: 24px 40px; text-align: center; border-right: 1px solid var(--border); }
.stat:last-child { border-right: none; }
.stat-num { font-size: 28px; font-weight: 800; letter-spacing: -0.03em; background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.stat-label { font-size: 12px; color: var(--muted); font-weight: 500; margin-top: 4px; }

/* BAND */
.band { padding: 24px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--bg2); display: flex; align-items: center; justify-content: center; gap: 44px; flex-wrap: wrap; }
.band-lbl { font-size: 11px; color: var(--light); font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; }
.band-pill { display: flex; align-items: center; gap: 7px; font-size: 14px; font-weight: 700; color: var(--muted); }
.band-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--grad); }

/* SHARED */
.wrap { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.sec-head { text-align: center; margin-bottom: 72px; }
.eyebrow {
  display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--p); background: rgba(88,81,219,0.08); border: 1px solid rgba(88,81,219,0.18);
  padding: 6px 16px; border-radius: 100px; margin-bottom: 20px;
}
.sec-head h2 { font-size: clamp(36px, 5vw, 56px); font-weight: 800; letter-spacing: -0.035em; color: var(--text); line-height: 1.05; }
.sec-head p { font-size: 18px; color: var(--muted); max-width: 460px; margin: 16px auto 0; line-height: 1.6; }
.divider { width: 100%; height: 1px; background: linear-gradient(90deg, transparent, rgba(88,81,219,0.18), rgba(131,58,180,0.18), transparent); }

/* PHONE SECTION */
.phone-sec { padding: 120px 24px; background: #fff; }
.phone-inner { max-width: 1100px; margin: 0 auto; display: flex; align-items: center; gap: 80px; flex-wrap: wrap; justify-content: center; }
.phone-wrap { position: relative; flex-shrink: 0; animation: floatP 5s ease-in-out infinite; }
@keyframes floatP { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-16px)} }
.phone-frame {
  width: 272px; height: 560px; border-radius: 44px;
  background: var(--bg2); border: 2px solid rgba(88,81,219,0.18);
  box-shadow: 0 48px 80px rgba(88,81,219,0.14), 0 12px 30px rgba(0,0,0,0.07), inset 0 1px 0 rgba(255,255,255,0.9);
  overflow: hidden;
}
.phone-screen { width: 100%; height: 100%; background: #fff; display: flex; flex-direction: column; }
.phone-topbar { background: var(--grad); padding: 22px 18px 16px; position: relative; }
.phone-topbar::after { content:''; position: absolute; top: 12px; left: 50%; transform: translateX(-50%); width: 56px; height: 5px; border-radius: 3px; background: rgba(0,0,0,0.2); }
.ph-loc { font-size: 10px; font-weight: 600; color: rgba(255,255,255,0.75); margin-top: 6px; }
.ph-title { font-size: 20px; font-weight: 800; color: #fff; margin-top: 3px; }
.phone-body { flex: 1; padding: 14px; overflow: hidden; background: #FAFAFF; }
.ph-search { background: #fff; border: 1px solid rgba(88,81,219,0.14); border-radius: 12px; padding: 9px 12px; display: flex; align-items: center; gap: 8px; margin-bottom: 14px; box-shadow: 0 2px 8px rgba(88,81,219,0.05); }
.srch-ic { width: 12px; height: 12px; border-radius: 50%; border: 2px solid #C0BDE0; }
.srch-txt { font-size: 11px; color: var(--light); }
.ph-lbl { font-size: 10px; font-weight: 700; color: var(--light); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 10px; }
.jc { background: #fff; border: 1px solid rgba(88,81,219,0.1); border-radius: 14px; padding: 12px; margin-bottom: 8px; box-shadow: 0 2px 10px rgba(88,81,219,0.05); }
.jc-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 5px; }
.jc-name { font-size: 12px; font-weight: 700; color: var(--text); }
.jc-price { font-size: 12px; font-weight: 800; color: var(--p); }
.jc-meta { font-size: 10px; color: var(--muted); margin-bottom: 8px; }
.tag { display: inline-block; padding: 3px 8px; border-radius: 6px; margin-right: 4px; font-size: 9px; font-weight: 700; }
.tag-p { background: rgba(88,81,219,0.09); color: var(--p); }
.tag-g { background: rgba(26,155,107,0.1); color: #1A9B6B; }
.phone-tabs { padding: 10px 8px; border-top: 1px solid rgba(88,81,219,0.08); display: flex; justify-content: space-around; background: #fff; }
.tab { display: flex; flex-direction: column; align-items: center; gap: 3px; }
.tab-bar { width: 22px; height: 3px; border-radius: 2px; }
.tab-bar.on { background: var(--p); }
.tab-bar.off { background: #E0DDEE; }
.tab-txt { font-size: 8px; font-weight: 600; }
.tab-txt.on { color: var(--p); }
.tab-txt.off { color: var(--light); }

.fchip { position: absolute; background: #fff; border: 1px solid rgba(88,81,219,0.16); border-radius: 16px; padding: 12px 16px; box-shadow: 0 14px 36px rgba(88,81,219,0.1), 0 4px 12px rgba(0,0,0,0.05); min-width: 140px; }
.fchip-lbl { font-size: 10px; color: var(--muted); font-weight: 600; text-transform: uppercase; letter-spacing: 0.07em; }
.fchip-val { font-size: 24px; font-weight: 800; color: var(--text); letter-spacing: -0.03em; margin-top: 3px; }
.fchip-sub { font-size: 11px; font-weight: 600; margin-top: 2px; }
.fchip-sub.up { color: #1A9B6B; }
.fchip-sub.pu { color: var(--p); }
.fc1 { top: 40px; left: -30px; animation: fa 5s ease-in-out infinite; }
.fc2 { bottom: 130px; right: -24px; animation: fb 6s ease-in-out infinite; }
.fc3 { bottom: 50px; left: -14px; animation: fc 4.5s ease-in-out infinite; }
@keyframes fa { 0%,100%{transform:translateY(0) rotate(-3deg)} 50%{transform:translateY(-10px) rotate(-3deg)} }
@keyframes fb { 0%,100%{transform:translateY(0) rotate(2.5deg)} 50%{transform:translateY(-13px) rotate(2.5deg)} }
@keyframes fc { 0%,100%{transform:translateY(0) rotate(-1.5deg)} 50%{transform:translateY(9px) rotate(-1.5deg)} }

.phone-text { max-width: 460px; }
.phone-text h2 { font-size: clamp(34px, 4.5vw, 50px); font-weight: 800; letter-spacing: -0.035em; color: var(--text); line-height: 1.05; margin-bottom: 18px; }
.phone-text p { font-size: 17px; color: var(--muted); line-height: 1.65; margin-bottom: 32px; }
.feat-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.feat-item { display: flex; align-items: center; gap: 14px; font-size: 15px; color: var(--text); font-weight: 500; }
.feat-ic { width: 40px; height: 40px; border-radius: 12px; flex-shrink: 0; background: rgba(88,81,219,0.08); border: 1px solid rgba(88,81,219,0.15); display: flex; align-items: center; justify-content: center; font-size: 18px; }

/* HOW IT WORKS */
.how-sec { padding: 120px 24px; background: var(--bg2); }
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; }
.step-card { background: #fff; border: 1px solid var(--border); border-radius: 24px; padding: 36px 30px; position: relative; overflow: hidden; transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s; }
.step-card:hover { border-color: rgba(88,81,219,0.35); transform: translateY(-6px); box-shadow: 0 20px 50px rgba(88,81,219,0.1); }
.step-num { position: absolute; top: -14px; right: 20px; font-size: 80px; font-weight: 800; line-height: 1; color: rgba(88,81,219,0.06); letter-spacing: -0.04em; pointer-events: none; }
.step-ic { width: 52px; height: 52px; border-radius: 14px; background: var(--grad); display: flex; align-items: center; justify-content: center; font-size: 24px; margin-bottom: 20px; box-shadow: 0 6px 20px rgba(88,81,219,0.3); }
.step-card h3 { font-size: 20px; font-weight: 700; color: var(--text); margin-bottom: 10px; letter-spacing: -0.02em; }
.step-card p { font-size: 15px; color: var(--muted); line-height: 1.65; }

/* FEATURES */
.feat-sec { padding: 120px 24px; background: #fff; }
.feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--border); border-radius: 24px; overflow: hidden; }
.feat-card { padding: 40px 34px; border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); transition: background 0.25s; position: relative; overflow: hidden; background: #fff; }
.feat-card:hover { background: #FAFAFF; }
.feat-card:nth-child(3), .feat-card:nth-child(6) { border-right: none; }
.feat-card:nth-child(4), .feat-card:nth-child(5), .feat-card:nth-child(6) { border-bottom: none; }
.feat-card::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: var(--grad); opacity: 0; transition: opacity 0.25s; }
.feat-card:hover::after { opacity: 1; }
.feat-ic-big { font-size: 34px; margin-bottom: 18px; display: block; }
.feat-card h3 { font-size: 18px; font-weight: 700; color: var(--text); margin-bottom: 10px; }
.feat-card p { font-size: 14px; color: var(--muted); line-height: 1.7; }

/* ROLES */
.roles-sec { padding: 120px 24px; background: var(--bg2); }
.roles-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.role-card { border-radius: 28px; padding: 52px 44px; position: relative; overflow: hidden; }
.role-card.emp { background: linear-gradient(145deg, #F0EFFE, #E8E5FF); border: 1px solid rgba(88,81,219,0.2); }
.role-card.wrk { background: linear-gradient(145deg, #F5EEFF, #EDE0FF); border: 1px solid rgba(131,58,180,0.2); }
.role-card::before { content: attr(data-bg); position: absolute; bottom: -20px; right: -10px; font-size: 120px; opacity: 0.15; line-height: 1; }
.role-emoji { font-size: 48px; margin-bottom: 22px; display: block; }
.role-card h3 { font-size: 32px; font-weight: 800; color: var(--text); margin-bottom: 6px; letter-spacing: -0.03em; }
.role-tagline { font-size: 15px; color: var(--muted); margin-bottom: 28px; }
.role-list { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.role-item { display: flex; align-items: center; gap: 12px; font-size: 14px; color: var(--text); font-weight: 500; }
.chk { width: 24px; height: 24px; border-radius: 50%; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 12px; }
.emp .chk { background: rgba(88,81,219,0.15); color: var(--p); }
.wrk .chk { background: rgba(131,58,180,0.15); color: var(--s); }

/* PAYMENTS */
.pay-sec { padding: 120px 24px; background: #fff; }
.pay-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.pay-card { background: var(--bg2); border: 1px solid var(--border); border-radius: 28px; padding: 36px; }
.pay-row { display: flex; justify-content: space-between; align-items: center; padding: 14px 0; border-bottom: 1px solid rgba(88,81,219,0.08); font-size: 14px; }
.pay-row:last-of-type { border-bottom: none; }
.pay-lbl { color: var(--muted); font-weight: 500; }
.pay-val { font-weight: 700; color: var(--text); }
.pay-val.g { color: #1A9B6B; }
.pay-val.pu { color: var(--p); }
.wallet-block { margin-top: 24px; padding: 20px; background: #fff; border-radius: 16px; border: 1px solid var(--border); }
.wallet-top { display: flex; justify-content: space-between; font-size: 12px; color: var(--muted); margin-bottom: 10px; font-weight: 500; }
.wallet-top span:last-child { font-weight: 700; color: var(--text); }
.wallet-track { height: 8px; border-radius: 4px; background: rgba(88,81,219,0.1); overflow: hidden; }
.wallet-fill { height: 100%; border-radius: 4px; background: var(--grad); width: 88%; }
.providers { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 20px; }
.pchip { padding: 8px 18px; border-radius: 100px; background: #fff; border: 1px solid rgba(88,81,219,0.18); font-size: 13px; font-weight: 600; color: var(--p); }
.pay-text h2 { font-size: clamp(36px, 4.5vw, 50px); font-weight: 800; letter-spacing: -0.035em; line-height: 1.05; color: var(--text); margin-bottom: 20px; }
.pay-text p { font-size: 16px; color: var(--muted); line-height: 1.7; margin-bottom: 20px; }
.comm-badge { display: inline-flex; align-items: baseline; gap: 8px; background: rgba(88,81,219,0.08); border: 1px solid rgba(88,81,219,0.2); border-radius: 16px; padding: 14px 22px; margin-top: 8px; }
.comm-pct { font-size: 42px; font-weight: 800; color: var(--p); letter-spacing: -0.04em; }
.comm-txt { font-size: 15px; font-weight: 600; color: var(--muted); }

/* TECH STACK */
.stack-sec { padding: 100px 24px; background: var(--bg2); }
.stack-wrap { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; max-width: 800px; margin: 0 auto; }
.sc { display: flex; align-items: center; gap: 9px; padding: 13px 24px; border-radius: 100px; background: #fff; border: 1px solid var(--border); font-size: 15px; font-weight: 600; color: var(--text); transition: border-color 0.2s, box-shadow 0.2s; }
.sc:hover { border-color: rgba(88,81,219,0.4); box-shadow: 0 4px 18px rgba(88,81,219,0.1); }
.sc-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--grad); flex-shrink: 0; }

/* CTA */
.cta-sec {
  padding: 160px 24px; text-align: center; position: relative; overflow: hidden;
  background: linear-gradient(180deg, #fff 0%, #F4F2FF 50%, #EEE9FF 100%);
}
.cta-sec::before {
  content: ''; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(88,81,219,0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(88,81,219,0.06) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black, transparent);
}
.cta-title { font-size: clamp(52px, 9vw, 100px); font-weight: 800; letter-spacing: -0.045em; color: var(--text); line-height: 0.92; margin-bottom: 24px; position: relative; z-index: 1; }
.cta-title .line2 { background: var(--grad2); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.cta-sub { font-size: 19px; color: var(--muted); margin-bottom: 52px; position: relative; z-index: 1; }
.dl-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }
.dl-btn { display: inline-flex; align-items: center; gap: 14px; background: #fff; border: 1.5px solid rgba(88,81,219,0.2); padding: 16px 30px; border-radius: 18px; text-decoration: none; color: var(--text); box-shadow: 0 4px 20px rgba(88,81,219,0.1); transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s; min-width: 180px; }
.dl-btn:hover { border-color: var(--p); box-shadow: 0 12px 36px rgba(88,81,219,0.2); transform: translateY(-3px); }
.dl-btn-icon { width: 36px; height: 36px; object-fit: contain; flex-shrink: 0; }
.dl-btn-small { font-size: 11px; color: var(--muted); display: block; }
.dl-btn-big { font-size: 18px; font-weight: 700; display: block; }

/* FOOTER */
footer { border-top: 1px solid var(--border); padding: 44px 56px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; }
.footer-logo { font-size: 18px; font-weight: 800; letter-spacing: -0.02em; color: var(--text); }
.footer-logo img { display: inline-block; }
.footer-links { display: flex; gap: 28px; }
.footer-links a { font-size: 13px; color: var(--muted); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--p); }
.footer-copy { font-size: 12px; color: var(--light); }

/* RESPONSIVE */
@media (max-width: 900px) {
  nav { padding: 16px 24px; }
  .nav-links { display: none; }
  .phone-inner { flex-direction: column; gap: 50px; }
  .fc1, .fc2, .fc3 { display: none; }
  .pay-inner { grid-template-columns: 1fr; gap: 40px; }
  .roles-grid { grid-template-columns: 1fr; }
  footer { padding: 32px 24px; }
}
@media (max-width: 600px) {
  .feat-grid { grid-template-columns: 1fr; }
  .feat-card { border-right: none; }
  .stat { padding: 20px 22px; }
  nav { padding: 14px 20px; }
}
