:root {
  --bg: #f7f8fb;
  --surface: #ffffff;
  --ink: #15171c;
  --muted: #667085;
  --line: #e4e8ef;
  --blue: #246bfe;
  --blue-dark: #174cc2;
  --green: #129a72;
  --red: #ef5b45;
  --yellow: #f6c447;
  --mint: #ddf7ed;
  --radius: 8px;
  --shadow: 0 22px 60px rgba(24, 32, 48, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

body.modal-open {
  overflow: hidden;
}

button,
input {
  font: inherit;
  letter-spacing: 0;
}

button {
  cursor: pointer;
}

button:disabled {
  cursor: not-allowed;
  opacity: 0.55;
}

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 58px;
  padding: 0 18px;
  border-bottom: 1px solid rgba(228, 232, 239, 0.82);
  background: rgba(247, 248, 251, 0.92);
  backdrop-filter: blur(16px);
}

.brand,
.product-line {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.brand {
  font-size: 18px;
  font-weight: 800;
}

.brand-mark {
  width: 23px;
  height: 23px;
  border-radius: 7px;
  background:
    linear-gradient(135deg, var(--blue) 0 49%, transparent 50%),
    linear-gradient(315deg, var(--green) 0 49%, var(--surface) 50%);
  border: 1px solid rgba(21, 23, 28, 0.08);
}

.topbar-cta,
.primary-button,
.choice-button,
.vote-button,
.email-row button {
  border: 0;
  border-radius: var(--radius);
}

.topbar-cta {
  min-height: 38px;
  padding: 0 14px;
  background: var(--ink);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
}

.hero {
  display: grid;
  gap: 28px;
  max-width: 1120px;
  margin: 0 auto;
  padding: 34px 20px 42px;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.product-line {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.product-line span:first-child {
  color: var(--blue);
  font-size: 26px;
  font-weight: 900;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 16px;
  font-size: 42px;
  line-height: 1.09;
  font-weight: 900;
}

.hero-sub {
  max-width: 560px;
  margin-bottom: 24px;
  color: #3f4757;
  font-size: 18px;
  line-height: 1.55;
  font-weight: 650;
}

.primary-button {
  min-height: 54px;
  padding: 0 22px;
  background: var(--blue);
  color: #fff;
  box-shadow: 0 12px 26px rgba(36, 107, 254, 0.28);
  font-size: 17px;
  font-weight: 850;
}

.primary-button:active,
.choice-button:active,
.vote-button:active,
.topbar-cta:active {
  transform: translateY(1px);
}

.phone-preview {
  width: min(100%, 360px);
  justify-self: center;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.phone-status,
.preview-result {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.phone-status {
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.phone-status strong {
  color: var(--ink);
}

.preview-mosaic {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 7px;
  aspect-ratio: 1.35;
  overflow: hidden;
}

.tile {
  display: block;
  width: 100%;
  height: 100%;
  min-width: 0;
  min-height: 0;
  border: 1px solid rgba(21, 23, 28, 0.08);
  border-radius: 7px;
  object-fit: cover;
  object-position: center;
  background: #eef2f7;
}

.tile-chat {
  background:
    radial-gradient(circle at 28% 28%, #fff 0 16%, transparent 17%),
    linear-gradient(135deg, #f5d893, #fff1c9);
}

.tile-receipt {
  background:
    repeating-linear-gradient(180deg, #2f3543 0 2px, transparent 2px 14px),
    #fbfbf8;
}

.tile-night {
  background:
    radial-gradient(circle at 70% 28%, #f7dd75 0 8%, transparent 9%),
    linear-gradient(145deg, #27344e, #101825 70%);
}

.tile-menu {
  background:
    linear-gradient(90deg, transparent 0 16%, rgba(21, 23, 28, 0.1) 17% 18%, transparent 19%),
    repeating-linear-gradient(180deg, #fff 0 12px, #f4e7cf 12px 16px);
}

.tile-parcel {
  background:
    repeating-linear-gradient(90deg, #17191f 0 2px, transparent 2px 7px),
    #e9d6b8;
}

.tile-selfie {
  background:
    radial-gradient(circle at 50% 36%, #f0bd91 0 14%, transparent 15%),
    radial-gradient(circle at 50% 78%, #4b78c7 0 25%, transparent 26%),
    #e8eef9;
}

.preview-result {
  margin-top: 14px;
  padding: 13px 14px;
  background: #f2f6ff;
  border-radius: var(--radius);
}

.preview-result strong {
  font-size: 22px;
}

.preview-result span {
  color: var(--blue-dark);
  font-size: 14px;
  font-weight: 800;
}

.demo-band,
.vote-band,
.cta-band,
.result-band {
  padding: 48px 20px;
}

.demo-band {
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-head {
  max-width: 760px;
  margin: 0 auto 22px;
  text-align: center;
}

.section-head p,
.cta-copy > p,
.result-label,
.modal-label {
  margin-bottom: 8px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 900;
}

.section-head h2,
.cta-copy h2,
.result-card h2,
.modal-panel h2 {
  margin-bottom: 0;
  font-size: 28px;
  line-height: 1.18;
  font-weight: 900;
}

.demo-wrap {
  width: min(100%, 400px);
  margin: 0 auto;
}

.counter-bar {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f8fafc;
  color: #293244;
  font-size: 15px;
  font-weight: 850;
  text-align: center;
}

.swipe-rail {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.swipe-rail span:first-child {
  color: var(--red);
}

.swipe-rail span:last-child {
  color: var(--green);
}

.deck {
  position: relative;
  height: 456px;
  touch-action: none;
}

.sample-card {
  --offset: 0;
  --stack-y: 0px;
  --scale: 1;
  --stack-opacity: 1;
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  padding: 10px;
  border: 1px solid rgba(21, 23, 28, 0.1);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 18px 48px rgba(21, 23, 28, 0.16);
  transform: translateY(var(--stack-y)) scale(var(--scale));
  transition: transform 180ms ease, opacity 180ms ease, box-shadow 180ms ease;
  user-select: none;
}

.sample-card[data-active="false"] {
  pointer-events: none;
  opacity: var(--stack-opacity);
}

.sample-card.is-dragging {
  transition: none;
  box-shadow: 0 28px 72px rgba(21, 23, 28, 0.2);
}

.swipe-badge {
  position: absolute;
  top: 24px;
  z-index: 3;
  min-width: 92px;
  padding: 10px 12px;
  border: 2px solid currentColor;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  font-weight: 950;
  text-align: center;
  opacity: 0;
}

.swipe-badge[data-side="delete"] {
  left: 22px;
  color: var(--red);
  transform: rotate(-9deg);
}

.swipe-badge[data-side="keep"] {
  right: 22px;
  color: var(--green);
  transform: rotate(9deg);
}

.photo-frame {
  position: relative;
  flex: 1;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: #14171f;
}

.photo-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.04) 0%, rgba(0, 0, 0, 0) 42%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.46) 36%, rgba(0, 0, 0, 0) 68%);
}

.photo-frame img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: var(--photo-position);
  transform: scale(var(--photo-scale)) rotate(var(--photo-rotate));
  transform-origin: center;
}

.photo-meta-overlay {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 2;
  color: #fff;
}

.photo-label {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  margin-bottom: 10px;
  padding: 0 10px;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.9);
  color: #1f2937;
  font-size: 13px;
  font-weight: 950;
}

.photo-meta-overlay h3 {
  margin: 0 0 7px;
  font-size: 25px;
  line-height: 1.12;
  font-weight: 950;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.32);
}

.photo-meta-overlay p,
.photo-meta-overlay strong {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  line-height: 1.35;
  font-weight: 850;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.34);
}

.photo-meta-overlay strong {
  display: block;
  margin-top: 5px;
}

.visual {
  position: relative;
  min-height: 252px;
  overflow: hidden;
  border: 1px solid rgba(21, 23, 28, 0.08);
  border-radius: var(--radius);
}

.card-meta {
  display: grid;
  gap: 7px;
  padding: 14px 2px 0;
}

.card-meta p {
  margin: 0;
}

.card-tag {
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
}

.card-meta h3 {
  margin: 0;
  font-size: 23px;
  line-height: 1.15;
  font-weight: 950;
}

.card-desc {
  color: #4a5364;
  font-size: 15px;
  line-height: 1.45;
  font-weight: 650;
}

.card-footer {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
}

.visual-chat {
  padding: 16px;
  background: #fee9a8;
}

.chat-top,
.screen-top,
.slide-top {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 32px;
  color: rgba(21, 23, 28, 0.7);
  font-size: 13px;
  font-weight: 900;
}

.chat-dot,
.screen-dot,
.slide-dot {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #fff;
}

.chat-bubble {
  max-width: 78%;
  margin: 10px 0;
  padding: 11px 13px;
  border-radius: 8px;
  background: #fff;
  color: #283044;
  font-size: 14px;
  font-weight: 750;
}

.chat-bubble.mine {
  margin-left: auto;
  background: #ffe04e;
}

.visual-receipt {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 18px 28px;
  background: #f2f0e8;
}

.receipt-paper {
  min-height: 216px;
  padding: 18px;
  background:
    linear-gradient(45deg, transparent 75%, #f2f0e8 76%) 0 100% / 16px 16px repeat-x,
    #fffdfa;
  box-shadow: 0 12px 26px rgba(46, 39, 28, 0.12);
}

.receipt-line {
  display: block;
  height: 10px;
  margin-bottom: 12px;
  border-radius: 5px;
  background: #c8c2b4;
}

.receipt-line.short {
  width: 58%;
}

.receipt-line.long {
  width: 100%;
}

.receipt-total {
  display: flex;
  justify-content: space-between;
  margin-top: 24px;
  color: #252525;
  font-size: 17px;
  font-weight: 950;
}

.visual-selfie {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  padding: 8px;
  background: #eef3fb;
}

.selfie-cell {
  position: relative;
  border-radius: 7px;
  background:
    radial-gradient(circle at 50% 35%, #eec19c 0 18%, transparent 19%),
    radial-gradient(circle at 50% 86%, #3f6ec7 0 31%, transparent 32%),
    #dce8fb;
}

.selfie-cell.dim {
  filter: blur(1.2px) saturate(0.82);
}

.selfie-cell.pick {
  outline: 3px solid var(--red);
  outline-offset: -3px;
}

.visual-night {
  background:
    radial-gradient(circle at 74% 24%, #f5e27a 0 7%, transparent 8%),
    radial-gradient(circle at 34% 66%, rgba(255, 255, 255, 0.5) 0 2%, transparent 3%),
    linear-gradient(145deg, #26324a, #141b2a 68%);
}

.night-streak {
  position: absolute;
  width: 160px;
  height: 16px;
  border-radius: 8px;
  background: rgba(255, 220, 116, 0.62);
  filter: blur(4px);
  transform: rotate(-18deg);
}

.night-streak.one {
  left: 18px;
  top: 112px;
}

.night-streak.two {
  right: 14px;
  bottom: 72px;
  background: rgba(116, 198, 255, 0.46);
}

.visual-menu {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 16px;
  background: #f3e4ca;
}

.menu-page {
  padding: 14px;
  border-radius: 7px;
  background: #fffaf0;
}

.menu-title {
  display: block;
  width: 68%;
  height: 16px;
  margin-bottom: 16px;
  border-radius: 8px;
  background: #6b3f2c;
}

.menu-line {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 11px;
}

.menu-line span {
  height: 8px;
  border-radius: 4px;
  background: #c59f76;
}

.menu-line span:first-child {
  flex: 1;
}

.menu-line span:last-child {
  width: 32px;
}

.visual-parcel {
  padding: 18px;
  background: #d8bd93;
}

.parcel-label {
  height: 100%;
  padding: 18px;
  border: 2px solid #5a4329;
  border-radius: 7px;
  background: #f7eddf;
}

.barcode {
  display: block;
  height: 58px;
  margin: 16px 0;
  background: repeating-linear-gradient(90deg, #191919 0 2px, transparent 2px 6px, #191919 6px 9px, transparent 9px 14px);
}

.parcel-line {
  display: block;
  height: 12px;
  margin-bottom: 10px;
  border-radius: 6px;
  background: #a58662;
}

.parcel-line.short {
  width: 55%;
}

.visual-parking {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 14px;
  background: #eef1f5;
}

.parking-cell {
  display: grid;
  place-items: center;
  border-radius: 7px;
  background: #fff;
  color: #8a94a6;
  font-weight: 950;
}

.parking-cell.active {
  background: #ddefff;
  color: var(--blue);
  box-shadow: inset 0 0 0 3px var(--blue);
}

.visual-slide {
  padding: 16px;
  background: #f7f9fd;
}

.slide-board {
  height: 186px;
  margin-top: 8px;
  padding: 18px;
  border-radius: 7px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(24, 32, 48, 0.08);
}

.slide-chart {
  display: flex;
  align-items: end;
  gap: 12px;
  height: 86px;
  margin-top: 18px;
}

.slide-chart span {
  flex: 1;
  border-radius: 7px 7px 0 0;
  background: var(--blue);
}

.slide-chart span:nth-child(2) {
  height: 76%;
  background: var(--green);
}

.slide-chart span:nth-child(1) {
  height: 45%;
}

.slide-chart span:nth-child(3) {
  height: 92%;
  background: var(--yellow);
}

.visual-wifi {
  display: grid;
  place-items: center;
  background: #eef7f2;
}

.wifi-card {
  width: 78%;
  padding: 22px 20px;
  border: 2px dashed #2c8e6c;
  border-radius: 8px;
  background: #fff;
  text-align: center;
}

.wifi-symbol {
  position: relative;
  display: block;
  width: 96px;
  height: 62px;
  margin: 0 auto 18px;
}

.wifi-symbol span {
  position: absolute;
  left: 50%;
  bottom: 0;
  border: 6px solid var(--green);
  border-bottom: 0;
  border-radius: 70px 70px 0 0;
  transform: translateX(-50%);
}

.wifi-symbol span:nth-child(1) {
  width: 96px;
  height: 58px;
}

.wifi-symbol span:nth-child(2) {
  width: 66px;
  height: 40px;
}

.wifi-symbol span:nth-child(3) {
  width: 34px;
  height: 20px;
}

.wifi-card strong {
  display: block;
  font-size: 18px;
}

.visual-screen {
  padding: 16px;
  background: #edf1f7;
}

.screen-body {
  display: grid;
  gap: 10px;
  margin-top: 12px;
  padding: 16px;
  border-radius: 7px;
  background: #fff;
}

.screen-line {
  height: 12px;
  border-radius: 6px;
  background: #bdc6d5;
}

.screen-line.short {
  width: 52%;
}

.screen-button {
  display: grid;
  place-items: center;
  height: 42px;
  margin-top: 12px;
  border-radius: 7px;
  background: var(--blue);
  color: #fff;
  font-weight: 950;
}

.swipe-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 14px;
}

.choice-button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #f5f7fb;
  color: #2b3445;
  font-weight: 900;
}

.choice-button svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.choice-delete {
  color: var(--red);
}

.choice-keep {
  color: var(--green);
}

.result-band {
  background: #eef5ff;
}

.result-card {
  max-width: 760px;
  margin: 0 auto;
  padding: 26px;
  border: 1px solid rgba(36, 107, 254, 0.16);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.result-card h2 {
  font-size: 31px;
}

.user-result {
  margin: 14px 0 20px;
  color: #3d4657;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 750;
}

.preview-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.preview-list li {
  display: grid;
  gap: 4px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

.preview-list span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 850;
}

.preview-list strong {
  font-size: 17px;
}

.vote-grid {
  display: grid;
  gap: 10px;
  width: min(100%, 760px);
  margin: 0 auto;
}

.vote-button {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 58px;
  padding: 0 16px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--ink);
  text-align: left;
  font-weight: 900;
  box-shadow: 0 10px 28px rgba(24, 32, 48, 0.06);
}

.vote-check {
  position: relative;
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  border: 2px solid #c7cfdd;
  border-radius: 50%;
  background: #fff;
}

.vote-check::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 3px;
  width: 7px;
  height: 12px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  opacity: 0;
  transform: rotate(45deg);
}

.vote-button.is-selected {
  border-color: rgba(18, 154, 114, 0.5);
  background: var(--mint);
}

.vote-button.is-selected .vote-check {
  border-color: var(--green);
  background: var(--green);
}

.vote-button.is-selected .vote-check::after {
  opacity: 1;
}

.cta-band {
  display: grid;
  gap: 18px;
  align-items: center;
  max-width: 1120px;
  margin: 0 auto;
}

.cta-copy h2 {
  max-width: 640px;
}

.cta-sub {
  display: block;
  margin-top: 10px;
  color: #4a5364;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 750;
}

.cta-button {
  justify-self: start;
}

.footer {
  padding: 24px 20px 38px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
  text-align: center;
}

.modal[hidden],
.result-band[hidden] {
  display: none;
}

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

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(18, 22, 30, 0.52);
}

.modal-panel {
  position: relative;
  width: min(100%, 430px);
  padding: 24px;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.24);
}

.modal-close {
  position: absolute;
  right: 14px;
  top: 14px;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: var(--radius);
  background: #f3f5f8;
}

.modal-close svg {
  width: 20px;
  height: 20px;
  fill: #3e4655;
}

.subscribe-form {
  display: grid;
  gap: 8px;
  margin-top: 22px;
}

.subscribe-form label {
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
}

.email-row {
  display: grid;
  grid-template-columns: 1fr 86px;
  gap: 8px;
}

.email-row input {
  min-width: 0;
  height: 50px;
  padding: 0 14px;
  border: 1px solid #cdd5e1;
  border-radius: var(--radius);
  outline: none;
}

.email-row input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(36, 107, 254, 0.14);
}

.email-row button {
  background: var(--ink);
  color: #fff;
  font-weight: 900;
}

.form-message {
  min-height: 22px;
  margin: 4px 0 0;
  color: var(--green);
  font-size: 14px;
  font-weight: 800;
}

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

.dm-link {
  display: inline-flex;
  margin-top: 16px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 900;
}

@media (min-width: 760px) {
  .topbar {
    height: 64px;
    padding: 0 32px;
  }

  .hero {
    grid-template-columns: minmax(0, 1fr) 380px;
    align-items: center;
    padding: 54px 32px 64px;
  }

  h1 {
    font-size: 56px;
  }

  .hero-sub {
    font-size: 20px;
  }

  .demo-band,
  .vote-band,
  .cta-band,
  .result-band {
    padding: 64px 32px;
  }

  .section-head h2,
  .cta-copy h2,
  .modal-panel h2 {
    font-size: 34px;
  }

  .cta-band {
    grid-template-columns: minmax(0, 1fr) auto;
  }

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

  .vote-button {
    align-items: flex-start;
    min-height: 110px;
    padding: 18px;
  }
}

@media (max-width: 420px) {
  h1 {
    font-size: 36px;
  }

  .hero-sub {
    font-size: 17px;
  }

  .deck {
    height: 432px;
  }

  .visual {
    min-height: 228px;
  }

  .card-meta h3 {
    font-size: 21px;
  }

  .result-card {
    padding: 22px;
  }

  .result-card h2 {
    font-size: 27px;
  }
}
