:root {
  --ink: #151525;
  --muted: #69697b;
  --line: #e6e5ef;
  --paper: #ffffff;
  --canvas: #f5f4fa;
  --lime: #d5fb59;
  --lime-strong: #bde934;
  --purple: #6657dd;
  --purple-dark: #392f94;
  --orange: #ff7a59;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--canvas);
  color: var(--ink);
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
}

button,
input,
textarea,
select {
  font: inherit;
}

button,
label {
  -webkit-tap-highlight-color: transparent;
}

button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid rgba(102, 87, 221, 0.2);
  outline-offset: 2px;
}

.honey-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.site-shell {
  min-height: 100vh;
  overflow: hidden;
  position: relative;
  padding: 0 34px 72px;
}

.background-orb {
  position: fixed;
  border-radius: 999px;
  filter: blur(4px);
  pointer-events: none;
  z-index: 0;
}

.orb-one {
  width: 380px;
  height: 380px;
  background: rgba(213, 251, 89, 0.2);
  top: -160px;
  right: -100px;
}

.orb-two {
  width: 300px;
  height: 300px;
  background: rgba(102, 87, 221, 0.11);
  left: -170px;
  top: 440px;
}

.topbar,
.intro,
.workspace {
  position: relative;
  z-index: 1;
}

.topbar {
  width: min(1220px, 100%);
  margin: 0 auto;
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(21, 21, 37, 0.09);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ink);
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 13px 13px 13px 4px;
  background: var(--ink);
  color: var(--lime);
  font-weight: 850;
  font-size: 14px;
  letter-spacing: -0.05em;
  box-shadow: 0 5px 0 var(--lime);
}

.brand-name {
  font-size: 20px;
  font-weight: 880;
  letter-spacing: -0.06em;
}

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

.secure-note {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
}

.secure-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #3ac97a;
  box-shadow: 0 0 0 4px rgba(58, 201, 122, 0.14);
}

.intro {
  width: min(1220px, 100%);
  margin: 0 auto;
  padding: 54px 0 42px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
}

.intro > div:first-child {
  max-width: 790px;
}

.intro-kicker {
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(102, 87, 221, 0.1);
  color: var(--purple-dark);
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.intro h1 {
  max-width: 760px;
  margin: 18px 0 14px;
  font-size: clamp(38px, 5vw, 66px);
  line-height: 0.98;
  letter-spacing: -0.065em;
  font-weight: 820;
}

.intro h1 span {
  color: var(--purple);
}

.intro p {
  max-width: 700px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.intro-time {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  text-align: right;
  padding-bottom: 8px;
}

.intro-time span {
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 700;
}

.intro-time strong {
  margin-top: 5px;
  font-size: 22px;
  letter-spacing: -0.04em;
}

.workspace {
  width: min(1220px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.step-sidebar {
  position: sticky;
  top: 24px;
  background: var(--ink);
  color: white;
  border-radius: 27px;
  padding: 24px 18px 18px;
  box-shadow: 0 24px 60px rgba(34, 30, 74, 0.12);
}

.sidebar-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 8px 17px;
}

.sidebar-heading span {
  font-size: 12px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.06em;
  font-weight: 750;
}

.sidebar-heading strong {
  font-size: 12px;
  color: var(--lime);
}

.mobile-progress {
  display: none;
  height: 5px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  overflow: hidden;
}

.mobile-progress span {
  display: block;
  height: 100%;
  background: var(--lime);
  border-radius: inherit;
  transition: width 300ms ease;
}

.step-sidebar ol {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 3px;
}

.step-sidebar li button {
  width: 100%;
  min-height: 62px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 9px 10px;
  border: 0;
  border-radius: 16px;
  background: transparent;
  color: white;
  text-align: left;
  cursor: pointer;
  transition:
    background 180ms ease,
    transform 180ms ease;
}

.step-sidebar li button:disabled {
  cursor: default;
}

.step-sidebar li.active button {
  background: rgba(255, 255, 255, 0.095);
}

.step-sidebar li.complete button:hover {
  background: rgba(255, 255, 255, 0.06);
}

.step-number {
  width: 31px;
  height: 31px;
  flex: 0 0 31px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  font-weight: 800;
}

.step-sidebar li.active .step-number {
  background: var(--lime);
  color: var(--ink);
  border-color: var(--lime);
  box-shadow: 0 4px 15px rgba(213, 251, 89, 0.2);
}

.step-sidebar li.complete .step-number {
  background: rgba(213, 251, 89, 0.14);
  color: var(--lime);
  border-color: rgba(213, 251, 89, 0.24);
}

.step-sidebar li small,
.step-sidebar li strong {
  display: block;
}

.step-sidebar li small {
  color: rgba(255, 255, 255, 0.45);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-weight: 700;
  margin-bottom: 3px;
}

.step-sidebar li strong {
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
  font-weight: 620;
}

.step-sidebar li.active strong,
.step-sidebar li.complete strong {
  color: white;
}

.sidebar-tip {
  margin-top: 20px;
  padding: 15px;
  background: rgba(213, 251, 89, 0.1);
  border: 1px solid rgba(213, 251, 89, 0.12);
  border-radius: 17px;
  display: flex;
  gap: 10px;
  color: var(--lime);
}

.sidebar-tip > svg,
.sidebar-tip > i {
  flex: 0 0 19px;
  margin-top: 2px;
}

.sidebar-tip p {
  margin: 0;
  font-size: 11px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.63);
}

.sidebar-tip strong {
  display: block;
  color: white;
  margin-bottom: 2px;
}

.brief-card {
  min-width: 0;
  background: var(--paper);
  border: 1px solid rgba(21, 21, 37, 0.08);
  border-radius: 28px;
  padding: 42px 46px 24px;
  box-shadow: 0 25px 70px rgba(42, 36, 88, 0.08);
}

.form-step {
  display: none;
  animation: stepIn 320ms ease both;
}

.form-step.active {
  display: block;
}

@keyframes stepIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.step-header {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 20px;
  padding-bottom: 28px;
  margin-bottom: 30px;
  border-bottom: 1px solid var(--line);
}

.step-header-number {
  width: 58px;
  height: 58px;
  border-radius: 18px 18px 18px 6px;
  display: grid;
  place-items: center;
  background: var(--lime);
  color: var(--ink);
  font-size: 18px;
  font-weight: 850;
  box-shadow: 0 6px 0 rgba(189, 233, 52, 0.4);
}

.step-header span {
  display: block;
  color: var(--purple);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 800;
  margin: 1px 0 6px;
}

.step-header h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(25px, 3vw, 35px);
  line-height: 1.12;
  letter-spacing: -0.04em;
}

.step-header p {
  max-width: 680px;
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

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

.field {
  min-width: 0;
  display: block;
  position: relative;
  margin-bottom: 24px;
}

.field-grid .field {
  margin-bottom: 0;
}

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

.field-label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 5px;
}

.field-label strong {
  font-size: 13px;
  font-weight: 730;
}

.field-label small {
  padding: 3px 6px;
  border-radius: 5px;
  background: #f0eefb;
  color: var(--purple);
  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 800;
}

.field-hint {
  display: block;
  min-height: 18px;
  margin-bottom: 8px;
  color: #858596;
  font-size: 11px;
  line-height: 1.4;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  border: 1px solid #dad9e5;
  background: #fbfbfd;
  border-radius: 13px;
  color: var(--ink);
  transition:
    border 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

.field input,
.field select {
  min-height: 50px;
  padding: 0 15px;
}

.field textarea {
  display: block;
  padding: 14px 15px 28px;
  line-height: 1.6;
  resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #aaa9b7;
}

.field input:hover,
.field textarea:hover,
.field select:hover {
  border-color: #c4c2d1;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--purple);
  background: white;
  box-shadow: 0 0 0 4px rgba(102, 87, 221, 0.09);
}

.character-count {
  position: absolute;
  right: 13px;
  bottom: 9px;
  color: #aaa9b7;
  font-size: 10px;
  background: #fbfbfd;
  padding-left: 6px;
}

.info-banner,
.prompt-card,
.budget-note {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  border-radius: 15px;
  padding: 14px 16px;
  margin: -5px 0 22px;
}

.info-banner {
  background: #f2f0ff;
  color: var(--purple-dark);
}

.info-banner > svg,
.info-banner > i,
.prompt-card > svg,
.prompt-card > i {
  flex: 0 0 20px;
  margin-top: 1px;
}

.info-banner p,
.budget-note p {
  margin: 0;
  font-size: 12px;
  line-height: 1.55;
}

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

.objective-card {
  --objective-color: var(--purple);
  min-width: 0;
  min-height: 272px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 19px;
  cursor: pointer;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border 180ms ease;
}

.objective-card:hover {
  transform: translateY(-2px);
  border-color: color-mix(in srgb, var(--objective-color) 45%, white);
  box-shadow: 0 13px 30px rgba(32, 29, 60, 0.07);
}

.objective-card.selected {
  border: 2px solid var(--objective-color);
  padding: 17px;
  box-shadow: 0 14px 35px
    color-mix(in srgb, var(--objective-color) 10%, transparent);
}

.objective-card input,
.platform-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.objective-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: color-mix(in srgb, var(--objective-color) 11%, white);
  color: var(--objective-color);
  font-size: 19px;
  margin-bottom: 13px;
}

.objective-check {
  width: 23px;
  height: 23px;
  border: 1px solid var(--line);
  border-radius: 8px;
  position: absolute;
  top: 16px;
  right: 16px;
  display: grid;
  place-items: center;
  color: white;
  font-size: 14px;
}

.objective-card.selected .objective-check {
  background: var(--objective-color);
  border-color: var(--objective-color);
}

.objective-title {
  display: block;
  font-size: 15px;
  font-weight: 780;
  letter-spacing: -0.02em;
}

.objective-subtitle {
  display: block;
  margin-top: 3px;
  color: var(--objective-color);
  font-size: 11px;
  font-weight: 700;
}

.objective-description {
  display: block;
  margin-top: 11px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.55;
}

.metric-pill {
  display: inline-block;
  margin-top: 12px;
  padding: 6px 8px;
  border-radius: 7px;
  background: #f5f5f8;
  color: #666577;
  font-size: 9px;
  font-weight: 700;
}

.objective-clarification {
  display: block;
  padding-top: 10px;
  margin-top: auto;
  color: #7b7a8a;
  font-size: 10px;
  line-height: 1.45;
  border-top: 1px dashed #e4e3eb;
}

.prompt-card {
  background: #fff9df;
  color: #8a6817;
  margin-bottom: 24px;
}

.prompt-card strong {
  display: block;
  font-size: 12px;
  margin-bottom: 3px;
}

.prompt-card p {
  margin: 0;
  font-size: 12px;
  line-height: 1.55;
}

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

.platform-card {
  --platform-color: var(--purple);
  --platform-tint: #f3f1ff;
  min-height: 92px;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 29px;
  align-items: center;
  gap: 13px;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 15px;
  cursor: pointer;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    border 160ms ease;
}

.platform-card:hover {
  transform: translateY(-2px);
  border-color: color-mix(in srgb, var(--platform-color) 38%, white);
  box-shadow: 0 12px 25px rgba(38, 34, 75, 0.06);
}

.platform-card.selected {
  border: 2px solid var(--platform-color);
  padding: 14px;
  background: color-mix(in srgb, var(--platform-tint) 50%, white);
}

.platform-logo {
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--platform-tint);
  color: var(--platform-color);
  font-size: 21px;
}

.platform-copy {
  min-width: 0;
}

.platform-copy strong,
.platform-copy small {
  display: block;
}

.platform-copy strong {
  font-size: 14px;
  margin-bottom: 4px;
}

.platform-copy small {
  color: var(--muted);
  font-size: 10px;
  line-height: 1.45;
}

.platform-check {
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 9px;
  color: #9c9baa;
  font-weight: 650;
}

.platform-card.selected .platform-check {
  background: var(--platform-color);
  border-color: var(--platform-color);
  color: white;
}

.selection-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 16px;
  padding: 13px 15px;
  background: #f8f8fb;
  border-radius: 13px;
  color: var(--muted);
  font-size: 11px;
}

.mini-platforms {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
}

.budget-note {
  align-items: center;
  background: #eef8f2;
  color: #35634b;
  margin-bottom: 20px;
}

.budget-note > span {
  width: 44px;
  height: 31px;
  display: grid;
  place-items: center;
  background: #d9efdf;
  border-radius: 9px;
  color: #286341;
  font-size: 10px;
  font-weight: 850;
}

.platform-plans {
  display: grid;
  gap: 16px;
  margin-bottom: 26px;
}

.platform-plan {
  --platform-color: var(--purple);
  --platform-tint: #f3f1ff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 19px;
}

.platform-plan > header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 17px;
  margin-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.platform-plan > header .platform-logo {
  width: 38px;
  height: 38px;
  flex-basis: 38px;
  border-radius: 11px;
  font-size: 17px;
}

.platform-plan > header strong,
.platform-plan > header small {
  display: block;
}

.platform-plan > header strong {
  font-size: 14px;
}

.platform-plan > header small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 10px;
}

.plan-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  gap: 14px;
}

.plan-grid .field {
  margin-bottom: 0;
}

.money-input {
  position: relative;
}

.money-input > span,
.money-input > small {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  color: #7e7d8d;
  font-size: 11px;
  pointer-events: none;
}

.money-input > span {
  left: 15px;
  font-size: 14px;
}

.money-input > small {
  right: 14px;
  font-weight: 700;
}

.money-input input {
  padding-left: 29px;
  padding-right: 49px;
}

.audience-section {
  padding: 21px;
  margin-bottom: 17px;
  border: 1px solid var(--line);
  border-radius: 19px;
}

.audience-section > h3 {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 20px;
  color: var(--ink);
  font-size: 14px;
}

.audience-section > h3 svg,
.audience-section > h3 i {
  color: var(--purple);
}

.audience-section .field:last-child {
  margin-bottom: 0;
}

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

.select-wrap {
  position: relative;
}

.select-wrap select {
  appearance: none;
  cursor: pointer;
  padding-right: 40px;
}

.select-wrap > svg,
.select-wrap > i {
  position: absolute;
  top: 50%;
  right: 14px;
  transform: translateY(-50%);
  color: #888797;
  pointer-events: none;
}

.segmented-control {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
  border: 1px solid var(--line);
  background: #f7f7fa;
  border-radius: 14px;
  padding: 5px;
}

.segmented-control label {
  cursor: pointer;
}

.segmented-control input {
  position: absolute;
  opacity: 0;
}

.segmented-control span {
  min-height: 38px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 650;
  transition:
    background 160ms ease,
    color 160ms ease,
    box-shadow 160ms ease;
}

.segmented-control input:checked + span {
  background: white;
  color: var(--purple-dark);
  box-shadow: 0 3px 12px rgba(32, 28, 67, 0.08);
}

.review-card {
  border: 1px solid var(--line);
  border-radius: 21px;
  overflow: hidden;
  margin-top: 4px;
}

.review-heading {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 20px;
  background: var(--ink);
  color: white;
}

.review-heading > span {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  background: var(--lime);
  color: var(--ink);
  font-size: 20px;
}

.review-heading strong,
.review-heading small {
  display: block;
}

.review-heading strong {
  font-size: 14px;
}

.review-heading small {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 10px;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  background: var(--line);
}

.review-grid > div {
  min-width: 0;
  padding: 16px 20px;
  background: white;
}

.review-grid dt {
  margin-bottom: 5px;
  color: #8a8998;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-weight: 780;
}

.review-grid dd {
  margin: 0;
  font-size: 12px;
  font-weight: 650;
  line-height: 1.45;
}

.review-grid .accent dd {
  color: var(--purple);
}

.review-goal {
  padding: 18px 20px;
  border-top: 1px solid var(--line);
}

.review-goal span {
  color: #8a8998;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-weight: 780;
}

.review-goal p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}

.review-budgets {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 16px 20px 20px;
  border-top: 1px solid var(--line);
}

.review-budgets > div {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px;
  border-radius: 12px;
  background: #f8f8fa;
}

.review-budgets > div > span {
  font-size: 17px;
}

.review-budgets p {
  min-width: 0;
  margin: 0;
}

.review-budgets strong,
.review-budgets small {
  display: block;
}

.review-budgets strong {
  font-size: 11px;
}

.review-budgets small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 9px;
  line-height: 1.4;
}

.confirmation {
  display: grid;
  grid-template-columns: 23px minmax(0, 1fr);
  align-items: start;
  gap: 10px;
  margin-top: 20px;
  cursor: pointer;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.5;
}

.confirmation input {
  position: absolute;
  opacity: 0;
}

.confirmation-box {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border: 1px solid #cfceda;
  border-radius: 7px;
  background: white;
  color: transparent;
  font-size: 13px;
}

.confirmation input:checked + .confirmation-box {
  background: var(--purple);
  border-color: var(--purple);
  color: white;
}

.form-error {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 22px;
  padding: 12px 14px;
  border-radius: 12px;
  background: #fff0f0;
  color: #a72e3b;
  font-size: 12px;
}

.form-error span {
  width: 21px;
  height: 21px;
  flex: 0 0 21px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #e44959;
  color: white;
  font-size: 11px;
  font-weight: 850;
}

.form-error p {
  margin: 0;
}

.form-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  padding-top: 26px;
  margin-top: 36px;
  border-top: 1px solid var(--line);
}

.back-button,
.primary-button,
.submit-button {
  min-height: 48px;
  width: fit-content;
  border: 0;
  border-radius: 13px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 18px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 750;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

.back-button {
  color: var(--muted);
  background: #f5f5f8;
}

.back-button:disabled {
  opacity: 0;
  pointer-events: none;
}

.primary-button,
.submit-button {
  justify-self: end;
  background: var(--ink);
  color: white;
}

.primary-button:hover,
.submit-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(21, 21, 37, 0.18);
}

.submit-button {
  background: var(--purple);
}

.submit-button:disabled {
  cursor: wait;
  opacity: 0.75;
}

.step-label {
  color: #9897a5;
  font-size: 10px;
  font-weight: 650;
}

.spinner {
  width: 15px;
  height: 15px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 700ms linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.email-destination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 7px;
  margin-top: 16px;
  color: #aaa9b6;
  font-size: 9px;
}

.is-hidden {
  display: none !important;
}

.submit-idle,
.submit-loading {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
}

.fieldset-reset {
  min-width: 0;
  padding: 0;
  border: 0;
}

.fieldset-reset .field-label {
  width: auto;
}

.objective--reconocimiento {
  --objective-color: #ff7a59;
}

.objective--trafico {
  --objective-color: #6c5ce7;
}

.objective--interaccion {
  --objective-color: #1fbf9f;
}

.objective--clientes-potenciales {
  --objective-color: #1479ff;
}

.objective--ventas {
  --objective-color: #e63d75;
}

.objective--video {
  --objective-color: #f0a202;
}

.objective--aplicacion {
  --objective-color: #8957e5;
}

.platform--meta {
  --platform-color: #0866ff;
  --platform-tint: #edf4ff;
}

.platform--tiktok {
  --platform-color: #111111;
  --platform-tint: #f3f3f4;
}

.platform--google {
  --platform-color: #4285f4;
  --platform-tint: #eff6ff;
}

.platform--linkedin {
  --platform-color: #0a66c2;
  --platform-tint: #edf6fc;
}

.platform--pinterest {
  --platform-color: #e60023;
  --platform-tint: #fff0f2;
}

.platform-tone {
  color: var(--platform-color);
}

.progress-1 {
  width: 14.2857%;
}

.progress-2 {
  width: 28.5714%;
}

.progress-3 {
  width: 42.8571%;
}

.progress-4 {
  width: 57.1428%;
}

.progress-5 {
  width: 71.4285%;
}

.progress-6 {
  width: 85.7142%;
}

.progress-7 {
  width: 100%;
}

.success-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 30px;
}

.success-card {
  width: min(560px, 100%);
  position: relative;
  z-index: 1;
  background: white;
  border: 1px solid rgba(21, 21, 37, 0.08);
  border-radius: 30px;
  padding: 50px;
  text-align: center;
  box-shadow: 0 30px 90px rgba(42, 36, 88, 0.14);
}

.success-icon {
  width: 74px;
  height: 74px;
  margin: 0 auto 24px;
  display: grid;
  place-items: center;
  border-radius: 24px 24px 24px 8px;
  background: var(--lime);
  color: var(--ink);
  font-size: 37px;
  box-shadow: 0 8px 0 rgba(189, 233, 52, 0.45);
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--purple);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-weight: 820;
}

.success-card h1 {
  margin: 0;
  font-size: 42px;
  letter-spacing: -0.06em;
}

.success-copy {
  margin: 15px auto 22px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.success-reference {
  padding: 14px;
  margin-bottom: 24px;
  border-radius: 14px;
  background: #f6f5fb;
}

.success-reference span,
.success-reference strong {
  display: block;
}

.success-reference span {
  color: #918f9e;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-weight: 780;
}

.success-reference strong {
  margin-top: 5px;
  font-size: 13px;
}

.success-card .primary-button {
  margin: 0 auto;
}

@media (max-width: 980px) {
  .site-shell {
    padding: 0 22px 60px;
  }

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

  .step-sidebar {
    position: static;
    border-radius: 20px;
    padding: 17px 18px;
  }

  .mobile-progress {
    display: block;
  }

  .step-sidebar ol,
  .sidebar-tip {
    display: none;
  }

  .brief-card {
    padding: 36px 38px 22px;
  }
}

@media (max-width: 700px) {
  .site-shell {
    padding: 0 14px 40px;
  }

  .topbar {
    height: 68px;
  }

  .secure-note {
    font-size: 11px;
  }

  .intro {
    padding: 34px 2px 28px;
    display: block;
  }

  .intro h1 {
    font-size: 41px;
  }

  .intro p {
    font-size: 14px;
  }

  .intro-time {
    display: none;
  }

  .brief-card {
    border-radius: 21px;
    padding: 25px 18px 18px;
  }

  .step-header {
    grid-template-columns: 45px minmax(0, 1fr);
    gap: 13px;
    padding-bottom: 22px;
    margin-bottom: 24px;
  }

  .step-header-number {
    width: 45px;
    height: 45px;
    border-radius: 14px 14px 14px 5px;
    font-size: 14px;
  }

  .step-header h2 {
    font-size: 25px;
  }

  .step-header p {
    font-size: 12px;
  }

  .field-grid,
  .objective-grid,
  .platform-grid,
  .plan-grid,
  .audience-grid,
  .review-grid,
  .review-budgets {
    grid-template-columns: 1fr;
  }

  .objective-card {
    min-height: 0;
  }

  .objective-clarification {
    margin-top: 12px;
  }

  .platform-card {
    grid-template-columns: 43px minmax(0, 1fr) 27px;
    gap: 10px;
    padding: 13px;
  }

  .platform-card.selected {
    padding: 12px;
  }

  .platform-logo {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
  }

  .platform-plan {
    padding: 16px;
  }

  .plan-grid {
    gap: 18px;
  }

  .segmented-control span {
    font-size: 10px;
  }

  .form-footer {
    grid-template-columns: 1fr 1fr;
  }

  .form-footer .step-label {
    display: none;
  }

  .primary-button,
  .submit-button {
    width: 100%;
  }

  .email-destination {
    text-align: center;
  }

  .success-card {
    padding: 38px 24px;
  }

  .success-card h1 {
    font-size: 36px;
  }
}

@media (max-width: 430px) {
  .brand-name {
    font-size: 18px;
  }

  .secure-note {
    max-width: 115px;
    text-align: right;
  }

  .intro h1 {
    font-size: 35px;
  }

  .intro-kicker {
    font-size: 10px;
  }

  .step-sidebar {
    border-radius: 17px;
  }

  .selection-summary {
    align-items: flex-start;
    gap: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
