/*!******************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./technologies/veritainer/veritainer.css ***!
  \******************************************************************************************/
/* --- LAYOUT OVERRIDES --- */
body {
    background-color: #0B1120;
    overflow-x: hidden;
}

.visual-stage {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100vh;
    z-index: 0;
}

.visual-stage canvas {
    display: block; width: 100%; height: 100%;
    outline: none;
}

/* --- HUD LAYER --- */
#hud-layer {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    pointer-events: none;
    z-index: 5;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* --- TEXT UI LAYER --- */
.ui-layer {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    pointer-events: none;
    z-index: 10;
    display: flex;
    flex-direction: column;
}

/* --- DESKTOP DEFAULT STYLING --- */
/* (This assumes min-width 900px is the primary design target, then overrides for mobile below) */

/* The Glass Card */
.content-stack {
    position: absolute;
    top: 34%;
    left: clamp(1.5rem, 6vw, 5rem);
    width: calc(100% - 3rem);
    max-width: 500px;

    background: linear-gradient(90deg, rgba(11, 17, 32, 0.72), rgba(11, 17, 32, 0.48));
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);

    border: 1px solid rgba(148, 163, 184, 0.16);
    border-radius: 8px;

    box-shadow: 0 18px 34px -20px rgba(0,0,0,0.65);

    padding: 2rem 2.25rem;
    min-height: 270px;

    display: flex;
    align-items: center;
    pointer-events: auto;
}

/* Slides */
.step-block {
    position: absolute;
    top: 50%;
    left: 4rem;
    right: 2.5rem;
    transform: translateY(-40%);

    opacity: 0;
    transition: all 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
    pointer-events: none;
}

.step-block.active {
    opacity: 1;
    transform: translateY(-50%);
    pointer-events: auto;
    z-index: 2;
}

/* Typography (Desktop Default) */
.step-block h1 {
    color: #fff;
    text-shadow: none;
    margin-bottom: 0.75rem;
    /* font-size: 3rem;  */
    margin-bottom: 1rem;
}
.step-block h2 {
    color: #fff;
    text-shadow: none;
    margin-bottom: 0.75rem;
    /* font-size: 2.5rem;  */
    margin-bottom: 1rem;
}
.step-block p, .step-block .lede {
    color: #94A3B8;
    text-shadow: none;
    line-height: 1.6;
    /* font-size: 1.1rem; */
}

/* Chapter Nav (Desktop) */
.chapter-nav {
    position: absolute;
    left: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 50;
    display: flex;
    flex-direction: column;
    gap: 1.0rem;
}

.chapter-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
}

.chapter-dot:hover {
    background: rgba(255, 255, 255, 0.6);
    border-color: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

.chapter-dot.active {
    background: #2DD4BF;
    border-color: #2DD4BF;
    box-shadow: 0 0 10px rgba(45, 212, 191, 0.5);
    transform: scale(1.2);
}

/* Verification Badge (Desktop) */
#verification-badge {
    position: absolute;
    bottom: 43%;
    right: 25vw;
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 800;
    color: #22c55e;
    text-transform: uppercase;
    border: 3px solid #22c55e;
    padding: 1rem 3rem;
    letter-spacing: 0.15em;
    background: rgba(0, 20, 10, 0.9);
    backdrop-filter: blur(8px);
    box-shadow: 0 0 30px rgba(34, 197, 94, 0.3);

    opacity: 0;
    transform: scale(0.9);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

#verification-badge.active {
    opacity: 1;
    transform: scale(1);
}

/* Inspection HUD (Desktop) */
#rad-monitor {
    position: absolute;
    bottom: 5vh;
    right: 5vw;
    width: 300px;
    background: rgba(15, 23, 42, 0.86);
    border: 1px solid rgba(45, 212, 191, 0.32);
    border-radius: 8px;
    padding: 1rem;
    font-family: 'Manrope', monospace;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.5s ease;
}

#rad-monitor.active { opacity: 1; transform: translateY(0); }

.hud-divider {
    height: 1px;
    background: rgba(148, 163, 184, 0.22);
    margin: 0.9rem 0 0.75rem;
}

.results-header {
    color: #2DD4BF;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    margin-bottom: 0.65rem;
}

.result-row {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    color: #CBD5E1;
    font-size: 0.82rem;
    line-height: 1.5;
}

.result-row strong {
    color: #22C55E;
    font-size: 0.78rem;
}

/* --- SHARED UTILS --- */
.eyebrow.alert { color: #F59E0B; }
.eyebrow.accent { color: #2DD4BF; }
.eyebrow.success { color: #22C55E; }
.micro-line { border-left: 2px solid #2DD4BF; padding-left: 1rem; color: #2DD4BF; font-family: 'Sora', sans-serif; margin-top: 1rem; }

.rad-header { font-size: 0.75rem; color: #94A3B8; letter-spacing: 0.1em; margin-bottom: 0.5rem; display: flex; align-items: center; gap: 6px; }
.rad-icon { color: #F59E0B; animation: pulse 2s infinite; }
.rad-body { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 0.5rem; }
.rad-body .status { color: #38BDF8; font-weight: 700; font-size: 1.2rem; }
.rad-body .value { color: #64748B; font-size: 0.9rem; }
.graph-line { width: 100%; height: 2px; background: #334155; position: relative; overflow: hidden; }
.graph-line::after { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: #38BDF8; transform: translateX(-100%); animation: scanLine 2s linear infinite; }

#cinematic-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background-color: #000000; opacity: 0.5; z-index: 2; pointer-events: none;
    transition: opacity 0.1s linear;
}

.scroll-track { position: relative; width: 100%; z-index: -1; }
.scroll-spacer { height: 100vh; position: relative; }
.spacer-footer { height: 50vh; }

@keyframes pulse { 0% { opacity: 0.5; } 50% { opacity: 1; } 100% { opacity: 0.5; } }
@keyframes scanLine { 0% { transform: translateX(-100%); } 100% { transform: translateX(100%); } }


/* =========================================
   MOBILE OVERRIDES
   ========================================= */
@media (max-width: 900px) {

    /* 1. Card moves to bottom sheet */
    .content-stack {
        top: auto;
        bottom: 1vh;
        left: 2.5%;
        width: 95%;
        min-height: 280px;
        padding: 1rem;
        display: flex;
        flex-direction: column;
    }

    /* 2. Text layout adjustments */
    .step-block {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: space-evenly;
        height: 100%;
        padding: 2rem;
        left: 1.5rem;
        right: 1.5rem;
    }

    /* 3. Typography scaling for mobile */
    .step-block h1 { font-size: 4rem; margin-bottom: 0.75rem; line-height: 1.1; }
    .step-block h2 { font-size: 3rem; margin-bottom: 0.75rem; line-height: 1.2; }
    .step-block p, .step-block .lede { font-size: 1.3rem; line-height: 1.5; }

    /* 4. Hide Nav Dots on Mobile */
    .chapter-nav { display: none; }

    /* 5. Adjust Verification Badge Position */
    #verification-badge {
        bottom: 40vh; /* Higher so it clears the card */
        right: 50%;
        transform: translateX(50%) scale(0.8);
        padding: 0.5rem 2rem;
        font-size: 2rem;
    }
    #verification-badge.active {
        opacity: 1;
        transform: translateX(50%) scale(1);
    }

    /* 6. Adjust Rad Monitor Position */
    #rad-monitor {
        bottom: auto;
        top: 15rem; /* Move to Top Right */
        right: 3rem;
        width: min(300px, calc(100vw - 2rem));
        padding: 0.75rem;
        transform: translateY(-10px);
    }
    #rad-monitor.active { transform: translateY(0); }
}

/*!******************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./css/global.css ***!
  \******************************************************************/
:root {
  --bg: #F8FAFC;
  --panel: #ffffff;
  --edge: #E2E8F0;
  --edge-strong: #CBD5E1;
  --muted: #64748B;
  --text: #0F172A;
  
  /* Brand Colors */
  --accent: #0F766E;        /* Teal 700 */
  --accent-light: #14B8A6;  /* Teal 500 */
  --accent-dark: #134E4A;   /* Teal 900 */
  --amber: #D97706;
  
  /* UI Tokens */
  --radius: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.05), 0 2px 4px -1px rgba(0,0,0,0.03);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.05), 0 4px 6px -2px rgba(0,0,0,0.025);
  --max-width: 1200px;
  
  --font-display: "Sora", sans-serif;
  --font-body: "Manrope", sans-serif;
}

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

html { font-size: 62.5%; scroll-behavior: smooth; }

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1.6rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

main {
  padding: 0 0 6rem;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; transition: color 0.2s; }
ul { padding: 0; margin: 0; list-style: none; }

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--text);
  margin: 0;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(3.6rem, 5vw, 5.6rem); line-height: 1.1; }
h2 { font-size: clamp(2.8rem, 3vw, 3.6rem); line-height: 1.2; }
h3 { font-size: 2rem; font-weight: 600; }

p { margin: 0; color: var(--muted); }

.container {
  width: min(var(--max-width), 100% - 4rem);
  margin: 0 auto;
}

.section {
  margin: 6rem 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.2rem 2rem;
  border-radius: 99px;
  font-weight: 700;
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 1px solid transparent;
}

.btn.primary {
  background: var(--accent);
  color: white;
  box-shadow: 0 4px 12px rgba(15, 118, 110, 0.2);
}
.btn.primary:hover { background: var(--accent-dark); transform: translateY(-1px); }

.btn.ghost { background: transparent; color: var(--text); border-color: var(--edge-strong); }
.btn.ghost:hover { background: #fff; border-color: var(--text); }

.btn.small { padding: 0.8rem 1.6rem; font-size: 1.4rem; }

/* Dark Mode Overrides for Hero Buttons */
.btn.on-dark.primary { background: #fff; color: var(--accent-dark); }
.btn.on-dark.ghost { color: #fff; border-color: rgba(255,255,255,0.3); }
.btn.on-dark.ghost:hover { background: rgba(255,255,255,0.1); border-color: #fff; }

.pill {
  display: inline-flex;
  padding: 0.4rem 1rem;
  border-radius: 99px;
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pill.dark-mode {
  background: rgba(255,255,255,0.15);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(4px);
}

.eyebrow {
  text-transform: uppercase;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 0.8rem;
  display: block;
}

/* Nav */
.site-nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  z-index: 1000;
}
.nav-inner { display: flex; justify-content: space-between; align-items: center; min-height: 10rem;}
.brand { display: flex; gap: 1rem; align-items: center; font-weight: 700; color: var(--text); }
.brand-logo { height: 6.5rem; width: auto; }
.nav-links { display: flex; gap: 2rem; align-items: center; }
.nav-links a:not(.btn) { font-weight: 600; font-size: 1.4rem; color: var(--muted); }
.nav-links a:not(.btn):hover { color: var(--text); }

/* Navigation Toggle */
.nav-toggle {
  display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--text); }
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
}
.nav-overlay {
  display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 40;
  align-items: flex-start; justify-content: center; padding-top: 2rem;
}
.nav-overlay.open { display: flex; }
.nav-overlay__card {
  background: #fff; padding: 2rem; border-radius: var(--radius-lg); width: 90%; max-width: 400px;
}
.nav-menu { display: flex; flex-direction: column; gap: 1rem; }
.nav-menu a { display: block; padding: 1rem; font-weight: 600; color: var(--text); }
.close-icon {
  /* Positioning inside the relative drawer header */
  position: absolute;
  top: 2rem;
  right: 2rem;

  /* Reset Default Button Styles */
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;

  /* Sizing & Layout */
  width: 40px;  /* Large hit area for fingers */
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;

  /* Typography for the "&times;" symbol */
  font-size: 3.2rem; /* Makes the X big enough to look like an icon */
  line-height: 1;    /* Prevents text spacing from pushing it off-center */
  font-weight: 400;  /* Standard weight for the symbol */
  
  /* Colors & Transition */
  color: var(--muted);
  transition: all 0.2s ease;
  z-index: 10;
}

/* Hover Effect */
.close-icon:hover {
  color: var(--accent); /* Turns Teal on hover */
  transform: scale(1.1) rotate(90deg); /* Adds a subtle spin/grow effect */
}

/* Footer */
footer { padding: 4rem 0; border-top: 1px solid var(--edge); text-align: center; color: var(--muted); font-size: 1.4rem; }


/* Utilities */
.is-hidden { display: none !important; }
html.auth-pending body { visibility: hidden; }

/* Form controls */
.input {
  width: 100%;
  padding: 1.2rem 1.4rem;
  border-radius: var(--radius);
  border: 1px solid var(--edge);
  background: #fff;
  color: var(--text);
  font-size: 1.5rem;
}
.input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.15);
}
.input-row { display: flex; gap: 0.8rem; align-items: stretch; }
.check-row { display: flex; align-items: center; gap: 0.8rem; color: var(--muted); font-weight: 600; font-size: 1.4rem; }

.info-banner {
  border: 1px solid rgba(20,184,166,0.35);
  background: rgba(20,184,166,0.08);
  color: var(--text);
  padding: 1.2rem 1.2rem;
  border-radius: var(--radius);
}
.error-banner {
  border: 1px solid rgba(239,68,68,0.35);
  background: rgba(239,68,68,0.08);
  color: var(--text);
  padding: 1.2rem 1.2rem;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 1.4rem;
}

