:root {
  --srx-ink: #17212b;
  --srx-navy: #102c44;
  --srx-navy-deep: #0a2236;
  --srx-paper: #f5f3ee;
  --srx-paper-2: #faf9f6;
  --srx-white: #ffffff;
  --srx-line: #dce2e5;
  --srx-muted: #61707b;
  --srx-soft: #e8eeec;
  --srx-accent: #5e356f;
  --srx-success: #2f6b57;
  --srx-warning: #8a5b25;
  --srx-shadow: 0 22px 60px rgba(17, 34, 49, 0.10);
  --srx-radius-lg: 28px;
  --srx-radius-md: 18px;
}

.srx-page,
.srx-page * {
  box-sizing: border-box;
}

.srx-page {
  color: var(--srx-ink);
  background: var(--srx-paper-2);
}

.srx-page h1,
.srx-page h2,
.srx-page h3,
.srx-page h4,
.srx-page p {
  margin-top: 0;
}

.srx-kicker,
.srx-card-label,
.srx-result-label,
.srx-panel-kicker {
  display: inline-block;
  color: var(--srx-accent);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.3;
  text-transform: uppercase;
}

.srx-hero {
  padding: clamp(72px, 8vw, 118px) 0 72px;
  background: var(--srx-paper);
  border-bottom: 1px solid var(--srx-line);
}

.srx-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(360px, 0.94fr);
  gap: clamp(48px, 7vw, 92px);
  align-items: center;
}

.srx-hero-copy h1 {
  max-width: 790px;
  margin: 18px 0 24px;
  color: var(--srx-ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.75rem, 5.2vw, 5.45rem);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.srx-lead {
  max-width: 710px;
  color: var(--srx-muted);
  font-size: clamp(1.05rem, 1.5vw, 1.22rem);
  line-height: 1.72;
}

.srx-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin: 28px 0 34px;
  color: #46545f;
  font-size: 0.92rem;
  font-weight: 700;
}

.srx-trust-row span {
  position: relative;
  padding-left: 19px;
}

.srx-trust-row span::before {
  position: absolute;
  top: 0.38em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--srx-success);
  content: "";
}

.srx-button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font: inherit;
  font-size: 0.96rem;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, border-color 160ms ease;
}

.srx-button:hover {
  transform: translateY(-1px);
}

.srx-button-primary {
  color: var(--srx-white);
  background: var(--srx-navy);
  box-shadow: 0 14px 30px rgba(16, 44, 68, 0.18);
}

.srx-button-primary:hover {
  color: var(--srx-white);
  background: var(--srx-navy-deep);
}

.srx-button-secondary {
  color: var(--srx-navy);
  background: var(--srx-white);
  border-color: #bfcbd1;
}

.srx-button-light {
  color: var(--srx-navy);
  background: var(--srx-white);
}

.srx-hero-card {
  padding: clamp(28px, 4vw, 46px);
  color: var(--srx-white);
  background: var(--srx-navy);
  border-radius: var(--srx-radius-lg);
  box-shadow: var(--srx-shadow);
}

.srx-hero-card .srx-card-label {
  color: #c8d8df;
}

.srx-question-list {
  margin-top: 22px;
}

.srx-question-list > div {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 18px;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.srx-question-list > div:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.srx-question-list b {
  color: #91aab5;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
  font-weight: 500;
}

.srx-question-list strong,
.srx-question-list small {
  display: block;
}

.srx-question-list strong {
  margin-bottom: 7px;
  color: var(--srx-white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.18rem;
  font-weight: 500;
  line-height: 1.25;
}

.srx-question-list small {
  color: #c5d1d7;
  font-size: 0.92rem;
  line-height: 1.55;
}

.srx-proof-strip {
  background: var(--srx-white);
  border-bottom: 1px solid var(--srx-line);
}

.srx-proof-strip .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.srx-proof-strip span {
  padding: 18px 16px;
  color: #68757e;
  border-right: 1px solid var(--srx-line);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-align: center;
}

.srx-proof-strip span:first-child {
  border-left: 1px solid var(--srx-line);
}

.srx-builder-section {
  padding: clamp(72px, 8vw, 112px) 0;
  background: var(--srx-paper-2);
}

.srx-builder-shell {
  max-width: 1180px;
}

.srx-builder-intro {
  max-width: 810px;
  margin-bottom: 36px;
}

.srx-builder-intro h2,
.srx-how-grid h2,
.srx-final-cta h2 {
  margin: 14px 0 16px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.15rem, 4vw, 4rem);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.05;
}

.srx-builder-intro p,
.srx-how-grid > div:first-child p {
  color: var(--srx-muted);
  font-size: 1.02rem;
  line-height: 1.7;
}

.srx-wizard {
  overflow: hidden;
  background: var(--srx-white);
  border: 1px solid var(--srx-line);
  border-radius: var(--srx-radius-lg);
  box-shadow: var(--srx-shadow);
}

.srx-progress {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: #eef2f2;
  border-bottom: 1px solid var(--srx-line);
}

.srx-progress button {
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 12px;
  color: #748089;
  background: transparent;
  border: 0;
  border-right: 1px solid var(--srx-line);
  font: inherit;
  cursor: default;
}

.srx-progress button:last-child {
  border-right: 0;
}

.srx-progress button span {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid #b8c2c7;
  border-radius: 50%;
  font-size: 0.82rem;
  font-weight: 800;
}

.srx-progress button b {
  font-size: 0.86rem;
}

.srx-progress button.is-active,
.srx-progress button.is-complete {
  color: var(--srx-navy);
  background: var(--srx-white);
}

.srx-progress button.is-active span,
.srx-progress button.is-complete span {
  color: var(--srx-white);
  background: var(--srx-navy);
  border-color: var(--srx-navy);
}

.srx-step {
  padding: clamp(28px, 5vw, 58px);
}

.srx-step[hidden] {
  display: none !important;
}

.srx-step-head {
  max-width: 790px;
  margin-bottom: 30px;
}

.srx-step-head > span {
  color: var(--srx-accent);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.srx-step-head h3 {
  margin: 10px 0 12px;
  color: var(--srx-ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 3vw, 3rem);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.08;
}

.srx-step-head p {
  color: var(--srx-muted);
  line-height: 1.65;
}

.srx-form-grid,
.srx-contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.srx-field {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.srx-field > span,
.srx-question-card > span {
  color: #34434e;
  font-size: 0.86rem;
  font-weight: 800;
}

.srx-field em {
  color: #849098;
  font-style: normal;
  font-weight: 600;
}

.srx-field input,
.srx-field select,
.srx-question-card select {
  width: 100%;
  min-height: 52px;
  padding: 12px 14px;
  color: var(--srx-ink);
  background: var(--srx-white);
  border: 1px solid #cbd4d8;
  border-radius: 12px;
  font: inherit;
  outline: none;
}

.srx-field input:focus,
.srx-field select:focus,
.srx-question-card select:focus {
  border-color: var(--srx-navy);
  box-shadow: 0 0 0 3px rgba(16, 44, 68, 0.10);
}

.srx-field small {
  color: #7a878f;
  font-size: 0.78rem;
  line-height: 1.45;
}

.srx-wide {
  grid-column: 1 / -1;
}

.srx-inline-status {
  min-height: 24px;
  margin-top: 16px;
  color: var(--srx-muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.srx-inline-status.is-success {
  color: var(--srx-success);
}

.srx-inline-status.is-error {
  color: #a33b36;
}

.srx-step-actions,
.srx-submit-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid var(--srx-line);
}

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

.srx-question-card {
  display: grid;
  gap: 10px;
  padding: 20px;
  background: #f7f8f7;
  border: 1px solid var(--srx-line);
  border-radius: var(--srx-radius-md);
}

.srx-money-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.srx-money-panel {
  padding: 24px;
  background: #f7f8f7;
  border: 1px solid var(--srx-line);
  border-radius: var(--srx-radius-md);
}

.srx-money-panel h4 {
  margin-bottom: 20px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  font-weight: 500;
}

.srx-money-panel .srx-form-grid {
  grid-template-columns: 1fr;
}

.srx-input-suffix {
  position: relative;
}

.srx-input-suffix input {
  padding-right: 44px;
}

.srx-input-suffix > span {
  position: absolute;
  top: 50%;
  right: 16px;
  color: #738089;
  font-weight: 800;
  transform: translateY(-50%);
}

.srx-calculation-preview {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  margin-top: 22px;
  background: var(--srx-line);
  border: 1px solid var(--srx-line);
  border-radius: 16px;
}

.srx-calculation-preview > div {
  padding: 20px;
  background: var(--srx-white);
}

.srx-calculation-preview small,
.srx-result-metrics small,
.srx-wait-grid small,
.srx-goal-result small {
  display: block;
  margin-bottom: 8px;
  color: #738089;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.srx-calculation-preview strong {
  color: var(--srx-navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
  font-weight: 500;
}

.srx-result-hero {
  display: grid;
  grid-template-columns: 128px minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  padding: 28px;
  color: var(--srx-white);
  background: var(--srx-navy);
  border-radius: 22px;
}

.srx-score-ring {
  display: grid;
  width: 112px;
  height: 112px;
  place-items: center;
  align-content: center;
  border: 8px solid rgba(255, 255, 255, 0.18);
  border-top-color: #c8d9d2;
  border-radius: 50%;
}

.srx-score-ring span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.25rem;
  line-height: 1;
}

.srx-score-ring small {
  margin-top: 6px;
  color: #c9d5db;
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.srx-result-hero .srx-result-label {
  color: #c7d6dc;
}

.srx-result-hero h3 {
  margin: 8px 0 9px;
  color: var(--srx-white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 3.2vw, 3rem);
  font-weight: 500;
}

.srx-result-hero p {
  margin-bottom: 0;
  color: #ced9de;
  line-height: 1.6;
}

.srx-result-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.srx-result-metrics article {
  min-width: 0;
  padding: 20px;
  background: #f6f8f7;
  border: 1px solid var(--srx-line);
  border-radius: 16px;
}

.srx-result-metrics strong {
  display: block;
  margin-bottom: 7px;
  color: var(--srx-navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  font-weight: 500;
  word-break: break-word;
}

.srx-result-metrics article > span {
  color: #78858d;
  font-size: 0.8rem;
  line-height: 1.4;
}

.srx-result-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  gap: 18px;
  margin-top: 18px;
}

.srx-result-panel,
.srx-pressure-test,
.srx-save-plan {
  padding: clamp(24px, 4vw, 34px);
  background: var(--srx-white);
  border: 1px solid var(--srx-line);
  border-radius: 20px;
}

.srx-result-panel h4,
.srx-pressure-test h4,
.srx-save-plan h4 {
  margin: 9px 0 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  font-weight: 500;
  line-height: 1.16;
}

.srx-action-list {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: srx-actions;
}

.srx-action-list li {
  position: relative;
  padding: 14px 14px 14px 50px;
  color: #45535d;
  background: #f7f8f7;
  border: 1px solid var(--srx-line);
  border-radius: 13px;
  line-height: 1.5;
  counter-increment: srx-actions;
}

.srx-action-list li::before {
  position: absolute;
  top: 12px;
  left: 13px;
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  color: var(--srx-white);
  background: var(--srx-navy);
  border-radius: 50%;
  content: counter(srx-actions);
  font-size: 0.74rem;
  font-weight: 800;
}

.srx-path-panel {
  background: var(--srx-paper);
}

.srx-path-panel p {
  color: var(--srx-muted);
  line-height: 1.65;
}

.srx-goal-result {
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid #d5d9d8;
}

.srx-goal-result strong {
  display: block;
  color: var(--srx-navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  font-weight: 500;
}

.srx-pressure-test {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 26px;
  align-items: center;
  margin-top: 18px;
  background: #f6f8f7;
}

.srx-wait-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid var(--srx-line);
  border-radius: 15px;
}

.srx-wait-grid > div {
  padding: 18px 12px;
  background: var(--srx-white);
  border-right: 1px solid var(--srx-line);
  text-align: center;
}

.srx-wait-grid > div:last-child {
  border-right: 0;
}

.srx-wait-grid strong {
  color: var(--srx-navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  font-weight: 500;
}

.srx-save-plan {
  margin-top: 18px;
  border-color: #bdc9ce;
  box-shadow: 0 12px 34px rgba(16, 44, 68, 0.07);
}

.srx-save-copy {
  max-width: 780px;
  margin-bottom: 24px;
}

.srx-save-copy p {
  color: var(--srx-muted);
  line-height: 1.65;
}

.srx-check {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: #4f5d67;
  font-size: 0.88rem;
  line-height: 1.55;
}

.srx-check input {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  margin-top: 2px;
}

.srx-submit-button {
  min-width: min(100%, 290px);
}

.srx-disclaimer {
  margin: 18px 0 0;
  color: #7d888f;
  font-size: 0.78rem;
  line-height: 1.55;
}

.srx-form-error {
  margin: 0 58px 44px;
  padding: 14px 16px;
  color: #842d2b;
  background: #fff3f2;
  border: 1px solid #edc8c5;
  border-radius: 12px;
  font-weight: 700;
}

.srx-how-section {
  padding: clamp(72px, 8vw, 110px) 0;
  background: var(--srx-paper);
  border-top: 1px solid var(--srx-line);
}

.srx-how-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(46px, 7vw, 88px);
  align-items: start;
}

.srx-how-list article {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 18px;
  padding: 22px 0;
  border-top: 1px solid #ccd3d5;
}

.srx-how-list article:last-child {
  border-bottom: 1px solid #ccd3d5;
}

.srx-how-list article > span {
  color: #9aa7aa;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
}

.srx-how-list h3 {
  margin-bottom: 7px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  font-weight: 500;
}

.srx-how-list p {
  margin-bottom: 0;
  color: var(--srx-muted);
  line-height: 1.6;
}

.srx-final-cta {
  padding: clamp(70px, 8vw, 106px) 0;
  color: var(--srx-white);
  background: var(--srx-navy);
}

.srx-final-cta .container {
  max-width: 980px;
  text-align: center;
}

.srx-kicker-light {
  color: #c7d7de;
}

.srx-final-cta h2 {
  color: var(--srx-white);
}

.srx-final-cta .container > div {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
  align-items: center;
  justify-content: center;
  margin-top: 28px;
}

.srx-text-link {
  color: #dbe5e9;
  font-weight: 800;
  text-decoration: none;
}

.srx-text-link:hover {
  color: var(--srx-white);
}

.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

@media (max-width: 980px) {
  .srx-hero-grid,
  .srx-how-grid,
  .srx-money-layout,
  .srx-result-grid,
  .srx-pressure-test {
    grid-template-columns: 1fr;
  }

  .srx-hero-card {
    max-width: 760px;
  }

  .srx-result-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .srx-hero {
    padding-top: 54px;
  }

  .srx-hero-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .srx-hero-copy h1 {
    font-size: clamp(2.55rem, 13vw, 4.2rem);
  }

  .srx-proof-strip .container {
    grid-template-columns: repeat(2, 1fr);
  }

  .srx-proof-strip span:nth-child(odd) {
    border-left: 1px solid var(--srx-line);
  }

  .srx-proof-strip span:nth-child(n + 3) {
    border-top: 1px solid var(--srx-line);
  }

  .srx-progress button {
    display: grid;
    gap: 6px;
    padding: 13px 5px;
  }

  .srx-progress button b {
    font-size: 0.68rem;
  }

  .srx-form-grid,
  .srx-contact-grid,
  .srx-question-grid,
  .srx-calculation-preview,
  .srx-result-metrics {
    grid-template-columns: 1fr;
  }

  .srx-step {
    padding: 25px 18px 30px;
  }

  .srx-step-actions,
  .srx-submit-row {
    align-items: stretch;
    flex-direction: column-reverse;
  }

  .srx-step-actions .srx-button,
  .srx-submit-row .srx-button {
    width: 100%;
  }

  .srx-result-hero {
    grid-template-columns: 1fr;
  }

  .srx-score-ring {
    width: 96px;
    height: 96px;
  }

  .srx-wait-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .srx-wait-grid > div:nth-child(2) {
    border-right: 0;
  }

  .srx-wait-grid > div:nth-child(n + 3) {
    border-top: 1px solid var(--srx-line);
  }

  .srx-how-list article {
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 12px;
  }

  .srx-form-error {
    margin: 0 18px 30px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .srx-button {
    transition: none;
  }
}
