:root {
  --cream: #fff6ea;
  --cream-deep: #f7e9d8;
  --white: #fffdf8;
  --ink: #080f28;
  --muted: #3b4054;
  --pink: #f2528e;
  --pink-dark: #d93677;
  --pink-soft: #ffdce8;
  --yellow: #ffdf62;
  --yellow-soft: #fff0ab;
  --mint: #dff2e8;
  --lavender: #ece1ff;
  --line: rgba(8, 15, 40, 0.14);
  --shadow: 0 14px 34px rgba(38, 24, 18, 0.11);
  --soft-shadow: 0 8px 20px rgba(38, 24, 18, 0.08);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --headline: Impact, Haettenschweiler, "Arial Black", sans-serif;
  --script: "Segoe Script", "Brush Script MT", cursive;
  --sans: "Trebuchet MS", "Avenir Next", "Gill Sans", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--ink);
  font-family: var(--sans);
  background:
    radial-gradient(circle at 4% 8%, rgba(242, 82, 142, 0.12), transparent 17rem),
    radial-gradient(circle at 90% 11%, rgba(255, 223, 98, 0.28), transparent 24rem),
    radial-gradient(circle at 88% 84%, rgba(242, 82, 142, 0.11), transparent 18rem),
    var(--cream);
}

body.modal-open {
  overflow: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background-image:
    radial-gradient(circle, rgba(8, 15, 40, 0.07) 1px, transparent 1.5px),
    radial-gradient(circle, rgba(242, 82, 142, 0.06) 1px, transparent 1.5px);
  background-position: 0 0, 12px 18px;
  background-size: 48px 48px, 54px 54px;
  opacity: 0.6;
}

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

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

button {
  font: inherit;
}

[hidden] {
  display: none !important;
}

mark {
  padding: 0 2px;
  color: inherit;
  background: linear-gradient(to top, rgba(242, 82, 142, 0.35) 38%, transparent 38%);
}

.page-shell {
  width: min(100% - 48px, 1210px);
  margin: 0 auto;
  padding: 28px 0 8px;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}

.brand,
.footer-brand {
  display: inline-flex;
  width: max-content;
  color: var(--ink);
  font-weight: 950;
  line-height: 0.92;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.brand {
  position: relative;
  align-items: center;
}

.brand-logo {
  width: 126px;
  height: auto;
  object-fit: contain;
}

.site-footer nav a {
  transition: color 180ms ease, transform 180ms ease;
}

.site-footer nav a:hover {
  color: var(--pink);
  transform: translateY(-1px);
}

.hero-section {
  display: grid;
  grid-template-columns: minmax(360px, 0.83fr) minmax(560px, 1.17fr);
  align-items: center;
  min-height: 540px;
  margin-top: 4px;
  overflow: visible;
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding: 34px 0 20px;
}

.script-kicker,
.script-heading {
  margin: 0;
  color: var(--pink);
  font-family: var(--script);
  font-weight: 700;
  line-height: 1;
}

.hero-script {
  position: relative;
  width: max-content;
  margin-left: 50px;
  margin-bottom: -8px;
  font-size: clamp(42px, 4vw, 58px);
  transform: rotate(-4deg);
}

.hero-script::before,
.hero-script::after,
.script-heading::before,
.script-heading::after {
  position: absolute;
  content: "";
  background: var(--pink);
  border-radius: 999px;
}

.hero-script::before {
  top: -56px;
  left: 50%;
  width: 230px;
  height: 56px;
  background: url("assets/lts22.png") center / contain no-repeat;
  border-radius: 0;
  transform: translateX(-50%);
}

.hero-script::after {
  display: none;
}

.hero-copy h1 {
  margin: 0 0 14px;
  color: var(--ink);
  font-family: var(--headline);
  font-size: clamp(86px, 9.3vw, 139px);
  font-weight: 900;
  line-height: 0.82;
  letter-spacing: 0.018em;
  text-transform: uppercase;
  text-shadow: 2px 2px 0 rgba(8, 15, 40, 0.03);
}

.hero-copy h1 span {
  display: block;
}

.hero-copy h1 span + span {
  margin-top: 10px;
}

.highlight-strip {
  display: inline-block;
  margin: 0 0 17px;
  padding: 8px 22px 9px;
  color: var(--ink);
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 950;
  line-height: 1;
  background: var(--yellow);
  clip-path: polygon(
    0 8%,
    4% 0,
    7% 9%,
    12% 0,
    16% 8%,
    22% 0,
    27% 9%,
    34% 0,
    39% 8%,
    45% 0,
    49% 9%,
    55% 0,
    61% 8%,
    66% 0,
    71% 9%,
    78% 0,
    84% 8%,
    89% 0,
    94% 9%,
    100% 1%,
    98% 100%,
    92% 91%,
    86% 100%,
    80% 91%,
    74% 100%,
    68% 91%,
    62% 100%,
    56% 91%,
    50% 100%,
    44% 91%,
    38% 100%,
    32% 91%,
    26% 100%,
    20% 91%,
    14% 100%,
    8% 91%,
    2% 100%
  );
}

.hero-subtitle {
  max-width: 384px;
  margin: 0 0 22px;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.35;
}

.primary-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: fit-content;
  min-width: 304px;
  min-height: 68px;
  padding: 0 36px 0 40px;
  color: #fff;
  font-size: 25px;
  font-weight: 950;
  letter-spacing: 0.035em;
  text-transform: uppercase;
  background: var(--pink);
  border-radius: 20px;
  box-shadow: 0 14px 22px rgba(242, 82, 142, 0.18);
}

.cta-mark {
  display: inline-block;
  width: 24px;
  height: 24px;
  background: url("assets/lts11.png") center / contain no-repeat;
  flex: 0 0 auto;
}

.powered-line {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 20px 0 0;
  font-size: 17px;
}

.tiny-star {
  position: relative;
  width: 16px;
  height: 16px;
}

.tiny-star::before,
.tiny-star::after {
  position: absolute;
  inset: 0;
  content: "";
  background: var(--ink);
  clip-path: polygon(50% 0, 58% 38%, 100% 50%, 58% 62%, 50% 100%, 42% 62%, 0 50%, 42% 38%);
}

.tiny-star::after {
  inset: 4px;
  background: var(--cream);
}

.hero-art {
  position: relative;
  min-height: 548px;
}

.glow-oval {
  position: absolute;
  top: 46px;
  left: 52px;
  width: 560px;
  height: 382px;
  background: radial-gradient(circle at 54% 41%, #ffe989 0 48%, rgba(255, 223, 98, 0.35) 70%, transparent 71%);
  border-radius: 50%;
  transform: rotate(-10deg);
}

.phone-svg {
  position: absolute;
  bottom: 22px;
  left: 8px;
  z-index: 2;
  width: min(100%, 650px);
  height: auto;
  overflow: visible;
}

.phone-cord,
.phone-base-line,
.receiver-highlight,
.eye-line,
.phone-scratch,
.phone-shine-line,
.hero-rays path {
  fill: none;
  stroke: var(--ink);
  stroke-linecap: round;
  stroke-linejoin: round;
}

.phone-cord {
  stroke-width: 7;
}

.phone-shadow {
  fill: rgba(78, 28, 42, 0.2);
}

.phone-body-dark,
.receiver-shadow {
  fill: #d62f72;
  stroke: var(--ink);
  stroke-width: 4;
}

.phone-body,
.receiver {
  fill: #ff5e97;
  stroke: var(--ink);
  stroke-width: 4;
}

.phone-face {
  fill: #f84c8c;
  stroke: var(--ink);
  stroke-width: 4;
}

.phone-base-line,
.phone-scratch {
  stroke-width: 3;
  opacity: 0.32;
}

.receiver-highlight {
  stroke: rgba(255, 255, 255, 0.62);
  stroke-width: 7;
}

.receiver-dark {
  fill: var(--ink);
  opacity: 0.98;
}

.dial-outer {
  fill: #fff0cf;
  stroke: var(--ink);
  stroke-width: 5;
}

.dial-mid {
  fill: #ffd66a;
  stroke: var(--ink);
  stroke-width: 3;
}

.dial-center {
  fill: #fff9e8;
  stroke: var(--ink);
  stroke-width: 3;
}

.eye-line {
  stroke-width: 4;
}

.eye-dot {
  fill: var(--ink);
}

.dial-holes circle {
  fill: #f3b73a;
  stroke: var(--ink);
  stroke-width: 2;
}

.dial-numbers {
  fill: var(--ink);
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 900;
  text-anchor: middle;
}

.phone-shine {
  fill: rgba(255, 255, 255, 0.45);
}

.phone-shine-line {
  stroke: rgba(255, 255, 255, 0.5);
  stroke-width: 5;
}

.hero-rays path {
  stroke-width: 5;
}

.burst {
  position: absolute;
  z-index: 4;
  width: 28px;
  height: 34px;
  background: var(--pink);
  clip-path: polygon(50% 0, 61% 35%, 100% 44%, 64% 56%, 51% 100%, 38% 58%, 0 45%, 37% 34%);
}

.burst-one {
  top: 52px;
  left: 28px;
  width: 128px;
  height: 110px;
  background: url("assets/lts23.png") center / contain no-repeat;
  clip-path: none;
  transform: rotate(-20deg);
}

.burst-two {
  top: 122px;
  right: 8px;
}

.burst-three {
  right: 42px;
  bottom: 168px;
  width: 17px;
  height: 22px;
}

.tarot-card {
  color: var(--ink);
  background: #fff0d7;
  border: 2px solid rgba(8, 15, 40, 0.55);
  border-radius: 12px;
  box-shadow: 0 10px 18px rgba(29, 13, 12, 0.18);
}

.tarot-card-large {
  position: absolute;
  top: 42px;
  right: 24px;
  z-index: 5;
  width: 229px;
  height: 378px;
  padding: 12px 12px 9px;
  transform: rotate(8deg);
}

.tarot-card-small {
  width: 154px;
  height: 232px;
  padding: 7px 7px 5px;
  justify-self: center;
}

.result-card-stack {
  width: 268px;
  margin-left: -22px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.tarot-card-image-wrap {
  width: 100%;
  height: auto;
  padding: 0;
  margin-left: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.tarot-card-image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.92),
    0 14px 24px rgba(8, 15, 40, 0.16);
}

.tarot-card .roman,
.tarot-card .card-title {
  margin: 0;
  font-family: Georgia, serif;
  font-weight: 900;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

.tarot-card-large .roman {
  font-size: 22px;
}

.tarot-card-small .roman {
  font-size: 13px;
}

.tarot-card .card-title {
  padding-top: 8px;
  font-size: 19px;
}

.tarot-card-small .card-title {
  padding-top: 5px;
  font-size: 10px;
}

.moon-scene {
  position: relative;
  height: calc(100% - 52px);
  overflow: hidden;
  background:
    linear-gradient(160deg, transparent 54%, rgba(255, 223, 98, 0.95) 55% 57%, transparent 58%),
    radial-gradient(circle at 30% 78%, rgba(60, 187, 187, 0.8) 0 5%, transparent 6%),
    radial-gradient(circle at 72% 84%, rgba(60, 187, 187, 0.75) 0 6%, transparent 7%),
    #07152d;
  border: 2px solid var(--ink);
  border-radius: 4px;
}

.moon-rays {
  position: absolute;
  top: 13px;
  left: 50%;
  width: 142px;
  height: 142px;
  background: repeating-conic-gradient(from 0deg, var(--yellow) 0 4deg, transparent 4deg 12deg);
  border-radius: 50%;
  opacity: 0.92;
  transform: translateX(-50%);
}

.moon-face {
  position: absolute;
  top: 30px;
  left: 50%;
  z-index: 2;
  width: 92px;
  height: 92px;
  background:
    radial-gradient(circle at 34% 34%, #fff5a6 0 10%, transparent 11%),
    linear-gradient(90deg, #f6eaa0 0 50%, #f3d65f 50% 100%);
  border: 2px solid var(--ink);
  border-radius: 50%;
  transform: translateX(-50%);
}

.moon-face::before,
.moon-face::after {
  position: absolute;
  content: "";
}

.moon-face::before {
  top: 18px;
  left: 44px;
  width: 2px;
  height: 50px;
  background: var(--ink);
  opacity: 0.45;
}

.moon-face::after {
  top: 31px;
  left: 18px;
  width: 54px;
  height: 26px;
  border-top: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
  border-radius: 50%;
  opacity: 0.85;
}

.tower {
  position: absolute;
  bottom: 46px;
  z-index: 2;
  width: 24px;
  height: 72px;
  background: #f2deb9;
  border: 2px solid var(--ink);
}

.tower::before {
  position: absolute;
  top: -11px;
  left: -5px;
  width: 30px;
  height: 12px;
  content: "";
  background:
    linear-gradient(90deg, var(--ink) 0 4px, transparent 4px 9px, var(--ink) 9px 13px, transparent 13px 18px, var(--ink) 18px 22px, transparent 22px);
}

.tower-left {
  left: 20px;
}

.tower-right {
  right: 20px;
}

.dog {
  position: absolute;
  bottom: 30px;
  z-index: 3;
  width: 34px;
  height: 36px;
  background: #d7a63e;
  border: 2px solid var(--ink);
  border-radius: 55% 50% 40% 35%;
}

.dog::before {
  position: absolute;
  top: -9px;
  left: 19px;
  width: 16px;
  height: 18px;
  content: "";
  background: #d7a63e;
  border: 2px solid var(--ink);
  border-radius: 50%;
}

.dog-left {
  left: 60px;
  transform: rotate(6deg);
}

.dog-right {
  right: 58px;
  transform: scaleX(-1) rotate(7deg);
}

.water-path {
  position: absolute;
  bottom: -18px;
  left: 50%;
  z-index: 2;
  width: 54px;
  height: 110px;
  background: #e5b537;
  border: 2px solid var(--ink);
  border-radius: 60% 40% 0 0;
  transform: translateX(-50%) rotate(10deg);
}

.tarot-card-small .moon-scene {
  height: calc(100% - 31px);
}

.tarot-card-small .moon-rays {
  top: 8px;
  width: 91px;
  height: 91px;
}

.tarot-card-small .moon-face {
  top: 18px;
  width: 58px;
  height: 58px;
}

.tarot-card-small .moon-face::before {
  top: 10px;
  left: 27px;
  height: 34px;
}

.tarot-card-small .moon-face::after {
  top: 18px;
  left: 10px;
  width: 36px;
  height: 18px;
  border-width: 2px;
}

.tarot-card-small .tower {
  bottom: 33px;
  width: 16px;
  height: 48px;
  border-width: 1.5px;
}

.tarot-card-small .tower-left {
  left: 12px;
}

.tarot-card-small .tower-right {
  right: 12px;
}

.tarot-card-small .dog {
  bottom: 22px;
  width: 22px;
  height: 24px;
  border-width: 1.5px;
}

.tarot-card-small .dog::before {
  top: -7px;
  left: 12px;
  width: 10px;
  height: 12px;
  border-width: 1.5px;
}

.tarot-card-small .dog-left {
  left: 36px;
}

.tarot-card-small .dog-right {
  right: 34px;
}

.tarot-card-small .water-path {
  bottom: -12px;
  width: 34px;
  height: 70px;
  border-width: 1.5px;
}

.judgment-sticker {
  position: absolute;
  right: 0;
  bottom: 72px;
  z-index: 6;
  display: grid;
  place-items: center;
  width: 157px;
  height: 157px;
  margin: 0;
  padding: 20px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 950;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  background: var(--pink);
  clip-path: polygon(
    50% 0,
    58% 10%,
    68% 4%,
    74% 16%,
    88% 13%,
    89% 28%,
    100% 34%,
    93% 47%,
    100% 57%,
    88% 66%,
    91% 80%,
    76% 82%,
    70% 96%,
    58% 90%,
    48% 100%,
    39% 89%,
    26% 96%,
    21% 81%,
    7% 80%,
    12% 66%,
    0 58%,
    8% 48%,
    0 36%,
    13% 29%,
    13% 14%,
    27% 16%,
    34% 5%,
    43% 11%
  );
  transform: rotate(10deg);
}

.smile-badge {
  position: absolute;
  top: 227px;
  right: -9px;
  z-index: 3;
  width: 77px;
  height: 77px;
  background: var(--yellow);
  border: 4px solid var(--ink);
  border-radius: 50%;
}

.smile-badge::before,
.smile-badge::after {
  position: absolute;
  content: "";
}

.smile-badge::before {
  top: 23px;
  left: 19px;
  width: 7px;
  height: 7px;
  background: var(--ink);
  border-radius: 50%;
  box-shadow: 25px 0 0 var(--ink);
}

.smile-badge::after {
  bottom: 18px;
  left: 21px;
  width: 30px;
  height: 15px;
  border-bottom: 4px solid var(--ink);
  border-radius: 0 0 40px 40px;
}

.how-panel,
.result-panel,
.share-panel {
  background: rgba(255, 253, 248, 0.82);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--soft-shadow);
}

.how-panel {
  position: relative;
  margin-top: 18px;
  padding: 64px 58px 34px;
}

.script-heading {
  position: absolute;
  top: -4px;
  left: 50%;
  z-index: 2;
  display: inline-block;
  margin: 0;
  padding: 0;
  color: var(--ink);
  font-size: 46px;
  line-height: 1;
  white-space: nowrap;
  background: transparent;
  transform: translateX(-50%);
}

.script-heading::before,
.script-heading::after {
  top: 50%;
  width: 42px;
  height: 62px;
  background: url("assets/lts21.png") center / contain no-repeat;
  border-radius: 0;
}

.script-heading::before {
  left: -58px;
  box-shadow: none;
  transform: translateY(-50%);
}

.script-heading::after {
  right: -58px;
  box-shadow: none;
  transform: translateY(-50%) scaleX(-1);
}

.steps-grid {
  display: grid;
  grid-template-columns: 1fr 50px 1fr 50px 1fr 190px;
  align-items: center;
  gap: 22px;
}

.step-card {
  position: relative;
  min-height: 166px;
  padding: 4px 0 0;
}

.step-number {
  position: absolute;
  top: 16px;
  left: 0;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: #fff;
  font-weight: 950;
  background: var(--pink);
  border-radius: 50%;
}

.step-icon {
  display: block;
  width: 88px;
  height: 84px;
  margin: 0 auto 8px;
}

.bubble-heart,
.bubble-dots {
  position: relative;
  background: #fff;
  border: 3px solid var(--ink);
  border-radius: 50%;
}

.bubble-heart::before {
  position: absolute;
  top: 24px;
  left: 31px;
  content: "\2665";
  color: var(--pink);
  font-size: 31px;
  line-height: 1;
}

.bubble-heart::after,
.bubble-dots::after {
  position: absolute;
  bottom: -9px;
  left: 18px;
  width: 24px;
  height: 24px;
  content: "";
  background: #fff;
  border-right: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
  transform: rotate(32deg);
}

.bubble-dots::before {
  position: absolute;
  top: 32px;
  left: 24px;
  width: 10px;
  height: 10px;
  content: "";
  background: var(--ink);
  border-radius: 50%;
  box-shadow: 20px 0 0 var(--ink), 40px 0 0 var(--ink);
}

.mini-card {
  position: relative;
  display: block;
  width: 48px;
  height: 76px;
  margin: 0 auto 16px;
  background:
    radial-gradient(circle at 50% 46%, transparent 0 7px, var(--ink) 7px 9px, transparent 9px),
    radial-gradient(circle at 50% 46%, var(--pink-soft) 0 20px, transparent 21px),
    var(--pink);
  border: 2px solid var(--ink);
  border-radius: 7px;
  box-shadow: 0 5px 0 rgba(8, 15, 40, 0.12);
  transform: rotate(13deg);
}

.mini-card::before {
  position: absolute;
  inset: 6px;
  content: "";
  border: 1px solid rgba(8, 15, 40, 0.34);
  border-radius: 4px;
}

.step-card h3 {
  margin: 0 0 10px;
  font-size: 17px;
  font-weight: 950;
  line-height: 1.08;
  text-transform: uppercase;
}

.step-card p {
  max-width: 160px;
  margin: 0;
  font-size: 16px;
  line-height: 1.22;
}

.step-arrow {
  display: block;
  width: 72px;
  height: 22px;
  align-self: center;
  margin-left: -80px;
  justify-self: center;
  background: url("assets/lts25.png") center / contain no-repeat;
}

.sticky-note {
  position: relative;
  min-height: 152px;
  margin-left: 4px;
  padding: 34px 18px 24px;
  background: #ffe486;
  box-shadow: 10px 12px 0 rgba(8, 15, 40, 0.06);
  transform: rotate(5deg);
}

.sticky-note p {
  margin: 0;
  font-family: var(--script);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
}

.tape {
  position: absolute;
  top: -12px;
  left: 50%;
  width: 72px;
  height: 26px;
  background: rgba(205, 167, 106, 0.45);
  transform: translateX(-50%) rotate(2deg);
}

.note-heart {
  position: absolute;
  right: -6px;
  bottom: -9px;
  width: 27px;
  height: 27px;
  transform: rotate(-26deg);
}

.note-heart::before {
  position: absolute;
  content: "\2661";
  color: var(--ink);
  font-size: 38px;
  font-weight: 900;
  line-height: 1;
}

.choice-panel {
  position: relative;
  margin-top: 10px;
  padding: 24px 64px 36px;
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 12%, rgba(255, 255, 255, 0.7), transparent 17rem),
    radial-gradient(circle at 88% 74%, rgba(255, 255, 255, 0.65), transparent 18rem),
    var(--pink-soft);
  border: 1px solid rgba(242, 82, 142, 0.25);
  border-radius: var(--radius-xl);
  box-shadow: var(--soft-shadow);
}

.hotline-widget {
  margin-top: 10px;
}

.app-step {
  animation: step-in 360ms ease both;
}

@keyframes step-in {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.choice-panel h2 {
  position: relative;
  width: max-content;
  max-width: 100%;
  margin: 0 auto 22px;
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 950;
  letter-spacing: 0.06em;
  line-height: 1.1;
  text-align: center;
  text-transform: uppercase;
}

.choice-panel h2::before,
.choice-panel h2::after {
  position: absolute;
  top: 50%;
  width: 42px;
  height: 62px;
  content: "";
  background: url("assets/lts21.png") center / contain no-repeat;
}

.choice-panel h2::before {
  left: -64px;
  transform: translateY(-50%);
}

.choice-panel h2::after {
  right: -64px;
  transform: translateY(-50%) scaleX(-1);
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.choice-card {
  display: grid;
  grid-template-columns: 86px 1fr;
  align-items: center;
  min-height: 91px;
  padding: 14px 24px;
  color: var(--ink);
  text-align: left;
  background: var(--white);
  border: 2px solid rgba(242, 82, 142, 0.34);
  border-radius: 13px;
  box-shadow: 0 4px 0 rgba(242, 82, 142, 0.08);
  cursor: pointer;
  transition: transform 170ms ease, border-color 170ms ease, box-shadow 170ms ease;
}

.choice-card:hover {
  border-color: var(--pink);
  box-shadow: 0 7px 0 rgba(242, 82, 142, 0.16);
  transform: translateY(-2px);
}

.choice-card span:last-child {
  font-size: 17px;
  font-weight: 950;
  line-height: 1.22;
  text-transform: uppercase;
}

.option-icon {
  position: relative;
  display: block;
  width: 58px;
  height: 58px;
}

.broken-heart::before {
  position: absolute;
  top: 5px;
  left: 4px;
  content: "\2665";
  color: #ff79a3;
  font-size: 55px;
  line-height: 1;
  text-shadow: -2px 0 var(--ink), 0 2px var(--ink), 2px 0 var(--ink), 0 -2px var(--ink);
}

.broken-heart::after {
  position: absolute;
  top: 13px;
  left: 28px;
  width: 3px;
  height: 39px;
  content: "";
  background: var(--ink);
  transform: rotate(28deg);
}

.sign-star::before {
  position: absolute;
  inset: 8px;
  content: "";
  background: var(--yellow);
  clip-path: polygon(50% 0, 61% 35%, 98% 35%, 68% 56%, 80% 94%, 50% 70%, 20% 94%, 32% 56%, 2% 35%, 39% 35%);
  filter: drop-shadow(0 0 0 var(--ink));
}

.sign-star::after {
  position: absolute;
  inset: 6px;
  content: "";
  border: 2px solid var(--ink);
  clip-path: polygon(50% 0, 61% 35%, 98% 35%, 68% 56%, 80% 94%, 50% 70%, 20% 94%, 32% 56%, 2% 35%, 39% 35%);
}

.scribble {
  background:
    radial-gradient(ellipse at 50% 50%, transparent 0 29%, var(--ink) 30% 33%, transparent 34%),
    radial-gradient(ellipse at 45% 47%, transparent 0 29%, var(--ink) 30% 33%, transparent 34%),
    radial-gradient(ellipse at 55% 53%, transparent 0 29%, var(--ink) 30% 33%, transparent 34%);
  transform: rotate(-10deg);
}

.storm::before {
  position: absolute;
  top: 10px;
  left: 9px;
  width: 42px;
  height: 27px;
  content: "";
  background: #cfd4d1;
  border: 2px solid var(--ink);
  border-radius: 22px;
  box-shadow: 8px 4px 0 #cfd4d1;
}

.storm::after {
  position: absolute;
  top: 31px;
  left: 26px;
  width: 20px;
  height: 28px;
  content: "";
  background: var(--yellow);
  clip-path: polygon(35% 0, 100% 0, 62% 42%, 100% 42%, 21% 100%, 45% 53%, 0 53%);
  filter: drop-shadow(1px 1px 0 var(--ink)) drop-shadow(-1px -1px 0 var(--ink));
}

.eye-icon::before {
  position: absolute;
  top: 22px;
  left: 2px;
  width: 52px;
  height: 27px;
  content: "";
  border: 3px solid var(--ink);
  border-radius: 70% 0 / 80% 0;
  transform: rotate(45deg);
}

.eye-icon::after {
  position: absolute;
  top: 25px;
  left: 24px;
  width: 12px;
  height: 12px;
  content: "";
  background: var(--ink);
  border-radius: 50%;
}

.question-icon {
  display: grid;
  place-items: center;
  color: var(--pink);
  font-family: Georgia, serif;
  font-size: 60px;
  font-weight: 900;
  line-height: 1;
  text-shadow: -2px 0 var(--ink), 0 2px var(--ink), 2px 0 var(--ink), 0 -2px var(--ink);
}

.continue-note {
  position: relative;
  width: max-content;
  margin: 14px auto 0;
  font-family: var(--script);
  font-size: 15px;
  font-weight: 700;
}

.continue-note::before {
  position: absolute;
  top: -2px;
  left: -26px;
  content: "\21B3";
  color: var(--ink);
  font-family: var(--sans);
  font-size: 20px;
}

.panel-arrow,
.result-arrow {
  position: absolute;
  display: block;
  pointer-events: none;
  background: url("assets/lts24.png") center / contain no-repeat;
}

.panel-arrow {
  right: 14px;
  top: 34px;
  width: 72px;
  height: 88px;
  border: 0;
  border-radius: 0;
  transform: none;
}

.panel-arrow::after {
  display: none;
}

.connecting-panel {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 240px 1fr;
  align-items: center;
  gap: 34px;
  min-height: 315px;
  padding: 44px 62px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 36%, rgba(255, 223, 98, 0.34), transparent 18rem),
    rgba(255, 253, 248, 0.86);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--soft-shadow);
}

.connecting-panel::before {
  position: absolute;
  top: 34px;
  right: 42px;
  width: 108px;
  height: 108px;
  content: "";
  background: var(--pink);
  clip-path: polygon(
    50% 0,
    58% 10%,
    68% 4%,
    74% 16%,
    88% 13%,
    89% 28%,
    100% 34%,
    93% 47%,
    100% 57%,
    88% 66%,
    91% 80%,
    76% 82%,
    70% 96%,
    58% 90%,
    48% 100%,
    39% 89%,
    26% 96%,
    21% 81%,
    7% 80%,
    12% 66%,
    0 58%,
    8% 48%,
    0 36%,
    13% 29%,
    13% 14%,
    27% 16%,
    34% 5%,
    43% 11%
  );
  opacity: 0.9;
  transform: rotate(12deg);
}

.connecting-copy,
.connection-log,
.connecting-visual {
  position: relative;
  z-index: 1;
}

.connecting-copy h2 {
  max-width: 470px;
  margin: 6px 0 12px;
  font-size: clamp(33px, 4vw, 52px);
  font-weight: 950;
  line-height: 0.98;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.connecting-copy p:last-child {
  max-width: 360px;
  margin: 0;
  font-family: var(--script);
  font-size: 24px;
  font-weight: 700;
}

.connecting-visual {
  display: grid;
  place-items: center;
  min-height: 190px;
}

.ringing-phone {
  grid-column: auto;
  grid-row: auto;
  width: 116px;
  height: 96px;
  animation: phone-ring 540ms ease-in-out infinite;
}

.ringing-phone::before {
  width: 96px;
}

.ringing-phone::after {
  top: 22px;
  left: 35px;
}

.waiting-card {
  position: absolute;
  right: 42px;
  bottom: 12px;
  width: 54px;
  height: 84px;
  animation: waiting-card 950ms ease-in-out infinite alternate;
}

.connection-log {
  align-self: stretch;
  display: grid;
  align-content: center;
  min-height: 175px;
  padding: 28px;
  background: var(--yellow-soft);
  border: 2px solid rgba(8, 15, 40, 0.14);
  border-radius: 18px;
  box-shadow: 10px 10px 0 rgba(8, 15, 40, 0.06);
  transform: rotate(2deg);
}

.connection-log p:first-child {
  margin: 0 0 8px;
  font-size: 24px;
  font-weight: 950;
  line-height: 1.15;
}

.connection-log p:nth-child(2) {
  margin: 0;
  font-family: var(--script);
  font-size: 19px;
  font-weight: 700;
  line-height: 1.25;
}

.dial-dots {
  display: block;
  width: 10px;
  height: 10px;
  margin: 18px auto 0;
  background: var(--pink);
  border-radius: 50%;
  box-shadow: 20px 0 0 var(--pink), 40px 0 0 var(--pink);
  animation: dots-pulse 820ms ease-in-out infinite alternate;
}

@keyframes phone-ring {
  0%,
  100% {
    transform: rotate(-8deg) translateX(0);
  }

  30% {
    transform: rotate(-13deg) translateX(-2px);
  }

  60% {
    transform: rotate(-4deg) translateX(2px);
  }
}

@keyframes waiting-card {
  from {
    transform: rotate(7deg) translateY(0);
  }

  to {
    transform: rotate(13deg) translateY(-12px);
  }
}

@keyframes dots-pulse {
  from {
    opacity: 0.35;
    transform: translateX(0);
  }

  to {
    opacity: 1;
    transform: translateX(8px);
  }
}

.result-panel {
  position: relative;
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr) 320px;
  align-items: start;
  gap: 38px;
  margin-top: 11px;
  padding: 28px 92px 24px 34px;
}

.result-art {
  position: relative;
  min-height: 470px;
  padding-left: 110px;
}

.result-operator-avatar {
  position: absolute;
  left: -20px;
  bottom: 260px;
  z-index: 2;
  width: 200px;
  height: 200px;
  overflow: hidden;
  background: #c9f2ee;
  border: 4px solid rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  box-shadow: 0 14px 24px rgba(8, 15, 40, 0.14);
}

.result-operator-avatar img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.result-connected-note {
  position: absolute;
  left: 78px;
  bottom: 260px;
  z-index: 3;
  margin: 0;
  padding: 7px 18px 8px;
  font-size: 13px;
  font-weight: 950;
  line-height: 1;
  text-transform: lowercase;
  background: var(--yellow);
  border-radius: 999px;
  transform: translateX(-50%);
}

.connected-dots {
  display: inline-flex;
  margin-left: 1px;
}

.connected-dots span {
  display: inline-block;
  min-width: 4px;
  opacity: 0.2;
  animation: connected-dot-blink 1.2s steps(1, end) infinite;
}

.connected-dots span:nth-child(2) {
  animation-delay: 0.2s;
}

.connected-dots span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes connected-dot-blink {
  0%,
  100% {
    opacity: 0.2;
  }

  50% {
    opacity: 1;
  }
}

.result-copy {
  position: relative;
  max-width: 100%;
}

.operator-label {
  margin: 0 0 4px;
  font-size: 14px;
  font-weight: 950;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.result-copy h2 {
  margin: 0 0 18px;
  color: var(--pink);
  font-size: 37px;
  font-weight: 950;
  line-height: 1;
  max-width: 100%;
  white-space: nowrap;
  text-transform: uppercase;
}

.result-text {
  margin: 0 0 14px;
  font-size: 21px;
  font-weight: 950;
  line-height: 1.22;
}

.result-reason {
  display: inline-block;
  margin: 0 0 14px;
  padding: 5px 12px;
  font-size: 15px;
  font-weight: 950;
  background: var(--yellow);
  border-radius: 999px;
}

.result-sign {
  margin: 0 0 14px;
  font-family: var(--script);
  font-size: 40px;
  font-weight: 700;
  line-height: 1.15;
}

.result-deck {
  margin: 12px 0 0;
  color: rgba(8, 15, 40, 0.72);
  font-size: 14px;
  font-weight: 800;
  text-align: center;
  width: max-content;
  max-width: 100%;
  align-self: center;
}

.result-deck a {
  color: var(--pink);
  font-weight: 950;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.result-actions {
  display: grid;
  gap: 14px;
  align-self: center;
}

.action-button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 63px;
  padding: 0 56px 0 26px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 950;
  letter-spacing: 0.025em;
  text-align: center;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.48);
  border: 2px solid rgba(8, 15, 40, 0.65);
  border-radius: 7px;
  cursor: pointer;
  transition: transform 170ms ease, box-shadow 170ms ease;
}

button.action-button {
  appearance: none;
}

.action-button:hover {
  box-shadow: 0 8px 0 rgba(8, 15, 40, 0.08);
  transform: translateY(-2px);
}

.action-primary {
  color: #fff;
  background: var(--pink);
  border-color: var(--pink);
  border-radius: 8px;
}

.action-primary.is-copied {
  background: var(--ink);
  border-color: var(--ink);
}

.share-mark,
.card-redraw,
.eye-small {
  position: absolute;
  top: 50%;
  right: 22px;
  display: inline-block;
  flex: 0 0 auto;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  transform: translateY(-50%);
}

.share-mark {
  width: 24px;
  height: 24px;
  background-image: url("assets/lts11.png");
  filter: brightness(0) invert(1);
}

.card-redraw {
  width: 24px;
  height: 30px;
  background-image: url("assets/lts7.png");
  transform: translateY(-50%) rotate(10deg);
}

.eye-small {
  width: 28px;
  height: 22px;
  background-image: url("assets/lts19.png");
}

.result-arrow {
  right: 14px;
  top: 34px;
  width: 74px;
  height: 90px;
  border: 0;
  border-radius: 0;
  transform: none;
}

.result-arrow::after {
  display: none;
}

.info-row {
  display: grid;
  grid-template-columns: 1.22fr 1fr 0.9fr;
  gap: 14px;
  margin-top: 16px;
}

.info-card {
  position: relative;
  min-height: 194px;
  padding: 24px 28px 22px;
  overflow: hidden;
  border-radius: 22px;
  box-shadow: var(--soft-shadow);
}

.info-card h2 {
  margin: 0;
  font-size: 15px;
  font-weight: 950;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
}

.stats-card {
  background: linear-gradient(135deg, #fff0a8, #ffe18d);
}

.stats-card h2,
.decks-card h2,
.promo-card h2 {
  position: relative;
}

.stats-card h2 {
  font-size: 18px;
  max-width: calc(100% - 38px);
  margin-inline: auto;
  margin-bottom: 4px;
  padding-right: 28px;
}

.stats-card h2::after {
  position: absolute;
  top: 1px;
  right: 10px;
  width: 18px;
  height: 18px;
  content: "";
  background: url("assets/lts11.png") center / contain no-repeat;
}

.stats-layout {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  grid-template-rows: auto auto;
  align-items: start;
  column-gap: 18px;
  row-gap: 6px;
  margin-top: 18px;
}

.stats-total {
  display: grid;
  justify-items: center;
  align-self: end;
  gap: 4px;
}

.stats-phone-art {
  display: block;
  grid-column: 1;
  grid-row: 2;
  justify-self: center;
  width: 90px;
  margin-top: 0;
  filter: drop-shadow(0 8px 8px rgba(66, 31, 22, 0.12));
}

.stat-number {
  margin: 0;
  color: var(--pink);
  font-size: 46px;
  font-weight: 950;
  line-height: 1;
  text-align: center;
}

.stat-label {
  margin: 0;
  font-size: 11px;
  font-weight: 950;
  text-align: center;
  text-transform: uppercase;
}

.stat-list {
  position: relative;
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: start;
  margin: 0;
  padding: 0 0 0 24px;
  height: max-content;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.9;
  list-style: none;
  border-left: 0;
}

.stat-list::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 2px;
  content: "";
  background: rgba(8, 15, 40, 0.14);
}

.stat-list strong {
  display: inline-block;
  min-width: 40px;
  font-size: 14px;
}

.stat-list li {
  white-space: nowrap;
}

.decks-card {
  background: linear-gradient(135deg, #eee2ff, #f2e7ff);
}

.decks-card h2 {
  font-size: 18px;
  padding-inline: 18px;
  white-space: nowrap;
}

.deck-stack {
  display: flex;
  justify-content: center;
  gap: 28px;
  margin-top: 18px;
}

.deck-cover {
  width: 78px;
  margin: 0;
  text-align: center;
}

.deck-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.deck-cover span {
  position: relative;
  display: block;
  width: 78px;
  height: 114px;
  margin-bottom: 8px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  filter: drop-shadow(0 10px 12px rgba(8, 15, 40, 0.22));
}

.deck-cover figcaption {
  font-size: 12px;
  font-weight: 950;
  line-height: 1.05;
  text-transform: uppercase;
}

.new-sticker {
  position: absolute;
  top: 60px;
  left: 14px;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: #fff;
  font-size: 9px;
  font-weight: 950;
  text-transform: uppercase;
  background: var(--pink);
  border-radius: 50%;
  transform: rotate(-18deg);
}

.slider-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  width: 10px;
  height: 10px;
  background: var(--pink);
  border-radius: 50%;
  box-shadow: 20px 0 0 rgba(8, 15, 40, 0.18), 40px 0 0 rgba(8, 15, 40, 0.18);
  transform: translateX(-50%);
}

.promo-card {
  background: linear-gradient(135deg, #e6f3ea, #d7efe8);
  text-align: center;
}

.promo-card h2 {
  font-size: 18px;
  padding-right: 0;
}

.promo-card p {
  margin: 6px 0 0;
  font-size: 15px;
}

.promo-code {
  display: inline-block;
  margin: 15px 0 6px !important;
  padding: 10px 42px;
  color: #fff;
  font-size: 39px !important;
  font-weight: 950;
  letter-spacing: 0.03em;
  background: var(--pink);
  clip-path: polygon(
    0 10%,
    6% 0,
    12% 10%,
    18% 0,
    24% 10%,
    30% 0,
    36% 10%,
    42% 0,
    48% 10%,
    54% 0,
    60% 10%,
    66% 0,
    72% 10%,
    78% 0,
    84% 10%,
    90% 0,
    96% 10%,
    100% 0,
    100% 90%,
    94% 100%,
    88% 90%,
    82% 100%,
    76% 90%,
    70% 100%,
    64% 90%,
    58% 100%,
    52% 90%,
    46% 100%,
    40% 90%,
    34% 100%,
    28% 90%,
    22% 100%,
    16% 90%,
    10% 100%,
    4% 90%,
    0 100%
  );
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, opacity 160ms ease;
}

.promo-code:hover {
  transform: translateY(-1px);
}

.promo-code:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.9);
  outline-offset: 3px;
}

.promo-code.is-copied {
  opacity: 0.9;
}

.discount {
  font-size: 15px !important;
  font-weight: 950;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.promo-footnote {
  margin-top: 10px !important;
  color: rgba(8, 15, 40, 0.72);
  font-size: 12px !important;
  line-height: 1.35;
  text-align: center;
}

.promo-footnote span {
  display: block;
}

.promo-footnote a {
  display: inline-block;
  margin-top: 2px;
  color: var(--pink-dark);
  font-weight: 900;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 2px;
}

.promo-card::before,
.promo-card::after {
  position: absolute;
  content: "";
}

.promo-card::before {
  top: 18px;
  right: 18px;
  width: 34px;
  height: 30px;
  color: var(--ink);
  content: "\2661";
  font-size: 36px;
  line-height: 1;
}

.promo-card::after {
  right: 24px;
  bottom: 24px;
  width: 22px;
  height: 22px;
  background: url("assets/lts11.png") center / contain no-repeat;
}

.share-panel {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto 160px;
  align-items: center;
  gap: 30px;
  min-height: 92px;
  margin-top: 15px;
  padding: 14px 24px 14px 58px;
  overflow: visible;
  background: rgba(255, 236, 227, 0.72);
  border: 0;
  box-shadow: none;
}

.share-panel h2 {
  margin: 0 0 4px;
  font-size: 20px;
  font-weight: 950;
  text-transform: uppercase;
}

.share-panel p {
  margin: 0;
  font-size: 16px;
}

.share-panel > div:first-child {
  position: relative;
}

.share-panel > div:first-child::after {
  display: none;
}

.share-buttons {
  display: flex;
  gap: 26px;
  align-items: center;
}

.share-buttons a {
  display: grid;
  justify-items: center;
  gap: 7px;
  font-size: 10px;
  font-weight: 950;
  text-transform: uppercase;
  transition: color 160ms ease, transform 160ms ease, opacity 160ms ease;
}

.share-buttons a:hover {
  transform: translateY(-1px);
}

.share-buttons a.is-copied {
  color: var(--pink);
}

.share-buttons a.is-opened {
  color: var(--ink);
  opacity: 0.75;
}

.social-circle {
  position: relative;
  display: block;
  width: 44px;
  height: 44px;
  background-color: transparent;
  border-radius: 0;
  box-shadow: none;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 44px 44px;
}

.instagram::before,
.instagram::after,
.facebook::before,
.facebook::after,
.whatsapp::before,
.whatsapp::after,
.copylink::before,
.copylink::after {
  display: none;
}

.instagram {
  background-image: url("assets/istsh.png");
}

.facebook {
  background-image: url("assets/fbtsh.png");
}

.whatsapp {
  background-image: url("assets/wapptsh.png");
}

.copylink {
  background-image: url("assets/cltsh.png");
}

.share-heart {
  position: absolute;
  right: 48px;
  bottom: 8px;
  width: 92px;
  height: 82px;
  background: var(--pink);
  border: 3px solid var(--ink);
  transform: rotate(-5deg);
  clip-path: path("M46 79 C7 54 1 29 13 14 C25 0 42 11 46 24 C51 11 68 0 80 14 C94 31 85 55 46 79 Z");
}

.share-heart::before,
.share-heart::after {
  position: absolute;
  content: "";
}

.share-heart::before {
  top: 34px;
  left: 28px;
  width: 6px;
  height: 6px;
  background: var(--ink);
  border-radius: 50%;
  box-shadow: 27px 0 0 var(--ink);
}

.share-heart::after {
  top: 48px;
  left: 38px;
  width: 20px;
  height: 8px;
  border-bottom: 3px solid var(--ink);
  border-radius: 0 0 30px 30px;
}

.site-footer {
  display: grid;
  grid-template-columns: 220px 1fr 330px;
  align-items: center;
  gap: 22px;
  padding: 15px 0 0;
}

.footer-brand {
  font-size: 14px;
}

.site-footer nav {
  display: flex;
  justify-content: center;
  gap: clamp(26px, 4vw, 52px);
  font-size: 10px;
  text-transform: uppercase;
}

.site-footer p {
  margin: 0;
  color: rgba(8, 15, 40, 0.58);
  font-size: 10px;
  line-height: 1.25;
}

.share-toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  z-index: 60;
  min-width: 220px;
  max-width: min(calc(100vw - 32px), 420px);
  padding: 12px 18px;
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.25;
  text-align: center;
  letter-spacing: 0.02em;
  background: rgba(8, 15, 40, 0.94);
  border-radius: 999px;
  box-shadow: 0 10px 28px rgba(8, 15, 40, 0.24);
  transform: translateX(-50%);
}

.share-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 24px;
}

.share-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 15, 40, 0.48);
  backdrop-filter: blur(8px);
}

.share-modal__dialog {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 18px;
  width: min(100%, 560px);
  padding: 30px 30px 24px;
  background:
    radial-gradient(circle at 8% 14%, rgba(242, 82, 142, 0.12), transparent 14rem),
    radial-gradient(circle at 92% 12%, rgba(255, 223, 98, 0.22), transparent 16rem),
    var(--white);
  border: 1px solid rgba(8, 15, 40, 0.1);
  border-radius: 30px;
  box-shadow: 0 24px 60px rgba(8, 15, 40, 0.26);
}

.share-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  padding: 0;
  color: var(--ink);
  font-size: 28px;
  line-height: 1;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(8, 15, 40, 0.12);
  border-radius: 50%;
  cursor: pointer;
  transition: transform 160ms ease, color 160ms ease, background 160ms ease;
}

.share-modal__close:hover {
  color: var(--pink);
  background: #fff;
  transform: translateY(-1px);
}

.share-modal__copy {
  display: grid;
  align-content: start;
  gap: 8px;
  width: 100%;
  text-align: center;
}

.share-modal__eyebrow {
  margin: 0;
  color: var(--pink);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.share-modal__copy h2 {
  margin: 0;
  font-size: 38px;
  font-weight: 950;
  line-height: 0.96;
  text-transform: uppercase;
}

.share-modal__lead {
  margin: 0;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.25;
}

.share-modal__note {
  display: none;
}

.share-modal__preview-wrap {
  align-self: start;
  justify-self: center;
  width: min(100%, 320px);
  padding: 12px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(8, 15, 40, 0.08);
  border-radius: 24px;
  box-shadow: 0 16px 32px rgba(8, 15, 40, 0.1);
}

.share-modal__preview {
  display: block;
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 14px 24px rgba(8, 15, 40, 0.12);
}

.share-modal__actions {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.share-modal__action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 12px 18px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 950;
  text-align: center;
  background: #fff;
  border: 2px solid rgba(8, 15, 40, 0.18);
  border-radius: 18px;
  cursor: pointer;
  transition: transform 160ms ease, color 160ms ease, border-color 160ms ease, background 160ms ease;
}

.share-modal__action:hover {
  border-color: rgba(8, 15, 40, 0.34);
  transform: translateY(-1px);
}

.share-modal__action--primary {
  color: #fff;
  background: var(--pink);
  border-color: transparent;
}

.share-modal__action--primary:hover {
  border-color: transparent;
  background: var(--pink-dark);
}

.share-modal__action.is-copied {
  color: #fff;
  background: var(--pink);
  border-color: transparent;
}

/* Real illustration assets supplied for the landing MVP. */
.asset-phone,
.asset-tarot-large,
.asset-judgment-sticker,
.asset-smile-badge {
  position: absolute;
  pointer-events: none;
}

.asset-phone {
  left: 52px;
  bottom: 30px;
  z-index: 2;
  width: 575px;
  filter: drop-shadow(0 18px 14px rgba(66, 31, 22, 0.17));
}

.asset-tarot-large {
  top: 44px;
  right: 42px;
  z-index: 5;
  width: 222px;
  transform: rotate(8deg);
  filter: drop-shadow(0 12px 10px rgba(29, 13, 12, 0.19));
}

.asset-judgment-sticker {
  right: 18px;
  bottom: 72px;
  z-index: 6;
  width: 155px;
  transform: rotate(8deg);
}

.asset-smile-badge {
  top: 226px;
  right: 10px;
  z-index: 3;
  width: 82px;
}

.phone-svg,
.hero-art > .tarot-card-large,
.judgment-sticker,
.smile-badge {
  display: none;
}

.bubble-heart,
.bubble-dots,
.mini-card,
.broken-heart,
.sign-star,
.scribble,
.storm,
.eye-icon,
.question-icon {
  background-color: transparent;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  border: 0;
  border-radius: 0;
  overflow: visible;
}

.bubble-heart {
  background-image: url("assets/lts3.png");
}

.bubble-dots {
  background-image: url("assets/lts6.png");
}

.mini-card {
  background-image: url("assets/lts7.png");
  box-shadow: none;
}

.bubble-heart::before,
.bubble-heart::after,
.bubble-dots::before,
.bubble-dots::after,
.mini-card::before,
.broken-heart::before,
.broken-heart::after,
.sign-star::before,
.sign-star::after,
.storm::before,
.storm::after,
.eye-icon::before,
.eye-icon::after {
  display: none;
}

.sticky-note {
  background: url("assets/lts8.png") center / contain no-repeat;
  box-shadow: none;
}

.sticky-note p,
.sticky-note .tape,
.sticky-note .note-heart {
  opacity: 0;
}

.broken-heart {
  background-image: url("assets/lts5.png");
}

.sign-star {
  background-image: url("assets/lts4.png");
}

.scribble {
  background-image: url("assets/lts2.png");
  transform: none;
}

.storm {
  background-image: url("assets/lts20.png");
}

.eye-icon {
  background-image: url("assets/lts19.png");
}

.question-icon {
  color: transparent;
  font-size: 0;
  text-shadow: none;
  background-image: url("assets/lts18.png");
}

.panel-arrow,
.result-arrow {
  width: 66px;
  height: 76px;
  background: url("assets/lts24.png") center / contain no-repeat;
  border: 0;
}

.panel-arrow::after,
.result-arrow::after {
  display: none;
}

.ringing-phone {
  background: url("assets/lts1.png") center / contain no-repeat;
  border: 0;
  border-radius: 0;
}

.ringing-phone::before,
.ringing-phone::after {
  display: none;
}

.deck-cover span {
  background-color: transparent;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  border: 0;
  box-shadow: none;
}

.deck-cover span::before,
.deck-cover span::after {
  display: none;
}

.deck-one span {
  background-image: url("assets/TGR-11.png");
}

.deck-two span {
  background-image: url("assets/CartoonTarot2.png");
}

.deck-three span {
  background-image: url("assets/FTT.png");
}

.share-heart {
  width: 106px;
  height: 84px;
  background: url("assets/lts14.png") center / contain no-repeat;
  border: 0;
  clip-path: none;
}

.share-heart::before,
.share-heart::after {
  display: none;
}

@media (max-width: 1120px) {
  .page-shell {
    width: min(100% - 32px, 960px);
  }

  .site-header {
    display: flex;
  }

  .hero-section {
    grid-template-columns: 0.75fr 1.25fr;
  }

  .hero-copy {
    padding-left: 0;
  }

  .hero-copy h1 {
    font-size: clamp(74px, 8.5vw, 106px);
  }

  .hero-art {
    min-height: 480px;
  }

  .phone-svg {
    width: 570px;
  }

  .asset-phone {
    left: 12px;
    bottom: 34px;
    width: 510px;
  }

  .glow-oval {
    width: 480px;
    height: 330px;
  }

  .tarot-card-large {
    width: 190px;
    height: 320px;
  }

  .asset-tarot-large {
    right: 26px;
    width: 186px;
  }

  .judgment-sticker {
    width: 128px;
    height: 128px;
    font-size: 12px;
  }

  .asset-judgment-sticker {
    width: 126px;
  }

  .steps-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .step-arrow {
    display: none;
  }

  .sticky-note {
    grid-column: 1 / -1;
    width: min(270px, 100%);
    min-height: 122px;
    margin: 8px auto 0;
  }

  .choice-panel {
    padding-right: 38px;
    padding-left: 38px;
  }

  .connecting-panel {
    grid-template-columns: 1fr;
    justify-items: center;
    padding: 40px;
    text-align: center;
  }

  .connecting-panel::before {
    opacity: 0.22;
  }

  .connecting-copy h2,
  .connecting-copy p:last-child {
    margin-right: auto;
    margin-left: auto;
  }

  .connection-log {
    width: min(100%, 520px);
    transform: rotate(0);
  }

  .result-panel {
    grid-template-columns: 300px minmax(0, 1fr);
    padding-right: 48px;
  }

  .result-art {
    min-height: 410px;
    padding-left: 86px;
  }

  .result-operator-avatar {
    width: 128px;
    height: 128px;
    bottom: 62px;
  }

  .result-connected-note {
    left: 22px;
    bottom: 28px;
  }

  .result-card-stack {
    width: 252px;
    margin-left: 28px;
  }

  .tarot-card-image-wrap {
    width: 100%;
  }

  .result-actions {
    grid-column: 1 / -1;
    grid-template-columns: repeat(3, 1fr);
  }

  .info-row {
    grid-template-columns: 1fr;
  }

  .stats-layout {
    max-width: 540px;
    margin-right: auto;
    margin-left: auto;
  }

  .share-panel {
    grid-template-columns: 1fr auto;
    padding-right: 34px;
  }

  .share-heart {
    display: none;
  }

  .site-footer {
    grid-template-columns: 150px 1fr 240px;
  }

  .footer-eye {
    display: none;
  }
}

@media (max-width: 820px) {
  :root {
    --script: "Caveat", "Segoe Script", "Brush Script MT", cursive;
  }

  .page-shell {
    width: min(100% - 24px, 680px);
    padding-top: 18px;
  }

  .site-header {
    display: flex;
  }

  .brand {
    font-size: 16px;
  }

  .brand::after {
    display: none;
  }

  .hero-section {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-copy {
    padding: 24px 0 96px;
  }

  .hero-script {
    margin-left: 26px;
  }

  .hero-copy h1 {
    font-size: clamp(72px, 22vw, 124px);
  }

  .hero-subtitle {
    font-size: 18px;
  }

  .primary-cta {
    width: min(100%, 304px);
  }

  .hero-art {
    min-height: 450px;
    margin-top: -56px;
  }

  .phone-svg {
    left: 50%;
    width: 570px;
    max-width: 105%;
    transform: translateX(-52%);
  }

  .asset-phone {
    left: 50%;
    bottom: 6px;
    width: 535px;
    max-width: 105%;
    transform: translateX(-52%);
  }

  .glow-oval {
    left: 50%;
    width: 480px;
    max-width: 88%;
    height: 320px;
    transform: translateX(-50%) rotate(-10deg);
  }

  .tarot-card-large {
    right: 5%;
    width: 162px;
    height: 276px;
  }

  .asset-tarot-large {
    top: 42px;
    right: 5%;
    width: 160px;
  }

  .judgment-sticker,
  .smile-badge {
    display: none;
  }

  .asset-judgment-sticker,
  .asset-smile-badge {
    display: none;
  }

  .how-panel {
    padding: 54px 22px 28px;
  }

  .script-heading {
    font-size: 38px;
  }

  .steps-grid,
  .choice-grid,
  .result-panel,
  .result-actions {
    grid-template-columns: 1fr;
  }

  .step-card {
    display: grid;
    grid-template-columns: 48px 92px 1fr;
    gap: 12px;
    align-items: center;
    min-height: 104px;
  }

  .step-number {
    position: static;
    grid-column: 1;
    grid-row: 1 / span 2;
    align-self: start;
    margin-top: 10px;
  }

  .step-icon,
  .mini-card {
    grid-column: 2;
    grid-row: 1 / span 2;
    align-self: start;
    margin: 0;
  }

  .step-card h3 {
    grid-column: 3;
    grid-row: 1;
    align-self: end;
    margin: 0 0 5px;
  }

  .step-card p {
    grid-column: 3;
    grid-row: 2;
    align-self: start;
    max-width: none;
  }

  .sticky-note {
    transform: rotate(2deg);
  }

  .choice-panel {
    padding: 22px 18px 32px;
  }

  .connecting-panel {
    padding: 32px 20px;
  }

  .connecting-copy h2 {
    font-size: 34px;
  }

  .connecting-copy p:last-child {
    font-size: 22px;
  }

  .connection-log {
    padding: 24px 20px;
  }

  .connection-log p:first-child {
    font-size: 21px;
  }

  .choice-panel h2 {
    width: auto;
    font-size: 24px;
  }

  .choice-panel h2::before,
  .choice-panel h2::after,
  .panel-arrow,
  .result-arrow {
    display: none;
  }

  .choice-card {
    grid-template-columns: 76px 1fr;
  }

  .result-panel {
    justify-items: center;
    gap: 20px;
    padding: 24px 20px;
    text-align: center;
  }

  .result-art {
    display: flex;
    justify-content: center;
    min-height: 372px;
    padding-left: 0;
  }

  .result-card-stack {
    width: 234px;
    margin-left: 0;
  }

  .tarot-card-image-wrap {
    width: 100%;
  }

  .result-operator-avatar {
    width: 110px;
    height: 110px;
    bottom: 52px;
  }

  .result-connected-note {
    left: 47px;
    bottom: 128px;
  }

  .result-copy {
    max-width: 100%;
  }

  .result-text {
    font-size: 21px;
  }

  .result-sign {
    font-size: 43px;
  }

  .result-actions {
    width: 100%;
  }

  .info-card {
    padding: 22px 18px;
  }

  .stats-layout {
    grid-template-columns: 92px 94px 1fr;
  }

  .deck-stack {
    gap: 22px;
  }

  .share-panel {
    grid-template-columns: 1fr;
    justify-items: start;
    padding: 22px 20px;
  }

  .share-panel > div:first-child {
    width: 100%;
    text-align: center;
  }

  .share-panel > div:first-child::after {
    display: none;
  }

  .share-buttons {
    width: 100%;
    justify-content: center;
    gap: 41px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    justify-items: start;
    gap: 14px;
    padding-bottom: 16px;
  }

  .site-footer nav {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 14px 24px;
  }

  .share-modal {
    padding: 18px;
  }

  .share-modal__dialog {
    gap: 18px;
    width: min(100%, 560px);
    padding: 24px 20px 20px;
  }

  .share-modal__copy {
    padding-right: 0;
  }

  .share-modal__actions {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .page-shell {
    width: min(100% - 18px, 420px);
  }

  .site-footer {
    justify-items: center;
  }

  .footer-brand {
    justify-self: center;
  }

  .site-footer nav {
    justify-content: center;
  }

  .burst-one {
    top: -40px;
    left: -5px;
    width: 102px;
    height: 86px;
    transform: rotate(-2deg);
  }

  .hero-script::before {
    top: -42px;
    width: 180px;
    height: 44px;
  }

  .dial-dots {
    transform: translateX(-100px);
  }

  .result-operator-avatar {
    left: -70px;
    bottom: 250px;
    width: 130px;
    height: 130px;
  }

  .result-connected-note {
    left: -4px;
    bottom: 240px;
  }

  .hero-copy h1 {
    letter-spacing: 0;
  }

  .highlight-strip {
    margin-left: 0;
    font-size: 18px;
  }

  .hero-art {
    min-height: 355px;
  }

  .phone-svg {
    width: 440px;
  }

  .asset-phone {
    width: 410px;
  }

  .tarot-card-large {
    top: 46px;
    right: 14px;
    width: 122px;
    height: 214px;
  }

  .asset-tarot-large {
    top: 46px;
    right: 14px;
    width: 122px;
  }

  .tarot-card-large .roman {
    font-size: 13px;
  }

  .tarot-card-large .card-title {
    font-size: 11px;
  }

  .tarot-card-large .moon-scene {
    height: calc(100% - 34px);
  }

  .step-card {
    grid-template-columns: 42px 70px 1fr;
  }

  .step-icon {
    width: 64px;
    height: 62px;
  }

  .bubble-heart::before {
    top: 15px;
    left: 21px;
    font-size: 24px;
  }

  .bubble-dots::before {
    top: 23px;
    left: 16px;
    width: 8px;
    height: 8px;
    box-shadow: 14px 0 0 var(--ink), 28px 0 0 var(--ink);
  }

  .mini-card {
    width: 40px;
    height: 62px;
  }

  .choice-card {
    min-height: 78px;
    padding: 12px 16px;
  }

  .connecting-copy h2 {
    font-size: 30px;
  }

  .connecting-panel::before {
    display: none;
  }

  .ringing-phone {
    width: 118px;
    height: 102px;
  }

  .waiting-card {
    right: 72px;
    bottom: 8px;
    width: 64px;
    height: 100px;
  }

  .choice-card span:last-child {
    font-size: 15px;
  }

  .option-icon {
    width: 48px;
    height: 48px;
  }

  .stats-layout {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    justify-items: center;
    gap: 10px;
    text-align: center;
  }

  .stats-total,
  .stats-phone-art,
  .stat-list {
    grid-column: auto;
    grid-row: auto;
  }

  .stats-card h2 {
    max-width: 100%;
    padding-right: 0;
    text-align: center;
  }

  .stat-list {
    width: max-content;
    max-width: 100%;
    padding: 12px 0 0;
    border-top: 0;
    border-left: 0;
    font-size: 16px;
    text-align: left;
  }

  .stat-list::before {
    display: none;
  }

  .promo-code {
    padding-right: 28px;
    padding-left: 28px;
    font-size: 31px !important;
  }

  .share-buttons {
    gap: 41px;
  }

  .social-circle {
    width: 46px;
    height: 46px;
  }

  .share-modal {
    padding: 12px;
  }

  .share-modal__dialog {
    padding: 22px 16px 16px;
    border-radius: 24px;
  }

  .share-modal__copy h2 {
    font-size: 32px;
  }

  .share-modal__lead {
    font-size: 16px;
  }

  .share-modal__note {
    font-size: 14px;
  }

  .share-modal__preview-wrap {
    width: min(100%, 280px);
  }

  .share-modal__actions {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 390px) {
  .page-shell {
    width: min(100% - 14px, 390px);
  }

  .hero-copy {
    padding-bottom: 88px;
  }

  .hero-script {
    margin-left: 18px;
  }

  .hero-script::before {
    top: -38px;
    width: 164px;
    height: 40px;
  }

  .hero-copy h1 {
    font-size: clamp(64px, 21vw, 108px);
  }

  .hero-art {
    min-height: 334px;
  }

  .phone-svg {
    width: min(430px, calc(100vw - 10px));
    transform: translateX(-50%);
  }

  .asset-phone {
    width: min(392px, calc(100vw - 28px));
    transform: translateX(-50%);
  }

  .asset-tarot-large {
    top: 52px;
    right: 8px;
    width: 112px;
  }

  .burst-one {
    top: -24px;
    left: 4px;
    width: 82px;
    height: 70px;
  }

  .script-heading {
    font-size: 34px;
  }

  .script-heading::before,
  .script-heading::after {
    width: 28px;
    height: 42px;
  }

  .script-heading::before {
    left: -34px;
  }

  .script-heading::after {
    right: -34px;
  }

  .how-panel {
    padding: 50px 16px 24px;
  }

  .step-card {
    grid-template-columns: 38px 62px 1fr;
    gap: 10px;
  }

  .step-icon {
    width: 58px;
    height: 56px;
  }

  .result-art {
    min-height: 334px;
  }

  .result-card-stack {
    width: min(100%, 214px);
  }

  .result-operator-avatar {
    left: 2px;
    bottom: 214px;
    width: 108px;
    height: 108px;
  }

  .result-connected-note {
    left: 56px;
    bottom: 206px;
    font-size: 12px;
    padding: 7px 16px 8px;
  }

  .result-copy h2 {
    font-size: 29px !important;
  }

  .result-text {
    font-size: 19px;
  }

  .result-sign {
    font-size: 27px;
  }

  .share-panel {
    padding: 20px 16px;
  }

  .share-buttons {
    justify-content: center;
    gap: 14px;
  }

  .share-buttons a {
    width: 62px;
    gap: 6px;
    font-size: 9px;
  }

  .social-circle {
    width: 42px;
    height: 42px;
    background-size: 42px 42px;
  }
}

@media (max-width: 360px) {
  .hero-art {
    min-height: 318px;
  }

  .asset-phone {
    width: min(374px, calc(100vw - 24px));
  }

  .asset-tarot-large {
    right: 6px;
    width: 104px;
  }

  .script-heading {
    font-size: 31px;
  }

  .script-heading::before,
  .script-heading::after {
    display: none;
  }

  .result-operator-avatar {
    left: -2px;
    width: 102px;
    height: 102px;
  }

  .result-connected-note {
    left: 50px;
    bottom: 202px;
    font-size: 11px;
  }

  .share-buttons {
    gap: 10px;
  }

  .share-buttons a {
    width: 58px;
  }
}
