@font-face {
  font-family: "League Gothic";
  src: url("assets/league-gothic.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 400;
}

@font-face {
  font-family: "Manrope";
  src: url("assets/manrope.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 200 800;
}

:root {
  --ink: #09090b;
  --ink-soft: #4a4c52;
  --paper: #ffffff;
  --blue: #138dff;
  --blue-deep: #2b63ff;
  --violet: #6745f5;
  --magenta: #e64be8;
  --sky: #e8f4ff;
  --line: #d9dce3;
  --black-panel: #050506;
  --visual-paper: #f7faff;
  --focus: #1c6dff;
  --danger: #a23535;
  --display: "League Gothic", "Arial Narrow", Impact, sans-serif;
  --body: "Manrope", "Avenir Next", Avenir, "Segoe UI", Helvetica, Arial, sans-serif;
}

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

html {
  color-scheme: light;
  scrollbar-width: none;
  -webkit-text-size-adjust: 100%;
}

html::-webkit-scrollbar {
  display: none;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: clip;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  -webkit-font-smoothing: antialiased;
}

button,
input,
textarea {
  font: inherit;
}

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

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

[hidden] {
  display: none !important;
}

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

.review-toolbar {
  position: fixed;
  z-index: 40;
  top: 18px;
  right: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px;
  border: 1px solid rgba(9, 9, 11, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 38px -22px rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(16px);
}

body:not(.review-mode) .review-toolbar {
  display: none;
}

.review-toolbar__status {
  padding: 0 8px 0 10px;
  color: #61636a;
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.025em;
  white-space: nowrap;
}

.review-toolbar__button {
  min-height: 35px;
  padding: 0 14px;
  border: 0;
  border-radius: 999px;
  background: #f0f1f4;
  color: var(--ink);
  cursor: pointer;
  font-size: 0.72rem;
  font-weight: 800;
}

.review-toolbar__button--primary {
  background: var(--ink);
  color: #fff;
}

.review-toolbar__button:hover {
  background: var(--sky);
}

.review-toolbar__button--primary:hover {
  background: #292a2f;
}

.review-toolbar__button:focus-visible,
.copy-editor button:focus-visible,
.copy-editor input:focus-visible,
.copy-editor textarea:focus-visible {
  outline: 3px solid rgba(28, 109, 255, 0.35);
  outline-offset: 2px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(430px, 0.92fr);
  min-height: 100svh;
  background: var(--paper);
}

.hero__content {
  position: relative;
  z-index: 1;
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: clamp(40px, 5vh, 68px) clamp(30px, 3vw, 64px) clamp(28px, 4vh, 46px);
}

.brand-lockup {
  flex: 0 0 auto;
  margin-bottom: clamp(14px, 2vh, 24px);
}

.brand-lockup__logo {
  width: clamp(122px, 11vw, 174px);
  height: auto;
}

.hero__message {
  width: min(100%, 760px);
}

.hero h1 {
  max-width: 100%;
  margin: 0;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(4.2rem, 5.3vw, 6.1rem);
  font-weight: 400;
  letter-spacing: 0.002em;
  line-height: 0.86;
  text-transform: uppercase;
}

.body-copy {
  display: grid;
  max-width: 670px;
  gap: 12px;
  margin-top: clamp(16px, 2vh, 22px);
}

.body-copy p {
  margin: 0;
}

.body-copy__problem {
  color: var(--ink);
  font-size: clamp(1rem, 1.15vw, 1.16rem);
  font-weight: 720;
  letter-spacing: -0.014em;
  line-height: 1.52;
}

.body-copy__offer {
  color: var(--ink-soft);
  font-size: clamp(0.96rem, 1.05vw, 1.08rem);
  font-weight: 490;
  letter-spacing: -0.01em;
  line-height: 1.58;
}

.waitlist-action {
  max-width: 650px;
  margin-top: clamp(14px, 2vh, 20px);
}

.invitation {
  max-width: 600px;
  margin: 0 0 9px;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 720;
  line-height: 1.5;
}

.waitlist-form {
  position: relative;
  display: flex;
  gap: 9px;
  width: 100%;
  max-width: 620px;
}

.waitlist-form input,
.waitlist-form button {
  min-height: 56px;
  border-radius: 999px;
}

.waitlist-form input {
  flex: 1 1 300px;
  min-width: 0;
  padding: 0 22px;
  border: 1px solid #c9ccd4;
  background: #fff;
  color: var(--ink);
  box-shadow: 0 9px 26px -22px rgba(0, 0, 0, 0.6);
}

.waitlist-form input::placeholder {
  color: #71737a;
}

.waitlist-form button {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 25px;
  border: 0;
  background: linear-gradient(105deg, var(--blue) 0%, var(--violet) 58%, var(--magenta) 120%);
  box-shadow: 0 15px 32px -20px rgba(72, 81, 255, 0.9);
  color: #fff;
  cursor: pointer;
  font-weight: 800;
  transition: transform 160ms ease, box-shadow 160ms ease, filter 160ms ease;
}

.waitlist-form button svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  transition: transform 160ms ease;
}

.waitlist-form button:hover {
  box-shadow: 0 18px 38px -18px rgba(77, 66, 245, 0.92);
  filter: saturate(1.12);
  transform: translateY(-1px);
}

.waitlist-form button:hover svg {
  transform: translateX(3px);
}

.waitlist-form :focus-visible {
  outline: 3px solid rgba(28, 109, 255, 0.35);
  outline-offset: 3px;
}

.privacy-note,
.form-status {
  margin: 11px 0 0;
  color: #666970;
  font-size: 0.72rem;
  line-height: 1.45;
}

.form-status {
  min-height: 1.1em;
  color: var(--blue-deep);
  font-weight: 750;
}

.form-status[data-state="error"] {
  color: var(--danger);
}

.disclaimer {
  max-width: 630px;
  margin-top: auto;
  padding-top: clamp(24px, 3.5vh, 36px);
  color: #74767d;
  font-size: 0.65rem;
  line-height: 1.52;
}

.form-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.hero__visual {
  position: relative;
  min-width: 0;
  min-height: 100svh;
  margin: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 18%, rgba(19, 141, 255, 0.2), transparent 31%),
    radial-gradient(circle at 88% 7%, rgba(103, 69, 245, 0.18), transparent 34%),
    linear-gradient(150deg, #ffffff 5%, #f1f7ff 48%, #f7f2ff 100%);
  isolation: isolate;
}

.hero__visual::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 11%;
  left: 50%;
  width: min(38vw, 560px);
  aspect-ratio: 1;
  border: 1px solid rgba(43, 99, 255, 0.14);
  border-radius: 50%;
  transform: translateX(-50%);
}

.hero__visual::after {
  content: "";
  position: absolute;
  z-index: 0;
  right: 0;
  bottom: 68px;
  left: 0;
  height: 24%;
  background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.72));
  pointer-events: none;
}

.hero__glow {
  position: absolute;
  z-index: 0;
  top: -28%;
  left: 50%;
  width: 118%;
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 40%, rgba(19, 141, 255, 0.33), transparent 35%),
    radial-gradient(circle at 72% 38%, rgba(103, 69, 245, 0.28), transparent 36%),
    radial-gradient(circle at 58% 72%, rgba(230, 75, 232, 0.2), transparent 36%);
  filter: blur(54px);
  opacity: 0.92;
  transform: translateX(-50%);
}

.hero__portrait {
  position: absolute;
  z-index: 1;
  right: 50%;
  bottom: 61px;
  width: min(102%, 720px);
  max-width: none;
  height: auto;
  filter: drop-shadow(0 24px 32px rgba(35, 54, 92, 0.16));
  transform: translateX(50%);
}

.credibility {
  position: absolute;
  z-index: 4;
  right: 0;
  bottom: 0;
  left: 0;
  height: 68px;
  overflow: hidden;
  background: var(--black-panel);
  color: #fff;
}

.credibility__track {
  display: flex;
  width: max-content;
  height: 100%;
  animation: credibility-marquee 22s linear infinite;
}

.credibility__group {
  display: flex;
  height: 100%;
  flex: 0 0 auto;
  align-items: center;
}

.credibility__item {
  position: relative;
  display: inline-flex;
  min-height: 100%;
  align-items: center;
  padding: 0 34px;
  font-size: 0.78rem;
  font-weight: 820;
  letter-spacing: 0.035em;
  text-transform: uppercase;
  white-space: nowrap;
}

.credibility__item::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -3px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--magenta));
  transform: translateY(-50%);
}

.credibility:hover .credibility__track,
.credibility:focus-within .credibility__track,
body.editor-open .credibility__track {
  animation-play-state: paused;
}

@keyframes credibility-marquee {
  to {
    transform: translateX(-50%);
  }
}

[data-inline-editable] {
  border-radius: 6px;
  white-space: pre-line;
}

body.editor-open [data-inline-editable] {
  outline: 2px dashed rgba(28, 109, 255, 0.42);
  outline-offset: 5px;
  cursor: text;
}

body.editor-open [data-inline-editable]:focus {
  outline-style: solid;
  outline-color: var(--focus);
}

.editor-scrim {
  position: fixed;
  z-index: 44;
  inset: 0;
  background: transparent;
  pointer-events: none;
}

.copy-editor {
  position: fixed;
  z-index: 45;
  top: 0;
  right: 0;
  display: flex;
  width: min(460px, 100vw);
  height: 100svh;
  flex-direction: column;
  border-left: 1px solid rgba(9, 9, 11, 0.12);
  background: #fff;
  box-shadow: -24px 0 70px -42px rgba(0, 0, 0, 0.68);
}

.copy-editor__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding: 26px 24px 22px;
  border-bottom: 1px solid #e5e6e9;
}

.copy-editor__kicker {
  margin: 0 0 7px;
  color: var(--blue-deep);
  font-size: 0.66rem;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.copy-editor h2 {
  margin: 0;
  font-size: 1.22rem;
  letter-spacing: -0.025em;
}

.copy-editor__header p:last-child {
  margin: 7px 0 0;
  color: #666970;
  font-size: 0.76rem;
  line-height: 1.45;
}

.copy-editor__close {
  display: grid;
  width: 38px;
  min-width: 38px;
  height: 38px;
  place-items: center;
  padding: 0 0 3px;
  border: 0;
  border-radius: 50%;
  background: #eff0f3;
  color: var(--ink);
  cursor: pointer;
  font-size: 1.5rem;
  line-height: 1;
}

.copy-editor__form {
  display: flex;
  min-height: 0;
  flex: 1;
  flex-direction: column;
  overflow-y: auto;
  padding: 22px 24px 120px;
}

.copy-field {
  display: grid;
  gap: 7px;
  margin-bottom: 17px;
}

.copy-field > span {
  color: #50525a;
  font-size: 0.7rem;
  font-weight: 800;
}

.copy-field input,
.copy-field textarea {
  width: 100%;
  padding: 11px 12px;
  resize: vertical;
  border: 1px solid #cfd1d7;
  border-radius: 10px;
  background: #fff;
  color: var(--ink);
  font-size: 0.8rem;
  line-height: 1.48;
}

.copy-field input {
  min-height: 43px;
}

.copy-editor__actions {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 24px;
  border-top: 1px solid #e5e6e9;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
}

.copy-editor__actions button {
  min-height: 43px;
  flex: 0 0 auto;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(105deg, var(--blue), var(--violet));
  color: #fff;
  cursor: pointer;
  font-size: 0.76rem;
  font-weight: 850;
}

.copy-editor__actions p {
  margin: 0;
  color: #686a72;
  font-size: 0.67rem;
  line-height: 1.4;
}

.thank-you-page {
  min-height: 100svh;
  background:
    radial-gradient(circle at 16% 10%, rgba(19, 141, 255, 0.18), transparent 30%),
    radial-gradient(circle at 88% 8%, rgba(103, 69, 245, 0.16), transparent 34%),
    linear-gradient(150deg, #ffffff 5%, #f3f8ff 52%, #f8f3ff 100%);
}

.thank-you {
  display: grid;
  min-height: 100svh;
  place-items: center;
  padding: clamp(40px, 7vw, 88px) 20px;
}

.thank-you__content {
  width: min(100%, 720px);
  text-align: center;
}

.thank-you__logo {
  width: clamp(118px, 15vw, 158px);
  height: auto;
  margin: 0 auto clamp(30px, 5vw, 52px);
}

.thank-you__title {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.05rem, 6vw, 4.75rem);
  font-weight: 400;
  letter-spacing: -0.005em;
  line-height: 0.88;
  text-transform: uppercase;
  white-space: nowrap;
}

.thank-you__body {
  max-width: 650px;
  margin: 22px auto 0;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.7vw, 1.1rem);
  line-height: 1.62;
}

.thank-you__survey-intro {
  color: var(--ink);
  font-weight: 720;
}

.survey-card {
  min-height: 280px;
  margin: 30px auto 0;
  padding: clamp(20px, 4vw, 34px);
  border: 1px solid rgba(9, 9, 11, 0.1);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 26px 70px -48px rgba(18, 47, 98, 0.55);
  text-align: left;
}

.rm-area-azul-retirement-sprint-survey[data-rm-status="loading"]:empty::before,
.rm-area-azul-retirement-sprint-survey[data-rm-status="disabled"]:empty::before,
.rm-area-azul-retirement-sprint-survey[data-rm-status="unavailable"]:empty::before {
  display: block;
  padding: 90px 12px;
  color: #696c73;
  font-size: 0.9rem;
  text-align: center;
}

.rm-area-azul-retirement-sprint-survey[data-rm-status="loading"]:empty::before {
  content: "Loading the short Retirement Sprint survey…";
}

.rm-area-azul-retirement-sprint-survey[data-rm-status="disabled"]:empty::before {
  content: "Survey preview — the live questions will appear here after Kit and RightMessage are connected.";
}

.rm-area-azul-retirement-sprint-survey[data-rm-status="unavailable"]:empty::before {
  content: "The survey preview is not available on this domain yet.";
}

.thank-you__fallback {
  max-width: 560px;
  margin: 16px auto 0;
  color: #696c73;
  font-size: 0.72rem;
  line-height: 1.5;
}

@media (max-width: 1050px) {
  .hero {
    grid-template-columns: minmax(0, 1.06fr) minmax(360px, 0.94fr);
  }

  .hero__content {
    padding-right: 42px;
    padding-left: 42px;
  }

  .hero h1 {
    font-size: clamp(4rem, 6.8vw, 5.3rem);
  }
}

@media (min-width: 821px) and (max-height: 780px) {
  .hero__content {
    padding-top: 28px;
    padding-bottom: 22px;
  }

  .brand-lockup {
    margin-bottom: 8px;
  }

  .brand-lockup__logo {
    width: 132px;
  }

  .hero h1 {
    font-size: clamp(4rem, 4.75vw, 5rem);
  }

  .body-copy {
    gap: 8px;
    margin-top: 12px;
  }

  .body-copy__problem {
    font-size: 0.94rem;
    line-height: 1.42;
  }

  .body-copy__offer {
    font-size: 0.9rem;
    line-height: 1.48;
  }

  .waitlist-action {
    margin-top: 11px;
  }

  .invitation {
    margin-bottom: 7px;
    font-size: 0.82rem;
  }

  .waitlist-form input,
  .waitlist-form button {
    min-height: 52px;
  }

  .privacy-note,
  .form-status {
    margin-top: 7px;
  }

  .disclaimer {
    padding-top: 15px;
    font-size: 0.6rem;
  }
}

@media (max-width: 820px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero__content {
    min-height: auto;
    padding: 48px clamp(21px, 6vw, 48px) 38px;
  }

  body.review-mode .hero__content {
    padding-top: 88px;
  }

  .brand-lockup {
    margin-bottom: 39px;
  }

  .brand-lockup__logo {
    width: 132px;
  }

  .hero__message {
    width: 100%;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(4.2rem, 9.2vw, 5rem);
  }

  .body-copy {
    max-width: 680px;
    margin-top: 28px;
  }

  .waitlist-action {
    max-width: 620px;
    margin-top: 29px;
  }

  .disclaimer {
    max-width: 620px;
    padding-top: 35px;
  }

  .hero__visual {
    min-height: min(82vw, 650px);
  }

  .hero__visual::before {
    top: 3%;
    width: min(74vw, 560px);
  }

  .hero__glow {
    top: -44%;
    width: min(120vw, 860px);
  }

  .hero__portrait {
    bottom: 59px;
    width: min(92vw, 650px);
  }
}

@media (max-width: 640px) {
  .review-toolbar {
    top: 10px;
    right: 10px;
    left: 10px;
    justify-content: center;
    border-radius: 17px;
  }

  .review-toolbar__status {
    display: none;
  }

  .review-toolbar__button {
    min-height: 38px;
    flex: 1 1 0;
    max-width: 170px;
  }

  .hero__content {
    padding-top: 81px;
  }

  .waitlist-form {
    display: grid;
  }

  .waitlist-form input,
  .waitlist-form button {
    width: 100%;
    min-height: 56px;
  }

  .copy-editor {
    width: 100vw;
    border-left: 0;
  }

  .copy-editor__header,
  .copy-editor__form,
  .copy-editor__actions {
    padding-right: 20px;
    padding-left: 20px;
  }
}

@media (max-width: 390px) {
  .hero__content {
    padding-right: 18px;
    padding-left: 18px;
  }

  .hero h1 {
    font-size: clamp(3.75rem, 16.2vw, 4.35rem);
  }

  .body-copy__problem {
    font-size: 0.97rem;
  }

  .body-copy__offer,
  .invitation {
    font-size: 0.9rem;
  }

  .hero__visual {
    min-height: 440px;
  }

  .hero__portrait {
    width: min(104vw, 600px);
  }

  .credibility__item {
    padding: 0 26px;
    font-size: 0.7rem;
  }
}

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

  .credibility__track {
    animation: none;
  }

  .credibility__group--clone {
    display: none;
  }
}
