/* VerdiaWorld — simple, clean, responsive one‑pager */
:root{
  --bg: #ffffff;
  --ink:#0b1220;
  --muted:#5b6477;
  --brand:#1b7a4a;
  --brand2:#0ea5a3;
  --card:#ffffff;
  --stroke:#e6e9f2;
  --shadow: 0 18px 40px rgba(11,18,32,.08);
}

*{box-sizing:border-box}
html,body{margin:0;padding:0;font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Apple Color Emoji","Segoe UI Emoji";color:var(--ink);background:var(--bg);line-height:1.5}
a{color:inherit;text-decoration:none}
.container{max-width:1100px;margin:0 auto;padding:0 18px}

.site-header{
  position:sticky;top:0;z-index:20;
  background:rgba(255,255,255,.85);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--stroke);
}
.nav{display:flex;align-items:center;justify-content:space-between;gap:16px;padding:14px 0}
.brand{display:flex;align-items:center;gap:10px}
.logo{font-size:22px}
.brand-text{display:flex;flex-direction:column}
.brand-name{font-weight:900;letter-spacing:.2px}
.brand-tag{font-size:12px;color:var(--muted)}
.menu{display:flex;gap:14px;align-items:center;flex-wrap:wrap;justify-content:flex-end}
.menu a{font-size:14px;color:var(--muted)}
.menu a:hover{color:var(--ink)}

.button{
  display:inline-flex;align-items:center;justify-content:center;
  padding:11px 14px;border-radius:14px;
  background:linear-gradient(135deg,var(--brand),var(--brand2));
  color:white;font-weight:800;border:1px solid transparent;
  box-shadow: 0 10px 22px rgba(27,122,74,.18);
}
.button.small{padding:8px 10px;border-radius:12px;font-size:13px}
.button.ghost{
  background:transparent;color:var(--ink);
  border:1px solid var(--stroke);
  box-shadow:none;
}
.button.ghost:hover{border-color:#cfd5e6}

.hero{
  position:relative;
  background: radial-gradient(900px 400px at 20% 15%, rgba(27,122,74,.16), transparent 60%),
              radial-gradient(900px 400px at 80% 25%, rgba(14,165,163,.16), transparent 60%);
  padding:56px 0 34px;
}
.hero-grid{display:grid;grid-template-columns: 1.15fr .85fr;gap:28px;align-items:start}
.hero h1{font-size:42px;line-height:1.08;margin:0 0 14px}
.lead{color:var(--muted);font-size:18px;margin:0 0 18px}
.hero-cta{display:flex;gap:12px;flex-wrap:wrap;margin:16px 0 10px}
.hero-bullets{margin:16px 0 0;padding:0 0 0 18px;color:var(--muted)}
.hero-bullets li{margin:6px 0}

.hero-card .card{
  background:var(--card);border:1px solid var(--stroke);border-radius:22px;
  padding:18px;box-shadow:var(--shadow)
}
.card-title{margin:0 0 10px;font-size:16px}
.pill-row{display:flex;gap:8px;flex-wrap:wrap;margin:10px 0 14px}
.pill{font-size:12px;padding:6px 10px;border-radius:999px;border:1px solid var(--stroke);background:#f7f9ff;color:#21314a}
.mini{display:grid;grid-template-columns:1fr 1fr;gap:12px}
.mini-kicker{font-size:12px;color:var(--muted);margin:0 0 6px;font-weight:800;text-transform:uppercase;letter-spacing:.5px}
.mini ol{margin:0;padding-left:18px;color:var(--muted)}
.mini ul{margin:0;padding-left:18px;color:var(--muted)}
.callout{margin-top:14px;padding:12px;border-radius:16px;border:1px dashed #cfe7db;background:rgba(27,122,74,.06);color:#14301f}

.hero-wave{height:34px;margin-top:28px;background:linear-gradient(90deg, rgba(27,122,74,.12), rgba(14,165,163,.12));filter:blur(18px);opacity:.7}

.section{padding:52px 0}
.section.alt{background:#f7fafc;border-top:1px solid var(--stroke);border-bottom:1px solid var(--stroke)}
.section h2{margin:0 0 12px;font-size:28px}
.section p{margin:0 0 12px;color:var(--muted)}

.grid-3{display:grid;grid-template-columns:repeat(3,1fr);gap:14px;margin-top:14px}
.grid-2{display:grid;grid-template-columns:repeat(2,1fr);gap:14px;margin-top:14px}

.feature,.panel{
  background:var(--card);border:1px solid var(--stroke);border-radius:18px;padding:14px;
}
.feature h3,.panel h3{margin:0 0 6px;font-size:16px}
.feature p,.panel p{margin:0;color:var(--muted)}
.panel ul{margin:8px 0 0;padding-left:18px;color:var(--muted)}
.panel li{margin:6px 0}

.timeline{display:grid;gap:12px;margin-top:16px}
.step{display:grid;grid-template-columns:42px 1fr;gap:12px;align-items:start}
.badge{
  width:34px;height:34px;border-radius:12px;
  background:linear-gradient(135deg,var(--brand),var(--brand2));
  color:white;font-weight:900;display:flex;align-items:center;justify-content:center;
}
.step h3{margin:0 0 4px}
.step p{margin:0;color:var(--muted)}

.note{
  margin-top:16px;padding:14px;border-radius:18px;
  border:1px solid var(--stroke);
  background:rgba(14,165,163,.06)
}
.note p{margin:0;color:#204250}

.cta-card{
  display:flex;align-items:center;justify-content:space-between;gap:18px;
  border-radius:22px;border:1px solid var(--stroke);background:var(--card);
  box-shadow:var(--shadow);padding:18px
}
.cta-actions{display:flex;gap:10px;flex-wrap:wrap}
.small{font-size:13px;color:var(--muted)}

.site-footer{padding:22px 0;border-top:1px solid var(--stroke);background:#fff}
.footer-grid{display:flex;align-items:center;justify-content:space-between;gap:16px;flex-wrap:wrap}
.footer-links{display:flex;gap:12px;color:var(--muted)}
.footer-links a:hover{color:var(--ink)}
.footer-brand .brand-tag{max-width:520px}

@media (max-width: 920px){
  .hero-grid{grid-template-columns:1fr}
  .hero h1{font-size:36px}
}
@media (max-width: 700px){
  .grid-3{grid-template-columns:1fr}
  .grid-2{grid-template-columns:1fr}
  .menu{display:none}
  .cta-card{flex-direction:column;align-items:flex-start}
}


.copyright-notice{margin:6px 0 0;color:var(--muted)}


/* VW-DEMO-2 guided client tour */
.demo-hero{
  padding:56px 0 38px;
  background:linear-gradient(180deg, rgba(27,122,74,.08), rgba(14,165,163,.04));
  border-bottom:1px solid var(--stroke);
}
.demo-hero-v2{
  background:
    radial-gradient(900px 420px at 15% 10%, rgba(27,122,74,.12), transparent 60%),
    linear-gradient(180deg, rgba(14,165,163,.05), rgba(255,255,255,0));
}
.demo-hero-grid{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:24px;
  align-items:start;
}
.demo-hero h1{font-size:42px;line-height:1.08;margin:0 0 14px}
.demo-kicker{
  margin:0 0 8px;
  color:var(--brand);
  font-weight:900;
  letter-spacing:.08em;
  text-transform:uppercase;
  font-size:12px;
}
.demo-summary-card,.demo-panel,.tour-card{
  background:var(--card);
  border:1px solid var(--stroke);
  border-radius:22px;
  padding:18px;
  box-shadow:var(--shadow);
}
.demo-metrics{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:10px;
  margin:12px 0;
}
.demo-metrics div{
  border:1px solid var(--stroke);
  border-radius:16px;
  padding:12px;
  background:#f7fafc;
}
.demo-metrics strong{display:block;font-size:24px;color:var(--brand)}
.demo-metrics span{display:block;font-size:12px;color:var(--muted);font-weight:800}
.demo-orientation p{max-width:850px}
.tour-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:14px;
  margin-top:20px;
}
.tour-card{
  display:block;
  min-height:180px;
  transition:transform .15s ease,border-color .15s ease;
}
.tour-card:hover{
  transform:translateY(-2px);
  border-color:#b7e4cd;
}
.tour-number{
  display:inline-grid;
  place-items:center;
  width:34px;
  height:34px;
  border-radius:999px;
  background:#ecfdf5;
  border:1px solid #bbf7d0;
  color:#166534;
  font-weight:900;
  margin-bottom:10px;
}
.demo-layout{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:18px;
  align-items:start;
}
.screen-card{
  position:relative;
  overflow:hidden;
}
.screen-card:before{
  content:"";
  position:absolute;
  inset:0 0 auto 0;
  height:6px;
  background:linear-gradient(90deg,var(--brand),var(--brand2));
}
.screen-header{
  display:flex;
  align-items:center;
  gap:8px;
  margin:4px 0 12px;
}
.screen-dot{
  width:12px;
  height:12px;
  border-radius:50%;
  background:#22c55e;
  box-shadow:18px 0 0 #f59e0b, 36px 0 0 #ef4444;
}
.demo-tag-row{display:flex;gap:8px;flex-wrap:wrap;margin:10px 0 12px}
.demo-tag-row span{
  font-size:12px;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid #bbf7d0;
  background:#ecfdf5;
  color:#166534;
  font-weight:800;
}
.demo-list{margin:0;padding-left:18px;color:var(--muted)}
.demo-list li{margin:6px 0}
.grid-4{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:16px;
  margin-top:18px;
}
.example-copy,.safety-checklist{
  margin-top:18px;
}
.flow-row{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:20px;
}
.flow-row span{
  display:inline-flex;
  align-items:center;
  min-height:42px;
  padding:9px 12px;
  border-radius:999px;
  background:#f8fafc;
  border:1px solid var(--stroke);
  color:var(--muted);
  font-size:13px;
  font-weight:900;
}
.flow-row span:not(:last-child)::after{
  content:"→";
  color:var(--brand);
  margin-left:10px;
}
.demo-action-list{display:grid;gap:10px}
.demo-action-list div{
  border:1px solid var(--stroke);
  border-radius:16px;
  padding:12px;
  background:#ffffff;
}
.demo-action-list strong{display:block;color:var(--ink)}
.demo-action-list span{display:block;color:var(--muted);font-size:13px;margin-top:2px}
.scenario-card{
  display:grid;
  grid-template-columns:1fr;
  gap:6px;
  margin-bottom:18px;
}
.print-button{cursor:pointer;font:inherit}
.demo-final-cta{background:linear-gradient(180deg, #fff, rgba(27,122,74,.05))}
.copyright-notice{margin:6px 0 0;color:var(--muted)}
@media (max-width: 1040px){
  .tour-grid,.grid-4{grid-template-columns:repeat(2,1fr)}
}
@media (max-width: 920px){
  .demo-hero-grid,.demo-layout{grid-template-columns:1fr}
  .demo-hero h1{font-size:36px}
}
@media (max-width: 620px){
  .tour-grid,.grid-4{grid-template-columns:1fr}
  .flow-row span{width:100%;justify-content:center}
  .flow-row span:not(:last-child)::after{content:"";margin:0}
}
@media print{
  .site-header,.hero-cta,.button,.footer-links{display:none!important}
  .demo-hero,.section{padding:20px 0!important}
  .demo-summary-card,.demo-panel,.tour-card,.feature,.cta-card{box-shadow:none!important}
}


/* VW-DEMO-3 pilot interest pathway */
.pilot-hero{
  padding:56px 0 38px;
  background:
    radial-gradient(850px 380px at 85% 0%, rgba(14,165,163,.12), transparent 58%),
    linear-gradient(180deg, rgba(27,122,74,.08), rgba(255,255,255,0));
  border-bottom:1px solid var(--stroke);
}
.pilot-hero-grid,.pilot-layout{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:22px;
  align-items:start;
}
.pilot-hero h1{
  font-size:42px;
  line-height:1.08;
  margin:0 0 14px;
}
.pilot-summary-card{
  background:var(--card);
  border:1px solid var(--stroke);
  border-radius:22px;
  padding:18px;
  box-shadow:var(--shadow);
}
.pilot-form{
  display:grid;
  gap:14px;
  margin-top:18px;
  background:var(--card);
  border:1px solid var(--stroke);
  border-radius:22px;
  padding:18px;
  box-shadow:var(--shadow);
}
.pilot-form label{
  display:grid;
  gap:6px;
  font-weight:900;
  color:var(--ink);
}
.pilot-form input,
.pilot-form select,
.pilot-form textarea{
  width:100%;
  border:1px solid var(--stroke);
  border-radius:14px;
  padding:12px 13px;
  font:inherit;
  color:var(--ink);
  background:#fff;
}
.pilot-form textarea{resize:vertical;}
.pilot-form input:focus,
.pilot-form select:focus,
.pilot-form textarea:focus{
  outline:3px solid rgba(27,122,74,.16);
  border-color:#8fd3aa;
}
.pilot-warning{
  border:1px solid #fde68a;
  background:#fffbeb;
  color:#713f12;
  border-radius:16px;
  padding:12px;
}
.soft-rule{
  border:0;
  border-top:1px solid var(--stroke);
  margin:18px 0;
}
@media (max-width: 920px){
  .pilot-hero-grid,.pilot-layout{grid-template-columns:1fr}
  .pilot-hero h1{font-size:36px}
}


/* VW-DEMO-4 full program walkthrough */
.back-row{display:flex;gap:10px;flex-wrap:wrap;align-items:center;margin:0 0 14px}.back-link{display:inline-flex;align-items:center;gap:6px;border:1px solid var(--stroke);background:#fff;color:var(--brand);border-radius:999px;padding:8px 12px;font-size:13px;font-weight:900;text-decoration:none}.back-link:hover{border-color:#b7e4cd;background:#ecfdf5}.button-link{cursor:pointer;font:inherit}.page-back-strip{padding-top:18px}.tour-grid-wide{grid-template-columns:repeat(4,1fr)}.grid-5{display:grid;grid-template-columns:repeat(5,1fr);gap:16px;margin-top:18px}.pending-panel h3{margin-bottom:12px}.pending-grid{display:grid;grid-template-columns:repeat(5,1fr);gap:10px;margin:12px 0}.pending-grid div{background:#fff7ed;border:1px solid #fed7aa;border-radius:16px;padding:12px;text-align:center}.pending-grid strong{display:block;color:#9a3412;font-size:28px}.pending-grid span{display:block;color:#7c2d12;font-size:12px;font-weight:900}.flow-row-full span{min-width:150px}.outcome-tracker{display:grid;grid-template-columns:repeat(3,1fr);gap:16px;margin-top:18px}.tracker-card{background:var(--card);border:1px solid var(--stroke);border-radius:22px;padding:18px;box-shadow:var(--shadow)}.tracker-card strong{display:inline-block;margin-top:10px;color:#166534;background:#ecfdf5;border:1px solid #bbf7d0;border-radius:999px;padding:6px 10px;font-size:12px}.report-preview{background:linear-gradient(180deg,#fff,#f8fafc)}@media(max-width:1100px){.grid-5{grid-template-columns:repeat(2,1fr)}.pending-grid{grid-template-columns:repeat(3,1fr)}}@media(max-width:1040px){.tour-grid-wide{grid-template-columns:repeat(2,1fr)}.outcome-tracker{grid-template-columns:1fr}}@media(max-width:620px){.tour-grid-wide,.grid-5,.pending-grid{grid-template-columns:1fr}.back-row{align-items:stretch}.back-link{justify-content:center;width:100%}}@media print{.back-row,.back-link,.page-back-strip{display:none!important}}


/* VW-DEMO-5 expanded client deep dives */
.detail-hero{
  padding-top:34px;
  background:
    radial-gradient(800px 360px at 15% 5%, rgba(27,122,74,.10), transparent 62%),
    linear-gradient(180deg, rgba(14,165,163,.04), rgba(255,255,255,0));
}
.detail-grid{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:22px;
  align-items:start;
}
.detail-grid h1{
  font-size:40px;
  line-height:1.08;
  margin:0 0 14px;
}
.journey-lane{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:14px;
  margin-top:18px;
}
.journey-card{
  background:var(--card);
  border:1px solid var(--stroke);
  border-radius:22px;
  padding:16px;
  box-shadow:var(--shadow);
}
.sample-screen-list{
  display:grid;
  gap:10px;
}
.sample-screen-list div{
  display:grid;
  gap:3px;
  padding:12px;
  border:1px solid var(--stroke);
  background:#fff;
  border-radius:16px;
}
.sample-screen-list strong{
  color:var(--ink);
}
.sample-screen-list span{
  color:var(--muted);
  font-size:13px;
}
.pending-grid-expanded{
  grid-template-columns:repeat(6,1fr);
}
.matrix-table-wrap{
  overflow:auto;
  border:1px solid var(--stroke);
  border-radius:22px;
  background:var(--card);
  box-shadow:var(--shadow);
}
.matrix-table{
  width:100%;
  border-collapse:collapse;
  min-width:760px;
}
.matrix-table th,
.matrix-table td{
  padding:14px;
  border-bottom:1px solid var(--stroke);
  text-align:left;
  vertical-align:top;
}
.matrix-table th{
  background:#f8fafc;
  color:var(--ink);
}
.matrix-table td{
  color:var(--muted);
}
.matrix-table tr:last-child td{
  border-bottom:0;
}
@media (max-width: 1100px){
  .journey-lane{grid-template-columns:repeat(2,1fr)}
  .pending-grid-expanded{grid-template-columns:repeat(3,1fr)}
}
@media (max-width: 920px){
  .detail-grid{grid-template-columns:1fr}
  .detail-grid h1{font-size:34px}
}
@media (max-width: 620px){
  .journey-lane,.pending-grid-expanded{grid-template-columns:1fr}
}
@media print{
  .detail-hero{padding-top:18px!important}
}


/* VW-SITE-1 coordinated public website */
.site-map-strip{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:16px;
}
.site-map-strip a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border:1px solid var(--stroke);
  border-radius:999px;
  padding:8px 12px;
  background:#fff;
  color:var(--brand);
  font-size:13px;
  font-weight:900;
}
#visitor-paths .feature,
#deep-dives .feature{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
}
#visitor-paths .feature .button,
#deep-dives .feature .button{
  margin-top:auto;
}
@media (max-width: 620px){
  .site-map-strip a{width:100%}
}

