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

    @font-face {
      font-family: 'Roboto Condensed';
      font-style: normal;
      font-weight: 400;
      font-display: swap;
      src: url('/assets/fonts/roboto-condensed-400.woff2') format('woff2');
    }

    @font-face {
      font-family: 'Roboto Condensed';
      font-style: normal;
      font-weight: 700;
      font-display: swap;
      src: url('/assets/fonts/roboto-condensed-700.woff2') format('woff2');
    }

    @font-face {
      font-family: 'JetBrains Mono';
      font-style: normal;
      font-weight: 400;
      font-display: swap;
      src: url('/assets/fonts/jetbrains-mono-400.woff2') format('woff2');
    }

    @font-face {
      font-family: 'JetBrains Mono';
      font-style: normal;
      font-weight: 500;
      font-display: swap;
      src: url('/assets/fonts/jetbrains-mono-500.woff2') format('woff2');
    }

    :root {
      --cyber-marine: #112150;
      --cyber-marine-light: #1a3070;
      --cyber-marine-deep: #0b1538;
      --smoke-grey: #E1E5EC;
      --muted-turquoise: #6C868D;
      --sand: #F7F5F0;

      --card-bg: rgba(17, 33, 80, 0.55);
      --card-border: rgba(225, 230, 235, 0.08);
      --card-border-hover: rgba(225, 230, 235, 0.15);

      --text-primary: var(--sand);
      --text-secondary: var(--smoke-grey);
      --text-muted: rgba(225, 230, 235, 0.4);
      --accent: var(--muted-turquoise);

      --radius: 18px;
      --radius-sm: 12px;
      --gap: 14px;
    }

    html {
      overflow-x: hidden;
      font-size: 18px;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
    }

    body {
      font-family: 'Roboto Condensed', sans-serif;
      font-weight: 400;
      background: var(--cyber-marine-deep);
      color: var(--text-primary);
      min-height: 100vh;
      width: 100%;
      max-width: 100vw;
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: 2rem;
      overflow-x: hidden;
    }

    body::before {
      content: '';
      position: fixed;
      inset: 0;
      background:
        radial-gradient(ellipse 60% 50% at 50% 0%, rgba(108,134,141,0.1) 0%, transparent 70%),
        radial-gradient(ellipse 40% 60% at 80% 80%, rgba(17,33,80,0.4) 0%, transparent 60%),
        linear-gradient(180deg, #0b1538 0%, #091230 50%, #0d1a45 100%);
      pointer-events: none;
      z-index: 0;
    }

    body::after {
      content: '';
      position: fixed;
      inset: 0;
      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)' opacity='0.025'/%3E%3C/svg%3E");
      pointer-events: none;
      z-index: 0;
    }

    .bento {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: var(--gap);
      max-width: 1100px;
      width: 100%;
      overflow: hidden;
    }

    /* Prevent grid children from overflowing their columns */
    .bento > * {
      min-width: 0;
      max-width: 100%;
    }

    .card {
      background: var(--card-bg);
      border: 1px solid var(--card-border);
      border-radius: var(--radius);
      padding: 28px;
      position: relative;
      overflow: hidden;
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      transition: border-color 0.4s ease, transform 0.4s ease, box-shadow 0.4s ease;
    }

    .card:hover {
      border-color: var(--card-border-hover);
      transform: translateY(-2px);
      box-shadow: 0 12px 48px rgba(11, 21, 56, 0.4);
    }

    .card--tagline {
      grid-column: 1;
      grid-row: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      min-height: 210px;
    }

    .tagline-icon {
      width: 44px;
      height: 44px;
      background: var(--cyber-marine);
      border: 1px solid rgba(108, 134, 141, 0.3);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 20px;
    }

    .tagline-icon svg {
      width: 28px;
      height: 28px;
    }

    .tagline-heading {
      font-size: clamp(1.5rem, 2.5vw, 2rem);
      font-weight: 700;
      line-height: 1.12;
      letter-spacing: 0.02em;
      text-transform: uppercase;
    }

    .tagline-sub {
      font-size: 0.85rem;
      color: var(--text-muted);
      margin-top: 16px;
      line-height: 1.4;
      letter-spacing: 0.03em;
    }

    .card--hero {
      grid-column: 2 / 4;
      grid-row: 1 / 3;
      background: linear-gradient(160deg, var(--cyber-marine) 0%, var(--cyber-marine-light) 50%, #1e3a7a 100%);
      border: 1px solid rgba(108, 134, 141, 0.12);
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      padding: 36px 32px 0;
      min-height: 430px;
    }

    .card--hero:hover {
      box-shadow:
        0 16px 64px rgba(11, 21, 56, 0.5),
        0 0 80px rgba(108, 134, 141, 0.06);
    }

    .hero-brand {
      display: flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 18px;
      font-size: 0.8rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--muted-turquoise);
    }

    .hero-brand .brand-dot {
      width: 6px;
      height: 6px;
      background: var(--muted-turquoise);
      border-radius: 50%;
      animation: dot-blink 3s ease-in-out infinite;
      box-shadow: 0 0 6px rgba(108, 134, 141, 0.5);
    }

    @keyframes dot-blink {
      0%, 100% { opacity: 1; box-shadow: 0 0 6px rgba(108, 134, 141, 0.5); }
      40% { opacity: 0.3; box-shadow: 0 0 2px rgba(108, 134, 141, 0.2); }
      60% { opacity: 0.3; box-shadow: 0 0 2px rgba(108, 134, 141, 0.2); }
    }

    .hero-title {
      font-size: clamp(1.8rem, 4vw, 2.7rem);
      font-weight: 700;
      line-height: 1.1;
      letter-spacing: 0.01em;
      text-transform: uppercase;
      margin-bottom: 28px;
      max-width: 400px;
      color: var(--sand);
    }

    .hero-title span {
      color: var(--muted-turquoise);
    }

    .orb-wrapper {
      position: relative;
      width: 200px;
      height: 200px;
      margin-top: auto;
      flex-shrink: 0;
    }

    .orb-glow {
      position: absolute;
      inset: -30px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(108, 134, 141, 0.18) 0%, transparent 70%);
      animation: orb-pulse 4s ease-in-out infinite;
    }

    .orb-binary {
      position: absolute;
      inset: -38px;
      border-radius: 50%;
      animation: orb-spin 55s linear infinite reverse;
    }

    .orb-binary span {
      position: absolute;
      font-family: monospace;
      font-size: 0.85rem;
      color: rgba(108, 134, 141, 0.22);
      transform-origin: center;
    }

    .orb-ring {
      position: absolute;
      inset: -20px;
      border-radius: 50%;
      border: 1px solid rgba(108, 134, 141, 0.18);
      animation: orb-spin 35s linear infinite;
    }

    .orb-ring::after {
      content: '';
      position: absolute;
      width: 8px;
      height: 8px;
      background: var(--muted-turquoise);
      border-radius: 50%;
      top: -4px;
      left: 50%;
      margin-left: -4px;
      box-shadow: 0 0 14px rgba(108, 134, 141, 0.7);
    }

    .orb-ring-inner {
      position: absolute;
      inset: -8px;
      border-radius: 50%;
      border: 1px dashed rgba(225, 230, 235, 0.07);
      animation: orb-spin-reverse 22s linear infinite;
    }

    .orb-ring-inner::after {
      content: '';
      position: absolute;
      width: 5px;
      height: 5px;
      background: var(--smoke-grey);
      border-radius: 50%;
      bottom: -2px;
      left: 50%;
      margin-left: -2.5px;
      opacity: 0.5;
      box-shadow: 0 0 10px rgba(225, 230, 235, 0.5);
    }

    @keyframes orb-spin {
      to { transform: rotate(360deg); }
    }

    @keyframes orb-spin-reverse {
      to { transform: rotate(-360deg); }
    }

    @keyframes orb-pulse {
      0%, 100% { transform: scale(1); opacity: 0.5; }
      50% { transform: scale(1.2); opacity: 1; }
    }

    .orb {
      width: 100%;
      height: 100%;
      border-radius: 50%;
      overflow: hidden;
      box-shadow:
        0 0 30px rgba(108, 134, 141, 0.2),
        0 0 60px rgba(17, 33, 80, 0.5),
        inset 0 0 40px rgba(11, 21, 56, 0.4);
      position: relative;
      background: var(--cyber-marine-deep);
      display: flex;
      align-items: center;
      justify-content: center;
      border: 1px solid rgba(108, 134, 141, 0.18);
    }

    .orb svg {
      width: 58%;
      height: 58%;
    }

    .orb::after {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: 50%;
      background: radial-gradient(circle at 35% 30%, rgba(225, 230, 235, 0.06) 0%, transparent 50%);
      pointer-events: none;
    }

    .card--icon-toggle {
      grid-column: 4;
      grid-row: 1;
      display: flex;
      flex-direction: column;
      gap: var(--gap);
      background: none;
      border: none;
      padding: 0;
      backdrop-filter: none;
      -webkit-backdrop-filter: none;
      overflow: visible;
    }

    .card--icon-toggle:hover {
      transform: none;
      box-shadow: none;
      border-color: transparent;
    }

    .mini-card {
      background: var(--card-bg);
      border: 1px solid var(--card-border);
      border-radius: var(--radius);
      padding: 18px;
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      transition: border-color 0.4s ease, transform 0.4s ease, box-shadow 0.4s ease;
      flex: 1;
    }

    .mini-card:hover {
      border-color: var(--card-border-hover);
      transform: translateY(-2px);
      box-shadow: 0 12px 48px rgba(11, 21, 56, 0.4);
    }

    .mini-card--blog {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      text-decoration: none;
      gap: 8px;
      cursor: pointer;
    }

    .mini-card--blog svg {
      width: 20px;
      height: 20px;
      color: var(--muted-turquoise);
    }

    .mini-card--blog-label {
      font-size: 0.65rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--text-muted);
      transition: color 0.3s ease;
    }

    .mini-card--blog:hover .mini-card--blog-label {
      color: var(--muted-turquoise);
    }

    .mini-card--theme {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      user-select: none;
      gap: 10px;
    }

    .showcase-row {
      grid-column: 1 / -1;
      grid-row: 4;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: var(--gap);
      overflow: hidden;
    }

    .card--showcase {
      display: flex;
      flex-direction: column;
      padding: 28px;
    }

    .showcase-header {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 12px;
    }

    .showcase-icon {
      width: 36px;
      height: 36px;
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .showcase-icon--turquoise {
      background: var(--muted-turquoise);
    }

    .showcase-icon--marine {
      background: var(--cyber-marine);
      border: 1px solid rgba(108, 134, 141, 0.25);
    }

    .showcase-icon svg {
      width: 16px;
      height: 16px;
      color: var(--sand);
    }

    .showcase-title {
      font-size: 0.9rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.02em;
      color: var(--sand);
    }

    .showcase-desc {
      font-size: 0.8rem;
      color: var(--text-muted);
      line-height: 1.55;
      margin-bottom: 16px;
    }

    .showcase-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
      margin-top: auto;
    }

    .showcase-tag {
      padding: 5px 12px;
      border-radius: 5px;
      font-size: 0.65rem;
      font-weight: 700;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      border: 1px solid rgba(225, 230, 235, 0.1);
      color: var(--text-muted);
      background: rgba(225, 230, 235, 0.04);
    }

    .showcase-tag--accent {
      border-color: var(--muted-turquoise);
      color: var(--muted-turquoise);
    }

    .showcase-link {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      margin-top: 14px;
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      text-decoration: none;
      color: var(--muted-turquoise);
      transition: color 0.3s ease;
    }

    .showcase-link svg {
      width: 14px;
      height: 14px;
      transition: transform 0.3s ease;
    }

    .showcase-link:hover { color: var(--smoke-grey); }
    .showcase-link:hover svg { transform: translateX(3px); }

    body.light .showcase-icon--marine { background: #112150; border-color: rgba(17, 33, 80, 0.15); }
    body.light .showcase-icon--marine svg { color: #F7F5F0; }
    body.light .showcase-icon--turquoise svg { color: #F7F5F0; }
    body.light .showcase-tag { border-color: rgba(17, 33, 80, 0.1); color: rgba(17, 33, 80, 0.5); }
    body.light .showcase-tag--accent { border-color: var(--muted-turquoise); color: var(--muted-turquoise); }

    .status-line {
      display: flex;
      align-items: center;
      gap: 7px;
      font-size: 0.65rem;
      font-weight: 700;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: var(--text-muted);
      transition: color 0.4s ease;
    }

    .status-dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--muted-turquoise);
      animation: dot-blink 3s ease-in-out infinite;
      box-shadow: 0 0 6px rgba(108, 134, 141, 0.5);
      flex-shrink: 0;
    }

    .theme-toggle {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 12px;
    }

    .toggle-track {
      width: 56px;
      height: 30px;
      border-radius: 15px;
      background: var(--cyber-marine);
      border: 1px solid rgba(108, 134, 141, 0.3);
      position: relative;
      cursor: pointer;
      transition: background 0.4s ease, border-color 0.4s ease;
    }

    .toggle-knob {
      position: absolute;
      top: 3px;
      left: 3px;
      width: 22px;
      height: 22px;
      border-radius: 50%;
      background: var(--muted-turquoise);
      box-shadow: 0 2px 8px rgba(0,0,0,0.2);
      transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.4s ease;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .toggle-knob svg {
      width: 12px;
      height: 12px;
      color: var(--sand);
      transition: opacity 0.3s ease;
    }

    .toggle-knob .icon-sun { display: none; }
    .toggle-knob .icon-moon { display: block; }

    .toggle-label {
      font-size: 0.6rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--text-muted);
      transition: color 0.4s ease;
    }

    body.light {
      --cyber-marine: #E1E5EC;
      --cyber-marine-light: #cdd3dc;
      --cyber-marine-deep: #F7F5F0;
      --smoke-grey: #3a3a4a;
      --sand: #112150;

      --card-bg: rgba(225, 230, 235, 0.7);
      --card-border: rgba(17, 33, 80, 0.08);
      --card-border-hover: rgba(17, 33, 80, 0.15);

      --text-primary: #112150;
      --text-secondary: #3a3a4a;
      --text-muted: rgba(17, 33, 80, 0.45);
    }

    body.light::before {
      background:
        radial-gradient(ellipse 60% 50% at 50% 0%, rgba(108,134,141,0.06) 0%, transparent 70%),
        radial-gradient(ellipse 40% 60% at 80% 80%, rgba(225,230,235,0.3) 0%, transparent 60%),
        linear-gradient(180deg, #F7F5F0 0%, #EDEAE4 50%, #F0EDE7 100%);
    }

    body.light .card--hero {
      background: linear-gradient(160deg, #d4d9e2 0%, #c5ccda 50%, #bec7d8 100%);
      border-color: rgba(17, 33, 80, 0.08);
    }

    body.light .orb {
      background: #E1E5EC;
      border-color: rgba(17, 33, 80, 0.1);
      box-shadow:
        0 0 30px rgba(108, 134, 141, 0.15),
        0 0 60px rgba(225, 230, 235, 0.3),
        inset 0 0 40px rgba(255, 255, 255, 0.3);
    }

    body.light .orb svg polygon:first-child { fill: #112150 !important; }
    body.light .orb svg polygon:last-child { fill: #6C868D !important; }
    body.light .tagline-icon svg polygon:first-child { fill: #F7F5F0 !important; }
    body.light .tagline-icon svg polygon:last-child { fill: #6C868D !important; }

    body.light .tagline-icon {
      background: #112150;
      border-color: rgba(17, 33, 80, 0.2);
    }

    body.light .toggle-track {
      background: #F7F5F0;
      border-color: rgba(17, 33, 80, 0.15);
    }

    body.light .toggle-knob {
      transform: translateX(26px);
      background: #112150;
    }

    body.light .toggle-knob .icon-sun { display: block; color: #F7F5F0; }
    body.light .toggle-knob .icon-moon { display: none; }

    body.light .btn-cta {
      background: #112150;
      color: #F7F5F0;
    }

    body.light .btn-cta:hover {
      background: #1a3070;
    }

    body.light .feature-icon--marine {
      background: #112150;
      border-color: rgba(17, 33, 80, 0.2);
    }

    body.light .feature-icon--marine svg {
      color: #F7F5F0;
    }

    body.light .feature-icon--turquoise {
      background: #112150;
      box-shadow: 0 4px 16px rgba(17, 33, 80, 0.25);
    }

    body.light .feature-icon--turquoise svg {
      color: #F7F5F0;
    }

    body.light .icon-circle {
      box-shadow: 0 4px 24px rgba(108, 134, 141, 0.2);
    }

    body.light .hero-title span { color: var(--muted-turquoise); }
    body.light .stat-number--turquoise { color: #112150; }

    body.light .orb-ring { border-color: rgba(17, 33, 80, 0.1); }
    body.light .orb-ring-inner { border-color: rgba(17, 33, 80, 0.06); }
    body.light .orb-binary span { color: rgba(17, 33, 80, 0.12); }

    body.light .pill {
      border-color: rgba(17, 33, 80, 0.1);
      color: rgba(17, 33, 80, 0.5);
      background: rgba(17, 33, 80, 0.04);
    }

    body.light .pill--accent {
      border-color: var(--muted-turquoise);
      color: var(--muted-turquoise);
    }

    body.light .contact-line a { color: #112150; }
    body.light .contact-line a:hover { color: var(--muted-turquoise); }

    .card--stat {
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .card--stat-right {
      grid-column: 4;
      grid-row: 2;
    }

    .card--stat-left {
      grid-column: 1;
      grid-row: 2;
    }

    .stat-number {
      font-size: clamp(2.2rem, 4.5vw, 3.2rem);
      font-weight: 700;
      letter-spacing: -0.02em;
      line-height: 1;
      margin-bottom: 8px;
      text-transform: uppercase;
    }

    .stat-number--turquoise { color: var(--muted-turquoise); }
    .stat-number--sand { color: var(--sand); }

    .stat-label {
      font-size: 0.8rem;
      color: var(--text-muted);
      display: flex;
      align-items: center;
      gap: 8px;
      letter-spacing: 0.04em;
    }

    .stat-bar {
      width: 3px;
      height: 18px;
      background: var(--muted-turquoise);
      border-radius: 2px;
    }

    .value-dots {
      display: flex;
      gap: 6px;
      margin-top: 14px;
    }

    .stat-shimmer {
      width: 100%;
      height: 2px;
      margin-top: 18px;
      background: rgba(225, 230, 235, 0.04);
      border-radius: 1px;
      position: relative;
      overflow: hidden;
    }

    .stat-shimmer::after {
      content: '';
      position: absolute;
      top: 0;
      left: -40%;
      width: 40%;
      height: 100%;
      background: linear-gradient(90deg, transparent, var(--muted-turquoise), transparent);
      animation: shimmer-slide 3.5s ease-in-out infinite;
      border-radius: 1px;
    }

    @keyframes shimmer-slide {
      0% { left: -40%; opacity: 0; }
      20% { opacity: 1; }
      80% { opacity: 1; }
      100% { left: 100%; opacity: 0; }
    }

    .card--cta {
      grid-column: 1;
      grid-row: 5;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .contact-info {
      margin-bottom: 20px;
    }

    .contact-line {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 0.78rem;
      color: var(--text-muted);
      line-height: 1.8;
      letter-spacing: 0.01em;
    }

    .contact-line a {
      color: var(--smoke-grey);
      text-decoration: none;
      transition: color 0.25s ease;
    }

    .contact-line a:hover {
      color: var(--muted-turquoise);
    }

    .contact-line svg {
      width: 13px;
      height: 13px;
      flex-shrink: 0;
      color: var(--muted-turquoise);
      opacity: 0.7;
    }

    .contact-location {
      font-size: 0.72rem;
      color: var(--text-muted);
      margin-top: 10px;
      line-height: 1.5;
      opacity: 0.6;
    }

    .btn-cta {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      width: 100%;
      background: var(--muted-turquoise);
      color: var(--sand);
      border: none;
      padding: 14px 28px;
      border-radius: var(--radius-sm);
      font-family: 'Roboto Condensed', sans-serif;
      font-size: 0.9rem;
      font-weight: 700;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      cursor: pointer;
      transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
      box-shadow: 0 4px 24px rgba(108, 134, 141, 0.2);
    }

    .btn-cta:hover {
      transform: translateY(-2px) scale(1.03);
      box-shadow: 0 8px 36px rgba(108, 134, 141, 0.35);
      background: #7a969c;
    }

    .btn-cta svg { width: 18px; height: 18px; }

    .card--feature {
      display: flex;
      flex-direction: column;
    }

    .card--feature-1 { grid-column: 2; grid-row: 5; }
    .card--feature-2 { grid-column: 3; grid-row: 5; }
    .card--feature-3 { grid-column: 4; grid-row: 5; }

    .feature-icon {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 16px;
      flex-shrink: 0;
    }

    .feature-icon--turquoise {
      background: var(--muted-turquoise);
      box-shadow: 0 4px 16px rgba(108, 134, 141, 0.2);
    }

    .feature-icon--marine {
      background: var(--cyber-marine);
      border: 1px solid rgba(108, 134, 141, 0.25);
      box-shadow: 0 4px 16px rgba(17, 33, 80, 0.3);
    }

    .feature-icon svg {
      width: 18px;
      height: 18px;
      color: var(--sand);
    }

    .feature-title {
      font-size: 1rem;
      font-weight: 700;
      margin-bottom: 8px;
      letter-spacing: 0.02em;
      text-transform: uppercase;
      color: var(--sand);
    }

    .feature-desc {
      font-size: 0.82rem;
      color: var(--text-muted);
      line-height: 1.55;
      letter-spacing: 0.01em;
    }

    .template-pills {
      display: flex;
      flex-wrap: wrap;
      gap: 4px;
      margin-top: 16px;
      min-height: 36px;
      align-items: flex-end;
      position: relative;
    }

    .card--feature-3 {
      overflow: visible;
    }

    .pill {
      padding: 6px 10px;
      border-radius: 5px;
      font-size: 0.65rem;
      font-weight: 700;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      border: 1px solid rgba(225, 230, 235, 0.12);
      color: var(--text-muted);
      background: rgba(225, 230, 235, 0.06);
      transition: border-color 0.3s ease, color 0.3s ease, box-shadow 0.2s ease;
      cursor: grab;
      touch-action: none;
      user-select: none;
      opacity: 0;
      display: inline-block;
      box-shadow: 2px 2px 4px rgba(0,0,0,0.15), inset 0 1px 0 rgba(255,255,255,0.04);
    }

    .pill:nth-child(1) { }
    .pill:nth-child(2) { }
    .pill:nth-child(3) { }
    .pill:nth-child(4) { }
    .pill:nth-child(5) { }
    .pill:nth-child(6) { }
    .pill:nth-child(7) { }
    .pill:nth-child(8) { }
    .pill:nth-child(9) { }

    .template-pills.visible .pill:nth-child(1) { animation: cube-fall-1 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.1s forwards; }
    .template-pills.visible .pill:nth-child(2) { animation: cube-fall-2 0.65s cubic-bezier(0.22, 1, 0.36, 1) 0.3s forwards; }
    .template-pills.visible .pill:nth-child(3) { animation: cube-fall-3 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.45s forwards; }
    .template-pills.visible .pill:nth-child(4) { animation: cube-fall-4 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.6s forwards; }
    .template-pills.visible .pill:nth-child(5) { animation: cube-fall-5 0.65s cubic-bezier(0.22, 1, 0.36, 1) 0.75s forwards; }
    .template-pills.visible .pill:nth-child(6) { animation: cube-fall-3 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.9s forwards; }
    .template-pills.visible .pill:nth-child(7) { animation: cube-fall-1 0.65s cubic-bezier(0.22, 1, 0.36, 1) 1.05s forwards; }
    .template-pills.visible .pill:nth-child(8) { animation: cube-fall-4 0.6s cubic-bezier(0.22, 1, 0.36, 1) 1.2s forwards; }
    .template-pills.visible .pill:nth-child(9) { animation: cube-fall-2 0.7s cubic-bezier(0.22, 1, 0.36, 1) 1.35s forwards; }

    @keyframes cube-fall-1 {
      0% { opacity: 0; transform: translateY(-60px) rotate(-15deg) scale(0.7); }
      50% { opacity: 1; transform: translateY(6px) rotate(3deg) scale(1.05); }
      70% { transform: translateY(-2px) rotate(-1deg) scale(1); }
      100% { opacity: 1; transform: translateY(0) rotate(-2deg) scale(1); }
    }
    @keyframes cube-fall-2 {
      0% { opacity: 0; transform: translateY(-70px) rotate(20deg) scale(0.7); }
      50% { opacity: 1; transform: translateY(5px) rotate(-4deg) scale(1.05); }
      70% { transform: translateY(-3px) rotate(2deg) scale(1); }
      100% { opacity: 1; transform: translateY(0) rotate(3deg) scale(1); }
    }
    @keyframes cube-fall-3 {
      0% { opacity: 0; transform: translateY(-55px) rotate(-10deg) scale(0.7); }
      50% { opacity: 1; transform: translateY(7px) rotate(5deg) scale(1.05); }
      70% { transform: translateY(-2px) rotate(-2deg) scale(1); }
      100% { opacity: 1; transform: translateY(0) rotate(-4deg) scale(1); }
    }
    @keyframes cube-fall-4 {
      0% { opacity: 0; transform: translateY(-65px) rotate(12deg) scale(0.7); }
      50% { opacity: 1; transform: translateY(4px) rotate(-3deg) scale(1.05); }
      70% { transform: translateY(-3px) rotate(1deg) scale(1); }
      100% { opacity: 1; transform: translateY(0) rotate(2deg) scale(1); }
    }
    @keyframes cube-fall-5 {
      0% { opacity: 0; transform: translateY(-75px) rotate(-18deg) scale(0.7); }
      50% { opacity: 1; transform: translateY(5px) rotate(6deg) scale(1.05); }
      70% { transform: translateY(-2px) rotate(-3deg) scale(1); }
      100% { opacity: 1; transform: translateY(0) rotate(5deg) scale(1); }
    }

    .pill:active, .pill.dragging {
      cursor: grabbing;
      transform: scale(1.15) rotate(0deg) !important;
      box-shadow: 4px 4px 16px rgba(108, 134, 141, 0.3), inset 0 1px 0 rgba(255,255,255,0.06);
      z-index: 10;
      border-color: var(--muted-turquoise);
      color: var(--smoke-grey);
    }

    .pill.drag-over {
      transform: translateX(6px);
    }

    .pill:hover {
      border-color: var(--muted-turquoise);
      color: var(--smoke-grey);
    }

    .pill--accent {
      border-color: var(--muted-turquoise);
      color: var(--muted-turquoise);
    }

    .card--feature::after {
      content: '';
      position: absolute;
      bottom: 14px;
      right: 14px;
      width: 5px;
      height: 5px;
      border-radius: 50%;
      background: var(--muted-turquoise);
      animation: dot-blink 3s ease-in-out infinite;
      box-shadow: 0 0 4px rgba(108, 134, 141, 0.4);
    }

    .services-section {
      grid-column: 1 / -1;
      grid-row: 3;
      position: relative;
      overflow: hidden;
    }

    .services-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 14px;
      padding: 0 4px;
    }

    .services-title {
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--text-muted);
    }

    .services-nav {
      display: flex;
      gap: 6px;
    }

    .services-nav button {
      width: 32px;
      height: 32px;
      border-radius: 50%;
      border: 1px solid var(--card-border);
      background: var(--card-bg);
      color: var(--text-muted);
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: border-color 0.3s ease, color 0.3s ease, background 0.3s ease;
      backdrop-filter: blur(8px);
    }

    .services-nav button:hover {
      border-color: var(--muted-turquoise);
      color: var(--smoke-grey);
    }

    .services-nav button svg {
      width: 14px;
      height: 14px;
    }

    .services-track-wrapper {
      overflow: hidden;
      border-radius: var(--radius);
      -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 3%, black 97%, transparent 100%);
      mask-image: linear-gradient(90deg, transparent 0%, black 3%, black 97%, transparent 100%);
    }

    .services-track {
      display: flex;
      gap: var(--gap);
      overflow-x: auto;
      scroll-behavior: smooth;
      scrollbar-width: none;
      -ms-overflow-style: none;
      padding: 4px;
      scroll-snap-type: x mandatory;
    }

    .services-track::-webkit-scrollbar { display: none; }

    .service-card {
      flex: 0 0 260px;
      background: var(--card-bg);
      border: 1px solid var(--card-border);
      border-radius: var(--radius);
      padding: 24px;
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      transition: border-color 0.4s ease, transform 0.4s ease, box-shadow 0.4s ease;
      scroll-snap-align: start;
      position: relative;
      overflow: hidden;
      opacity: 0;
      animation: card-in 0.65s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    }

    .service-card:nth-child(1) { animation-delay: 0.4s; }
    .service-card:nth-child(2) { animation-delay: 0.48s; }
    .service-card:nth-child(3) { animation-delay: 0.56s; }
    .service-card:nth-child(4) { animation-delay: 0.64s; }
    .service-card:nth-child(5) { animation-delay: 0.72s; }
    .service-card:nth-child(6) { animation-delay: 0.80s; }

    .service-card:hover {
      border-color: var(--card-border-hover);
      transform: translateY(-2px);
      box-shadow: 0 12px 48px rgba(11, 21, 56, 0.4);
    }

    .service-card::after {
      content: '';
      position: absolute;
      bottom: 12px;
      right: 12px;
      width: 5px;
      height: 5px;
      border-radius: 50%;
      background: var(--muted-turquoise);
      animation: dot-blink 3s ease-in-out infinite;
      box-shadow: 0 0 4px rgba(108, 134, 141, 0.4);
    }

    .service-icon {
      width: 40px;
      height: 40px;
      border-radius: 10px;
      background: var(--cyber-marine);
      border: 1px solid rgba(108, 134, 141, 0.25);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 16px;
    }

    .service-icon svg {
      width: 18px;
      height: 18px;
      color: var(--sand);
    }

    .service-icon--accent {
      background: var(--muted-turquoise);
      border-color: transparent;
    }

    .service-name {
      font-size: 0.9rem;
      font-weight: 700;
      letter-spacing: 0.02em;
      text-transform: uppercase;
      color: var(--sand);
      margin-bottom: 8px;
    }

    .service-desc {
      /* font-size: 0.78rem; */
	  font-size: 0.79rem;
      color: var(--text-muted);
      line-height: 1.55;
    }

    .service-link {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      margin-top: 14px;
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      text-decoration: none;
      color: var(--muted-turquoise);
      transition: color 0.3s ease, gap 0.3s ease;
    }

    .service-link svg {
      width: 14px;
      height: 14px;
      transition: transform 0.3s ease;
    }

    .service-link:hover {
      color: var(--smoke-grey);
    }

    .service-link:hover svg {
      transform: translateX(3px);
    }

    body.light .service-icon {
      background: #112150;
    }

    body.light .service-icon svg {
      color: #F7F5F0;
    }

    body.light .service-icon--accent {
      background: var(--muted-turquoise);
    }

    .site-footer {
      position: relative;
      z-index: 1;
      width: 100%;
      max-width: 1100px;
      margin-top: 20px;
      padding: 16px 0 0;
      border-top: 1px solid rgba(225, 230, 235, 0.06);
    }

    .footer-links {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 16px;
      flex-wrap: wrap;
    }

    .footer-links a {
      font-size: 0.7rem;
      font-weight: 400;
      letter-spacing: 0.04em;
      color: var(--text-muted);
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .footer-links a:hover {
      color: var(--muted-turquoise);
    }

    .footer-sep {
      width: 3px;
      height: 3px;
      border-radius: 50%;
      background: var(--text-muted);
      opacity: 0.4;
    }

    body.light .site-footer {
      border-top-color: rgba(17, 33, 80, 0.08);
    }

    .card {
      opacity: 0;
      transform: translateY(20px);
      animation: card-in 0.65s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    }

    .card:nth-child(1) { animation-delay: 0.06s; }
    .card:nth-child(2) { animation-delay: 0.12s; }
    .card:nth-child(3) { animation-delay: 0.04s; }
    .card:nth-child(4) { animation-delay: 0.18s; }
    .card:nth-child(5) { animation-delay: 0.24s; }
    .card:nth-child(6) { animation-delay: 0.30s; }
    .card:nth-child(7) { animation-delay: 0.22s; }
    .card:nth-child(8) { animation-delay: 0.28s; }
    .card:nth-child(9) { animation-delay: 0.34s; }
    .card:nth-child(10) { animation-delay: 0.38s; }
    .card:nth-child(11) { animation-delay: 0.42s; }

    .services-section {
      opacity: 0;
      animation: card-in 0.65s cubic-bezier(0.22, 1, 0.36, 1) 0.30s forwards;
    }

    .showcase-row {
      opacity: 0;
      animation: card-in 0.65s cubic-bezier(0.22, 1, 0.36, 1) 0.36s forwards;
    }

    .site-footer {
      opacity: 0;
      animation: card-in 0.5s ease 0.5s forwards;
    }

    @keyframes card-in {
      from {
        opacity: 0;
        transform: translateY(20px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* Desktop vertical centering - only when content fits */
    @media (min-height: 800px) and (min-width: 901px) {
      body { justify-content: center; }
    }

    @media (max-width: 900px) {
      body { padding: 1rem; }

      .bento {
        grid-template-columns: repeat(2, 1fr);
      }

      .card--tagline { grid-column: 1; grid-row: 1; }
      .card--icon-toggle { grid-column: 2; grid-row: 1; }
      .card--hero { grid-column: 1 / 3; grid-row: 2; min-height: 340px; }
      .card--stat-left { grid-column: 1; grid-row: 3; }
      .card--stat-right { grid-column: 2; grid-row: 3; }
      .services-section { grid-column: 1 / 3; grid-row: 4; }
      .showcase-row { grid-column: 1 / 3; grid-row: 5; }
      .card--cta { grid-column: 1 / 3; grid-row: 6; }
      .card--feature-1 { grid-column: 1; grid-row: 7; }
      .card--feature-2 { grid-column: 2; grid-row: 7; }
      .card--feature-3 { grid-column: 1 / 3; grid-row: 8; }

      .card { padding: 22px; }
      .card--hero { padding: 28px 24px 0; }
      .hero-title { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
      .orb-wrapper { width: 170px; height: 170px; }

      .contact-line { font-size: 0.75rem; }
      .contact-line svg { width: 12px; height: 12px; }
    }

    @media (max-width: 560px) {
      body { padding: 0.5rem; }
      :root { --gap: 8px; --radius: 14px; --radius-sm: 10px; }
      .bento { grid-template-columns: 1fr; }

      .card--tagline,
      .card--icon-toggle,
      .card--hero,
      .card--stat-left,
      .card--stat-right,
      .services-section,
      .showcase-row,
      .card--cta,
      .card--feature-1,
      .card--feature-2,
      .card--feature-3 {
        grid-column: 1 !important;
        grid-row: auto !important;
      }

      /* Cards allgemein */
      .card { padding: 18px; }
      .card:hover { transform: none; box-shadow: none; }

      /* Tagline */
      .card--tagline { min-height: auto; }
      .tagline-heading { font-size: 1.3rem; }
      .tagline-heading br { display: none; }
      .tagline-icon { width: 36px; height: 36px; margin-bottom: 14px; }
      .tagline-icon svg { width: 22px; height: 22px; }

      /* Hero */
      .card--hero {
        min-height: 280px;
        padding: 24px 18px 0;
      }
      .hero-brand { font-size: 0.7rem; margin-bottom: 10px; }
      .hero-title {
        font-size: 1.5rem;
        margin-bottom: 16px;
        max-width: 100%;
      }
      .orb-wrapper { width: 120px; height: 120px; }
      .orb-glow { inset: -20px; }
      .orb-binary { inset: -25px; }
      .orb-ring { inset: -14px; }
      .orb-ring-inner { inset: -5px; }

      /* Blog + Theme Toggle nebeneinander */
      .card--icon-toggle {
        flex-direction: row;
        min-height: auto;
        gap: var(--gap);
      }
      .mini-card {
        padding: 12px;
        flex: 1;
      }
      .mini-card--blog {
        flex-direction: row;
        gap: 8px;
      }
      .mini-card--theme {
        flex-direction: row;
        gap: 10px;
      }
      .theme-toggle { flex-direction: row; align-items: center; gap: 8px; }
      .toggle-track { width: 46px; height: 26px; }
      .toggle-knob { width: 18px; height: 18px; }
      .toggle-knob svg { width: 10px; height: 10px; }
      body.light .toggle-knob { transform: translateX(20px); }

      /* Stats */
      .stat-number { font-size: 1.8rem; }
      .stat-label { font-size: 0.75rem; }
      .stat-shimmer { margin-top: 12px; }

      /* Services Carousel */
      .services-header { margin-bottom: 10px; }
      .services-title { font-size: 0.7rem; }
      .services-track-wrapper {
        -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 1%, black 99%, transparent 100%);
        mask-image: linear-gradient(90deg, transparent 0%, black 1%, black 99%, transparent 100%);
      }
      .service-card {
        flex: 0 0 200px;
        padding: 16px;
      }
      .service-name { font-size: 0.8rem; }
      .service-desc { font-size: 0.7rem; }
      .service-link { font-size: 0.65rem; }

      /* Showcase */
      .showcase-row { grid-template-columns: 1fr; }
      .card--showcase { padding: 18px; }
      .showcase-title { font-size: 0.82rem; }
      .showcase-desc { font-size: 0.75rem; }

      /* CTA */
      .contact-line { font-size: 0.72rem; line-height: 1.6; }
      .contact-line a { word-break: break-all; }
      .contact-line svg { width: 12px; height: 12px; }
      .contact-location { font-size: 0.68rem; }
      .btn-cta { padding: 12px 18px; font-size: 0.8rem; }
      .btn-cta svg { width: 16px; height: 16px; }

      /* Features */
      .feature-icon { width: 36px; height: 36px; margin-bottom: 12px; }
      .feature-icon svg { width: 16px; height: 16px; }
      .feature-title { font-size: 0.88rem; }
      .feature-desc { font-size: 0.75rem; }
      .template-pills { gap: 3px; margin-top: 12px; }
      .pill { padding: 4px 7px; font-size: 0.58rem; }

      /* Footer */
      .site-footer { margin-top: 14px; padding: 12px 0 0; }
      .footer-links { gap: 8px; }
      .footer-links a { font-size: 0.62rem; }
    }