cat > styles.css <<'EOF'
:root{
  --navy:#102647;
  --navy-2:#0a1d37;
  --blue:#2463eb;
  --blue-dark:#1748b6;
  --text:#172033;
  --muted:#667085;
  --bg:#f6f8fc;
  --line:#e5e9f2;
  --green:#157f4a;
  --red:#c53333;
  --amber:#a7610b;
  --white:#ffffff;
}

*{box-sizing:border-box}

html{scroll-behavior:smooth}

body{
  margin:0;
  font-family:Inter,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  color:var(--text);
  background:#fff;
  line-height:1.6;
}

a{text-decoration:none;color:inherit}

.container{
  width:min(1160px,calc(100% - 40px));
  margin:0 auto;
}

.site-header{
  position:sticky;
  top:0;
  z-index:20;
  background:rgba(255,255,255,.96);
  backdrop-filter:blur(14px);
  border-bottom:1px solid rgba(229,233,242,.9);
}

.nav-wrap{
  display:flex;
  align-items:center;
  justify-content:space-between;
  min-height:78px;
  gap:24px;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
}

.brand-mark{
  width:42px;
  height:42px;
  border-radius:12px;
  background:linear-gradient(145deg,var(--navy),var(--blue));
  color:#fff;
  display:grid;
  place-items:center;
  font-weight:800;
  letter-spacing:.5px;
}

.brand-name{
  font-size:17px;
  font-weight:800;
}

.brand-sub{
  font-size:12px;
  color:var(--muted);
}

.main-nav{
  display:flex;
  align-items:center;
  gap:28px;
  font-size:14px;
  font-weight:600;
}

.main-nav a:hover{color:var(--blue)}

.nav-cta{
  padding:10px 16px;
  background:var(--navy);
  color:#fff !important;
  border-radius:8px;
}

.hero{
  padding:88px 0 72px;
  background:
    radial-gradient(circle at 85% 10%,rgba(36,99,235,.14),transparent 30%),
    linear-gradient(180deg,#fbfcff 0%,#f3f7ff 100%);
}

.hero-grid{
  display:grid;
  grid-template-columns:1.12fr .88fr;
  gap:56px;
  align-items:center;
}

.eyebrow{
  display:inline-block;
  font-size:12px;
  letter-spacing:1.4px;
  font-weight:800;
  color:var(--blue);
  margin-bottom:12px;
}

.eyebrow.light{color:#a9c7ff}

.hero h1{
  font-size:clamp(42px,5vw,68px);
  line-height:1.04;
  letter-spacing:-2.2px;
  margin:0 0 24px;
  color:#0e1d35;
}

.hero-text{
  font-size:19px;
  color:#526071;
  max-width:680px;
  margin:0 0 26px;
}

.hero-highlights{
  display:flex;
  flex-wrap:wrap;
  gap:10px 18px;
  font-size:14px;
  font-weight:700;
  color:#29415f;
  margin-bottom:28px;
}

.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-bottom:18px;
}

.btn{
  display:inline-flex;
  justify-content:center;
  align-items:center;
  min-height:48px;
  padding:0 22px;
  border-radius:9px;
  font-weight:800;
  font-size:14px;
  transition:.2s ease;
}

.btn:hover{transform:translateY(-1px)}

.btn-primary{
  background:var(--blue);
  color:#fff;
  box-shadow:0 10px 22px rgba(36,99,235,.18);
}

.btn-primary:hover{background:var(--blue-dark)}

.btn-secondary{
  border:1px solid #ccd5e3;
  background:#fff;
  color:var(--navy);
}

.btn-light{
  background:#fff;
  color:var(--navy);
}

.btn-outline-light{
  border:1px solid rgba(255,255,255,.45);
  color:#fff;
}

.btn.full{width:100%}

.hero-note{
  color:var(--muted);
  font-size:13px;
}

.hero-card{
  border-radius:18px;
  background:#fff;
  box-shadow:0 30px 70px rgba(18,44,85,.17);
  overflow:hidden;
  border:1px solid #edf0f5;
}

.mock-top{
  background:#f5f6f8;
  padding:13px 16px;
  display:flex;
  gap:7px;
}

.mock-top span{
  width:9px;
  height:9px;
  border-radius:50%;
  background:#c8ced8;
}

.mock-body{padding:26px}

.mock-title{
  font-weight:800;
  font-size:18px;
  margin-bottom:18px;
}

.mock-kpis{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:10px;
  margin-bottom:24px;
}

.mock-kpis div{
  background:#f5f8fd;
  border-radius:10px;
  padding:14px;
}

.mock-kpis small{
  display:block;
  color:var(--muted);
  font-size:11px;
  margin-bottom:6px;
}

.mock-kpis strong{font-size:19px}

.mock-audit{
  border:1px solid var(--line);
  border-radius:12px;
  overflow:hidden;
}

.audit-line{
  display:flex;
  justify-content:space-between;
  padding:13px 15px;
  border-bottom:1px solid var(--line);
}

.audit-line:last-child{border-bottom:0}
.audit-line.danger strong{color:var(--red)}

.mock-badge{
  margin-top:14px;
  padding:10px 12px;
  border-radius:8px;
  background:#fff4e5;
  color:#8d5308;
  font-size:12px;
  font-weight:700;
}

.trust-strip{
  background:#fff;
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}

.trust-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
}

.trust-grid div{
  padding:24px;
  border-right:1px solid var(--line);
}

.trust-grid div:last-child{border-right:0}

.trust-grid strong{
  display:block;
  font-size:14px;
  margin-bottom:3px;
}

.trust-grid span{
  color:var(--muted);
  font-size:12px;
}

.section{padding:88px 0}

.section-heading{
  max-width:760px;
  margin-bottom:42px;
}

.section-heading h2{
  font-size:clamp(32px,4vw,48px);
  line-height:1.12;
  letter-spacing:-1.3px;
  margin:0 0 16px;
}

.section-heading p{
  color:var(--muted);
  font-size:17px;
  margin:0;
}

.feature-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}

.feature-card{
  padding:28px;
  border:1px solid var(--line);
  border-radius:14px;
  background:#fff;
  box-shadow:0 10px 28px rgba(31,53,89,.05);
}

.feature-icon{
  font-size:25px;
  margin-bottom:16px;
}

.feature-card h3{
  margin:0 0 8px;
  font-size:18px;
}

.feature-card p{
  margin:0;
  color:var(--muted);
  font-size:14px;
}

.section-dark{
  background:linear-gradient(145deg,var(--navy-2),var(--navy));
  color:#fff;
}

.audit-grid{
  display:grid;
  grid-template-columns:1fr .72fr;
  gap:60px;
  align-items:center;
}

.section-dark h2{
  font-size:clamp(34px,4.5vw,52px);
  line-height:1.1;
  letter-spacing:-1.5px;
  margin:0 0 18px;
}

.light-text{
  color:#c7d2e4;
  font-size:17px;
  margin-bottom:28px;
}

.audit-steps{
  display:grid;
  gap:12px;
}

.audit-steps div{
  display:flex;
  gap:12px;
  align-items:flex-start;
}

.audit-steps span{
  flex:0 0 28px;
  height:28px;
  border-radius:50%;
  background:#244f92;
  display:grid;
  place-items:center;
  font-size:12px;
  font-weight:800;
}

.audit-steps p{
  margin:2px 0 0;
  color:#d9e3f2;
}

.audit-panel{
  background:#fff;
  color:var(--text);
  border-radius:16px;
  padding:24px;
  box-shadow:0 30px 70px rgba(0,0,0,.22);
}

.audit-panel-head{
  font-weight:900;
  font-size:20px;
  padding-bottom:14px;
  border-bottom:1px solid var(--line);
  margin-bottom:4px;
}

.audit-row{
  display:flex;
  justify-content:space-between;
  padding:13px 0;
  border-bottom:1px solid var(--line);
}

.audit-row.warning strong{color:var(--red)}

.audit-status{
  display:inline-block;
  margin:16px 0;
  background:#feecec;
  color:#a52c2c;
  padding:8px 11px;
  border-radius:8px;
  font-size:12px;
  font-weight:800;
}

.audit-panel button{
  width:100%;
  border:0;
  padding:12px;
  border-radius:8px;
  background:#e7f5ec;
  color:#177044;
  font-weight:800;
}

.benefit-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
}

.benefit-grid div{
  padding:24px;
  background:var(--bg);
  border-radius:12px;
}

.benefit-grid h3{
  margin:0 0 8px;
  font-size:17px;
}

.benefit-grid p{
  margin:0;
  color:var(--muted);
  font-size:14px;
}

.roles-section{background:var(--bg)}

.roles-table-wrap{
  overflow:auto;
  border-radius:14px;
  background:#fff;
  border:1px solid var(--line);
}

.roles-table{
  width:100%;
  border-collapse:collapse;
}

.roles-table th,
.roles-table td{
  padding:18px 20px;
  border-bottom:1px solid var(--line);
  text-align:left;
  vertical-align:top;
}

.roles-table th{
  background:#f8faff;
  font-size:13px;
  color:#526071;
}

.roles-table tr:last-child td{border-bottom:0}

.pricing-section{
  background:linear-gradient(180deg,#fff,#f6f9ff);
}

.pricing-wrap{
  display:grid;
  grid-template-columns:1fr .72fr;
  gap:60px;
  align-items:center;
}

.pricing-copy h2{
  font-size:clamp(36px,4.5vw,52px);
  line-height:1.08;
  margin:0 0 16px;
}

.pricing-copy p{
  color:var(--muted);
  font-size:17px;
}

.pricing-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:18px;
  padding:30px;
  box-shadow:0 24px 60px rgba(32,55,92,.12);
}

.price-label{
  font-size:12px;
  color:var(--muted);
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:1px;
}

.price{
  font-size:52px;
  font-weight:900;
  letter-spacing:-2px;
  margin-top:6px;
}

.price-note{
  color:var(--muted);
  margin-bottom:20px;
}

.pricing-card ul{
  padding:0;
  margin:0 0 24px;
  list-style:none;
}

.pricing-card li{
  padding:8px 0 8px 24px;
  position:relative;
}

.pricing-card li:before{
  content:"✓";
  position:absolute;
  left:0;
  color:var(--green);
  font-weight:900;
}

.pricing-small{
  margin-top:14px;
  color:var(--muted);
  font-size:11px;
}

.faq-grid{
  display:grid;
  gap:12px;
}

details{
  border:1px solid var(--line);
  border-radius:10px;
  padding:18px 20px;
  background:#fff;
}

summary{
  cursor:pointer;
  font-weight:800;
}

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

.contact-section{
  padding:30px 0 80px;
}

.contact-card{
  background:linear-gradient(145deg,var(--navy),#174988);
  color:#fff;
  border-radius:20px;
  padding:46px;
  display:grid;
  grid-template-columns:1fr auto;
  gap:40px;
  align-items:center;
}

.contact-card h2{
  margin:0 0 12px;
  font-size:34px;
  line-height:1.12;
}

.contact-card p{
  color:#d4e0f1;
  margin:0;
  max-width:700px;
}

.contact-actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

.site-footer{
  border-top:1px solid var(--line);
  padding:28px 0;
  background:#fff;
}

.footer-wrap{
  display:flex;
  justify-content:space-between;
  gap:30px;
  align-items:flex-start;
}

.footer-wrap p{
  color:var(--muted);
  margin:4px 0 0;
  font-size:13px;
}

.footer-right{
  display:flex;
  gap:20px;
  flex-wrap:wrap;
  color:var(--muted);
  font-size:12px;
}

@media (max-width:900px){
  .main-nav{display:none}
  .hero-grid,
  .audit-grid,
  .pricing-wrap,
  .contact-card{
    grid-template-columns:1fr;
  }
  .feature-grid{grid-template-columns:repeat(2,1fr)}
  .benefit-grid{grid-template-columns:repeat(2,1fr)}
  .trust-grid{grid-template-columns:repeat(2,1fr)}
}

@media (max-width:600px){
  .container{width:min(100% - 24px,1160px)}
  .hero{padding:58px 0 48px}
  .hero h1{font-size:40px}
  .feature-grid,
  .benefit-grid,
  .trust-grid{
    grid-template-columns:1fr;
  }
  .trust-grid div{
    border-right:0;
    border-bottom:1px solid var(--line);
  }
  .mock-kpis{grid-template-columns:1fr}
  .section{padding:64px 0}
  .contact-card{padding:30px 24px}
  .footer-wrap{flex-direction:column}
}
/* Tech Skills Apps brand logo */
.brand-logo{
  width:52px;
  height:52px;
  object-fit:contain;
  flex:0 0 52px;
  border-radius:9px;
}
/* Final Stock Audit visibility fix */
.section-dark{
  background:linear-gradient(145deg,#0a1d37,#102647) !important;
  color:#ffffff !important;
}

.section-dark h2{
  color:#ffffff !important;
}

.section-dark .eyebrow{
  color:#a9c7ff !important;
}

.section-dark .light-text{
  color:#d8e3f3 !important;
}

.section-dark .audit-steps p{
  color:#e5edf8 !important;
}

.section-dark .audit-steps span{
  background:#2f65ad !important;
  color:#ffffff !important;
}

.section-dark .audit-panel{
  background:#ffffff !important;
  color:#172033 !important;
}

.section-dark .audit-panel-head,
.section-dark .audit-row{
  color:#172033 !important;
}
/* Strong demo CTA */
.nav-cta{
  background:#7a0f14 !important;
  color:#ffffff !important;
  border-radius:8px;
  padding:10px 16px;
}

.nav-cta:hover{
  background:#5f0b10 !important;
  color:#ffffff !important;
}
/* Pricing WhatsApp CTA visibility */
.pricing-card .btn-primary{
  background:#7a0f14 !important;
  color:#ffffff !important;
  border:1px solid #7a0f14 !important;
}

.pricing-card .btn-primary:hover{
  background:#5f0b10 !important;
  color:#ffffff !important;
}

.pricing-card .btn-primary:visited{
  color:#ffffff !important;
}
/* Real product showcase */
.product-showcase{
  background:#f7f9fc;
}

.showcase-heading{
  max-width:760px;
  margin-bottom:36px;
}

.showcase-main{
  background:#fff;
  border:1px solid var(--line);
  border-radius:18px;
  padding:18px;
  box-shadow:0 18px 50px rgba(20,35,60,.08);
}

.screenshot-frame{
  overflow:hidden;
  border-radius:12px;
  border:1px solid #dfe5ee;
  background:#fff;
}

.screenshot-frame img{
  display:block;
  width:100%;
  height:auto;
}

.screenshot-caption{
  padding:20px 8px 6px;
}

.screenshot-caption h3,
.showcase-card-copy h3{
  margin:0 0 7px;
  font-size:20px;
}

.screenshot-caption p,
.showcase-card-copy p{
  margin:0;
  color:var(--muted);
  line-height:1.65;
}

.showcase-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:24px;
  margin-top:24px;
}

.showcase-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:16px;
  padding:14px;
  box-shadow:0 12px 35px rgba(20,35,60,.06);
}

.showcase-card-copy{
  padding:18px 6px 8px;
}

@media (max-width:760px){
  .showcase-grid{
    grid-template-columns:1fr;
  }

  .showcase-main,
  .showcase-card{
    padding:10px;
  }
}
/* Hero Request Demo CTA */
.hero .btn-primary{
  background:#7a0f14 !important;
  color:#ffffff !important;
  border:1px solid #7a0f14 !important;
  box-shadow:0 10px 22px rgba(122,15,20,.18);
}

.hero .btn-primary:hover{
  background:#5f0b10 !important;
  color:#ffffff !important;
}
/* Final Contact section visibility fix */
.contact-card{
  background:linear-gradient(145deg,#0a1d37,#174988) !important;
  color:#ffffff !important;
}

.contact-card h2{
  color:#ffffff !important;
}

.contact-card .eyebrow{
  color:#a9c7ff !important;
}

.contact-card p{
  color:#d8e3f3 !important;
}

.contact-card .btn-light{
  background:#ffffff !important;
  color:#0a1d37 !important;
  border:1px solid #ffffff !important;
}

.contact-card .btn-outline-light{
  background:transparent !important;
  color:#ffffff !important;
  border:1px solid rgba(255,255,255,.65) !important;
}

.contact-card .btn-outline-light:hover{
  background:#ffffff !important;
  color:#0a1d37 !important;
}
/* Mobile navigation menu */
.menu-toggle{
  display:none;
  border:0;
  background:#7a0f14;
  color:#ffffff;
  width:44px;
  height:40px;
  border-radius:8px;
  font-size:22px;
  line-height:1;
  cursor:pointer;
}

@media (max-width:900px){

  .nav-wrap{
    position:relative;
  }

  .menu-toggle{
    display:block;
    margin-left:auto;
  }

  .main-nav{
    display:none;
    position:absolute;
    top:calc(100% + 10px);
    right:0;
    width:220px;
    padding:10px;
    background:#ffffff;
    border:1px solid var(--line);
    border-radius:12px;
    box-shadow:0 18px 45px rgba(20,35,60,.18);
    z-index:1000;
  }

  .main-nav.mobile-open{
    display:grid;
    gap:4px;
  }

  .main-nav a{
    padding:11px 12px;
    border-radius:8px;
    color:var(--navy);
  }

  .main-nav a:hover{
    background:#f5f7fb;
  }

  .main-nav .nav-cta{
    margin-top:4px;
    text-align:center;
    color:#ffffff !important;
    background:#7a0f14;
  }
}
