:root {
      --bg: #050816;
      --bg-soft: #0b1020;
      --accent: #f97316;
      --accent-soft: rgba(249, 115, 22, 0.08);
      --text: #f9fafb;
      --text-muted: #9ca3af;
      --card: #020617;
      --border: #1f2937;
      --radius-lg: 18px;
      --radius-xl: 26px;
      --shadow-soft: 0 24px 60px rgba(15, 23, 42, 0.7);
      --shadow-subtle: 0 14px 40px rgba(15, 23, 42, 0.5);
      --max-width: 1100px;
    }

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

    body {
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text",
        "Segoe UI", sans-serif;
      background: radial-gradient(circle at top, #1f2937 0, #020617 55%, #020617 100%);
      color: var(--text);
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
    }

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

    .page {
      min-height: 100vh;
      display: flex;
      flex-direction: column;
    }

    header {
      position: sticky;
      top: 0;
      z-index: 20;
      backdrop-filter: blur(16px);
      background: linear-gradient(
        to bottom,
        rgba(2, 6, 23, 0.92),
        rgba(2, 6, 23, 0.7),
        transparent
      );
      border-bottom: 1px solid rgba(31, 41, 55, 0.6);
    }

    .nav-inner {
      max-width: var(--max-width);
      margin: 0 auto;
      padding: 14px 20px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 15px;
      font-weight: 500;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .logo-badge {
      width: 30px;
      height: 30px;
      border-radius: 999px;
      background: radial-gradient(circle at 20% 0, #fed7aa 0, #f97316 35%, #7c2d12 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 16px;
      font-weight: 700;
      box-shadow: 0 10px 25px rgba(248, 113, 22, 0.6);
    }

    nav ul {
      display: flex;
      list-style: none;
      gap: 18px;
      font-size: 14px;
    }

    nav a {
      color: var(--text-muted);
      padding: 6px 0;
      position: relative;
      transition: color 0.18s ease;
    }

    nav a::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: -3px;
      width: 0;
      height: 2px;
      border-radius: 999px;
      background: linear-gradient(to right, #f97316, #fb923c);
      transition: width 0.22s ease;
    }

    nav a:hover {
      color: var(--text);
    }

    nav a:hover::after {
      width: 100%;
    }

    .nav-cta {
      display: none;
    }

    main {
      flex: 1;
    }

    .section {
      padding: 40px 20px;
    }

    .section-inner {
      max-width: var(--max-width);
      margin: 0 auto;
    }

    /* Hero */
    .hero {
      padding-top: 60px;
      padding-bottom: 40px;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: minmax(0, 3fr) minmax(0, 2.5fr);
      gap: 36px;
      align-items: center;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 0.18em;
      color: var(--accent);
      padding: 4px 10px;
      border-radius: 999px;
      background: rgba(15, 23, 42, 0.8);
      border: 1px solid rgba(249, 115, 22, 0.35);
      margin-bottom: 12px;
    }

    .eyebrow-dot {
      width: 6px;
      height: 6px;
      border-radius: 999px;
      background: var(--accent);
      box-shadow: 0 0 0 6px rgba(249, 115, 22, 0.22);
    }

    h1 {
      font-size: clamp(28px, 5vw, 40px);
      line-height: 1.1;
      margin-bottom: 10px;
      letter-spacing: -0.03em;
    }

    .hero-subtitle {
      font-size: 16px;
      color: var(--text-muted);
      max-width: 520px;
      margin-bottom: 22px;
    }

    .hero-highlight {
      color: #f97316;
      font-weight: 500;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      align-items: center;
      margin-bottom: 20px;
    }

    .btn {
      font-size: 14px;
      padding: 10px 18px;
      border-radius: 999px;
      border: 1px solid var(--border);
      background: rgba(15, 23, 42, 0.9);
      color: var(--text);
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      text-decoration: none;
      transition: all 0.18s ease;
      box-shadow: var(--shadow-subtle);
    }

    .btn-primary {
      background: linear-gradient(135deg, #fb923c 0, #f97316 40%, #ea580c 100%);
      border-color: rgba(248, 113, 22, 0.9);
      box-shadow: 0 20px 40px rgba(248, 113, 22, 0.45);
    }

    .btn-primary:hover {
      transform: translateY(-1px);
      box-shadow: 0 24px 55px rgba(248, 113, 22, 0.6);
    }

    .btn-ghost {
      background: rgba(15, 23, 42, 0.8);
    }

    .btn-ghost:hover {
      background: rgba(15, 23, 42, 1);
      transform: translateY(-1px);
    }

    .hero-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 16px;
      font-size: 13px;
      color: var(--text-muted);
    }

    .hero-meta span {
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }

    .pill {
      padding: 2px 9px;
      border-radius: 999px;
      background: rgba(15, 23, 42, 0.8);
      border: 1px solid rgba(55, 65, 81, 0.9);
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 0.14em;
    }

    .hero-card {
      border-radius: 32px;
      background: radial-gradient(circle at top, #111827 0, #020617 60%);
      border: 1px solid rgba(31, 41, 55, 0.9);
      box-shadow: var(--shadow-soft);
      padding: 20px 18px 18px;
      position: relative;
      overflow: hidden;
    }

    .hero-card-header {
      display: flex;
      justify-content: space-between;
      align-items: baseline;
      margin-bottom: 14px;
    }

    .hero-name {
      font-size: 18px;
      font-weight: 600;
    }

    .hero-role {
      font-size: 12px;
      color: var(--text-muted);
    }

    .hero-tag {
      font-size: 11px;
      padding: 4px 10px;
      border-radius: 999px;
      background: rgba(15, 23, 42, 0.9);
      border: 1px solid rgba(55, 65, 81, 0.9);
      text-transform: uppercase;
      letter-spacing: 0.14em;
    }

    .hero-tech-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 10px;
      margin-bottom: 14px;
    }

    .chip {
      border-radius: 999px;
      padding: 7px 10px;
      border: 1px solid rgba(55, 65, 81, 0.9);
      font-size: 11px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      background: rgba(15, 23, 42, 0.8);
    }

    .chip strong {
      font-size: 12px;
    }

    .chip span {
      color: var(--text-muted);
      font-size: 10px;
    }

    .hero-footer {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 10px;
      font-size: 11px;
      color: var(--text-muted);
      border-top: 1px dashed rgba(55, 65, 81, 0.7);
      padding-top: 10px;
      margin-top: 4px;
    }

    .hero-footer-links {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
    }

    .hero-footer a {
      font-size: 11px;
      color: #e5e7eb;
      opacity: 0.9;
    }

    /* Section headings */
    .section-header {
      display: flex;
      justify-content: space-between;
      align-items: baseline;
      gap: 12px;
      margin-bottom: 16px;
    }

    .section-title {
      font-size: 20px;
      font-weight: 600;
      letter-spacing: -0.02em;
    }

    .section-kicker {
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 0.18em;
      color: var(--accent);
    }

    .section-description {
      font-size: 13px;
      color: var(--text-muted);
      max-width: 460px;
    }

    /* About */
    .about-grid {
      display: grid;
      grid-template-columns: minmax(0, 3fr) minmax(0, 2.5fr);
      gap: 22px;
    }

    .card {
      background: linear-gradient(145deg, rgba(15, 23, 42, 0.97), #020617);
      border-radius: var(--radius-lg);
      border: 1px solid rgba(31, 41, 55, 0.9);
      padding: 16px 16px 14px;
      box-shadow: var(--shadow-subtle);
    }

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

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

    .about-facts {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 10px;
      margin-top: 10px;
    }

    .fact-label {
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 0.16em;
      color: var(--text-muted);
    }

    .fact-value {
      font-size: 13px;
    }

    /* Skills */
    .skills-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      gap: 10px;
    }

    .skill-pill {
      border-radius: 999px;
      border: 1px solid rgba(31, 41, 55, 0.9);
      background: rgba(15, 23, 42, 0.9);
      padding: 9px 11px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 12px;
    }

    .skill-pill span {
      color: var(--text-muted);
      font-size: 11px;
    }

    /* Projects */
    .projects-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 14px;
    }

    .project-card {
      border-radius: var(--radius-lg);
      background: radial-gradient(circle at top left, #111827 0, #020617 55%);
      border: 1px solid rgba(31, 41, 55, 0.9);
      padding: 14px 14px 12px;
      box-shadow: var(--shadow-subtle);
    }

    .project-meta {
      font-size: 11px;
      color: var(--text-muted);
      margin-bottom: 4px;
      text-transform: uppercase;
      letter-spacing: 0.16em;
    }

    .project-title {
      font-size: 14px;
      font-weight: 500;
      margin-bottom: 6px;
    }

    .project-desc {
      font-size: 13px;
      color: var(--text-muted);
      margin-bottom: 10px;
    }

    .project-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
      font-size: 11px;
    }

    .project-tag {
      padding: 3px 8px;
      border-radius: 999px;
      background: rgba(15, 23, 42, 0.8);
      border: 1px solid rgba(55, 65, 81, 0.9);
    }

    .project-links {
      display: flex;
      justify-content: flex-end;
      margin-top: 8px;
      font-size: 11px;
    }

    .project-links a {
      color: #e5e7eb;
      opacity: 0.9;
    }

    /* Contact */
    .contact-card {
      border-radius: var(--radius-xl);
      border: 1px solid rgba(31, 41, 55, 0.9);
      background: radial-gradient(circle at top, rgba(249, 115, 22, 0.12) 0, #020617 50%);
      box-shadow: var(--shadow-soft);
      padding: 18px 16px 16px;
      display: grid;
      grid-template-columns: minmax(0, 3fr) minmax(0, 2.2fr);
      gap: 18px;
      align-items: center;
    }

    .contact-card p {
      font-size: 13px;
      color: var(--text-muted);
      margin-bottom: 10px;
    }

    .contact-methods {
      display: grid;
      gap: 8px;
      font-size: 13px;
    }

    .contact-methods a {
      color: #e5e7eb;
    }

    footer {
      padding: 18px 20px 26px;
      font-size: 11px;
      color: var(--text-muted);
    }

    .footer-inner {
      max-width: var(--max-width);
      margin: 0 auto;
      display: flex;
      justify-content: space-between;
      gap: 10px;
      flex-wrap: wrap;
    }

    /* Responsive */
    @media (max-width: 880px) {
      .hero-grid,
      .about-grid,
      .contact-card {
        grid-template-columns: minmax(0, 1fr);
      }

      .hero {
        padding-top: 30px;
      }

      .hero-card {
        max-width: 400px;
        margin: 0 auto;
        order: -1;
      }

      .about-grid {
        gap: 14px;
      }
    }

    @media (max-width: 640px) {
      .nav-inner {
        padding-inline: 16px;
      }

      nav ul {
        display: none;
      }

      .nav-cta {
        display: inline-flex;
      }

      .section {
        padding-inline: 16px;
      }

      .hero-card {
        padding-inline: 14px;
      }

      .contact-card {
        padding-inline: 14px;
      }
    }