:root {
  --bg: #ffffff;
  --bg-2: #f7f7fb;
  --bg-3: #eeeef8;
  --surface: #ffffff;
  --border: #e4e4f0;
  --border-hover: #c0c0de;
  --text-1: #0d0d1a;
  --text-2: #3b3b5c;
  --text-3: #7878a0;
  --accent: #5b21b6;
  --accent-mid: #7c3aed;
  --accent-light: #ede9fe;
  --accent-2: #8b5cf6;
  --green: #059669;
  --green-light: #d1fae5;
  --nav-h: 58px;
  --content-px: 56px;
  --content-max: 1100px;
  --sidebar-w: 200px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --shadow-sm: 0 1px 4px rgba(91,33,182,.06);
  --shadow-md: 0 4px 20px rgba(91,33,182,.10);
  --shadow-lg: 0 16px 48px rgba(91,33,182,.12);
  --font-display: 'Poppins', system-ui, sans-serif;
  --font-body: 'Poppins', system-ui, sans-serif;
  --font-mono: 'DM Mono', 'Fira Code', monospace;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --transition: .22s var(--ease);
}
[data-theme="dark"] {
  --bg: #0a0a0f;
  --bg-2: #111118;
  --bg-3: #1a1a22;
  --surface: #14141c;
  --border: #2a2a34;
  --border-hover: #3a3a48;
  --text-1: #ececf0;
  --text-2: #b8b8c4;
  --text-3: #78788a;
  --accent: #c0c0cc;
  --accent-mid: #a8a8b8;
  --accent-light: #1e1e28;
  --accent-2: #d8d8e0;
  --green: #34d399;
  --green-light: #0c1e16;
  --shadow-sm: 0 1px 4px rgba(0,0,0,.3);
  --shadow-md: 0 4px 20px rgba(0,0,0,.4);
  --shadow-lg: 0 16px 48px rgba(0,0,0,.5);
}
[data-theme="dark"] .btn-primary,
[data-theme="dark"] .btn-nav-hire { color: #0a0a0f; }

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  background: var(--bg);
  color: var(--text-1);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
  transition: background var(--transition), color var(--transition);
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
::selection { background: color-mix(in srgb, var(--accent) 22%, transparent); }

@keyframes pulse-dot { 0%,100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.4); opacity: .65; } }

/* ── TOP NAV ── */
.pp-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-h);
  background: color-mix(in srgb, var(--bg) 92%, transparent);
  backdrop-filter: blur(20px) saturate(1.5);
  -webkit-backdrop-filter: blur(20px) saturate(1.5);
  border-bottom: 1px solid var(--border);
}
.pp-nav-inner {
  max-width: var(--content-max);
  margin: 0 auto;
  padding-left: max(var(--content-px), env(safe-area-inset-left, 0px));
  padding-right: max(var(--content-px), env(safe-area-inset-right, 0px));
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.pp-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-2);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.pp-back:hover { color: var(--accent); background: var(--accent-light); }
.pp-back svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.pp-nav-actions { display: flex; align-items: center; gap: 8px; }
.theme-btn {
  width: 36px; height: 36px; border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  background: var(--bg-2); border: 1px solid var(--border); color: var(--text-2);
  transition: all var(--transition);
}
.theme-btn:hover { background: var(--bg-3); color: var(--text-1); }
.theme-btn svg { width: 15px; height: 15px; stroke: currentColor; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.btn-nav-hire {
  font-size: 13px; font-weight: 600; padding: 7px 15px; border-radius: var(--radius-sm);
  background: var(--accent); color: #fff; display: inline-flex; align-items: center; gap: 6px;
  transition: all var(--transition); white-space: nowrap;
}
.btn-nav-hire:hover { opacity: .88; transform: translateY(-1px); }

/* ── LAYOUT ── */
.pp-wrap {
  max-width: var(--content-max);
  margin: 0 auto;
  padding-top: 36px;
  padding-bottom: 80px;
  padding-left: max(var(--content-px), env(safe-area-inset-left, 0px));
  padding-right: max(var(--content-px), env(safe-area-inset-right, 0px));
}

/* ── PLAY STORE HERO ── */
.pp-hero {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px 28px;
  align-items: start;
  margin-bottom: 36px;
}
.pp-icon {
  width: 96px;
  height: 96px;
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  flex-shrink: 0;
  overflow: hidden;
}
.pp-icon svg { width: 44px; height: 44px; opacity: .85; }
.pp-icon.has-logo { background: transparent; padding: 0; }
.pp-icon.has-logo img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; border-radius: inherit; }
.pp-hero-main { min-width: 0; }
.pp-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.1rem);
  font-weight: 800;
  letter-spacing: -.5px;
  line-height: 1.15;
  margin-bottom: 6px;
}
.pp-subtitle { font-size: 14px; color: var(--accent); font-weight: 600; margin-bottom: 10px; }
.pp-meta-row { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; margin-bottom: 14px; }
.pp-badge-live {
  background: var(--green); color: #fff; font-family: var(--font-mono); font-size: 10px;
  font-weight: 600; padding: 4px 10px; border-radius: 100px;
  display: inline-flex; align-items: center; gap: 5px;
}
.pp-badge-live::before { content: ''; width: 5px; height: 5px; background: #fff; border-radius: 50%; animation: pulse-dot 1.4s infinite; }
.pp-badge-meta {
  font-family: var(--font-mono); font-size: 10.5px; padding: 4px 10px;
  background: var(--bg-2); color: var(--text-3); border: 1px solid var(--border); border-radius: 100px;
}
.pp-tagline { font-size: 14.5px; color: var(--text-2); line-height: 1.65; max-width: 640px; }
.pp-cta-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; grid-column: 1 / -1; }
.btn-primary {
  font-family: var(--font-body); font-size: 13.5px; font-weight: 600; padding: 10px 20px;
  background: var(--accent); color: #fff; border-radius: var(--radius-md);
  display: inline-flex; align-items: center; gap: 7px; transition: all var(--transition);
  box-shadow: 0 2px 12px color-mix(in srgb, var(--accent) 32%, transparent);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px color-mix(in srgb, var(--accent) 38%, transparent); }
.btn-secondary {
  font-family: var(--font-body); font-size: 13.5px; font-weight: 600; padding: 10px 20px;
  background: var(--surface); color: var(--text-1); border: 1.5px solid var(--border);
  border-radius: var(--radius-md); display: inline-flex; align-items: center; gap: 7px;
  transition: all var(--transition);
}
.btn-secondary:hover { border-color: var(--accent); color: var(--accent); }
.btn-primary svg, .btn-secondary svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

/* ── STATS ── */
.pp-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 40px;
}
.pp-stat {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 16px;
  text-align: center;
}
.pp-stat-num { font-family: var(--font-display); font-size: 1.5rem; font-weight: 800; color: var(--accent); letter-spacing: -.5px; }
.pp-stat-label { font-size: 10.5px; color: var(--text-3); margin-top: 4px; font-family: var(--font-mono); }

/* ── SCREENSHOTS (Play Store style) ── */
.pp-screenshots-section { margin-bottom: 44px; }
.pp-section-label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 16px;
}
.pp-screenshots-scroll {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  padding: 8px 4px 20px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
}
.pp-screenshots-scroll::-webkit-scrollbar { height: 6px; }
.pp-screenshots-scroll::-webkit-scrollbar-thumb { background: var(--border); border-radius: 100px; }
.pp-phone {
  flex: 0 0 auto;
  scroll-snap-align: start;
  width: min(240px, 72vw);
}
.pp-phone-frame {
  background: linear-gradient(145deg, var(--bg-2), var(--surface));
  border: 2px solid var(--border);
  border-radius: 32px;
  padding: 10px 8px 14px;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition), box-shadow var(--transition);
}
.pp-phone-frame:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.pp-phone-notch {
  width: 36%; height: 5px; background: var(--border); border-radius: 100px;
  margin: 0 auto 8px;
}
.pp-phone-screen {
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 9 / 19.5;
  background: var(--bg-3);
  position: relative;
}
.pp-phone-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.pp-phone-screen.is-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  text-align: center;
}
.pp-placeholder-icon {
  width: 48px; height: 48px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 12px; opacity: .9;
}
.pp-placeholder-icon svg { width: 26px; height: 26px; }
.pp-placeholder-title {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,.95);
  line-height: 1.35;
  margin-bottom: 6px;
}
.pp-placeholder-sub {
  font-size: 10px;
  font-family: var(--font-mono);
  color: rgba(255,255,255,.65);
  letter-spacing: .04em;
}
.pp-phone-caption {
  margin-top: 10px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-2);
  text-align: center;
  padding: 0 4px;
}

/* ── CONTENT BLOCKS ── */
.pp-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 40px;
}
.pp-block {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 24px 26px;
  box-shadow: var(--shadow-sm);
}
.pp-block-full { grid-column: 1 / -1; }
.pp-block h2 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -.2px;
  margin-bottom: 14px;
  color: var(--text-1);
}
.pp-idea {
  background: var(--accent-light);
  border: 1px solid color-mix(in srgb, var(--accent) 15%, transparent);
  border-radius: var(--radius-lg);
  padding: 14px 18px;
  font-size: 13px;
  color: var(--accent);
  font-family: var(--font-mono);
  line-height: 1.6;
  margin-bottom: 24px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.pp-idea svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2; flex-shrink: 0; margin-top: 2px; }
.pp-points { display: flex; flex-direction: column; gap: 10px; }
.pp-point {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.75;
  position: relative;
  padding-left: 18px;
}
.pp-point::before { content: '→'; color: var(--accent); font-family: var(--font-mono); font-size: 11px; position: absolute; left: 0; top: 4px; }
.pp-point b { color: var(--text-1); font-weight: 600; }
.pp-chips { display: flex; flex-wrap: wrap; gap: 6px; }
.pp-chip {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  padding: 4px 11px;
  background: var(--bg-2);
  color: var(--text-2);
  border-radius: 100px;
  border: 1px solid var(--border);
}

.pp-footer {
  text-align: center;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  font-size: 12.5px;
  color: var(--text-3);
}
.pp-footer a { color: var(--accent); font-weight: 600; }
.pp-footer a:hover { text-decoration: underline; }

/* ── SIDEBAR ── */
.sidebar {
  width: var(--sidebar-w);
  position: fixed;
  top: 0; left: 0; bottom: 0;
  background: var(--surface);
  border-right: 1px solid color-mix(in srgb, var(--border) 55%, transparent);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  z-index: 200;
  transition: transform var(--transition), background var(--transition);
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.sidebar::-webkit-scrollbar { display: none; }
.sidebar-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.4);
  z-index: 150;
  backdrop-filter: blur(4px);
}
.sidebar-overlay.visible { display: block; }
.sidebar-profile { padding: 18px 14px 16px; border-bottom: 1px solid var(--border); flex-shrink: 0; }
.profile-photo-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1.5px solid color-mix(in srgb, var(--accent) 20%, var(--border));
  box-shadow: 0 4px 14px color-mix(in srgb, var(--accent) 10%, transparent);
  line-height: 0;
  margin-bottom: 14px;
}
.profile-photo {
  width: 100%;
  height: 200px;
  object-fit: cover;
  object-position: center 10%;
  display: block;
}
.profile-info { padding: 0 4px; }
.profile-name { font-family: var(--font-display); font-size: 17px; font-weight: 700; color: var(--text-1); letter-spacing: -.3px; line-height: 1.25; margin-bottom: 5px; }
.profile-role { font-size: 10.5px; color: var(--text-3); line-height: 1.4; }
.sidebar-nav { flex: 1; padding: 10px; }
.nav-group { margin-bottom: 4px; }
.nav-group-label { font-size: 8.5px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--text-3); padding: 4px 8px 3px; display: block; }
.snav-item { display: flex; align-items: center; gap: 7px; padding: 6px 8px; border-radius: var(--radius-sm); color: var(--text-2); font-size: 12px; font-weight: 500; cursor: pointer; transition: all var(--transition); position: relative; margin-bottom: 1px; }
.snav-item:hover { background: var(--bg-2); color: var(--text-1); }
.snav-item svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }
a[href*="#skills"] { display: none; }
.snav-sub-item { display: flex; align-items: center; gap: 6px; padding: 5px 8px; border-radius: var(--radius-sm); color: var(--text-3); font-size: 11px; font-weight: 500; cursor: pointer; transition: all var(--transition); margin-bottom: 1px; }
.snav-sub-item:hover { background: var(--bg-2); color: var(--text-2); }
.snav-sub-item.active { color: var(--accent); background: var(--accent-light); font-weight: 600; }
.sub-dot { width: 5px; height: 5px; border-radius: 50%; background: currentColor; flex-shrink: 0; opacity: .6; }
.sidebar-contact { padding: 12px 10px 14px; border-top: 1px solid var(--border); flex-shrink: 0; }
.sc-label { font-size: 8.5px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--text-3); padding: 0 8px 5px; display: block; }
.sc-item { display: flex; align-items: center; gap: 7px; padding: 5px 8px; border-radius: var(--radius-sm); color: var(--text-3); font-size: 11px; transition: all var(--transition); margin-bottom: 1px; }
.sc-item:hover { background: var(--bg-2); color: var(--text-2); }
.sc-item svg { width: 12px; height: 12px; stroke: currentColor; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }
.sidebar-tools { padding: 10px; border-top: 1px solid var(--border); display: flex; gap: 6px; flex-shrink: 0; }
.tool-btn { flex: 1; display: flex; align-items: center; justify-content: center; gap: 4px; padding: 7px 8px; border-radius: var(--radius-sm); background: var(--bg-2); border: 1px solid var(--border); color: var(--text-2); font-size: 11px; font-weight: 600; transition: all var(--transition); }
.tool-btn:hover { border-color: var(--accent); color: var(--accent); background: var(--accent-light); }
.tool-btn svg { width: 12px; height: 12px; stroke: currentColor; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.sidebar-theme-btn { width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; background: var(--bg-2); border: 1px solid var(--border); border-radius: var(--radius-sm); color: var(--text-3); transition: all var(--transition); flex-shrink: 0; }
.sidebar-theme-btn:hover { color: var(--text-1); border-color: var(--border-hover); }
.sidebar-theme-btn svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

/* ── MAIN CONTENT OFFSET FOR SIDEBAR ── */
.pp-main { margin-left: var(--sidebar-w); }

/* ── HAMBURGER (mobile only) ── */
.pp-hamburger {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 34px;
  height: 34px;
  border-radius: var(--radius-sm);
  background: var(--bg-2);
  border: 1px solid var(--border);
  color: var(--text-2);
  cursor: pointer;
  flex-shrink: 0;
}
.pp-hamburger span { display: block; width: 16px; height: 1.5px; background: currentColor; border-radius: 2px; }

/* ── BROWSER FRAME (web app screenshots) ── */
.pp-browser {
  flex: 0 0 auto;
  scroll-snap-align: start;
  width: min(480px, 88vw);
}
.pp-browser-frame {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.pp-browser-frame:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.pp-browser-bar {
  background: var(--bg-2);
  border-bottom: 1px solid var(--border);
  padding: 9px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.pp-browser-dots { display: flex; gap: 5px; }
.pp-browser-dot { width: 11px; height: 11px; border-radius: 50%; }
.pp-browser-dot:nth-child(1) { background: #ff5f57; }
.pp-browser-dot:nth-child(2) { background: #febc2e; }
.pp-browser-dot:nth-child(3) { background: #28c840; }
.pp-browser-url {
  flex: 1;
  background: var(--bg-3);
  border-radius: 6px;
  padding: 4px 10px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: var(--text-3);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.pp-browser-screen {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  position: relative;
  background: var(--bg-3);
}
.pp-browser-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.pp-browser-screen.is-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  text-align: center;
}

/* ── STORY / JOURNEY BLOG SECTION ── */
.pp-story { margin-bottom: 56px; }
.pp-story-intro {
  font-size: 16.5px;
  line-height: 1.85;
  color: var(--text-2);
  border-left: 3px solid var(--accent);
  padding: 6px 0 6px 22px;
  margin-bottom: 48px;
  max-width: 760px;
}
.pp-chapter {
  padding-bottom: 44px;
  margin-bottom: 44px;
  border-bottom: 1px solid var(--border);
}
.pp-chapter:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.pp-chapter-num {
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: 8px;
}
.pp-chapter-heading {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.5vw, 1.35rem);
  font-weight: 700;
  letter-spacing: -.35px;
  color: var(--text-1);
  line-height: 1.3;
  margin-bottom: 16px;
}
.pp-chapter-body {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.85;
  max-width: 740px;
}
.pp-chapter-body p { margin-bottom: 14px; }
.pp-chapter-body p:last-child { margin-bottom: 0; }
.pp-chapter-body b { color: var(--text-1); font-weight: 600; }
.pp-quote {
  border-left: 3px solid var(--accent);
  background: var(--accent-light);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 14px 20px;
  margin: 22px 0 0;
  font-size: 14.5px;
  color: var(--text-2);
  font-style: italic;
  line-height: 1.7;
  max-width: 720px;
}
.pp-story-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

/* ── SECTION DIVIDER ── */
.pp-section-heading {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-1);
  letter-spacing: -.2px;
  margin-bottom: 20px;
}

@media (max-width: 900px) {
  .pp-main { margin-left: 0; }
  .sidebar { transform: translateX(-100%); width: min(var(--sidebar-w), 85vw); }
  .sidebar.open { transform: translateX(0); }
  .pp-hamburger { display: flex; }
}
@media (max-width: 768px) {
  :root { --content-px: 16px; }
  .pp-hero { grid-template-columns: 1fr; gap: 16px; }
  .pp-icon { width: 72px; height: 72px; border-radius: 16px; }
  .pp-icon svg { width: 34px; height: 34px; }
  .pp-stats { grid-template-columns: 1fr; }
  .pp-content-grid { grid-template-columns: 1fr; }
  .pp-cta-row { grid-column: 1; }
  .pp-browser { width: min(360px, 86vw); }
  .pp-story-intro { font-size: 15px; padding-left: 16px; }
  .pp-chapter-body { font-size: 14.5px; }
}
