:root {
  --blue: #0d4bff;
  --blue-2: #3a7bff;
  --navy: #081340;
  --text: #0b1744;
  --muted: #5d6885;
  --surface: rgba(255, 255, 255, 0.84);
  --white: #ffffff;
  --success: #087a52;
  --error: #c52f3f;
  --shadow: 0 22px 64px rgba(25, 63, 160, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: #f8faff;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 9% 8%, rgba(58, 123, 255, 0.13), transparent 27rem),
    radial-gradient(circle at 93% 88%, rgba(13, 75, 255, 0.12), transparent 31rem),
    linear-gradient(180deg, #ffffff 0%, #f7f9ff 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

button,
input {
  font: inherit;
}

button {
  border: 0;
}

.page-shell {
  position: relative;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
}

.background-shape {
  position: absolute;
  z-index: -3;
  border-radius: 999px;
  filter: blur(2px);
  pointer-events: none;
}

.background-shape--one {
  width: 380px;
  height: 380px;
  top: -230px;
  right: -90px;
  background: linear-gradient(135deg, rgba(13, 75, 255, 0.24), rgba(58, 123, 255, 0.03));
}

.background-shape--two {
  width: 340px;
  height: 340px;
  bottom: -235px;
  left: -100px;
  background: linear-gradient(135deg, rgba(58, 123, 255, 0.04), rgba(13, 75, 255, 0.2));
}

.dot-grid {
  position: absolute;
  z-index: -2;
  top: 14%;
  right: 4.5%;
  width: 130px;
  height: 130px;
  opacity: 0.24;
  background-image: radial-gradient(var(--blue) 1.3px, transparent 1.3px);
  background-size: 15px 15px;
}

.site-header,
.hero,
footer {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0 6px;
}

.brand {
  display: inline-flex;
  align-items: center;
  max-width: min(340px, 68vw);
}

.brand img {
  display: block;
  width: 100%;
  height: auto;
}

.header-pill {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid rgba(13, 75, 255, 0.13);
  border-radius: 999px;
  color: var(--blue);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 10px 28px rgba(24, 71, 178, 0.08);
  backdrop-filter: blur(12px);
  font-size: 0.8rem;
  font-weight: 720;
  letter-spacing: 0.015em;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(370px, 0.95fr);
  align-items: center;
  gap: clamp(42px, 5.5vw, 80px);
  min-height: 0;
  padding: 8px 0 18px;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

h1 {
  max-width: 720px;
  margin: 0 0 18px;
  font-size: clamp(3rem, 5.1vw, 4.85rem);
  line-height: 1;
  letter-spacing: -0.052em;
  font-weight: 700;
}

h1 span {
  display: block;
  color: var(--blue);
}

.hero-description {
  max-width: 670px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.14rem, 1.65vw, 1.34rem);
  line-height: 1.58;
}

.waitlist-card {
  max-width: 675px;
  margin-top: 24px;
  padding: 15px;
  border: 1px solid rgba(13, 75, 255, 0.1);
  border-radius: 22px;
  background: var(--surface);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.waitlist-card label {
  display: block;
  margin: 0 0 8px 4px;
  color: var(--navy);
  font-size: 0.8rem;
  font-weight: 700;
}

.form-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

.input-wrap {
  display: flex;
  align-items: center;
  min-width: 0;
  min-height: 56px;
  padding: 0 16px;
  border: 1px solid rgba(8, 19, 64, 0.11);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.95);
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.input-wrap:focus-within {
  border-color: rgba(13, 75, 255, 0.58);
  box-shadow: 0 0 0 4px rgba(13, 75, 255, 0.09);
}

.input-wrap svg {
  flex: 0 0 auto;
  width: 20px;
  color: #6c7895;
}

.input-wrap input {
  width: 100%;
  min-width: 0;
  height: 54px;
  padding: 0 12px;
  border: 0;
  outline: 0;
  color: var(--navy);
  background: transparent;
  font-size: 1rem;
}

.input-wrap input::placeholder {
  color: #9ba4b8;
}

button[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  min-height: 56px;
  padding: 0 22px;
  border-radius: 15px;
  color: var(--white);
  background: linear-gradient(135deg, #0d4bff 0%, #2468ff 100%);
  box-shadow: 0 12px 28px rgba(13, 75, 255, 0.28);
  font-weight: 740;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, opacity 160ms ease;
}

button[type="submit"]:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 34px rgba(13, 75, 255, 0.34);
}

button[type="submit"]:focus-visible {
  outline: 3px solid rgba(13, 75, 255, 0.22);
  outline-offset: 3px;
}

button[type="submit"]:disabled {
  opacity: 0.68;
  cursor: wait;
  transform: none;
}

button[type="submit"] svg {
  width: 19px;
}

.honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
}

.form-message {
  display: none;
  margin: 10px 4px 0;
  font-size: 0.88rem;
  font-weight: 670;
}

.form-message.is-visible {
  display: block;
}

.form-message.is-success {
  color: var(--success);
}

.form-message.is-error {
  color: var(--error);
}

.privacy-note {
  margin: 9px 4px 0;
  color: #7c869c;
  font-size: 0.74rem;
  line-height: 1.4;
}

.hero-visual {
  position: relative;
  top: -30px;
  display: grid;
  place-items: center;
  min-height: 500px;
}

.visual-glow {
  position: absolute;
  width: 410px;
  height: 410px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(58, 123, 255, 0.22), rgba(58, 123, 255, 0.055) 52%, transparent 72%);
  filter: blur(2px);
}

.mascot-card {
  position: relative;
  display: grid;
  place-items: center;
  width: min(415px, 90%);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 37% 63% 54% 46% / 45% 39% 61% 55%;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(229, 237, 255, 0.86)),
    #eef3ff;
  box-shadow: 0 34px 82px rgba(24, 71, 178, 0.18);
  transform: rotate(-2deg);
}

.mascot-card::before,
.mascot-card::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  opacity: 0.95;
}

.mascot-card::before {
  width: 76px;
  height: 16px;
  top: 36px;
  right: 39px;
  transform: rotate(-26deg);
}

.mascot-card::after {
  width: 27px;
  height: 27px;
  bottom: 50px;
  left: 44px;
}

.mascot-ring {
  position: absolute;
  width: 79%;
  height: 79%;
  border: 1px dashed rgba(13, 75, 255, 0.18);
  border-radius: 50%;
}

.mascot-card img {
  position: relative;
  z-index: 2;
  width: 78%;
  height: auto;
  filter: drop-shadow(0 25px 28px rgba(13, 75, 255, 0.13));
  transform: rotate(2deg);
}

.floating-card {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 232px;
  padding: 12px 14px;
  border: 1px solid rgba(13, 75, 255, 0.1);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 48px rgba(23, 58, 144, 0.16);
  backdrop-filter: blur(16px);
}

.floating-card--top {
  top: 42px;
  right: -10px;
}

.floating-card--bottom {
  bottom: 52px;
  left: -24px;
}

.floating-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 41px;
  height: 41px;
  border-radius: 13px;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
}

.floating-icon--navy {
  background: linear-gradient(135deg, #081340, #173785);
}

.floating-icon svg {
  width: 21px;
}

.floating-card strong,
.floating-card small {
  display: block;
}

.floating-card strong {
  color: var(--navy);
  font-size: 0.86rem;
}

.floating-card small {
  margin-top: 3px;
  color: #727d96;
  font-size: 0.7rem;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 0 0 16px;
  color: #818ba1;
  font-size: 0.74rem;
}

@media (max-width: 1040px) {
  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
    gap: 32px;
  }

  .hero-visual {
    top: -22px;
    min-height: 455px;
  }

  .mascot-card {
    width: min(370px, 90%);
  }

  .visual-glow {
    width: 360px;
    height: 360px;
  }
}

@media (max-width: 860px) {
  .site-header,
  .hero,
  footer {
    width: min(720px, calc(100% - 36px));
  }

  .site-header {
    padding-top: 18px;
  }

  .hero {
    grid-template-columns: 1fr;
    align-content: center;
    gap: 10px;
    padding: 6px 0 14px;
  }

  .hero-copy {
    text-align: center;
  }

  h1,
  .hero-description,
  .waitlist-card {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-visual {
    order: -1;
    top: -8px;
    min-height: 285px;
  }

  .mascot-card {
    width: min(265px, 56vw);
  }

  .visual-glow {
    width: 270px;
    height: 270px;
  }

  .floating-card {
    min-width: 205px;
    padding: 10px 12px;
  }

  .floating-card--top {
    top: 2px;
    right: 10%;
  }

  .floating-card--bottom {
    bottom: 3px;
    left: 9%;
  }

  .floating-icon {
    width: 36px;
    height: 36px;
  }

  h1 {
    max-width: 650px;
    margin-bottom: 12px;
    font-size: clamp(2.55rem, 8vw, 3.65rem);
  }

  .hero-description {
    max-width: 650px;
    font-size: clamp(1.06rem, 2.6vw, 1.2rem);
    line-height: 1.48;
  }

  .waitlist-card {
    margin-top: 18px;
  }
}

@media (max-width: 620px) {
  .site-header,
  .hero,
  footer {
    width: min(100% - 24px, 520px);
  }

  .site-header {
    align-items: center;
    padding-top: 14px;
  }

  .brand {
    max-width: 230px;
  }

  .header-pill {
    min-height: 31px;
    padding-inline: 10px;
    font-size: 0.66rem;
  }

  .hero {
    gap: 4px;
    padding: 0 0 10px;
  }

  .hero-visual {
    top: -6px;
    min-height: 230px;
  }

  .mascot-card {
    width: min(210px, 56vw);
  }

  .visual-glow {
    width: 220px;
    height: 220px;
  }

  .floating-card {
    min-width: auto;
    max-width: 176px;
    gap: 8px;
    padding: 8px 10px;
    border-radius: 14px;
  }

  .floating-card--top {
    top: 0;
    right: 0;
  }

  .floating-card--bottom {
    bottom: 0;
    left: 0;
  }

  .floating-icon {
    width: 32px;
    height: 32px;
    border-radius: 10px;
  }

  .floating-icon svg {
    width: 17px;
  }

  .floating-card strong {
    font-size: 0.68rem;
  }

  .floating-card small {
    font-size: 0.56rem;
  }

  h1 {
    margin-bottom: 10px;
    font-size: clamp(2.15rem, 10.8vw, 2.85rem);
    line-height: 1.01;
    letter-spacing: -0.047em;
  }

  .hero-description {
    max-width: 470px;
    font-size: 1.03rem;
    line-height: 1.43;
  }

  .waitlist-card {
    margin-top: 14px;
    padding: 11px;
    border-radius: 18px;
  }

  .waitlist-card label {
    margin-bottom: 6px;
    font-size: 0.76rem;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .input-wrap,
  button[type="submit"] {
    min-height: 50px;
  }

  .input-wrap input {
    height: 48px;
  }

  button[type="submit"] {
    width: 100%;
  }

  .privacy-note {
    margin-top: 7px;
    font-size: 0.69rem;
  }

  footer {
    justify-content: center;
    padding-bottom: 10px;
    text-align: center;
  }

  footer span:last-child {
    display: none;
  }
}

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

  .header-pill {
    min-height: 29px;
    padding-inline: 8px;
  }

  .hero-visual {
    min-height: 210px;
  }

  .mascot-card {
    width: min(192px, 54vw);
  }

  h1 {
    font-size: clamp(2rem, 10.4vw, 2.45rem);
  }

  .hero-description {
    font-size: 0.96rem;
  }
}

@media (max-height: 760px) and (min-width: 861px) {
  .site-header {
    padding-top: 14px;
  }

  .hero {
    padding-top: 0;
    padding-bottom: 8px;
  }

  h1 {
    font-size: clamp(2.85rem, 4.7vw, 4.25rem);
    margin-bottom: 14px;
  }

  .hero-description {
    font-size: 1.08rem;
  }

  .waitlist-card {
    margin-top: 18px;
  }

  .hero-visual {
    top: -20px;
    min-height: 430px;
  }

  .mascot-card {
    width: min(360px, 86%);
  }

  .visual-glow {
    width: 350px;
    height: 350px;
  }
}

@media (max-height: 760px) and (max-width: 860px) {
  .site-header {
    padding-top: 10px;
  }

  .hero-visual {
    min-height: 190px;
  }

  .mascot-card {
    width: min(178px, 48vw);
  }

  .visual-glow {
    width: 190px;
    height: 190px;
  }

  .floating-card {
    transform: scale(0.9);
  }

  h1 {
    font-size: clamp(2rem, 8.5vw, 2.65rem);
  }

  .hero-description {
    font-size: 0.96rem;
    line-height: 1.38;
  }

  .waitlist-card {
    margin-top: 10px;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .mascot-card {
    animation: float 6s ease-in-out infinite;
  }

  .floating-card--top {
    animation: float-card 5.2s ease-in-out infinite;
  }

  .floating-card--bottom {
    animation: float-card 5.8s ease-in-out infinite reverse;
  }
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-8px) rotate(-1deg); }
}

@keyframes float-card {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

/* Focused conversion update */
h1 {
  max-width: 650px;
  margin-bottom: 14px;
  font-size: clamp(2.8rem, 4.55vw, 4.25rem);
  line-height: 0.98;
}

.hero-description {
  max-width: 630px;
  font-size: clamp(1.06rem, 1.42vw, 1.22rem);
  line-height: 1.47;
}

.waitlist-card {
  margin-top: 18px;
  border-color: rgba(13, 75, 255, 0.18);
  background: rgba(255, 255, 255, 0.96);
  box-shadow:
    0 22px 58px rgba(25, 63, 160, 0.17),
    0 0 0 5px rgba(13, 75, 255, 0.035);
}

button[type="submit"] {
  background: linear-gradient(135deg, #0d4bff 0%, #0a38ce 100%);
  box-shadow: 0 14px 30px rgba(13, 75, 255, 0.32);
}

body.show-success {
  min-height: 100svh;
  overflow: hidden;
}

body.show-success .page-shell {
  display: none;
}

.success-screen {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 100svh;
  overflow: hidden;
  padding: 28px;
  background:
    radial-gradient(circle at 12% 10%, rgba(58, 123, 255, 0.15), transparent 28rem),
    radial-gradient(circle at 91% 88%, rgba(13, 75, 255, 0.13), transparent 30rem),
    linear-gradient(180deg, #ffffff 0%, #f5f8ff 100%);
  isolation: isolate;
}

.success-screen[hidden] {
  display: none;
}

.success-brand {
  position: absolute;
  top: 24px;
  left: clamp(24px, 4vw, 62px);
  width: min(315px, 56vw);
}

.success-brand img {
  display: block;
  width: 100%;
  height: auto;
}

.success-orb {
  position: absolute;
  z-index: -1;
  border-radius: 999px;
  pointer-events: none;
}

.success-orb--top {
  width: 380px;
  height: 380px;
  top: -245px;
  right: -100px;
  background: linear-gradient(135deg, rgba(13, 75, 255, 0.25), rgba(58, 123, 255, 0.03));
}

.success-orb--bottom {
  width: 350px;
  height: 350px;
  bottom: -235px;
  left: -110px;
  background: linear-gradient(135deg, rgba(58, 123, 255, 0.04), rgba(13, 75, 255, 0.2));
}

.success-card {
  position: relative;
  width: min(660px, 100%);
  padding: clamp(36px, 5vw, 58px);
  border: 1px solid rgba(13, 75, 255, 0.14);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 30px 90px rgba(20, 58, 151, 0.16);
  text-align: center;
  backdrop-filter: blur(20px);
}

.success-check {
  display: grid;
  place-items: center;
  width: 66px;
  height: 66px;
  margin: 0 auto 18px;
  border-radius: 22px;
  color: #ffffff;
  background: linear-gradient(135deg, #0d4bff, #3a7bff);
  box-shadow: 0 16px 34px rgba(13, 75, 255, 0.28);
}

.success-check svg {
  width: 34px;
}

.success-kicker {
  margin: 0 0 9px;
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.success-card h1 {
  max-width: 560px;
  margin: 0 auto 15px;
  font-size: clamp(2.45rem, 5.2vw, 4.25rem);
  line-height: 0.98;
  outline: none;
}

.success-description {
  max-width: 520px;
  margin: 0 auto;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.8vw, 1.2rem);
  line-height: 1.55;
}

.success-close-note {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin-top: 25px;
  padding: 12px 16px;
  border: 1px solid rgba(8, 19, 64, 0.08);
  border-radius: 999px;
  color: var(--navy);
  background: #f2f6ff;
  font-size: 0.88rem;
  font-weight: 700;
}

.success-close-note svg {
  width: 18px;
  color: var(--blue);
}

.success-mascot {
  position: absolute;
  right: -38px;
  bottom: -45px;
  width: 146px;
  filter: drop-shadow(0 18px 28px rgba(13, 75, 255, 0.15));
  transform: rotate(5deg);
}

@media (max-width: 620px) {
  .header-pill {
    display: none;
  }

  .site-header {
    justify-content: center;
    padding-top: 11px;
    padding-bottom: 4px;
  }

  .brand {
    max-width: 218px;
  }

  .hero {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 2px 0 8px;
  }

  .hero-copy {
    order: 1;
  }

  .hero-visual {
    order: 2;
    top: 0;
    min-height: 188px;
    margin-top: 8px;
  }

  .mascot-card {
    width: min(174px, 48vw);
  }

  .mascot-card::before,
  .mascot-card::after {
    display: none;
  }

  .visual-glow {
    width: 184px;
    height: 184px;
  }

  .floating-card {
    max-width: 154px;
    padding: 7px 9px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 14px 34px rgba(23, 58, 144, 0.14);
  }

  .floating-card--top {
    top: 7px;
    right: 2px;
  }

  .floating-card--bottom {
    bottom: 5px;
    left: 2px;
  }

  .floating-icon {
    width: 29px;
    height: 29px;
    border-radius: 9px;
  }

  .floating-card strong {
    font-size: 0.64rem;
  }

  .floating-card small {
    margin-top: 2px;
    font-size: 0.52rem;
  }

  h1 {
    max-width: 390px;
    margin-bottom: 7px;
    font-size: clamp(1.92rem, 8.8vw, 2.38rem);
    line-height: 0.98;
    letter-spacing: -0.045em;
  }

  .hero-description {
    max-width: 400px;
    font-size: 0.94rem;
    line-height: 1.34;
  }

  .waitlist-card {
    max-width: 480px;
    margin-top: 10px;
    padding: 10px;
    border-radius: 18px;
    box-shadow:
      0 18px 44px rgba(25, 63, 160, 0.18),
      0 0 0 4px rgba(13, 75, 255, 0.04);
  }

  .waitlist-card label {
    margin-bottom: 5px;
    font-size: 0.72rem;
    text-align: left;
  }

  .form-row {
    gap: 7px;
  }

  .input-wrap,
  button[type="submit"] {
    min-height: 48px;
  }

  .input-wrap input {
    height: 46px;
  }

  .privacy-note {
    margin-top: 6px;
    font-size: 0.66rem;
  }

  footer {
    padding-bottom: 7px;
  }

  .success-screen {
    padding: 74px 16px 20px;
  }

  .success-brand {
    top: 18px;
    left: 50%;
    width: min(232px, 67vw);
    transform: translateX(-50%);
  }

  .success-card {
    padding: 34px 20px 72px;
    border-radius: 25px;
  }

  .success-check {
    width: 58px;
    height: 58px;
    margin-bottom: 16px;
    border-radius: 19px;
  }

  .success-card h1 {
    font-size: clamp(2.05rem, 10vw, 2.75rem);
  }

  .success-description {
    font-size: 0.98rem;
    line-height: 1.48;
  }

  .success-close-note {
    max-width: 100%;
    margin-top: 21px;
    border-radius: 18px;
    font-size: 0.8rem;
    line-height: 1.35;
  }

  .success-mascot {
    right: 14px;
    bottom: -10px;
    width: 108px;
    transform: rotate(4deg);
    transform-origin: bottom right;
  }
}

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

  .hero-visual {
    min-height: 174px;
  }

  .mascot-card {
    width: min(160px, 46vw);
  }

  .visual-glow {
    width: 168px;
    height: 168px;
  }

  h1 {
    font-size: clamp(1.82rem, 8.7vw, 2.12rem);
  }

  .hero-description {
    font-size: 0.89rem;
  }
}

/* Final mobile polish: balanced, compact and conversion-first */
.title-line {
  display: block;
}

.title-line--navy {
  color: var(--navy);
}

.title-line--blue {
  color: var(--blue);
}

@media (max-width: 620px) {
  body {
    background:
      radial-gradient(circle at 50% -12%, rgba(58, 123, 255, 0.11), transparent 22rem),
      linear-gradient(180deg, #ffffff 0%, #f5f8ff 100%);
  }

  .page-shell {
    min-height: 100svh;
    overflow: hidden;
  }

  .background-shape--one {
    width: 250px;
    height: 250px;
    top: -190px;
    right: -125px;
    opacity: 0.5;
  }

  .background-shape--two {
    width: 235px;
    height: 235px;
    bottom: -185px;
    left: -125px;
    opacity: 0.4;
  }

  .dot-grid {
    display: none;
  }

  .site-header,
  .hero,
  footer {
    width: min(calc(100% - 28px), 500px);
  }

  .site-header {
    justify-content: center;
    padding: 14px 0 8px;
  }

  .brand {
    max-width: 216px;
  }

  .hero {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 5px 0 8px;
  }

  .hero-copy {
    order: 1;
    width: 100%;
    text-align: center;
  }

  h1 {
    max-width: none;
    margin: 0 auto 10px;
    font-size: clamp(1.58rem, 7.65vw, 2.35rem);
    line-height: 1.04;
    letter-spacing: -0.043em;
    font-weight: 700;
  }

  h1 .title-line {
    white-space: nowrap;
  }

  .hero-description {
    max-width: 430px;
    margin-inline: auto;
    color: #66718c;
    font-size: clamp(0.91rem, 3.45vw, 0.99rem);
    line-height: 1.42;
  }

  .waitlist-card {
    width: min(100%, 430px);
    margin: 15px auto 0;
    padding: 12px;
    border: 1px solid rgba(13, 75, 255, 0.16);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow:
      0 18px 45px rgba(24, 63, 160, 0.16),
      0 0 0 4px rgba(13, 75, 255, 0.035);
    backdrop-filter: blur(18px);
  }

  .waitlist-card label {
    margin: 0 0 7px 4px;
    font-size: 0.76rem;
  }

  .form-row {
    gap: 9px;
  }

  .input-wrap {
    min-height: 52px;
    padding-inline: 15px;
    border-color: rgba(8, 19, 64, 0.12);
    border-radius: 16px;
  }

  .input-wrap input {
    height: 50px;
    font-size: 1rem;
  }

  button[type="submit"] {
    min-height: 54px;
    border-radius: 16px;
    font-size: 1rem;
    box-shadow: 0 14px 29px rgba(13, 75, 255, 0.28);
  }

  .privacy-note {
    margin: 8px 4px 0;
    color: #858fa6;
    font-size: 0.69rem;
    line-height: 1.38;
  }

  .hero-visual {
    order: 2;
    position: relative;
    top: auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 138px;
    grid-template-rows: 1fr 1fr;
    align-items: center;
    gap: 9px 12px;
    width: min(100%, 430px);
    min-height: 178px;
    margin: 16px auto 0;
    padding: 14px;
    overflow: hidden;
    border: 1px solid rgba(13, 75, 255, 0.1);
    border-radius: 24px;
    background:
      linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(238, 244, 255, 0.9));
    box-shadow: 0 17px 42px rgba(25, 63, 160, 0.11);
  }

  .visual-glow {
    right: -18px;
    width: 178px;
    height: 178px;
    opacity: 0.65;
  }

  .mascot-card {
    grid-column: 2;
    grid-row: 1 / 3;
    place-self: end center;
    width: 132px;
    aspect-ratio: 1;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    transform: none;
  }

  .mascot-card::before,
  .mascot-card::after,
  .mascot-ring {
    display: none;
  }

  .mascot-card img {
    width: 100%;
    filter: drop-shadow(0 18px 24px rgba(13, 75, 255, 0.15));
    transform: none;
  }

  .floating-card {
    position: relative;
    inset: auto;
    z-index: 4;
    width: 100%;
    min-width: 0;
    max-width: none;
    gap: 8px;
    padding: 9px 10px;
    border: 1px solid rgba(13, 75, 255, 0.1);
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 10px 25px rgba(22, 57, 143, 0.1);
    backdrop-filter: blur(14px);
    animation: none !important;
    transform: none !important;
  }

  .floating-card--top {
    grid-column: 1;
    grid-row: 1;
  }

  .floating-card--bottom {
    grid-column: 1;
    grid-row: 2;
  }

  .floating-icon {
    width: 32px;
    height: 32px;
    border-radius: 10px;
  }

  .floating-icon svg {
    width: 16px;
  }

  .floating-card strong {
    font-size: 0.68rem;
    line-height: 1.15;
  }

  .floating-card small {
    margin-top: 2px;
    font-size: 0.54rem;
    line-height: 1.2;
  }

  footer {
    padding: 5px 0 10px;
    color: #8993a8;
  }

  .success-card h1 {
    white-space: normal;
  }
}

@media (max-width: 390px) {
  .site-header,
  .hero,
  footer {
    width: min(calc(100% - 22px), 500px);
  }

  .brand {
    max-width: 198px;
  }

  h1 {
    font-size: clamp(1.5rem, 7.5vw, 1.83rem);
    letter-spacing: -0.04em;
  }

  .hero-description {
    max-width: 350px;
    font-size: 0.88rem;
  }

  .waitlist-card {
    margin-top: 12px;
    padding: 10px;
    border-radius: 19px;
  }

  .hero-visual {
    grid-template-columns: minmax(0, 1fr) 116px;
    min-height: 164px;
    margin-top: 12px;
    padding: 12px;
    border-radius: 21px;
  }

  .mascot-card {
    width: 112px;
  }

  .visual-glow {
    width: 145px;
    height: 145px;
  }

  .floating-card {
    padding: 8px 9px;
  }

  .floating-icon {
    width: 29px;
    height: 29px;
  }

  .floating-card strong {
    font-size: 0.63rem;
  }

  .floating-card small {
    font-size: 0.5rem;
  }

  .success-card {
    padding-bottom: 66px;
  }

  .success-mascot {
    right: 10px;
    bottom: -8px;
    width: 96px;
  }
}

@media (max-height: 720px) and (max-width: 620px) {
  .site-header {
    padding-top: 9px;
    padding-bottom: 4px;
  }

  .brand {
    max-width: 190px;
  }

  h1 {
    margin-bottom: 7px;
    font-size: clamp(1.5rem, 7vw, 2.02rem);
  }

  .hero-description {
    font-size: 0.87rem;
    line-height: 1.34;
  }

  .waitlist-card {
    margin-top: 10px;
  }

  .hero-visual {
    min-height: 150px;
    margin-top: 9px;
    padding-block: 10px;
  }

  .mascot-card {
    width: 108px;
  }

  footer {
    padding-bottom: 6px;
  }
}

/* Mobile layout refinement — compact, balanced and conversion focused */
@media (max-width: 620px) {
  body {
    background: linear-gradient(180deg, #ffffff 0%, #f4f7ff 100%);
  }

  .page-shell {
    min-height: 100svh;
    overflow: hidden;
  }

  .background-shape,
  .dot-grid,
  .visual-glow,
  .mascot-card::before,
  .mascot-card::after,
  .mascot-ring {
    display: none !important;
  }

  .site-header,
  .hero,
  footer {
    width: min(calc(100% - 28px), 470px);
  }

  .site-header {
    justify-content: center;
    padding: 15px 0 0;
  }

  .brand {
    width: min(218px, 64vw);
    max-width: none;
  }

  .header-pill {
    display: none;
  }

  .hero {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0 0 5px;
  }

  .hero-copy {
    order: 1;
    padding-top: 20px;
    text-align: center;
  }

  h1 {
    width: 100%;
    max-width: none;
    margin: 0 auto 10px;
    font-size: clamp(1.45rem, 7.25vw, 2.25rem);
    line-height: 1.04;
    letter-spacing: -0.043em;
    font-weight: 700;
  }

  .title-line {
    display: block;
  }

  .title-line--blue {
    white-space: nowrap;
  }

  .hero-description {
    width: min(100%, 420px);
    max-width: none;
    margin: 0 auto;
    color: #5a6683;
    font-size: clamp(0.88rem, 3.55vw, 0.98rem);
    line-height: 1.4;
  }

  .waitlist-card {
    width: min(100%, 440px);
    max-width: none;
    margin: 16px auto 0;
    padding: 12px;
    border: 1px solid rgba(13, 75, 255, 0.15);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow:
      0 18px 42px rgba(23, 58, 144, 0.14),
      0 0 0 4px rgba(13, 75, 255, 0.03);
  }

  .waitlist-card label {
    margin: 0 0 6px 3px;
    font-size: 0.75rem;
    text-align: left;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .input-wrap {
    min-height: 50px;
    padding-inline: 14px;
    border-radius: 15px;
  }

  .input-wrap input {
    height: 48px;
    padding-inline: 11px;
    font-size: 1rem;
  }

  button[type="submit"] {
    width: 100%;
    min-height: 52px;
    border-radius: 15px;
    font-size: 0.98rem;
    box-shadow: 0 13px 27px rgba(13, 75, 255, 0.27);
  }

  .privacy-note {
    margin: 7px 5px 0;
    font-size: 0.68rem;
    line-height: 1.35;
  }

  .hero-visual {
    order: 2;
    position: relative;
    top: auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: 104px auto;
    align-items: stretch;
    gap: 8px;
    width: min(100%, 440px);
    min-height: 0;
    margin: 14px auto 0;
    padding: 0;
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .mascot-card {
    grid-column: 1 / -1;
    grid-row: 1;
    place-self: center;
    width: 108px;
    aspect-ratio: 1;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    animation: none !important;
    transform: none !important;
  }

  .mascot-card img {
    width: 100%;
    filter: drop-shadow(0 15px 21px rgba(13, 75, 255, 0.14));
    transform: none;
  }

  .floating-card {
    position: relative;
    inset: auto;
    align-self: stretch;
    width: 100%;
    min-width: 0;
    max-width: none;
    min-height: 50px;
    gap: 8px;
    padding: 8px 9px;
    border: 1px solid rgba(13, 75, 255, 0.1);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 10px 24px rgba(23, 58, 144, 0.09);
    animation: none !important;
    transform: none !important;
  }

  .floating-card--top {
    grid-column: 1;
    grid-row: 2;
  }

  .floating-card--bottom {
    grid-column: 2;
    grid-row: 2;
  }

  .floating-icon {
    width: 31px;
    height: 31px;
    border-radius: 9px;
  }

  .floating-icon svg {
    width: 16px;
  }

  .floating-card strong {
    font-size: 0.67rem;
    line-height: 1.15;
  }

  .floating-card small {
    margin-top: 2px;
    font-size: 0.53rem;
    line-height: 1.18;
  }

  footer {
    justify-content: center;
    margin-top: 5px;
    padding: 0 0 8px;
    text-align: center;
    font-size: 0.68rem;
  }

  footer span:last-child {
    display: none;
  }
}

@media (max-width: 370px) {
  .site-header,
  .hero,
  footer {
    width: min(calc(100% - 22px), 470px);
  }

  .site-header {
    padding-top: 11px;
  }

  .brand {
    width: min(196px, 62vw);
  }

  .hero-copy {
    padding-top: 16px;
  }

  h1 {
    font-size: clamp(1.38rem, 7.05vw, 1.68rem);
    margin-bottom: 8px;
  }

  .hero-description {
    font-size: 0.85rem;
    line-height: 1.36;
  }

  .waitlist-card {
    margin-top: 13px;
    padding: 10px;
    border-radius: 18px;
  }

  .hero-visual {
    grid-template-rows: 92px auto;
    margin-top: 11px;
    gap: 7px;
  }

  .mascot-card {
    width: 94px;
  }

  .floating-card {
    min-height: 46px;
    padding: 7px 8px;
  }

  .floating-icon {
    width: 28px;
    height: 28px;
  }

  .floating-card strong {
    font-size: 0.61rem;
  }

  .floating-card small {
    font-size: 0.48rem;
  }
}

@media (max-width: 620px) and (max-height: 700px) {
  .site-header {
    padding-top: 9px;
  }

  .brand {
    width: min(195px, 59vw);
  }

  .hero-copy {
    padding-top: 13px;
  }

  h1 {
    margin-bottom: 7px;
    font-size: clamp(1.38rem, 6.85vw, 2rem);
  }

  .hero-description {
    font-size: 0.84rem;
    line-height: 1.34;
  }

  .waitlist-card {
    margin-top: 11px;
    padding: 10px;
  }

  .input-wrap,
  button[type="submit"] {
    min-height: 47px;
  }

  .input-wrap input {
    height: 45px;
  }

  .hero-visual {
    grid-template-rows: 84px auto;
    margin-top: 9px;
  }

  .mascot-card {
    width: 86px;
  }

  footer {
    margin-top: 3px;
    padding-bottom: 5px;
  }
}

/* Compact mobile proof panel */
@media (max-width: 620px) {
  .hero-visual {
    grid-template-columns: 106px minmax(0, 1fr);
    grid-template-rows: repeat(2, minmax(0, 1fr));
    gap: 7px 10px;
    min-height: 112px;
  }

  .mascot-card {
    grid-column: 1;
    grid-row: 1 / 3;
    width: 104px;
  }

  .floating-card--top {
    grid-column: 2;
    grid-row: 1;
  }

  .floating-card--bottom {
    grid-column: 2;
    grid-row: 2;
  }

  .floating-card {
    min-height: 52px;
    padding: 8px 10px;
  }

  .floating-card strong {
    font-size: 0.72rem;
  }

  .floating-card small {
    font-size: 0.56rem;
  }
}

@media (max-width: 370px) {
  .hero-visual {
    grid-template-columns: 88px minmax(0, 1fr);
    min-height: 101px;
    gap: 6px 8px;
  }

  .mascot-card {
    width: 86px;
  }

  .floating-card {
    min-height: 47px;
    padding: 7px 8px;
  }

  .floating-card strong {
    font-size: 0.65rem;
  }

  .floating-card small {
    font-size: 0.5rem;
  }
}

@media (max-width: 620px) and (max-height: 700px) {
  .hero-visual {
    grid-template-columns: 82px minmax(0, 1fr);
    min-height: 94px;
  }

  .mascot-card {
    width: 80px;
  }
}

@media (max-width: 620px) {
  .page-shell {
    display: flex;
    flex-direction: column;
  }

  .site-header,
  .hero,
  footer {
    flex: 0 0 auto;
  }

  footer {
    margin-top: 13px;
  }
}
