﻿:root {
  --ink: #08112d;
  --muted: #132247;
  --blue: #075fe8;
  --deep-blue: #0859d8;
  --orange: #ff6a00;
  --line: #dce8fb;
  --soft: #f5f9ff;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  min-height: 100%;
  background: #fff;
  color: var(--ink);
  font-family: "Segoe UI", Arial, sans-serif;
}

body {
  display: flex;
  justify-content: center;
}

.page-shell {
  width: 1024px;
  min-height: 1536px;
  background: #fff;
}

.topbar {
  position: relative;
  z-index: 3;
  height: 86px;
  display: flex;
  align-items: center;
  padding: 18px 38px 0;
}
.logo {
  width: 178px;
  height: auto;
  display: block;
}
.nav {
  margin-left: auto;
  display: flex;
  gap: 31px;
  align-items: center;
  font-size: 14px;
}
.nav a,
.watch-link {
  color: var(--ink);
  text-decoration: none;
}
.auth-actions {
  display: flex;
  gap: 12px;
  margin-left: auto;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 45px;
  border-radius: 12px;
  padding: 0 20px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
}
.btn-outline {
  border: 1px solid #2f73ff;
  color: #0e56db;
  min-width: 72px;
}
.btn-primary {
  min-width: 110px;
  color: #fff;
  background: linear-gradient(180deg, #1262f3, #0950d4);
}
.btn-orange {
  color: #fff;
  background: linear-gradient(180deg, #ff7600, #f25b00);
  box-shadow: 0 10px 18px rgba(255, 106, 0, .14);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: 500px 1fr;
  min-height: 523px;
  padding: 42px 32px 0 40px;
  overflow: hidden;
}
.hero-copy {
  position: relative;
  z-index: 4;
}
.hero-copy h1 {
  margin: 17px 0 20px;
  font-size: 57px;
  line-height: 1.08;
  letter-spacing: -1.4px;
  font-weight: 700;
}
.hero-copy p {
  width: 430px;
  margin: 0;
  font-size: 18px;
  line-height: 1.6;
}
.address-callout {
  position: relative;
  margin-top: 24px;
  width: 462px;
  height: 80px;
}
.address-callout > div {
  position: absolute;
  left: 28px;
  right: 0;
  top: 0;
  height: 80px;
  border: 5px solid #e2edff;
  border-radius: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 37px;
  font-weight: 700;
  letter-spacing: -1px;
  box-shadow: 0 2px 8px rgba(16, 59, 122, .06);
}
.arrow {
  position: absolute;
  left: -22px;
  top: -13px;
  width: 32px;
  height: 58px;
  background: no-repeat center / contain url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 58'%3E%3Cpath d='M12 2 C7 16 8 27 13 35 C16 40 20 43 25 45' fill='none' stroke='%231261f2' stroke-width='3' stroke-linecap='round'/%3E%3Cpath d='M18 43 L26 45 L22 37' fill='none' stroke='%231261f2' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.hero-actions {
  display: flex;
  gap: 42px;
  align-items: center;
  margin: 28px 0 0 29px;
}
.hero-actions .btn-orange {
  width: 171px;
  height: 47px;
}
.watch-link {
  color: #004ce4;
  font-size: 17px;
}
.watch-link span {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 19px;
  height: 19px;
  margin-left: 8px;
  color: #0d5af0;
  border: 2px solid #0d5af0;
  border-radius: 50%;
  font-size: 11px;
}
.hero-art-wrap {
  position: relative;
  z-index: 1;
  pointer-events: none;
}
.hero-halo {
  position: absolute;
  inset: -20px -24px 0 -32px;
  background: radial-gradient(circle at center, rgba(228,240,255,.95) 0, rgba(228,240,255,.82) 50%, rgba(228,240,255,0) 72%);
}
.hero-art {
  position: absolute;
  width: 468px;
  right: 0;
  top: -34px;
}

.feature-panel {
  width: 944px;
  height: 330px;
  margin: 0 auto;
  padding: 30px 26px 24px;
  border: 1px solid var(--line);
  border-radius: 25px;
  box-shadow: 0 3px 12px rgba(21, 65, 128, .04);
}
.feature-panel h2 {
  margin: 0 0 28px;
  text-align: center;
  font-size: 26px;
  letter-spacing: -.4px;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  height: 214px;
}
.feature-grid article {
  position: relative;
  text-align: center;
  padding: 0 18px;
}
.feature-grid article + article {
  border-left: 1px solid #d8e3f4;
}
.feature-grid img {
  width: 88px;
  height: 88px;
  object-fit: contain;
  display: block;
  margin: 0 auto 14px;
}
.feature-grid article:first-child img {
  width: 94px;
}
.feature-grid h3 {
  margin: 0 0 10px;
  font-size: 16px;
  line-height: 1.25;
}
.feature-grid p {
  margin: 0;
  color: #17305c;
  font-size: 14px;
  line-height: 1.48;
}

.testimonial {
  width: 944px;
  height: 198px;
  margin: 24px auto 0;
  border-radius: 28px;
  background: #f3f8ff;
  display: grid;
  grid-template-columns: 62px 1fr 290px;
  align-items: center;
  padding: 0 28px 0 36px;
}
.quote-mark {
  align-self: start;
  padding-top: 27px;
  color: #5d95f6;
  font-size: 60px;
  line-height: 1;
  font-weight: 700;
  font-family: Georgia, serif;
}
.quote-copy p {
  margin: 0 0 18px;
  font-size: 18px;
  line-height: 1.5;
}
.quote-copy span {
  color: #0758e7;
  font-size: 14px;
}
.testimonial img {
  width: 290px;
  height: 150px;
  object-fit: cover;
  border-radius: 22px;
}

.benefits {
  width: 1024px;
  height: 284px;
  margin-top: 20px;
  display: grid;
  grid-template-columns: 430px 1fr;
  color: #fff;
  background: linear-gradient(180deg, #0865ef 0%, #0057d9 100%);
  border-radius: 0 58px 0 0;
  padding: 42px 44px 0 72px;
  position: relative;
  overflow: hidden;
}
.benefit-intro,
.benefit-grid {
  position: relative;
  z-index: 1;
}
.benefit-intro h2 {
  margin: 0 0 14px;
  font-size: 35px;
  line-height: 1.05;
  letter-spacing: -.6px;
}
.benefit-intro p {
  margin: 0 0 18px;
  font-size: 16px;
  line-height: 1.55;
}
.benefit-intro .btn-orange {
  width: 214px;
  height: 45px;
  margin-bottom: 10px;
}
.benefit-intro small {
  display: block;
  font-size: 14px;
}
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: start;
  padding-top: 4px;
}
.benefit-grid article {
  min-height: 164px;
  text-align: center;
  padding: 0 18px;
}
.benefit-grid article + article {
  border-left: 1px solid rgba(255,255,255,.22);
}
.benefit-grid img {
  width: 74px;
  height: 74px;
  object-fit: contain;
  display: block;
  margin: 0 auto 10px;
}
.benefit-grid h3 {
  margin: 0 0 8px;
  font-size: 15px;
}
.benefit-grid p {
  margin: 0;
  font-size: 14px;
  line-height: 1.45;
}

.footer-strip {
  width: 1024px;
  height: 69px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-size: 15px;
  border-radius: 38px 38px 0 0;
  background: #fff;
  margin-top: -1px;
  position: relative;
}
.footer-strip img {
  width: 37px;
  height: 47px;
  object-fit: contain;
  margin-right: 4px;
}
.footer-strip strong {
  color: #0757e7;
  margin-left: 8px;
}

.signup-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.signup-main {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 46px 40px 70px;
}

.signup-card {
  width: 944px;
  min-height: 660px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 474px 1fr;
  border: 1px solid var(--line);
  border-radius: 32px;
  background:
    radial-gradient(circle at 88% 18%, rgba(219, 235, 255, .98) 0, rgba(238, 246, 255, .72) 36%, rgba(255,255,255,0) 66%),
    #fff;
  box-shadow: 0 18px 40px rgba(20, 72, 150, .08);
  overflow: hidden;
}

.signup-copy {
  padding: 64px 0 58px 58px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  height: 34px;
  padding: 0 16px;
  border-radius: 999px;
  background: #eef6ff;
  color: #0757e7;
  font-size: 14px;
  font-weight: 700;
}

.signup-copy h1 {
  width: 390px;
  margin: 22px 0 18px;
  font-size: 49px;
  line-height: 1.05;
  letter-spacing: -1.4px;
}

.signup-copy p {
  width: 390px;
  margin: 0 0 30px;
  color: #14264d;
  font-size: 18px;
  line-height: 1.55;
}

.signup-form {
  width: 390px;
}

.signup-form label {
  display: block;
  margin: 18px 0 8px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 800;
}

.signup-form input {
  width: 100%;
  height: 58px;
  border: 2px solid #dfeaff;
  border-radius: 18px;
  padding: 0 20px;
  color: var(--ink);
  background: #fff;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.9), 0 8px 18px rgba(21, 89, 211, .04);
  font: 600 18px/1 "Segoe UI", Arial, sans-serif;
  outline: none;
}

.signup-form input:focus {
  border-color: #77a9ff;
  box-shadow: 0 0 0 5px rgba(18, 98, 243, .1);
}

.signup-form input::placeholder {
  color: #7d8cab;
  font-weight: 500;
}

.signup-form .btn-orange {
  width: 244px;
  height: 50px;
  margin-top: 26px;
  border: 0;
  cursor: pointer;
}

.signup-form .btn-orange:disabled {
  cursor: default;
  opacity: .72;
}

.form-status {
  width: 100%;
  min-height: 24px;
  margin: 16px 0 0;
  color: #0757e7;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
}

.form-status.is-error {
  color: #b74221;
}

.form-status.is-success {
  color: #0757e7;
}

.signup-art-panel {
  position: relative;
  min-height: 660px;
}

.signup-mascot {
  position: absolute;
  width: 520px;
  right: -72px;
  top: 40px;
}

.signup-preview-stack {
  position: absolute;
  left: 30px;
  right: 34px;
  bottom: 46px;
  display: grid;
  gap: 14px;
}

.signup-preview {
  min-height: 94px;
  padding: 21px 28px;
  border: 1px solid #dce8fb;
  border-radius: 26px;
  background: rgba(255,255,255,.88);
  box-shadow: 0 14px 34px rgba(24, 91, 190, .11);
  backdrop-filter: blur(10px);
}

.signup-preview small {
  display: block;
  margin-bottom: 8px;
  color: #526489;
  font-size: 14px;
  font-weight: 700;
}

.signup-preview strong {
  color: #0757e7;
  font-size: 27px;
  letter-spacing: -.5px;
}

.signup-footer {
  margin-top: auto;
}

.login-main {
  padding-top: 72px;
}

.login-card {
  width: 820px;
  min-height: 590px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 455px 1fr;
  border: 1px solid var(--line);
  border-radius: 32px;
  background: #fff;
  box-shadow: 0 18px 40px rgba(20, 72, 150, .08);
  overflow: hidden;
}

.login-copy {
  padding: 58px 0 52px 58px;
}

.login-copy h1 {
  width: 360px;
  margin: 22px 0 18px;
  font-size: 46px;
  line-height: 1.05;
  letter-spacing: -1.3px;
}

.login-copy > p {
  width: 360px;
  margin: 0 0 28px;
  color: #14264d;
  font-size: 17px;
  line-height: 1.55;
}

.login-form {
  width: 360px;
}

.login-form .btn-orange {
  width: 202px;
}

.login-note {
  margin-top: 22px !important;
  font-size: 15px !important;
}

.login-note a {
  color: #0757e7;
  font-weight: 800;
  text-decoration: none;
}

.login-art-panel {
  position: relative;
  min-height: 590px;
  background:
    radial-gradient(circle at center, rgba(225, 239, 255, .96), rgba(244, 249, 255, .78) 55%, rgba(255,255,255,0) 74%),
    linear-gradient(180deg, #f5faff, #fff);
}

.login-orb {
  position: absolute;
  width: 292px;
  height: 292px;
  left: 30px;
  top: 66px;
  border-radius: 50%;
  background: linear-gradient(180deg, #eaf4ff, #dcecff);
  box-shadow: inset 0 0 0 1px rgba(128, 177, 255, .16);
}

.login-mascot {
  position: absolute;
  width: 188px;
  left: 82px;
  top: 104px;
  filter: drop-shadow(0 18px 24px rgba(0, 84, 210, .18));
}

.login-preview {
  position: absolute;
  left: 32px;
  right: 32px;
  bottom: 78px;
  padding: 24px 26px;
  border: 1px solid #dce8fb;
  border-radius: 26px;
  background: rgba(255,255,255,.9);
  box-shadow: 0 14px 34px rgba(24, 91, 190, .11);
}

.login-preview small {
  display: block;
  margin-bottom: 9px;
  color: #526489;
  font-size: 14px;
  font-weight: 700;
}

.login-preview strong {
  color: var(--ink);
  font-size: 25px;
  line-height: 1.16;
}

@media (max-width: 1024px) {
  .page-shell,
  .benefits,
  .footer-strip {
    width: 100%;
  }
}

@media (max-width: 700px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  body {
    display: block;
  }

  .page-shell {
    width: 100%;
    max-width: 100%;
    min-height: auto;
    overflow: hidden;
  }

  .topbar {
    height: auto;
    min-height: 78px;
    padding: 14px 12px 10px;
    gap: 8px;
    justify-content: space-between;
  }

  .logo {
    width: 132px;
    flex: 0 1 auto;
  }

  .auth-actions {
    gap: 6px;
    flex: 0 0 auto;
    margin-left: 0;
  }

  .btn {
    height: 40px;
    border-radius: 11px;
    padding: 0 10px;
    font-size: 12px;
    white-space: nowrap;
  }

  .btn-outline {
    min-width: 58px;
  }

  .btn-primary {
    min-width: 92px;
  }

  .hero {
    display: flex;
    flex-direction: column;
    min-height: auto;
    padding: 26px 18px 30px;
    overflow: visible;
  }

  .hero-copy {
    z-index: 2;
    min-width: 0;
  }

  .hero-copy h1 {
    margin: 0 0 14px;
    font-size: clamp(42px, 13vw, 54px);
    line-height: 1.03;
    letter-spacing: -1.35px;
  }

  .hero-copy p {
    width: auto;
    max-width: 340px;
    font-size: 17px;
    line-height: 1.52;
  }

  .address-callout {
    width: min(100%, 350px);
    height: 66px;
    margin-top: 22px;
    padding-left: 24px;
  }

  .address-callout > div {
    left: 22px;
    height: 66px;
    border-width: 4px;
    border-radius: 34px;
    font-size: clamp(24px, 7.2vw, 29px);
    letter-spacing: -.8px;
  }

  .arrow {
    left: -2px;
    top: -14px;
    width: 27px;
    height: 48px;
  }

  .hero-actions {
    margin: 24px 0 0 28px;
  }

  .hero-actions .btn-orange {
    width: 218px;
    height: 47px;
  }

  .hero-art-wrap {
    width: 100%;
    min-height: 360px;
    margin: 10px 0 0;
    order: 2;
    overflow: hidden;
  }

  .hero-halo {
    inset: 0 -18px -12px;
    border-radius: 34px;
    background: radial-gradient(circle at center, rgba(228,240,255,.92) 0, rgba(228,240,255,.66) 50%, rgba(228,240,255,0) 74%);
  }

  .hero-art {
    position: absolute;
    width: min(398px, 108vw);
    max-width: none;
    left: 50%;
    right: auto;
    top: -10px;
    transform: translateX(-50%);
  }

  .feature-panel {
    width: calc(100% - 24px);
    max-width: 100%;
    height: auto;
    margin: 4px auto 0;
    padding: 25px 18px 23px;
    border-radius: 23px;
    overflow: hidden;
  }

  .feature-panel h2 {
    margin-bottom: 24px;
    font-size: 21px;
    line-height: 1.18;
    max-width: 330px;
    margin-left: auto;
    margin-right: auto;
  }

  .feature-grid {
    height: auto;
    grid-template-columns: 1fr;
    gap: 0;
  }

  .feature-grid article {
    display: grid;
    grid-template-columns: 76px minmax(0, 1fr);
    grid-template-areas:
      "icon title"
      "icon body";
    column-gap: 14px;
    min-height: 112px;
    padding: 17px 4px;
    text-align: left;
    align-items: center;
    min-width: 0;
  }

  .feature-grid article + article {
    border-left: 0;
    border-top: 1px solid #d8e3f4;
  }

  .feature-grid img,
  .feature-grid article:first-child img {
    grid-area: icon;
    width: 68px;
    height: 68px;
    margin: 0;
  }

  .feature-grid h3 {
    grid-area: title;
    margin: 0 0 5px;
    font-size: 16px;
    min-width: 0;
  }

  .feature-grid p {
    grid-area: body;
    font-size: 14px;
    line-height: 1.42;
    min-width: 0;
  }

  .testimonial {
    width: calc(100% - 24px);
    max-width: 100%;
    height: auto;
    margin-top: 18px;
    display: block;
    padding: 24px 22px 22px;
    border-radius: 24px;
    overflow: hidden;
  }

  .quote-mark {
    padding-top: 0;
    margin-bottom: 4px;
    font-size: 44px;
  }

  .quote-copy p {
    font-size: 15px;
    line-height: 1.45;
    overflow-wrap: break-word;
  }

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

  .testimonial img {
    width: 100%;
    height: auto;
    max-height: 185px;
    margin-top: 18px;
    border-radius: 20px;
  }

  .benefits {
    width: 100%;
    max-width: 100%;
    height: auto;
    margin-top: 20px;
    grid-template-columns: 1fr;
    border-radius: 0 42px 0 0;
    padding: 36px 24px 30px;
    row-gap: 30px;
    overflow: hidden;
  }

  .benefit-intro h2 {
    font-size: 34px;
  }

  .benefit-intro p {
    font-size: 16px;
  }

  .benefit-grid {
    grid-template-columns: 1fr;
    padding-top: 0;
    gap: 0;
  }

  .benefit-grid article {
    display: grid;
    grid-template-columns: 60px minmax(0, 1fr);
    grid-template-areas:
      "icon title"
      "icon body";
    min-height: auto;
    padding: 18px 0;
    column-gap: 16px;
    text-align: left;
    align-items: center;
    min-width: 0;
  }

  .benefit-grid article + article {
    border-left: 0;
    border-top: 1px solid rgba(255,255,255,.23);
  }

  .benefit-grid img {
    grid-area: icon;
    width: 54px;
    height: 54px;
    margin: 0;
  }

  .benefit-grid h3 {
    grid-area: title;
    margin: 0 0 5px;
    font-size: 16px;
    min-width: 0;
  }

  .benefit-grid p {
    grid-area: body;
    font-size: 14px;
    min-width: 0;
  }

  .footer-strip {
    width: 100%;
    height: auto;
    min-height: 88px;
    padding: 16px 22px 18px;
    gap: 10px;
    flex-wrap: wrap;
    text-align: center;
    font-size: 14px;
    line-height: 1.35;
    border-radius: 28px 28px 0 0;
  }

  .footer-strip img {
    width: 32px;
    height: 40px;
    margin-right: 0;
  }

  .footer-strip span {
    flex: 1 1 250px;
  }

  .footer-strip strong {
    flex-basis: 100%;
    margin-left: 0;
  }
}

@media (max-width: 370px) {
  .topbar {
    min-height: 74px;
    padding-left: 10px;
    padding-right: 10px;
    align-items: center;
  }

  .logo {
    width: 116px;
  }

  .auth-actions {
    flex-direction: row;
    align-items: center;
    gap: 5px;
  }

  .btn-primary,
  .btn-outline {
    min-width: auto;
    padding-left: 9px;
    padding-right: 9px;
  }

  .hero-copy h1 {
    font-size: 40px;
  }
}

@media (max-width: 480px) {
  .topbar {
    min-height: 116px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 14px 18px 12px;
  }

  .logo {
    width: 138px;
  }

  .auth-actions {
    width: 100%;
    justify-content: flex-start;
  }

  .auth-actions .btn {
    height: 38px;
    font-size: 12px;
  }

  .auth-actions .btn-primary {
    min-width: 112px;
  }

  .auth-actions .btn-outline {
    min-width: 58px;
  }

  .hero-copy,
  .hero-copy p {
    max-width: 324px;
  }

  .address-callout {
    width: 320px;
    max-width: calc(100vw - 36px);
  }

  .address-callout > div {
    font-size: 24px;
  }

  .hero-actions {
    margin-left: 28px;
  }

  .hero-art-wrap {
    width: 342px;
    max-width: calc(100vw - 36px);
  }

  .hero-art {
    width: 352px;
  }

  .feature-panel,
  .testimonial {
    width: 336px;
    max-width: calc(100vw - 24px);
    margin-left: 12px;
    margin-right: 12px;
  }

  .feature-panel h2 {
    max-width: 292px;
    font-size: 20px;
  }

  .feature-grid article {
    grid-template-columns: 70px minmax(0, 1fr);
    column-gap: 12px;
  }

  .feature-grid img,
  .feature-grid article:first-child img {
    width: 62px;
    height: 62px;
  }

  .testimonial img {
    max-height: 170px;
  }

  .benefits {
    padding-left: 24px;
    padding-right: 24px;
  }

  .footer-strip {
    display: grid;
    grid-template-columns: 42px minmax(0, 250px);
    justify-content: flex-start;
    align-items: center;
    text-align: left;
  }

  .footer-strip span {
    flex-basis: auto;
    min-width: 0;
    font-size: 13px;
    line-height: 1.35;
  }

  .footer-strip strong {
    grid-column: 2;
    padding-left: 0;
  }
}

@media (max-width: 700px) {
  .signup-shell {
    min-height: auto;
  }

  .signup-main {
    flex: 0 0 auto;
    display: block;
    padding: 26px 12px 34px;
  }

  .signup-card {
    width: 100%;
    max-width: 430px;
    min-height: auto;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    border-radius: 28px;
    background:
      radial-gradient(circle at 50% 74%, rgba(219, 235, 255, .95) 0, rgba(238, 246, 255, .68) 38%, rgba(255,255,255,0) 68%),
      #fff;
  }

  .signup-copy {
    order: 1;
    padding: 28px 22px 8px;
    min-width: 0;
  }

  .eyebrow {
    height: 31px;
    padding: 0 13px;
    font-size: 12px;
  }

  .signup-copy h1 {
    width: 100%;
    margin: 18px 0 14px;
    font-size: clamp(36px, 10.5vw, 44px);
    line-height: 1.04;
    letter-spacing: -1.2px;
  }

  .signup-copy p {
    width: 100%;
    margin-bottom: 22px;
    font-size: 16px;
    line-height: 1.52;
  }

  .signup-form {
    width: 100%;
  }

  .signup-form label {
    margin-top: 15px;
    font-size: 14px;
  }

  .signup-form input {
    height: 54px;
    border-radius: 16px;
    padding: 0 17px;
    font-size: 16px;
  }

  .signup-form .btn-orange {
    width: 100%;
    max-width: 260px;
    height: 48px;
    margin-top: 22px;
  }

  .form-status {
    font-size: 13px;
  }

  .signup-art-panel {
    order: 2;
    min-height: auto;
    padding: 4px 14px 22px;
    overflow: hidden;
  }

  .signup-mascot {
    position: relative;
    display: block;
    width: min(360px, 108vw);
    right: auto;
    top: auto;
    margin: -2px auto -8px;
    transform: translateX(-1%);
  }

  .signup-preview-stack {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    display: grid;
    gap: 12px;
  }

  .signup-preview {
    min-height: auto;
    padding: 16px 17px;
    border-radius: 21px;
  }

  .signup-preview small {
    margin-bottom: 7px;
    font-size: 12px;
  }

  .signup-preview strong {
    display: block;
    font-size: 20px;
    line-height: 1.15;
    overflow-wrap: anywhere;
  }
}

@media (max-width: 380px) {
  .signup-main {
    padding-left: 12px;
    padding-right: 12px;
  }

  .signup-copy {
    padding-left: 20px;
    padding-right: 20px;
  }

  .signup-art-panel {
    padding-left: 12px;
    padding-right: 12px;
  }

  .signup-preview strong {
    font-size: 18px;
  }
}

@media (max-width: 700px) {
  .login-main {
    padding: 26px 12px 34px;
  }

  .login-card {
    width: 100%;
    max-width: 430px;
    min-height: auto;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    border-radius: 28px;
  }

  .login-copy {
    order: 1;
    padding: 30px 22px 10px;
    min-width: 0;
  }

  .login-copy h1 {
    width: 100%;
    margin: 18px 0 14px;
    font-size: clamp(36px, 10.5vw, 44px);
    line-height: 1.04;
    letter-spacing: -1.2px;
  }

  .login-copy > p {
    width: 100%;
    margin-bottom: 22px;
    font-size: 16px;
    line-height: 1.52;
  }

  .login-form {
    width: 100%;
  }

  .login-form .btn-orange {
    width: 100%;
    max-width: 260px;
    height: 48px;
  }

  .login-note {
    width: 100% !important;
    margin-top: 20px !important;
    font-size: 14px !important;
    line-height: 1.45 !important;
  }

  .login-note a {
    display: inline;
    overflow-wrap: break-word;
  }

  .login-art-panel {
    order: 2;
    min-height: 300px;
    margin: 6px 14px 22px;
    border-radius: 24px;
    overflow: hidden;
  }

  .login-orb {
    width: 220px;
    height: 220px;
    left: 50%;
    top: 22px;
    transform: translateX(-50%);
  }

  .login-mascot {
    width: 142px;
    left: 50%;
    top: 58px;
    transform: translateX(-50%);
  }

  .login-preview {
    left: 14px;
    right: 14px;
    bottom: 16px;
    padding: 17px 18px;
    border-radius: 21px;
  }

  .login-preview small {
    font-size: 12px;
  }

  .login-preview strong {
    font-size: 20px;
    line-height: 1.18;
  }
}

@media (max-width: 480px) {
  .login-card {
    max-width: 336px;
    margin-left: 0;
    margin-right: 0;
  }

  .login-copy {
    padding: 26px 20px 10px;
  }

  .login-copy h1 {
    font-size: 36px;
    letter-spacing: -1px;
  }

  .login-copy > p {
    font-size: 15px;
  }

  .login-form .btn-orange {
    max-width: none;
  }
}

@media (max-width: 480px) {
  .signup-main {
    padding-left: 12px;
    padding-right: 12px;
  }

  .signup-card {
    max-width: 336px;
    margin-left: 0;
    margin-right: 0;
  }

  .signup-copy {
    padding: 26px 20px 8px;
  }

  .signup-copy h1 {
    font-size: 36px;
    letter-spacing: -1px;
  }

  .signup-copy p {
    font-size: 15px;
  }

  .signup-form input {
    height: 52px;
  }

  .signup-form .btn-orange {
    max-width: none;
  }

  .signup-art-panel {
    padding-left: 12px;
    padding-right: 12px;
  }

  .signup-mascot {
    width: 318px;
    max-width: 100%;
    margin-top: 2px;
  }

  .signup-preview strong {
    font-size: 18px;
  }
}

