:root{
    --bg: #F8FAFC;
    --panel: #FFFFFF;
    --panel2: #F1F5F9;
    --text: #0F172A;
    --muted: #475569;
    --border: #E2E8F0;
    --shadow: 0 18px 40px rgba(15,23,42,.12);
    --radius: 18px;
    --max: 1120px;
    --gap: 18px;
    --focus: rgba(59,130,246,.35);
    --accent: #3B82F6;
    --accent-2: #22C55E;
  }
  
  [data-theme="dark"]{
    --bg: #0b0f19;
    --panel: rgba(255,255,255,.06);
    --panel2: rgba(255,255,255,.08);
    --text: rgba(255,255,255,.92);
    --muted: rgba(255,255,255,.68);
    --border: rgba(255,255,255,.12);
    --shadow: 0 16px 40px rgba(0,0,0,.35);
    --focus: rgba(255,255,255,.35);
    --accent: #3B82F6;
    --accent-2: #22C55E;
  }
  
  *{ box-sizing:border-box; }
  html{ scroll-behavior:smooth; }
  body{
    margin:0;
    position: relative;
    font-family: "SF Pro Text", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, Arial, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height:1.45;
  }
  body::before{
    content:"";
    position: fixed;
    inset: 0;
    background: radial-gradient(circle at 12% 10%, rgba(59,130,246,.12), transparent 45%),
                radial-gradient(circle at 85% 15%, rgba(34,197,94,.10), transparent 50%);
    pointer-events: none;
    z-index: -2;
    animation: bg-drift 22s ease-in-out infinite;
    will-change: transform;
  }
  body::after{
    content:"";
    position: fixed;
    inset: -20% -10%;
    background: radial-gradient(circle at 0% 0%, rgba(59,130,246,.25), transparent 45%),
                radial-gradient(circle at 100% 100%, rgba(34,197,94,.22), transparent 45%);
    filter: blur(60px);
    opacity: .5;
    pointer-events: none;
    z-index: -1;
    animation: bg-drift-rev 28s ease-in-out infinite;
    will-change: transform;
  }
  [data-theme="dark"] body::before{
    background: radial-gradient(circle at 12% 10%, rgba(59,130,246,.18), transparent 45%),
                radial-gradient(circle at 85% 15%, rgba(34,197,94,.14), transparent 50%);
  }
  [data-theme="dark"] body::after{
    background: radial-gradient(circle at 0% 0%, rgba(59,130,246,.35), transparent 45%),
                radial-gradient(circle at 100% 100%, rgba(34,197,94,.3), transparent 45%);
    opacity: .55;
  }
  @keyframes bg-drift{
    0%{ transform: translate3d(0, 0, 0); }
    50%{ transform: translate3d(-2%, -1.5%, 0); }
    100%{ transform: translate3d(0, 0, 0); }
  }
  @keyframes bg-drift-rev{
    0%{ transform: translate3d(0, 0, 0); }
    50%{ transform: translate3d(2%, 1.5%, 0); }
    100%{ transform: translate3d(0, 0, 0); }
  }
  
  a{ color:inherit; text-decoration:none; }
  .container{ max-width: var(--max); margin: 0 auto; padding: 0 18px; }
  
  .skip-link{
    position:absolute; left:-999px; top: 8px;
    background: var(--panel2); padding: 10px 12px; border-radius: 10px;
  }
  .skip-link:focus{ left: 10px; outline: 2px solid var(--focus); }
  
  .topbar{
    position: sticky; top:0; z-index: 50;
    backdrop-filter: blur(10px);
    background: linear-gradient(to bottom, rgba(248,250,252,.9), rgba(248,250,252,.6));
    border-bottom: 1px solid var(--border);
  }
  [data-theme="dark"] .topbar{
    background: linear-gradient(to bottom, rgba(0,0,0,.55), rgba(0,0,0,.15));
  }
  .topbar__inner{
    display:flex; align-items:center; justify-content:space-between;
    gap: 14px; padding: 14px 0;
  }
  .brand{ display:flex; align-items:center; gap: 12px; min-width: 240px; }
  .brand__mark{
    width:40px; height:40px; border-radius: 12px;
    display:grid; place-items:center;
    background: var(--panel2);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    font-weight: 800;
  }
  .brand__mark img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
  }
  .brand__name{ font-weight: 800; letter-spacing: .2px; }
  .brand__role{ color: var(--muted); font-size: 13px; }
  
  .nav{ display:none; gap: 14px; }
  .nav__link{
    padding: 10px 10px; border-radius: 12px;
    color: var(--muted);
  }
  .nav__link:hover{ background: var(--panel); color: var(--text); }

  .topbar__actions{ display:flex; gap: 10px; align-items:center; }
  .nav-toggle{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width: 40px;
    height: 40px;
    padding: 0;
  }
  .nav-toggle i{
    font-size: 16px;
  }
  .nav-toggle__bar{
    display:block;
    width: 18px;
    height: 2px;
    background: currentColor;
    border-radius: 999px;
  }
  .nav-toggle__bar + .nav-toggle__bar{
    margin-top: 4px;
  }
  .mobile-nav{
    display:none;
    padding: 0 18px 14px;
    gap: 12px;
    flex-direction: column;
  }
  .mobile-nav.is-open{
    display:flex;
  }
  .mobile-nav__actions{
    width: 100%;
    display:flex;
    justify-content:flex-start;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border);
  }
  .mobile-nav__theme{
    width: 100%;
    justify-content:flex-start;
    padding: 12px 14px;
    border-radius: 14px;
  }
  .mobile-nav__link{
    padding: 14px 12px;
    border-radius: 0;
    border: 0;
    background: transparent;
    color: var(--text);
    font-size: 15px;
    font-weight: 500;
  }
  .mobile-nav__link:hover{
    color: var(--text);
    background: var(--panel2);
  }
  
  .btn{
    display:inline-flex; align-items:center; gap: 10px;
    padding: 10px 14px;
    border-radius: 14px;
    border: 1px solid var(--border);
    background: var(--accent);
    color: #fff;
    cursor:pointer;
  }
  .btn:hover{ transform: translateY(-1px); }
  .btn:active{ transform: translateY(0); }
  .btn--ghost{
    background: transparent;
    color: var(--text);
    border: 1px solid var(--border);
  }
  .btn__text{ font-weight: 600; }
  
  .section{ padding: 60px 0; position: relative; }
  .section__head{ display:flex; align-items:flex-end; justify-content:space-between; gap: 20px; margin-bottom: 18px; }
  .section__head p{ color: var(--muted); max-width: 70ch; }
  .section__head--about h2{
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
  }
  .section__head--about h2::after{
    content:"";
    position:absolute;
    left:0;
    bottom:2px;
    width: 120px;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, #38bdf8, #f59e0b, #22c55e, #38bdf8);
    background-size: 200% 100%;
    animation: about-underline 6s ease-in-out infinite;
  }
  .section__head--about h2::before{
    content:"";
    position:absolute;
    right:-16px;
    top:6px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #38bdf8;
    box-shadow: 0 0 0 6px rgba(56,189,248,.18);
    animation: about-pulse 3.2s ease-in-out infinite;
  }
  
  .hero{ position:relative; padding: 72px 0 60px; overflow:hidden; }
  .hero__inner{ display:grid; gap: 28px; align-items:stretch; grid-template-columns: 1fr; }
  .hero__content{ padding: 8px 0; max-width: 640px; position: relative; z-index: 1; }
  .hero__content::before{
    content:"";
    position:absolute;
    left: -26px;
    top: 30px;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(59,130,246,.22), transparent 60%);
    opacity: .8;
    z-index: -1;
  }
  .hero__content::after{
    content:"";
    position:absolute;
    left: 12px;
    bottom: -18px;
    width: 140px;
    height: 80px;
    background-image: radial-gradient(rgba(59,130,246,.35) 1.5px, transparent 1.5px);
    background-size: 12px 12px;
    opacity: .55;
    z-index: -1;
  }
  .pill{
    display:inline-flex; align-items:center;
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: var(--panel);
    color: var(--muted);
  }
  .pill--accent{
    background: var(--panel2);
    border-color: var(--border);
    color: var(--muted);
    font-weight: 600;
  }
  .hero__title{
    font-size: clamp(34px, 4.6vw, 64px);
    line-height:1.05;
    margin: 14px 0 12px;
    letter-spacing: -.6px;
    text-wrap: balance;
  }
  .hero__subtitle{ color: var(--muted); max-width: 60ch; margin:0 0 16px; }
  .hero__tag{
    display:inline-block;
    padding: 4px 10px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: var(--panel);
    font-size: 14px;
    margin: 0 8px 8px 0;
    color: var(--text);
  }
  .hero__tag:nth-child(5n+1){ color: #22c55e; }
  .hero__tag:nth-child(5n+2){ color: #38bdf8; }
  .hero__tag:nth-child(5n+3){ color: #f59e0b; }
  .hero__tag:nth-child(5n+4){ color: #a78bfa; }
  .hero__tag:nth-child(5n){ color: #f472b6; }
  .hero__cta{ display:flex; gap: 12px; flex-wrap:wrap; margin: 10px 0 18px; }
  .hero__meta{ display:flex; gap: 12px; flex-wrap:wrap; color: var(--muted); }
  .hero__meta .chip{
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .hero--showcase{
    padding: 90px 0 70px;
    background: transparent;
    border-bottom: none;
  }
  [data-theme="dark"] .hero--showcase{
    background: transparent;
  }
  .hero--showcase::before,
  .hero--showcase::after{
    content:"";
    position:absolute;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    filter: blur(60px);
    opacity: .5;
    z-index: 0;
    pointer-events:none;
  }
  .hero--showcase::before{
    background: radial-gradient(circle, rgba(59,130,246,.25), transparent 60%);
    left: -200px;
    top: -180px;
  }
  .hero--showcase::after{
    background: radial-gradient(circle, rgba(34,197,94,.22), transparent 60%);
    right: -240px;
    bottom: -220px;
  }
  .hero--showcase .hero__inner{
    align-items:center;
    gap: 36px;
    position: relative;
  }
  .hero--showcase .hero__title{
    font-size: clamp(34px, 4.6vw, 64px);
    letter-spacing: -1px;
  }
  .hero--showcase .pill{
    border-radius: 18px;
    padding: 8px 16px;
    background: linear-gradient(180deg, var(--panel2), var(--panel));
  }
  .hero--showcase .hero__card{
    position: relative;
    border-radius: 26px;
    background: #FFFFFF;
    padding: 18px;
    box-shadow: 0 24px 50px rgba(15,23,42,.16);
    border: 1px solid var(--border);
    z-index: 1;
  }
  [data-theme="dark"] .hero--showcase .hero__card{
    background: var(--panel);
    box-shadow: 0 24px 50px rgba(0,0,0,.45);
  }
  [data-theme="dark"] .hero--dark{
    background: transparent;
    border-bottom: none;
    color: #fff;
  }
  [data-theme="dark"] .hero--dark .hero__title,
  [data-theme="dark"] .hero--dark .hero__subtitle,
  [data-theme="dark"] .hero--dark .hero__meta{
    color: rgba(255,255,255,.9);
  }
  [data-theme="dark"] .hero--dark .hero__subtitle{ color: rgba(255,255,255,.7); }
  [data-theme="dark"] .hero--dark .hero__tag{
    background: rgba(255,255,255,.06);
    border-color: rgba(255,255,255,.14);
    color: rgba(255,255,255,.85);
  }
  [data-theme="dark"] .hero--dark .chip{
    background: rgba(255,255,255,.06);
    border-color: rgba(255,255,255,.14);
    color: rgba(255,255,255,.8);
  }
  [data-theme="dark"] .hero--dark .btn{
    background: #3B82F6;
    border-color: transparent;
    color: #fff;
  }
  [data-theme="dark"] .hero--dark .btn--ghost{
    background: transparent;
    border-color: rgba(255,255,255,.2);
    color: rgba(255,255,255,.9);
  }
  [data-theme="dark"] .hero--dark .hero__card{
    background: rgba(17,24,39,.8);
    border-color: rgba(255,255,255,.12);
    box-shadow: 0 24px 50px rgba(0,0,0,.45);
  }
  [data-theme="dark"] .hero--dark .hero__card::before{
    background: linear-gradient(120deg, rgba(59,130,246,.22), rgba(255,255,255,0));
  }
  .hero--showcase .hero__card::after{
    content:"";
    position:absolute;
    right: -18px;
    top: 18px;
    width: 90px;
    height: 90px;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(59,130,246,.18), rgba(34,197,94,.16));
    transform: rotate(10deg);
    z-index: 0;
  }
  .hero--showcase .hero__card > *{ position: relative; z-index: 1; }
  .hero--showcase .hero__card::before{
    content:"";
    position:absolute;
    inset: 1px 1px auto 1px;
    height: 60px;
    border-radius: 24px 24px 18px 18px;
    background: linear-gradient(120deg, rgba(59,130,246,.14), rgba(255,255,255,0));
    pointer-events:none;
  }
  .hero__portrait{
    border-radius: 22px;
    border: 1px solid var(--border);
    background: var(--panel2);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.2);
    margin-bottom: 16px;
    overflow: hidden;
    height: clamp(240px, 36vw, 340px);
  }
  .hero__pill{
    display:inline-flex;
    margin-bottom: 6px;
    box-shadow: 0 10px 20px rgba(15,23,42,.12);
    align-self: center;
  }
  .hero__portrait img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
  }
  .hero__toggle{
    width: 100%;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap: 10px;
    padding: 12px 14px;
    border-radius: 999px;
    border: 1px solid color-mix(in srgb, var(--border), transparent 40%);
    background: linear-gradient(120deg, rgba(59,130,246,.14), transparent 55%), var(--panel);
    color: var(--text);
    font-weight: 600;
    cursor: pointer;
    margin-bottom: 12px;
    position: relative;
    box-shadow: 0 12px 30px rgba(15,23,42,.14);
  }
  .hero__toggle::before{
    content:"";
    position:absolute;
    left: 10px;
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: radial-gradient(circle, #22c55e 0 45%, rgba(34,197,94,.2) 60%);
    box-shadow: 0 0 0 6px rgba(34,197,94,.12);
  }
  .hero__toggle span{
    padding-left: 16px;
  }
  .hero__toggle i{
    transition: transform .2s ease;
  }
  .hero__details{
    display:grid;
    gap: 12px;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transform: translateY(-6px);
    transition: max-height .3s ease, opacity .3s ease, transform .3s ease;
  }
  .hero__details.is-open{
    max-height: 800px;
    opacity: 1;
    transform: translateY(0);
  }
  .hero__toggle[aria-expanded="true"] i{
    transform: rotate(180deg);
  }
  .hero--showcase .stat{
    border-radius: 14px;
  }
  .hero--showcase .mini-timeline{
    border-top: 1px solid var(--border);
  }
  
  .hero__card{
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background: var(--panel);
    box-shadow: var(--shadow);
    padding: 16px;
    display: flex;
    flex-direction: column;
  }
  .stat-grid{
    display:grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: 12px;
    margin-bottom: 12px;
  }
  .stat{
    border: 1px solid var(--border);
    background: var(--panel2);
    border-radius: 16px;
    padding: 12px;
  }
  .stat__k{ font-weight: 800; font-size: 18px; }
  .stat__v{ color: var(--muted); font-size: 13px; margin-top: 6px; }
  
  .mini-timeline{
    border-top: 1px solid var(--border);
    padding-top: 12px;
    display:grid; gap: 10px;
  }
  .mini-item{ display:flex; gap: 10px; align-items:flex-start; }
  .dot{ width: 10px; height: 10px; border-radius: 99px; background: var(--panel2); border: 1px solid var(--border); margin-top: 6px; }
  .mini-item p{ margin:0; color: var(--muted); }
  
  .hero__fade{
    display:none;
  }
  
  .grid-2{
    display:grid; gap: 18px;
    grid-template-columns: 1fr;
  }

  .projects{
    background: transparent;
    color: var(--text);
  }
  .projects__head{
    display:flex;
    flex-direction: column;
    gap: 12px;
    align-items:flex-start;
    margin-bottom: 18px;
  }
  .projects__label{
    font-family: inherit;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    font-size: 12px;
    font-weight: 600;
    margin: 0;
    color: var(--muted);
  }
  .projects__title{
    font-family: inherit;
    font-size: 20px;
    line-height: 1.3;
    font-weight: 700;
    max-width: 40ch;
    margin: 0;
  }
  .projects-grid{
    display:grid;
    gap: 18px;
    grid-template-columns: 1fr;
  }
  .project-card{
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: 18px;
    box-shadow: var(--shadow);
    overflow: hidden;
  }
  .project-card__header{
    display:flex;
    align-items:center;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
    padding: 16px 18px;
    background: transparent;
    border: 0;
    text-align: left;
    cursor: pointer;
  }
  .project-card__title{
    margin: 0 0 6px;
    font-size: 16px;
    font-weight: 700;
    color: var(--text);
  }
  .project-card__tag{
    display:inline-flex;
    align-items:center;
    gap: 6px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--muted);
  }
  .project-card__chevron{
    width: 30px;
    height: 30px;
    border-radius: 999px;
    display:grid;
    place-items:center;
    background: var(--panel2);
    color: var(--muted);
    transition: transform .35s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .project-card__content{
    max-height: 0;
    opacity: 0;
    transform: translateY(-6px);
    overflow: hidden;
    transition:
      max-height .35s cubic-bezier(0.4, 0, 0.2, 1),
      opacity .35s cubic-bezier(0.4, 0, 0.2, 1),
      transform .35s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .project-card__body{
    padding: 0 18px 18px;
    color: var(--muted);
    font-size: 14px;
  }
  .project-card__stack{
    display:flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 12px 0 14px;
  }
  .project-card__chip{
    background: var(--panel2);
    border: 1px solid var(--border);
    color: var(--text);
    border-radius: 999px;
    padding: 6px 10px;
    font-size: 12px;
  }
  .project-card__actions{
    display:flex;
    flex-wrap: wrap;
    gap: 10px;
  }
  .project-card__btn{
    display:inline-flex;
    align-items:center;
    justify-content: center;
    gap: 6px;
    padding: 8px 12px;
    border-radius: 10px;
    border: 1px solid var(--border);
    background: transparent;
    color: var(--text);
    font-size: 13px;
    font-weight: 600;
  }
  .project-card__btn--primary{
    background: var(--accent);
    color: #fff;
    border-color: transparent;
  }
  .project-card__btn.is-disabled{
    opacity: 0.55;
    pointer-events: none;
  }
  .project-card.is-open .project-card__content{
    max-height: 520px;
    opacity: 1;
    transform: translateY(0);
  }
  .project-card.is-open .project-card__chevron{
    transform: rotate(180deg);
  }
  @media (min-width: 820px){
    .projects-grid{
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
  }
  .folder-shell{
    margin-top: 28px;
    background: #e9d8c2;
    border-radius: 22px;
    padding: 36px 18px 18px;
    border: 1px solid rgba(87,68,46,.2);
    position: relative;
    box-shadow: 0 20px 40px rgba(36,28,18,.25);
    overflow: visible;
  }
  .folder-shell::before{
    content:"";
    position:absolute;
    top: -22px;
    right: 28px;
    width: 180px;
    height: 44px;
    background: #f1e3d0;
    border: 1px solid rgba(87,68,46,.2);
    border-bottom: none;
    border-radius: 18px 18px 8px 8px;
    box-shadow: 0 10px 20px rgba(36,28,18,.2);
    z-index: 3;
  }
  .folder-tab{
    position:absolute;
    top: -22px;
    right: 36px;
    background: #f1e3d0;
    border: 1px solid rgba(87,68,46,.2);
    border-bottom: none;
    color: #5d4a2d;
    padding: 10px 18px;
    border-radius: 14px 14px 8px 8px;
    font-family: inherit;
    font-size: 13px;
    box-shadow: 0 10px 20px rgba(36,28,18,.2);
    z-index: 4;
  }
  .folder-lid{
    position:absolute;
    left: 12px;
    right: 12px;
    top: 14px;
    height: 46px;
    border-radius: 16px;
    background: #f0dfc9;
    border: 1px solid rgba(87,68,46,.2);
    transform-origin: top;
    transform: translateY(0);
    transition: transform .6s ease;
    z-index: 1;
  }
  .folder-body{
    background: #f7f2ec;
    border-radius: 18px;
    padding: 22px;
    border: 1px solid rgba(87,68,46,.15);
    position: relative;
    z-index: 2;
    transform: translateY(10px);
    opacity: 0;
    transition: transform .6s ease, opacity .6s ease;
    overflow: visible;
  }
  .projects-files{
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 16px;
  }
  .folder-filecard{
    position: relative;
    width: 100%;
    transform: none;
    background: #fffaf4;
    border: 1px solid rgba(87,68,46,.2);
    border-radius: 14px;
    padding: 14px 16px;
    box-shadow: 0 12px 22px rgba(36,28,18,.15);
    text-align: left;
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease;
  }
  .folder-shell.is-visible .folder-lid{
    transform: translateY(-16px);
  }
  .folder-shell.is-visible .folder-body{
    transform: translateY(0);
    opacity: 1;
  }
  .folder-filecard:hover{
    transform: translateY(-4px);
    box-shadow: 0 18px 30px rgba(36,28,18,.2);
  }
  .folder-filecard:focus-visible{
    outline: 2px solid var(--focus);
    outline-offset: 2px;
  }
  .folder-filecard__tag{
    display:inline-flex;
    align-items:center;
    gap: 6px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #6b5a43;
  }
  .folder-filecard__tag::before{
    content:"";
    width: 8px;
    height: 8px;
    border-radius: 3px;
    background: #c9a36a;
  }
  .folder-filecard__title{
    display:block;
    font-weight: 700;
    font-size: 14px;
    color: #2b2216;
    margin: 6px 0 4px;
  }
  .folder-filecard__meta{
    color: #6b5a43;
    font-size: 12px;
  }
  @media (max-width: 720px){
    .projects-files{
      grid-template-columns: 1fr;
    }
    .folder-filecard{
      width: 100%;
      margin-bottom: 16px;
    }
  }
  [data-theme="dark"] .folder-shell{
    background: #2b2418;
    border: 1px solid rgba(255,255,255,.08);
    box-shadow: 0 20px 40px rgba(0,0,0,.45);
  }
  [data-theme="dark"] .folder-shell::before{
    background: #3a2f1f;
    border: 1px solid rgba(255,255,255,.08);
    box-shadow: 0 10px 20px rgba(0,0,0,.35);
  }
  [data-theme="dark"] .folder-tab{
    background: #3a2f1f;
    border: 1px solid rgba(255,255,255,.08);
    color: rgba(255,255,255,.8);
  }
  [data-theme="dark"] .folder-lid{
    background: #332a1d;
    border: 1px solid rgba(255,255,255,.08);
  }
  [data-theme="dark"] .folder-body{
    background: #1a140e;
    border: 1px solid rgba(255,255,255,.08);
  }
  [data-theme="dark"] .folder-filecard{
    background: #251d14;
    border: 1px solid rgba(255,255,255,.08);
    box-shadow: 0 12px 24px rgba(0,0,0,.35);
  }
  [data-theme="dark"] .folder-filecard__title{
    color: rgba(255,255,255,.9);
  }
  [data-theme="dark"] .folder-filecard__meta{
    color: rgba(255,255,255,.65);
  }
  [data-theme="dark"] .folder-filecard__tag{
    color: rgba(255,255,255,.7);
  }
  .about-stack{
    display:grid; gap: 18px;
    width: 100%;
    margin: 0 auto;
    justify-items: center;
  }
  .about-stack .card{
    width: 100%;
    max-width: 940px;
  }
  .card{
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background: var(--panel);
    box-shadow: var(--shadow);
    padding: 16px;
  }
  .card h3{ margin: 0 0 10px; }
  .muted{ color: var(--muted); }
  .divider{ height: 1px; background: var(--border); margin: 12px 0; }
  
  .list{ margin:0; padding-left: 18px; color: var(--muted); }
  .list li{ margin: 8px 0; }
  .typing-line.is-typing::after{
    content:"";
    display:inline-block;
    width: 8px;
    height: 1em;
    margin-left: 4px;
    background: currentColor;
    animation: caret-blink 1s steps(2, start) infinite;
    vertical-align: -2px;
  }
  @keyframes caret-blink{
    0%, 50%{ opacity: 1; }
    51%, 100%{ opacity: 0; }
  }
  
  .chips{ display:flex; flex-wrap:wrap; gap: 10px; list-style:none; padding:0; margin:0; }
  .chip{
    padding: 8px 10px;
    border-radius: 999px;
    background: #EFF6FF;
    border: 1px solid #BFDBFE;
    color: #1D4ED8;
    font-size: 13px;
  }
  .skills-grid{ display:block; }
  .skills-bento{
    display:grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 12px;
    grid-auto-flow: dense;
    grid-auto-rows: 92px;
    padding: 10px 0;
    width: 100%;
  }
  .skills-columns{
    display:grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    padding: 10px 0;
    width: 100%;
  }
  .skills-column{
    display:grid;
    gap: 14px;
    align-content: start;
  }
  .skill-icon{
    min-height: 96px;
    display:grid;
    gap: 8px;
    place-items:center;
    text-align:center;
    border-radius: 18px;
    background: var(--panel);
    border: 1px solid var(--border);
    padding: 12px;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    width: 100%;
    height: 100%;
    appearance: none;
    cursor: default;
  }
  .skill-icon[href],
  .skill-icon[data-open]{
    cursor: pointer;
  }
  .skill-icon i{ font-size: 30px; }
  .skill-icon__label{
    font-size: 12px;
    line-height: 1.2;
    max-width: 90px;
    color: var(--muted);
    word-break: break-word;
  }
  .skill-icon:hover{
    transform: translateY(-3px);
    box-shadow: var(--shadow);
    border-color: rgba(34,197,94,.4);
  }
  .skill-icon.is-highlight{
    box-shadow: 0 0 0 1px rgba(59,130,246,.35), 0 10px 24px rgba(59,130,246,.2);
    border-color: rgba(59,130,246,.6);
    transform: translateY(-2px);
  }

  .section--skills-dark{
    background: transparent;
    color: var(--text);
  }
  .section--skills-dark .skills-columns{
    margin-top: 8px;
    width: 100%;
  }
  .section--skills-dark .skills-bento{
    margin-top: 8px;
  }
  .skills-edu{
    display:grid;
    gap: 24px;
    align-items: stretch;
  }
  .education-pane{
    display:flex;
    flex-direction: column;
    height: 100%;
  }
  .education-pane .cards{
    margin-top: 6px;
    grid-template-columns: 1fr;
  }
  .education-pane .card{
    padding: 18px;
  }
  .education-pane .card h3{
    font-size: 20px;
    line-height: 1.2;
  }
  .education-photo{
    margin-top: 16px;
    border-radius: 22px;
    border: 1px solid var(--border);
    background: var(--panel);
    box-shadow: var(--shadow);
    overflow: hidden;
    flex: 1;
    min-height: 220px;
  }
  .education-photo img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .iphone-mockup{
    height: 100%;
    width: 100%;
    min-height: 280px;
    background: #f8fafc;
    border-radius: 24px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
  }
  .iphone-mockup::before{
    content:"";
    position:absolute;
    inset: 8px;
    border-radius: 18px;
    background: linear-gradient(145deg, rgba(255,255,255,.12), rgba(255,255,255,0));
    pointer-events:none;
  }
  .iphone-island{
    position:absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 90px;
    height: 24px;
    background: #000;
    border-radius: 999px;
    z-index: 5;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.08);
  }
  .iphone-status{
    position:absolute;
    top: 12px;
    left: 0;
    right: 0;
    padding: 0 16px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    color: #0f172a;
    font-size: 0.72rem;
    letter-spacing: .3px;
    z-index: 4;
    pointer-events:none;
  }
  .iphone-status__icons{
    display:flex;
    align-items:center;
    gap: 8px;
  }
  .iphone-signal{
    width: 18px;
    height: 10px;
    background: linear-gradient(to top, #fff 0 100%);
    mask: linear-gradient(#000 0 0) bottom/3px 3px repeat-x;
    -webkit-mask: linear-gradient(#000 0 0) bottom/3px 3px repeat-x;
    opacity: .95;
  }
  .iphone-wifi{
    width: 16px;
    height: 10px;
    border: 2px solid transparent;
    border-top-color: #fff;
    border-radius: 50%;
    position: relative;
  }
  .iphone-wifi::after{
    content:"";
    position:absolute;
    left: 50%;
    top: 4px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #fff;
    transform: translateX(-50%);
  }
  .iphone-battery{
    width: 22px;
    height: 10px;
    border: 1px solid rgba(255,255,255,.9);
    border-radius: 3px;
    position: relative;
  }
  .iphone-battery::after{
    content:"";
    position:absolute;
    right: -3px;
    top: 2px;
    width: 2px;
    height: 6px;
    border-radius: 1px;
    background: rgba(255,255,255,.9);
  }
  .iphone-battery span{
    display:block;
    height: 100%;
    width: 70%;
    background: #fff;
    border-radius: 2px;
  }
  .iphone-screen{
    position:absolute;
    inset: 0;
    border-radius: 24px;
    overflow: hidden;
    z-index: 1;
  }
  .iphone-lock{
    position:absolute;
    inset: 0;
    color: #fff;
    display:flex;
    align-items:flex-start;
    justify-content:center;
    transition: transform .55s ease, opacity .55s ease;
  }
  .iphone-wallpaper{
    position:absolute;
    inset: 0;
    background-image: url("./assets/Grad.jpeg");
    background-size: cover;
    background-position: center;
    filter: saturate(1.05);
  }
  .iphone-wallpaper::after{
    content:"";
    position:absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,.25) 0%, rgba(0,0,0,.45) 60%, rgba(0,0,0,.7) 100%);
  }
  .iphone-time{
    position: absolute;
    top: 68px;
    left: 50%;
    z-index: 1;
    text-align:center;
    text-shadow: 0 4px 18px rgba(0,0,0,.45);
    transform: translateX(-50%);
  }
  .iphone-date{
    font-size: 0.8rem;
    letter-spacing: .6px;
    text-transform: uppercase;
    margin-bottom: 4px;
  }
  .iphone-clock{
    font-size: clamp(24px, 3.2vw, 38px);
    font-weight: 700;
    line-height: 1;
  }
  .iphone-hint{
    position:absolute;
    bottom: 16px;
    width: 100%;
    text-align:center;
    font-size: 0.75rem;
    letter-spacing: .4px;
    opacity: .85;
    z-index: 1;
    background: transparent;
    border: 0;
    color: #fff;
    cursor: pointer;
  }
  .iphone-photos{
    position:absolute;
    inset: 0;
    background: #fff;
    opacity: 0;
    pointer-events: none;
    transition: opacity .35s ease;
    display: flex;
    flex-direction: column;
  }
  .iphone-photos__header{
    height: 60px;
    display:flex;
    align-items:center;
    gap: 8px;
    padding: 18px 16px 0;
    font-weight: 700;
    color: #111;
    font-size: 0.95rem;
  }
  .iphone-photos__grid{
    display:flex;
    gap: 12px;
    padding: 8px 12px 12px;
    flex: 1;
    height: auto;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }
  .iphone-photos__grid img,
  .iphone-photos__grid video{
    flex: 0 0 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 10px;
    scroll-snap-align: center;
  }
  .iphone-photos__grid video{
    aspect-ratio: 16 / 9;
    height: auto;
    object-fit: cover;
    background: #000;
    cursor: pointer;
  }
  [data-theme="dark"] .iphone-mockup{
    background: #0a0a0a;
    border: 1px solid rgba(255,255,255,.12);
    box-shadow: 0 24px 50px rgba(0,0,0,.45);
  }
  [data-theme="dark"] .iphone-status{
    color: #fff;
  }
  [data-theme="dark"] .iphone-photos{
    background: #0f172a;
  }
  [data-theme="dark"] .iphone-photos__header{
    color: #fff;
  }
  [data-theme="dark"] .iphone-photos__grid video{
    background: #000;
  }
  .iphone-mockup.is-unlocked .iphone-lock{
    transform: translateY(-100%);
    opacity: 0;
  }
  .iphone-mockup.is-unlocked .iphone-photos{
    opacity: 1;
    pointer-events: auto;
  }
  [data-theme="dark"] .section--skills-dark{
    background: #0b0f19;
    color: #fff;
  }
  [data-theme="dark"] .section--skills-dark .section__head h2{
    color: #fff;
  }
  [data-theme="dark"] .section--skills-dark .skill-icon{
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.12);
  }
  [data-theme="dark"] .section--skills-dark .skill-icon__label{
    color: rgba(255,255,255,.7);
  }
  .skills-bento .skill-icon:nth-child(7n+1){
    grid-column: span 2;
    grid-row: span 2;
  }
  .skills-bento .skill-icon:nth-child(9n+4){
    grid-column: span 2;
  }

  .skills-container{
    display:grid;
    gap: 12px;
  }
  .certs-head{
    display:flex;
    align-items:baseline;
    justify-content:space-between;
    gap: 12px;
    margin-bottom: 10px;
  }
  .certs-head p{
    margin: 0;
    color: var(--muted);
    font-size: 14px;
  }
  .certs-marquee{
    position: relative;
    overflow: hidden;
    border-radius: 14px;
    border: 1px solid var(--border);
    background: var(--panel2);
    padding: 12px;
  }
  .certs-marquee--brands{
    background: transparent;
    border: none;
    padding: 8px 0;
  }
  .certs-marquee--brands .certs-track{
    gap: 26px;
  }
  .brand-chip{
    width: 72px;
    height: 72px;
    display:grid;
    place-items:center;
    border-radius: 20px;
    background: var(--panel);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
  }
  .brand-chip i{ font-size: 30px; }
  .brand-shadow{
    position:absolute;
    top: 0;
    width: 80px;
    height: 100%;
    pointer-events:none;
  }
  .brand-shadow--left{
    left: 0;
    background: linear-gradient(90deg, var(--panel), transparent);
  }
  .brand-shadow--right{
    right: 0;
    background: linear-gradient(270deg, var(--panel), transparent);
  }
  .certs-track{
    display:flex;
    gap: 14px;
    width: max-content;
    animation: certs-scroll 18s linear infinite;
  }
  .certs-group{
    display:flex;
    gap: 14px;
  }
  .certs-marquee .skill-card{
    min-width: 110px;
    height: 64px;
    padding: 8px 14px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.02);
  }
  .skill-card{
    display:flex;
    align-items:center;
    justify-content:center;
    padding: 12px;
    border-radius: 14px;
    border: 1px solid var(--border);
    background: var(--panel2);
  }
  .skill-card i{
    font-size: 26px;
  }
  @keyframes certs-scroll{
    from{ transform: translateX(0); }
    to{ transform: translateX(-50%); }
  }
  @keyframes about-underline{
    0%{ background-position: 0% 50%; }
    50%{ background-position: 100% 50%; }
    100%{ background-position: 0% 50%; }
  }
  @keyframes about-pulse{
    0%, 100%{ transform: scale(1); opacity: .9; }
    50%{ transform: scale(1.2); opacity: .55; }
  }
  
  .skills-grid{
    display:grid; gap: 14px;
    grid-template-columns: 1fr;
  }
  .skill-group__head{ display:flex; justify-content:space-between; gap: 10px; margin-bottom: 8px; }
  .skill-group__head strong{ font-size: 16px; }
  .skill-group__head span{ color: var(--muted); font-size: 13px; }
  
  .toolbar{
    display:grid; gap: 12px;
    grid-template-columns: 1fr;
    margin-bottom: 14px;
  }
  .search input{
    width: 100%;
    padding: 12px 12px;
    border-radius: 14px;
    border: 1px solid var(--border);
    background: var(--panel);
    color: var(--text);
  }
  .search input:focus{ outline: 2px solid var(--focus); outline-offset: 2px; }
  
  .filters{ display:flex; gap: 10px; flex-wrap:wrap; }
  .filter{
    padding: 8px 10px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: transparent;
    color: var(--muted);
    cursor:pointer;
  }
  .filter[aria-pressed="true"]{
    background: #DBEAFE;
    border-color: #BFDBFE;
    color: #1D4ED8;
  }
  
  .cards{
    display:grid; gap: 14px;
    grid-template-columns: 1fr;
  }
  .project-card{
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background: var(--panel);
    box-shadow: var(--shadow);
    padding: 16px;
    display:grid; gap: 10px;
  }
  .project-card__top{ display:flex; justify-content:space-between; gap: 12px; align-items:flex-start; }
  .project-card h3{ margin:0; }
  .project-card p{ margin:0; color: var(--muted); }
  .project-card__tags{ display:flex; gap: 10px; flex-wrap:wrap; }
  .project-card__actions{ display:flex; gap: 10px; flex-wrap:wrap; }
  
  .timeline{ list-style:none; padding:0; margin:0; display:grid; gap: 14px; }
  .timeline-item{
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background: var(--panel);
    box-shadow: var(--shadow);
    padding: 16px;
  }
  .timeline-item__head{
    display:flex; justify-content:space-between; gap: 10px; flex-wrap:wrap;
  }
  .timeline-item__head strong{ font-size: 16px; }
  .timeline-item__head span{ color: var(--muted); }
  .timeline-item ul{ margin: 10px 0 0; color: var(--muted); padding-left: 18px; }
  
  .contact-list{ display:grid; gap: 10px; }
  .contact-link{
    display:flex; justify-content:space-between; gap: 10px;
    padding: 10px 12px;
    border-radius: 14px;
    border: 1px solid var(--border);
    background: var(--panel2);
  }
  .contact-link__label{
    display:inline-flex;
    align-items:center;
    gap: 8px;
  }
  .contact-link__label i{
    width: 18px;
    text-align:center;
    color: var(--muted);
  }
  .contact-link span:last-child{ color: var(--muted); }
  
  .field{ display:grid; gap: 8px; margin-bottom: 12px; }
  .field label{ color: var(--muted); font-size: 13px; }
  .field input, .field textarea, .field select{
    padding: 12px;
    border-radius: 14px;
    border: 1px solid var(--border);
    background: var(--panel);
    color: var(--text);
  }
  .field input:focus, .field textarea:focus, .field select:focus{
    outline: 2px solid var(--focus);
    outline-offset: 2px;
  }
  .actions{ display:flex; gap: 10px; flex-wrap:wrap; }
  
  .footer{ padding: 28px 0 36px; border-top: 1px solid var(--border); }
  .footer__inner{ display:flex; justify-content:space-between; gap: 12px; flex-wrap:wrap; }

  .back-to-top{
    position: fixed;
    right: 18px;
    bottom: 18px;
    width: 54px;
    height: 54px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: var(--panel);
    color: var(--text);
    display:grid;
    place-items:center;
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(8px);
    transition: opacity .2s ease, transform .2s ease;
    z-index: 30;
  }
  .back-to-top i{ font-size: 18px; }
  .back-to-top.is-visible{
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  .back-to-top:hover{
    transform: translateY(-2px);
  }
  
  .modal{
    position: fixed; inset: 0;
    display:none;
    align-items:center; justify-content:center;
    padding: 18px;
    z-index: 100;
  }
  .modal[aria-hidden="false"]{ display:flex; }
  .modal__backdrop{
    position:absolute; inset:0;
    background: rgba(0,0,0,.55);
  }
  .modal__dialog{
    position:relative;
    width: min(760px, 100%);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background: var(--bg);
    box-shadow: var(--shadow);
    overflow:hidden;
  }
  .modal__head{
    display:flex; justify-content:space-between; align-items:center;
    padding: 14px 14px;
    border-bottom: 1px solid var(--border);
    background: var(--panel);
  }
  .modal__body{ padding: 14px; color: var(--muted); }
  .modal__foot{
    padding: 14px;
    border-top: 1px solid var(--border);
    display:flex; gap: 10px; flex-wrap:wrap;
    background: var(--panel);
  }
  .sr-only{
    position:absolute; width:1px; height:1px; padding:0; margin:-1px;
    overflow:hidden; clip: rect(0,0,0,0); white-space:nowrap; border:0;
  }
  
  .reveal{
    opacity:0;
    transform: translateY(14px) scale(.98);
    filter: blur(2px);
    transition: opacity .7s cubic-bezier(.16,1,.3,1),
                transform .7s cubic-bezier(.16,1,.3,1),
                filter .7s cubic-bezier(.16,1,.3,1),
                box-shadow .7s cubic-bezier(.16,1,.3,1);
    will-change: opacity, transform, filter;
  }
  .reveal.is-visible{
    opacity:1;
    transform: translateY(0) scale(1);
    filter: blur(0);
    box-shadow: 0 10px 30px rgba(0,0,0,.18);
  }
  @media (prefers-reduced-motion: reduce){
    html{ scroll-behavior:auto; }
    .reveal{ transition:none; transform:none; filter:none; }
    .btn:hover{ transform:none; }
    .certs-track{ animation: none; }
    .section__head--about h2::after,
    .section__head--about h2::before{ animation: none; }
  }
  
@media (min-width: 880px){
    .nav{ display:flex; }
    .nav-toggle{ display:none; }
    .mobile-nav{ display:none; }
    .hero__inner{ grid-template-columns: 1.15fr .85fr; }
    .hero--showcase .hero__inner{ grid-template-columns: 1.2fr .8fr; }
    .grid-2{ grid-template-columns: 1fr 1fr; }
    .skills-container{ grid-template-columns: 1fr 1fr; }
    .skills-columns{ grid-template-columns: repeat(7, minmax(120px,1fr)); }
    .skills-bento{ grid-template-columns: repeat(5, minmax(0,1fr)); }
    .skills-edu{ grid-template-columns: 1.15fr .95fr; align-items:start; }
    .toolbar{ grid-template-columns: 1.2fr 2fr auto; align-items:center; }
    .cards{ grid-template-columns: repeat(2, minmax(0,1fr)); }
    .projects-folder__head{
      flex-direction: row;
      align-items: center;
      justify-content: space-between;
    }
  }
  @media (min-width: 640px){
    .skills-bento{
      grid-template-columns: repeat(4, minmax(0,1fr));
      grid-auto-rows: 96px;
    }
  }
  @media (max-width: 639px){
    .skills-bento{
      grid-template-columns: repeat(2, minmax(0,1fr));
      grid-auto-rows: 100px;
    }
    .skills-bento .skill-icon:nth-child(7n+1){
      grid-column: span 2;
      grid-row: span 1;
    }
  }
  @media (max-width: 600px){
    .topbar__inner{
      flex-direction: row;
      align-items: center;
      justify-content: space-between;
    }
    .brand{
      min-width: 0;
      flex: 1 1 auto;
      margin-left: 6px;
    }
    .brand__name{
      font-size: 14px;
    }
    .brand__role{
      font-size: 12px;
    }
    .topbar__actions{
      width: auto;
      justify-content: flex-end;
      flex-wrap: nowrap;
    }
    #themeToggle{
      display: none;
    }
    .nav-toggle{
      width: 48px;
      height: 48px;
      border-radius: 0;
      background: transparent;
      border: 1px solid var(--border);
      box-shadow: none;
      color: var(--text);
      margin-right: 12px;
    }
    .nav-toggle__bar{
      width: 20px;
      height: 2px;
      background: #ffffff;
    }
    .mobile-nav{
      position: static;
      width: 100%;
      background: #ffffff;
      border-top: 1px solid var(--border);
      border-radius: 0;
      padding: 0;
      box-shadow: none;
      z-index: 60;
    }
    [data-theme="dark"] .mobile-nav{
      background: #0e1624;
      border-color: rgba(255,255,255,.12);
    }
    .mobile-nav__actions{
      padding: 0;
      border-bottom: 1px solid var(--border);
    }
    .mobile-nav__theme{
      width: 100%;
      justify-content: flex-start;
      padding: 16px 18px;
      border-radius: 0;
      border: 0;
      background: transparent;
      font-size: 16px;
    }
    .mobile-nav__link{
      padding: 18px;
      border-bottom: 1px solid var(--border);
      font-size: 16px;
    }
    .mobile-nav__link:last-child{
      border-bottom: 0;
    }
    .topbar__actions .btn{
      padding: 8px 10px;
      font-size: 12px;
    }
    .hero{
      padding: 64px 0 48px;
    }
    .hero__title{
      font-size: clamp(28px, 7vw, 38px);
    }
    .hero__subtitle{
      font-size: 14px;
    }
    .hero__tag{
      font-size: 12px;
    }
    .hero__portrait{
      height: 220px;
    }
    .hero__card{
      padding: 14px;
    }
    .education-pane .card{
      padding: 14px;
    }
    .education-pane .card h3{
      font-size: 18px;
    }
    .education-pane .card p{
      font-size: 14px;
    }
    .education-photo{
      min-height: 200px;
      padding: 6px;
    }
    .iphone-mockup{
      max-width: 360px;
      width: 100%;
      margin: 0 auto;
      min-height: 420px;
    }
    .iphone-photos__grid{
      padding: 8px;
      gap: 10px;
      align-items: center;
    }
    .iphone-photos__grid img,
    .iphone-photos__grid video{
      height: auto;
      max-height: 100%;
    }
    .iphone-photos__grid img{
      aspect-ratio: 3 / 4;
      object-position: center top;
    }
    .iphone-photos__grid video{
      aspect-ratio: 16 / 9;
      object-fit: contain;
      background: #000;
    }
    .iphone-island{
      top: 8px;
      width: 72px;
      height: 20px;
    }
    .iphone-status{
      top: 8px;
      font-size: 0.66rem;
    }
    .iphone-photos__header{
      padding-top: 28px;
    }
  }
  @media (max-width: 480px){
    .education-photo{
      background: transparent;
      border: none;
      box-shadow: none;
      padding: 0;
    }
    .iphone-mockup{
      min-height: 400px;
      max-width: 360px;
      width: 100%;
    }
  }
  @media (min-width: 1080px){
    .cards{ grid-template-columns: repeat(3, minmax(0,1fr)); }
  }
  
