:root {
  --ink: #0d1b2a;
  --muted: #637084;
  --line: #dce4ee;
  --paper: #ffffff;
  --soft: #f5f8fb;
  --navy: #071827;
  --blue: #104b78;
  --red: #c9353c;
  --green: #15834f;
  --gold: #b79245;
  --shadow: 0 22px 60px rgba(7, 24, 39, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, "Helvetica Neue", sans-serif;
  line-height: 1.5;
}

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 74px;
  padding: 14px clamp(18px, 5vw, 72px);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
}

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

.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 50%;
  background: var(--navy);
  color: white;
  font-weight: 900;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 16px;
}

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

.topbar-button,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 8px;
  padding: 0 18px;
  font-weight: 900;
}

.topbar-button,
.button.primary {
  background: var(--blue);
  color: white;
  box-shadow: 0 16px 32px rgba(16, 75, 120, 0.22);
}

.button.secondary {
  border: 1px solid var(--line);
  background: white;
  color: var(--blue);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.65fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  min-height: calc(100vh - 74px);
  padding: clamp(54px, 8vw, 104px) clamp(18px, 5vw, 72px);
  background:
    radial-gradient(circle at 18% 8%, rgba(183, 146, 69, 0.22), transparent 26%),
    linear-gradient(135deg, #f7fafc, #ffffff);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 840px;
  margin-bottom: 22px;
  color: var(--navy);
  font-size: clamp(46px, 7vw, 84px);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  color: var(--navy);
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1.08;
  letter-spacing: 0;
}

.hero-copy p {
  max-width: 720px;
  color: #43546a;
  font-size: 20px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.trust-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.trust-points span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 13px;
  border: 1px solid rgba(16, 75, 120, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: #34475c;
  font-size: 13px;
  font-weight: 900;
}

.trust-points span::before {
  width: 8px;
  height: 8px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--green);
  content: "";
}

.hero-note {
  margin-top: 20px;
  color: var(--muted) !important;
  font-size: 14px !important;
  font-weight: 800;
}

.quick-card {
  display: grid;
  gap: 14px;
  padding: clamp(20px, 3vw, 30px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: var(--shadow);
}

.step {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 14px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.step span {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 50%;
  background: var(--blue);
  color: white;
  font-weight: 900;
}

.step strong {
  display: block;
  margin-bottom: 6px;
}

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

.case-picker,
.urgency-section,
.confidence,
.desk-profile,
.prepare,
.scope-section,
.never-ask,
.message-template,
.mini-faq,
.contact {
  padding: clamp(54px, 7vw, 90px) clamp(18px, 5vw, 72px);
}

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

.section-heading p:not(.eyebrow),
.contact-copy p {
  color: var(--muted);
  font-size: 18px;
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.case-grid button {
  min-height: 78px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  color: var(--navy);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(7, 24, 39, 0.05);
}

.case-grid button:hover,
.case-grid button.is-selected {
  border-color: var(--blue);
  background: #edf5fb;
  color: var(--blue);
}

.selected-case {
  margin: 18px 0 0;
  padding: 14px 16px;
  border: 1px solid rgba(16, 75, 120, 0.18);
  border-radius: 8px;
  background: #f3f8fc;
  color: #3d5066;
  font-weight: 800;
}

.readiness-card {
  display: grid;
  gap: 6px;
  margin-top: 12px;
  padding: 16px;
  border: 1px solid rgba(21, 131, 79, 0.22);
  border-radius: 8px;
  background: #f2fbf6;
}

.readiness-card span {
  color: var(--green);
  font-weight: 900;
}

.readiness-card p {
  margin: 0;
  color: #3f5d4d;
  font-size: 14px;
  font-weight: 800;
}

.urgency-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 0.5fr);
  gap: clamp(24px, 5vw, 60px);
  align-items: center;
  background: linear-gradient(135deg, #ffffff, #f6f9fc);
}

.urgency-section p:not(.eyebrow) {
  max-width: 780px;
  color: var(--muted);
  font-size: 18px;
}

.urgency-note {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: 0 16px 38px rgba(7, 24, 39, 0.06);
}

.urgency-note strong,
.urgency-note span {
  display: block;
}

.urgency-note strong {
  margin-bottom: 10px;
  color: var(--navy);
  font-size: 20px;
}

.urgency-note span {
  color: var(--muted);
  font-weight: 800;
}

.confidence {
  background: white;
}

.confidence-card {
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, #ffffff, #f7fafc);
  box-shadow: var(--shadow);
}

.confidence-card h2 {
  max-width: 820px;
}

.confidence-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.confidence-grid article {
  min-height: 150px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

.confidence-grid strong,
.confidence-grid span {
  display: block;
}

.confidence-grid strong {
  margin-bottom: 10px;
  color: var(--navy);
  font-size: 18px;
}

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

.desk-profile {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.55fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  background: var(--navy);
  color: white;
}

.desk-copy h2 {
  color: white;
}

.desk-copy p:not(.eyebrow) {
  max-width: 820px;
  color: #c6d6e6;
  font-size: 18px;
}

.desk-card {
  padding: clamp(24px, 4vw, 34px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.18);
}

.desk-card span {
  display: block;
  margin-bottom: 28px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.desk-card strong {
  display: block;
  margin-bottom: 20px;
  color: white;
  font-size: 28px;
  line-height: 1.1;
}

.desk-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.desk-card li {
  padding: 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: #d8e4f0;
  font-weight: 800;
}

.prepare {
  background: var(--soft);
}

.prepare-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.prepare-grid div {
  min-height: 96px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  color: #293d52;
  font-weight: 900;
}

.warning-box {
  display: grid;
  gap: 6px;
  margin-top: 18px;
  padding: 18px;
  border: 1px solid rgba(201, 53, 60, 0.22);
  border-radius: 8px;
  background: #fff5f5;
}

.warning-box strong {
  color: var(--red);
}

.warning-box span {
  color: #72424a;
  font-size: 14px;
  font-weight: 800;
}

.scope-section {
  background: white;
}

.scope-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.scope-card {
  min-height: 320px;
  padding: clamp(22px, 4vw, 32px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff, #f8fbfd);
  box-shadow: 0 16px 42px rgba(7, 24, 39, 0.06);
}

.scope-card span {
  display: block;
  margin-bottom: 22px;
  color: var(--navy);
  font-size: 22px;
  font-weight: 900;
}

.scope-card ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.scope-card li {
  position: relative;
  padding-left: 24px;
  color: #40546a;
  font-weight: 800;
}

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

.no-promise li::before {
  color: var(--red);
  content: "–";
}

.never-ask {
  display: grid;
  grid-template-columns: minmax(0, 0.65fr) minmax(360px, 1fr);
  gap: clamp(26px, 5vw, 64px);
  align-items: start;
  background: #fff7f7;
}

.never-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.never-grid span {
  min-height: 76px;
  padding: 18px;
  border: 1px solid rgba(201, 53, 60, 0.22);
  border-radius: 8px;
  background: white;
  color: #713740;
  font-weight: 900;
}

.message-template {
  background: white;
}

.template-card {
  display: grid;
  gap: 12px;
  max-width: 980px;
}

.template-line {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  align-items: start;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff, #f8fbfd);
}

.template-line span {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 50%;
  background: var(--blue);
  color: white;
  font-weight: 900;
}

.template-line p {
  margin: 8px 0 0;
  color: #34475c;
  font-weight: 800;
}

.contact {
  background: var(--navy);
  color: white;
}

.contact h2 {
  color: white;
}

.contact-copy p {
  color: #c6d6e6;
}

.single-channel {
  margin-top: 28px;
}

.support-card {
  display: grid;
  max-width: 760px;
  min-height: 260px;
  padding: clamp(24px, 4vw, 36px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(16, 75, 120, 0.98), rgba(7, 24, 39, 0.96));
  color: white;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
}

.support-card span,
.support-card strong,
.support-card p {
  display: block;
}

.support-card span {
  margin-bottom: 30px;
  color: #d7e4f1;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.support-card strong {
  margin-bottom: 12px;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.1;
}

.support-card p {
  max-width: 620px;
  color: #f1d9dc;
  font-size: 16px;
}

.support-button {
  justify-self: start;
  margin-top: 14px;
  background: white !important;
  color: var(--blue) !important;
  box-shadow: none !important;
}

.after-click {
  display: block;
  max-width: 640px;
  margin-top: 16px;
  color: #f1d9dc;
  font-size: 13px;
  line-height: 1.45;
}

.response-box {
  display: grid;
  gap: 4px;
  max-width: 360px;
  margin-top: 16px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.response-box strong,
.response-box span {
  display: block;
}

.response-box strong {
  color: white;
}

.response-box span {
  color: #d7e4f1;
  font-size: 13px;
  font-weight: 800;
}

.disclaimer {
  margin-top: 24px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: #d7e4f1;
  font-size: 13px;
}

.engagement-note {
  margin-top: 12px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: #c6d6e6;
  font-size: 13px;
  font-weight: 800;
}

.mini-faq {
  background: var(--soft);
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 960px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

.faq-list summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 20px;
  color: var(--navy);
  font-weight: 900;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list p {
  margin: 0;
  padding: 0 20px 18px;
  color: var(--muted);
}

.footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding: 22px clamp(18px, 5vw, 72px);
  background: #050f18;
  color: #b6c6d6;
  font-size: 13px;
}

@media (max-width: 960px) {
  .hero,
  .urgency-section,
  .desk-profile,
  .never-ask {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .case-grid,
  .prepare-grid,
  .confidence-grid,
  .scope-grid,
  .never-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .topbar {
    align-items: stretch;
    flex-direction: column;
  }

  .topbar-button,
  .hero-actions .button,
  .trust-points span {
    width: 100%;
  }

  h1 {
    font-size: 42px;
  }

  .hero-copy p,
  .section-heading p:not(.eyebrow),
  .contact-copy p {
    font-size: 16px;
  }

  .case-grid,
  .prepare-grid,
  .confidence-grid,
  .scope-grid,
  .never-grid {
    grid-template-columns: 1fr;
  }

  .template-line {
    grid-template-columns: 1fr;
  }
}
