/* ------------------------------------------------------------------
   Jigarr Vyass — Personal Website
   Inter for everything · Instrument Serif for name in nav/footer only
   ------------------------------------------------------------------ */

:root {
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-serif: "Instrument Serif", Georgia, serif;

  --bg: #f8f9ff;
  --bg-elevated: #ffffff;
  --bg-subtle: #edf0fb;
  --text: #0d1033;
  --text-secondary: #3d4472;
  --text-tertiary: #7880aa;
  --accent: #2b2e90;
  --accent-strong: #1c1f6e;
  --border: #dde2f5;
  --border-strong: #c2cbeb;
  --shadow: 0 1px 2px rgba(13, 16, 51, 0.04), 0 8px 24px rgba(13, 16, 51, 0.07);
  --shadow-lg: 0 2px 4px rgba(13, 16, 51, 0.06), 0 16px 48px rgba(13, 16, 51, 0.11);

  --container: 1120px;
  --nav-height: 72px;
}

:root[data-theme="dark"] {
  --bg: #0e0e0e;
  --bg-elevated: #1a1a1a;
  --bg-subtle: #222222;
  --text: #f0f0f0;
  --text-secondary: #a0a0a0;
  --text-tertiary: #666666;
  --accent: #5b7fff;
  --accent-strong: #7a99ff;
  --border: #2a2a2a;
  --border-strong: #3a3a3a;
  --shadow: 0 1px 2px rgba(0, 0, 0, 0.4), 0 8px 24px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 2px 4px rgba(0,0,0,0.5), 0 16px 48px rgba(0,0,0,0.6);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-height) + 24px);
}

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  transition: background 0.3s ease, color 0.3s ease;
}

::selection {
  background: var(--accent);
  color: var(--bg);
}

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

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

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------------------------------- Nav ---------------------------------- */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-height);
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s ease, border-color 0.3s ease;
}

.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* Name in nav: Instrument Serif only */
.nav-brand {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.nav-brand em {
  color: var(--accent);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
}

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

.theme-toggle {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border-strong);
  border-radius: 50%;
  background: transparent;
  color: var(--text-secondary);
  cursor: pointer;
  transition: color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.theme-toggle:hover {
  color: var(--text);
  border-color: var(--text-tertiary);
  transform: rotate(15deg);
}

.theme-toggle svg {
  width: 17px;
  height: 17px;
}

/* Show/hide icons per theme */
.theme-toggle .icon-moon { display: none; }
.theme-toggle .icon-sun  { display: block; }
:root[data-theme="dark"] .theme-toggle .icon-moon { display: block; }
:root[data-theme="dark"] .theme-toggle .icon-sun  { display: none; }

.nav-menu-btn {
  display: none;
  width: 38px;
  height: 38px;
  border: 1px solid var(--border-strong);
  border-radius: 50%;
  background: transparent;
  color: var(--text-secondary);
  cursor: pointer;
  place-items: center;
}

.nav-menu-btn svg {
  width: 17px;
  height: 17px;
}

/* ────────────────────────────────────────────────────────────────
   Profile Hero
   ──────────────────────────────────────────────────────────────── */

.profile-hero {
  padding: calc(var(--nav-height) + 80px) 0 96px;
  position: relative;
  overflow: hidden;
}

/* Subtle accent glow top-right */
.profile-hero::before {
  content: "";
  position: absolute;
  top: -20%;
  right: -10%;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background: radial-gradient(circle, color-mix(in srgb, var(--accent) 8%, transparent) 0%, transparent 70%);
  pointer-events: none;
}

.profile-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 72px;
  align-items: start;
}

/* ── Photo column ── */

.profile-photo-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  position: sticky;
  top: calc(var(--nav-height) + 32px);
  /* no padding-top: both columns start flush at grid top */
}

.profile-photo-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  background: linear-gradient(135deg,
    color-mix(in srgb, var(--accent) 18%, var(--bg-subtle)),
    color-mix(in srgb, var(--accent) 8%, var(--bg-subtle))
  );
  transition: border-color 0.3s ease;
}

/* Actual photo */
.profile-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  position: relative;
  z-index: 1;
}

/* Initials shown when photo missing / errors */
.photo-initials {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-size: clamp(4rem, 12vw, 6rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--accent);
  opacity: 0.35;
  z-index: 0;
  user-select: none;
}

/* When image loads successfully hide initials */
.profile-photo-frame:not(.photo-placeholder) .photo-initials {
  display: none;
}

/* Subtle inner vignette on frame */
.profile-photo-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 24px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08);
  z-index: 2;
  pointer-events: none;
}



/* ── Bio column ── */

.profile-bio {
  padding-top: 0;
}

.profile-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
}

.profile-eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--accent);
  flex-shrink: 0;
}

.profile-name {
  font-family: var(--font-sans);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 14px;
}

.profile-designation {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-secondary);
  line-height: 1.55;
  max-width: 44ch;
}

.profile-divider {
  width: 48px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
  margin: 30px 0;
}

.profile-about p {
  font-size: 1.02rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 18px;
}

.profile-about p:last-child {
  margin-bottom: 0;
}

.profile-about strong {
  color: var(--text);
  font-weight: 600;
}

.profile-blessing {
  margin-top: 28px;
  padding: 20px 24px;
  border-left: 2px solid var(--accent);
  background: var(--bg-subtle);
  border-radius: 0 12px 12px 0;
  font-size: 0.95rem;
  font-weight: 500;
  font-style: normal;
  color: var(--text-secondary);
  line-height: 1.6;
  transition: background 0.3s ease;
}



/* Desktop: signature under photo visible; mobile duplicate hidden */
.profile-signature-mobile {
  display: none;
  margin-top: 24px;
}

.signature-img {
  height: 120px;
  width: auto;
  display: block;
  opacity: 0.85;
  transition: opacity 0.3s ease, filter 0.3s ease;
}

:root[data-theme="dark"] .signature-img {
  filter: invert(1) brightness(1.8);
  opacity: 0.7;
}

.profile-actions {
  margin-top: 36px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* ------------------------------- Buttons --------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  border-radius: 100px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background: var(--text);
  color: var(--bg);
}

.btn-primary:hover {
  background: var(--accent-strong);
  color: #fff;
}

:root[data-theme="dark"] .btn-primary:hover {
  color: #0e0e0e;
  background: var(--accent-strong);
}

.btn-ghost {
  border-color: var(--border-strong);
  color: var(--text);
  background: transparent;
}

.btn-ghost:hover {
  border-color: var(--text-tertiary);
}

/* -------------------------------- Stats ---------------------------------- */

.stats {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-subtle);
  transition: background 0.3s ease, border-color 0.3s ease;
}

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

.stat {
  padding: 44px 28px;
  text-align: center;
}

.stat + .stat {
  border-left: 1px solid var(--border);
}

.stat-value {
  font-family: var(--font-sans);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--accent);
  margin-bottom: 6px;
}

.stat-label {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-tertiary);
}

/* ------------------------------- Sections -------------------------------- */

.section {
  padding: 110px 0;
}

.section-alt {
  background: var(--bg-subtle);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s ease, border-color 0.3s ease;
}

.section-header {
  max-width: 640px;
  margin-bottom: 64px;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
}

.section-eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--accent);
}

.section-title {
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: clamp(2rem, 4.5vw, 2.9rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.section-title em {
  font-style: normal;
  color: var(--accent);
  font-weight: 800;
}

.section-lede {
  margin-top: 20px;
  font-size: 1.05rem;
  color: var(--text-secondary);
}

/* ------------------------------ Group pillars ----------------------------- */

.pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.pillar {
  padding: 44px 40px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: var(--bg-elevated);
  box-shadow: var(--shadow);
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.25s ease;
}

.pillar:hover {
  transform: translateY(-4px);
}

.pillar-num {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
}

.pillar h3 {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.pillar p {
  color: var(--text-secondary);
  font-size: 0.97rem;
  margin-bottom: 14px;
}

.pillar ul {
  list-style: none;
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pillar ul li {
  font-size: 0.78rem;
  font-weight: 500;
  padding: 6px 14px;
  border: 1px solid var(--border-strong);
  border-radius: 100px;
  color: var(--text-secondary);
}

/* ------------------------------ Companies --------------------------------- */

.companies-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.company {
  display: flex;
  flex-direction: column;
  padding: 34px 32px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--bg-elevated);
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.company:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--border-strong);
}

.company-meta {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.company h3 {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 1.2rem;
  line-height: 1.3;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.company p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  flex-grow: 1;
}

.company-detail {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  font-size: 0.8rem;
  color: var(--text-tertiary);
  line-height: 1.6;
}

/* -------------------------------- Blog ------------------------------------ */

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.blog-empty {
  text-align: center;
  padding: 64px 24px;
  color: var(--text-muted);
  font-size: 1rem;
  letter-spacing: 0.01em;
  opacity: 0.7;
}

.post-card {
  display: flex;
  flex-direction: column;
  padding: 34px 32px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--bg-elevated);
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.post-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--border-strong);
}

.post-card-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--text-tertiary);
  margin-bottom: 16px;
}

.post-card-meta .tag {
  color: var(--accent);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.7rem;
}

.post-card h3 {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.3;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.post-card p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  flex-grow: 1;
  margin-bottom: 20px;
}

.post-card .read-more {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.post-card:hover .read-more {
  color: var(--accent-strong);
}

.section-footer {
  margin-top: 48px;
  text-align: center;
}

/* ----------------------------- Blog listing ------------------------------- */

.page-head {
  padding: calc(var(--nav-height) + 80px) 0 72px;
}

.page-head h1 {
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: clamp(2.6rem, 6.5vw, 4rem);
  line-height: 1.06;
  letter-spacing: -0.03em;
  margin-bottom: 22px;
  max-width: 18ch;
}

.page-head h1 em {
  font-style: normal;
  color: var(--accent);
}

.page-head p {
  font-size: 1.08rem;
  color: var(--text-secondary);
  max-width: 56ch;
}

.blog-list {
  padding-bottom: 110px;
}

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

/* ------------------------------ Blog post --------------------------------- */

.post {
  padding: calc(var(--nav-height) + 80px) 0 110px;
}

.post-container {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px;
}

.post-header {
  margin-bottom: 48px;
}

.post-header .post-card-meta {
  margin-bottom: 20px;
}

.post-header h1 {
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: clamp(2.2rem, 5.5vw, 3.2rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 22px;
}

.post-header .post-lede {
  font-size: 1.15rem;
  line-height: 1.65;
  color: var(--text-secondary);
}

.post-divider {
  width: 56px;
  height: 2px;
  background: var(--accent);
  border: none;
  margin: 40px 0;
}

.post-body h2 {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 1.7rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 48px 0 18px;
}

.post-body p {
  color: var(--text-secondary);
  font-size: 1.04rem;
  margin-bottom: 22px;
}

.post-body strong {
  color: var(--text);
  font-weight: 600;
}

.post-body blockquote {
  margin: 36px 0;
  padding: 26px 30px;
  border-left: 2px solid var(--accent);
  background: var(--bg-subtle);
  border-radius: 0 12px 12px 0;
  font-size: 1.15rem;
  line-height: 1.55;
  color: var(--text-secondary);
  font-style: normal;
  transition: background 0.3s ease;
}

.post-body ul {
  margin: 0 0 22px 22px;
  color: var(--text-secondary);
}

.post-body ul li {
  margin-bottom: 10px;
  font-size: 1.02rem;
}

.post-footer {
  margin-top: 64px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.post-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.post-author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: -0.02em;
}

:root[data-theme="dark"] .post-author-avatar {
  color: #0e0e0e;
}

.post-author-name {
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1.4;
}

.post-author-role {
  font-size: 0.8rem;
  color: var(--text-tertiary);
}

/* ------------------------------- Contact ---------------------------------- */

.contact-inner {
  text-align: center;
  max-width: 620px;
  margin: 0 auto;
}

.contact-inner .section-eyebrow {
  justify-content: center;
}

.contact-inner .section-eyebrow::before {
  display: none;
}

.contact-inner .section-title {
  margin-bottom: 22px;
}

.contact-inner p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  margin-bottom: 36px;
}

/* -------------------------------- Footer ---------------------------------- */

.footer {
  border-top: 1px solid var(--border);
  padding: 56px 0 44px;
  transition: border-color 0.3s ease;
}

.footer-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

/* Footer brand keeps Instrument Serif — it's the name */
.footer-brand {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.footer-brand em {
  color: var(--accent);
}

.footer-tag {
  font-size: 0.85rem;
  color: var(--text-tertiary);
  max-width: 32ch;
}

.footer-col h4 {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col a {
  font-size: 0.88rem;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

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

.footer-bottom {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.8rem;
  color: var(--text-tertiary);
}

/* ------------------------------ Reveal anim -------------------------------- */

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ------------------------------ Responsive --------------------------------- */

@media (max-width: 1000px) {
  .profile-grid {
    grid-template-columns: 300px 1fr;
    gap: 52px;
  }
}

@media (max-width: 820px) {
  .profile-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .profile-photo-wrap {
    position: static;
    max-width: 320px;
    margin: 0 auto;
    width: 100%;
  }

  /* Swap signature: hide under-photo one, show bio-column one */
  .profile-signature-under {
    display: none;
  }

  .profile-signature-mobile {
    display: block;
  }

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

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

  .companies-grid,
  .blog-grid,
  .blog-list .blog-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 700px) {
  .section {
    padding: 80px 0;
  }

  .profile-hero {
    padding: calc(var(--nav-height) + 48px) 0 72px;
  }

  .nav-links {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    padding: 12px 24px 20px;
    display: none;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    display: block;
    padding: 12px 0;
    font-size: 1rem;
  }

  .nav-menu-btn {
    display: grid;
  }

  .companies-grid,
  .blog-grid,
  .blog-list .blog-grid {
    grid-template-columns: 1fr;
  }

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

  .stat + .stat {
    border-left: none;
    border-top: 1px solid var(--border);
  }


  .profile-name {
    font-size: 2.4rem;
  }
}
