/* Extracted from milad-alekhabandi copy.html — page content styles */

    * { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: 'Vazirmatn', sans-serif;
      background: var(--canvas);
      color: var(--ink);
      line-height: 1.8;
      overflow-x: hidden;
    }
    h1, h2, h3, h4, .brand, .btn, .chip, .nav a, .stat-num {
      font-family: 'Baloo Bhaijaan 2', 'Vazirmatn', sans-serif;
    }
    img, svg { display: block; max-width: 100%; }
    a { color: inherit; text-decoration: none; }
    ul { list-style: none; }
    button { font: inherit; cursor: pointer; border: none; background: none; }
    section { position: relative; }
    .wrap { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

    /* ===================== Navbar ===================== */
    .nav {
      position: sticky; top: 0; z-index: 100;
      background: rgba(255, 249, 238, 0.92);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      border-bottom: 1px solid var(--line);
    }
    .nav-inner {
      max-width: 1180px; margin: 0 auto; padding: 12px 24px;
      display: flex; align-items: center; justify-content: space-between; gap: 24px;
    }
    .brand {
      display: flex; align-items: center; gap: 10px;
      font-weight: 800; font-size: 24px; color: var(--ink);
    }
    .brand img { width: 42px; height: 42px; object-fit: contain; border-radius: 50%; }
    .nav-links { display: flex; align-items: center; gap: 6px; }
    .nav-links a {
      padding: 10px 16px; border-radius: 100px; font-weight: 600; font-size: 15px;
      color: var(--ink-soft); transition: background .2s var(--ease), color .2s var(--ease);
    }
    .nav-links a:hover, .nav-links a.active { background: var(--sun-100); color: var(--sun-deep); }
    .nav-cta { display: flex; align-items: center; gap: 12px; }
    .nav-ghost { font-weight: 600; font-size: 15px; color: var(--ink-soft); padding: 10px 12px; }

    .burger {
      display: none; flex-direction: column; gap: 6px;
      width: 30px; height: 24px; justify-content: center; z-index: 101;
    }
    .burger span {
      width: 100%; height: 3px; background: var(--ink); border-radius: 4px;
      transition: transform .3s var(--ease), opacity .3s var(--ease);
    }
    .burger.open span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
    .burger.open span:nth-child(2) { opacity: 0; }
    .burger.open span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

    .mobile-drawer {
      position: fixed; inset: 0; background: var(--canvas); z-index: 99;
      display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 20px;
      transform: translateX(100%); transition: transform 0.4s var(--ease);
    }
    .mobile-drawer.open { transform: translateX(0); }
    .mobile-drawer a {
      font-size: 22px; font-weight: 700; color: var(--ink);
      padding: 10px 20px; border-radius: 100px;
    }
    .mobile-drawer a:hover { background: var(--sun-100); }

    /* ===================== Buttons ===================== */
    .btn {
      display: inline-flex; align-items: center; justify-content: center; gap: 8px;
      padding: 14px 28px; border-radius: 100px; font-weight: 700; font-size: 16px;
      transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease);
      white-space: nowrap;
    }
    .btn-primary {
      background: var(--sun); color: #fff; box-shadow: 0 4px 0 var(--sun-deep);
    }
    .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 0 var(--sun-deep), var(--shadow-sm); }
    .btn-primary:active { transform: translateY(2px); box-shadow: 0 2px 0 var(--sun-deep); }
    .btn-outline {
      background: #fff; color: var(--ink); border: 2px solid var(--line);
    }
    .btn-outline:hover { border-color: var(--sky); color: var(--sky); transform: translateY(-2px); }
    .btn-sm { padding: 10px 20px; font-size: 14px; }

    /* ===================== Profile Masthead ===================== */
    .profile-masthead {
      padding: 48px 0 0; overflow: hidden; color: #fff;
      background:
        radial-gradient(ellipse 60% 60% at 88% 10%, rgba(255,159,28,.28), transparent 55%),
        linear-gradient(135deg, var(--grape), var(--sky));
    }
    .breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 13.5px; color: rgba(255,255,255,.75); margin-bottom: 30px; }
    .breadcrumb a { color: rgba(255,255,255,.75); font-weight: 600; }
    .breadcrumb a:hover { color: #fff; }
    .breadcrumb span.sep { opacity: .5; }
    .breadcrumb span.current { color: #fff; font-weight: 700; }

    .profile-head { display: flex; align-items: center; gap: 28px; padding-bottom: 56px; flex-wrap: wrap; }
    .profile-avatar {
      width: 148px; height: 148px; border-radius: 50%; overflow: hidden;
      border: 5px solid rgba(255,255,255,.35); box-shadow: var(--shadow-lg); flex-shrink: 0;
    }
    .profile-avatar img { width: 100%; height: 100%; object-fit: cover; }
    .profile-info .role-chip {
      display: inline-block; font-weight: 700; font-size: 13px; color: #fff;
      background: rgba(255,255,255,.18); padding: 6px 16px; border-radius: 100px; margin-bottom: 14px;
    }
    .profile-info h1 { font-size: clamp(26px, 4vw, 40px); font-weight: 800; margin-bottom: 8px; }
    .profile-info p.tagline { font-size: 15.5px; color: rgba(255,255,255,.9); max-width: 520px; }
    .profile-socials { display: flex; gap: 10px; margin-top: 18px; }
    .profile-socials a {
      width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,.15);
      display: flex; align-items: center; justify-content: center; transition: background .2s var(--ease);
    }
    .profile-socials a:hover { background: rgba(255,255,255,.3); }
    .profile-socials svg { width: 18px; height: 18px; color: #fff; }

    /* ===================== Container ===================== */
    .profile-container {
      display: grid; grid-template-columns: 1fr 320px; gap: 40px; padding: 60px 0;
    }
    .profile-content { min-width: 0; }
    .profile-content h2 { font-size: 24px; font-weight: 800; margin: 36px 0 14px; }
    .profile-content h2:first-child { margin-top: 0; }
    .profile-content p { font-size: 15.5px; margin-bottom: 14px; color: var(--ink); }
    .profile-content ul { margin: 16px 0 16px 24px; }
    .profile-content ul li { margin-bottom: 10px; font-size: 15.5px; color: var(--ink); }
    .profile-content ul li:before { content: "✓"; margin-inline-end: 10px; color: var(--leaf); font-weight: 700; }
    .pull-quote {
      margin: 28px 0; padding: 24px 26px; border-right: 4px solid var(--sun);
      background: var(--sun-100); border-radius: var(--radius-md);
      font-style: italic; color: var(--ink); font-size: 16.5px;
    }

    /* ===================== Sidebar ===================== */
    .profile-aside { position: sticky; top: 100px; align-self: start; }
    .aside-card {
      background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg);
      padding: 24px; box-shadow: var(--shadow-sm); margin-bottom: 24px;
    }
    .aside-card h3 {
      font-size: 15px; font-weight: 800; margin-bottom: 16px; padding-bottom: 12px; border-bottom: 2px solid var(--line);
    }
    .fact-row { display: flex; justify-content: space-between; gap: 12px; font-size: 14px; margin-bottom: 12px; }
    .fact-row:last-child { margin-bottom: 0; }
    .fact-row .k { color: var(--ink-soft); font-weight: 600; }
    .fact-row .v { font-weight: 700; }

    .team-mini { display: flex; align-items: center; gap: 12px; padding: 10px 0; border-top: 1px solid var(--line); }
    .team-mini:first-of-type { border-top: none; padding-top: 0; }
    .team-mini img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; }
    .team-mini h4 { font-size: 14px; font-weight: 700; }
    .team-mini span { font-size: 12.5px; color: var(--ink-soft); }

    /* ===================== CTA ===================== */
    .cta-banner { padding: 0 0 80px; }
    .cta-inner {
      background: linear-gradient(135deg, var(--grape), var(--sky));
      border-radius: var(--radius-lg); padding: 56px 40px; text-align: center; color: #fff;
      position: relative; overflow: hidden;
    }
    .cta-mascot {
      width: 120px; height: auto; margin: 0 auto 18px;
      position: relative; z-index: 1;
      filter: drop-shadow(0 8px 20px rgba(0,0,0,.25));
      mix-blend-mode: screen;
    }
    .cta-inner h2 { font-size: clamp(24px, 3.5vw, 34px); font-weight: 800; margin-bottom: 12px; position: relative; }
    .cta-inner p { opacity: .92; margin-bottom: 26px; font-size: 15.5px; max-width: 520px; margin-inline: auto; position: relative; }
    .cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; }

    /* ===================== Footer ===================== */
    footer { padding: 56px 0 28px; border-top: 1px solid var(--line); background: var(--white); }
    .footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 32px; margin-bottom: 36px; }
    .footer-brand p { color: var(--ink-soft); font-size: 14px; margin-top: 12px; max-width: 280px; }
    .footer-col b { font-family: 'Baloo Bhaijaan 2'; font-size: 15px; display: block; margin-bottom: 14px; }
    .footer-col ul { display: flex; flex-direction: column; gap: 10px; }
    .footer-col a { font-size: 14px; color: var(--ink-soft); transition: color .2s; }
    .footer-col a:hover { color: var(--sky); }
    .footer-bottom {
      display: flex; align-items: center; justify-content: space-between; padding-top: 22px;
      border-top: 1px solid var(--line); font-size: 13px; color: var(--ink-soft); flex-wrap: wrap; gap: 12px;
    }

    /* ===================== Responsive ===================== */
    @media (max-width: 1024px) {
      .burger { display: flex; }
      .nav-links, .nav-cta { display: none; }
      .profile-container { grid-template-columns: 1fr; }
      .profile-aside { position: static; }
      .footer-grid { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 640px) {
      .profile-head { flex-direction: column; text-align: center; }
      .profile-socials { justify-content: center; }
      .footer-grid { grid-template-columns: 1fr; }
      .cta-inner { padding: 44px 22px; }
      .cta-mascot { width: 96px; }
    }
  
.btn-block-full { width: 100%; display: flex; justify-content: center; }
.btn-on-light { background: #fff !important; }
.profile-website { margin: 12px 0 0; font-size: 15px; }
.profile-website a {
  color: #fff !important;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
  opacity: .95;
}
.profile-website a:hover { opacity: 1; }
.profile-masthead .profile-info .tagline { margin-bottom: 0; }
a.team-mini { display: flex; align-items: center; gap: 12px; text-decoration: none; color: inherit; margin-bottom: 12px; }
