* {
  box-sizing: border-box;
}

:root {
  --bg: #07111f;
  --panel: #101c2e;
  --panel-2: #14243a;
  --text: #eef5ff;
  --muted: #aebdd1;
  --accent: #66e1ff;
  --accent-2: #b7f7d2;
  --line: rgba(255, 255, 255, 0.12);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 18% 0%, rgba(102, 225, 255, 0.22), transparent 34rem),
    radial-gradient(circle at 90% 8%, rgba(183, 247, 210, 0.16), transparent 28rem),
    linear-gradient(180deg, #07101f 0%, #0a1220 45%, #08111f 100%);
  line-height: 1.6;
}

a {
  color: inherit;
}

.site-header {
  min-height: 92vh;
  padding: 1.25rem;
}

.nav {
  max-width: 1120px;
  margin: 0 auto;
  padding: 1rem 0;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}

.brand {
  text-decoration: none;
  font-weight: 800;
  letter-spacing: -0.04em;
  font-size: 1.25rem;
}

.brand span {
  color: var(--accent);
}

.nav-links {
  display: flex;
  gap: 1rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.nav-links a {
  text-decoration: none;
}

.hero {
  max-width: 1120px;
  margin: 8vh auto 0;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: 2rem;
  align-items: center;
}

.eyebrow {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 800;
  margin: 0 0 0.75rem;
}

h1, h2, h3, p {
  margin-top: 0;
}

h1 {
  font-size: clamp(3rem, 7vw, 6.75rem);
  line-height: 0.92;
  letter-spacing: -0.08em;
  margin-bottom: 1.35rem;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 1;
  letter-spacing: -0.055em;
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}

.lead {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 3rem;
  padding: 0.82rem 1.1rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  border: 1px solid var(--line);
}

.button.primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #06101d;
  border: 0;
}

.button.secondary {
  background: rgba(255, 255, 255, 0.06);
}

.button.large {
  font-size: 1.08rem;
  padding-inline: 1.4rem;
}

.hero-card,
.panel,
.services article,
.proof,
.hardware {
  background: rgba(16, 28, 46, 0.72);
  border: 1px solid var(--line);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
}

.hero-card {
  border-radius: 2rem;
  padding: 1.4rem;
}

.card-title {
  color: var(--muted);
  font-weight: 800;
  margin-bottom: 0.9rem;
}

.hero-card ul,
.checklist {
  padding-left: 1.1rem;
  margin: 0;
}

.hero-card li,
.checklist li {
  margin-bottom: 0.6rem;
}

.section {
  max-width: 1120px;
  margin: 0 auto;
  padding: 5.5rem 1.25rem;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 1.5rem;
}

.grid {
  display: grid;
  gap: 1rem;
}

.services {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.services article {
  border-radius: 1.4rem;
  padding: 1.25rem;
}

.services p,
.section-heading p,
.split p,
.proof p,
.contact p,
footer {
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.75fr);
  gap: 1.5rem;
  align-items: center;
}

.hardware {
  border-radius: 2rem;
  padding: 3rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.75fr);
  gap: 1.5rem;
  align-items: center;
  background:
    linear-gradient(135deg, rgba(102, 225, 255, 0.10), rgba(183, 247, 210, 0.08)),
    rgba(16, 28, 46, 0.72);
}

.hardware-copy p,
.hardware-card li {
  color: var(--muted);
}

.hardware-card {
  background: rgba(7, 17, 31, 0.46);
  border: 1px solid var(--line);
  border-radius: 1.4rem;
  padding: 1.25rem;
}

.panel {
  border-radius: 1.4rem;
  padding: 1.25rem;
  background: rgba(20, 36, 58, 0.86);
}

.proof {
  border-radius: 2rem;
  padding: 3rem;
}

.contact {
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  align-items: center;
}

footer {
  max-width: 1120px;
  margin: 0 auto;
  padding: 2rem 1.25rem 3rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid var(--line);
}

.small {
  font-size: 0.9rem;
}

@media (max-width: 860px) {
  .hero,
  .split,
  .services,
  .hardware {
    grid-template-columns: 1fr;
  }

  .nav {
    align-items: flex-start;
  }

  .nav-links {
    display: none;
  }

  .site-header {
    min-height: auto;
  }

  .hero {
    margin-top: 3rem;
  }

  .contact,
  footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .proof,
  .hardware {
    padding: 1.4rem;
  }
}

/* DWAINSWORLD_MANIFESTO_CSS_START */
.manifesto {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.manifesto-stack {
  display: grid;
  gap: 1rem;
}

.manifesto article {
  min-height: 48vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 2rem;
  padding: 3rem;
  background:
    radial-gradient(circle at 12% 10%, rgba(102, 225, 255, 0.16), transparent 28rem),
    rgba(16, 28, 46, 0.72);
  border: 1px solid var(--line);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.24);
}

.manifesto h2 {
  font-size: clamp(2.7rem, 7vw, 6.8rem);
  line-height: 0.9;
  max-width: 980px;
}

.manifesto p {
  color: var(--muted);
  max-width: 760px;
  font-size: 1.12rem;
}

@media (max-width: 860px) {
  .manifesto article {
    min-height: auto;
    padding: 1.4rem;
  }
}
/* DWAINSWORLD_MANIFESTO_CSS_END */

/* DWAINSWORLD_SECURITY_OPENSOURCE_CSS_START */
.vault {
  border-radius: 2rem;
  padding: 3rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.75fr);
  gap: 1.5rem;
  align-items: center;
  background:
    radial-gradient(circle at 10% 0%, rgba(102, 225, 255, 0.18), transparent 30rem),
    linear-gradient(135deg, rgba(16, 28, 46, 0.90), rgba(7, 17, 31, 0.90));
  border: 1px solid var(--line);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
}

.vault h2 {
  font-size: clamp(2.6rem, 6vw, 6rem);
  line-height: 0.92;
}

.vault-copy p,
.vault-card li,
.alternatives p {
  color: var(--muted);
}

.vault-card {
  background: rgba(7, 17, 31, 0.52);
  border: 1px solid var(--line);
  border-radius: 1.4rem;
  padding: 1.25rem;
}

.alternatives {
  border-top: 1px solid var(--line);
}

.alternatives h2 {
  max-width: 1050px;
}

.alternatives-lead {
  max-width: 860px;
  font-size: 1.15rem;
}

.alternative-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.alternative-grid article {
  background: rgba(16, 28, 46, 0.72);
  border: 1px solid var(--line);
  border-radius: 1.4rem;
  padding: 1.25rem;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.18);
}

@media (max-width: 1000px) {
  .alternative-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .vault {
    grid-template-columns: 1fr;
    padding: 1.4rem;
  }

  .alternative-grid {
    grid-template-columns: 1fr;
  }
}
/* DWAINSWORLD_SECURITY_OPENSOURCE_CSS_END */

/* DWAINSWORLD_SAAS_CASHFLOW_CSS_START */
.cashflow-warning {
  background:
    radial-gradient(circle at 12% 0%, rgba(183, 247, 210, 0.18), transparent 30rem),
    linear-gradient(135deg, rgba(16, 28, 46, 0.86), rgba(7, 17, 31, 0.92)) !important;
}

.cashflow-warning h2 {
  max-width: 1040px;
}

.cashflow-warning p {
  font-size: 1.16rem;
}
/* DWAINSWORLD_SAAS_CASHFLOW_CSS_END */

/* DWAINSWORLD_AI_PROCESS_CSS_START */
.ai-process {
  border-radius: 2rem;
  padding: 3rem;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: 1.5rem;
  align-items: center;
  background:
    radial-gradient(circle at 15% 0%, rgba(102, 225, 255, 0.20), transparent 28rem),
    radial-gradient(circle at 88% 18%, rgba(183, 247, 210, 0.14), transparent 26rem),
    rgba(16, 28, 46, 0.72);
  border: 1px solid var(--line);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
}

.ai-process h2 {
  font-size: clamp(2.7rem, 6.4vw, 6.3rem);
  line-height: 0.9;
  max-width: 980px;
}

.ai-process-copy p,
.ai-process-card li {
  color: var(--muted);
}

.ai-process-copy p {
  font-size: 1.12rem;
  max-width: 820px;
}

.ai-process-card {
  background: rgba(7, 17, 31, 0.52);
  border: 1px solid var(--line);
  border-radius: 1.4rem;
  padding: 1.25rem;
}

@media (max-width: 860px) {
  .ai-process {
    grid-template-columns: 1fr;
    padding: 1.4rem;
  }
}
/* DWAINSWORLD_AI_PROCESS_CSS_END */

/* DWAINSWORLD_ABOUT_DWAIN_CSS_START */
.about-dwain {
  border-radius: 2rem;
  padding: 3rem;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 1.5rem;
  align-items: center;
  background:
    radial-gradient(circle at 15% 0%, rgba(102, 225, 255, 0.16), transparent 28rem),
    rgba(16, 28, 46, 0.72);
  border: 1px solid var(--line);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.24);
}

.about-dwain h2 {
  font-size: clamp(2.7rem, 6.4vw, 6.4rem);
  line-height: 0.9;
  max-width: 980px;
}

.about-dwain-copy p,
.about-dwain-card p {
  color: var(--muted);
  font-size: 1.1rem;
}

.about-dwain-card {
  background: rgba(7, 17, 31, 0.52);
  border: 1px solid var(--line);
  border-radius: 1.4rem;
  padding: 1.25rem;
}

@media (max-width: 860px) {
  .about-dwain {
    grid-template-columns: 1fr;
    padding: 1.4rem;
  }
}
/* DWAINSWORLD_ABOUT_DWAIN_CSS_END */

/* DWAINSWORLD_EMAIL_PRODUCT_CSS_START */
.email-product {
  border-radius: 2rem;
  padding: 3rem;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 1.5rem;
  align-items: center;
  background:
    radial-gradient(circle at 12% 0%, rgba(102, 225, 255, 0.24), transparent 30rem),
    radial-gradient(circle at 88% 14%, rgba(183, 247, 210, 0.18), transparent 28rem),
    rgba(16, 28, 46, 0.78);
  border: 1px solid var(--line);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.30);
}

.email-product h2 {
  font-size: clamp(3rem, 7vw, 7rem);
  line-height: 0.88;
  max-width: 980px;
}

.email-product-copy p,
.email-product-card li,
.email-product-note p {
  color: var(--muted);
}

.email-product-copy p {
  font-size: 1.12rem;
  max-width: 820px;
}

.email-product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.5rem;
}

.email-product-card {
  background: rgba(7, 17, 31, 0.52);
  border: 1px solid var(--line);
  border-radius: 1.4rem;
  padding: 1.25rem;
}

.email-product-note {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.email-product-note h2 {
  max-width: 1040px;
}

.email-product-note p {
  max-width: 900px;
  font-size: 1.12rem;
}

@media (max-width: 860px) {
  .email-product {
    grid-template-columns: 1fr;
    padding: 1.4rem;
  }
}
/* DWAINSWORLD_EMAIL_PRODUCT_CSS_END */

/* DWAINSWORLD_CLIENT_OWNERSHIP_CSS_START */
.client-ownership {
  border-radius: 2rem;
  padding: 3rem;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 1.5rem;
  align-items: center;
  background:
    radial-gradient(circle at 15% 0%, rgba(183, 247, 210, 0.18), transparent 30rem),
    radial-gradient(circle at 92% 18%, rgba(102, 225, 255, 0.14), transparent 28rem),
    rgba(16, 28, 46, 0.76);
  border: 1px solid var(--line);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.26);
}

.client-ownership h2 {
  font-size: clamp(3rem, 7vw, 7rem);
  line-height: 0.88;
  max-width: 980px;
}

.client-ownership-copy p,
.client-ownership-card li {
  color: var(--muted);
  font-size: 1.1rem;
}

.client-ownership-card {
  background: rgba(7, 17, 31, 0.52);
  border: 1px solid var(--line);
  border-radius: 1.4rem;
  padding: 1.25rem;
}

@media (max-width: 860px) {
  .client-ownership {
    grid-template-columns: 1fr;
    padding: 1.4rem;
  }
}
/* DWAINSWORLD_CLIENT_OWNERSHIP_CSS_END */

/* DWAINSWORLD_TERMINAL_LOGO_CSS_START */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}

.brand-icon {
  width: 2.35rem;
  height: 2.35rem;
  flex: 0 0 auto;
  filter: drop-shadow(0 0 10px rgba(102, 225, 255, 0.20));
}

.brand-word {
  display: inline-block;
}

@media (max-width: 520px) {
  .brand-icon {
    width: 2rem;
    height: 2rem;
  }
}
/* DWAINSWORLD_TERMINAL_LOGO_CSS_END */

/* DWAINSWORLD_BACK_TO_TOP_CSS_START */
.back-to-top {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 50;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
  font-size: 0.92rem;
  color: #06101d;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.34);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.back-to-top:hover,
.back-to-top:focus {
  transform: translateY(-2px);
}

@media (max-width: 620px) {
  .back-to-top {
    right: 0.8rem;
    bottom: 0.8rem;
    min-height: 2.45rem;
    padding: 0.6rem 0.8rem;
    font-size: 0.86rem;
  }
}
/* DWAINSWORLD_BACK_TO_TOP_CSS_END */\n\n/* DWAINSWORLD_ABSOLUTE_TOP_CSS_START */
#page-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 1px;
  pointer-events: none;
}

html {
  scroll-padding-top: 0;
}
/* DWAINSWORLD_ABSOLUTE_TOP_CSS_END */\n\n\n/* DWAINSWORLD_FREE_EMAIL_PAGE_CSS_START */
.free-email-header {
  min-height: auto;
}

.free-email-hero h1 {
  max-width: 980px;
}

.free-email-manifesto {
  border-radius: 2rem;
  padding: 3rem;
  background:
    radial-gradient(circle at 12% 0%, rgba(102, 225, 255, 0.20), transparent 30rem),
    rgba(16, 28, 46, 0.76);
  border: 1px solid var(--line);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.26);
}

.free-email-manifesto h2 {
  font-size: clamp(2.7rem, 6.5vw, 6.5rem);
  line-height: 0.9;
  max-width: 1080px;
}

.free-email-manifesto p,
.free-email-grid-section p {
  color: var(--muted);
  font-size: 1.1rem;
}

@media (max-width: 860px) {
  .free-email-manifesto {
    padding: 1.4rem;
  }
}
/* DWAINSWORLD_FREE_EMAIL_PAGE_CSS_END */\n

/* DWAINSWORLD_EMAIL_SIGNUP_FRONTEND_CSS_START */
.email-signup-panel {
  border-radius: 2rem;
  padding: 3rem;
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1.15fr);
  gap: 1.5rem;
  align-items: start;
  background:
    radial-gradient(circle at 12% 0%, rgba(102, 225, 255, 0.22), transparent 30rem),
    radial-gradient(circle at 90% 20%, rgba(183, 247, 210, 0.14), transparent 28rem),
    rgba(16, 28, 46, 0.78);
  border: 1px solid var(--line);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
}

.email-signup-panel h2 {
  font-size: clamp(2.7rem, 6vw, 6rem);
  line-height: 0.9;
}

.email-signup-copy p,
.field-note,
.form-status {
  color: var(--muted);
}

.email-signup-form {
  background: rgba(7, 17, 31, 0.52);
  border: 1px solid var(--line);
  border-radius: 1.4rem;
  padding: 1.25rem;
  display: grid;
  gap: 1rem;
}

.email-signup-form label {
  display: grid;
  gap: 0.4rem;
  font-weight: 800;
}

.email-signup-form input,
.email-signup-form select,
.email-signup-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 0.9rem;
  padding: 0.85rem 0.95rem;
  background: rgba(255, 255, 255, 0.07);
  color: var(--text);
  font: inherit;
}

.email-signup-form select option {
  color: #06101d;
}

.email-signup-form textarea {
  resize: vertical;
}

.field-note,
.form-status {
  font-size: 0.92rem;
  font-weight: 500;
}

.checkbox-row {
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 0.7rem !important;
  font-weight: 600 !important;
  color: var(--muted);
}

.checkbox-row input {
  width: auto;
  margin-top: 0.3rem;
}

@media (max-width: 860px) {
  .email-signup-panel {
    grid-template-columns: 1fr;
    padding: 1.4rem;
  }
}
/* DWAINSWORLD_EMAIL_SIGNUP_FRONTEND_CSS_END */
