/* =========================================================
   DCC FINANCIAL READINESS ASSESSMENT™
   STYLES.CSS
   ========================================================= */

:root {
  --black: #111111;
  --deep-black: #050505;

  --white: #ffffff;
  --soft-white: #f8f5f1;
  --cream: #f4efe7;

  --gold: #d6b37f;
  --rose: #b76e79;

  --ink: #17171a;
  --mid-text: #666666;

  --line: rgba(17, 17, 17, 0.12);

  --shadow:
    0 24px 70px rgba(0, 0, 0, 0.08);

  --radius: 18px;
}


/* RESET */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family:
    Arial,
    Helvetica,
    sans-serif;

  background: var(--soft-white);
  color: var(--ink);

  line-height: 1.65;
  font-weight: 400;

  -webkit-font-smoothing: antialiased;
}

button,
input {
  font: inherit;
}

a {
  color: inherit;
}


/* GLOBAL LAYOUT */

.page-shell {
  width:
    min(
      1180px,
      calc(100% - 40px)
    );

  margin: 0 auto;
}

.page-shell.narrow {
  max-width: 860px;
}

.center {
  text-align: center;
}


/* HEADER */

.site-header {
  background: var(--deep-black);

  border-bottom:
    1px solid
    rgba(214, 179, 127, 0.22);
}

.site-header .page-shell {
  min-height: 74px;

  display: flex;
  align-items: center;
}


/* BRAND */

.brand {
  display: inline-flex;
  flex-direction: column;
  gap: 2px;

  text-decoration: none;
}

.brand-name {
  color: var(--white);

  font-size: 0.78rem;
  font-weight: 600;

  letter-spacing: 0.045em;
}

.brand-name span {
  color: var(--rose);
}

.brand-framework {
  color:
    rgba(255, 255, 255, 0.58);

  font-size: 0.70rem;
  letter-spacing: 0.08em;
}


/* SCREEN SYSTEM */

.screen {
  display: none;

  min-height:
    calc(100vh - 154px);
}

.screen.is-active {
  display: block;
}


/* TYPOGRAPHY */

.eyebrow {
  color: var(--gold);

  text-transform: uppercase;

  letter-spacing: 1.7px;

  font-weight: 600;
  font-size: 0.76rem;

  margin-bottom: 14px;
}

h1,
h2,
h3 {
  line-height: 1.15;
}

h1 {
  max-width: 830px;

  font-size:
    clamp(
      2.45rem,
      6vw,
      5rem
    );

  font-weight: 600;
  letter-spacing: -0.03em;

  margin-bottom: 24px;
}

h1 span {
  color: var(--gold);
}

h2 {
  font-size:
    clamp(
      2rem,
      4.2vw,
      3.25rem
    );

  font-weight: 600;
  letter-spacing: -0.02em;

  margin-bottom: 18px;
}

h3 {
  font-size:
    clamp(
      1.3rem,
      2vw,
      1.75rem
    );

  font-weight: 600;

  margin-bottom: 12px;
}

p {
  font-weight: 400;
}


/* INTRO */

.intro-screen {
  padding:
    92px 0 82px;

  background:
    radial-gradient(
      circle at 0% 10%,
      rgba(183, 110, 121, 0.10),
      transparent 28%
    ),
    linear-gradient(
      180deg,
      var(--deep-black),
      var(--black)
    );

  color: var(--white);
}

.intro-screen p {
  max-width: 760px;

  color:
    rgba(255, 255, 255, 0.76);

  font-size: 1rem;
}

.intro-screen .lede {
  color: var(--white);

  font-size:
    clamp(
      1.08rem,
      2vw,
      1.25rem
    );

  font-weight: 500;

  margin-bottom: 14px;
}


/* TRUTH PANEL */

.truth-panel {
  max-width: 760px;

  margin:
    34px 0 28px;

  padding:
    22px 24px;

  border:
    1px solid
    rgba(214, 179, 127, 0.34);

  border-left:
    3px solid
    var(--gold);

  border-radius: 12px;

  background:
    rgba(255, 255, 255, 0.035);
}

.truth-panel strong {
  display: block;

  color: var(--white);

  font-weight: 600;

  margin-bottom: 3px;
}

.fine-print {
  margin-top: 16px;

  font-size:
    0.78rem !important;

  line-height: 1.5;

  color:
    rgba(
      255,
      255,
      255,
      0.52
    ) !important;
}


/* BUTTONS */

.btn {
  min-height: 52px;

  display: inline-flex;

  align-items: center;
  justify-content: center;

  border:
    1px solid transparent;

  border-radius: 10px;

  padding:
    15px 26px;

  font-weight: 600;

  text-transform: uppercase;

  letter-spacing: 1px;

  font-size: 0.78rem;

  text-decoration: none;

  cursor: pointer;

  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.btn:hover {
  transform:
    translateY(-2px);
}

.primary-btn {
  background: var(--gold);
  color: var(--black);

  border-color:
    rgba(
      214,
      179,
      127,
      0.70
    );

  box-shadow:
    0 8px 22px
    rgba(
      0,
      0,
      0,
      0.18
    );
}

.primary-btn:hover {
  box-shadow:
    0 11px 28px
    rgba(
      0,
      0,
      0,
      0.24
    );
}

.secondary-btn {
  background: transparent;
  color: var(--ink);

  border-color:
    rgba(
      17,
      17,
      17,
      0.18
    );
}

.dark-btn {
  width: 100%;

  background: var(--black);
  color: var(--white);
}

.compact {
  min-width: 130px;
}


/* QUESTION SCREEN */

.question-screen {
  padding:
    52px 0 74px;

  background: var(--soft-white);
}

.assessment-shell {
  max-width: 920px;
}


/* PROGRESS */

.assessment-progress {
  margin-bottom: 20px;
}

.progress-row {
  display: flex;

  justify-content: space-between;

  color: var(--mid-text);

  font-size: 0.78rem;
  font-weight: 600;

  letter-spacing: 0.04em;
}

.progress-track {
  height: 4px;

  margin-top: 9px;

  overflow: hidden;

  background:
    rgba(
      17,
      17,
      17,
      0.10
    );

  border-radius: 999px;
}

.progress-bar {
  width: 0;
  height: 100%;

  background:
    linear-gradient(
      90deg,
      var(--rose),
      var(--gold)
    );

  transition:
    width 0.25s ease;
}


/* QUESTION CARD */

.question-card {
  background: var(--white);

  border:
    1px solid
    rgba(
      17,
      17,
      17,
      0.08
    );

  border-radius: var(--radius);

  box-shadow: var(--shadow);

  padding:
    clamp(
      28px,
      5vw,
      54px
    );
}

.question-card h2 {
  max-width: 780px;

  font-size:
    clamp(
      1.7rem,
      3.2vw,
      2.55rem
    );

  font-weight: 500;
  line-height: 1.2;
}

.question-help {
  max-width: 720px;

  margin:
    -4px 0 20px;

  color: var(--mid-text);

  font-size: 0.96rem;
}


/* ANSWERS */

.answer-options {
  display: grid;

  gap: 10px;

  margin-top: 28px;
}

.answer-option {
  width: 100%;

  display: flex;

  gap: 14px;

  align-items: flex-start;

  padding:
    16px 18px;

  border:
    1px solid
    rgba(
      17,
      17,
      17,
      0.12
    );

  border-radius: 12px;

  background: var(--white);
  color: var(--ink);

  text-align: left;

  font-weight: 400;
  line-height: 1.5;

  cursor: pointer;

  transition:
    border-color 0.15s ease,
    background 0.15s ease,
    transform 0.15s ease;
}

.answer-option:hover {
  border-color:
    rgba(
      183,
      110,
      121,
      0.55
    );

  transform:
    translateY(-1px);
}

.answer-option.is-selected {
  border-color: var(--rose);

  background:
    rgba(
      183,
      110,
      121,
      0.065
    );
}

.answer-marker {
  width: 22px;
  height: 22px;

  flex:
    0 0 22px;

  border:
    1px solid
    rgba(
      17,
      17,
      17,
      0.24
    );

  border-radius: 50%;

  position: relative;

  margin-top: 1px;
}

.is-selected .answer-marker {
  border-color: var(--rose);
}

.is-selected .answer-marker::after {
  content: "";

  position: absolute;

  inset: 4px;

  border-radius: 50%;

  background: var(--rose);
}

.answer-error {
  margin-top: 14px;

  color: #8a3944;

  font-size: 0.85rem;
}

.assessment-nav {
  display: flex;

  justify-content: space-between;

  gap: 12px;

  margin-top: 32px;
}


/* PROCESSING */

.processing-screen {
  padding:
    110px 0;

  background: var(--deep-black);

  color: var(--white);
}

.processing-screen p {
  color:
    rgba(
      255,
      255,
      255,
      0.70
    );
}

.processing-line {
  width:
    min(
      420px,
      100%
    );

  height: 3px;

  margin:
    32px auto 0;

  overflow: hidden;

  border-radius: 999px;

  background:
    rgba(
      255,
      255,
      255,
      0.10
    );
}

.processing-line span {
  display: block;

  width: 36%;
  height: 100%;

  background: var(--gold);

  animation:
    process
    1s
    ease-in-out
    infinite
    alternate;
}

@keyframes process {
  from {
    transform:
      translateX(-10%);
  }

  to {
    transform:
      translateX(190%);
  }
}


/* RESULTS */

.result-screen {
  padding:
    70px 0 80px;

  background:
    linear-gradient(
      180deg,
      var(--cream),
      var(--soft-white)
    );
}

.result-shell {
  max-width: 980px;
}

.result-header {
  max-width: 850px;

  margin-bottom: 30px;
}

.result-summary {
  max-width: 760px;

  color: var(--mid-text);

  font-size: 1.03rem;
}

.result-truth {
  margin-top: 24px;

  padding-left: 18px;

  border-left:
    3px solid
    var(--gold);

  color: var(--ink);

  font-size:
    clamp(
      1.12rem,
      2vw,
      1.4rem
    );

  font-weight: 500;
}


/* PROFILE */

.profile-grid {
  display: grid;

  grid-template-columns:
    repeat(
      2,
      minmax(0, 1fr)
    );

  gap: 16px;

  margin:
    28px 0 16px;
}

.profile-card,
.recommendation-card,
.report-card {
  border:
    1px solid
    rgba(
      17,
      17,
      17,
      0.09
    );

  border-radius: 16px;

  background: var(--white);

  box-shadow:
    0 14px 42px
    rgba(
      0,
      0,
      0,
      0.055
    );
}

.profile-card {
  padding: 25px;
}

.card-label {
  color: var(--rose);

  text-transform: uppercase;

  letter-spacing: 1.25px;

  font-size: 0.72rem;
  font-weight: 600;

  margin-bottom: 11px;
}

.status-list {
  display: grid;

  gap: 8px;
}

.status-item {
  display: flex;

  justify-content: space-between;

  gap: 15px;

  padding-bottom: 8px;

  border-bottom:
    1px solid
    rgba(
      17,
      17,
      17,
      0.07
    );

  font-size: 0.9rem;
}

.status-item:last-child {
  border-bottom: 0;

  padding-bottom: 0;
}

.status-badge {
  white-space: nowrap;

  color: var(--mid-text);

  font-size: 0.72rem;
  font-weight: 600;

  text-transform: uppercase;

  letter-spacing: 0.05em;
}


/* RECOMMENDATION */

.recommendation-card {
  margin-top: 16px;

  padding:
    clamp(
      28px,
      5vw,
      46px
    );

  border-top:
    3px solid
    var(--gold);
}

.recommendation-meta {
  color: var(--rose);

  font-weight: 600;

  letter-spacing: 0.05em;

  font-size: 0.78rem;

  text-transform: uppercase;

  margin-bottom: 14px;
}

.recommendation-card > .btn {
  margin-top: 22px;
}


/* DISCIPLINED DOLLARS DELIVERY OPTIONS */

.delivery-options {
  display: grid;

  grid-template-columns:
    repeat(
      2,
      minmax(0, 1fr)
    );

  gap: 14px;

  margin-top: 26px;
}

.delivery-option {
  padding: 22px;

  border:
    1px solid
    rgba(
      17,
      17,
      17,
      0.11
    );

  border-radius: 14px;

  background: var(--soft-white);
}

.delivery-option.is-featured {
  border-color:
    rgba(
      214,
      179,
      127,
      0.75
    );

  background: #fffaf2;
}

.delivery-option h4 {
  margin:
    0 0 8px;

  font-size: 1.05rem;

  line-height: 1.3;

  font-weight: 600;
}

.delivery-option .delivery-meta {
  margin-bottom: 10px;

  color: var(--rose);

  font-size: 0.72rem;

  font-weight: 600;

  letter-spacing: 0.05em;

  text-transform: uppercase;
}

.delivery-option p {
  color: var(--mid-text);

  font-size: 0.92rem;

  line-height: 1.55;
}

.delivery-option .btn {
  width: 100%;

  margin-top: 16px;

  padding-left: 14px;
  padding-right: 14px;
}


/* REPORT */

.report-card {
  display: grid;

  grid-template-columns:
    1fr 0.9fr;

  gap: 36px;

  margin-top: 18px;

  padding:
    clamp(
      28px,
      5vw,
      46px
    );

  background: var(--deep-black);

  color: var(--white);
}

.report-card p {
  color:
    rgba(
      255,
      255,
      255,
      0.68
    );
}

.report-card .card-label {
  color: var(--gold);
}


/* FORM */

#lead-form {
  display: grid;

  gap: 9px;
}

#lead-form label {
  font-size: 0.77rem;

  font-weight: 600;

  color:
    rgba(
      255,
      255,
      255,
      0.78
    );
}

#lead-form input[type="text"],
#lead-form input[type="email"],
#lead-form input[type="tel"] {
  width: 100%;

  min-height: 48px;

  border:
    1px solid
    rgba(
      255,
      255,
      255,
      0.16
    );

  border-radius: 8px;

  background:
    rgba(
      255,
      255,
      255,
      0.07
    );

  color: var(--white);

  padding:
    11px 13px;

  outline: none;
}

#lead-form input:focus {
  border-color: var(--gold);
}

.consent-row {
  display: flex;

  align-items: flex-start;

  gap: 9px;

  margin:
    4px 0 8px;

  font-weight:
    400 !important;

  line-height: 1.45;
}

.consent-row input {
  margin-top: 3px;

  accent-color: var(--gold);
}

.form-message {
  min-height: 20px;

  font-size: 0.78rem;
}

.result-actions {
  text-align: center;

  padding-top: 20px;
}

.text-button {
  border: 0;

  background: transparent;

  color: var(--mid-text);

  text-decoration: underline;

  cursor: pointer;
}


/* FOOTER */

.site-footer {
  background: var(--deep-black);

  border-top:
    1px solid
    rgba(
      214,
      179,
      127,
      0.16
    );

  color: var(--white);
}

.footer-inner {
  min-height: 82px;

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 24px;
}

.footer-brand .brand-framework {
  margin-top: 2px;
}

.copyright {
  color:
    rgba(
      255,
      255,
      255,
      0.48
    );

  font-size: 0.72rem;
}


/* MOBILE */

@media (max-width: 760px) {

  .page-shell {
    width:
      min(
        100% - 28px,
        1180px
      );
  }

  .intro-screen {
    padding:
      64px 0 58px;
  }

  h1 {
    font-size:
      clamp(
        2.2rem,
        11vw,
        3.55rem
      );
  }

  .question-screen {
    padding:
      28px 0 50px;
  }

  .question-card {
    padding:
      26px 20px;
  }

  .profile-grid,
  .report-card,
  .delivery-options {
    grid-template-columns: 1fr;
  }

  .report-card {
    gap: 22px;
  }

  .assessment-nav {
    flex-direction: column-reverse;
  }

  .assessment-nav .btn {
    width: 100%;
  }

  .footer-inner {
    min-height: 110px;

    flex-direction: column;

    justify-content: center;

    text-align: center;
  }

}


/* ACCESSIBILITY */

@media (prefers-reduced-motion: reduce) {

  * {
    scroll-behavior:
      auto !important;

    transition:
      none !important;

    animation:
      none !important;
  }

}