:root {
  --bg: #eff8ff;
  --bg-2: #f7fcff;
  --blue: #138ed8;
  --blue-dark: #103462;
  --teal: #05a9b8;
  --teal-dark: #008b99;
  --cyan: #e6faff;
  --text: #07153a;
  --muted: #47607d;
  --line: rgba(55, 108, 150, .16);
  --card: rgba(255,255,255,.92);
  --shadow: 0 18px 48px rgba(18, 75, 115, .14);
  --soft-shadow: 0 10px 26px rgba(18, 75, 115, .10);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 80% 0%, rgba(31, 157, 225, .22), transparent 34%),
    radial-gradient(circle at 5% 8%, rgba(14, 188, 198, .14), transparent 30%),
    linear-gradient(180deg, #f4fbff 0%, #ecf7ff 100%);
  overflow-x: hidden;
}

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

.landing {
  width: min(1080px, calc(100% - 28px));
  margin: 0 auto;
  padding: 28px 0 26px;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: start;
  min-height: 410px;
}

.time-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, #0da6d7, #0b86cb);
  box-shadow: 0 12px 28px rgba(7, 132, 200, .25);
  font-weight: 900;
  letter-spacing: .02em;
}

.hero h1 {
  max-width: 570px;
  margin: 28px 0 0;
  font-size: clamp(44px, 6vw, 74px);
  line-height: .98;
  letter-spacing: -.07em;
  font-weight: 900;
}
.hero h1 span {
  color: var(--teal);
}
.hero p {
  max-width: 440px;
  margin: 18px 0 0;
  color: var(--blue-dark);
  font-size: 22px;
  line-height: 1.45;
}
.hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 24px;
  min-height: 66px;
  padding: 0 30px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--teal), #048aa7);
  box-shadow: 0 16px 32px rgba(0, 143, 160, .25);
  font-size: 21px;
  font-weight: 900;
}
.hero-cta-arrow {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: var(--teal-dark);
  background: #fff;
}

.trust-row {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 4px;
}
.trust-row span {
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-radius: 22px;
  background: var(--card);
  border: 1px solid var(--line);
  box-shadow: var(--soft-shadow);
  font-size: 18px;
  font-weight: 900;
}
.trust-row i {
  font-style: normal;
  display: grid;
  place-items: center;
  min-width: 38px;
  height: 38px;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, #1e9fe9, #086db7);
  font-size: 17px;
}

.hero-art {
  position: relative;
  min-height: 360px;
}
.spark { position: absolute; color: #f7c43d; font-size: 34px; filter: drop-shadow(0 8px 10px rgba(247,196,61,.22)); }
.s1 { left: 24px; top: 28px; }
.s2 { right: 200px; top: 8px; font-size: 24px; }
.slot {
  position: absolute;
  right: 12px;
  top: 16px;
  width: 265px;
  height: 210px;
  border-radius: 32px;
  padding: 25px 22px;
  background: linear-gradient(135deg, #eaf7ff, #8ac9f2);
  box-shadow: 0 24px 50px rgba(15, 83, 135, .20), inset 0 0 0 5px rgba(255,255,255,.5);
}
.slot-top {
  width: 150px;
  margin: -6px auto 16px;
  padding: 8px 0;
  border-radius: 999px;
  text-align: center;
  color: #ffe675;
  background: linear-gradient(135deg, #207ec8, #195b9b);
  font-weight: 900;
}
.reels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.reels b {
  display: grid;
  place-items: center;
  height: 85px;
  border-radius: 18px;
  background: linear-gradient(180deg, #fff, #dceaf5);
  color: #0a9daf;
  font-size: 55px;
  line-height: 1;
  text-shadow: 0 2px 0 rgba(255,255,255,.8);
}
.slot i {
  position: absolute;
  right: -18px;
  top: 76px;
  width: 25px;
  height: 82px;
  border-radius: 999px;
  background: linear-gradient(180deg, #0a77b5, #07548d);
}
.slot i::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -24px;
  transform: translateX(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, #58d7dd, #0ba3b3);
  box-shadow: 0 8px 18px rgba(0, 143, 160, .24);
}
.shield-mini {
  position: absolute;
  left: 70px;
  top: 42px;
  width: 108px;
  height: 122px;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 62px;
  font-weight: 900;
  background: linear-gradient(145deg, #44d4d1, #079eb0);
  clip-path: polygon(50% 0, 88% 12%, 94% 45%, 80% 82%, 50% 100%, 20% 82%, 6% 45%, 12% 12%);
  box-shadow: 0 16px 36px rgba(0, 143, 160, .22);
  z-index: 2;
}
.cards {
  position: absolute;
  left: 100px;
  top: 176px;
  display: flex;
}
.cards span {
  width: 88px;
  height: 124px;
  margin-right: -22px;
  padding: 12px;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 16px 30px rgba(15, 83, 135, .16);
  font-size: 36px;
  font-weight: 900;
}
.cards span:last-child { color: #e14949; }
.coin {
  position: absolute;
  border-radius: 50%;
  display: grid;
  place-items: center;
}
.smile {
  left: 210px;
  top: 220px;
  width: 110px;
  height: 110px;
  color: #fff;
  background: linear-gradient(145deg, #37b8e1, #087ac1);
  font-size: 66px;
  font-weight: 700;
  z-index: 4;
}
.gold {
  width: 78px;
  height: 78px;
  background: radial-gradient(circle, #ffe087, #eeb440);
  box-shadow: 0 12px 24px rgba(216, 153, 33, .24);
}
.c1 { right: 215px; bottom: 26px; }
.c2 { right: 125px; bottom: 72px; width: 56px; height: 56px; }
.wallet {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 150px;
  height: 108px;
  border-radius: 25px;
  background: linear-gradient(145deg, #1f66a8, #0d3c79);
  box-shadow: 0 20px 36px rgba(15, 83, 135, .22);
}
.wallet::before {
  content: "";
  position: absolute;
  left: 24px;
  top: -34px;
  width: 92px;
  height: 50px;
  border-radius: 14px;
  background: #d6efdc;
  box-shadow: 18px 8px 0 #c9e9d0;
}
.chip {
  position: absolute;
  border-radius: 50%;
  background: conic-gradient(#0e9aa9 0 20deg, #fff 20deg 42deg, #0e9aa9 42deg 66deg, #fff 66deg 90deg, #0e9aa9 90deg 120deg, #fff 120deg 160deg, #0e9aa9 160deg 200deg, #fff 200deg 230deg, #0e9aa9 230deg 280deg, #fff 280deg 315deg, #0e9aa9 315deg 360deg);
  border: 10px solid #0e9aa9;
  box-shadow: 0 16px 28px rgba(15, 83, 135, .16);
}
.ch1 { left: 84px; bottom: 42px; width: 90px; height: 90px; }
.ch2 { left: 175px; bottom: 20px; width: 74px; height: 74px; border-width: 8px; }

.quiz-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-top: 18px;
}
.quiz-card,
.matches-panel,
.benefits,
.footer-note {
  background: var(--card);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  border-radius: var(--radius-xl);
}
.quiz-card {
  padding: 26px;
}
.quiz-head {
  display: grid;
  grid-template-columns: 76px 1fr auto;
  gap: 22px;
  align-items: center;
  margin-bottom: 26px;
}
.quiz-logo {
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(145deg, #3aa4f4, #136fca);
  font-size: 35px;
  box-shadow: 0 16px 30px rgba(19, 111, 202, .18);
}
.quiz-head h2 {
  margin: 0 0 18px;
  font-size: clamp(32px, 5vw, 44px);
  letter-spacing: -.05em;
}
.progress-line {
  height: 12px;
  border-radius: 999px;
  background: #e3edf5;
  overflow: hidden;
}
.progress-line span {
  display: block;
  width: 20%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--teal), #22b8c8);
  transition: width .28s ease;
}
.step-label {
  color: var(--blue-dark);
  font-size: 22px;
  font-weight: 600;
  white-space: nowrap;
}
.question-box {
  padding: 34px;
  border-radius: 26px;
  background: linear-gradient(180deg, #ffffff, #fbfdff);
  border: 1px solid var(--line);
  box-shadow: 0 10px 30px rgba(15, 83, 135, .06);
}
.question-box h3 {
  margin: 0 0 26px;
  font-size: clamp(28px, 5.5vw, 40px);
  letter-spacing: -.04em;
  line-height: 1.08;
}
.options {
  display: grid;
  gap: 14px;
}
.option {
  width: 100%;
  min-height: 86px;
  display: grid;
  grid-template-columns: 62px 1fr 34px;
  align-items: center;
  gap: 18px;
  padding: 14px 20px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--soft-shadow);
  color: var(--text);
  cursor: pointer;
  text-align: left;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.option:hover,
.option.selected {
  transform: translateY(-1px);
  border-color: rgba(5, 169, 184, .45);
  box-shadow: 0 16px 34px rgba(5, 169, 184, .12);
}
.option-icon {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(180deg, #f3fbff, #e8f5ff);
  font-size: 33px;
}
.option-label {
  font-size: 22px;
  line-height: 1.18;
  font-weight: 700;
}
.radio {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 3px solid #bed0e1;
  position: relative;
}
.option.selected .radio {
  border-color: var(--teal);
}
.option.selected .radio::after {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: 50%;
  background: var(--teal);
}
.tap-note {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  color: var(--muted);
  font-size: 19px;
}

.matches-panel {
  display: grid;
  gap: 18px;
  padding: 20px;
  background: linear-gradient(135deg, rgba(255,255,255,.94), rgba(223,244,255,.92));
}
.matches-locked,
.matches-ready {
  display: grid;
  grid-template-columns: 86px 1fr 62px;
  align-items: center;
  gap: 20px;
}
.matches-locked .icon,
.matches-ready .icon {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(145deg, #0793bf, #07528e);
  font-size: 40px;
}
.matches-panel h3 {
  margin: 0 0 7px;
  font-size: clamp(25px, 4vw, 32px);
  letter-spacing: -.04em;
}
.matches-panel p {
  margin: 0;
  color: var(--blue-dark);
  font-size: 20px;
  line-height: 1.35;
}
.lock-icon {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--soft-shadow);
  font-size: 28px;
}
.match-list {
  display: grid;
  gap: 14px;
}
.match-card {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 14px;
  align-items: start;
  padding: 16px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--soft-shadow);
}
.match-logo {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: #fff;
  background: linear-gradient(145deg, #0c3a72, #06a5ba);
  font-size: 32px;
}
.match-tag {
  display: inline-block;
  padding: 6px 10px;
  border-radius: 999px;
  color: #056b78;
  background: #dff9fd;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.match-card h4 {
  margin: 8px 0 4px;
  font-size: 22px;
  line-height: 1.12;
}
.match-card p {
  margin: 0 0 10px;
  font-size: 16px;
  color: var(--muted);
}
.match-bottom {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.match-bottom span {
  color: #f2a51d;
  font-weight: 900;
}
.match-bottom a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 13px;
  color: #fff;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  font-weight: 900;
}
.benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 24px;
  padding: 22px;
  gap: 12px;
}
.benefits article {
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 8px;
  padding: 10px;
  border-right: 1px solid var(--line);
}
.benefits article:last-child { border-right: 0; }
.benefits span {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(180deg, #f1fbff, #e6f6ff);
  font-size: 34px;
}
.benefits strong {
  font-size: 20px;
}
.benefits p {
  margin: 0;
  color: var(--blue-dark);
  line-height: 1.35;
}
.footer-note {
  margin-top: 18px;
  padding: 16px 20px;
  color: var(--muted);
  line-height: 1.45;
}
.footer-note strong { color: var(--teal-dark); }

@media (max-width: 780px) {
  .landing {
    width: min(100% - 22px, 520px);
    padding: 18px 0 20px;
  }
  .hero {
    grid-template-columns: 1fr;
    gap: 8px;
    min-height: auto;
  }
  .time-pill {
    padding: 10px 14px;
    font-size: 15px;
  }
  .hero h1 {
    margin-top: 18px;
    max-width: 390px;
    font-size: 43px;
  }
  .hero p {
    margin-top: 12px;
    max-width: 340px;
    font-size: 18px;
  }
  .hero-cta {
    min-height: 56px;
    margin-top: 16px;
    padding: 0 22px;
    font-size: 19px;
  }
  .hero-cta-arrow {
    width: 34px;
    height: 34px;
  }
  .hero-art {
    position: absolute;
    right: -28px;
    top: 34px;
    width: 235px;
    min-height: 170px;
    transform: scale(.62);
    transform-origin: top right;
    opacity: .98;
    pointer-events: none;
  }
  .slot { right: 8px; top: 0; width: 210px; height: 170px; }
  .slot-top { width: 118px; font-size: 13px; }
  .reels b { height: 64px; font-size: 40px; }
  .shield-mini { left: 16px; top: 28px; width: 76px; height: 86px; font-size: 42px; }
  .cards { left: 45px; top: 120px; }
  .cards span { width: 62px; height: 86px; font-size: 24px; }
  .smile { left: 120px; top: 128px; width: 70px; height: 70px; font-size: 42px; }
  .wallet, .gold, .chip { display: none; }
  .trust-row {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 18px;
  }
  .trust-row span {
    min-height: 55px;
    padding: 8px;
    border-radius: 18px;
    font-size: 14px;
  }
  .trust-row i {
    min-width: 30px;
    height: 30px;
    font-size: 13px;
  }
  .quiz-section {
    margin-top: 16px;
  }
  .quiz-card {
    padding: 18px;
    border-radius: 26px;
  }
  .quiz-head {
    grid-template-columns: 56px 1fr;
    gap: 14px;
    margin-bottom: 18px;
  }
  .quiz-logo {
    width: 56px;
    height: 56px;
    font-size: 26px;
  }
  .quiz-head h2 {
    font-size: 30px;
    margin-bottom: 14px;
  }
  .step-label {
    grid-column: 2;
    justify-self: end;
    margin-top: -8px;
    font-size: 16px;
  }
  .progress-line { height: 9px; }
  .question-box {
    padding: 22px 16px 18px;
    border-radius: 22px;
  }
  .question-box h3 {
    font-size: 28px;
    margin-bottom: 18px;
  }
  .options { gap: 12px; }
  .option {
    min-height: 64px;
    grid-template-columns: 48px 1fr 28px;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 16px;
  }
  .option-icon {
    width: 48px;
    height: 48px;
    font-size: 26px;
    border-radius: 14px;
  }
  .option-label { font-size: 16px; }
  .radio {
    width: 26px;
    height: 26px;
    border-width: 2px;
  }
  .tap-note {
    margin-top: 16px;
    font-size: 15px;
  }
  .matches-panel {
    padding: 14px;
    border-radius: 22px;
  }
  .matches-locked,
  .matches-ready {
    grid-template-columns: 58px 1fr 48px;
    gap: 12px;
  }
  .matches-locked .icon,
  .matches-ready .icon {
    width: 56px;
    height: 56px;
    font-size: 30px;
  }
  .matches-panel h3 { font-size: 22px; }
  .matches-panel p { font-size: 16px; }
  .lock-icon {
    width: 48px;
    height: 48px;
    font-size: 22px;
    border-radius: 14px;
  }
  .match-card {
    grid-template-columns: 54px 1fr;
    padding: 13px;
  }
  .match-logo {
    width: 54px;
    height: 54px;
    font-size: 28px;
  }
  .match-card h4 { font-size: 19px; }
  .match-card p { font-size: 14px; }
  .benefits {
    grid-template-columns: repeat(4, 1fr);
    padding: 12px;
    gap: 0;
    border-radius: 22px;
  }
  .benefits article {
    padding: 8px 4px;
  }
  .benefits span {
    width: 44px;
    height: 44px;
    font-size: 24px;
  }
  .benefits strong { font-size: 13px; }
  .benefits p { font-size: 12px; }
}

@media (max-width: 430px) {
  .landing { width: min(100% - 16px, 420px); padding-top: 12px; }
  .hero h1 { font-size: 36px; max-width: 300px; }
  .hero p { max-width: 285px; font-size: 15px; }
  .hero-art {
    right: -44px;
    top: 26px;
    transform: scale(.48);
  }
  .time-pill { font-size: 13px; }
  .hero-cta { width: min(100%, 270px); font-size: 16px; min-height: 52px; }
  .trust-row span { font-size: 12px; min-height: 48px; }
  .trust-row i { display: none; }
  .quiz-head h2 { font-size: 26px; }
  .question-box h3 { font-size: 24px; }
  .option-label { font-size: 15px; }
  .benefits { margin-top: 16px; }
  .benefits p { display: none; }
}

.quiz-uploaded-logo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: inherit;
}
