:root {
  color-scheme: light;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  --ink: #2c2219;
  --muted: rgba(72, 57, 43, 0.64);
  --gold: #d9a13a;
  --gold-deep: #a96a0b;
  --cream: #fff8eb;
  --card: rgba(255, 255, 255, 0.78);
  --stroke: rgba(219, 183, 121, 0.42);
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

body {
  margin: 0;
  min-height: 100dvh;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 18% 16%, rgba(220, 162, 51, 0.14), transparent 26%),
    radial-gradient(circle at 84% 90%, rgba(36, 26, 16, 0.16), transparent 34%),
    #f3efe6;
}

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

.phone-shell {
  width: 100%;
  max-width: 430px;
  height: 100dvh;
  max-height: 932px;
  min-height: 0;
  margin: 0 auto;
  background: var(--cream);
  box-shadow: 0 24px 90px rgba(45, 31, 16, 0.18);
  position: relative;
  overflow: hidden;
}

@media (min-width: 431px) {
  body {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100dvh;
    background: #d9cfc0;
  }
  .phone-shell {
    border-radius: 28px;
  }
}

.screen {
  position: relative;
  display: flex;
  height: 100%;
  min-height: 0;
  overflow-y: auto;
  overflow-x: hidden;
  flex-direction: column;
  padding: 22px 31px 19px;
  color: var(--ink);
  background:
    linear-gradient(rgba(255, 253, 248, 0.86), rgba(255, 251, 242, 0.69)),
    url("./assets/BG_v1_new.webp") 50% 47% / cover no-repeat;
}

.role-screen,
.choice-screen,
.photo-screen {
  background:
    linear-gradient(rgba(255, 253, 248, 0.9), rgba(255, 250, 239, 0.72)),
    url("./assets/BG_v1_new.webp") 50% 47% / cover no-repeat;
}

.topic-screen {
  background:
    radial-gradient(circle at 50% 43%, rgba(255, 255, 255, 0.78), transparent 34%),
    radial-gradient(circle at 52% 48%, rgba(247, 206, 112, 0.2), transparent 46%),
    linear-gradient(rgba(255, 253, 248, 0.58), rgba(255, 245, 222, 0.34)),
    url("./assets/BG_v1_new.webp") 54% 57% / cover no-repeat;
}

.screen::before,
.screen::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.screen::before {
  display: none;
}

.screen::after {
  display: none;
}

.screen > * {
  position: relative;
  z-index: 1;
}

.status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 19px;
  margin-bottom: 0;
  color: #17120e;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.status-icons {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.signal {
  display: inline-flex;
  align-items: end;
  gap: 1.5px;
  height: 11px;
}

.signal i {
  display: block;
  width: 3px;
  border-radius: 2px;
  background: #15100d;
}

.signal i:nth-child(1) {
  height: 4px;
}

.signal i:nth-child(2) {
  height: 6px;
}

.signal i:nth-child(3) {
  height: 8px;
}

.signal i:nth-child(4) {
  height: 10px;
}

.wifi {
  width: 13px;
  height: 10px;
  border: 2px solid #15100d;
  border-bottom: 0;
  border-left-color: transparent;
  border-right-color: transparent;
  border-radius: 14px 14px 0 0;
}

.battery {
  position: relative;
  width: 20px;
  height: 10px;
  border: 1.7px solid #15100d;
  border-radius: 3px;
}

.battery::before {
  position: absolute;
  right: -4px;
  top: 2px;
  width: 2px;
  height: 4px;
  border-radius: 0 2px 2px 0;
  background: #15100d;
  content: "";
}

.battery::after {
  position: absolute;
  inset: 2px;
  border-radius: 1px;
  background: #15100d;
  content: "";
}

.brand {
  color: #bd8430;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0;
  text-align: center;
}

.brand-logo {
  margin-top: 2px;
  color: #b77d27;
  text-align: center;
  text-transform: uppercase;
}

.brand-logo strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.19em;
  line-height: 1;
}

.brand-logo span {
  display: block;
  margin-top: 2px;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.42em;
}

.steps {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 14px 0 60px;
}

.back-button {
  position: absolute;
  z-index: 4;
  top: 21px;
  left: 23px;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(209, 173, 113, 0.22);
  border-radius: 50%;
  color: rgba(86, 65, 44, 0.7);
  background: rgba(255, 255, 255, 0.42);
  box-shadow:
    0 8px 18px rgba(95, 67, 28, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(7px);
}

.password-wrap {
  position: relative;
  display: block;
}
.password-wrap input {
  padding-right: 44px;
}
.pwd-toggle {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background: none;
  color: rgba(86, 65, 44, 0.5);
  cursor: pointer;
  padding: 4px;
}

.back-button span {
  display: block;
  margin-top: -2px;
  font-size: 34px;
  font-weight: 300;
  line-height: 1;
}

.dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: rgba(177, 151, 111, 0.32);
}

.dot.active {
  background: #d29a2e;
}

.dot.current {
  width: 22px;
  border: 1px solid #c99434;
  background: transparent;
}

.hero {
  text-align: center;
}

.title {
  margin: 0;
  color: #2a2018;
  font-size: clamp(34px, 11vw, 44px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 0.98;
}

.subtitle {
  margin: 15px 0 0;
  color: var(--muted);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.35;
}

.signup-layout {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.signup-title {
  margin-top: 0;
  text-align: center;
}

.screen-signup .brand {
  transform: translateY(58px);
}

.signup-title .title {
  font-size: 42px;
  font-weight: 800;
  letter-spacing: -0.025em;
  color: #51402f;
}

.orb-watermark {
  position: absolute;
  top: 170px;
  left: 50%;
  transform: translateX(-50%);
  width: 260px;
  height: 260px;
  border-radius: 50%;
  pointer-events: none;
}

.orb-watermark::before {
  position: absolute;
  inset: 0 -6px 0 6px;
  background: url("./assets/logo-color.png") center / contain no-repeat;
  content: "";
  filter: saturate(0.34) brightness(1.24);
  mask-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 1) 55%,
    rgba(0, 0, 0, 0.55) 75%,
    rgba(0, 0, 0, 0.08) 100%
  );
  opacity: 0.155;
}

.orb-watermark::after {
  position: absolute;
  right: -8%;
  bottom: -5%;
  left: -8%;
  height: 48%;
  background: linear-gradient(
    180deg,
    rgba(255, 252, 246, 0) 0%,
    rgba(255, 252, 246, 0.62) 45%,
    rgba(255, 252, 246, 0.92) 100%
  );
  content: "";
  filter: blur(8px);
}

.form-stack {
  position: relative;
  z-index: 3;
  display: grid;
  gap: 11px;
  margin-top: 0;
}

.input {
  width: 100%;
  height: 60px;
  border: 1px solid rgba(214, 185, 139, 0.48);
  border-radius: 14px;
  outline: none;
  padding: 0 20px;
  color: #2f241a;
  background:
    linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.88)),
    rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(7px);
  box-shadow:
    0 9px 22px rgba(105, 73, 24, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.input::placeholder {
  color: rgba(85, 67, 50, 0.48);
}

.gold-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 58px;
  border: 1px solid rgba(155, 101, 11, 0.35);
  border-radius: 14px;
  color: #fff;
  font-weight: 800;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.28), transparent 52%),
    linear-gradient(135deg, #f2c15b 0%, #d79a2f 48%, #b87508 100%);
  box-shadow:
    0 15px 24px rgba(137, 88, 10, 0.23),
    inset 0 1px 0 rgba(255, 255, 255, 0.5),
    inset 0 -1px 0 rgba(103, 64, 3, 0.2);
}

.footer-link {
  margin-top: 25px;
  color: rgba(70, 54, 41, 0.62);
  font-size: 16px;
  font-weight: 600;
  text-align: center;
}

.footer-link a,
.fine-link {
  color: #ad741c;
  text-decoration: none;
}

.fine-print {
  display: none;
  margin-top: 7px;
  color: rgba(70, 54, 41, 0.45);
  font-size: 10px;
  text-align: center;
}

.hook-screen {
  padding: 18px 22px 14px;
  background:
    linear-gradient(110deg, rgba(255, 255, 255, 0.18) 0%, rgba(243, 222, 193, 0.86) 58%, rgba(235, 204, 160, 0.9) 100%),
    url("./assets/generated/hook_background_clean_v1.webp") center / cover no-repeat;
}

.hook-screen::before {
  display: block;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 86% 18%, rgba(246, 232, 218, 0.98) 0 21%, transparent 39%),
    linear-gradient(90deg, transparent 0%, rgba(246, 232, 218, 0.5) 55%, rgba(246, 232, 218, 0.92) 100%),
    linear-gradient(180deg, rgba(248, 238, 222, 0.72), transparent 56%);
  opacity: 0.9;
}

.hook-screen::after {
  display: block;
  inset: auto 0 0 0;
  z-index: 2;
  height: 150px;
  background: linear-gradient(180deg, transparent, rgba(235, 199, 145, 0.26));
  filter: blur(0);
}

.hook-screen .status {
  z-index: 8;
  padding: 0 8px;
  font-size: 12px;
}

.hook-video {
  position: absolute;
  z-index: 4;
  top: 60px;
  right: 10px;
  width: min(38vw, 170px);
  height: 338px;
  object-fit: cover;
  object-position: center top;
  opacity: 0.98;
  mix-blend-mode: normal;
  -webkit-mask-image:
    linear-gradient(90deg, transparent 0, rgba(0, 0, 0, 0.18) 10%, rgba(0, 0, 0, 0.72) 24%, #000 35%),
    linear-gradient(180deg, #000 0%, #000 82%, transparent 100%);
  mask-image:
    linear-gradient(90deg, transparent 0, rgba(0, 0, 0, 0.18) 10%, rgba(0, 0, 0, 0.72) 24%, #000 35%),
    linear-gradient(180deg, #000 0%, #000 82%, transparent 100%);
  border-radius: 0;
}

.hook-video-tint {
  position: absolute;
  z-index: 5;
  top: 60px;
  right: 10px;
  width: min(38vw, 170px);
  height: 338px;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(246, 232, 218, 0.34), rgba(246, 232, 218, 0.12) 33%, transparent 62%),
    linear-gradient(180deg, rgba(246, 232, 218, 0.06), rgba(211, 162, 88, 0.06));
  mix-blend-mode: normal;
}

.hook-brand {
  display: flex;
  z-index: 6;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  color: #4f3115;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  line-height: 0.95;
  letter-spacing: 0.01em;
}

.hook-brand img {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.hook-title {
  z-index: 6;
  margin-top: 34px;
  color: #50300f;
  font-family: Georgia, "Times New Roman", serif;
}

.hook-title h1 {
  margin: 0;
  font-size: 42px;
  font-weight: 500;
  line-height: 0.92;
  letter-spacing: -0.02em;
}

.hook-title div {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 17px;
  color: rgba(178, 129, 61, 0.8);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.38em;
}

.hook-title span {
  width: 37px;
  height: 1px;
  background: #c49248;
}

.hook-bubble {
  z-index: 7;
  position: relative;
  width: 175px;
  margin-top: 24px;
  border-radius: 20px;
  padding: 21px 22px;
  color: #563514;
  background: rgba(255, 255, 255, 0.84);
  box-shadow:
    0 14px 38px rgba(101, 72, 32, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.88);
  font-size: 18px;
  line-height: 1.45;
}

.hook-bubble::after {
  position: absolute;
  top: 42%;
  right: -15px;
  width: 36px;
  height: 36px;
  border-radius: 7px;
  background: inherit;
  transform: rotate(45deg);
  content: "";
}

.hook-team-card,
.hook-bottom-card {
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 19px;
  background: rgba(255, 250, 240, 0.76);
  box-shadow:
    0 18px 40px rgba(116, 80, 27, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(8px);
}

.hook-lower {
  position: absolute;
  z-index: 7;
  right: 22px;
  bottom: 14px;
  left: 22px;
  display: grid;
  gap: 10px;
}

.hook-team-card {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 18px 12px 15px;
}

.hook-role {
  display: grid;
  justify-items: center;
  gap: 13px;
  color: #563514;
  text-align: center;
}

.hook-role span {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border: 1px solid rgba(192, 139, 58, 0.45);
  border-radius: 50%;
  color: #7b4c11;
  background: rgba(255, 248, 234, 0.54);
}

.hook-role svg {
  width: 25px;
  height: 25px;
  stroke-width: 1.8;
}

.hook-role strong {
  font-size: 14px;
  line-height: 1.15;
}

.hook-bottom-card {
  padding: 12px 18px 13px;
}

.hook-bottom-card p {
  margin: 0 0 10px 13px;
  color: #563514;
  font-size: 18px;
  line-height: 1.28;
}

.hook-cta {
  min-height: 49px;
  border-radius: 999px;
  font-size: 20px;
}

.pass-screen {
  padding: 28px 30px 24px;
  background:
    radial-gradient(circle at 74% 16%, rgba(222, 165, 51, 0.18), transparent 30%),
    linear-gradient(rgba(255, 252, 246, 0.88), rgba(255, 246, 226, 0.72)),
    url("./assets/BG_v1_new.webp") 50% 48% / cover no-repeat;
}

.pass-brand {
  display: grid;
  justify-items: center;
  gap: 9px;
  margin-top: 16px;
  color: #b57c25;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 21px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pass-brand img {
  width: 74px;
  height: 74px;
  object-fit: contain;
}

.pass-card {
  display: grid;
  flex: 1;
  align-content: center;
  margin: 34px 0 22px;
  border: 1px solid rgba(215, 172, 85, 0.36);
  border-radius: 28px;
  padding: 28px 24px;
  color: #3a2818;
  background: rgba(255, 252, 244, 0.78);
  box-shadow:
    0 22px 42px rgba(113, 75, 23, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  text-align: center;
}

.pass-card small {
  color: #b87f27;
  font-size: 12px;
  font-weight: 900;
}

.pass-card h1 {
  margin: 20px 0 0;
  font-size: 34px;
  line-height: 1.05;
}

.pass-card p {
  margin: 18px 0 0;
  color: rgba(61, 43, 27, 0.72);
  font-size: 18px;
  line-height: 1.38;
}

.map-screen {
  overflow-y: auto;
  padding: 22px 24px 24px;
  background:
    radial-gradient(circle at 80% 10%, rgba(215, 157, 42, 0.16), transparent 28%),
    linear-gradient(rgba(255, 253, 248, 0.92), rgba(255, 245, 222, 0.78)),
    url("./assets/BG_v1_new.webp") 50% 50% / cover no-repeat;
}

.map-screen::-webkit-scrollbar {
  display: none;
}

.map-head {
  display: grid;
  justify-items: center;
  gap: 8px;
  text-align: center;
}

.map-head img {
  width: 54px;
  height: 54px;
}

.map-head h1 {
  margin: 0;
  color: #332315;
  font-size: 28px;
  line-height: 1;
}

.map-head p {
  margin: 0;
  color: rgba(68, 48, 29, 0.62);
  font-size: 12px;
  font-weight: 700;
}

.map-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 18px;
}

.map-list a,
.map-separate a {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  border: 1px solid rgba(213, 162, 67, 0.36);
  border-radius: 11px;
  padding: 8px 10px;
  color: #372617;
  background: rgba(255, 252, 244, 0.76);
  box-shadow: 0 10px 20px rgba(105, 70, 21, 0.06);
  font-size: 11px;
  font-weight: 800;
  text-decoration: none;
}

.map-list span {
  display: grid;
  min-width: 30px;
  height: 24px;
  place-items: center;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, #ecc263, #bd7b13);
  font-size: 9px;
}

.map-separate {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 12px;
}

.map-separate a {
  justify-content: center;
  color: #8c5c12;
}

.ref-image-screen {
  --ref-top-solid: #fff8ed;
  --ref-bottom-solid: #fff8ed;
  padding: 0;
  background: #fff8ee;
}

.ref-image-screen::after {
  display: none;
  inset: auto 0 0;
  z-index: 3;
  height: 104px;
  background: linear-gradient(180deg, rgba(255, 248, 237, 0), var(--ref-bottom-solid) 28%, var(--ref-bottom-solid) 100%);
}

.ref-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: 50% 100%;
}

.ref-top-mask {
  display: none;
}

.ref-mask-light {
  background: linear-gradient(180deg, var(--ref-top-solid) 0 38px, rgba(255, 248, 237, 0) 100%);
}

.ref-mask-dark {
  background: linear-gradient(180deg, var(--ref-top-solid) 0 38px, rgba(16, 10, 3, 0) 100%);
}

.ref-cta {
  position: absolute;
  z-index: 4;
  right: 31px;
  bottom: 26px;
  left: 31px;
  width: auto;
  min-height: 58px;
  border: 0;
  color: transparent;
  background: transparent;
  box-shadow: none;
}

.project-screen-v2 .ref-cta,
.difficulty-screen-v2 .ref-cta,
.help-most-screen .ref-cta,
.value-team-screen .ref-cta,
.value-health-screen .ref-cta,
.value-soul-screen .ref-cta,
.value-income-screen .ref-cta {
  bottom: 22px;
}

.first-post-screen .ref-cta,
.cabinet-screen-v2 .ref-cta {
  bottom: 31px;
}

.verify-screen-v2 .ref-cta {
  opacity: 0.72;
}

.rate-screen-v2 .ref-bg {
  object-fit: contain;
  background: #fff8ef;
}

.first-post-screen,
.cabinet-screen-v2,
.born-screen-v2 {
  --ref-top-solid: #100a03;
  --ref-bottom-solid: #070503;
}

.pay-screen-v2,
.email-screen-v2,
.verify-screen-v2,
.claim-screen-v2,
.project-screen-v2,
.difficulty-screen-v2,
.help-most-screen,
.value-team-screen,
.value-health-screen,
.value-soul-screen,
.value-income-screen,
.dashboard-screen-v2,
.rate-screen-v2 {
  --ref-top-solid: #fff8ed;
  --ref-bottom-solid: #fff8ed;
}

.kie-screen {
  padding: 23px 20px 18px;
  background:
    linear-gradient(180deg, rgba(255, 249, 237, 0.02), rgba(255, 247, 232, 0.05)),
    var(--kie-bg) 50% 50% / cover no-repeat;
}

.kie-screen::after {
  display: block;
  inset: auto 0 0;
  z-index: 0;
  height: 210px;
  background: linear-gradient(180deg, rgba(255, 248, 235, 0), rgba(255, 244, 221, 0.74) 54%, rgba(255, 242, 211, 0.9));
}

.kie-brand {
  display: grid;
  z-index: 3;
  justify-items: center;
  gap: 7px;
  color: #9f732c;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.48em;
  line-height: 1.1;
  text-align: center;
  text-transform: uppercase;
}

.kie-brand img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.kie-value-copy,
.kie-question-copy {
  z-index: 2;
}

.kie-value-copy h1,
.kie-question-copy h1 {
  margin: 0;
  color: #2a2118;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.04;
}

.kie-value-copy p,
.kie-question-copy p {
  margin: 13px 0 0;
  color: rgba(59, 44, 30, 0.64);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.35;
}

.kie-team-screen {
  padding-right: 24px;
  padding-left: 24px;
}

.kie-team-screen .kie-brand {
  margin-top: 5px;
  transform: translateX(42px);
}

.kie-team-screen .kie-value-copy {
  width: 50%;
  margin: auto 0 142px auto;
}

.kie-team-screen .kie-value-copy h1 {
  font-size: 38px;
}

.kie-health-screen .kie-value-copy,
.kie-soul-screen .kie-value-copy,
.kie-income-screen .kie-value-copy {
  margin-top: 24px;
  text-align: center;
}

.kie-health-screen::before,
.kie-soul-screen::before,
.kie-income-screen::before {
  display: block;
  top: 22px;
  right: 24px;
  z-index: 3;
  width: 58px;
  height: 58px;
  border: 1px solid rgba(199, 139, 36, 0.72);
  border-radius: 50%;
  background:
    linear-gradient(rgba(255, 246, 226, 0.36), rgba(255, 246, 226, 0.36)),
    url("./assets/generated/atlanta_avatar_crop.webp") 50% 50% / cover no-repeat;
  box-shadow:
    0 10px 24px rgba(128, 86, 22, 0.1),
    inset 0 0 0 3px rgba(255, 246, 226, 0.58);
}

.kie-health-screen::before {
  background:
    linear-gradient(rgba(255, 246, 226, 0.08), rgba(255, 246, 226, 0.08)),
    url("./assets/generated/health-assets/health-avatar.webp") 50% 50% / cover no-repeat;
}

.kie-health-screen .kie-value-copy h1,
.kie-soul-screen .kie-value-copy h1,
.kie-income-screen .kie-value-copy h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  font-weight: 500;
  line-height: 1.02;
}

.kie-health-screen .kie-brand,
.kie-soul-screen .kie-brand,
.kie-income-screen .kie-brand {
  margin-top: -2px;
}

.kie-health-screen .kie-brand img,
.kie-soul-screen .kie-brand img,
.kie-income-screen .kie-brand img {
  width: 52px;
  height: 52px;
}

.kie-health-screen .kie-value-copy {
  margin-top: 16px;
}

.kie-health-screen .kie-value-copy h1 {
  max-width: 310px;
  margin: 0 auto;
  color: #22371f;
  font-size: 34px;
}

.kie-health-screen .kie-card-list {
  gap: 10px;
  margin-top: 14px;
}

.kie-health-screen .kie-info-card {
  grid-template-columns: 84px 1fr;
  min-height: 88px;
  border-radius: 22px;
  padding: 11px 16px;
}

.kie-health-screen .kie-card-icon {
  width: 58px;
  height: 58px;
}

.kie-health-screen .kie-card-icon svg {
  width: 32px;
  height: 32px;
}

.kie-health-screen .kie-info-card strong {
  color: #17331e;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.12;
}

.kie-health-screen .kie-info-card p {
  font-size: 13px;
  margin-top: 2px;
}

.kie-health-screen .kie-info-card em {
  margin-top: 6px;
  font-size: 11px;
}

.kie-soul-screen .kie-value-copy {
  margin-top: 24px;
  text-align: left;
}

.kie-soul-screen .kie-value-copy h1 {
  color: #7f531f;
  font-size: 40px;
}

.kie-soul-screen .kie-value-copy::after {
  display: block;
  width: 92px;
  height: 2px;
  margin-top: 10px;
  background: #c78b2d;
  content: "";
}

.kie-soul-screen .kie-card-list {
  gap: 10px;
  margin-top: 18px;
}

.kie-soul-screen .kie-info-card {
  grid-template-columns: 72px 1fr;
  min-height: 88px;
  border-radius: 18px;
  padding: 11px 17px;
}

.kie-soul-screen .kie-card-icon {
  width: 56px;
  height: 56px;
}

.kie-soul-screen .kie-card-icon svg {
  width: 31px;
  height: 31px;
}

.kie-soul-screen .kie-info-card strong {
  font-size: 17px;
  line-height: 1.12;
}

.kie-soul-screen .kie-info-card p {
  font-size: 14px;
}

.kie-income-screen .kie-value-copy {
  margin-top: 12px;
  padding: 0 18px;
}

.kie-income-screen .kie-value-copy h1 {
  color: #2f2115;
  font-size: 30px;
  line-height: 1.06;
}

.kie-income-screen .kie-value-copy p {
  max-width: 250px;
  margin: 8px auto 0;
  font-size: 13px;
}

.kie-card-list,
.kie-choice-list {
  display: grid;
  z-index: 2;
  gap: 10px;
}

.kie-card-list {
  margin-top: 28px;
}

.kie-income-screen .kie-card-list {
  gap: 9px;
  margin-top: 14px;
}

.kie-income-screen .kie-info-card {
  grid-template-columns: 64px 1fr;
  min-height: 78px;
  border-radius: 18px;
  padding: 11px 16px;
}

.kie-income-screen .kie-card-icon {
  width: 50px;
  height: 50px;
}

.kie-income-screen .kie-info-card strong {
  font-size: 17px;
  line-height: 1.12;
}

.kie-income-screen .kie-info-card p {
  font-size: 13px;
}

.kie-info-card,
.kie-choice-card {
  display: grid;
  align-items: center;
  border: 1px solid rgba(221, 177, 93, 0.42);
  color: #44301f;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.86), rgba(255, 248, 235, 0.66)),
    rgba(255, 255, 255, 0.74);
  box-shadow:
    0 14px 28px rgba(123, 84, 24, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(7px);
}

.kie-info-card {
  grid-template-columns: 58px 1fr;
  min-height: 72px;
  border-radius: 14px;
  padding: 9px 12px;
}

.kie-card-icon {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(213, 154, 49, 0.5);
  border-radius: 50%;
  color: #ae741a;
  background:
    radial-gradient(circle at 35% 25%, rgba(255, 255, 255, 0.95), transparent 32%),
    rgba(255, 238, 192, 0.52);
}

.kie-card-icon svg {
  width: 23px;
  height: 23px;
  stroke-width: 1.8;
}

.kie-card-icon img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.kie-info-card strong,
.kie-choice-card strong {
  display: block;
  color: #3b2a1e;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.2;
}

.kie-info-card p,
.kie-choice-card small {
  display: block;
  margin: 3px 0 0;
  color: rgba(66, 49, 35, 0.55);
  font-size: 9px;
  font-weight: 700;
  line-height: 1.25;
}

.kie-info-card em {
  display: inline-flex;
  margin-top: 6px;
  padding: 3px 7px;
  border-radius: 999px;
  color: #91600f;
  background: rgba(232, 187, 92, 0.24);
  font-size: 8px;
  font-style: normal;
  font-weight: 900;
}

.kie-info-card b {
  display: none;
}

.kie-choice-card b {
  color: #cb8e23;
  font-size: 21px;
  font-weight: 400;
}

.kie-question-screen {
  padding: 22px 20px 17px;
}

.kie-question-screen .kie-brand {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  font-size: 9px;
  letter-spacing: 0.18em;
}

.kie-question-screen .kie-brand img {
  width: 36px;
  height: 36px;
}

.kie-question-copy {
  margin-top: 20px;
}

.kie-question-copy h1 {
  font-size: 24px;
}

.kie-difficulty-screen .kie-question-copy {
  max-width: 250px;
  margin: 32px auto 0;
  text-align: center;
}

.kie-difficulty-screen .kie-question-copy h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 36px;
  font-weight: 500;
  line-height: 0.94;
}

.kie-help-most-screen .kie-question-copy {
  margin-top: 284px;
  text-align: center;
}

.kie-help-most-screen .kie-question-copy h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  font-weight: 500;
}

.kie-choice-list {
  margin-top: 16px;
}

.kie-project-screen .kie-choice-list {
  gap: 8px;
}

.kie-choice-card {
  grid-template-columns: 48px 1fr 18px;
  min-height: 58px;
  border-radius: 12px;
  padding: 8px 11px;
  text-align: left;
}

.kie-project-screen .kie-choice-card {
  min-height: 53px;
}

.kie-difficulty-screen .kie-choice-list {
  margin-top: 48px;
}

.kie-difficulty-screen .kie-choice-card {
  border-radius: 999px;
}

.kie-help-most-screen .kie-choice-list {
  gap: 8px;
  margin-top: 14px;
}

.kie-help-most-screen .kie-choice-card {
  min-height: 57px;
}

@media (min-width: 520px) and (max-height: 900px) {
  .kie-help-most-screen {
    padding: 18px 20px 14px;
  }

  .kie-help-most-screen .kie-question-copy {
    margin-top: 244px;
  }

  .kie-help-most-screen .kie-question-copy h1 {
    font-size: 23px;
  }

  .kie-help-most-screen .kie-choice-list {
    gap: 7px;
    margin-top: 12px;
  }

  .kie-help-most-screen .kie-choice-card {
    min-height: 52px;
    padding: 7px 10px;
  }

  .kie-help-most-screen .kie-card-icon {
    width: 42px;
    height: 42px;
  }

  .kie-help-most-screen .kie-choice-card strong {
    font-size: 11px;
  }

  .kie-help-most-screen .kie-choice-card small {
    font-size: 8px;
  }

  .kie-help-most-screen .kie-bottom-cta {
    min-height: 52px;
  }
}

.kie-footnote {
  z-index: 2;
  margin: 13px auto 10px;
  border: 0;
  color: rgba(126, 84, 22, 0.68);
  background: transparent;
  font-size: 10px;
  font-weight: 700;
  text-decoration: underline;
}

.kie-bottom-cta {
  z-index: 2;
  min-height: 57px;
  margin-top: auto;
  margin-bottom: max(env(safe-area-inset-bottom), 6px);
  border-radius: 13px;
  font-size: 18px;
}

/* Min gap below cards so button never touches them */
.kie-card-list,
.kie-choice-list {
  margin-bottom: 16px;
}

.kie-team-screen .kie-bottom-cta {
  border-radius: 15px;
}

@media (max-width: 519px) {
  .kie-project-screen {
    padding: 24px 26px 18px;
  }

  .kie-project-screen .kie-brand {
    gap: 10px;
    font-size: 11px;
    letter-spacing: 0.2em;
  }

  .kie-project-screen .kie-brand img {
    width: 42px;
    height: 42px;
  }

  .kie-project-screen .kie-question-copy {
    margin-top: 24px;
  }

  .kie-project-screen .kie-question-copy h1 {
    font-size: 30px;
    line-height: 1.05;
  }

  .kie-project-screen .kie-question-copy p {
    max-width: 310px;
    margin-top: 12px;
    font-size: 13px;
    line-height: 1.3;
  }

  .kie-project-screen .kie-choice-list {
    gap: 11px;
    margin-top: 20px;
  }

  .kie-project-screen .kie-choice-card {
    grid-template-columns: 62px 1fr 20px;
    min-height: 70px;
    border-radius: 13px;
    padding: 10px 14px;
  }

  .kie-project-screen .kie-card-icon {
    width: 50px;
    height: 50px;
  }

  .kie-project-screen .kie-card-icon svg {
    width: 25px;
    height: 25px;
  }

  .kie-project-screen .kie-choice-card strong {
    font-size: 15px;
  }

  .kie-difficulty-screen {
    padding: 24px 26px 18px;
  }

  .kie-difficulty-screen .kie-brand {
    gap: 10px;
    font-size: 11px;
    letter-spacing: 0.2em;
  }

  .kie-difficulty-screen .kie-brand img {
    width: 42px;
    height: 42px;
  }

  .kie-difficulty-screen .kie-question-copy {
    max-width: 310px;
    margin-top: 46px;
  }

  .kie-difficulty-screen .kie-question-copy h1 {
    font-size: 42px;
    line-height: 0.94;
  }

  .kie-difficulty-screen .kie-choice-list {
    gap: 14px;
    margin-top: 48px;
  }

  .kie-difficulty-screen .kie-choice-card {
    grid-template-columns: 62px 1fr 20px;
    min-height: 68px;
    padding: 9px 15px;
  }

  .kie-difficulty-screen .kie-card-icon {
    width: 50px;
    height: 50px;
  }

  .kie-difficulty-screen .kie-card-icon svg {
    width: 25px;
    height: 25px;
  }

  .kie-difficulty-screen .kie-choice-card strong {
    font-size: 15px;
  }

  .kie-help-most-screen {
    padding: 24px 26px 18px;
  }

  .kie-help-most-screen .kie-brand {
    gap: 10px;
    font-size: 11px;
    letter-spacing: 0.2em;
  }

  .kie-help-most-screen .kie-brand img {
    width: 42px;
    height: 42px;
  }

  .kie-help-most-screen .kie-question-copy {
    margin-top: 300px;
  }

  .kie-help-most-screen .kie-question-copy h1 {
    font-size: 30px;
    line-height: 1.05;
  }

  .kie-help-most-screen .kie-choice-list {
    gap: 11px;
    margin-top: 18px;
  }

  .kie-help-most-screen .kie-choice-card {
    grid-template-columns: 62px 1fr 20px;
    min-height: 70px;
    border-radius: 13px;
    padding: 10px 14px;
  }

  .kie-help-most-screen .kie-card-icon {
    width: 50px;
    height: 50px;
  }

  .kie-help-most-screen .kie-card-icon svg {
    width: 25px;
    height: 25px;
  }

  .kie-help-most-screen .kie-choice-card strong {
    font-size: 15px;
  }

  .kie-help-most-screen .kie-choice-card small {
    font-size: 10px;
  }

  .layered-email-screen .layered-form-card {
    margin-top: auto;
  }
}

.layered-post-screen {
  align-items: center;
  padding: 44px 28px 18px;
  color: #fff7e8;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.16)),
    url("./assets/generated/first-post-assets/first-post-visual-plate.webp") 50% 46% / 78% auto no-repeat,
    #050403;
}

.layered-post-screen::before {
  display: block;
  inset: 0;
  z-index: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.12), transparent 20%, transparent 72%, rgba(0, 0, 0, 0.26));
}

.layered-post-brand {
  display: grid;
  z-index: 2;
  justify-items: center;
  color: #e4af60;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  text-align: center;
  text-transform: uppercase;
  text-shadow: 0 6px 24px rgba(0, 0, 0, 0.7);
}

.layered-post-brand img {
  width: 78px;
  height: 78px;
  object-fit: contain;
  filter: drop-shadow(0 0 16px rgba(232, 176, 70, 0.36));
}

.layered-post-brand span {
  margin-top: -8px;
  font-size: 23px;
  font-weight: 700;
  line-height: 0.94;
  letter-spacing: 0.16em;
}

.layered-post-copy {
  z-index: 2;
  margin-top: 20px;
  text-align: center;
  text-shadow: 0 5px 18px rgba(0, 0, 0, 0.64);
}

.layered-post-copy p,
.layered-post-copy h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 42px;
  font-weight: 500;
  line-height: 0.95;
}

.layered-post-copy h1 {
  color: #e4ad5b;
}

.layered-post-note {
  z-index: 2;
  display: grid;
  gap: 12px;
  width: 100%;
  margin-top: auto;
  border: 1px solid rgba(231, 180, 84, 0.22);
  border-radius: 19px;
  padding: 14px 15px 15px;
  color: rgba(255, 255, 255, 0.94);
  text-align: center;
  background: rgba(7, 6, 5, 0.68);
  box-shadow:
    0 16px 38px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
}

.layered-post-note strong {
  font-size: 18px;
  font-weight: 850;
  line-height: 1.12;
}

.layered-post-note p {
  margin: 0;
  color: rgba(255, 245, 226, 0.72);
  font-size: 16px;
  line-height: 1.18;
}

.layered-post-note span {
  color: #e1a64e;
  font-weight: 850;
}

.layered-post-cta {
  z-index: 2;
  min-height: 58px;
  margin-top: 11px;
  border-radius: 17px;
  color: #15100a;
  font-size: 24px;
  background:
    linear-gradient(180deg, rgba(255, 250, 202, 0.64), rgba(255, 229, 136, 0.1) 36%, transparent 37%),
    linear-gradient(180deg, #eec071, #b27625);
}

.layered-form-screen {
  padding: 24px 26px 18px;
}

.layered-form-copy,
.pay-copy,
.dashboard-copy,
.claim-copy {
  z-index: 2;
  margin-top: 68px;
  text-align: center;
}

.layered-form-copy h1,
.pay-copy h1,
.dashboard-copy h1,
.claim-copy h1 {
  margin: 0;
  color: #2d2117;
  font-size: 35px;
  font-weight: 900;
  line-height: 1;
}

.layered-form-copy p,
.pay-copy p,
.dashboard-copy p,
.claim-copy p {
  max-width: 280px;
  margin: 13px auto 0;
  color: rgba(64, 48, 35, 0.6);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
}

.layered-email-screen .layered-form-copy {
  margin-top: 26px;
}

.layered-email-screen .layered-form-card {
  margin-top: 20px;
  gap: 9px;
}

.layered-email-screen .layered-form-card input {
  height: 48px;
}

.layered-email-screen .layered-form-card label {
  gap: 5px;
}

.layered-form-card {
  z-index: 2;
  display: grid;
  gap: 12px;
  margin-top: 54px;
}

.layered-form-card label {
  display: grid;
  gap: 7px;
  color: rgba(64, 48, 35, 0.66);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.layered-form-card input,
.verify-code-row input {
  width: 100%;
  border: 1px solid rgba(214, 174, 99, 0.42);
  outline: 0;
  color: #302216;
  background: rgba(255, 255, 255, 0.82);
  box-shadow:
    0 13px 26px rgba(106, 74, 24, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(8px);
}

.layered-form-card input {
  height: 58px;
  border-radius: 14px;
  padding: 0 16px;
}

.verify-code-row {
  display: grid;
  z-index: 2;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 70px;
}

.verify-code-row input {
  height: 68px;
  border-radius: 16px;
  font-size: 28px;
  font-weight: 900;
  text-align: center;
}

.layered-cabinet-screen {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 28px 26px 18px;
  color: #fff8df;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(40, 24, 2, 0.12), rgba(24, 14, 0, 0.28)),
    url("./assets/generated/cabinet-assets/cabinet-bg.webp") 50% 0 / cover no-repeat,
    #3a2101;
}

.cabinet-rays {
  display: none;
}

.cabinet-confetti {
  display: none;
}

.cabinet-copy {
  position: relative;
  z-index: 2;
  width: 100%;
  margin-top: clamp(120px, 22vh, 200px);
  text-align: center;
  text-shadow: 0 8px 28px rgba(0, 0, 0, 0.54);
}

.cabinet-copy h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 11vw, 48px);
  font-weight: 500;
  line-height: 0.98;
  white-space: nowrap;
}

.cabinet-profile-card {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin-top: 14px;
  border: 1px solid rgba(255, 232, 160, 0.5);
  border-radius: 23px;
  padding: 16px 22px 18px;
  color: #4b2d0d;
  text-align: center;
  background:
    linear-gradient(160deg, rgba(255, 252, 244, 0.96), rgba(255, 246, 224, 0.9));
  box-shadow:
    0 20px 50px rgba(60, 35, 5, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.cabinet-avatar {
  width: 84px;
  height: 84px;
  margin: -2px 0 10px;
  border-radius: 50%;
  overflow: hidden;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at 50% 40%, rgba(255, 224, 150, 0.6), rgba(214, 154, 33, 0.3));
  box-shadow:
    0 0 0 3px rgba(255, 244, 214, 0.9),
    0 0 22px rgba(240, 180, 60, 0.6),
    0 10px 24px rgba(128, 86, 22, 0.25);
}

.cabinet-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cabinet-avatar-silhouette {
  width: 64px;
  height: 64px;
  background: rgba(120, 78, 20, 0.55);
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 12a5 5 0 1 0 0-10 5 5 0 0 0 0 10Zm0 2c-5 0-9 2.5-9 6v2h18v-2c0-3.5-4-6-9-6Z"/></svg>') center / contain no-repeat;
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 12a5 5 0 1 0 0-10 5 5 0 0 0 0 10Zm0 2c-5 0-9 2.5-9 6v2h18v-2c0-3.5-4-6-9-6Z"/></svg>') center / contain no-repeat;
}

.cabinet-profile-card p {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  line-height: 1;
}

.cabinet-profile-card h2 {
  margin: 4px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  font-weight: 500;
  line-height: 0.9;
  color: #744607;
}

.cabinet-rule {
  display: grid;
  align-items: center;
  width: 180px;
  grid-template-columns: 1fr 18px 1fr;
  gap: 11px;
  margin-top: 8px;
}

.cabinet-rule i {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(177, 108, 12, 0.48));
}

.cabinet-rule i:last-child {
  background: linear-gradient(90deg, rgba(177, 108, 12, 0.48), transparent);
}

.cabinet-rule b {
  width: 14px;
  height: 14px;
  transform: rotate(45deg);
  background: linear-gradient(135deg, #fff7bc, #d99b21);
  box-shadow: 0 0 16px rgba(238, 158, 21, 0.7);
}

.cabinet-profile-card small {
  margin-top: 9px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 16px;
  line-height: 1;
}

.cabinet-metrics {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 12px;
}

.cabinet-metrics div {
  display: grid;
  gap: 6px;
  min-width: 0;
  padding: 0 8px;
  border-right: 1px solid rgba(151, 94, 17, 0.3);
}

.cabinet-metrics div:last-child {
  border-right: 0;
}

.cabinet-metrics strong,
.dashboard-grid strong {
  display: block;
  color: #744607;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 0.92;
}

.cabinet-metrics span,
.dashboard-grid span {
  color: rgba(83, 50, 12, 0.78);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 13px;
  line-height: 1;
}

.cabinet-cta {
  position: relative;
  z-index: 2;
  min-height: 56px;
  margin-top: auto;
  margin-bottom: max(env(safe-area-inset-bottom), 6px);
  border: 1px solid rgba(255, 230, 143, 0.6);
  border-radius: 16px;
  color: #3a2408;
  font-size: 18px;
  font-weight: 600;
  background: linear-gradient(180deg, #f0c75e, #cd8f1d);
  box-shadow:
    0 10px 28px rgba(83, 42, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.dashboard-grid div,
.pay-card {
  border: 1px solid rgba(225, 181, 91, 0.46);
  border-radius: 16px;
  background: rgba(255, 250, 236, 0.78);
  box-shadow: 0 16px 34px rgba(98, 65, 16, 0.1);
  backdrop-filter: blur(8px);
}

.layered-claim-screen {
  align-items: center;
  padding: 24px 31px 13px;
  background:
    radial-gradient(circle at 12% 12%, rgba(231, 186, 83, 0.18), transparent 30%),
    radial-gradient(circle at 92% 84%, rgba(214, 160, 54, 0.14), transparent 28%),
    linear-gradient(180deg, rgba(255, 252, 244, 0.94), rgba(255, 246, 226, 0.72)),
    url("./assets/generated/kie-clean/claim-clean.webp") 50% 48% / cover no-repeat;
}

.claim-publish-brand {
  display: grid;
  z-index: 2;
  justify-items: center;
  color: #9b7629;
  font-family: Georgia, "Times New Roman", serif;
  line-height: 0.82;
  text-align: center;
  text-transform: uppercase;
}

.claim-publish-brand > span {
  font-size: 24px;
  letter-spacing: 0.13em;
}

.claim-copy {
  z-index: 2;
  margin-top: 16px;
  text-align: center;
}

.claim-copy h1 {
  margin: 0;
  color: #28272a;
  font-size: 33px;
  font-weight: 900;
  line-height: 1;
}

.claim-copy p {
  margin: 8px 0 0;
  color: rgba(39, 39, 42, 0.62);
  font-size: 17px;
  font-weight: 500;
}

.claim-social-card {
  display: grid;
  z-index: 2;
  width: 100%;
  margin-top: 18px;
  border-radius: 18px;
  padding: 10px;
  color: #27272a;
  background: rgba(255, 255, 255, 0.9);
  box-shadow:
    0 18px 42px rgba(86, 66, 31, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.claim-social-card header {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 32px;
}

.claim-social-avatar {
  display: grid;
  width: 29px;
  height: 29px;
  place-items: center;
  border: 1px solid rgba(203, 163, 73, 0.36);
  border-radius: 50%;
  color: #b3892f;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 19px;
  font-weight: 700;
  background: #fffaf0;
}

.claim-social-card header strong {
  flex: 1;
  font-size: 16px;
  font-weight: 850;
}

.claim-social-card header b {
  font-size: 18px;
  letter-spacing: 0.08em;
}

.claim-social-card img {
  width: 100%;
  aspect-ratio: 1 / 0.53;
  margin-top: 10px;
  border-radius: 5px;
  object-fit: cover;
}

.claim-social-actions {
  display: grid;
  grid-template-columns: repeat(3, 24px) 1fr;
  gap: 11px;
  align-items: center;
  margin-top: 8px;
  color: #171717;
  line-height: 1;
}

.claim-social-actions svg {
  display: block;
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.25;
}

.claim-social-actions span:last-child {
  text-align: center;
  justify-self: end;
}

.claim-social-card p {
  margin: 7px 2px 0;
  font-size: 14px;
  line-height: 1.1;
}

.claim-social-card em {
  color: #c39425;
  font-style: normal;
}

.claim-publish-stats {
  display: grid;
  z-index: 2;
  width: 100%;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 11px;
}

.claim-publish-stats div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 39px;
  border-radius: 12px;
  color: #2c2a28;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 12px 25px rgba(92, 68, 28, 0.09);
}

.claim-publish-stats div:last-child {
  border: 1px solid rgba(220, 177, 82, 0.42);
  color: #b58928;
  background: rgba(255, 251, 239, 0.82);
}

.claim-publish-stats svg {
  width: 19px;
  height: 19px;
  stroke: #bb8c25;
  stroke-width: 2.2;
}

.claim-publish-stats strong {
  font-size: 12px;
  font-weight: 850;
}

.claim-share-row {
  display: grid;
  z-index: 2;
  width: 100%;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 11px;
  border-radius: 13px;
  padding: 10px 12px 9px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 12px 25px rgba(92, 68, 28, 0.08);
}

.claim-share-row button {
  display: grid;
  gap: 6px;
  justify-items: center;
  border: 0;
  color: #33302e;
  background: transparent;
  font-size: 13px;
}

.claim-share-row span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  font-size: 21px;
  font-weight: 900;
}

.social-instagram {
  background: radial-gradient(circle at 30% 105%, #feda75 0 25%, #fa7e1e 33%, #d62976 58%, #962fbf 78%, #4f5bd5 100%);
}

.social-linkedin {
  background: #0a66c2;
  font-family: Arial, sans-serif;
}

.social-facebook {
  background: #1877f2;
  font-family: Arial, sans-serif;
}

.claim-share-cta {
  z-index: 2;
  min-height: 52px;
  margin-top: 15px;
  border-radius: 11px;
  color: #fff;
  font-size: 23px;
}

.claim-schedule {
  z-index: 2;
  margin-top: 8px;
  border: 0;
  color: #b28a2e;
  background: transparent;
  font-size: 17px;
  font-weight: 850;
}

.pay-copy,
.dashboard-copy {
  margin-top: 54px;
}

.pay-card {
  z-index: 2;
  margin-top: 38px;
  padding: 20px;
  color: #3b291a;
}

.pay-card div {
  text-align: center;
}

.pay-card span,
.pay-card small {
  display: block;
  color: rgba(64, 48, 35, 0.58);
  font-size: 12px;
  font-weight: 900;
}

.pay-card strong {
  display: block;
  margin-top: 5px;
  color: #b57713;
  font-size: 44px;
  line-height: 1;
}

.pay-card p {
  display: flex;
  gap: 9px;
  align-items: center;
  margin: 15px 0 0;
  font-size: 14px;
  font-weight: 800;
}

.pay-card b {
  color: #c98d24;
}

.dashboard-grid {
  grid-template-columns: repeat(2, 1fr);
  margin-top: 44px;
}

.dashboard-grid div {
  min-height: 108px;
  padding: 20px 16px;
}

.dashboard-grid strong {
  font-size: 32px;
}

.layered-rate-screen {
  padding: 28px 26px 18px;
  color: #fff4d4;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(15, 8, 0, 0.32)),
    var(--kie-bg) 50% 50% / cover no-repeat;
}

.layered-rate-screen::after {
  display: block;
  inset: auto 0 0;
  height: 250px;
  background: linear-gradient(180deg, transparent, rgba(21, 12, 2, 0.78));
}

.rate-brand {
  display: grid;
  z-index: 2;
  justify-items: center;
  gap: 8px;
  color: #f0ca71;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 14px;
  letter-spacing: 0.32em;
  text-align: center;
  text-transform: uppercase;
}

.rate-brand img {
  width: 62px;
  height: 62px;
}

.rate-copy {
  z-index: 2;
  margin-top: 112px;
  text-align: center;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.34);
}

.rate-copy p {
  margin: 0 0 10px;
  color: rgba(255, 232, 163, 0.8);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.rate-copy h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 38px;
  font-weight: 500;
  line-height: 0.98;
}

.rate-move-card {
  display: grid;
  z-index: 2;
  grid-template-columns: 64px 1fr;
  gap: 14px;
  align-items: center;
  margin-top: auto;
  margin-bottom: 18px;
  border: 1px solid rgba(232, 188, 89, 0.46);
  border-radius: 18px;
  padding: 16px;
  color: #392715;
  background: rgba(255, 248, 224, 0.86);
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(8px);
}

.rate-move-card strong {
  color: #2f2115;
  font-size: 17px;
  line-height: 1.15;
}

.rate-move-card p {
  margin: 6px 0 0;
  color: rgba(60, 43, 28, 0.62);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
}

.born-screen {
  overflow: hidden;
  padding: 18px 24px 20px;
  color: #fff7da;
  background:
    radial-gradient(circle at 50% -8%, rgba(255, 217, 118, 0.95) 0 11%, rgba(171, 107, 16, 0.5) 24%, rgba(34, 18, 3, 0) 43%),
    radial-gradient(circle at 50% 60%, rgba(245, 172, 43, 0.52), rgba(15, 8, 2, 0) 46%),
    linear-gradient(180deg, #2d1b04 0%, #0b0602 58%, #050302 100%);
}

.born-glow {
  position: absolute;
  inset: -120px -70px auto;
  height: 360px;
  background: radial-gradient(circle, rgba(255, 224, 119, 0.68), rgba(255, 186, 50, 0.13) 47%, rgba(0, 0, 0, 0) 70%);
  filter: blur(6px);
}

.born-confetti {
  position: absolute;
  inset: 0;
  opacity: 0.45;
  background-image:
    radial-gradient(circle at 14% 18%, rgba(255, 219, 97, 0.9) 0 2px, transparent 3px),
    radial-gradient(circle at 78% 11%, rgba(255, 244, 181, 0.85) 0 2px, transparent 3px),
    radial-gradient(circle at 84% 72%, rgba(255, 196, 57, 0.8) 0 3px, transparent 4px),
    radial-gradient(circle at 23% 83%, rgba(255, 214, 90, 0.75) 0 2px, transparent 3px);
}

.born-brand {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 7px;
  margin-top: 2px;
  color: #e8c06b;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 17px;
  line-height: 1.05;
  letter-spacing: 2px;
  text-align: center;
  text-transform: uppercase;
}

.born-brand img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  filter: drop-shadow(0 0 22px rgba(255, 211, 84, 0.55));
}

.born-hero {
  position: relative;
  z-index: 1;
  margin-top: 18px;
  text-align: center;
}

.born-hero p {
  margin: 0 0 8px;
  color: rgba(255, 227, 156, 0.84);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.born-hero h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 35px;
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: 0;
  text-shadow: 0 2px 22px rgba(0, 0, 0, 0.55);
}

.born-avatars {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 10px;
  align-items: stretch;
  margin-top: 24px;
}

.born-atlanta,
.born-avatar-card,
.born-stats {
  border: 1px solid rgba(255, 231, 161, 0.7);
  background: linear-gradient(145deg, rgba(255, 247, 213, 0.98), rgba(255, 224, 142, 0.88));
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.38), inset 0 0 34px rgba(255, 255, 255, 0.32);
}

.born-atlanta {
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 5px;
  min-height: 170px;
  border-radius: 24px;
  color: #6e4208;
  text-align: center;
}

.born-atlanta img {
  width: 50px;
  height: 50px;
  border: 1px solid rgba(194, 137, 28, 0.75);
  border-radius: 999px;
  object-fit: cover;
  object-position: 68% 34%;
}

.born-atlanta span,
.born-atlanta strong {
  display: block;
  font-size: 11px;
  line-height: 1.05;
}

.born-avatar-card {
  display: grid;
  justify-items: center;
  align-content: center;
  min-height: 208px;
  border-radius: 26px;
  color: #6a3e08;
  text-align: center;
}

.born-avatar-ring {
  display: grid;
  width: 94px;
  height: 94px;
  place-items: center;
  border: 2px solid rgba(220, 159, 35, 0.95);
  border-radius: 999px;
  background: radial-gradient(circle, #8d5a0b, #c28a1b 58%, #ffe48e 100%);
  box-shadow: 0 0 42px rgba(255, 204, 78, 0.9), inset 0 0 35px rgba(255, 247, 187, 0.7);
}

.born-avatar-silhouette {
  width: 54px;
  height: 62px;
  background: linear-gradient(180deg, #7d4a07, #b77a14);
  clip-path: path("M33 8C45 8 54 18 54 31C54 43 47 53 38 56C52 60 63 71 66 84H0C3 71 14 60 28 56C19 53 12 43 12 31C12 18 21 8 33 8Z");
}

.born-avatar-card p {
  margin: 14px 0 0;
  color: #6f4b1c;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 19px;
}

.born-avatar-card h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 44px;
  font-weight: 500;
  line-height: 0.95;
}

.born-avatar-card small {
  margin-top: 8px;
  color: #8a661e;
  font-size: 13px;
}

.born-stats {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 12px;
  padding: 13px 8px;
  border-radius: 24px;
  color: #6a3d06;
  text-align: center;
}

.born-stats div + div {
  border-left: 1px solid rgba(151, 91, 9, 0.24);
}

.born-stats strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 1;
}

.born-stats span {
  display: block;
  margin-top: 5px;
  color: #8a671d;
  font-size: 12px;
}

.born-cta {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 58px;
  margin-top: 13px;
  border-radius: 31px;
  color: #fff;
}

.role-screen::before {
  display: none;
}

.role-screen .steps {
  margin: 18px 0 26px;
}

.choice-screen .brand {
  margin-top: 7px;
}

.choice-screen .steps {
  margin: 10px 0 24px;
}

.topic-screen .title {
  font-size: 28px;
  line-height: 1.08;
}

.topic-screen .subtitle {
  margin-top: 9px;
  font-size: 12px;
}

.choices {
  display: grid;
  gap: 10px;
  margin-top: 6px;
}

.topic-choices {
  gap: 13px;
  margin-top: 30px;
}

.choice-card {
  position: relative;
  display: grid;
  min-height: 72px;
  grid-template-columns: 54px 1fr 32px;
  align-items: center;
  overflow: hidden;
  border: 1px solid var(--stroke);
  border-radius: 14px;
  padding: 11px 16px 11px 14px;
  color: #3b3027;
  background:
    linear-gradient(rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.84)),
    rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(5px);
  box-shadow:
    0 15px 34px rgba(92, 64, 23, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
  text-align: left;
}

.choice-card::after {
  display: none;
}

.choice-card.selected {
  border-color: #d49a2a;
  box-shadow:
    0 17px 38px rgba(138, 91, 13, 0.13),
    0 0 0 1px rgba(210, 151, 38, 0.18) inset,
    inset 0 1px 0 rgba(255, 255, 255, 0.88);
}

.choice-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  color: #b98530;
  background: rgba(245, 226, 193, 0.58);
}

.choice-icon svg {
  width: 22px;
  height: 22px;
  stroke-width: 1.8;
}

.choice-label {
  position: relative;
  z-index: 1;
  font-size: 15px;
  font-weight: 800;
}

.topic-screen .choice-card {
  min-height: 70px;
  grid-template-columns: 72px 1fr 32px;
  border-color: rgba(211, 181, 132, 0.5);
  background:
    linear-gradient(105deg, rgba(255, 255, 255, 0.92), rgba(255, 252, 246, 0.68)),
    rgba(255, 255, 255, 0.72);
  box-shadow:
    0 16px 34px rgba(111, 77, 25, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.topic-screen .choice-label {
  font-size: 13px;
}

.topic-screen .choice-icon {
  width: 54px;
  height: 54px;
  color: #b67d25;
  background:
    radial-gradient(circle at 38% 28%, rgba(255, 255, 255, 0.9), transparent 45%),
    rgba(247, 232, 206, 0.72);
  box-shadow:
    0 11px 22px rgba(111, 77, 25, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.topic-screen .choice-icon svg {
  width: 26px;
  height: 26px;
  stroke-width: 1.65;
}

.topic-screen .choice-card.selected::after {
  position: absolute;
  right: -22px;
  bottom: -18px;
  display: block;
  width: 74px;
  height: 74px;
  opacity: 0.26;
  background: url("./assets/logo-color.png") center / contain no-repeat;
  content: "";
  filter: saturate(0.7) brightness(1.08);
}

.topic-screen .choice-card.selected {
  border-color: #d29225;
  background:
    linear-gradient(105deg, rgba(255, 255, 255, 0.9), rgba(255, 247, 232, 0.55)),
    rgba(255, 255, 255, 0.66);
  box-shadow:
    0 18px 38px rgba(147, 96, 16, 0.11),
    0 0 0 1px rgba(211, 146, 37, 0.12) inset,
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.screen-bottom {
  margin-top: auto;
  margin-bottom: max(env(safe-area-inset-bottom), 8px);
}

/* Ensure gap above bottom button when content is tall */
.choices + .screen-bottom,
.topic-choices + .screen-bottom {
  margin-top: 18px;
}

.photo-screen .steps {
  margin: 23px 0 50px;
}

.photo-screen .title {
  font-size: 30px;
}

.photo-screen .subtitle {
  margin-top: 9px;
  font-size: 12px;
}

.photo-picker {
  position: relative;
  display: grid;
  width: 238px;
  height: 238px;
  margin: 31px auto 28px;
  place-items: center;
  border: 1.5px dashed rgba(198, 133, 30, 0.45);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 249, 229, 0.72), rgba(255, 250, 238, 0.38) 46%, rgba(255, 250, 238, 0.12) 70%),
    rgba(255, 250, 239, 0.18);
  box-shadow: inset 0 0 0 18px rgba(255, 255, 255, 0.26);
}

.photo-picker::before {
  position: absolute;
  inset: 12px;
  background: url("./assets/logo-color.png") center / contain no-repeat;
  content: "";
  filter: sepia(1) saturate(0.48) hue-rotate(350deg) brightness(1.52) contrast(0.78) blur(0.25px);
  opacity: 0.2;
}

.photo-picker::after {
  position: absolute;
  inset: 24%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 250, 234, 0.98), rgba(255, 250, 234, 0.84) 48%, rgba(255, 250, 234, 0) 74%);
  content: "";
  filter: blur(5px);
}

.photo-icon {
  position: relative;
  z-index: 1;
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border-radius: 14px;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), transparent 50%),
    linear-gradient(135deg, #f0bd50, #d49220);
  box-shadow:
    0 12px 22px rgba(168, 105, 15, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

.photo-icon svg {
  width: 31px;
  height: 31px;
  stroke-width: 1.9;
}

.photo-plus {
  position: absolute;
  right: -9px;
  bottom: -7px;
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border: 2px solid rgba(255, 250, 239, 0.95);
  border-radius: 50%;
  color: #fff;
  background: #d8941e;
  font-size: 16px;
  font-weight: 900;
  line-height: 1;
}

.photo-button {
  margin-top: 0;
}

.link-button {
  align-self: center;
  margin-top: 14px;
  border: 0;
  color: #bc8128;
  background: transparent;
  font-size: 12px;
  font-weight: 700;
  text-decoration: underline;
}

.photo-note {
  max-width: 260px;
  margin: 24px auto 0;
  color: rgba(73, 57, 43, 0.62);
  font-size: 10px;
  font-weight: 600;
  line-height: 1.35;
  text-align: center;
}

.compact-hero {
  margin-top: 18px;
}

.compact-hero .title {
  font-size: 30px;
  line-height: 1.08;
}

.compact-hero .subtitle {
  margin-top: 8px;
  font-size: 12px;
}

.left-hero {
  text-align: left;
}

.form-screen .steps,
.help-screen .steps,
.content-screen .steps,
.week-screen .steps,
.results-screen .steps,
.seven-screen .steps,
.plans-screen .steps,
.inside-screen .steps,
.join-screen .steps {
  margin: 23px 0 38px;
}

.plans-screen .steps {
  margin-bottom: 30px;
}

.week-screen .steps,
.results-screen .steps,
.seven-screen .steps {
  margin-bottom: 25px;
}

.week-screen .compact-hero {
  margin-top: 10px;
}

.week-screen .compact-hero .title {
  font-size: 28px;
}

.results-screen .compact-hero {
  margin-top: 10px;
}

.business-fields,
.benefit-list,
.testimonial-list,
.day-list,
.inside-list,
.join-testimonials {
  display: grid;
  gap: 11px;
  margin-top: 26px;
}

.field-card,
.benefit-card,
.testimonial-card,
.day-row,
.level-card,
.inside-item,
.join-card,
.cancel-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(219, 183, 121, 0.42);
  border-radius: 14px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.78)),
    rgba(255, 255, 255, 0.82);
  box-shadow:
    0 14px 32px rgba(92, 64, 23, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(6px);
}

.field-card {
  display: grid;
  gap: 9px;
  min-height: 82px;
  padding: 13px 16px;
}

.field-card span {
  color: #3b3027;
  font-size: 11px;
  font-weight: 800;
}

.field-card em {
  color: rgba(73, 57, 43, 0.55);
  font-style: normal;
}

.field-card input {
  width: 100%;
  border: 0;
  outline: 0;
  color: #2f241a;
  background: transparent;
  font-size: 12px;
}

.field-card input::placeholder {
  color: rgba(85, 67, 50, 0.42);
}

.benefit-card,
.inside-item {
  display: grid;
  min-height: 70px;
  grid-template-columns: 48px 1fr 18px;
  align-items: center;
  gap: 10px;
  padding: 11px 13px;
  border: 0;
  color: #31271f;
  text-align: left;
}

.help-screen .benefit-card {
  grid-template-columns: 48px 1fr;
}

.benefit-card strong,
.inside-item strong {
  display: block;
  font-size: 14px;
  line-height: 1.05;
}

.benefit-card p,
.inside-item p {
  margin: 3px 0 0;
  color: rgba(72, 57, 43, 0.68);
  font-size: 10px;
  font-weight: 600;
  line-height: 1.2;
}

.chevron {
  color: #bf8429;
  font-size: 24px;
}

.post-preview {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 10px;
  align-items: center;
  margin-top: 13px;
  padding: 10px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 34px rgba(95, 64, 20, 0.12);
}

.post-preview img {
  width: 86px;
  height: 86px;
  border-radius: 10px;
  object-fit: cover;
}

.post-preview strong {
  font-size: 11px;
}

.post-preview p {
  margin: 5px 0;
  font-size: 9.5px;
  font-weight: 700;
  line-height: 1.18;
}

.post-preview span {
  color: #bd842c;
  font-size: 9px;
  font-weight: 800;
}

.workspace-preview {
  position: relative;
  height: 104px;
  margin-top: 15px;
  overflow: hidden;
  padding: 0;
  border: 1px solid rgba(219, 183, 121, 0.42);
  border-radius: 16px;
  background:
    radial-gradient(circle at 78% 32%, rgba(215, 151, 43, 0.12), transparent 38%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(255, 249, 237, 0.58));
  box-shadow:
    0 16px 34px rgba(92, 64, 23, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(8px);
}

.workspace-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  opacity: 0.92;
  filter: saturate(0.96) contrast(0.96);
}

.plan-ghost,
.plan-funnel,
.plan-flow,
.plan-bars {
  position: absolute;
  border: 1px solid rgba(219, 183, 121, 0.36);
  background: rgba(255, 255, 255, 0.42);
  box-shadow: 0 13px 25px rgba(95, 64, 20, 0.07);
  backdrop-filter: blur(7px);
}

.plan-ghost {
  display: grid;
  gap: 8px;
  padding: 12px;
  border-radius: 14px;
}

.plan-ghost-left {
  top: 19px;
  left: 15px;
  width: 96px;
  height: 78px;
  opacity: 0.42;
  filter: blur(1.1px);
}

.plan-ghost-corner {
  right: -16px;
  bottom: -15px;
  width: 82px;
  height: 58px;
  opacity: 0.34;
  filter: blur(2px);
}

.plan-ghost i {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(94, 76, 58, 0.7);
}

.plan-ghost i::before {
  width: 15px;
  height: 15px;
  border: 1px solid rgba(94, 76, 58, 0.22);
  border-radius: 50%;
  background: rgba(220, 203, 172, 0.28);
  content: "";
}

.plan-ghost i::after {
  width: 36px;
  height: 5px;
  border-radius: 999px;
  background: rgba(107, 82, 58, 0.12);
  content: "";
}

.plan-funnel {
  left: 108px;
  top: 12px;
  display: grid;
  width: 108px;
  height: 84px;
  place-items: center;
  border-radius: 14px;
  opacity: 0.78;
}

.plan-funnel span {
  display: block;
  height: 14px;
  border: 1px solid rgba(123, 98, 72, 0.24);
  border-radius: 4px;
  background: rgba(221, 202, 169, 0.34);
}

.plan-funnel span:nth-child(1) {
  width: 70px;
}

.plan-funnel span:nth-child(2) {
  width: 58px;
}

.plan-funnel span:nth-child(3) {
  width: 44px;
  background: rgba(226, 178, 116, 0.27);
}

.plan-funnel span:nth-child(4) {
  width: 31px;
  background: rgba(197, 145, 102, 0.24);
}

.plan-flow {
  right: 14px;
  top: 19px;
  display: flex;
  align-items: center;
  gap: 7px;
  height: 42px;
  padding: 0 11px;
  border-radius: 999px;
  opacity: 0.68;
}

.plan-flow i {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 50%;
  color: rgba(86, 68, 50, 0.72);
  background: rgba(225, 211, 185, 0.42);
}

.plan-flow i::before {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(161, 116, 45, 0.38);
  content: "";
}

.plan-flow b {
  width: 13px;
  border-top: 1px dashed rgba(132, 96, 52, 0.34);
}

.plan-bars {
  right: 48px;
  bottom: 15px;
  display: flex;
  align-items: end;
  gap: 7px;
  width: 86px;
  height: 34px;
  padding: 10px 14px 8px;
  border-radius: 12px;
  opacity: 0.35;
  filter: blur(0.8px);
}

.plan-bars i {
  width: 12px;
  border-radius: 4px 4px 0 0;
  background: rgba(112, 88, 62, 0.2);
}

.plan-bars i:nth-child(1) {
  height: 10px;
}

.plan-bars i:nth-child(2) {
  height: 17px;
}

.plan-bars i:nth-child(3) {
  height: 24px;
}

.content-post {
  position: relative;
  overflow: hidden;
  width: 272px;
  height: 320px;
  margin: 23px auto 0;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 18px;
  box-shadow:
    0 22px 44px rgba(70, 47, 18, 0.22),
    inset 0 0 0 1px rgba(255, 255, 255, 0.22);
}

.content-post img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) brightness(0.94) contrast(0.94);
}

.post-caption {
  position: absolute;
  inset: 74px 20px auto;
  color: #fff7e6;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-align: center;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}

.post-caption span {
  font-size: 18px;
}

.post-caption small {
  display: block;
  max-width: 170px;
  margin: 14px auto 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.25;
}

.post-orb {
  position: absolute;
  top: 20px;
  left: 50%;
  width: 46px;
  height: 46px;
  background: url("./assets/logo-color.png") center / contain no-repeat;
  filter: saturate(0.8) brightness(1.1);
  opacity: 0.72;
  transform: translateX(-50%);
}

.content-arrows {
  position: relative;
  width: 96px;
  height: 42px;
  margin: -12px auto 0;
  border-right: 1px dashed rgba(207, 145, 38, 0.52);
  border-left: 1px dashed rgba(207, 145, 38, 0.52);
  border-radius: 46px 46px 0 0;
}

.content-arrows span {
  position: absolute;
  left: 50%;
  bottom: 17px;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(207, 145, 38, 0.38);
  border-radius: 50%;
  color: #b77a20;
  background: rgba(255, 249, 235, 0.9);
  box-shadow: 0 9px 18px rgba(105, 73, 24, 0.12);
  font-size: 21px;
  transform: translateX(-50%);
}

.platforms {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.platforms span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 7px 10px;
  border: 1px solid rgba(212, 158, 65, 0.34);
  border-radius: 999px;
  color: #9b6a21;
  background: rgba(255, 255, 255, 0.66);
  font-size: 10px;
  font-weight: 800;
}

.platforms svg {
  width: 13px;
  height: 13px;
}

.help-platforms {
  margin-top: 11px;
}

.help-platforms span {
  padding: 7px 9px;
  font-size: 9px;
}

.tiny-note {
  margin: 13px auto 0;
  max-width: 260px;
  color: rgba(73, 57, 43, 0.62);
  font-size: 10px;
  font-weight: 600;
  line-height: 1.35;
  text-align: center;
}

.metric-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 11px;
  margin-top: 14px;
}

.metric-card {
  position: relative;
  display: grid;
  min-height: 94px;
  align-content: start;
  gap: 5px;
  border: 1px solid rgba(219, 183, 121, 0.42);
  border-radius: 16px;
  padding: 11px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(255, 249, 235, 0.64)),
    rgba(255, 255, 255, 0.74);
  box-shadow:
    0 17px 34px rgba(120, 82, 22, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.metric-card::after {
  position: absolute;
  right: -29px;
  bottom: -34px;
  width: 80px;
  height: 80px;
  background: url("./assets/logo-color.png") center / contain no-repeat;
  content: "";
  filter: saturate(0.55) brightness(1.2);
  opacity: 0.12;
}

.metric-card .choice-icon {
  width: 40px;
  height: 40px;
  color: #b87918;
  background:
    radial-gradient(circle at 35% 30%, rgba(255, 255, 255, 0.92), transparent 30%),
    linear-gradient(145deg, rgba(255, 224, 132, 0.88), rgba(197, 126, 19, 0.82));
  box-shadow:
    0 7px 14px rgba(137, 88, 10, 0.16),
    inset 0 0 0 1px rgba(255, 255, 255, 0.48);
}

.metric-card .choice-icon svg {
  width: 22px;
  height: 22px;
}

.metric-card strong {
  color: #bf8429;
  font-size: 25px;
  line-height: 1;
}

.metric-card p {
  margin: 0;
  color: rgba(72, 57, 43, 0.68);
  font-size: 10px;
  font-weight: 800;
}

.level-card {
  margin-top: 10px;
  display: grid;
  grid-template-columns: 58px 1fr;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
}

.level-card::before {
  display: block;
  width: 50px;
  height: 50px;
  background: url("./assets/logo-color.png") center / contain no-repeat;
  content: "";
  filter: saturate(0.75) brightness(1.12);
  opacity: 0.72;
}

.level-card strong,
.level-card span {
  display: block;
  font-size: 11px;
}

.level-card span {
  margin-top: 3px;
  color: rgba(72, 57, 43, 0.58);
}

.progress {
  grid-column: 1 / -1;
  height: 8px;
  margin-top: 5px;
  border-radius: 999px;
  background: rgba(208, 173, 114, 0.24);
}

.progress i {
  display: block;
  width: 65%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #eac05f, #c68418);
}

.testimonial-card {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 13px;
  align-items: center;
  min-height: 90px;
  padding: 11px 15px;
  background:
    radial-gradient(circle at 8% 40%, rgba(255, 241, 202, 0.5), transparent 31%),
    linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 250, 238, 0.78)),
    rgba(255, 255, 255, 0.84);
}

.testimonial-card img,
.join-card img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-card p {
  margin: 0;
  color: #403128;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.25;
}

.testimonial-card span {
  color: #d99a2b;
  font-size: 12px;
  letter-spacing: 0.08em;
}

.join-note {
  max-width: 260px;
  margin: 14px auto 0;
  color: #4c392b;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
  text-align: center;
}

.day-list {
  position: relative;
  gap: 5px;
  margin-top: 11px;
  padding-left: 15px;
}

.day-list::before {
  position: absolute;
  top: 13px;
  bottom: 13px;
  left: 17px;
  width: 2px;
  background: linear-gradient(#f6cd69, #d28e21);
  content: "";
  opacity: 0.55;
}

.day-row {
  position: relative;
  display: grid;
  min-height: 48px;
  grid-template-columns: 70px 1fr;
  align-items: center;
  padding: 6px 12px 6px 0;
}

.day-row::before {
  position: absolute;
  left: -23px;
  top: 50%;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 238, 180, 0.92);
  border-radius: 50%;
  background: radial-gradient(circle, #fff7cf 0 28%, #d99928 34% 100%);
  box-shadow: 0 0 12px rgba(215, 152, 36, 0.42);
  content: "";
  transform: translateY(-50%);
}

.day-row span {
  color: #c28a27;
  font-size: 9px;
  font-weight: 800;
  text-align: center;
}

.day-row strong {
  font-size: 26px;
}

.day-row p {
  margin: 0;
  color: #3e3026;
  font-size: 10.5px;
  font-weight: 700;
}

.seven-screen {
  padding-bottom: 14px;
  background:
    radial-gradient(circle at 88% 15%, rgba(230, 175, 69, 0.2), transparent 23%),
    linear-gradient(rgba(255, 253, 248, 0.7), rgba(255, 244, 220, 0.46)),
    url("./assets/BG_v1_new.webp") 78% 38% / cover no-repeat;
}

.seven-screen .compact-hero {
  margin-top: 9px;
}

.seven-screen .compact-hero .title {
  font-size: 29px;
}

.seven-screen .compact-hero .subtitle {
  max-width: 310px;
  font-size: 11px;
}

.seven-screen .gold-button {
  min-height: 53px;
}

.ready-screen {
  position: relative;
  color: #fff6df;
  background:
    linear-gradient(180deg, rgba(12, 8, 5, 0.08), rgba(12, 8, 5, 0.1)),
    url("./assets/generated/ready_original_background_clean.webp") 50% 50% / cover no-repeat;
}

/* Looping animated background video (overlays the static poster image) */
.ready-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
  animation: ready-bg-fade-in 0.8s ease-out both;
}

@keyframes ready-bg-fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

.ready-screen .ready-brand,
.ready-screen .ready-hero,
.ready-screen .avatar-stage,
.ready-screen .born-cta {
  position: relative;
  z-index: 2;
}

.ready-screen::before {
  display: none;
}

.ready-brand {
  margin-top: 20px;
}

.ready-hero {
  margin-top: 24px;
}

.ready-hero .title {
  color: #fff3d6;
  font-size: 34px;
}

.ready-hero .subtitle {
  max-width: 270px;
  margin-right: auto;
  margin-left: auto;
  color: rgba(255, 244, 218, 0.62);
  font-size: 12px;
}

.avatar-stage {
  position: relative;
  display: grid;
  flex: 1 1 auto;
  min-height: 0;
  margin: -2px -31px 0;
  overflow: visible;
  place-items: end center;
}

.avatar-stage::before {
  display: none;
}

.avatar-stage img {
  position: relative;
  z-index: 2;
  width: auto;
  max-width: 100%;
  height: 100%;
  max-height: 100%;
  border: 0;
  border-radius: 0;
  object-fit: contain;
  object-position: 50% 100%;
  filter: saturate(0.98) contrast(1.02) drop-shadow(0 18px 22px rgba(0, 0, 0, 0.28));
}

/* Golden glow + DNA rings behind the cut-out avatar (replaces in-generation rings) */
.ready-orb {
  display: block;
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  width: 320px;
  height: 320px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 45%, rgba(255, 214, 130, 0.55), rgba(240, 180, 60, 0.22) 42%, transparent 68%);
  filter: blur(6px);
  pointer-events: none;
}

.ready-orb::before {
  content: "";
  position: absolute;
  inset: 8%;
  border-radius: 50%;
  background:
    conic-gradient(from 0deg, transparent 0deg, rgba(255, 205, 110, 0.32) 40deg, transparent 80deg, transparent 180deg, rgba(255, 205, 110, 0.28) 220deg, transparent 260deg);
  animation: ready-orb-spin 18s linear infinite;
}

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

.plan-slider {
  display: flex;
  flex-shrink: 0;
  gap: 12px;
  margin: 18px -31px 10px;
  overflow-x: auto;
  padding: 0 46px 10px;
  cursor: grab;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  touch-action: pan-x;
  user-select: none;
}

.plan-slider.dragging {
  cursor: grabbing;
  scroll-behavior: auto;
}

.plan-slider::-webkit-scrollbar {
  display: none;
}

.plan-card {
  position: relative;
  --tier: #c99434;
  --tier-soft: rgba(201, 148, 52, 0.14);
  flex: 0 0 258px;
  min-height: 334px;
  scroll-snap-align: center;
  border: 2px solid color-mix(in srgb, var(--tier) 36%, rgba(195, 172, 130, 0.5));
  border-radius: 18px;
  padding: 18px 20px;
  color: #3a2c22;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.9), color-mix(in srgb, var(--tier-soft) 62%, rgba(255, 255, 255, 0.72))),
    rgba(255, 255, 255, 0.82);
  text-align: left;
  box-shadow: 0 18px 38px rgba(92, 64, 23, 0.1);
}

.plan-entry {
  --tier: #a9a59b;
  --tier-soft: rgba(169, 165, 155, 0.13);
}

.plan-start {
  --tier: #2f9b6d;
  --tier-soft: rgba(47, 155, 109, 0.13);
}

.plan-business {
  --tier: #ee9a18;
  --tier-soft: rgba(238, 154, 24, 0.15);
}

.plan-top {
  --tier: #262623;
  --tier-soft: rgba(38, 38, 35, 0.12);
}

.plan-top {
  color: rgba(255, 248, 232, 0.92);
  background:
    radial-gradient(circle at 78% 16%, rgba(222, 170, 77, 0.18), transparent 28%),
    linear-gradient(145deg, #302b25 0%, #11100e 46%, #050505 100%);
  box-shadow:
    0 24px 44px rgba(30, 20, 9, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    inset 0 -1px 0 rgba(0, 0, 0, 0.45);
}

.plan-orb {
  position: absolute;
  top: 28px;
  right: 22px;
  width: 96px;
  height: 96px;
  background: url("./assets/logo-color.png") center / contain no-repeat;
  opacity: 0.72;
  filter: saturate(0.8) brightness(1.06);
}

.plan-card.active {
  border-color: var(--tier);
  box-shadow:
    0 18px 38px rgba(92, 64, 23, 0.1),
    0 0 0 1px color-mix(in srgb, var(--tier) 18%, transparent);
}

.plan-card > strong {
  color: color-mix(in srgb, var(--tier) 76%, #534434);
  font-size: 24px;
}

.plan-top > strong {
  color: #fff4dc;
}

.plan-card > small {
  display: block;
  margin-top: 4px;
  color: rgba(72, 57, 43, 0.58);
  font-size: 12px;
  font-weight: 700;
}

.plan-top > small {
  color: rgba(255, 245, 222, 0.64);
}

.price {
  margin: 13px 0;
  color: color-mix(in srgb, var(--tier) 82%, #3e372d);
  font-size: 30px;
  font-weight: 900;
}

.plan-top .price {
  color: #fff9ed;
  text-shadow: 0 0 18px rgba(221, 159, 51, 0.18);
}

.plan-top .price span {
  color: rgba(255, 239, 210, 0.82);
}

.price span {
  display: block;
  font-size: 11px;
}

.plan-card em {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 5px 8px;
  border-radius: 999px;
  color: color-mix(in srgb, var(--tier) 82%, #52402c);
  background: color-mix(in srgb, var(--tier-soft) 78%, #fff8e6);
  font-size: 10px;
  font-style: normal;
  font-weight: 800;
}

.plan-top em {
  color: #17130d;
  background: linear-gradient(135deg, #ffe49e, #d39825);
}

.plan-card p {
  position: relative;
  display: grid;
  grid-template-columns: 26px 1fr 12px;
  align-items: center;
  margin: 10px 0;
  font-size: 12px;
  font-weight: 700;
}

.plan-top p {
  color: rgba(255, 248, 232, 0.94);
}

.mini-orb {
  width: 21px;
  height: 21px;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.88), transparent 38%),
    url("./assets/logo-color.png") center / contain no-repeat;
  filter: saturate(0.45) brightness(1.12);
  opacity: 0.58;
}

.plan-entry .mini-orb,
.plan-entry .plan-orb {
  filter: saturate(0.12) brightness(1.02);
}

.plan-start .mini-orb,
.plan-start .plan-orb {
  filter: hue-rotate(82deg) saturate(0.55) brightness(1.08);
}

.plan-business .mini-orb,
.plan-business .plan-orb {
  filter: saturate(0.95) brightness(1.04);
}

.plan-top .mini-orb,
.plan-top .plan-orb {
  filter: saturate(0.28) brightness(1.45) drop-shadow(0 0 18px rgba(226, 168, 62, 0.18));
  opacity: 0.82;
}

.plan-top .mini-orb {
  background:
    radial-gradient(circle at center, rgba(255, 240, 196, 0.64), transparent 37%),
    url("./assets/logo-color.png") center / contain no-repeat;
  opacity: 0.72;
}

.plan-card p b {
  color: color-mix(in srgb, var(--tier) 34%, rgba(80, 60, 40, 0.45));
  font-size: 20px;
  font-weight: 400;
}

.plan-top p b {
  color: rgba(255, 223, 148, 0.72);
}

.plan-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-bottom: 12px;
}

.plan-dots span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(177, 151, 111, 0.32);
}

.plan-dots .active {
  background: #d29a2e;
}

.inside-list {
  gap: 8px;
  margin-top: 18px;
}

.inside-item {
  min-height: 62px;
  padding: 8px 10px;
}

.inside-item strong {
  font-size: 11px;
}

.inside-item p {
  font-size: 9px;
}

.join-screen .title span {
  color: #d89b2f;
}

.join-testimonials {
  gap: 12px;
  margin-top: 24px;
}

.join-card {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 12px;
  align-items: center;
  min-height: 84px;
  padding: 10px 12px;
}

.join-card p {
  margin: 0;
  color: #443327;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.3;
}

.cancel-card {
  margin-top: 20px;
  padding: 12px 16px;
  text-align: center;
}

.cancel-card strong,
.cancel-card span {
  display: block;
  font-size: 12px;
}

.cancel-card span {
  margin-top: 3px;
  color: rgba(72, 57, 43, 0.58);
}

.check {
  position: relative;
  z-index: 2;
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, #e2b351, #bf7f16);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4);
  font-size: 15px;
  font-weight: 900;
}

.keyhole-screen {
  padding: 22px 31px 18px;
  color: #fff7e8;
  background: #050403;
}

.keyhole-screen .status {
  z-index: 12;
  color: #fff;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.8);
}

.keyhole-screen .battery {
  border-color: rgba(255, 255, 255, 0.9);
}

.keyhole-screen .battery::before,
.keyhole-screen .signal i {
  background: #fff;
}

.keyhole-screen .wifi {
  border-color: #fff;
}

.keyhole-zoom {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  animation: keyhole-approach 7.4s ease-in-out 1 both;
  transform-origin: 50% 42%;
}

.keyhole-bg {
  position: absolute;
  inset: -38px -26px -34px;
  background: url("./assets/keyhole/keyhole-bg-v1.webp") 50% 42% / cover no-repeat;
  animation: keyhole-bg-drift 7.4s ease-in-out 1 both;
}

.keyhole-bg::after {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 40%, rgba(255, 194, 70, 0.22), transparent 31%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.18), transparent 38%, rgba(0, 0, 0, 0.7));
  content: "";
}

.keyhole-light {
  position: absolute;
  top: 167px;
  left: 50%;
  width: 228px;
  height: 338px;
  border-radius: 120px 120px 34px 34px;
  background:
    radial-gradient(circle at 50% 17%, rgba(255, 255, 245, 0.92), rgba(255, 218, 108, 0.56) 48%, transparent 73%),
    linear-gradient(180deg, rgba(255, 235, 167, 0.92), rgba(244, 180, 44, 0.52));
  filter: blur(12px);
  opacity: 0.72;
  transform: translateX(-50%);
}

.keyhole-brand {
  z-index: 9;
  display: grid;
  justify-items: center;
  gap: 6px;
  margin-top: 45px;
  color: #fff9ee;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 27px;
  line-height: 0.82;
  text-align: center;
  text-shadow: 0 3px 16px rgba(0, 0, 0, 0.85);
  animation: keyhole-ui-fade 7.4s ease-in-out 1 both;
}

.keyhole-brand img {
  width: 54px;
  height: 54px;
  filter: drop-shadow(0 3px 10px rgba(0, 0, 0, 0.75));
}

.keyhole-brand span {
  color: #e1b65d;
  font-size: 14px;
  letter-spacing: 0.45em;
}

.keyhole-board {
  position: absolute;
  top: 214px;
  left: 50%;
  width: 218px;
  padding: 13px 10px 11px;
  border-radius: 24px 24px 12px 12px;
  color: #463019;
  background: rgba(255, 247, 221, 0.9);
  box-shadow:
    0 0 34px rgba(255, 206, 89, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
  transform: translateX(-50%);
}

.keyhole-board-title {
  color: #bd8323;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.keyhole-leaders {
  display: grid;
  gap: 7px;
  margin-top: 12px;
}

.keyhole-leader,
.keyhole-you {
  display: grid;
  align-items: center;
  min-height: 55px;
  border: 1px solid rgba(215, 172, 85, 0.32);
  border-radius: 12px;
  background: rgba(255, 255, 250, 0.75);
}

.keyhole-leader {
  grid-template-columns: 20px 38px 1fr;
  column-gap: 7px;
  padding: 7px 8px;
}

.leader-rank {
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: #d59b2c;
  font-size: 10px;
  font-weight: 900;
}

.keyhole-leader.silver .leader-rank {
  background: #b7bec5;
}

.keyhole-leader.bronze .leader-rank {
  background: #c67d3c;
}

.keyhole-leader img {
  width: 38px;
  height: 38px;
  border: 2px solid #d89b2f;
  border-radius: 50%;
  object-fit: cover;
}

.keyhole-leader strong,
.keyhole-you strong {
  display: block;
  font-size: 11px;
  line-height: 1.05;
}

.keyhole-leader span {
  display: block;
  margin-top: 3px;
  color: rgba(70, 48, 25, 0.62);
  font-size: 7px;
}

.keyhole-leader b {
  grid-column: 3;
  color: #bd7a13;
  font-size: 18px;
  line-height: 1;
}

.keyhole-you {
  grid-template-columns: 24px 34px 1fr 30px;
  column-gap: 7px;
  min-height: 50px;
  padding: 7px 10px;
}

.keyhole-you span {
  color: #4d2d10;
  font-size: 13px;
  font-weight: 800;
}

.keyhole-you i {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f4cd68, #d79422);
}

.keyhole-you b {
  color: #bd7a13;
  font-size: 16px;
}

.keyhole-copy {
  z-index: 8;
  margin-top: auto;
  margin-bottom: 15px;
  text-align: center;
  text-shadow: 0 5px 20px rgba(0, 0, 0, 0.9);
  animation: keyhole-ui-fade 7.4s ease-in-out 1 both;
}

.keyhole-copy h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 40px;
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: 0;
}

.keyhole-copy p {
  margin: 11px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 24px;
  font-weight: 700;
}

.keyhole-copy span {
  color: #e3ad38;
}

.keyhole-actions {
  z-index: 8;
  display: grid;
  gap: 8px;
  animation: keyhole-ui-fade 7.4s ease-in-out 1 both;
}

.keyhole-cta {
  min-height: 61px;
  border-radius: 20px;
  color: #543209;
  background:
    linear-gradient(180deg, rgba(255, 237, 162, 0.58), rgba(255, 237, 162, 0.04) 18%),
    linear-gradient(180deg, #efc75e, #c98b16);
  box-shadow:
    inset 0 2px 0 rgba(255, 255, 255, 0.34),
    inset 0 -3px 0 rgba(127, 74, 5, 0.26),
    0 12px 25px rgba(0, 0, 0, 0.52);
  font-size: 22px;
}

.keyhole-secondary {
  border: 0;
  color: rgba(255, 247, 226, 0.68);
  background: transparent;
  font-size: 13px;
  font-weight: 800;
}

@keyframes keyhole-approach {
  0%,
  16%,
  100% {
    transform: scale(1) translateY(0);
  }

  48%,
  68% {
    transform: scale(1.78) translateY(-110px);
  }
}

@keyframes keyhole-bg-drift {
  0%,
  18%,
  100% {
    transform: translateY(0);
  }

  50%,
  68% {
    transform: translateY(-54px);
  }
}

@keyframes keyhole-ui-fade {
  0%,
  18%,
  100% {
    opacity: 1;
    transform: translateY(0);
  }

  42%,
  68% {
    opacity: 0;
    transform: translateY(18px);
  }
}

.keyhole-scene {
  position: absolute;
  inset: -28px -24px -24px;
  z-index: 1;
  overflow: hidden;
  background: #050403;
  animation: keyhole-scene-peek 7.8s ease-in-out infinite;
  transform-origin: 50% 44%;
}

.keyhole-rate-layer {
  position: absolute;
  top: 146px;
  left: 50%;
  z-index: 1;
  width: 248px;
  height: 410px;
  border-radius: 122px 122px 28px 28px;
  background: url("./assets/keyhole/rate.jpg") 50% 7% / cover no-repeat;
  filter: sepia(0.22) saturate(1.18) brightness(1.08);
  opacity: 0.92;
  transform: translateX(-50%);
  animation: keyhole-rate-drift 7.8s ease-in-out infinite;
}

.keyhole-rate-tint {
  position: absolute;
  top: 142px;
  left: 50%;
  z-index: 2;
  width: 258px;
  height: 420px;
  border-radius: 130px 130px 30px 30px;
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 236, 151, 0.5), transparent 55%),
    linear-gradient(180deg, rgba(240, 177, 42, 0.26), rgba(255, 232, 136, 0.3));
  mix-blend-mode: multiply;
  opacity: 0.72;
  transform: translateX(-50%);
  pointer-events: none;
}

.keyhole-frame {
  position: absolute;
  inset: 0;
  z-index: 3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 45%;
  filter: saturate(1.08) contrast(1.02);
  pointer-events: none;
  animation: keyhole-frame-in 0.5s ease-out both;
}

@keyframes keyhole-frame-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

.keyhole-brand,
.keyhole-copy,
.keyhole-actions {
  z-index: 10;
  animation: none;
}

.keyhole-brand {
  margin-top: 48px;
  transform: scale(0.88);
  transform-origin: top center;
}

.keyhole-copy {
  margin-bottom: 16px;
}

.keyhole-actions {
  position: relative;
  z-index: 14;
}

@keyframes keyhole-scene-peek {
  0%,
  100% {
    transform: scale(1) translateY(0);
  }

  45%,
  62% {
    transform: scale(1.08) translateY(-18px);
  }
}

@keyframes keyhole-rate-drift {
  0%,
  100% {
    background-position: 50% 7%;
    transform: translateX(-50%);
  }

  48%,
  64% {
    background-position: 50% 100%;
    transform: translateX(-50%);
  }
}

@media (min-width: 520px) {
  body {
    display: grid;
    padding: 28px;
    place-items: center;
  }

  .phone-shell {
    width: min(430px, calc((100dvh - 56px) * 390 / 844));
    height: min(calc(100dvh - 56px), 844px);
    margin: auto;
    border-radius: 34px;
    overflow: hidden;
  }

  .screen {
    height: 100%;
  }
}

/* ═══ Screen 0: Intro (landing transition) ═══ */
.intro-screen {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.intro-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 218, 145, 0.35), transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(197, 138, 29, 0.15), transparent 40%),
    linear-gradient(180deg, #fffaf1 0%, #f7f1e6 50%, #ede3d0 100%);
}
.intro-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 32px;
}
.intro-logo {
  width: 80px;
  height: 80px;
  margin-bottom: 16px;
  filter: drop-shadow(0 4px 12px rgba(166, 124, 46, 0.25));
}
.intro-brand {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.2;
  color: #2a1b10;
  margin-bottom: 16px;
}
.intro-sub {
  font-size: 14px;
  color: #7b6f63;
  line-height: 1.6;
  margin-bottom: 40px;
}
.intro-cta {
  min-width: 220px;
  font-size: 18px;
  padding: 18px 40px;
  box-shadow: 0 12px 32px -4px rgba(166, 124, 46, 0.5);
}

/* ═══ Signup form proportional position ═══ */
.signup-spacer-top {
  flex: 2 1 0;
  min-height: 24px;
}
.signup-spacer-bottom {
  flex: 1 1 0;
  min-height: 12px;
}

/* ═══ Demo: generated avatar on born/ready screen ═══ */
.ready-generated-avatar {
  position: relative;
  z-index: 2;
  width: auto;
  height: 100%;
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  object-position: 50% 100%;
  filter: drop-shadow(0 18px 36px rgba(0, 0, 0, 0.35));
}
.ready-avatar-loading {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  color: #fff3d6;
  font-size: 14px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}
.ready-spinner {
  width: 54px;
  height: 54px;
  border: 4px solid rgba(255, 243, 214, 0.25);
  border-top-color: #f0c76a;
  border-radius: 50%;
  animation: ready-spin 0.9s linear infinite;
}
@keyframes ready-spin {
  to { transform: rotate(360deg); }
}

/* ═══ Photo picker: clean state when photo loaded ═══ */
.photo-picker.has-photo {
  border-color: rgba(198, 133, 30, 0.7);
  border-style: solid;
  background: transparent;
  box-shadow: 0 12px 30px rgba(80, 45, 10, 0.18);
  overflow: hidden;
}
.photo-picker.has-photo::before,
.photo-picker.has-photo::after {
  display: none;
}
.photo-picker.has-photo #photo-preview {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

/* ═══ Video placeholder screen (temp, no real video yet) ═══ */
.onb-video-screen {
  position: relative;
  display: block;
  padding: 0;
  overflow: hidden;
  background: #000;
}

.onb-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* Bottom gradient scrim — video fades into black so text/button are readable */
.onb-video-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    transparent 0%,
    transparent 45%,
    rgba(0, 0, 0, 0.45) 68%,
    rgba(0, 0, 0, 0.92) 100%
  );
}

.onb-video-bottom {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 0 26px max(env(safe-area-inset-bottom), 22px);
  padding-bottom: max(env(safe-area-inset-bottom), 26px);
}

.onb-video-title {
  margin: 0;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  font-weight: 500;
  line-height: 1.05;
  text-align: center;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.7);
}

.onb-video-cta {
  width: 100%;
}

/* ═══ Video sound toggle button ═══ */
.onb-video-sound {
  position: absolute;
  top: max(env(safe-area-inset-top), 16px);
  right: 16px;
  z-index: 3;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  color: #fff;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(8px);
  cursor: pointer;
}
.onb-video-sound span {
  display: inline-flex;
}

/* ═══ Video subtitles (inside bottom block, above title — never overlaps) ═══ */
.onb-video-subtitle {
  width: 100%;
  text-align: center;
  color: #fff;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.35;
  text-shadow:
    0 2px 12px rgba(0, 0, 0, 0.9),
    0 0 4px rgba(0, 0, 0, 0.8);
  min-height: 24px;
  pointer-events: none;
}
.onb-video-subtitle:empty {
  min-height: 0;
}

/* ═══════════ PAY SCREEN — carousel + details ═══════════ */
.layered-pay-screen {
  justify-content: flex-start;
  padding-bottom: 28px;
}
.layered-pay-screen .pay-copy {
  z-index: 2;
  margin-top: 8px;
}

/* Carousel */
.pay-carousel {
  z-index: 2;
  width: 100%;
  margin-top: 18px;
  overflow: hidden;
  flex: none;
}
.pay-track {
  display: flex;
  align-items: stretch;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.pay-plan {
  flex: 0 0 88%;
  box-sizing: border-box;
  margin-right: 12px;
  padding: 20px 18px;
  border: 1px solid rgba(225, 181, 91, 0.5);
  border-radius: 20px;
  background: linear-gradient(165deg, rgba(255, 252, 245, 0.97), rgba(255, 245, 224, 0.92));
  box-shadow: 0 16px 36px rgba(98, 65, 16, 0.14);
  backdrop-filter: blur(8px);
}
.pay-plan--featured {
  border-color: rgba(206, 150, 40, 0.85);
  background: linear-gradient(165deg, rgba(255, 250, 236, 0.98), rgba(255, 238, 205, 0.96));
}
.pay-plan-badge {
  display: inline-block;
  margin-bottom: 8px;
  padding: 3px 12px;
  border-radius: 999px;
  background: linear-gradient(180deg, #f0c75e, #cd8f1d);
  color: #3a2408;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.pay-plan-name {
  color: #9b7629;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.2em;
}
.pay-plan-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin: 4px 0 2px;
}
.pay-plan-price strong {
  color: #744607;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 44px;
  font-weight: 600;
  line-height: 1;
}
.pay-plan-price small {
  color: rgba(83, 50, 12, 0.7);
  font-size: 15px;
}
.pay-plan-tag {
  margin: 0 0 14px;
  color: rgba(83, 50, 12, 0.78);
  font-size: 13px;
}
.pay-plan-list {
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
  display: grid;
  gap: 9px;
}
.pay-plan-list li {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  color: #4b2d0d;
  font-size: 14px;
  line-height: 1.3;
}
.pay-plan-list b {
  color: #c58a1d;
  font-weight: 700;
}
.pay-plan-cta {
  width: 100%;
  min-height: 52px;
  border: 1px solid rgba(255, 230, 143, 0.6);
  border-radius: 14px;
  color: #3a2408;
  font-size: 17px;
  font-weight: 600;
  background: linear-gradient(180deg, #f0c75e, #cd8f1d);
  box-shadow: 0 10px 26px rgba(83, 42, 0, 0.26), inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

/* Dots */
.pay-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
}
.pay-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(155, 118, 41, 0.3);
  transition: all 0.3s ease;
  cursor: pointer;
}
.pay-dot.is-active {
  width: 22px;
  border-radius: 4px;
  background: #c58a1d;
}

/* Read more link */
.pay-readmore {
  z-index: 2;
  margin: 20px auto 0;
  padding: 8px;
  border: 0;
  background: none;
  color: #9b7629;
  font-size: 14px;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}

/* Details section */
.pay-details {
  z-index: 2;
  width: 100%;
  margin-top: 20px;
  padding-top: 24px;
  border-top: 1px solid rgba(197, 138, 29, 0.25);
}
.pay-det-intro {
  text-align: center;
  margin-bottom: 28px;
}
.pay-det-kicker {
  display: block;
  color: #c58a1d;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.pay-det-intro h2 {
  margin: 0;
  color: #5a3a10;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 26px;
  font-weight: 600;
  line-height: 1.1;
}
.pay-det-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 22px;
}
.pay-det-num {
  flex: 0 0 auto;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  font-weight: 700;
  color: rgba(197, 138, 29, 0.45);
  line-height: 1;
  min-width: 42px;
}
.pay-det-item h3 {
  margin: 0 0 4px;
  color: #4b2d0d;
  font-size: 17px;
  font-weight: 700;
}
.pay-det-item p {
  margin: 0;
  color: rgba(74, 45, 13, 0.82);
  font-size: 14px;
  line-height: 1.45;
}
.pay-det-quote {
  margin: 26px 0;
  padding: 18px 22px;
  border-left: 3px solid #c58a1d;
  background: linear-gradient(120deg, rgba(255, 244, 220, 0.7), rgba(255, 250, 240, 0.4));
  border-radius: 0 14px 14px 0;
  color: #5a3a10;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  font-style: italic;
  line-height: 1.4;
}
.pay-det-quote cite {
  display: block;
  margin-top: 10px;
  color: #9b7629;
  font-size: 13px;
  font-style: normal;
  font-weight: 600;
}
.pay-det-stat {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin: 26px 0;
  padding: 20px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(255, 240, 210, 0.8), rgba(255, 248, 235, 0.5));
}
.pay-det-stat strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 52px;
  font-weight: 700;
  color: #c58a1d;
  line-height: 1;
}
.pay-det-stat span {
  color: rgba(74, 45, 13, 0.8);
  font-size: 14px;
  line-height: 1.3;
}
.pay-det-final {
  margin-top: 32px;
  text-align: center;
}
.pay-det-final p {
  margin: 0 0 14px;
  color: #5a3a10;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
}
.pay-det-final .gold-button {
  width: 100%;
  margin-bottom: 10px;
}
.pay-btn-ghost {
  background: transparent !important;
  border: 1px solid rgba(197, 138, 29, 0.5) !important;
  color: #9b7629 !important;
  box-shadow: none !important;
  font-size: 15px !important;
}

/* ═══ Account bridge screen (before name/email entry) ═══ */
.account-bridge-screen {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 28px 30px 22px;
  background:
    radial-gradient(circle at 50% 35%, rgba(255, 240, 200, 0.6), transparent 60%),
    linear-gradient(180deg, #fbf4e6 0%, #f3e7d0 100%);
}
.account-bridge-inner {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 28px;
}
.account-bridge-logo img {
  width: 72px;
  height: 72px;
  object-fit: contain;
}
.account-bridge-title {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 8vw, 38px);
  font-weight: 500;
  line-height: 1.12;
  color: #3a2408;
  max-width: 340px;
}
.account-bridge-cta {
  width: 100%;
}

/* ═══ Money-back guarantee seal ═══ */
.pay-seal {
  display: flex;
  justify-content: center;
  z-index: 2;
}
.pay-seal img {
  height: auto;
  filter: drop-shadow(0 6px 16px rgba(120, 80, 10, 0.25));
}
.pay-seal--top {
  margin: 14px 0 4px;
}
.pay-seal--top img {
  width: 96px;
}
.pay-seal--bottom {
  margin: 0 0 18px;
}
.pay-seal--bottom img {
  width: 120px;
}

/* ═══ Quiz cards: selected state + checkmark + Something else distinct ═══ */
.kie-choice-card.selected {
  border-color: rgba(206, 150, 40, 0.9);
  background:
    linear-gradient(145deg, rgba(255, 250, 235, 0.96), rgba(255, 240, 210, 0.9)),
    rgba(255, 255, 255, 0.85);
  box-shadow:
    0 0 0 2px rgba(206, 150, 40, 0.35),
    0 14px 28px rgba(123, 84, 24, 0.12);
}
.kie-card-slot.check,
.kie-choice-card .check {
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  background: linear-gradient(135deg, #e0a93a, #c07f12);
  border-radius: 50%;
  width: 20px;
  height: 20px;
  justify-self: center;
}

/* "Something else" — visually distinct (own type: dashed, plus icon) */
.kie-choice-other {
  border-style: dashed !important;
  border-color: rgba(180, 130, 40, 0.55) !important;
  background:
    linear-gradient(145deg, rgba(255, 252, 244, 0.7), rgba(250, 242, 226, 0.5)) !important;
  box-shadow: none !important;
  margin-top: 4px;
}
.kie-choice-other .kie-card-slot {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1px dashed rgba(180, 130, 40, 0.7);
  color: #b07d14;
  font-size: 16px;
  font-weight: 500;
  justify-self: center;
}
.kie-choice-other strong {
  color: #8a6414 !important;
}

/* ═══ Quiz "Something else" input row ═══ */
.kie-other-input[hidden] {
  display: none !important;
}
.kie-other-input {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-top: 2px;
  animation: kie-other-in 0.25s ease;
}
@keyframes kie-other-in {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}
.kie-other-input input {
  flex: 1;
  min-width: 0;
  height: 48px;
  padding: 0 14px;
  border: 1px solid rgba(206, 150, 40, 0.6);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.92);
  color: #3b2a1e;
  font-size: 15px;
  outline: none;
}
.kie-other-input input:focus {
  border-color: rgba(206, 150, 40, 0.95);
  box-shadow: 0 0 0 2px rgba(206, 150, 40, 0.22);
}
.kie-other-submit {
  flex: 0 0 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: none;
  border-radius: 12px;
  color: #fff;
  background: linear-gradient(135deg, #e0a93a, #c07f12);
  cursor: pointer;
  transition: opacity 0.2s;
}
.kie-other-submit:disabled {
  opacity: 0.4;
  cursor: default;
}

/* Cabinet avatar loading spinner */
.cabinet-avatar-loading {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
}

/* ═══ Registration form: terms, invite, error ═══ */
.reg-terms {
  flex-direction: row !important;
  align-items: center;
  gap: 9px;
  font-size: 13px !important;
  color: #5a4326;
  cursor: pointer;
}
.reg-terms input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  accent-color: #c8901d;
  cursor: pointer;
  margin: 0;
}
.reg-terms span { line-height: 1.3; }
.reg-terms a {
  color: #c8901d;
  text-decoration: underline;
}
.reg-invite input { text-transform: lowercase; }
.reg-error {
  margin: 0;
  color: #c0392b;
  font-size: 13px;
  font-weight: 600;
  text-align: center;
}
.reg-error[hidden] { display: none; }
#reg-submit:disabled { opacity: 0.6; cursor: default; }

/* ═══ Payment confirming screen (after Lava return, polling status) ═══ */
.pay-checking-screen {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #fbf4e6 0%, #f3e7d0 100%);
}
.pay-checking-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}
.pay-checking-inner p {
  margin: 0;
  font-size: 17px;
  color: #5a4326;
  font-weight: 600;
}

/* ═══ Auth: login/register/forgot toggle links + messages ═══ */
.auth-switch {
  text-align: center;
  font-size: 14px;
  color: #5a4326;
  margin: 4px 0 0;
}
.auth-switch a {
  color: #c8901d;
  font-weight: 600;
  text-decoration: none;
}
.auth-switch a:hover { text-decoration: underline; }
.auth-forgot {
  text-align: right;
  margin: -4px 0 0;
  font-size: 13px;
}
.auth-forgot a {
  color: #c8901d;
  text-decoration: none;
}
.auth-forgot a:hover { text-decoration: underline; }
.auth-legal {
  text-align: center;
  font-size: 11.5px;
  line-height: 1.4;
  color: #8a7657;
  margin: 8px 0 0;
}
.auth-legal a { color: #c8901d; text-decoration: underline; }
.auth-ok {
  margin: 0;
  color: #2e7d32;
  font-size: 13px;
  font-weight: 600;
  text-align: center;
}
.auth-ok[hidden] { display: none; }
.reg-error a { color: #c8901d; font-weight: 600; }
