:root {
      --bg: #050608;
      --bg-alt: #101118;
      --card-bg: #13141e;
      --border-subtle: #252637;

      --text-main: #f7f7ff;
      --text-muted: #a1a3ba;

      --neon: #41f5ff;       /* cyan neon */
      --neon-soft: #41f5ff33;
      --mango: #ffc94a;      /* mango yellow */
      --mango-soft: #ffc94a33;

      --accent-pink: #ff6fd8;

      --radius-lg: 20px;
      --radius-xl: 26px;
      --shadow-soft: 0 24px 60px rgba(0, 0, 0, 0.6);
      --shadow-neon: 0 0 24px var(--neon-soft);
    }

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

    html, body {
      height: 100%;
      scroll-behavior: smooth;
    }

    body {
      font-family: "Space Grotesk", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      background: radial-gradient(circle at top, #131624 0, #050608 50%, #050608 100%);
      color: var(--text-main);
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
    }

    /* Layout */

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

    main {
      flex: 1;
    }

    .shell {
      max-width: 1120px;
      margin: 0 auto;
      padding: 1.5rem 1.25rem 3rem;
    }

    @media (min-width: 768px) {
      .shell {
        padding: 1.75rem 1.5rem 4rem;
      }
    }

    /* Header */

    header {
      position: sticky;
      top: 0;
      z-index: 40;
      backdrop-filter: blur(16px);
      background: linear-gradient(to bottom, rgba(5, 6, 8, 0.9), transparent);
      border-bottom: 1px solid rgba(65, 245, 255, 0.09);
    }

    .nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1.5rem;
    }

    .logo-wrap {
      display: flex;
      align-items: center;
      gap: 0.75rem;
    }

    .logo-icon {
      width: 32px;
      height: 32px;
      border-radius: 999px;
      background:
        radial-gradient(circle at 20% 0%, var(--neon) 0, transparent 55%),
        radial-gradient(circle at 80% 100%, var(--mango) 0, transparent 55%),
        #050608;
      border: 1px solid var(--border-subtle);
      box-shadow: 0 0 20px rgba(65, 245, 255, 0.4);
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
    }

    .logo-icon span {
      font-weight: 700;
      font-size: 0.9rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: #050608;
      text-shadow: 0 0 10px rgba(255, 255, 255, 0.6);
    }

    .logo-text-main {
      font-size: 1.1rem;
      font-weight: 600;
      letter-spacing: 0.13em;
      text-transform: uppercase;
      color: var(--text-main);
    }

    .logo-text-sub {
      font-size: 0.75rem;
      text-transform: uppercase;
      letter-spacing: 0.18em;
      color: var(--text-muted);
    }

    nav ul {
      list-style: none;
      display: flex;
      align-items: center;
      gap: 1rem;
      font-size: 0.9rem;
    }

    nav a {
      text-decoration: none;
      color: var(--text-muted);
      padding: 0.35rem 0.8rem;
      border-radius: 999px;
      border: 1px solid transparent;
      transition: all 0.18s ease-out;
    }

    nav a:hover {
      color: var(--text-main);
      border-color: rgba(65, 245, 255, 0.4);
      background: radial-gradient(circle at top, rgba(65, 245, 255, 0.18), transparent 55%);
      box-shadow: 0 0 12px rgba(65, 245, 255, 0.35);
    }

    .pill-cta {
      border-radius: 999px;
      padding: 0.45rem 1rem;
      border: 1px solid rgba(255, 201, 74, 1);
      background: linear-gradient(
        135deg,
        rgba(255, 201, 74, 0.95) 0%,
        rgba(255, 170, 40, 1) 90%
      );
      color: #0b0b0d !important;
      font-weight: 700;
      letter-spacing: 0.03em;
      text-shadow: none !important;
      box-shadow:
        0 0 16px rgba(255, 201, 74, 0.7),
        0 12px 24px rgba(0, 0, 0, 0.7);
      transition: all 0.18s ease-out;
    }

    .pill-cta:hover {
      transform: translateY(-1px);
      box-shadow:
        0 0 22px rgba(255, 201, 74, 0.9),
        0 16px 36px rgba(0, 0, 0, 0.9);
      color: #fefefe !important;
    }

    @media (max-width: 720px) {
      nav ul {
        display: none;
      }
    }

    /* Hero */

    .hero {
      padding-top: 3.5rem;
      padding-bottom: 3.5rem;
      display: grid;
      gap: 2.5rem;
      align-items: center;
    }

    @media (min-width: 768px) {
      .hero {
        grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
        padding-top: 4.5rem;
        padding-bottom: 4.5rem;
        gap: 3.25rem;
      }
    }

    .hero-badge-row {
      display: inline-flex;
      align-items: center;
      gap: 0.6rem;
      padding: 0.15rem 0.5rem;
      border-radius: 999px;
      border: 1px solid rgba(65, 245, 255, 0.45);
      background: radial-gradient(circle at 0 0, rgba(65, 245, 255, 0.16), transparent 56%), rgba(5, 6, 8, 0.85);
      margin-bottom: 1.1rem;
    }

    .hero-badge-dot {
      width: 8px;
      height: 8px;
      border-radius: 999px;
      background: var(--mango);
      box-shadow: 0 0 12px rgba(255, 201, 74, 0.8);
    }

    .hero-badge-text {
      font-size: 0.72rem;
      text-transform: uppercase;
      letter-spacing: 0.22em;
      color: var(--text-muted);
    }

    .hero-title {
      font-size: clamp(2.4rem, 4vw, 3.1rem);
      line-height: 1.05;
      font-weight: 700;
      margin-bottom: 0.9rem;
      letter-spacing: 0.03em;
    }

    .hero-title span.neon {
      color: var(--neon);
      text-shadow:
        0 0 16px rgba(65, 245, 255, 0.8),
        0 0 32px rgba(65, 245, 255, 0.6);
    }

    .hero-highlight {
      display: inline-flex;
      align-items: center;
      gap: 0.3rem;
      padding: 0.15rem 0.5rem;
      border-radius: 999px;
      border: 1px solid rgba(255, 201, 74, 0.65);
      font-size: 0.8rem;
      text-transform: uppercase;
      letter-spacing: 0.18em;
      color: var(--mango);
      margin-bottom: 0.8rem;
      background: radial-gradient(circle at 0 0, rgba(255, 201, 74, 0.25), transparent 55%);
    }

    .hero-subtitle {
      font-size: 0.98rem;
      max-width: 34rem;
      color: var(--text-muted);
      margin-bottom: 1.6rem;
    }

    .hero-cta-row {
      display: flex;
      flex-wrap: wrap;
      gap: 0.85rem;
      align-items: center;
      margin-bottom: 1.4rem;
    }

    .btn-primary {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.45rem;
      padding: 0.7rem 1.4rem;
      border-radius: 999px;
      border: 1px solid rgba(65, 245, 255, 0.9);
      background: radial-gradient(circle at 0 0, rgba(65, 245, 255, 0.25), transparent 55%), rgba(5, 6, 8, 0.9);
      color: var(--text-main);
      font-size: 0.95rem;
      font-weight: 500;
      cursor: pointer;
      text-decoration: none;
      box-shadow:
        0 0 20px rgba(65, 245, 255, 0.9),
        0 16px 40px rgba(0, 0, 0, 0.9);
      transition: transform 0.18s ease-out, box-shadow 0.18s ease-out, background 0.18s ease-out;
    }

    .btn-primary:hover {
      transform: translateY(-1px);
      box-shadow:
        0 0 26px rgba(65, 245, 255, 1),
        0 24px 52px rgba(0, 0, 0, 1);
      background: radial-gradient(circle at 0 0, rgba(65, 245, 255, 0.35), transparent 65%), #050608;
    }

    .btn-secondary {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 0.65rem 1.3rem;
      border-radius: 999px;
      border: 1px dashed rgba(255, 255, 255, 0.15);
      background: rgba(10, 11, 18, 0.9);
      color: var(--text-muted);
      font-size: 0.9rem;
      text-decoration: none;
      transition: all 0.18s ease-out;
    }

    .btn-secondary:hover {
      color: var(--text-main);
      border-style: solid;
      border-color: rgba(255, 255, 255, 0.25);
      background: rgba(19, 20, 30, 1);
    }

    .hero-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 1.2rem;
      font-size: 0.8rem;
      color: var(--text-muted);
    }

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

    .hero-meta-dot {
      width: 6px;
      height: 6px;
      border-radius: 999px;
      background: var(--neon);
      box-shadow: 0 0 10px rgba(65, 245, 255, 0.9);
    }

    /* Hero visual */

    .hero-visual {
      position: relative;
    }

    .orb {
      position: absolute;
      inset: -80px -40px auto;
      z-index: -1;
      opacity: 0.7;
      filter: blur(2px);
      background:
        radial-gradient(circle at 0 0, rgba(65, 245, 255, 0.4), transparent 55%),
        radial-gradient(circle at 100% 0, rgba(255, 201, 74, 0.35), transparent 55%);
    }

    .hero-card {
      position: relative;
      border-radius: var(--radius-xl);
      background: radial-gradient(circle at 0 0, rgba(65, 245, 255, 0.2), transparent 60%), var(--card-bg);
      border: 1px solid rgba(65, 245, 255, 0.3);
      box-shadow: var(--shadow-soft), 0 0 36px rgba(65, 245, 255, 0.55);
      padding: 1.2rem 1.1rem 1.25rem;
      overflow: hidden;
      isolation: isolate;
    }

    @media (min-width: 768px) {
      .hero-card {
        padding: 1.4rem 1.35rem 1.5rem;
      }
    }

    .hero-card-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 0.9rem;
    }

    .hero-card-title {
      font-size: 0.85rem;
      text-transform: uppercase;
      letter-spacing: 0.2em;
      color: var(--text-muted);
    }

    .hero-card-pill {
      font-size: 0.7rem;
      text-transform: uppercase;
      letter-spacing: 0.18em;
      padding: 0.25rem 0.6rem;
      border-radius: 999px;
      border: 1px solid rgba(255, 201, 74, 0.8);
      color: var(--mango);
      background: radial-gradient(circle at 100% 0, rgba(255, 201, 74, 0.2), transparent 55%);
    }

    .hero-terminal {
      background: #070810;
      border-radius: 14px;
      border: 1px solid rgba(37, 38, 55, 0.9);
      padding: 0.9rem 0.85rem;
      font-family: "SF Mono", ui-monospace, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
      font-size: 0.85rem;
      position: relative;
      overflow: hidden;
    }

    .hero-terminal-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 0.7rem;
    }

    .hero-terminal-dots {
      display: inline-flex;
      gap: 0.35rem;
    }

    .hero-terminal-dots span {
      width: 9px;
      height: 9px;
      border-radius: 999px;
      background: #ff5f57;
    }

    .hero-terminal-dots span:nth-child(2) {
      background: #ffbd2e;
    }

    .hero-terminal-dots span:nth-child(3) {
      background: #28c840;
    }

    .hero-terminal-title {
      font-size: 0.75rem;
      color: var(--text-muted);
    }

    .hero-terminal-body {
      white-space: pre-wrap;
      color: var(--neon);
    }

    .hero-terminal-body .prompt {
      color: var(--mango);
    }

    .hero-terminal-body .comment {
      color: #7881b6;
    }

    .hero-terminal-body .tagline {
      color: #ffffff;
    }

    .hero-stack {
      display: flex;
      flex-wrap: wrap;
      gap: 0.35rem;
      margin-top: 0.85rem;
      font-size: 0.7rem;
      color: var(--text-muted);
    }

    .hero-stack span {
      padding: 0.25rem 0.6rem;
      border-radius: 999px;
      border: 1px solid rgba(65, 245, 255, 0.4);
      background: rgba(11, 12, 20, 0.9);
    }

    .glow-ring {
      position: absolute;
      inset: auto -40px -40px auto;
      width: 180px;
      height: 180px;
      border-radius: 999px;
      border: 1px solid rgba(255, 201, 74, 0.75);
      box-shadow:
        0 0 40px rgba(255, 201, 74, 0.9),
        0 0 60px rgba(65, 245, 255, 0.75);
      opacity: 0.3;
      pointer-events: none;
    }

    /* Sections */

    section {
      padding: 1.8rem 0;
    }

    .section-header {
      margin-bottom: 1.3rem;
    }

    .section-kicker {
      font-size: 0.75rem;
      text-transform: uppercase;
      letter-spacing: 0.22em;
      color: var(--text-muted);
      margin-bottom: 0.25rem;
    }

    .section-title {
      font-size: 1.25rem;
      font-weight: 600;
    }

    .section-subtitle {
      font-size: 0.9rem;
      color: var(--text-muted);
      max-width: 32rem;
      margin-top: 0.3rem;
    }

    /* Services */

    .grid {
      display: grid;
      gap: 1rem;
    }

    @media (min-width: 768px) {
      .grid-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
      }
    }

    .card {
      border-radius: var(--radius-lg);
      background: linear-gradient(145deg, rgba(16, 18, 32, 0.98), rgba(10, 11, 20, 0.98));
      border: 1px solid rgba(37, 38, 55, 0.96);
      box-shadow: 0 18px 40px rgba(0, 0, 0, 0.8);
      padding: 1.05rem 1rem;
      position: relative;
      overflow: hidden;
      transition: transform 0.18s ease-out, box-shadow 0.18s ease-out, border-color 0.18s ease-out;
    }

    .card::before {
      content: "";
      position: absolute;
      inset: -30% 40% 70% -30%;
      background: radial-gradient(circle at top left, rgba(65, 245, 255, 0.18), transparent 60%);
      opacity: 0;
      transition: opacity 0.18s ease-out;
      pointer-events: none;
    }

    .card:hover {
      transform: translateY(-4px);
      border-color: rgba(65, 245, 255, 0.6);
      box-shadow:
        0 0 26px rgba(65, 245, 255, 0.4),
        0 24px 60px rgba(0, 0, 0, 0.95);
    }

    .card:hover::before {
      opacity: 1;
    }

    .card-label {
      font-size: 0.8rem;
      text-transform: uppercase;
      letter-spacing: 0.22em;
      margin-bottom: 0.45rem;
      color: var(--text-muted);
    }

    .card-title {
      font-size: 1rem;
      font-weight: 600;
      margin-bottom: 0.4rem;
    }

    .card-body {
      font-size: 0.85rem;
      color: var(--text-muted);
      margin-bottom: 0.7rem;
    }

    .card-footer {
      font-size: 0.75rem;
      text-transform: uppercase;
      letter-spacing: 0.2em;
      color: var(--neon);
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
    }

    .card-footer span {
      display: inline-block;
      transform: translateY(1px);
    }

    /* Contact */

    .contact-card {
      margin-top: 1rem;
      border-radius: var(--radius-lg);
      background: radial-gradient(circle at 0 0, rgba(255, 201, 74, 0.26), transparent 55%), var(--bg-alt);
      border: 1px solid rgba(255, 201, 74, 0.8);
      padding: 1.1rem 1rem;
      display: grid;
      gap: 0.9rem;
    }

    @media (min-width: 768px) {
      .contact-card {
        grid-template-columns: minmax(0, 2fr) minmax(0, 1.3fr);
        align-items: center;
        padding: 1.2rem 1.3rem;
      }
    }

    .contact-main {
      font-size: 0.95rem;
    }

    .contact-main strong {
      font-weight: 600;
      color: var(--bg);
      background: linear-gradient(120deg, var(--mango), var(--neon));
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }

    .contact-details {
      font-size: 0.85rem;
      color: var(--text-main);
    }

    .contact-details a {
      color: var(--neon);
      text-decoration: none;
    }

    .contact-details a:hover {
      text-decoration: underline;
    }

    /* Footer */

    footer {
      border-top: 1px solid rgba(37, 38, 55, 0.9);
      background: rgba(5, 6, 8, 0.98);
    }

    .footer-inner {
      max-width: 1120px;
      margin: 0 auto;
      padding: 1.3rem 1.25rem 1.8rem;
      display: flex;
      flex-wrap: wrap;
      gap: 0.8rem;
      align-items: center;
      justify-content: space-between;
      font-size: 0.78rem;
      color: var(--text-muted);
    }

    .footer-pill {
      display: inline-flex;
      align-items: center;
      gap: 0.3rem;
      padding: 0.25rem 0.6rem;
      border-radius: 999px;
      background: rgba(16, 18, 28, 0.95);
      border: 1px solid rgba(37, 38, 55, 0.9);
    }

    .footer-pill span.dot {
      width: 6px;
      height: 6px;
      border-radius: 999px;
      background: var(--neon);
      box-shadow: 0 0 10px rgba(65, 245, 255, 0.9);
    }

    .footer-links {
      display: flex;
      align-items: center;
      gap: 0.9rem;
      flex-wrap: wrap;
    }

    .footer-links a {
      color: var(--text-muted);
      text-decoration: none;
    }

    .footer-links a:hover {
      color: var(--text-main);
      text-decoration: underline;
    }

    /* Simple keyframe glow */

    @keyframes pulseGlow {
      0% {
        box-shadow: 0 0 18px rgba(65, 245, 255, 0.8);
      }
      50% {
        box-shadow: 0 0 30px rgba(65, 245, 255, 1);
      }
      100% {
        box-shadow: 0 0 18px rgba(65, 245, 255, 0.8);
      }
    }

    .btn-primary {
      animation: pulseGlow 3.8s ease-in-out infinite;
    }