/* ============================================================
   Daedal Labs — shared stylesheet
   ============================================================ */

   :root {
    --aether:       #3E6E9E;
    --aether-dim:   #2a4f75;
    --aether-faint: rgba(62,110,158,0.07);
    --aether-line:  rgba(62,110,158,0.18);
    --marble:       #F5F6FA;
    --obsidian:     #0E0E0E;
    --brass:        #CDAE6B;
    --icarus:       #E46049;
    --body-text:    #1c1c1c;
    --muted:        #6b7280;
  }
  
  *, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  html {
    scroll-behavior: smooth;
  }
  
  body {
    font-family: 'Manrope', system-ui, sans-serif;
    font-size: 1rem;
    line-height: 1.65;
    color: var(--body-text);
    background: var(--marble);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }
  
  /* ============================================================
     HEX UTILITIES
     ============================================================ */
  
  .hex-bullet {
    display: inline-block;
    width: 9px;
    height: 9px;
    background: var(--aether);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    flex-shrink: 0;
  }
  
  .eyebrow {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Manrope', sans-serif;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--aether);
    margin-bottom: 1.75rem;
  }
  
  /* ============================================================
     NAVIGATION
     ============================================================ */
  
  .site-nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--marble);
    border-bottom: 1px solid var(--aether-line);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 2.5rem;
  }
  
  .wordmark {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 0.9375rem;
    letter-spacing: 0.12em;
    color: var(--aether);
    text-decoration: none;
  }
  
  .nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    list-style: none;
  }
  
  .nav-links a {
    font-family: 'Manrope', sans-serif;
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--body-text);
    text-decoration: none;
    transition: color 0.2s;
  }
  
  .nav-links a:hover {
    color: var(--aether);
  }
  
  .nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.25rem;
    color: var(--body-text);
  }
  
  .nav-toggle svg {
    display: block;
    width: 22px;
    height: 22px;
  }
  
  /* ============================================================
     BUTTONS
     ============================================================ */
  
  .btn,
  a.btn {
    display: inline-block;
    background: var(--aether);
    color: var(--marble);
    font-family: 'Manrope', sans-serif;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 1rem 2.5rem;
    border: none;
    cursor: pointer;
    clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
    transition: background 0.2s;
    position: relative;
    z-index: 2;
  }
  
  .btn:hover,
  a.btn:hover {
    background: var(--aether-dim);
    color: var(--marble);
  }
  
  .btn-light,
  a.btn-light {
    background: var(--marble);
    color: var(--aether);
  }
  
  .btn-light:hover,
  a.btn-light:hover {
    background: #e8eaf2;
    color: var(--aether);
  }
  
  /* ============================================================
     HERO
     ============================================================ */
  
  .hero-wrap {
    position: relative;
    overflow: hidden;
    background: var(--marble);
  }
  
  .hero {
    position: relative;
    z-index: 1;
    max-width: 820px;
    margin: 0 auto;
    padding: 6rem 2.5rem 5rem;
  }
  
  .hero h1 {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: clamp(2rem, 5.5vw, 3.75rem);
    line-height: 1.08;
    color: var(--obsidian);
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
  }
  
  .hero h1 em {
    font-style: normal;
    color: var(--aether);
  }
  
  .hero .subhead {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(1rem, 2vw, 1.1875rem);
    font-weight: 400;
    color: var(--body-text);
    opacity: 0.65;
    max-width: 560px;
    margin-bottom: 2.75rem;
  }
  
  /* Hex cluster — decorative, right side of hero */
  .hex-cluster {
    position: absolute;
    right: -60px;
    top: 50%;
    transform: translateY(-50%);
    width: 480px;
    height: 480px;
    opacity: 0.06;
    pointer-events: none;
    z-index: 0;
  }
  
  /* ============================================================
     DARK SECTIONS
     ============================================================ */
  
  .dark-section {
    position: relative;
    background: var(--obsidian);
    overflow: hidden;
  }
  
  /* Hex grid tiled background */
  .hex-grid-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0.045;
    pointer-events: none;
    z-index: 0;
  }
  
  /* ============================================================
     SERVICES
     ============================================================ */
  
  .services-inner {
    position: relative;
    z-index: 1;
    max-width: 960px;
    margin: 0 auto;
    padding: 4rem 2.5rem;
  }
  
  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
  
  .service-card {
    position: relative;
    background: rgba(14, 14, 14, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 2rem;
    transition: background 0.25s, border-color 0.25s;
    overflow: hidden;
  }
  
  .service-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--aether);
    opacity: 0;
    transition: opacity 0.25s;
  }
  
  .service-card:hover {
    background: rgba(62, 110, 158, 0.15);
    border-color: rgba(62, 110, 158, 0.4);
  }
  
  .service-card:hover::before {
    opacity: 1;
  }
  
  .card-icon {
    display: block;
    width: 10px;
    height: 10px;
    background: var(--aether);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    margin-bottom: 1rem;
  }
  
  .service-card h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 1.0625rem;
    color: var(--aether);
    margin-bottom: 0.75rem;
    letter-spacing: 0.01em;
  }
  
  .service-card p {
    font-family: 'Manrope', sans-serif;
    font-size: 0.9375rem;
    color: var(--marble);
    opacity: 0.75;
    line-height: 1.65;
  }
  
  /* ============================================================
     ABOUT
     ============================================================ */
  
  .about-wrap {
    position: relative;
    overflow: hidden;
    background: var(--marble);
  }
  
  .about {
    position: relative;
    z-index: 1;
    padding: 5rem 2.5rem;
    max-width: 720px;
    margin: 0 auto;
  }
  
  .about p {
    font-family: 'Manrope', sans-serif;
    font-size: 1.0625rem;
    color: var(--body-text);
    line-height: 1.75;
    margin-bottom: 1.25rem;
  }
  
  .about p:last-child {
    margin-bottom: 0;
  }
  
  .hex-accent-left {
    position: absolute;
    left: -80px;
    top: 50%;
    transform: translateY(-50%);
    width: 320px;
    height: 320px;
    opacity: 0.04;
    pointer-events: none;
    z-index: 0;
  }
  
  /* ============================================================
     STAT / INFO BLOCKS
     ============================================================ */
  
  .stat-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
    margin-top: 2.5rem;
  }
  
  .stat-block {
    background: var(--marble);
    border: 1px solid var(--aether-line);
    border-bottom: 2px solid rgba(62, 110, 158, 0.3);
    padding: 1.5rem 1.25rem;
  }
  
  .stat-block .hex-bullet {
    display: block;
    margin-bottom: 0.75rem;
  }
  
  .stat-num {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 2rem;
    color: var(--aether);
    line-height: 1;
    margin-bottom: 0.375rem;
  }
  
  .stat-label {
    font-family: 'Manrope', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--muted);
  }
  
  /* ============================================================
     CTA SECTION
     ============================================================ */
  
  .cta-section {
    text-align: center;
  }
  
  .cta-inner {
    position: relative;
    z-index: 1;
    padding: 6rem 2.5rem;
  }
  
  .cta-section h2 {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    color: var(--marble);
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
  }
  
  .cta-section .cta-sub {
    font-family: 'EB Garamond', Georgia, serif;
    font-style: italic;
    font-size: 1.1875rem;
    color: var(--marble);
    opacity: 0.65;
    margin-bottom: 2.5rem;
  }
  
  /* ============================================================
     FOOTER
     ============================================================ */
  
  .site-footer {
    background: #080808;
    padding: 3rem 2.5rem;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 1.5rem;
  }
  
  .footer-wordmark {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    color: var(--aether);
    text-decoration: none;
  }
  
  .footer-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    justify-content: center;
  }
  
  .footer-links a {
    font-family: 'Manrope', sans-serif;
    font-size: 0.8125rem;
    color: var(--marble);
    text-decoration: none;
    opacity: 0.4;
    transition: opacity 0.2s;
  }
  
  .footer-links a:hover {
    opacity: 1;
  }
  
  .footer-meta {
    font-family: 'Manrope', sans-serif;
    font-size: 0.75rem;
    color: var(--marble);
    opacity: 0.35;
    text-align: right;
    line-height: 1.6;
  }
  
  /* ============================================================
     AUDIT PAGE — WHAT WE LOOK AT
     ============================================================ */
  
  .audit-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
  
  .audit-item {
    position: relative;
    background: rgba(14, 14, 14, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 2rem;
    transition: background 0.25s, border-color 0.25s;
    overflow: hidden;
  }
  
  .audit-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--aether);
    opacity: 0;
    transition: opacity 0.25s;
  }
  
  .audit-item:hover {
    background: rgba(62, 110, 158, 0.15);
    border-color: rgba(62, 110, 158, 0.4);
  }
  
  .audit-item:hover::before {
    opacity: 1;
  }
  
  .audit-item h4 {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 0.9375rem;
    color: var(--marble);
    margin-bottom: 0.5rem;
  }
  
  .audit-item .recovered {
    font-family: 'Manrope', sans-serif;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--aether);
  }
  
  /* ============================================================
     AUDIT PAGE — HOW IT WORKS
     ============================================================ */
  
  .steps {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    max-width: 600px;
  }
  
  .step {
    display: flex;
    gap: 1.75rem;
    align-items: flex-start;
  }
  
  .step-num {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 2.25rem;
    color: var(--aether);
    line-height: 1;
    flex-shrink: 0;
    width: 2.5rem;
    text-align: right;
  }
  
  .step-content {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
    padding-top: 0.375rem;
  }
  
  .step-content .hex-bullet {
    margin-bottom: 0.25rem;
  }
  
  .step p {
    font-family: 'Manrope', sans-serif;
    font-size: 1rem;
    color: var(--body-text);
    line-height: 1.65;
  }
  
  /* ============================================================
     AUDIT PAGE — WHAT YOU RECEIVE
     ============================================================ */
  
  .receive-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
  
  .receive-block {
    background: var(--marble);
    border: 1px solid var(--aether-line);
    border-bottom: 2px solid rgba(62, 110, 158, 0.3);
    padding: 2rem 1.5rem;
  }
  
  .receive-block h4 {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 1rem;
    color: var(--aether);
    margin-bottom: 0.75rem;
  }
  
  .receive-block p {
    font-family: 'Manrope', sans-serif;
    font-size: 0.9375rem;
    color: var(--body-text);
    opacity: 0.7;
    line-height: 1.7;
  }
  
  /* ============================================================
     CLOSING QUOTE
     ============================================================ */
  
  .closing-note {
    font-family: 'EB Garamond', Georgia, serif;
    font-style: italic;
    font-size: 1.1875rem;
    color: var(--muted);
    line-height: 1.75;
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
  }
  
  /* ============================================================
     SECTION WRAPPER
     ============================================================ */
  
  .section-wrap {
    max-width: 960px;
    margin: 0 auto;
    padding: 4rem 2.5rem;
  }
  
  .section-wrap h2 {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    color: var(--body-text);
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
  }
  
  .section-wrap .section-sub {
    font-family: 'Manrope', sans-serif;
    font-size: 1rem;
    color: var(--muted);
    margin-bottom: 2.5rem;
  }
  
  /* ============================================================
     AUDIT HERO
     ============================================================ */
  
  .audit-hero-wrap {
    position: relative;
    overflow: hidden;
    background: var(--marble);
  }
  
  .audit-hero {
    position: relative;
    z-index: 1;
    max-width: 820px;
    margin: 0 auto;
    padding: 6rem 2.5rem 4rem;
  }
  
  .audit-hero h1 {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: clamp(2rem, 5vw, 3.25rem);
    color: var(--aether);
    line-height: 1.1;
    margin-bottom: 1.25rem;
    letter-spacing: -0.01em;
  }
  
  .audit-hero .subhead {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(1rem, 2vw, 1.125rem);
    color: var(--body-text);
    opacity: 0.65;
    max-width: 600px;
  }
  
  /* ============================================================
     SCROLL ANIMATION
     ============================================================ */
  
  .animate-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.55s ease, transform 0.55s ease;
  }
  
  .animate-in.visible {
    opacity: 1;
    transform: translateY(0);
  }
  
  /* ============================================================
     MOBILE
     ============================================================ */
  
  @media (max-width: 768px) {
    .site-nav {
      padding: 1rem 1.5rem;
      position: relative;
    }
  
    .nav-toggle {
      display: block;
    }
  
    .nav-links {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      flex-direction: column;
      background: var(--marble);
      border-bottom: 1px solid var(--aether-line);
      padding: 1.25rem 1.5rem;
      gap: 1.25rem;
      z-index: 99;
    }
  
    .nav-links.open {
      display: flex;
    }
  
    .hero {
      padding: 4rem 1.5rem 3.5rem;
    }
  
    .hex-cluster {
      width: 280px;
      height: 280px;
      right: -80px;
      opacity: 0.04;
    }
  
    .hex-accent-left {
      display: none;
    }
  
    .services-inner {
      padding: 3.5rem 1.5rem;
    }
  
    .services-grid {
      grid-template-columns: 1fr;
    }
  
    .about {
      padding: 3.5rem 1.5rem;
    }
  
    .cta-inner {
      padding: 4rem 1.5rem;
    }
  
    .section-wrap {
      padding: 3.5rem 1.5rem;
    }
  
    .audit-hero {
      padding: 4rem 1.5rem 3rem;
    }
  
    .audit-grid {
      grid-template-columns: 1fr 1fr;
    }
  
    .receive-grid {
      grid-template-columns: 1fr;
    }
  
    .site-footer {
      grid-template-columns: 1fr;
      gap: 1.25rem;
      padding: 2.5rem 1.5rem;
    }
  
    .footer-meta {
      text-align: left;
    }
  
    .footer-links {
      justify-content: flex-start;
    }
  
    .stat-row {
      grid-template-columns: 1fr 1fr;
    }
  }
  
  @media (max-width: 480px) {
    .audit-grid {
      grid-template-columns: 1fr;
    }
  
    .stat-row {
      grid-template-columns: 1fr;
    }
  }