:root {
  --ss-font: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --navy-950: #051225;
  --navy-900: #071a36;
  --navy-850: #092143;
  --navy-800: #0b2b57;
  --blue-600: #2867d6;
  --blue-500: #3b7bf0;
  --blue-100: #eaf2ff;
  --orange-600: #ed6229;
  --orange-500: #ff7840;
  --orange-100: #fff0e8;
  --green-600: #148a59;
  --green-500: #18a66a;
  --green-100: #e7f8f0;
  --purple-500: #7657dd;
  --purple-100: #f0ecff;
  --ink: #14243d;
  --muted: #65738a;
  --muted-light: #8793a6;
  --line: #dce4ef;
  --line-strong: #c7d2e2;
  --surface: #ffffff;
  --surface-soft: #f6f8fc;
  --danger: #d83d4d;
  --danger-soft: #fff0f2;
  --warning: #a96409;
  --warning-soft: #fff8e8;
  --shadow-sm: 0 10px 30px rgba(15, 38, 72, 0.08);
  --shadow-md: 0 20px 55px rgba(10, 33, 67, 0.12);
  --header-height: 76px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  color-scheme: light;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  color: var(--ink);
  background: var(--surface-soft);
  font-family: var(--ss-font);
  font-size: 16px;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

html,
body,
button,
input,
select,
textarea {
  font-family: var(--ss-font);
}

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

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

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

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

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

button {
  border: 0;
}

[hidden] {
  display: none !important;
}

:focus-visible {
  outline: 3px solid rgba(59, 123, 240, 0.42);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 12px;
  padding: 10px 16px;
  color: #fff;
  background: var(--navy-950);
  border-radius: 10px;
  box-shadow: var(--shadow-sm);
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.signup-header {
  position: relative;
  z-index: 50;
  min-height: var(--header-height);
  border-bottom: 1px solid rgba(214, 224, 237, 0.85);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 5px 18px rgba(7, 26, 54, 0.035);
}

.signup-header-inner {
  width: min(calc(100% - 48px), 1440px);
  min-height: var(--header-height);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand img {
  width: 137px;
  height: auto;
}

.signup-header-actions,
.back-link,
.login-link {
  display: flex;
  align-items: center;
}

.signup-header-actions {
  gap: 16px;
  color: var(--muted);
  font-size: 0.88rem;
}

.back-link {
  gap: 8px;
  color: #526078;
  font-weight: 700;
  transition: color 0.2s ease;
}

.back-link svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.back-link:hover {
  color: var(--navy-900);
}

.header-separator {
  width: 1px;
  height: 22px;
  background: var(--line);
}

.login-link {
  min-height: 39px;
  padding: 0 17px;
  justify-content: center;
  color: var(--navy-800);
  border: 1px solid var(--line-strong);
  border-radius: 11px;
  background: #fff;
  font-weight: 800;
  transition: color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.login-link:hover {
  color: var(--orange-600);
  border-color: #f3b296;
  box-shadow: 0 8px 20px rgba(237, 98, 41, 0.1);
  transform: translateY(-1px);
}

.signup-main {
  min-height: calc(100vh - var(--header-height));
  display: grid;
  grid-template-columns: minmax(390px, 43%) minmax(0, 57%);
}

.value-panel {
  position: relative;
  min-height: calc(100vh - var(--header-height));
  padding: clamp(42px, 5vw, 76px) clamp(38px, 5vw, 78px);
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 15% 8%, rgba(59, 123, 240, 0.32), transparent 30%),
    radial-gradient(circle at 95% 88%, rgba(255, 120, 64, 0.2), transparent 32%),
    linear-gradient(145deg, #06152c 0%, #082349 57%, #0d315d 100%);
}

.value-grid {
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, transparent, #000 18%, #000 82%, transparent);
}

.value-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(1px);
  pointer-events: none;
}

.value-orb-one {
  top: -180px;
  right: -160px;
  width: 440px;
  height: 440px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 0 90px rgba(59, 123, 240, 0.13);
}

.value-orb-two {
  bottom: -210px;
  left: -160px;
  width: 410px;
  height: 410px;
  background: rgba(255, 120, 64, 0.08);
  border: 1px solid rgba(255, 120, 64, 0.13);
}

.value-content {
  position: relative;
  z-index: 2;
  width: min(100%, 570px);
  margin-inline: auto;
}

.trial-pill {
  width: fit-content;
  max-width: 100%;
  min-height: 38px;
  padding: 6px 14px 6px 7px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff4d8;
  border: 1px solid rgba(255, 214, 141, 0.25);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.trial-pill-icon {
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  color: #fff;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange-500), #f15f27);
  box-shadow: 0 6px 16px rgba(255, 120, 64, 0.3);
}

.trial-pill svg,
.benefit-icon svg,
.security-note svg,
.step-intro-icon svg,
.input-icon svg,
.select-chevron svg,
.button svg,
.form-alert svg,
.activation-icon svg,
.ultra-summary-icon svg,
.success-details svg,
.success-ring svg,
.mobile-trial-banner svg,
.check-visual svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.trial-pill svg {
  width: 14px;
  height: 14px;
}

.value-content h1 {
  max-width: 550px;
  margin: 27px 0 20px;
  color: #fff;
  font-size: clamp(2.4rem, 3.6vw, 4.25rem);
  line-height: 1.04;
  letter-spacing: -0.052em;
}

.value-content h1 em {
  color: #ff9a6c;
  font-style: normal;
}

.value-lead {
  max-width: 535px;
  margin: 0;
  color: rgba(231, 240, 252, 0.79);
  font-size: clamp(1rem, 1.3vw, 1.12rem);
  line-height: 1.72;
}

.benefit-list {
  margin: 34px 0 0;
  padding: 0;
  display: grid;
  gap: 13px;
  list-style: none;
}

.benefit-list li {
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.055);
  transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.benefit-list li:hover {
  border-color: rgba(255, 255, 255, 0.17);
  background: rgba(255, 255, 255, 0.08);
  transform: translateX(3px);
}

.benefit-icon {
  width: 41px;
  height: 41px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: #bcd4ff;
  border: 1px solid rgba(142, 184, 255, 0.19);
  border-radius: 12px;
  background: rgba(59, 123, 240, 0.13);
}

.benefit-icon svg {
  width: 21px;
  height: 21px;
}

.benefit-list li > span:last-child {
  min-width: 0;
  display: grid;
  gap: 2px;
}

.benefit-list strong {
  color: #fff;
  font-size: 0.93rem;
  letter-spacing: -0.01em;
}

.benefit-list small {
  color: rgba(220, 232, 248, 0.63);
  font-size: 0.77rem;
  line-height: 1.45;
}

.value-proof {
  margin-top: 28px;
  padding-top: 25px;
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
}

.proof-badges {
  display: flex;
  padding-left: 7px;
}

.proof-badges span {
  width: 31px;
  height: 31px;
  margin-left: -7px;
  display: grid;
  place-items: center;
  color: #fff;
  border: 2px solid var(--navy-800);
  border-radius: 50%;
  background: linear-gradient(145deg, #467ed6, #173d76);
  font-size: 0.67rem;
  font-weight: 900;
}

.proof-badges span:nth-child(2) {
  background: linear-gradient(145deg, #f68b5b, #cb4f21);
}

.proof-badges span:nth-child(3) {
  background: linear-gradient(145deg, #27b878, #0e7047);
}

.proof-badges span:nth-child(4) {
  color: var(--navy-800);
  background: #fff;
}

.value-proof p {
  margin: 0;
  display: grid;
  gap: 1px;
}

.value-proof strong {
  color: #fff;
  font-size: 0.82rem;
}

.value-proof p span {
  color: rgba(220, 232, 248, 0.62);
  font-size: 0.74rem;
}

.form-panel {
  min-width: 0;
  padding: clamp(35px, 4vw, 62px) clamp(24px, 5.2vw, 82px) 32px;
  background:
    radial-gradient(circle at 92% 3%, rgba(59, 123, 240, 0.07), transparent 24%),
    var(--surface-soft);
}

.form-shell {
  width: min(100%, 760px);
  margin-inline: auto;
}

.mobile-trial-banner {
  display: none;
}

.form-heading {
  margin-bottom: 27px;
}

.form-eyebrow,
.success-eyebrow {
  margin: 0 0 5px;
  color: var(--orange-600);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.form-heading h2,
.success-panel h2 {
  margin: 0;
  color: var(--navy-950);
  font-size: clamp(1.65rem, 2.4vw, 2.2rem);
  line-height: 1.15;
  letter-spacing: -0.038em;
}

.form-heading > p:last-child {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.91rem;
}

.wizard-progress {
  margin-bottom: 30px;
}

.wizard-progress ol {
  position: relative;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  list-style: none;
}

.wizard-progress ol::before,
.wizard-progress ol::after {
  content: "";
  position: absolute;
  z-index: 0;
  top: 18px;
  left: 12.5%;
  width: 75%;
  height: 2px;
  border-radius: 2px;
}

.wizard-progress ol::before {
  background: var(--line);
}

.wizard-progress ol::after {
  width: var(--wizard-progress, 0%);
  max-width: 75%;
  background: linear-gradient(90deg, var(--blue-500), var(--orange-500));
  transition: width 0.35s ease;
}

.wizard-progress li {
  position: relative;
  z-index: 1;
  min-width: 0;
  display: grid;
  justify-items: center;
  gap: 8px;
  color: var(--muted-light);
  text-align: center;
}

.step-number {
  width: 37px;
  height: 37px;
  display: grid;
  place-items: center;
  color: #77869c;
  border: 2px solid var(--line);
  border-radius: 50%;
  background: var(--surface-soft);
  font-size: 0.76rem;
  font-weight: 900;
  transition: color 0.25s ease, border-color 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
}

.step-label {
  min-width: 0;
  display: grid;
  gap: 1px;
}

.step-label strong {
  color: #69778d;
  font-size: 0.76rem;
  letter-spacing: -0.01em;
}

.step-label small {
  font-size: 0.65rem;
}

.wizard-progress li.is-active .step-number {
  color: #fff;
  border-color: var(--blue-500);
  background: var(--blue-500);
  box-shadow: 0 0 0 5px rgba(59, 123, 240, 0.11), 0 7px 15px rgba(59, 123, 240, 0.2);
}

.wizard-progress li.is-active .step-label strong {
  color: var(--navy-900);
}

.wizard-progress li.is-complete .step-number {
  color: #fff;
  border-color: var(--green-500);
  background: var(--green-500);
}

.wizard-progress li.is-complete .step-number::before {
  content: "✓";
  font-size: 0.86rem;
}

.wizard-progress li.is-complete .step-number {
  font-size: 0;
}

.form-alert {
  position: relative;
  margin: -9px 0 23px;
  padding: 12px 42px 12px 13px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #9f2634;
  border: 1px solid #f3c3ca;
  border-radius: 13px;
  background: var(--danger-soft);
  font-size: 0.83rem;
  font-weight: 650;
}

.form-alert.is-success {
  color: #0f7049;
  border-color: #bce7d3;
  background: var(--green-100);
}

.form-alert-icon {
  flex: 0 0 auto;
  margin-top: 1px;
}

.form-alert-icon svg {
  width: 18px;
  height: 18px;
}

.form-alert > button {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 28px;
  height: 28px;
  padding: 6px;
  display: grid;
  place-items: center;
  color: currentColor;
  border-radius: 8px;
  background: transparent;
  cursor: pointer;
}

.form-alert > button:hover {
  background: rgba(0, 0, 0, 0.05);
}

.form-alert > button svg {
  width: 15px;
  height: 15px;
}

.noscript-alert {
  padding: 14px;
  color: #8c4e00;
  border: 1px solid #efd39d;
  border-radius: 12px;
  background: var(--warning-soft);
}

.honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.wizard-step {
  min-width: 0;
  margin: 0;
  padding: clamp(22px, 3vw, 31px);
  border: 1px solid rgba(214, 224, 237, 0.92);
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--shadow-sm);
  animation: step-enter 0.35s ease both;
}

.wizard-step > legend {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

.step-intro {
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  gap: 13px;
}

.step-intro-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: var(--blue-600);
  border-radius: 13px;
  background: var(--blue-100);
}

.step-intro-icon.is-orange {
  color: var(--orange-600);
  background: var(--orange-100);
}

.step-intro-icon.is-green {
  color: var(--green-600);
  background: var(--green-100);
}

.step-intro-icon.is-purple {
  color: var(--purple-500);
  background: var(--purple-100);
}

.step-intro-icon svg {
  width: 22px;
  height: 22px;
}

.step-intro h3 {
  margin: 0;
  color: var(--navy-950);
  font-size: 1rem;
  letter-spacing: -0.018em;
}

.step-intro p {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.45;
}

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

.field-span-2 {
  grid-column: span 2;
}

.form-field {
  min-width: 0;
}

.form-field > label,
.code-area > label {
  margin-bottom: 7px;
  display: flex;
  align-items: center;
  gap: 6px;
  color: #334158;
  font-size: 0.76rem;
  font-weight: 800;
}

.optional-label {
  color: var(--muted-light);
  font-size: 0.65rem;
  font-weight: 650;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: 11px;
  background: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

input,
select {
  min-height: 46px;
  padding: 0 13px;
}

textarea {
  min-height: 91px;
  padding: 11px 13px;
  resize: vertical;
  line-height: 1.5;
}

input::placeholder,
textarea::placeholder {
  color: #a1abba;
  opacity: 1;
}

input:hover,
select:hover,
textarea:hover {
  border-color: #acbbcf;
}

input:focus,
select:focus,
textarea:focus,
.domain-input:focus-within {
  outline: 0;
  border-color: var(--blue-500);
  box-shadow: 0 0 0 4px rgba(59, 123, 240, 0.11);
}

input:disabled,
select:disabled,
textarea:disabled {
  color: #8a96a8;
  background: #f1f4f8;
  cursor: not-allowed;
}

.input-wrap {
  position: relative;
}

.input-wrap > input,
.input-wrap > select {
  padding-left: 42px;
}

.input-wrap.no-icon > select,
.input-wrap.no-icon > input {
  padding-left: 13px;
}

.input-wrap.has-action > input {
  padding-right: 65px;
}

.input-wrap.has-status > input,
.input-wrap.has-status > select {
  padding-right: 42px;
}

.input-icon {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 13px;
  color: #8592a4;
  pointer-events: none;
  transform: translateY(-50%);
}

.input-icon svg {
  width: 18px;
  height: 18px;
}

.input-action {
  position: absolute;
  z-index: 3;
  top: 50%;
  right: 6px;
  min-height: 32px;
  padding: 0 7px;
  color: var(--blue-600);
  border-radius: 7px;
  background: transparent;
  font-size: 0.67rem;
  font-weight: 800;
  cursor: pointer;
  transform: translateY(-50%);
}

.input-action:hover {
  background: var(--blue-100);
}

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

.select-chevron {
  position: absolute;
  z-index: 2;
  top: 50%;
  right: 13px;
  color: #718096;
  pointer-events: none;
  transform: translateY(-50%);
}

.select-chevron svg {
  width: 17px;
  height: 17px;
}

.has-status .select-chevron {
  right: 40px;
}

.field-hint,
.field-error,
.availability-status,
.textarea-meta,
.code-meta {
  font-size: 0.67rem;
}

.field-hint {
  margin-top: 5px;
  display: block;
  color: var(--muted-light);
  line-height: 1.45;
}

.field-error {
  min-height: 0;
  margin-top: 5px;
  display: none;
  color: var(--danger);
  font-weight: 700;
  line-height: 1.35;
}

.field-error:not(:empty) {
  display: block;
}

.form-field.is-invalid input,
.form-field.is-invalid select,
.form-field.is-invalid textarea,
.form-field.is-invalid .domain-input,
.code-area.is-invalid input,
.terms-check.is-invalid .check-visual {
  border-color: #df6b78;
  background-color: #fffafb;
}

.form-field.is-invalid input:focus,
.form-field.is-invalid select:focus,
.form-field.is-invalid textarea:focus,
.form-field.is-invalid .domain-input:focus-within,
.code-area.is-invalid input:focus {
  box-shadow: 0 0 0 4px rgba(216, 61, 77, 0.1);
}

.textarea-meta {
  margin-top: 5px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted-light);
}

.domain-input {
  position: relative;
  min-height: 46px;
  display: grid;
  grid-template-columns: auto minmax(80px, 1fr) auto;
  align-items: center;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 11px;
  background: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.domain-input input {
  min-width: 0;
  min-height: 44px;
  padding: 0 4px;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.domain-input input:focus {
  box-shadow: none;
}

.domain-protocol,
.domain-suffix {
  color: #7e8b9e;
  font-size: 0.74rem;
  white-space: nowrap;
}

.domain-protocol {
  padding-left: 13px;
}

.domain-suffix {
  max-width: 185px;
  padding-right: 13px;
  overflow: hidden;
  text-overflow: ellipsis;
}

.domain-loader,
.input-loader,
.button-spinner {
  width: 18px;
  height: 18px;
  display: none;
  border: 2px solid rgba(59, 123, 240, 0.2);
  border-top-color: var(--blue-500);
  border-radius: 50%;
  animation: spin 0.75s linear infinite;
}

.domain-loader {
  position: absolute;
  z-index: 3;
  top: 13px;
  right: 10px;
  background: #fff;
}

.domain-input.is-loading .domain-loader,
.input-wrap.is-loading .input-loader,
.button.is-loading .button-spinner {
  display: block;
}

.domain-input.is-loading .domain-suffix {
  padding-right: 37px;
}

.input-loader {
  position: absolute;
  z-index: 4;
  top: 14px;
  right: 13px;
  background-color: inherit;
}

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

.domain-feedback {
  min-height: 19px;
  margin-top: 4px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.domain-feedback .field-hint {
  margin-top: 0;
}

.availability-status {
  flex: 0 0 auto;
  font-weight: 800;
  text-align: right;
}

.availability-status.is-available {
  color: var(--green-600);
}

.availability-status.is-unavailable {
  color: var(--danger);
}

.address-grid {
  grid-template-columns: 0.85fr 1.15fr;
}

.field-street,
.field-complement,
.field-neighborhood {
  grid-column: span 1;
}

.field-number {
  grid-column: auto;
}

.wizard-actions {
  margin-top: 27px;
  padding-top: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 13px;
  border-top: 1px solid #e8edf4;
}

.wizard-actions.is-end {
  justify-content: flex-end;
}

.button {
  min-height: 47px;
  padding: 0 19px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid transparent;
  border-radius: 11px;
  font-size: 0.82rem;
  font-weight: 850;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background-color 0.2s ease, opacity 0.2s ease;
}

.button svg {
  width: 18px;
  height: 18px;
}

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

.button:disabled {
  opacity: 0.58;
  cursor: not-allowed;
}

.button-primary {
  min-width: 154px;
  color: #fff;
  background: linear-gradient(135deg, var(--orange-500), var(--orange-600));
  box-shadow: 0 10px 23px rgba(237, 98, 41, 0.21);
}

.button-primary:hover:not(:disabled) {
  box-shadow: 0 14px 28px rgba(237, 98, 41, 0.29);
}

.button-secondary {
  color: #46566e;
  border-color: var(--line-strong);
  background: #fff;
}

.button-secondary:hover:not(:disabled) {
  border-color: #a9b8cc;
  background: #f8fafc;
}

.review-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: #fbfcfe;
}

.review-heading {
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 11px;
  border-bottom: 1px solid #e8edf4;
  background: #fff;
}

.review-logo {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: #fff;
  border-radius: 11px;
  background: linear-gradient(145deg, var(--navy-800), var(--blue-500));
  font-size: 0.72rem;
  font-weight: 900;
}

.review-heading > div {
  min-width: 0;
  display: grid;
  gap: 1px;
}

.review-heading strong,
.review-heading span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.review-heading strong {
  color: var(--navy-900);
  font-size: 0.86rem;
}

.review-heading div span {
  color: var(--muted);
  font-size: 0.69rem;
}

.review-heading button {
  margin-left: auto;
  padding: 7px 9px;
  color: var(--blue-600);
  border-radius: 8px;
  background: var(--blue-100);
  font-size: 0.68rem;
  font-weight: 800;
  cursor: pointer;
}

.review-card dl {
  margin: 0;
  padding: 5px 16px;
}

.review-card dl > div {
  padding: 9px 0;
  display: grid;
  grid-template-columns: 95px minmax(0, 1fr);
  gap: 12px;
  border-bottom: 1px solid #e8edf4;
}

.review-card dl > div:last-child {
  border-bottom: 0;
}

.review-card dt {
  color: var(--muted-light);
  font-size: 0.68rem;
  font-weight: 750;
}

.review-card dd {
  min-width: 0;
  margin: 0;
  overflow: hidden;
  color: #3d4c63;
  font-size: 0.72rem;
  font-weight: 700;
  text-align: right;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.activation-card {
  margin-top: 17px;
  padding: 16px;
  border: 1px solid #d9e5f7;
  border-radius: 15px;
  background: linear-gradient(135deg, #f7faff, #fff);
}

.activation-heading {
  display: flex;
  align-items: center;
  gap: 11px;
}

.activation-icon {
  width: 37px;
  height: 37px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: var(--blue-600);
  border-radius: 10px;
  background: var(--blue-100);
}

.activation-icon svg {
  width: 19px;
  height: 19px;
}

.activation-heading > div {
  min-width: 0;
  display: grid;
  gap: 2px;
}

.activation-heading strong {
  color: var(--navy-900);
  font-size: 0.82rem;
}

.activation-heading span {
  color: var(--muted);
  font-size: 0.68rem;
  line-height: 1.45;
}

.activation-heading b {
  color: #3f4f66;
}

.button-code {
  width: 100%;
  min-height: 42px;
  margin-top: 13px;
  color: var(--blue-600);
  border-color: #bad0f3;
  background: #fff;
}

.button-code:hover:not(:disabled) {
  border-color: #8fb2e9;
  background: var(--blue-100);
}

.code-area {
  margin-top: 15px;
  padding-top: 14px;
  border-top: 1px solid #e0e8f3;
}

.code-area input {
  height: 58px;
  color: var(--navy-900);
  font-size: 1.45rem;
  font-weight: 900;
  letter-spacing: 0.38em;
  text-align: center;
}

.code-meta {
  margin-top: 7px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted-light);
}

.code-meta button {
  padding: 4px 0;
  color: var(--blue-600);
  background: transparent;
  font-size: inherit;
  font-weight: 800;
  cursor: pointer;
}

.code-meta button:disabled {
  color: var(--muted-light);
  cursor: not-allowed;
}

.terms-check {
  margin-top: 16px;
  display: grid;
  grid-template-columns: 19px minmax(0, 1fr);
  align-items: start;
  gap: 9px;
  color: #58677c;
  font-size: 0.69rem;
  line-height: 1.55;
  cursor: pointer;
}

.terms-check input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.check-visual {
  width: 19px;
  height: 19px;
  margin-top: 1px;
  display: grid;
  place-items: center;
  color: transparent;
  border: 1.5px solid #b8c4d4;
  border-radius: 5px;
  background: #fff;
  transition: color 0.2s ease, border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.check-visual svg {
  width: 14px;
  height: 14px;
  stroke-width: 2.5;
}

.terms-check input:checked + .check-visual {
  color: #fff;
  border-color: var(--green-500);
  background: var(--green-500);
}

.terms-check input:focus-visible + .check-visual {
  box-shadow: 0 0 0 4px rgba(59, 123, 240, 0.14);
}

.terms-check a {
  color: var(--blue-600);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.terms-error {
  margin-left: 28px;
}

.ultra-summary {
  margin-top: 15px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid #f3d0be;
  border-radius: 13px;
  background: linear-gradient(135deg, var(--orange-100), #fffaf7);
}

.ultra-summary-icon {
  width: 33px;
  height: 33px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: var(--orange-600);
  border-radius: 9px;
  background: #fff;
}

.ultra-summary-icon svg {
  width: 17px;
  height: 17px;
}

.ultra-summary > div {
  min-width: 0;
  display: grid;
  gap: 1px;
}

.ultra-summary > div strong {
  color: #a74219;
  font-size: 0.75rem;
}

.ultra-summary > div span {
  color: #8c604f;
  font-size: 0.64rem;
}

.ultra-price {
  margin-left: auto;
  display: grid;
  flex: 0 0 auto;
  color: #9b3d17;
  text-align: right;
}

.ultra-price strong {
  font-size: 1rem;
}

.ultra-price small {
  color: #a97662;
  font-size: 0.6rem;
}

.button-submit {
  min-width: 227px;
}

.button-submit .button-spinner {
  border-color: rgba(255, 255, 255, 0.3);
  border-top-color: #fff;
}

.button-submit.is-loading .button-label,
.button-submit.is-loading .button-arrow {
  display: none;
}

.success-panel {
  padding: clamp(27px, 4vw, 43px);
  border: 1px solid rgba(214, 224, 237, 0.92);
  border-radius: 23px;
  background: #fff;
  box-shadow: var(--shadow-md);
  text-align: center;
  animation: success-enter 0.5s cubic-bezier(0.2, 0.9, 0.25, 1.15) both;
}

@keyframes success-enter {
  from { opacity: 0; transform: translateY(12px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.success-illustration {
  position: relative;
  width: 100px;
  height: 88px;
  margin: 0 auto 11px;
  display: grid;
  place-items: center;
}

.success-ring {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  color: #fff;
  border: 8px solid #dff6ed;
  border-radius: 50%;
  background: var(--green-500);
  box-shadow: 0 12px 28px rgba(24, 166, 106, 0.2);
}

.success-ring svg {
  width: 31px;
  height: 31px;
  stroke-width: 2.4;
}

.success-spark {
  position: absolute;
  color: var(--orange-500);
  font-weight: 900;
}

.spark-one { top: 4px; left: 5px; font-size: 1.1rem; }
.spark-two { top: 10px; right: 2px; color: var(--blue-500); font-size: 0.85rem; }
.spark-three { right: 13px; bottom: 4px; color: #f6bd35; font-size: 0.55rem; }

.success-eyebrow {
  margin-bottom: 7px;
  color: var(--green-600);
}

.success-lead {
  max-width: 540px;
  margin: 12px auto 24px;
  color: var(--muted);
  font-size: 0.87rem;
  line-height: 1.65;
}

.success-details {
  margin: 0 auto 24px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fbfcfe;
  text-align: left;
}

.success-details > div {
  min-width: 0;
  padding: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.success-details > div + div {
  border-left: 1px solid var(--line);
}

.success-details > div > span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: var(--blue-600);
  border-radius: 9px;
  background: var(--blue-100);
}

.success-details svg {
  width: 17px;
  height: 17px;
}

.success-details p {
  min-width: 0;
  margin: 0;
  display: grid;
  gap: 1px;
}

.success-details small {
  color: var(--muted-light);
  font-size: 0.63rem;
}

.success-details a,
.success-details strong {
  overflow: hidden;
  color: var(--navy-800);
  font-size: 0.73rem;
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.success-details a:hover {
  color: var(--blue-600);
  text-decoration: underline;
}

.success-login {
  width: min(100%, 340px);
  min-height: 51px;
  margin-inline: auto;
}

.success-home {
  width: fit-content;
  margin: 14px auto 0;
  display: block;
  color: var(--muted);
  font-size: 0.73rem;
  font-weight: 750;
}

.success-home:hover {
  color: var(--blue-600);
}

.security-note {
  margin: 19px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  color: var(--muted-light);
  font-size: 0.67rem;
  text-align: center;
}

.security-note svg {
  width: 15px;
  height: 15px;
  color: var(--green-500);
}

@media (max-width: 1180px) {
  .signup-main {
    grid-template-columns: minmax(350px, 39%) minmax(0, 61%);
  }

  .value-panel {
    padding-inline: 37px;
  }

  .value-content h1 {
    font-size: clamp(2.3rem, 3.8vw, 3.5rem);
  }

  .form-panel {
    padding-inline: clamp(22px, 4vw, 50px);
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 68px;
  }

  .signup-header-inner {
    width: min(calc(100% - 30px), 820px);
  }

  .brand img {
    width: 122px;
  }

  .account-question,
  .header-separator {
    display: none;
  }

  .signup-main {
    display: block;
  }

  .value-panel {
    display: none;
  }

  .form-panel {
    min-height: calc(100vh - var(--header-height));
    padding: 28px 22px 24px;
  }

  .form-shell {
    max-width: 720px;
  }

  .mobile-trial-banner {
    margin-bottom: 22px;
    padding: 11px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #83441f;
    border: 1px solid #f3d1bd;
    border-radius: 13px;
    background: linear-gradient(135deg, var(--orange-100), #fffaf6);
  }

  .mobile-trial-banner > span {
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    color: #fff;
    border-radius: 50%;
    background: var(--orange-500);
  }

  .mobile-trial-banner svg {
    width: 16px;
    height: 16px;
    stroke-width: 2.4;
  }

  .mobile-trial-banner p {
    margin: 0;
    display: grid;
    gap: 1px;
  }

  .mobile-trial-banner strong {
    font-size: 0.76rem;
  }

  .mobile-trial-banner small {
    color: #9c725d;
    font-size: 0.64rem;
  }
}

@media (max-width: 620px) {
  .signup-header-actions {
    gap: 8px;
  }

  .back-link span {
    display: none;
  }

  .back-link {
    width: 38px;
    height: 38px;
    justify-content: center;
    border: 1px solid var(--line);
    border-radius: 10px;
  }

  .login-link {
    min-height: 38px;
    padding-inline: 14px;
  }

  .form-panel {
    padding: 20px 13px 20px;
  }

  .mobile-trial-banner {
    margin-inline: 2px;
    margin-bottom: 18px;
  }

  .form-heading {
    margin: 0 4px 22px;
  }

  .form-heading h2 {
    font-size: 1.55rem;
  }

  .form-heading > p:last-child {
    font-size: 0.8rem;
  }

  .wizard-progress {
    margin: 0 3px 24px;
  }

  .wizard-progress ol::before,
  .wizard-progress ol::after {
    top: 15px;
  }

  .step-number {
    width: 31px;
    height: 31px;
    font-size: 0.69rem;
  }

  .step-label strong {
    font-size: 0.65rem;
  }

  .step-label small {
    display: none;
  }

  .wizard-step {
    padding: 20px 16px;
    border-radius: 17px;
  }

  .step-intro {
    align-items: flex-start;
  }

  .step-intro-icon {
    width: 40px;
    height: 40px;
  }

  .step-intro h3 {
    font-size: 0.93rem;
  }

  .step-intro p {
    font-size: 0.71rem;
  }

  .field-grid,
  .address-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 17px;
  }

  .field-span-2,
  .field-street,
  .field-number,
  .field-neighborhood,
  .field-complement,
  .field-cep {
    grid-column: auto;
  }

  .domain-input {
    grid-template-columns: minmax(72px, 1fr) auto;
  }

  .domain-protocol {
    display: none;
  }

  .domain-input input {
    padding-left: 12px;
  }

  .domain-suffix {
    max-width: 145px;
  }

  .domain-feedback {
    display: block;
  }

  .availability-status {
    margin-top: 3px;
    display: block;
    text-align: left;
  }

  .wizard-actions {
    gap: 9px;
  }

  .wizard-actions .button {
    min-width: 0;
    padding-inline: 13px;
  }

  .wizard-actions .button-next,
  .button-submit {
    flex: 1;
  }

  .button-submit {
    font-size: 0.74rem;
  }

  .review-card dl > div {
    grid-template-columns: 82px minmax(0, 1fr);
  }

  .activation-heading {
    align-items: flex-start;
  }

  .ultra-summary {
    align-items: flex-start;
  }

  .ultra-price {
    display: none;
  }

  .success-panel {
    padding: 27px 17px;
    border-radius: 18px;
  }

  .success-details {
    grid-template-columns: 1fr;
  }

  .success-details > div + div {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .security-note {
    padding-inline: 8px;
  }
}

@media (max-width: 390px) {
  .brand img {
    width: 111px;
  }

  .signup-header-inner {
    width: calc(100% - 22px);
  }

  .form-panel {
    padding-inline: 9px;
  }

  .wizard-step {
    padding-inline: 13px;
  }

  .button-submit {
    line-height: 1.2;
  }
}

@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;
  }
}
