/* Mutherboard landing pages — shared styles
   Brand: charcoal text on WHITE, with indigo, coral, yellow, pink accents
*/

:root {
  --charcoal: #2b2b2b;
  --charcoal-deep: #1a1a1a;
  --indigo: #4E4EE9;
  --indigo-hover: #3d3dd6;
  --pink: #F9C6D0;
  --coral: #FE5E54;
  --coral-hover: #ef4f45;
  --yellow: #FFDC4A;
  --teal: #00C9B8;
  --green: #00B206;
  --white: #ffffff;
  --off-white: #fafafa;
  --neutral-100: #f4f4f4;
  --neutral-200: #e5e5e5;
  --neutral-300: #cfcfcf;
  --neutral-500: #737373;
  --neutral-700: #404040;
  --border-radius: 16px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

body {
  font-family: 'Nunito', 'Lato', system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.55;
  font-weight: 500;
}

img { max-width: 100%; display: block; }

/* --- Layout --- */
.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Header --- */
.site-header {
  padding: 20px 0;
  border-bottom: 1px solid var(--neutral-200);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo-lockup {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.logo-lockup img.mark { height: 44px; width: auto; }
.logo-lockup img.wordmark { height: 22px; width: auto; }

.header-cta {
  font-size: 15px;
  font-weight: 700;
  color: var(--charcoal);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1.5px solid var(--charcoal);
  transition: background 0.15s, color 0.15s;
}
.header-cta:hover { background: var(--charcoal); color: var(--white); }

/* --- Hero --- */
.hero {
  padding: 80px 0 72px;
  position: relative;
  overflow: hidden;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--indigo);
  margin-bottom: 20px;
  padding: 6px 14px;
  background: #edeeff;
  border-radius: 999px;
}

.hero h1 {
  font-family: 'Nunito', 'Lato', sans-serif;
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--charcoal);
  margin-bottom: 24px;
  max-width: 18ch;
}
.hero h1 .accent { color: var(--indigo); }
.hero h1 .highlight {
  background: linear-gradient(180deg, transparent 60%, var(--yellow) 60%, var(--yellow) 92%, transparent 92%);
  padding: 0 4px;
}

.hero p.sub {
  font-size: clamp(18px, 1.6vw, 22px);
  color: var(--neutral-700);
  max-width: 55ch;
  margin-bottom: 36px;
  font-weight: 500;
  line-height: 1.5;
}

.hero-cta-row {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 28px;
  border-radius: 999px;
  background: var(--coral);
  color: var(--white);
  font-size: 17px;
  font-weight: 800;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.15s, transform 0.15s;
}
.btn-primary:hover { background: var(--coral-hover); transform: translateY(-1px); }
.btn-primary .arrow { font-size: 18px; }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 14px 20px;
  border-radius: 999px;
  color: var(--charcoal);
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.15s;
}
.btn-secondary:hover { background: var(--neutral-100); }

/* Decorative brand shapes in hero */
.hero-shapes {
  position: absolute;
  top: 0;
  right: 0;
  width: 42%;
  max-width: 480px;
  height: 100%;
  pointer-events: none;
  z-index: -1;
}
.hero-shape {
  position: absolute;
  border-radius: 32px;
}
.hero-shape.indigo {
  width: 220px;
  height: 220px;
  background: var(--indigo);
  top: 80px;
  right: -40px;
  transform: rotate(-8deg);
}
.hero-shape.pink {
  width: 160px;
  height: 160px;
  background: var(--pink);
  top: 280px;
  right: 180px;
  transform: rotate(12deg);
}
.hero-shape.yellow {
  width: 120px;
  height: 120px;
  background: var(--yellow);
  bottom: 40px;
  right: 40px;
  border-radius: 24px;
}

/* Alt hero shape configs — used per page for variety */
.hero-shapes.variant-b .hero-shape.indigo { top: 40px; right: 60px; transform: rotate(6deg); width: 180px; height: 180px; }
.hero-shapes.variant-b .hero-shape.pink { top: 240px; right: -20px; width: 200px; height: 200px; transform: rotate(-6deg); }
.hero-shapes.variant-b .hero-shape.yellow { bottom: 60px; right: 220px; width: 90px; height: 90px; }

.hero-shapes.variant-c .hero-shape.indigo { top: 120px; right: 200px; width: 140px; height: 140px; transform: rotate(-14deg); }
.hero-shapes.variant-c .hero-shape.pink { top: 40px; right: 20px; width: 200px; height: 200px; transform: rotate(8deg); }
.hero-shapes.variant-c .hero-shape.yellow { bottom: 60px; right: 60px; width: 130px; height: 130px; }

/* --- Trust section --- */
.trust {
  background: var(--off-white);
  padding: 80px 0;
  border-top: 1px solid var(--neutral-200);
  border-bottom: 1px solid var(--neutral-200);
}

.trust-intro {
  max-width: 720px;
  margin: 0 auto 56px;
  text-align: center;
}
.trust-intro h2 {
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 900;
  letter-spacing: -0.01em;
  line-height: 1.15;
  margin-bottom: 18px;
  color: var(--charcoal);
}
.trust-intro p {
  font-size: 18px;
  color: var(--neutral-700);
  line-height: 1.55;
}
.trust-intro strong { color: var(--charcoal); }

.trust-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 56px;
}
.pillar {
  background: var(--white);
  border-radius: var(--border-radius);
  padding: 32px 28px;
  border: 1px solid var(--neutral-200);
}
.pillar-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  margin-bottom: 20px;
  font-size: 22px;
  font-weight: 800;
}
.pillar-icon.a { background: #edeeff; color: var(--indigo); }
.pillar-icon.b { background: #ffefd0; color: #d67a00; }
.pillar-icon.c { background: #ffe1dd; color: var(--coral); }

.pillar h3 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--charcoal);
}
.pillar p {
  color: var(--neutral-700);
  font-size: 16px;
  line-height: 1.55;
}

.trust-clients {
  text-align: center;
}
.trust-clients p {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--neutral-500);
  margin-bottom: 20px;
}
.client-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px 40px;
  color: var(--charcoal);
  font-weight: 800;
  font-size: 18px;
}
.client-list span { opacity: 0.75; }

.trust-awards {
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid var(--neutral-200);
  text-align: center;
}
.awards-lead {
  font-size: 18px;
  color: var(--neutral-500);
  margin-bottom: 24px;
  font-weight: 500;
}
.awards-lead strong {
  color: var(--charcoal);
  font-weight: 800;
}
.awards-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 14px;
}
.awards-list .award {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border: 1px solid var(--neutral-200);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.2;
}
.awards-list .award em {
  font-style: normal;
  font-weight: 500;
  color: var(--neutral-500);
  margin-left: 2px;
}
.awards-list .award-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--indigo, #4E4EE9);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
}

/* --- Demo form section --- */
.demo {
  padding: 96px 0;
}
.demo-wrap {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: start;
}
.demo-copy h2 {
  font-size: clamp(30px, 3.6vw, 44px);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}
.demo-copy p {
  font-size: 18px;
  color: var(--neutral-700);
  line-height: 1.55;
  margin-bottom: 24px;
}
.demo-copy ul {
  list-style: none;
  padding: 0;
  margin-top: 24px;
}
.demo-copy ul li {
  padding: 10px 0 10px 32px;
  position: relative;
  font-size: 16px;
  color: var(--charcoal);
  font-weight: 600;
}
.demo-copy ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  width: 20px;
  height: 20px;
  background: var(--yellow);
  border-radius: 50%;
}
.demo-copy ul li::after {
  content: "✓";
  position: absolute;
  left: 4px;
  top: 11px;
  font-size: 14px;
  font-weight: 900;
  color: var(--charcoal);
}

/* Form */
.form-card {
  background: var(--white);
  border: 1px solid var(--neutral-200);
  border-radius: 20px;
  padding: 36px;
  box-shadow: 0 8px 32px rgba(30, 30, 30, 0.06);
  position: relative;
}
.form-error {
  margin-top: 16px;
  padding: 12px 16px;
  background: #fdecea;
  border: 1px solid #fbc7c1;
  color: #b3261e;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
}
.form-success {
  text-align: center;
  padding: 12px 8px 24px;
}
.form-success .success-check {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--indigo, #4E4EE9);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  font-weight: 900;
  margin: 8px auto 20px;
  line-height: 1;
}
.form-success h3 {
  font-size: 24px;
  font-weight: 900;
  margin-bottom: 10px;
}
.form-success p {
  font-size: 16px;
  color: var(--neutral-500);
  line-height: 1.55;
}
.form-success a {
  color: var(--indigo, #4E4EE9);
  font-weight: 700;
  text-decoration: none;
}
.form-success a:hover { text-decoration: underline; }
.form-card::before {
  content: "";
  position: absolute;
  top: -14px;
  left: 36px;
  width: 60px;
  height: 14px;
  background: var(--yellow);
  border-radius: 4px 4px 0 0;
}
.form-card h3 {
  font-size: 22px;
  font-weight: 900;
  margin-bottom: 8px;
}
.form-card .form-sub {
  font-size: 15px;
  color: var(--neutral-500);
  margin-bottom: 24px;
}

.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 6px;
}
.field label .opt { color: var(--neutral-500); font-weight: 600; font-size: 12px; }
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1.5px solid var(--neutral-200);
  background: var(--white);
  font-family: inherit;
  font-size: 15px;
  font-weight: 500;
  color: var(--charcoal);
  transition: border-color 0.15s, box-shadow 0.15s;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--indigo);
  box-shadow: 0 0 0 3px rgba(78, 78, 233, 0.15);
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-card button.submit {
  width: 100%;
  padding: 16px 24px;
  border-radius: 999px;
  background: var(--coral);
  color: var(--white);
  font-size: 16px;
  font-weight: 800;
  border: none;
  cursor: pointer;
  transition: background 0.15s, transform 0.15s;
  margin-top: 8px;
}
.form-card button.submit:hover {
  background: var(--coral-hover);
  transform: translateY(-1px);
}
.form-fine {
  font-size: 12px;
  color: var(--neutral-500);
  text-align: center;
  margin-top: 14px;
  line-height: 1.5;
}

.form-success {
  text-align: center;
  padding: 40px 20px;
}
.form-success .checkmark {
  width: 64px;
  height: 64px;
  background: var(--yellow);
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  font-weight: 900;
  color: var(--charcoal);
}
.form-success h3 { font-size: 22px; margin-bottom: 10px; }
.form-success p { color: var(--neutral-700); font-size: 16px; }

/* --- Footer --- */
.site-footer {
  padding: 40px 0;
  border-top: 1px solid var(--neutral-200);
  color: var(--neutral-500);
  font-size: 14px;
}
.site-footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.site-footer .logo-lockup img.mark { height: 32px; }
.site-footer .logo-lockup img.wordmark { height: 16px; }

/* --- Responsive --- */
@media (max-width: 860px) {
  .hero { padding: 56px 0 48px; }
  .hero-shapes { display: none; }
  .trust-pillars { grid-template-columns: 1fr; gap: 16px; }
  .demo-wrap { grid-template-columns: 1fr; gap: 40px; }
  .field-row { grid-template-columns: 1fr; }
  .demo { padding: 64px 0; }
  .trust { padding: 56px 0; }
}
