<style>
  /* ===== PRIMO OBSIDIAN DESIGN SYSTEM ===== */
  
  /* Reset & Base */
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: #0B0E11;
    color: #94A3B8;
    line-height: 1.6;
    overflow-x: hidden;
  }
  
  /* Typography */
  h1, h2, h3, h4, h5, h6 {
    color: #FFFFFF;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
  }
  
  h1 { font-size: 3.5rem; }
  h2 { font-size: 2.5rem; }
  h3 { font-size: 1.75rem; }
  h4 { font-size: 1.25rem; }
  
  p {
    color: #94A3B8;
    margin-bottom: 1rem;
  }
  
  a {
    color: #00E5FF;
    text-decoration: none;
    transition: all 0.3s ease;
  }
  
  a:hover {
    color: #FFFFFF;
  }
  
  /* Container */
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
  }
  
  .container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
  }
  
  /* Buttons */
  .btn {
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    display: inline-block;
    text-align: center;
  }
  
  .btn-primary {
    background: #00E5FF;
    color: #0B0E11;
    border: 1px solid #00E5FF;
  }
  
  .btn-primary:hover {
    background: transparent;
    color: #00E5FF;
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.4);
  }
  
  .btn-secondary {
    background: transparent;
    color: #FFFFFF;
    border: 1px solid rgba(255, 255, 255, 0.2);
  }
  
  .btn-secondary:hover {
    border-color: #00E5FF;
    color: #00E5FF;
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.2);
  }
  
  /* ===== HERO SECTION ===== */
  .hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 4rem;
    padding: 6rem 5%;
    min-height: 90vh;
  }
  
  .hero-content {
    max-width: 600px;
  }
  
  .hero-content h1 {
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
    background: linear-gradient(135deg, #FFFFFF 0%, #00E5FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  
  .hero-content p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    line-height: 1.8;
  }
  
  .hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
  }
  
  .hero-image {
    position: relative;
    min-height: 500px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
    background-image: 
      radial-gradient(circle at center, rgba(0, 229, 255, 0.1) 0%, transparent 70%),
      linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 100% 100%, 40px 40px, 40px 40px;
    background-position: center, 0 0, 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .terminal-overlay {
    background: rgba(11, 14, 17, 0.9);
    border: 1px solid rgba(0, 229, 255, 0.3);
    border-radius: 6px;
    padding: 1.5rem;
    max-width: 400px;
    font-family: 'Courier New', Courier, monospace;
    box-shadow: 0 0 30px rgba(0, 229, 255, 0.2);
  }
  
  .terminal-header {
    display: flex;
    gap: 6px;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .terminal-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
  }
  
  .terminal-dot:first-child { background: rgba(255, 95, 86, 0.8); }
  .terminal-dot:nth-child(2) { background: rgba(255, 189, 46, 0.8); }
  .terminal-dot:nth-child(3) { background: rgba(39, 201, 63, 0.8); }
  
  .terminal-body {
    font-size: 0.875rem;
    line-height: 1.8;
  }
  
  .terminal-line {
    color: #94A3B8;
    margin-bottom: 0.5rem;
  }
  
  .terminal-prompt {
    color: #00E5FF;
  }
  
  .terminal-success {
    color: #10B981;
  }
  
  .terminal-cursor {
    display: inline-block;
    width: 8px;
    height: 14px;
    background: #00E5FF;
    margin-left: 2px;
    animation: blink 1s infinite;
  }
  
  @keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
  }
  
  /* ===== TECH STACK MANIFEST ===== */
  .logo-section {
    padding: 4rem 5%;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(255, 255, 255, 0.01);
  }
  
  .logo-section-title {
    text-align: center;
    margin-bottom: 2.5rem;
  }
  
  .logo-section-title h2 {
    font-size: 1rem;
    font-weight: 500;
    color: #00E5FF;
    text-transform: uppercase;
    letter-spacing: 2px;
  }
  
  .tech-manifest {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
  }
  
  .tech-logo {
    height: 45px;
    width: auto;
    color: #FFFFFF;
    opacity: 0.5;
    transition: all 0.3s ease;
    cursor: pointer;
  }
  
  .tech-logo:hover {
    color: #00E5FF;
    opacity: 1;
    transform: translateY(-2px);
    filter: drop-shadow(0 0 8px rgba(0, 229, 255, 0.4));
  }
  
  .tech-divider {
    font-size: 1.25rem;
    color: #00E5FF;
    opacity: 0.3;
    font-weight: 300;
    font-family: 'Courier New', Courier, monospace;
    line-height: 1;
    display: flex;
    align-items: center;
  }
  
  /* ===== NEWSLETTER / PRIMO BRIEF ===== */
  .newsletter-section {
    background: rgba(255, 255, 255, 0.03);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 5rem 5%;
    text-align: center;
  }
  
  .newsletter-content {
    max-width: 800px;
    margin: 0 auto;
  }
  
  .newsletter-content .tagline {
    color: #00E5FF;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
  }
  
  .newsletter-content h2 {
    margin-bottom: 1.5rem;
  }
  
  .newsletter-content p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
  }
  
  .newsletter-form {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
  }
  
  /* ===== GLASS CARDS / SERVICES GRID ===== */
  .services-section {
    padding: 6rem 5%;
  }
  
  .services-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
  }
  
  .services-header .tagline {
    color: #00E5FF;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
  }
  
  .services-header h2 {
    margin-bottom: 1.5rem;
  }
  
  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
  }
  
  .glass-card {
    position: relative;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    min-height: 500px;
    display: flex;
    flex-direction: column;
  }
  
  .glass-card:hover {
    border-color: #00E5FF;
    box-shadow: 0 0 30px rgba(0, 229, 255, 0.3);
    transform: translateY(-4px);
  }
  
  .card-icon-container {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 0;
    background-image: 
      radial-gradient(circle at center, rgba(0, 229, 255, 0.1) 0%, transparent 70%),
      linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 100% 100%, 40px 40px, 40px 40px;
    background-position: center, 0 0, 0 0;
  }
  
  .card-icon {
    width: 80px;
    height: 80px;
    color: #00E5FF;
    filter: drop-shadow(0 0 10px rgba(0, 229, 255, 0.4));
    transition: all 0.4s ease;
  }
  
  .glass-card:hover .card-icon {
    transform: scale(1.1);
    filter: drop-shadow(0 0 20px rgba(0, 229, 255, 0.6));
  }
  
  .card-content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
  }
  
  .card-category {
    color: #00E5FF;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.75rem;
  }
  
  .card-content h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
  }
  
  .card-content p {
    margin-bottom: 1.5rem;
    flex: 1;
  }
  
  .card-link {
    color: #00E5FF;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
  }
  
  .card-link:hover {
    gap: 0.75rem;
  }
  
  /* ===== CTA SECTION ===== */
  .cta-section {
    padding: 8rem 5%;
    text-align: center;
    background: linear-gradient(180deg, #0B0E11 0%, rgba(0, 229, 255, 0.05) 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }
  
  .cta-content {
    max-width: 800px;
    margin: 0 auto;
  }
  
  .cta-content h2 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #FFFFFF 0%, #00E5FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  
  .cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
  }
  
  .cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
  }
  
  /* ===== RESPONSIVE ===== */
  @media (max-width: 1024px) {
    .hero {
      grid-template-columns: 1fr;
      padding: 4rem 5%;
    }
    
    .hero-content h1 {
      font-size: 3.5rem;
    }
    
    .services-grid {
      grid-template-columns: 1fr;
    }
  }
  
  @media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    
    .hero-content h1 {
      font-size: 2.5rem;
    }
    
    .hero-image {
      min-height: 400px;
    }
    
    .terminal-overlay {
      max-width: 90%;
      padding: 1rem;
    }
    
    .cta-content h2 {
      font-size: 2.5rem;
    }
  }
</style>