:root{
  --dw-bg: #0b1220;
  --dw-bg2: #0f1b33;
  --dw-card: rgba(255,255,255,0.06);
  --dw-border: rgba(255,255,255,0.12);
  --dw-text: rgba(255,255,255,0.92);
  --dw-muted: rgba(255,255,255,0.65);
}

body{
  background: radial-gradient(1200px 600px at 20% 10%, rgba(49, 130, 206, 0.28), transparent 60%),
              radial-gradient(900px 500px at 80% 20%, rgba(236, 72, 153, 0.18), transparent 55%),
              linear-gradient(180deg, var(--dw-bg), var(--dw-bg2));
  color: var(--dw-text);
}

.dw-site-nav{
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(10px);
  background: rgba(11,18,32,0.70);
  border-bottom: 1px solid var(--dw-border);
}

.dw-site-brand{
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: var(--dw-text);
}

.dw-site-logo{
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(255,255,255,0.10);
  border: 1px solid var(--dw-border);
  font-weight: 800;
  letter-spacing: .04em;
}

.dw-site-name{ font-weight: 800; }
.dw-site-tagline{ color: var(--dw-muted); font-size: .92rem; }

.dw-hero{
  padding-top: 1rem;
}

.dw-eyebrow{
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: var(--dw-muted);
  font-size: .95rem;
}

.dw-hero-title{
  font-size: clamp(2.6rem, 5vw, 3.6rem);
  line-height: 1.05;
  font-weight: 900;
  margin-top: .6rem;
}

.dw-hero-subtitle{
  font-size: 1.15rem;
  color: var(--dw-muted);
  margin-top: .8rem;
}

.dw-hero-card{
  background: var(--dw-card);
  border: 1px solid var(--dw-border);
  border-radius: 20px;
  padding: 1.25rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

.dw-hero-card__title{ font-weight: 700; margin-bottom: .75rem; }

.dw-checklist{ list-style: none; padding: 0; margin: 0 0 1rem 0; }
.dw-checklist li{ display:flex; gap:.6rem; align-items:flex-start; margin:.55rem 0; color: var(--dw-text); }
.dw-checklist i{ color: rgba(255,255,255,0.9); }

.dw-hero-proof{ display:flex; flex-wrap:wrap; gap:.8rem; }
.dw-proof-item{ display:inline-flex; gap:.5rem; align-items:center; padding:.45rem .7rem; border:1px solid var(--dw-border); border-radius: 999px; background: rgba(255,255,255,0.06); color: var(--dw-muted); font-size:.92rem; }

.dw-section-title{ font-size: 1.75rem; font-weight: 800; }
.dw-section-subtitle{ color: var(--dw-muted); margin-top: .4rem; }

.dw-section--alt{ background: rgba(255,255,255,0.03); border-top:1px solid var(--dw-border); border-bottom:1px solid var(--dw-border); }

.dw-feature{
  background: var(--dw-card);
  border: 1px solid var(--dw-border);
  border-radius: 18px;
  padding: 1.1rem;
  height: 100%;
}
.dw-feature--flat{ background: transparent; }
.dw-feature__icon{ font-size: 1.4rem; color: rgba(255,255,255,0.9); }
.dw-feature__title{ font-weight: 700; margin-top: .55rem; }
.dw-feature__text{ color: var(--dw-muted); margin-top: .35rem; }

.dw-site-footer{
  border-top: 1px solid var(--dw-border);
  background: rgba(11,18,32,0.65);
}

.dw-legal p, .dw-legal li{ color: var(--dw-muted); }

a.link-light{ text-decoration: none; }
a.link-light:hover{ text-decoration: underline; }

/* Form styling */
form label{ color: var(--dw-muted); font-weight: 600; }
.form-control, .form-select, textarea{
  background: rgba(255,255,255,0.08);
  border: 1px solid var(--dw-border);
  color: var(--dw-text);
}
.form-control:focus, .form-select:focus, textarea:focus{
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.22);
  box-shadow: none;
  color: var(--dw-text);
}

.alert{ border-radius: 16px; }



/* Only stretch cards to equal height inside feature grids (prevents huge blank cards in stacked columns) */
.dw-feature-grid .dw-feature{height:100%}
