  :root {
    --bg: #0a0f1e;
    --bg-alt: #0d1428;
    --card: #111a33;
    --card-2: #0f1830;
    --orange: #ff7a1a;
    --orange-2: #ff9440;
    --text: #eef1f8;
    --muted: #92a0c2;
    --border: rgba(255, 255, 255, 0.08);
  }

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

  body {
    background: var(--bg);
    color: var(--text);
    font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
  }

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

  ul {
    list-style: none;
  }

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

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

  .eyebrow {
    color: var(--orange);
    letter-spacing: 2px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 14px;
  }

  .eyebrow::before {
    content: "◆ ";
  }

  h1,
  h2,
  h3 {
    font-weight: 800;
  }

  .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 26px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14.5px;
    cursor: pointer;
    border: none;
    transition: .25s;
  }

  .btn-primary {
    background: linear-gradient(135deg, var(--orange), var(--orange-2));
    color: #0a0f1e;
  }

  .btn-primary:hover {
    filter: brightness(1.08);
    transform: translateY(-2px);
  }

  .btn-outline {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--border);
  }

  .btn-outline:hover {
    border-color: var(--orange);
    color: var(--orange);
  }

  /* NAVBAR */
  header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(10, 15, 30, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
  }

  nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
    max-width: 1200px;
    margin: 0 auto;
  }

  .logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 18px;
  }

  .logo-mark {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--orange), var(--orange-2));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #0a0f1e;
    font-weight: 900;
  }

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

  .nav-links a {
    font-size: 14.5px;
    color: var(--muted);
    font-weight: 600;
    transition: .2s;
  }

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

  .nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
  }

  .nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: .25s;
  }

  .nav-toggle.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-toggle.open span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  /* HERO */
  .hero {
    position: relative;
    padding: 90px 0 70px;
    overflow: hidden;
  }

  .hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 50px;
    align-items: center;
  }

  .hero h1 {
    font-size: 52px;
    line-height: 1.1;
    margin-bottom: 20px;
  }

  .hero h1 span {
    display: block;
    background: linear-gradient(135deg, var(--orange), var(--orange-2));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }

  .hero p {
    color: var(--muted);
    font-size: 16px;
    max-width: 460px;
    margin-bottom: 26px;
  }

  .hero-tags {
    display: flex;
    gap: 22px;
    flex-wrap: wrap;
    margin-bottom: 30px;
  }

  .hero-tags span {
    font-size: 13.5px;
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: 6px;
  }

  .hero-tags span::before {
    content: "●";
    color: var(--orange);
    font-size: 9px;
  }

  .hero-actions {
    display: flex;
    gap: 14px;
    margin-bottom: 40px;
  }

  .tech-row {
    display: flex;
    gap: 14px;
    align-items: center;
    flex-wrap: wrap;
  }

  .tech-row .label {
    font-size: 12px;
    color: var(--muted);
    margin-right: 6px;
  }

  .tech-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: var(--card);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    font-size: 14px;
    font-weight: 700;
  }

  .hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .glow {
    position: absolute;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 122, 26, 0.35), transparent 70%);
    filter: blur(10px);
  }

  .portrait {
    position: relative;
    width: 320px;
    height: 400px;
    border-radius: 24px;
    background: linear-gradient(160deg, #1a2440, #0d1428);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    font-size: 120px;
  }

  .floating-chip {
    position: absolute;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 10px 14px;
    font-size: 16px;
    font-weight: 700;
    color: var(--orange);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  }

  .chip-1 {
    top: 8%;
    left: 0;
  }

  .chip-2 {
    top: 20%;
    right: -4%;
  }

  .chip-3 {
    bottom: 18%;
    left: -6%;
  }

  .stat-bar {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 16px;
    display: flex;
    gap: 0;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    overflow: hidden;
  }

  .stat-bar div {
    padding: 18px 26px;
    text-align: center;
    border-right: 1px solid var(--border);
  }

  .stat-bar div:last-child {
    border-right: none;
  }

  .stat-bar .num {
    color: var(--orange);
    font-size: 22px;
    font-weight: 800;
  }

  .stat-bar .lab {
    font-size: 11px;
    color: var(--muted);
  }

  section {
    padding: 90px 0;
  }

  .section-head {
    text-align: center;
    margin-bottom: 50px;
  }

  .section-head h2 {
    font-size: 34px;
    margin-top: 8px;
  }

  /* ABOUT */
  .about-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    align-items: center;
  }

  .about-img {
    border-radius: 20px;
    padding: 10px;
    aspect-ratio: 1/1;
    background: linear-gradient(160deg, #16213f, #0b1224);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
  }
  .about-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
  }

  .about-content .eyebrow {
    margin-bottom: 10px;
  }

  .about-content h2 {
    font-size: 32px;
    margin-bottom: 16px;
  }

  .about-content>p {
    color: var(--muted);
    margin-bottom: 26px;
  }

  .info-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 26px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 24px;
  }

  .info-item {
    font-size: 13.5px;
  }

  .info-item .k {
    color: var(--muted);
    display: block;
    font-size: 12px;
    margin-bottom: 4px;
  }

  .info-item .v {
    font-weight: 700;
  }

  .available {
    color: #3ddc84;
  }

  .available::before {
    content: "● ";
  }

  /* SKILLS */
  .skills-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }

  .skill-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    transition: .25s;
  }

  .skill-card:hover {
    border-color: var(--orange);
    transform: translateY(-6px);
  }

  .skill-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    margin: 0 auto 18px;
    background: linear-gradient(135deg, var(--orange), var(--orange-2));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #0a0f1e;
  }

  .skill-card h3 {
    font-size: 16px;
    margin-bottom: 8px;
  }

  .skill-card p {
    font-size: 13px;
    color: var(--muted);
  }

  /* PROJECTS */
  .projects-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
  }

  .projects-head h2 {
    font-size: 32px;
  }

  .view-all {
    color: var(--orange);
    font-weight: 700;
    font-size: 14px;
  }

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

  .project-card {
    position: relative;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: visible;
    transition: .3s;
    display: flex;
    flex-direction: column;
  }

  .project-card:hover {
    transform: translateY(-8px);
    border-color: var(--orange);
    box-shadow: 0 22px 44px rgba(0, 0, 0, 0.45);
  }

  .project-thumb {
    border-radius: 10px 10px 0 0;
    overflow: hidden;
    position: relative;
    background:
      radial-gradient(circle at 30% 20%, rgba(255, 122, 26, 0.18), transparent 55%),
      linear-gradient(160deg, #182448, #0d1530);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
  }

  .project-thumb-emoji:hover {
    transform: scale(1.1);
    opacity: .55;
    transition: .5s;
  }

  .project-featured-ribbon {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(10, 15, 30, 0.75);
    color: var(--orange);
    border: 1px solid rgba(255, 122, 26, 0.4);
    font-size: 11px;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 6px;
    z-index: 2;
    backdrop-filter: blur(4px);
  }

  .project-logo {
    position: absolute;
    left: 20px;
    bottom: -26px;
    z-index: 3;
    width: 56px;
    height: 56px;
    border-radius: 14px;
    overflow: hidden;
    background: var(--card-2);
    border: 2px solid var(--card);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
  }

  .project-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .project-body {
    border-top: 1px solid var(--border);
    padding: 5px 10px 10px;
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
  }

  .project-body h3 {
    font-size: 16.5px;
    margin-bottom: 8px;
  }

  .project-body p {
    font-size: 13px;
    color: var(--muted);
    margin-bottom: 16px;
    flex: 1;
  }

  .project-links {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: auto;
  }

  .project-links a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12.5px;
    font-weight: 700;
    padding: 8px 12px;
    border-radius: 8px;
    transition: .2s;
  }

  .project-links a.link-primary {
    background: rgba(255, 122, 26, 0.12);
    color: var(--orange);
  }

  .project-links a.link-primary:hover {
    background: rgba(255, 122, 26, 0.22);
  }

  .project-links a.link-outline {
    border: 1px solid var(--border);
    color: var(--text);
  }

  .project-links a.link-outline:hover {
    border-color: var(--orange);
    color: var(--orange);
  }

  /* TIMELINE */
  .timeline {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-top: 60px;
  }

  .timeline::before {
    content: "";
    position: absolute;
    top: 22px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--orange), transparent);
  }

  .tl-item {
    flex: 1;
    text-align: center;
    position: relative;
    padding: 0 10px;
  }

  .tl-top {
    display: contents;
  }

  .tl-dot {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--card);
    border: 2px solid var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 18px;
    position: relative;
    z-index: 2;
    color: var(--orange);
  }

  .tl-year {
    color: var(--orange);
    font-weight: 800;
    font-size: 14px;
    margin-bottom: 6px;
  }

  .tl-item h4 {
    font-size: 14.5px;
    margin-bottom: 6px;
  }

  .tl-item p {
    font-size: 12.5px;
    color: var(--muted);
  }

  /* TESTIMONIALS + FAQ */
  .split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
  }

  .testimonial-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 34px;
  }

  .quote-mark {
    font-size: 40px;
    color: var(--orange);
    font-weight: 900;
    line-height: 0.5;
    margin-bottom: 14px;
    display: block;
  }

  .testimonial-card p {
    color: var(--muted);
    margin-bottom: 22px;
    font-size: 15px;
  }

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

  .avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--orange), var(--orange-2));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: #0a0f1e;
  }

  .reviewer .name {
    font-weight: 700;
    font-size: 14.5px;
  }

  .reviewer .role {
    font-size: 12.5px;
    color: var(--muted);
  }

  .stars {
    color: var(--orange);
    font-size: 13px;
    margin-top: 4px;
  }

  .dots {
    display: flex;
    gap: 8px;
    margin-top: 22px;
    justify-content: center;
  }

  .dots span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--border);
  }

  .dots span.active {
    background: var(--orange);
    width: 20px;
    border-radius: 4px;
  }

  .faq-item {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    margin-bottom: 14px;
    overflow: hidden;
  }

  .faq-q {
    padding: 18px 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 700;
    font-size: 14.5px;
  }

  .faq-q .plus {
    color: var(--orange);
    font-size: 20px;
    transition: .25s;
  }

  .faq-item.open .plus {
    transform: rotate(45deg);
  }

  .faq-a {
    max-height: 0;
    overflow: hidden;
    transition: .3s;
    padding: 0 22px;
    color: var(--muted);
    font-size: 13.5px;
  }

  .faq-item.open .faq-a {
    max-height: 120px;
    padding-bottom: 18px;
  }

  /* CONTACT */
  .contact-band {
    background: linear-gradient(120deg, #1a1030, #0a0f1e 60%);
    border-radius: 24px;
    padding: 50px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    border: 1px solid var(--border);
    margin-bottom: 30px;
  }

  .contact-band h2 {
    font-size: 30px;
    margin-bottom: 10px;
  }

  .contact-band p {
    color: var(--muted);
  }

  .contact-info {
    display: flex;
    gap: 34px;
    flex-wrap: wrap;
  }

  .contact-info div {
    font-size: 13.5px;
  }

  .contact-info .k {
    color: var(--muted);
    display: block;
    font-size: 12px;
    margin-bottom: 4px;
  }

  .contact-form-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 44px;
  }

  .contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 22px;
  }

  .form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .form-group.full {
    grid-column: 1 / -1;
  }

  .form-group label {
    font-size: 13px;
    font-weight: 600;
    color: var(--muted);
  }

  .form-group input,
  .form-group textarea {
    background: var(--card-2);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 13px 16px;
    color: var(--text);
    font-size: 14.5px;
    font-family: inherit;
    transition: .2s;
  }

  .form-group textarea {
    resize: vertical;
    min-height: 130px;
  }

  .form-group input:focus,
  .form-group textarea:focus {
    outline: none;
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(255, 122, 26, 0.15);
  }

  .form-group input::placeholder,
  .form-group textarea::placeholder {
    color: #5b6a8f;
  }

  .form-submit {
    border: none;
    cursor: pointer;
    justify-self: start;
  }

  .form-note {
    font-size: 12px;
    color: var(--muted);
    margin-top: 14px;
  }

  .file-drop {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-align: center;
    background: var(--card-2);
    border: 1.5px dashed var(--border);
    border-radius: 12px;
    padding: 26px 16px;
    cursor: pointer;
    transition: .2s;
  }

  .file-drop:hover,
  .file-drop.dragover {
    border-color: var(--orange);
    background: rgba(255, 122, 26, 0.06);
  }

  .file-drop-icon {
    font-size: 26px;
  }

  .file-drop-text {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.5;
  }

  .file-drop-text small {
    color: #5b6a8f;
    font-size: 11.5px;
  }

  .file-preview {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 14px;
  }

  .file-preview:empty {
    margin-top: 0;
  }

  .file-preview-item {
    position: relative;
    width: 88px;
    height: 88px;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--border);
  }

  .file-preview-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .file-preview-remove {
    position: absolute;
    top: 4px;
    right: 4px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(10, 15, 30, 0.85);
    color: var(--text);
    border: none;
    cursor: pointer;
    font-size: 12px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .file-preview-remove:hover {
    background: var(--orange);
    color: #0a0f1e;
  }

  /* FOOTER */
  footer {
    padding: 60px 0 30px;
    border-top: 1px solid var(--border);
    margin-top: 60px;
  }

  .footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
  }

  .footer-grid h4 {
    font-size: 14px;
    margin-bottom: 16px;
    color: var(--text);
  }

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

  .footer-grid ul li a {
    font-size: 13.5px;
    color: var(--muted);
  }

  .footer-grid ul li a:hover {
    color: var(--orange);
  }

  .footer-brand p {
    color: var(--muted);
    font-size: 13.5px;
    margin-top: 14px;
    max-width: 280px;
  }

  .socials {
    display: flex;
    gap: 10px;
    margin-top: 18px;
  }

  .socials a {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: var(--card);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
  }

  .footer-bottom {
    display: flex;
    justify-content: space-between;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    font-size: 12.5px;
    color: var(--muted);
    flex-wrap: wrap;
    gap: 10px;
  }

  /* ===== RESPONSIVE ===== */

  /* Tablets and small laptops */
  @media(max-width:1024px) {
    .container {
      padding: 0 20px;
    }

    .hero-grid {
      gap: 36px;
    }

    .hero h1 {
      font-size: 44px;
    }

    .about-grid {
      gap: 40px;
    }

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

    .projects-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 18px;
    }

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

    .contact-band {
      padding: 44px;
    }

    .contact-form-card {
      padding: 34px;
    }
  }

  /* Tablets / nav collapse */
  @media(max-width:900px) {
    nav {
      padding: 16px 20px;
    }

    .nav-links {
      position: fixed;
      top: 66px;
      left: 0;
      right: 0;
      background: var(--bg-alt);
      flex-direction: column;
      align-items: flex-start;
      gap: 0;
      border-bottom: 1px solid var(--border);
      max-height: 0;
      overflow: hidden;
      transition: max-height .3s ease;
      z-index: 99;
    }

    .nav-links.open {
      max-height: 400px;
    }

    .nav-links a {
      width: 100%;
      padding: 16px 24px;
      border-bottom: 1px solid var(--border);
    }

    .nav-toggle {
      display: flex;
    }

    .nav-cta {
      display: none;
    }

    .hero {
      padding: 50px 0 60px;
    }

    .hero-grid {
      grid-template-columns: 1fr;
      text-align: center;
    }

    .hero p {
      margin-left: auto;
      margin-right: auto;
    }

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

    .hero-actions {
      justify-content: center;
      flex-wrap: wrap;
    }

    .tech-row {
      justify-content: center;
    }

    .hero-visual {
      margin-top: 20px;
    }

    .portrait {
      width: 260px;
      height: 320px;
      font-size: 90px;
    }

    .stat-bar {
      position: static;
      transform: none;
      margin-top: 26px;
      justify-content: center;
      width: 100%;
      flex-wrap: wrap;
    }

    .stat-bar div {
      flex: 1 1 33%;
      padding: 16px 10px;
    }

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

    .about-img {
      max-width: 340px;
      margin: 0 auto;
      aspect-ratio: 1/1;
    }

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

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

    .projects-head {
      flex-direction: column;
      align-items: flex-start;
      gap: 14px;
    }

    .timeline {
      flex-direction: column;
      gap: 34px;
      align-items: stretch;
    }

    .timeline::before {
      display: none;
    }

    .tl-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      padding: 0 0 30px;
      border-bottom: 1px solid var(--border);
      max-width: 340px;
      margin: 0 auto;
    }

    .tl-item:last-child {
      border-bottom: none;
      padding-bottom: 0;
    }

    .tl-top {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      margin-bottom: 14px;
    }

    .tl-dot {
      margin: 0;
      flex-shrink: 0;
    }

    .tl-year {
      margin-bottom: 0;
    }

    .split-grid {
      grid-template-columns: 1fr;
      gap: 44px;
    }

    .contact-band {
      flex-direction: column;
      text-align: center;
      align-items: center;
      padding: 36px 24px;
    }

    .contact-info {
      justify-content: center;
    }

    .contact-form {
      grid-template-columns: 1fr;
    }

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

  /* Phones */
  @media(max-width:560px) {
    .container {
      padding: 0 16px;
    }

    .hero h1 {
      font-size: 34px;
    }

    .hero p {
      font-size: 15px;
    }

    .eyebrow {
      font-size: 12px;
    }

    section {
      padding: 60px 0;
    }

    .section-head h2 {
      font-size: 26px;
    }

    .hero-tags {
      flex-direction: column;
      align-items: center;
      gap: 10px;
    }

    .hero-actions {
      flex-direction: column;
      width: 100%;
    }

    .hero-actions .btn {
      width: 100%;
      justify-content: center;
    }

    .portrait {
      width: 220px;
      height: 260px;
      font-size: 70px;
    }

    .floating-chip {
      padding: 8px 10px;
      font-size: 13px;
    }

    .stat-bar {
      border-radius: 12px;
    }

    .stat-bar div {
      flex: 1 1 100%;
      border-right: none;
      border-bottom: 1px solid var(--border);
    }

    .stat-bar div:last-child {
      border-bottom: none;
    }

    .about-content h2 {
      font-size: 26px;
    }

    .info-card {
      grid-template-columns: 1fr;
      padding: 20px;
    }

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

    .skill-card {
      padding: 26px 18px;
    }

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

    .split-grid {
      gap: 36px;
    }

    .testimonial-card {
      padding: 24px;
    }

    .contact-band h2 {
      font-size: 24px;
    }

    .contact-form-card {
      padding: 24px;
    }

    .form-submit {
      width: 100%;
      justify-content: center;
    }

    .contact-info {
      flex-direction: column;
      gap: 16px;
      align-items: center;
    }

    .footer-grid {
      grid-template-columns: 1fr;
      gap: 32px;
      text-align: left;
    }

    .footer-bottom {
      flex-direction: column;
      text-align: center;
    }
  }

  /* ===== Dynamic content states (added for API-driven content) ===== */
  .skeleton {
    color: var(--muted);
    font-size: 13.5px;
    padding: 30px 0;
    text-align: center;
    width: 100%;
  }

  .hero h1 .name-line {
    display: block;
  }

  .faq-item .faq-a {
    white-space: pre-line;
  }

  .tl-empty,
  .proj-empty,
  .skill-empty {
    color: var(--muted);
    text-align: center;
    width: 100%;
    padding: 20px 0;
  }