    :root {
      --accent: #a8e832;
      --accent2: #F56D43;
      --accent3: #dc2626;
      --font-head: 'Bebas Neue', sans-serif;
      --font-body: 'Outfit', sans-serif;
      --font-italic: 'Jost', sans-serif;
      --radius: 16px;
      --radius-lg: 28px;
    }

    [data-theme="dark"] {
      --bg: #0a0a0f;
      --bg2: #0f0f18;
      --bg3: #13131f;
      --card: #13131f;
      --card2: #1a1a2e;
      --text: #f0eee8;
      --text-strong: #ffffff;
      --muted: #888;
      --muted2: #555;
      --border: rgba(255, 255, 255, 0.07);
      --shadow: rgba(0, 0, 0, 0.4);
      --input-bg: rgba(255, 255, 255, 0.04);
      --dim: #44445a;
    }

    [data-theme="light"] {
      --bg: #f1f5f9;
      --bg2: #ffffff;
      --bg3: #e2e8f0;
      --card: #ffffff;
      --card2: #f8fafc;
      --text: #0f172a;
      --text-strong: #020617;
      --muted: #64748b;
      --muted2: #94a3b8;
      --border: rgba(15,23,42,0.11);
      --shadow: rgba(15,23,42,0.09);
      --input-bg: rgba(15,23,42,0.04);
      --dim: #64748b;
    }

    *, *::before, *::after {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    html { scroll-behavior: smooth; }
    body {
      background: var(--bg);
      color: var(--text);
      font-family: var(--font-body);
      line-height: 1.65;
      overflow-x: hidden;
      transition: background .4s, color .4s;
      width: 100%;
    }
    a {
      text-decoration: none;
      color: inherit;
    }
    ul {
      list-style: none;
    }
    img {
      max-width: 100%;
      display: block;
    }

    .wrap { width: min(1200px, 92%); margin: auto; }
    .section { padding: 50px 0; }

    /* -- BUTTONS -- */
    .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--accent);
      color: #0a0a0f !important;
      padding: 13px 28px;
      border-radius: 999px;
      font-weight: 700;
      font-size: .88rem;
      transition: all .3s;
      font-family: var(--font-body);
    }
    .btn-primary:hover {
      background: #bef54a;
      transform: translateY(-3px);
      box-shadow: 0 10px 32px rgba(168,232,50,.4);
    }
    .btn-ghost {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      border: 1px solid var(--border);
      color: var(--muted);
      padding: 13px 28px;
      border-radius: 999px;
      font-weight: 500;
      font-size: .88rem;
      transition: all .3s;
      font-family: var(--font-body);
    }
    .btn-ghost:hover {
      border-color: var(--muted);
      color: var(--text);
    }

    /* -- SCROLL REVEAL -- */
    .sr {
      opacity: 0;
      transform: translateY(36px);
      transition: opacity .75s cubic-bezier(.22,1,.36,1), transform .75s cubic-bezier(.22,1,.36,1);
    }
    .sr.visible {
      opacity: 1;
      transform: none;
    }
    .sr-l {
      opacity: 0;
      transform: translateX(-44px);
      transition: opacity .75s cubic-bezier(.22,1,.36,1), transform .75s cubic-bezier(.22,1,.36,1);
    }
    .sr-l.visible {
      opacity: 1;
      transform: none;
    }
    .sr-r {
      opacity: 0;
      transform: translateX(44px);
      transition: opacity .75s cubic-bezier(.22,1,.36,1), transform .75s cubic-bezier(.22,1,.36,1);
    }
    .sr-r.visible {
      opacity: 1;
      transform: none;
    }

    /* -- KEYFRAMES -- */
    @keyframes floatY {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-14px); }
    }
    @keyframes rotateSlowCW {
      from { transform: rotate(0); }
      to { transform: rotate(360deg); }
    }
    @keyframes rotateSlowCCW {
      from { transform: rotate(0); }
      to { transform: rotate(-360deg); }
    }
    @keyframes marqueeScroll {
      from { transform: translateX(0); }
      to { transform: translateX(var(--tw,-50%)); }
    }
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(30px); }
      to { opacity: 1; transform: translateY(0); }
    }
    @keyframes dotBlink {
      0%, 100% { opacity: 1; }
      50% { opacity: .2; }
    }
    @keyframes cardReveal {
      from { opacity: 0; transform: translateY(40px) scale(.97); }
      to { opacity: 1; transform: translateY(0) scale(1); }
    }
    @keyframes pulseDot {
      0% { box-shadow: 0 0 0 0 rgba(168,232,50,.6); }
      70% { box-shadow: 0 0 0 10px rgba(168,232,50,0); }
      100% { box-shadow: 0 0 0 0 rgba(168,232,50,0); }
    }
    @keyframes borderPulse {
      0%, 100% { border-color: rgba(168,232,50,.15); }
      50% { border-color: rgba(168,232,50,.5); }
    }

    /* -- SECTION SHARED -- */
    .port-section {
      padding: 60px 5%;
      position: relative;
      overflow: hidden;
    }
    .port-section.alt { background: var(--bg2); }

    .sec-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: .72rem;
      font-weight: 700;
      letter-spacing: .22em;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 12px;
    }
    .sec-eyebrow .dot {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--accent);
      animation: dotBlink 1.8s infinite;
    }
    .sec-heading {
      font-family: var(--font-head);
      font-size: clamp(2.2rem, 5vw, 4.2rem);
      line-height: .92;
      letter-spacing: .02em;
      color: var(--text);
      margin-bottom: 12px;
    }
    .sec-heading em {
      font-style: normal;
      font-family: 'Outfit', sans-serif;
      font-weight: 700;
      text-transform: uppercase;
      color: var(--accent2);
    }
    .sec-sub {
      font-size: clamp(.86rem, 1.4vw, .98rem);
      color: var(--muted);
      max-width: 500px;
      line-height: 1.7;
      font-weight: 300;
      margin-bottom: 32px;
    }
    .sec-header-row {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      gap: 20px;
      flex-wrap: wrap;
      margin-bottom: 36px;
    }
    .sec-header-row .sec-sub { margin-bottom: 0; }

    /* -- HERO -- */
    #port-hero {
      padding: 190px 5% 80px;
      min-height: 85vh;
      display: flex;
      align-items: center;
      background: var(--bg);
      position: relative;
      overflow: hidden;
    }
    /* No grid lines� removed */
    #port-hero .hero-bg {
      position: absolute;
      inset: 0;
      pointer-events: none;
      z-index: 0;
    }
    #port-hero .hero-bg .orb1 {
      position: absolute;
      width: 600px;
      height: 600px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(168,232,50,.07) 0%, transparent 70%);
      top: -200px;
      right: -100px;
      animation: floatY 9s ease-in-out infinite;
    }
    #port-hero .hero-bg .orb2 {
      position: absolute;
      width: 400px;
      height: 400px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(168,232,50,.04) 0%, transparent 70%);
      bottom: -100px;
      left: 10%;
      animation: floatY 12s ease-in-out infinite reverse;
    }

    .hero-layout {
      position: relative;
      z-index: 1;
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 60px;
    }

    .hero-img-box {
      flex: 0 0 420px;
      height: 480px;
      border-radius: 20px;
      overflow: hidden;
      border: 1px solid rgba(255,255,255,0.08);
      margin-left: auto;
    }

    .hero-img-box img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      display: block;
    }

    .hero-inner {
      position: relative;
      z-index: 1;
      flex: 1;
      max-width: 600px;
    }
    .hero-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-size: .72rem;
      font-weight: 700;
      letter-spacing: .24em;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 20px;
      animation: fadeUp .8s cubic-bezier(.22,1,.36,1) .1s both;
    }
    .hero-eyebrow .pulse-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--accent);
      animation: pulseDot 2s infinite;
    }
    .hero-heading {
      font-family: var(--font-head);
      font-size: clamp(2rem, 8vw, 7.5rem);
      line-height: .88;
      letter-spacing: .01em;
      color: var(--text);
      margin-bottom: 22px;
      animation: fadeUp .9s cubic-bezier(.22,1,.36,1) .2s both;
    }
    .hero-heading .line1 { display: block; }
    .hero-heading .line2 {
      display: block;
      font-style: normal;
      font-weight: 700;
      text-transform: uppercase;
      color: var(--accent2);
    }
    .hero-sub-text {
      font-size: clamp(.9rem, 1.6vw, 1.1rem);
      color: var(--muted);
      max-width: 540px;
      line-height: 1.75;
      font-weight: 300;
      margin-bottom: 32px;
      animation: fadeUp .9s cubic-bezier(.22,1,.36,1) .35s both;
    }
    .hero-stats {
      display: flex;
      gap: 36px;
      flex-wrap: wrap;
      margin-bottom: 36px;
      animation: fadeUp .9s cubic-bezier(.22,1,.36,1) .45s both;
    }
    .stat-item {
      display: flex;
      flex-direction: column;
      gap: 3px;
    }
    .stat-num {
      font-family: var(--font-head);
      font-size: 2.6rem;
      color: var(--accent);
      line-height: 1;
    }
    .stat-label {
      font-size: .68rem;
      color: var(--dim);
      text-transform: uppercase;
      letter-spacing: .12em;
      font-weight: 600;
    }
    .stat-divider {
      width: 1px;
      background: var(--border);
      align-self: stretch;
    }
    .hero-btns {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
      animation: fadeUp .9s cubic-bezier(.22,1,.36,1) .55s both;
    }

    /* -- MARQUEE -- */
    .marquee-strip {
      background: var(--accent2);
      overflow: hidden;
      padding: 16px 0;
    }

    /* -- WORKS SECTION -- */
    #port-works { background: var(--bg); }

    .filter-bar {
      display: flex;
      justify-content: flex-start;
      gap: 0;
      margin-bottom: 40px;
      overflow-x: auto;
      scrollbar-width: none;
      -webkit-overflow-scrolling: touch;
      border-bottom: 2px solid var(--border);
    }
    .filter-bar::before,
    .filter-bar::after {
      content: '';
      margin: auto;
    }
    .filter-bar::-webkit-scrollbar {
      display: none;
    }
    .filter-btn {
      flex-shrink: 0;
      padding: 10px 16px;
      font-family: var(--font-head);
      font-size: 1.1rem;
      letter-spacing: 1px;
      color: var(--muted2);
      background: none;
      border: none;
      cursor: pointer;
      border-bottom: 3px solid transparent;
      margin-bottom: -2px;
      transition: all .3s;
      position: relative;
    }
    .filter-btn span {
      position: relative;
      z-index: 1;
    }
    .filter-btn:hover {
      color: var(--text);
    }
    .filter-btn.active {
      color: var(--accent);
      border-bottom-color: var(--accent);
      font-weight: 700;
    }

    .works-grid {
      display: grid;
      grid-template-columns: repeat(12, 1fr);
      gap: 16px;
    }
    .wcard { grid-column: span 4; }
    .wcard.feat { grid-column: span 8; }
    .wcard.half { grid-column: span 6; }

    .work-card {
      border-radius: 14px;
      overflow: hidden;
      background: var(--card);
      border: 1px solid var(--border);
      position: relative;
      cursor: pointer;
      transition: transform .4s cubic-bezier(.22,1,.36,1), box-shadow .4s, border-color .4s;
      animation: cardReveal .7s cubic-bezier(.22,1,.36,1) both;
    }
    .work-card:hover {
      transform: translateY(-6px) scale(1.01);
      box-shadow: 0 24px 50px rgba(0,0,0,.5), 0 0 0 1px rgba(168,232,50,.18);
      border-color: rgba(168,232,50,.25);
    }
    [data-theme="light"] .work-card:hover { box-shadow: 0 24px 50px rgba(0,0,0,.15), 0 0 0 1px rgba(168,232,50,.3); }

    .work-img {
      width: 100%;
      display: block;
      overflow: hidden;
      position: relative;
    }
    .wcard.feat .work-img { aspect-ratio: 16/8; }
    .wcard .work-img { aspect-ratio: 4/3; }
    .wcard.half .work-img { aspect-ratio: 16/8; }

    .work-img-inner {
      width: 100%;
      height: 100%;
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: transform .6s cubic-bezier(.22,1,.36,1);
    }
    .work-card:hover .work-img-inner { transform: scale(1.05); }

    .bg-a { background: linear-gradient(135deg, #0f1f0f 0%, #1a3a1a 50%, #0d1f0a 100%); }
    .bg-b { background: linear-gradient(135deg, #0f0f1f 0%, #1a1a3a 50%, #0d0a1f 100%); }
    .bg-c { background: linear-gradient(135deg, #1f0f0f 0%, #3a1a1a 50%, #1f0d0a 100%); }
    .bg-d { background: linear-gradient(135deg, #1f1f0f 0%, #3a3a1a 50%, #1f1f0a 100%); }
    .bg-e { background: linear-gradient(135deg, #0f1f1f 0%, #1a3a3a 50%, #0a1f1f 100%); }
    .bg-f { background: linear-gradient(135deg, #1a0f1f 0%, #2d1a3a 50%, #1a0a2a 100%); }
    .bg-g { background: linear-gradient(135deg, #1f150a 0%, #3a2a10 50%, #2a1a0a 100%); }
    .bg-h { background: linear-gradient(135deg, #0a1520 0%, #102030 50%, #0a1828 100%); }

    .img-icon {
      font-size: 2.6rem;
      color: rgba(255,255,255,.12);
      position: relative;
      z-index: 1;
    }
    .wcard.feat .img-icon { font-size: 4rem; }

    .work-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to bottom, transparent 40%, rgba(10,10,15,.95) 100%);
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 18px 20px;
      opacity: 0;
      transition: opacity .35s;
    }
    .work-card:hover .work-overlay { opacity: 1; }
    .overlay-tag {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: var(--accent);
      color: #0a0a0f;
      border-radius: 999px;
      padding: 4px 12px;
      font-size: .68rem;
      font-weight: 700;
      letter-spacing: .08em;
      text-transform: uppercase;
      margin-bottom: 7px;
      width: fit-content;
    }
    .overlay-title {
      font-size: .9rem;
      font-weight: 700;
      color: #fff;
      margin-bottom: 5px;
      line-height: 1.3;
    }
    .overlay-cta {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: .76rem;
      color: var(--accent);
      font-weight: 600;
    }

    .work-body { padding: 14px 16px 16px; }
    .work-year {
      font-size: .66rem;
      color: var(--accent);
      font-weight: 700;
      letter-spacing: .12em;
      text-transform: uppercase;
      margin-bottom: 4px;
    }
    .work-title {
      font-size: .88rem;
      font-weight: 600;
      color: var(--text);
      line-height: 1.35;
      margin-bottom: 6px;
    }
    .work-desc {
      font-size: .74rem;
      color: var(--muted);
      line-height: 1.6;
      margin-bottom: 10px;
    }
    .work-tags {
      display: flex;
      gap: 5px;
      flex-wrap: wrap;
    }
    .wtag {
      padding: 2px 9px;
      border-radius: 999px;
      background: rgba(168,232,50,.07);
      border: 1px solid rgba(168,232,50,.15);
      color: var(--accent);
      font-size: .65rem;
      font-weight: 700;
      letter-spacing: .06em;
    }
    [data-theme="light"] .wtag {
      background: rgba(100,150,10,.08);
      border-color: rgba(100,150,10,.2);
      color: #4a7a00;
    }

    .work-badge {
      position: absolute;
      top: 12px;
      right: 12px;
      width: 32px;
      height: 32px;
      border-radius: 50%;
      background: rgba(168,232,50,.9);
      color: #0a0a0f;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: .85rem;
      opacity: 0;
      transform: scale(.6) rotate(-45deg);
      transition: all .35s cubic-bezier(.22,1,.36,1);
    }
    .work-card:hover .work-badge {
      opacity: 1;
      transform: scale(1) rotate(0deg);
    }

    .year-marker {
      position: absolute;
      top: 14px;
      left: 14px;
      background: rgba(10,10,15,.8);
      border: 1px solid var(--accent);
      border-radius: 999px;
      padding: 3px 10px;
      font-size: .65rem;
      font-weight: 700;
      color: var(--accent);
      letter-spacing: .1em;
      backdrop-filter: blur(10px);
      z-index: 2;
    }

    /* -- DUMMY LINKS ROW -- */
    .works-dummy-links {
      display: flex;
      align-items: center;
      gap: 8px;
      flex-wrap: wrap;
      margin-bottom: 28px;
      padding: 14px 18px;
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 12px;
    }
    .dummy-link-label {
      font-size: .68rem;
      font-weight: 700;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: var(--dim);
      margin-right: 4px;
      flex-shrink: 0;
    }
    .dummy-link {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      padding: 5px 13px;
      border-radius: 999px;
      border: 1px solid var(--border);
      color: var(--muted);
      font-size: .74rem;
      font-weight: 500;
      transition: all .22s;
      white-space: nowrap;
    }
    .dummy-link:hover {
      border-color: var(--accent);
      color: var(--accent);
      background: rgba(168,232,50,.05);
    }
    .dummy-link i { font-size: .8rem; }

    /* -- FOUNDERS SECTION � compact redesign -- */
    #port-founders { background: var(--bg2); }

    .founder-block { margin-bottom: 64px; }
    .founder-block:last-child { margin-bottom: 0; }

    /* Compact horizontal layout */
    .founder-row {
      display: flex;
      gap: 32px;
      align-items: flex-start;
      margin-bottom: 32px;
    }
    .founder-row.reverse { flex-direction: row-reverse; }

    .founder-portrait-sm {
      flex-shrink: 0;
      width: 110px;
      height: 140px;
      border-radius: 14px;
      overflow: hidden;
      border: 1px solid var(--border);
      background: var(--card);
      display: flex;
      align-items: center;
      justify-content: space-between;
      position: relative;
      transition: border-color .3s;
    }
    .founder-portrait-sm:hover { border-color: rgba(168,232,50,.4); }
    .founder-portrait-sm::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse at bottom, rgba(168,232,50,.08) 0%, transparent 65%);
    }
    .founder-portrait-sm i {
      font-size: 2.8rem;
      color: var(--dim);
      position: relative;
      z-index: 1;
    }

    .founder-info-compact {
      flex: 1;
      min-width: 0;
    }

    .founder-header {
      display: flex;
      align-items: flex-start;
      gap: 20px;
      flex-wrap: wrap;
      margin-bottom: 10px;
    }
    .founder-name-sm {
      font-family: var(--font-head);
      font-size: clamp(1.8rem, 3.5vw, 2.8rem);
      line-height: .95;
      color: var(--text);
      flex-shrink: 0;
    }
    .founder-badge-sm {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: rgba(168,232,50,.08);
      border: 1px solid rgba(168,232,50,.2);
      border-radius: 999px;
      padding: 5px 14px;
      font-size: .68rem;
      color: var(--accent);
      font-weight: 700;
      letter-spacing: .1em;
      text-transform: uppercase;
      align-self: center;
    }
    .founder-role-sm {
      font-size: .74rem;
      color: var(--accent);
      font-weight: 700;
      letter-spacing: .12em;
      text-transform: uppercase;
      margin-bottom: 8px;
    }
    .founder-bio-sm {
      font-size: .86rem;
      color: var(--muted);
      line-height: 1.72;
      margin-bottom: 14px;
      font-weight: 300;
    }
    .founder-meta-row {
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
      padding-top: 12px;
      border-top: 1px solid var(--border);
    }
    .founder-meta-item {
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: .74rem;
      color: var(--muted);
    }
    .founder-meta-item i {
      color: var(--accent);
      font-size: .9rem;
    }

    .founder-works-label {
      display: flex;
      align-items: center;
      gap: 14px;
      margin-bottom: 18px;
    }
    .founder-works-label span {
      font-size: .7rem;
      font-weight: 700;
      letter-spacing: .16em;
      text-transform: uppercase;
      color: var(--dim);
      white-space: nowrap;
    }
    .founder-works-label::after {
      content: '';
      flex: 1;
      height: 1px;
      background: linear-gradient(90deg, var(--border), transparent);
    }

    .founder-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 12px;
    }

    .f-card {
      border-radius: 12px;
      background: var(--card);
      border: 1px solid var(--border);
      overflow: hidden;
      cursor: pointer;
      transition: transform .35s cubic-bezier(.22,1,.36,1), border-color .35s, box-shadow .35s;
    }
    .f-card:hover {
      transform: translateY(-5px);
      border-color: rgba(168,232,50,.3);
      box-shadow: 0 14px 36px rgba(0,0,0,.35);
    }

    .f-img {
      aspect-ratio: 4/3;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
      font-size: 2rem;
      color: rgba(255,255,255,.1);
    }
    .f-img::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(to bottom, transparent 50%, rgba(0,0,0,.55));
    }

    .f-body { padding: 11px 13px 13px; }
    .f-year {
      font-size: .64rem;
      color: var(--accent);
      font-weight: 700;
      letter-spacing: .1em;
      text-transform: uppercase;
      margin-bottom: 3px;
    }
    .f-title {
      font-size: .82rem;
      font-weight: 600;
      color: var(--text);
      margin-bottom: 3px;
      line-height: 1.3;
    }
    .f-cat {
      font-size: .71rem;
      color: var(--muted);
    }

    .founder-divider {
      display: flex;
      align-items: center;
      gap: 16px;
      margin: 48px 0;
    }
    .founder-divider::before,
    .founder-divider::after {
      content: '';
      flex: 1;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--border), transparent);
    }
    .founder-divider-icon {
      width: 38px;
      height: 38px;
      border-radius: 50%;
      background: var(--card);
      border: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--accent);
      font-size: .9rem;
    }

    /* -- SOCIAL PROOF -- */
    #port-social { background: var(--bg); }
    .proof-intro {
      text-align: center;
      margin-bottom: 48px;
    }
    .proof-intro .sec-sub { margin: 0 auto; }
    .proof-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
    }

    .proof-panel {
      border-radius: 18px;
      background: var(--card);
      border: 1px solid var(--border);
      padding: 28px 26px;
      position: relative;
      overflow: hidden;
      transition: transform .4s cubic-bezier(.22,1,.36,1), border-color .4s, box-shadow .4s;
      animation: borderPulse 4s ease-in-out infinite;
    }
    .proof-panel:hover {
      transform: translateY(-6px);
      border-color: rgba(168,232,50,.3);
      box-shadow: 0 20px 50px rgba(0,0,0,.35);
      animation: none;
    }
    [data-theme="light"] .proof-panel:hover { box-shadow: 0 20px 50px rgba(0,0,0,.1); }
    .proof-panel::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse at top right, rgba(168,232,50,.04) 0%, transparent 60%);
      pointer-events: none;
    }

    .proof-header {
      display: flex;
      align-items: center;
      gap: 14px;
      margin-bottom: 20px;
    }
    .proof-icon-wrap {
      width: 48px;
      height: 48px;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.4rem;
      flex-shrink: 0;
    }
    .proof-icon-wrap.li {
      background: rgba(0,119,181,.12);
      color: #0a88cc;
    }
    .proof-icon-wrap.be {
      background: rgba(19,72,255,.12);
      color: #4466ff;
    }
    .proof-icon-wrap.go {
      background: rgba(234,67,53,.1);
      color: #ea4335;
    }
    .proof-platform {
      font-size: .67rem;
      color: var(--muted);
      letter-spacing: .14em;
      text-transform: uppercase;
      font-weight: 600;
      margin-bottom: 2px;
    }
    .proof-count {
      font-family: var(--font-head);
      font-size: 1.6rem;
      color: var(--text);
      line-height: 1;
    }
    .proof-divider {
      height: 1px;
      background: var(--border);
      margin: 0 0 18px;
    }

    .li-post {
      background: rgba(0,119,181,.05);
      border: 1px solid rgba(0,119,181,.1);
      border-radius: 10px;
      padding: 12px 14px;
      margin-bottom: 10px;
      transition: border-color .3s;
    }
    .li-post:hover { border-color: rgba(0,119,181,.25); }
    .li-post-text {
      font-size: .78rem;
      color: var(--muted);
      line-height: 1.6;
      margin-bottom: 8px;
    }
    .li-post-meta {
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: .7rem;
      color: var(--dim);
    }
    .li-post-meta span {
      display: flex;
      align-items: center;
      gap: 4px;
    }
    .li-post-meta i { font-size: .88rem; }

    .be-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 8px;
      margin-bottom: 14px;
    }
    .be-thumb {
      aspect-ratio: 4/3;
      border-radius: 9px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.3rem;
      color: rgba(255,255,255,.1);
      border: 1px solid var(--border);
      position: relative;
      overflow: hidden;
      cursor: pointer;
      transition: transform .3s, border-color .3s;
    }
    .be-thumb:hover {
      transform: scale(1.04);
      border-color: rgba(68,102,255,.3);
    }
    .be-thumb-overlay {
      position: absolute;
      inset: 0;
      background: rgba(19,72,255,.15);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      transition: opacity .3s;
    }
    .be-thumb:hover .be-thumb-overlay { opacity: 1; }
    .be-thumb-overlay i {
      font-size: 1.3rem;
      color: #fff;
    }

    .review-list {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }
    .review-item {
      padding: 12px 14px;
      border-radius: 10px;
      background: rgba(255,255,255,.02);
      border: 1px solid var(--border);
      transition: border-color .3s;
    }
    [data-theme="light"] .review-item { background: rgba(0,0,0,.02); }
    .review-item:hover { border-color: rgba(234,67,53,.2); }
    .review-stars {
      display: flex;
      gap: 3px;
      margin-bottom: 6px;
    }
    .review-stars i {
      font-size: .75rem;
      color: #fbbf24;
    }
    .review-text {
      font-size: .78rem;
      color: var(--muted);
      line-height: 1.6;
      margin-bottom: 5px;
      font-style: normal;
    }
    .review-author {
      font-size: .7rem;
      color: var(--dim);
      font-weight: 600;
    }

    .proof-cta {
      margin-top: 16px;
      display: inline-flex;
      align-items: center;
      gap: 7px;
      font-size: .78rem;
      font-weight: 700;
      color: var(--accent);
      letter-spacing: .05em;
      transition: gap .2s;
    }
    .proof-cta:hover { gap: 12px; }

    /* CTA Band */
    .cta-band {
      margin-top: 56px;
      border-radius: 20px;
      background: linear-gradient(135deg, rgba(168,232,50,.1) 0%, rgba(168,232,50,.03) 100%);
      border: 1px solid rgba(168,232,50,.2);
      padding: 48px 5%;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    [data-theme="light"] .cta-band { background: linear-gradient(135deg, rgba(120,190,20,.08) 0%, rgba(120,190,20,.02) 100%); }
    .cta-band::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse 60% 80% at 50% 0%, rgba(168,232,50,.08) 0%, transparent 60%);
      pointer-events: none;
    }
    .cta-band h2 {
      font-family: var(--font-head);
      font-size: clamp(2.2rem, 4.5vw, 3.8rem);
      line-height: 1;
      margin-bottom: 14px;
      color: var(--text);
    }
    .cta-band h2 em {
      font-style: normal;
      font-family: 'Outfit', sans-serif;
      font-weight: 700;
      text-transform: uppercase;
      color: var(--accent2);
    }
    .cta-band p {
      font-size: .95rem;
      color: var(--muted);
      max-width: 460px;
      margin: 0 auto 28px;
      line-height: 1.7;
      font-weight: 300;
    }
    .cta-band-btns {
      display: flex;
      gap: 12px;
      justify-content: center;
      flex-wrap: wrap;
    }

    /* -- FOOTER -- */
    .footer {
      background: #11222a !important;
      width: 100%;
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 1.6fr 0.75fr 0.85fr 0.75fr 0.85fr 1.15fr;
      gap: 28px;
      padding-top: 48px;
      padding-bottom: 36px;
    }
    .footer-brand p {
      font-size: .82rem;
      color: rgba(255,255,255,0.5);
      line-height: 1.65;
      margin: 16px 0 20px;
    }
    .footer-logo img { height: 70px; }
    .footer-socials {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
    }
    .footer-socials a {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      border: 1px solid rgba(255,255,255,0.12);
      display: flex;
      align-items: center;
      justify-content: center;
      color: rgba(255,255,255,0.55);
      font-size: .95rem;
      transition: color .2s, border-color .2s, background .2s;
    }
    .footer-socials a:hover {
      color: #0a0a0f;
      background: var(--accent2);
      border-color: var(--accent2);
    }
    .footer-head {
      font-size: .72rem;
      font-weight: 700;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      color: rgba(255,255,255,0.35);
      margin-bottom: 16px;
    }
    .footer-list {
      display: flex;
      flex-direction: column;
      gap: 6px;
    }
    .footer-list a {
      font-size: .82rem;
      color: rgba(255,255,255,0.58);
      display: flex;
      align-items: center;
      gap: 5px;
      transition: color .2s;
    }
    .footer-list a:hover { color: var(--accent2) !important; }
    .footer-list a i {
      color: #a8e832;
      font-size: 1rem;
      flex-shrink: 0;
    }
    .footer-contact {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }
    .footer-contact p {
      display: flex;
      align-items: flex-start;
      gap: 8px;
      font-size: .82rem;
      color: rgba(255,255,255,0.55);
      line-height: 1.55;
    }
    .footer-contact p i {
      color: #a8e832;
      font-size: 1rem;
      flex-shrink: 0;
      margin-top: 2px;
    }
    .footer-contact a {
      color: rgba(255,255,255,0.55);
    }
    .footer-contact a:hover {
      color: var(--accent2) !important;
    }
    .footer-cta {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: #a8e832;
      color: #0a0a0f !important;
      font-size: .82rem;
      font-weight: 700;
      letter-spacing: 1px;
      text-transform: uppercase;
      padding: 11px 20px;
      border-radius: 4px;
      margin-top: 10px;
      transition: opacity .2s;
    }
    .footer-cta:hover { opacity: .85; }
    .footer-bottom {
      background: #0c1a20 !important;
      border-top: 1px solid rgba(255,255,255,0.07) !important;
      padding: 18px 40px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .footer-bottom p,
    .footer-bottom p a {
      color: rgba(255,255,255,0.55) !important;
      font-size: .82rem;
    }
    .footer-bottom p a.cyber-link {
      color: #a8e832 !important;
      font-weight: 600;
      transition: color .2s;
    }
    .footer-bottom p a.cyber-link:hover { color: var(--accent2) !important; }
    .footer-bottom p a.flashlab-link {
      color: rgba(255,255,255,0.75) !important;
      font-weight: 600;
      transition: color .2s;
      text-decoration: none;
    }
    .footer-bottom p a.flashlab-link:hover { color: #a8e832 !important; }

    /* -- BACK TO TOP -- */
    .back-top {
      position: fixed;
      bottom: 72px;
      left: 30px;
      z-index: 9999;
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: #a8e832 !important;
      color: #0a0a0f !important;
      border: none;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.1rem;
      box-shadow: 0 4px 16px rgba(168,232,50,.35);
      opacity: 0;
      visibility: hidden;
      transform: translateY(12px);
      transition: opacity .3s, visibility .3s, transform .3s;
      pointer-events: none;
    }
    .back-top.active {
      opacity: 1 !important;
      visibility: visible !important;
      transform: translateY(0) !important;
      pointer-events: all !important;
    }
    .back-top:hover {
      background: #bef54a !important;
      transform: translateY(-3px) !important;
    }

    /* -- RESPONSIVE -- */
    @media (max-width:1200px) {
      .works-grid { grid-template-columns: repeat(6, 1fr); }
      .wcard { grid-column: span 3; }
      .wcard.feat { grid-column: span 6; }
      .wcard.half { grid-column: span 3; }
      .founder-grid { grid-template-columns: repeat(2, 1fr); }
      .proof-grid { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width:960px) {
      .footer-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 28px;
      }
    }
    @media (max-width:900px) {
      #port-hero { padding: 160px 5% 70px; }
      .hero-layout { flex-direction: column; align-items: stretch; gap: 40px; }
      .hero-img-box { flex: 0 0 auto; width: 100%; height: auto; aspect-ratio: 4/3; margin: 0; }
      .port-section { padding: 50px 5%; }
      .founder-row, .founder-row.reverse { flex-direction: row; flex-wrap: nowrap; align-items: flex-start; gap: 16px; }
      .founder-portrait-sm { width: 70px; height: 90px; }
      .founder-portrait-sm i { font-size: 2rem; }
      .founder-name-sm { font-size: 2.2rem; }
      .founder-badge-sm { padding: 4px 10px; font-size: 0.6rem; }
      .proof-grid { grid-template-columns: 1fr; }
      .works-grid { grid-template-columns: repeat(4, 1fr); }
      .wcard { grid-column: span 2; }
      .wcard.feat { grid-column: span 4; }
      .wcard.half { grid-column: span 2; }
      .sec-header-row { flex-direction: column; align-items: flex-start; }
    }
    @media (max-width:700px) {
      .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
      }
    }
    @media (max-width:600px) {
      #port-hero { padding: 130px 5% 60px; min-height: auto; }
      .port-section { padding: 44px 5%; }
      .hero-stats { gap: 18px; }
      .stat-divider { display: none; }
      .stat-num { font-size: 2rem; }
      .hero-btns { flex-direction: column; align-items: flex-start; }
      .works-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
      .wcard, .wcard.feat, .wcard.half { grid-column: span 1; }
      .wcard.feat .work-img { aspect-ratio: 4/3; }
      .work-body { padding: 10px 12px 12px; }
      .work-title { font-size: .78rem; line-height: 1.3; margin-bottom: 4px; }
      .work-desc { font-size: .68rem; line-height: 1.4; margin-bottom: 8px; }
      .wtag { font-size: .6rem; padding: 2px 7px; }
      .founder-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
      .cta-band { padding: 36px 5%; }
      .cta-band-btns { flex-direction: column; align-items: center; }
      .founder-row, .founder-row.reverse { flex-direction: column; align-items: center; text-align: center; gap: 20px; }
      .founder-portrait-sm { width: 90px; height: 110px; }
      .founder-header { flex-direction: column; align-items: center; gap: 12px; }
      .founder-name-sm { font-size: 2.5rem; }
      .founder-meta-row { justify-content: center; }
      .founder-info-compact { padding: 0 15px; }
    }
    @media (max-width:400px) {
      .founder-grid { grid-template-columns: 1fr 1fr; }
      .be-grid { grid-template-columns: 1fr 1fr; }
    }

    /* --------------------------------------
       PREMIUM LIGHT MODE OVERRIDES
    -------------------------------------- */
    [data-theme="light"] #port-hero {
      background: linear-gradient(180deg, #f1f5f9 0%, #e8eef8 100%);
    }
    [data-theme="light"] #port-works {
      background: #f1f5f9;
    }
    [data-theme="light"] .work-card {
      border-color: rgba(15,23,42,0.09);
      box-shadow: 0 2px 12px rgba(15,23,42,0.06);
    }
    [data-theme="light"] .work-card:hover {
      box-shadow: 0 20px 50px rgba(15,23,42,0.14), 0 0 0 1px rgba(168,232,50,0.35);
    }
    [data-theme="light"] .filter-btn {
      border-color: rgba(15,23,42,0.14);
      background: #ffffff;
      box-shadow: 0 1px 4px rgba(15,23,42,0.06);
    }
    [data-theme="light"] .filter-btn:hover {
      background: rgba(168,232,50,0.08);
    }
    [data-theme="light"] .proof-panel {
      box-shadow: 0 4px 20px rgba(15,23,42,0.08);
      border-color: rgba(15,23,42,0.09);
    }
    [data-theme="light"] .works-dummy-links {
      background: #ffffff;
      border: 1px solid rgba(15,23,42,0.09);
      box-shadow: 0 2px 8px rgba(15,23,42,0.05);
    }
    [data-theme="light"] .cta-band {
      background: linear-gradient(135deg, rgba(168,232,50,0.10) 0%, rgba(168,232,50,0.03) 100%);
      border-color: rgba(168,232,50,0.25);
      box-shadow: 0 4px 24px rgba(15,23,42,0.07);
    }

/* --- MOBILE FIX 18 --- */
@media (max-width: 480px) {
  .port-page {
    grid-template-columns: 1fr 1fr !important;
    grid-template-rows: auto !important;
    gap: 8px !important;
  }
  .port-big,
  .port-tall {
    grid-column: 1 / 3 !important;
    height: 220px !important;
  }
  .port-item {
    height: 140px !important;
    border-radius: 8px !important;
  }
}

@media (max-width: 360px) {
  .port-page {
    grid-template-columns: 1fr !important;
  }
  .port-big,
  .port-tall,
  .port-item {
    grid-column: 1 !important;
    height: 200px !important;
  }
}

/* === AGGRESSIVE MOBILE COMPRESSION === */
@media (max-width: 1024px) {
  body[data-page="portfolio"] .footer-grid {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-top: 16px;
  }
  body[data-page="portfolio"] .hide-on-mobile {
    display: none;
  }
  body[data-page="portfolio"] .footer-brand {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-bottom: 0;
    margin-bottom: 0;
  }
  body[data-page="portfolio"] .footer-brand p {
    margin: 0;
  }
  body[data-page="portfolio"] .footer-list a {
    min-height: 24px;
    font-size: 0.75rem;
  }
  body[data-page="portfolio"] .footer-head {
    font-size: 0.8rem;
    margin-bottom: 6px;
  }
  body[data-page="portfolio"] section:not([class*="-hero"]):not(.hero) {
    padding: 30px 0;
  }
  body[data-page="portfolio"] .sec-heading {
    font-size: 1.5rem;
    margin-bottom: 12px;
    font-size: clamp(2rem, 8vw, 2.5rem);
    line-height: 1.1;
  }
  body[data-page="portfolio"] .sec-sub {
    font-size: 0.85rem;
    margin-bottom: 20px;
  }
}

.load-more-wrap {
  text-align: center;
  margin-top: 40px;
  width: 100%;
}
