 @import url('https://api.fontshare.com/v2/css?f[]=clash-display@400,500,600,700,800,900&display=swap');

    *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

    :root {
      --orange: #EE552C;
      --accent: #FF9125;
      --bg: #0a0a0a;
      --card-bg: #252E3D;
      --text: #f0f0f0;
      --muted: #8a8fa8;
      --grad: linear-gradient(135deg, #EE552C, #FF9125);
      --grad-dark: linear-gradient(135deg, rgba(238,85,44,0.15), rgba(255,145,37,0.08));
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Plus Jakarta Sans', sans-serif;
      background: var(--bg);
      color: var(--text);
      overflow-x: hidden;
      min-height: 100vh;
      cursor: none;
    }

    /* ── Custom Cursor ── */
    .cursor {
      position: fixed;
      width: 12px; height: 12px;
      background: var(--orange);
      border-radius: 50%;
      pointer-events: none;
      z-index: 9999;
      transition: transform 0.1s ease;
      mix-blend-mode: difference;
    }
    .cursor-ring {
      position: fixed;
      width: 40px; height: 40px;
      border: 1.5px solid rgba(238,85,44,0.5);
      border-radius: 50%;
      pointer-events: none;
      z-index: 9998;
      transition: transform 0.15s ease, width 0.3s ease, height 0.3s ease, opacity 0.3s ease;
    }

    /* ── Canvas Background ── */
    #bg-canvas {
      position: fixed;
      inset: 0;
      z-index: 0;
      opacity: 0.85;
    }

    /* ── Mouse Glow ── */
    .mouse-glow {
      position: fixed;
      width: 600px; height: 600px;
      background: radial-gradient(circle, rgba(238,85,44,0.07) 0%, transparent 70%);
      border-radius: 50%;
      pointer-events: none;
      z-index: 1;
      transform: translate(-50%, -50%);
      transition: left 0.08s ease, top 0.08s ease;
    }

    /* ── Navbar ── */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      padding: 24px 48px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      background: rgba(10,10,10,0);
      backdrop-filter: blur(0px);
      transition: background 0.4s ease, backdrop-filter 0.4s ease, padding 0.4s ease;
    }
    nav.scrolled {
      background: rgba(10,10,10,0.85);
      backdrop-filter: blur(20px);
      padding: 16px 48px;
      border-bottom: 1px solid rgba(255,255,255,0.04);
    }
    .logo {
      font-family: 'Clash Display', sans-serif;
      font-size: 26px;
      font-weight: 700;
      letter-spacing: -0.5px;
      background: var(--grad);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .logo span { color: white; -webkit-text-fill-color: white; }
    .nav-status {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 13px;
      color: var(--muted);
      font-weight: 500;
      letter-spacing: 0.5px;
    }
    .status-dot {
      width: 8px; height: 8px;
      background: #00ff88;
      border-radius: 50%;
      box-shadow: 0 0 8px #00ff88;
      animation: pulse-dot 2s infinite;
    }
    @keyframes pulse-dot {
      0%,100% { opacity: 1; transform: scale(1); }
      50% { opacity: 0.5; transform: scale(0.8); }
    }

    /* ── Hero ── */
    .hero {
      position: relative;
      z-index: 2;
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      padding: 120px 24px 60px;
    }

    .hero-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--accent);
      background: rgba(255,145,37,0.08);
      border: 1px solid rgba(255,145,37,0.2);
      padding: 8px 20px;
      border-radius: 100px;
      margin-bottom: 36px;
      opacity: 0;
      transform: translateY(20px);
      animation: fadeUp 0.8s 0.3s forwards;
    }
    .eyebrow-line {
      width: 24px; height: 1px;
      background: var(--accent);
    }

    .hero-title {
      font-family: 'Clash Display', sans-serif;
      font-size: clamp(52px, 9vw, 112px);
      font-weight: 800;
      line-height: 0.95;
      letter-spacing: -3px;
      max-width: 1000px;
      opacity: 0;
      transform: translateY(30px);
      animation: fadeUp 1s 0.5s forwards;
    }
    .hero-title .word-bold { display: block; }
    .hero-title .word-coming {
      background: var(--grad);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      position: relative;
    }
    .hero-title .word-coming::after {
      content: '';
      position: absolute;
      bottom: -4px; left: 0; right: 0;
      height: 3px;
      background: var(--grad);
      border-radius: 2px;
      opacity: 0.4;
    }

    .hero-sub {
      margin-top: 28px;
      font-size: clamp(15px, 2vw, 18px);
      color: var(--muted);
      max-width: 600px;
      line-height: 1.75;
      font-weight: 400;
      opacity: 0;
      transform: translateY(20px);
      animation: fadeUp 0.9s 0.8s forwards;
    }
    .hero-sub strong { color: rgba(255,255,255,0.75); font-weight: 600; }

    @keyframes fadeUp {
      to { opacity: 1; transform: translateY(0); }
    }

    /* ── Divider ── */
    .glow-divider {
      width: 120px; height: 1px;
      background: var(--grad);
      margin: 48px auto;
      position: relative;
      opacity: 0;
      animation: fadeIn 1s 1s forwards;
    }
    .glow-divider::after {
      content: '';
      position: absolute;
      inset: -2px;
      background: var(--grad);
      filter: blur(6px);
      opacity: 0.5;
    }
    @keyframes fadeIn { to { opacity: 1; } }

    /* ── Countdown ── */
    .countdown-section {
      position: relative;
      z-index: 2;
      padding: 40px 24px 80px;
      text-align: center;
    }
    .countdown-label {
      font-size: 12px;
      letter-spacing: 4px;
      text-transform: uppercase;
      color: var(--muted);
      margin-bottom: 40px;
      opacity: 0;
      animation: fadeIn 1s 1.2s forwards;
    }
    .countdown-grid {
      display: flex;
      justify-content: center;
      align-items: stretch;
      gap: 16px;
      flex-wrap: wrap;
      opacity: 0;
      animation: fadeUp 1s 1.4s forwards;
    }
    .countdown-item {
      position: relative;
      width: 130px;
      background: rgba(37, 46, 61, 0.6);
      border: 1px solid rgba(255,255,255,0.06);
      border-radius: 20px;
      padding: 28px 16px 20px;
      backdrop-filter: blur(20px);
      overflow: hidden;
      transition: transform 0.3s ease, border-color 0.3s ease;
    }
    .countdown-item:hover {
      transform: translateY(-4px);
      border-color: rgba(238,85,44,0.3);
    }
    .countdown-item::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 1px;
      background: var(--grad);
      opacity: 0.6;
    }
    .countdown-item::after {
      content: '';
      position: absolute;
      inset: 0;
      background: var(--grad-dark);
      opacity: 0;
      transition: opacity 0.3s ease;
    }
    .countdown-item:hover::after { opacity: 1; }
    .countdown-number {
      font-family: 'Clash Display', sans-serif;
      font-size: 64px;
      font-weight: 700;
      line-height: 1;
      background: var(--grad);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      position: relative;
      z-index: 1;
      transition: transform 0.1s ease;
    }
    .countdown-number.flip {
      animation: numberFlip 0.3s ease;
    }
    @keyframes numberFlip {
      0% { transform: translateY(0); opacity: 1; }
      50% { transform: translateY(-8px); opacity: 0; }
      100% { transform: translateY(0); opacity: 1; }
    }
    .countdown-unit {
      font-size: 11px;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      color: var(--muted);
      margin-top: 8px;
      position: relative;
      z-index: 1;
      font-weight: 600;
    }
    .countdown-sep {
      font-family: 'Clash Display', sans-serif;
      font-size: 48px;
      font-weight: 700;
      color: rgba(238,85,44,0.3);
      align-self: center;
      padding-bottom: 20px;
      line-height: 1;
    }

    /* ── Subscribe ── */
    .subscribe-section {
      position: relative;
      z-index: 2;
      padding: 0 24px 80px;
      text-align: center;
    }
    .subscribe-card {
      max-width: 560px;
      margin: 0 auto;
      background: rgba(37,46,61,0.5);
      border: 1px solid rgba(255,255,255,0.06);
      border-radius: 28px;
      padding: 48px 40px;
      backdrop-filter: blur(24px);
      position: relative;
      overflow: hidden;
      opacity: 0;
      animation: fadeUp 1s 1.6s forwards;
    }
    .subscribe-card::before {
      content: '';
      position: absolute;
      top: 0; left: 10%; right: 10%;
      height: 1px;
      background: var(--grad);
      opacity: 0.5;
    }
    .subscribe-card::after {
      content: '';
      position: absolute;
      bottom: -60px; left: 50%;
      transform: translateX(-50%);
      width: 200px; height: 200px;
      background: radial-gradient(circle, rgba(238,85,44,0.12), transparent 70%);
      border-radius: 50%;
      pointer-events: none;
    }
    .subscribe-title {
      font-family: 'Clash Display', sans-serif;
      font-size: 28px;
      font-weight: 700;
      margin-bottom: 10px;
      letter-spacing: -0.5px;
    }
    .subscribe-desc {
      font-size: 14px;
      color: var(--muted);
      margin-bottom: 30px;
      line-height: 1.6;
    }
    .subscribe-form {
      display: flex;
      gap: 10px;
      position: relative;
      z-index: 1;
    }
    .subscribe-input {
      flex: 1;
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: 100px;
      padding: 14px 22px;
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 14px;
      color: white;
      outline: none;
      transition: border-color 0.3s ease, background 0.3s ease;
    }
    .subscribe-input:focus {
      border-color: rgba(238,85,44,0.5);
      background: rgba(238,85,44,0.04);
    }
    .subscribe-input::placeholder { color: rgba(255,255,255,0.3); }
    .btn-notify {
      background: var(--grad);
      border: none;
      border-radius: 100px;
      padding: 14px 28px;
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 14px;
      font-weight: 700;
      color: white;
      cursor: pointer;
      white-space: nowrap;
      position: relative;
      overflow: hidden;
      transition: transform 0.2s ease, box-shadow 0.3s ease;
      box-shadow: 0 0 0 rgba(238,85,44,0);
    }
    .btn-notify:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 32px rgba(238,85,44,0.4);
    }
    .btn-notify::before {
      content: '';
      position: absolute;
      inset: 0;
      background: rgba(255,255,255,0.15);
      opacity: 0;
      transition: opacity 0.2s;
    }
    .btn-notify:hover::before { opacity: 1; }
    .subscribe-success {
      display: none;
      align-items: center;
      justify-content: center;
      gap: 10px;
      padding: 16px;
      background: rgba(0,255,136,0.08);
      border: 1px solid rgba(0,255,136,0.2);
      border-radius: 12px;
      color: #00ff88;
      font-size: 14px;
      font-weight: 600;
      margin-top: 12px;
    }
    .subscribe-success.show { display: flex; animation: fadeUp 0.5s ease forwards; }

    /* ── Socials ── */
    .social-section {
      position: relative;
      z-index: 2;
      padding: 0 24px 80px;
      text-align: center;
      opacity: 0;
      animation: fadeIn 1s 2s forwards;
    }
    .social-label {
      font-size: 11px;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--muted);
      margin-bottom: 24px;
    }
    .social-row {
      display: flex;
      justify-content: center;
      gap: 12px;
      flex-wrap: wrap;
    }
    .social-btn {
      display: flex;
      align-items: center;
      gap: 10px;
      background: rgba(37,46,61,0.5);
      border: 1px solid rgba(255,255,255,0.06);
      border-radius: 100px;
      padding: 12px 22px;
      color: var(--muted);
      text-decoration: none;
      font-size: 13px;
      font-weight: 600;
      letter-spacing: 0.3px;
      backdrop-filter: blur(12px);
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
    }
    .social-btn:hover {
      color: white;
      border-color: rgba(238,85,44,0.4);
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(238,85,44,0.15);
    }
    .social-btn::before {
      content: '';
      position: absolute;
      inset: 0;
      background: var(--grad-dark);
      opacity: 0;
      transition: opacity 0.3s;
    }
    .social-btn:hover::before { opacity: 1; }
    .social-icon { width: 20px; height: 20px; position: relative; z-index: 1; }
    .social-name { position: relative; z-index: 1; }

    /* ── Footer ── */
    footer {
      position: relative;
      z-index: 2;
      text-align: center;
      padding: 24px;
      border-top: 1px solid rgba(255,255,255,0.04);
      color: rgba(255,255,255,0.25);
      font-size: 12px;
      letter-spacing: 0.5px;
    }
    footer span {
      background: var(--grad);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      font-weight: 600;
    }

    /* ── Floating Orbs ── */
    .orb {
      position: fixed;
      border-radius: 50%;
      pointer-events: none;
      z-index: 0;
      filter: blur(80px);
      animation: orb-float linear infinite;
    }
    .orb-1 {
      width: 500px; height: 500px;
      background: rgba(238,85,44,0.06);
      top: -100px; right: -100px;
      animation-duration: 20s;
    }
    .orb-2 {
      width: 400px; height: 400px;
      background: rgba(255,145,37,0.05);
      bottom: 100px; left: -150px;
      animation-duration: 28s;
      animation-direction: reverse;
    }
    .orb-3 {
      width: 300px; height: 300px;
      background: rgba(238,85,44,0.04);
      top: 50%; left: 50%;
      animation-duration: 35s;
    }
    @keyframes orb-float {
      0%,100% { transform: translate(0,0) scale(1); }
      33% { transform: translate(30px,-40px) scale(1.05); }
      66% { transform: translate(-20px,20px) scale(0.95); }
    }

    /* ── Noise Overlay ── */
    .noise {
      position: fixed;
      inset: 0;
      z-index: 3;
      pointer-events: none;
      opacity: 0.025;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
      background-size: 200px;
    }

    /* ── Responsive ── */
    @media (max-width: 640px) {
      nav { padding: 20px 24px; }
      nav.scrolled { padding: 14px 24px; }
      .hero { padding: 100px 20px 40px; }
      .subscribe-card { padding: 32px 24px; }
      .subscribe-form { flex-direction: column; }
      .countdown-item { width: 100px; }
      .countdown-number { font-size: 48px; }
      .countdown-sep { display: none; }
    }
    

    /* page 2 css */


     @import url('https://api.fontshare.com/v2/css?f[]=clash-display@400,500,600,700,800&display=swap');

    *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

    :root {
      --orange: #EE552C;
      --accent: #FF9125;
      --bg: #0a0a0a;
      --card: #252E3D;
      --card2: #1a2030;
      --text: #f0f0f0;
      --muted: #8a8fa8;
      --border: rgba(255,255,255,0.06);
      --grad: linear-gradient(135deg, #EE552C, #FF9125);
      --grad-r: linear-gradient(135deg, #FF9125, #EE552C);
      --glow: 0 0 40px rgba(238,85,44,0.2);
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Plus Jakarta Sans', sans-serif;
      background: var(--bg);
      color: var(--text);
      overflow-x: hidden;
      cursor: none;
    }

    /* ── Cursor ── */
    .cursor { position: fixed; width: 10px; height: 10px; background: var(--orange); border-radius: 50%; pointer-events: none; z-index: 9999; mix-blend-mode: difference; transition: transform 0.1s; }
    .cursor-ring { position: fixed; width: 36px; height: 36px; border: 1px solid rgba(238,85,44,0.4); border-radius: 50%; pointer-events: none; z-index: 9998; transition: width 0.3s, height 0.3s; }

    /* ── Background ── */
    #bg-canvas { position: fixed; inset: 0; z-index: 0; }
    .noise { position: fixed; inset: 0; z-index: 1; pointer-events: none; opacity: 0.02;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
      background-size: 200px;
    }
    .mouse-glow { position: fixed; width: 500px; height: 500px; background: radial-gradient(circle, rgba(238,85,44,0.06) 0%, transparent 70%); border-radius: 50%; pointer-events: none; z-index: 1; transform: translate(-50%,-50%); transition: left 0.1s, top 0.1s; }

    /* ── Sticky Nav ── */
    nav { position: fixed; top: 0; left: 0; right: 0; z-index: 200; padding: 18px 40px; display: flex; justify-content: space-between; align-items: center; background: rgba(10,10,10,0); backdrop-filter: blur(0); transition: all 0.4s; }
    nav.scrolled { background: rgba(10,10,10,0.88); backdrop-filter: blur(20px); border-bottom: 1px solid var(--border); padding: 12px 40px; }
    .logo { font-family: 'Clash Display', sans-serif; font-size: 22px; font-weight: 700; background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
    .nav-badge { font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); border: 1px solid var(--border); border-radius: 100px; padding: 5px 14px; }

    /* ── Main Wrapper ── */
    main { position: relative; z-index: 2; max-width: 800px; margin: 0 auto; padding: 100px 20px 80px; }

    /* ── Profile Hero Card ── */
    .profile-card {
      background: rgba(37,46,61,0.55);
      border: 1px solid rgba(255,255,255,0.07);
      border-radius: 32px;
      padding: 48px 40px 40px;
      backdrop-filter: blur(28px);
      text-align: center;
      position: relative;
      overflow: hidden;
      margin-bottom: 20px;
      opacity: 0;
      transform: translateY(30px);
      animation: fadeUp 0.9s 0.2s forwards;
    }
    .profile-card::before {
      content: '';
      position: absolute;
      top: 0; left: 15%; right: 15%; height: 1px;
      background: var(--grad); opacity: 0.6;
    }
    .profile-card::after {
      content: '';
      position: absolute;
      bottom: -80px; left: 50%; transform: translateX(-50%);
      width: 300px; height: 300px;
      background: radial-gradient(circle, rgba(238,85,44,0.1), transparent 70%);
      border-radius: 50%; pointer-events: none;
    }

    .avatar-wrap {
      position: relative;
      display: inline-block;
      margin-bottom: 24px;
    }
    .avatar-ring {
      width: 110px; height: 110px;
      border-radius: 50%;
      background: var(--grad);
      padding: 3px;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      animation: spin-ring 6s linear infinite;
      box-shadow: 0 0 30px rgba(238,85,44,0.35), 0 0 60px rgba(238,85,44,0.12);
    }
    @keyframes spin-ring {
      0%,100% { box-shadow: 0 0 30px rgba(238,85,44,0.35), 0 0 60px rgba(238,85,44,0.12); }
      50% { box-shadow: 0 0 50px rgba(255,145,37,0.45), 0 0 80px rgba(255,145,37,0.15); }
    }
    .avatar-inner {
      width: 100%;
      height: 100%;
      border-radius: 50%;
      background: var(--card);
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      font-family: 'Clash Display', sans-serif;
      font-size: 36px;
      font-weight: 800;
      background: var(--grad);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .avatar-inner img{

width: 90px;

height: 120px;

object-fit: cover;

}
    .avatar-status {
      position: absolute;
      bottom: 6px; right: 6px;
      width: 18px; height: 18px;
      background: #00ff88;
      border-radius: 50%;
      border: 3px solid var(--bg);
      box-shadow: 0 0 8px #00ff88;
      animation: pulse-dot 2s infinite;
    }
    @keyframes pulse-dot { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.6;transform:scale(0.85)} }

    .profile-name {
      font-family: 'Clash Display', sans-serif;
      font-size: 40px;
      font-weight: 800;
      letter-spacing: -1.5px;
      line-height: 1;
      margin-bottom: 10px;
    }
    .profile-role {
      font-size: 14px;
      color: var(--accent);
      font-weight: 600;
      letter-spacing: 0.3px;
      margin-bottom: 16px;
    }
    .profile-bio {
      font-size: 14px;
      color: var(--muted);
      line-height: 1.75;
      max-width: 480px;
      margin: 0 auto 28px;
    }

    /* ── Action Buttons ── */
    .actions-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 10px;
      margin-bottom: 20px;
      position: relative;
      z-index: 1;
      opacity: 0;
      animation: fadeUp 0.9s 0.4s forwards;
    }
    .action-btn {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
      background: rgba(37,46,61,0.55);
      border: 1px solid var(--border);
      border-radius: 20px;
      padding: 18px 12px;
      text-decoration: none;
      color: var(--text);
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.3px;
      cursor: pointer;
      transition: all 0.3s ease;
      backdrop-filter: blur(16px);
      position: relative;
      overflow: hidden;
    }
    .action-btn::before {
      content: '';
      position: absolute;
      inset: 0;
      opacity: 0;
      transition: opacity 0.3s;
    }
    .action-btn.primary { background: var(--grad); border-color: transparent; box-shadow: 0 4px 24px rgba(238,85,44,0.3); }
    .action-btn.primary::before { background: rgba(255,255,255,0.12); }
    .action-btn:not(.primary):hover { border-color: rgba(238,85,44,0.35); transform: translateY(-3px); box-shadow: 0 8px 28px rgba(238,85,44,0.12); }
    .action-btn:not(.primary)::before { background: rgba(238,85,44,0.05); }
    .action-btn:hover::before { opacity: 1; }
    .action-btn.primary:hover { transform: translateY(-3px); box-shadow: 0 12px 36px rgba(238,85,44,0.45); }
    .action-icon { width: 28px; height: 28px; display: flex; align-items: center; justify-content: center; position: relative; z-index: 1; }
    .action-icon svg { width: 22px; height: 22px; }
    .action-label { position: relative; z-index: 1; }

    /* ── Section Layout ── */
    .section { margin-bottom: 20px; opacity: 0; }
    .section.reveal { animation: fadeUp 0.8s ease forwards; }
    .section-title {
      font-family: 'Clash Display', sans-serif;
      font-size: 13px;
      font-weight: 600;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--muted);
      margin-bottom: 14px;
      padding-left: 4px;
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .section-title::after { content: ''; flex: 1; height: 1px; background: var(--border); }

    /* ── Contact Cards ── */
    .contact-grid { display: flex; flex-direction: column; gap: 10px; }
    .contact-item {
      display: flex;
      align-items: center;
      gap: 16px;
      background: rgba(37,46,61,0.5);
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 16px 20px;
      backdrop-filter: blur(16px);
      transition: all 0.3s ease;
      text-decoration: none;
      color: var(--text);
    }
    .contact-item:hover { border-color: rgba(238,85,44,0.3); transform: translateX(4px); box-shadow: 0 4px 20px rgba(238,85,44,0.08); }
    .contact-icon {
      width: 42px; height: 42px;
      background: rgba(238,85,44,0.1);
      border: 1px solid rgba(238,85,44,0.2);
      border-radius: 12px;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
      transition: all 0.3s;
    }
    .contact-item:hover .contact-icon { background: rgba(238,85,44,0.2); }
    .contact-icon svg { width: 18px; height: 18px; color: var(--orange); }
    .contact-detail { flex: 1; min-width: 0; }
    .contact-label { font-size: 11px; color: var(--muted); font-weight: 600; letter-spacing: 0.8px; text-transform: uppercase; margin-bottom: 2px; }
    .contact-value { font-size: 14px; font-weight: 600; color: var(--text); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
    .contact-arrow { color: var(--muted); transition: transform 0.2s, color 0.2s; }
    .contact-item:hover .contact-arrow { transform: translateX(4px); color: var(--orange); }

    /* ── Skills ── */
    .skills-group { margin-bottom: 16px; }
    .skills-group-label { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: rgba(238,85,44,0.7); margin-bottom: 10px; }
    .skills-tags { display: flex; flex-wrap: wrap; gap: 8px; }
    .skill-tag {
      background: rgba(37,46,61,0.6);
      border: 1px solid var(--border);
      border-radius: 100px;
      padding: 7px 16px;
      font-size: 13px;
      font-weight: 600;
      color: var(--muted);
      backdrop-filter: blur(12px);
      transition: all 0.3s ease;
      cursor: default;
    }
    .skill-tag:hover {
      background: rgba(238,85,44,0.1);
      border-color: rgba(238,85,44,0.35);
      color: var(--text);
      transform: translateY(-2px);
      box-shadow: 0 4px 16px rgba(238,85,44,0.1);
    }

    /* ── Portfolio Cards ── */
    .portfolio-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .portfolio-card {
      background: rgba(37,46,61,0.5);
      border: 1px solid var(--border);
      border-radius: 20px;
      padding: 28px 22px;
      backdrop-filter: blur(16px);
      cursor: pointer;
      transition: all 0.35s ease;
      position: relative;
      overflow: hidden;
    }
    .portfolio-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0; height: 1px;
      background: var(--grad); opacity: 0; transition: opacity 0.3s;
    }
    .portfolio-card::after {
      content: '';
      position: absolute;
      inset: 0;
      background: var(--grad);
      opacity: 0;
      transition: opacity 0.3s;
    }
    .portfolio-card:hover { border-color: rgba(238,85,44,0.3); transform: translateY(-4px); box-shadow: 0 12px 40px rgba(238,85,44,0.12); }
    .portfolio-card:hover::before { opacity: 0.6; }
    .portfolio-card:hover::after { opacity: 0.03; }
    .portfolio-icon {
      width: 48px; height: 48px;
      background: rgba(238,85,44,0.1);
      border: 1px solid rgba(238,85,44,0.2);
      border-radius: 14px;
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 16px;
      transition: all 0.3s;
      position: relative; z-index: 1;
    }
    .portfolio-card:hover .portfolio-icon { background: rgba(238,85,44,0.2); }
    .portfolio-icon svg { width: 22px; height: 22px; color: var(--orange); }
    .portfolio-card-title { font-family: 'Clash Display', sans-serif; font-size: 17px; font-weight: 700; margin-bottom: 6px; position: relative; z-index: 1; }
    .portfolio-card-desc { font-size: 12px; color: var(--muted); line-height: 1.6; position: relative; z-index: 1; }
    .portfolio-tag {
      display: inline-block;
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: var(--orange);
      background: rgba(238,85,44,0.1);
      border-radius: 4px;
      padding: 3px 8px;
      margin-top: 12px;
      position: relative; z-index: 1;
    }

    /* ── QR Section ── */
    .qr-card {
      background: rgba(37,46,61,0.5);
      border: 1px solid var(--border);
      border-radius: 24px;
      padding: 36px 24px;
      backdrop-filter: blur(20px);
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .qr-card::before { content: ''; position: absolute; top: 0; left: 20%; right: 20%; height: 1px; background: var(--grad); opacity: 0.5; }
    #qrcode { display: flex; justify-content: center; margin: 20px auto 16px; }
    #qrcode canvas, #qrcode img { border-radius: 12px; border: 3px solid rgba(238,85,44,0.2); }
    .qr-label { font-size: 13px; color: var(--muted); margin-top: 8px; }
    .qr-url { font-size: 12px; color: var(--orange); font-weight: 600; margin-top: 4px; }

    /* ── Save Contact ── */
    .save-section {
      background: rgba(37,46,61,0.4);
      border: 1px solid var(--border);
      border-radius: 24px;
      padding: 32px 24px;
      text-align: center;
      backdrop-filter: blur(20px);
      position: relative;
      overflow: hidden;
    }
    .save-section::before { content: ''; position: absolute; top: 0; left: 20%; right: 20%; height: 1px; background: var(--grad); opacity: 0.5; }
    .save-section h3 { font-family: 'Clash Display', sans-serif; font-size: 22px; font-weight: 700; margin-bottom: 8px; }
    .save-section p { font-size: 13px; color: var(--muted); margin-bottom: 24px; }
    .btn-save {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: var(--grad);
      border: none;
      border-radius: 100px;
      padding: 15px 36px;
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 15px;
      font-weight: 700;
      color: white;
      cursor: pointer;
      transition: all 0.3s ease;
      box-shadow: 0 4px 24px rgba(238,85,44,0.3);
      position: relative;
      overflow: hidden;
    }
    .btn-save:hover { transform: translateY(-2px); box-shadow: 0 10px 40px rgba(238,85,44,0.5); }
    .btn-save::before { content: ''; position: absolute; inset: 0; background: rgba(255,255,255,0.12); opacity: 0; transition: opacity 0.2s; }
    .btn-save:hover::before { opacity: 1; }

    /* ── Footer ── */
    footer { position: relative; z-index: 2; text-align: center; padding: 32px 24px; border-top: 1px solid var(--border); color: rgba(255,255,255,0.2); font-size: 12px; letter-spacing: 0.5px; }
    footer a { color: var(--orange); text-decoration: none; font-weight: 600; }

    /* ── Animations ── */
    @keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }

    /* ── Orbs ── */
    .orb { position: fixed; border-radius: 50%; pointer-events: none; z-index: 0; filter: blur(100px); animation: orb-float linear infinite; }
    .orb-1 { width: 600px; height: 600px; background: rgba(238,85,44,0.05); top: -200px; right: -200px; animation-duration: 22s; }
    .orb-2 { width: 400px; height: 400px; background: rgba(255,145,37,0.04); bottom: 0; left: -150px; animation-duration: 30s; animation-direction: reverse; }
    @keyframes orb-float { 0%,100%{transform:translate(0,0)} 50%{transform:translate(30px,-40px)} }

    /* ── Responsive ── */
    @media (max-width: 640px) {
      nav { padding: 16px 20px; }
      nav.scrolled { padding: 12px 20px; }
      main { padding: 80px 16px 60px; }
      .profile-card { padding: 36px 24px 32px; border-radius: 24px; }
      .profile-name { font-size: 32px; }
      .actions-grid { grid-template-columns: repeat(4, 1fr); gap: 8px; }
      .action-btn { padding: 14px 8px; }
      .action-icon svg { width: 20px; height: 20px; }
      .portfolio-grid { grid-template-columns: 1fr; }
    }
    .logo svg{
    width: 210px;
}