:root {
  color-scheme: light;
  --bg: #f5f8ff;
  --card: #ffffff;
  --ink: #16243a;
  --muted: #5d6e8a;
  --line: #dbe4f4;
  --accent: #0f5bd3;
  --accent-2: #0b7a68;
  --warn: #c26a11;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 12% 10%, rgba(15, 91, 211, 0.08), transparent 38%),
    radial-gradient(circle at 88% 0%, rgba(11, 122, 104, 0.08), transparent 35%),
    var(--bg);
  color: var(--ink);
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

.hidden {
  display: none !important;
}

.telco-shell {
  min-height: 100svh;
  padding: 1rem 0.9rem 1.4rem;
  display: grid;
  place-items: start center;
}

.telco-card {
  width: 100%;
  max-width: 460px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(15, 91, 211, 0.08);
  border-radius: 18px;
  box-shadow: 0 12px 28px rgba(20, 38, 68, 0.08);
  padding: 1rem;
}

.rr-main-card {
  position: relative;
  overflow: hidden;
}

.rr-main-card::before {
  content: "";
  position: absolute;
  width: 120%;
  height: 120%;
  top: -10%;
  left: -10%;
  background: radial-gradient(
    circle at 50% 20%,
    rgba(255, 59, 59, 0.08),
    transparent 60%
  );
  pointer-events: none;
}

.eyebrow {
  margin: 0;
  color: var(--accent);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.title {
  margin: 0.35rem 0 0;
  font-size: 1.2rem;
  line-height: 1.2;
}

.subtle {
  margin: 0.45rem 0 0.95rem;
  font-size: 0.88rem;
  line-height: 1.35;
  color: var(--muted);
}

.subtle.small-gap {
  margin-top: 0.4rem;
  margin-bottom: 0.6rem;
}

.loader-box {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1rem 0.9rem;
  display: grid;
  justify-items: center;
  gap: 0.45rem;
  background: rgba(245, 248, 255, 0.8);
}

.spinner {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 3px solid rgba(15, 91, 211, 0.15);
  border-top-color: var(--accent);
  animation: telco-spin 0.9s linear infinite;
}

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

.loader-title {
  margin: 0;
  font-weight: 600;
}

.loader-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.score-panel {
  border-radius: 14px;
  border: 1px solid rgba(15, 91, 211, 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 248, 255, 0.9));
  padding: 0.85rem;
  text-align: center;
}

.score-k {
  margin: 0;
  color: var(--muted);
  font-size: 0.75rem;
}

.score-v {
  margin: 0.25rem 0 0;
  font-size: 2.6rem;
  line-height: 1;
  font-weight: 800;
  color: var(--accent);
}

.score-label {
  margin: 0.3rem 0 0;
  font-size: 0.9rem;
  font-weight: 600;
}

.chips {
  margin-top: 0.65rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.chip {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.28rem 0.55rem;
  font-size: 0.75rem;
  line-height: 1.2;
  border: 1px solid transparent;
}

.chip-good {
  color: #095547;
  border-color: rgba(11, 122, 104, 0.2);
  background: rgba(11, 122, 104, 0.08);
}

.chip-warn {
  color: #8c4a00;
  border-color: rgba(194, 106, 17, 0.2);
  background: rgba(194, 106, 17, 0.08);
}

.headline {
  margin: 0.75rem 0 0;
  font-size: 0.92rem;
  line-height: 1.38;
  font-weight: 600;
}

.highlight {
  margin: 0.45rem 0 0;
  font-size: 0.84rem;
  line-height: 1.38;
  color: var(--muted);
}

.lock-box,
.section-box,
.plan-box {
  margin-top: 0.8rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.8rem;
  background: rgba(255, 255, 255, 0.8);
}

.lock-title,
.section-k,
.plan-name {
  margin: 0;
  font-weight: 700;
  font-size: 0.86rem;
}

.lock-list,
.list,
.plan-list {
  margin: 0.55rem 0 0;
  padding-left: 1.05rem;
  display: grid;
  gap: 0.35rem;
  font-size: 0.83rem;
  line-height: 1.35;
  color: var(--ink);
}

.lock-list {
  color: var(--muted);
}

.primary-btn,
.ghost-btn {
  margin-top: 0.8rem;
  width: 100%;
  border-radius: 12px;
  padding: 0.75rem 0.85rem;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.primary-btn {
  border: 0;
  background: linear-gradient(135deg, #0f5bd3, #0b7a68);
  color: #fff;
}

.ghost-btn {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
}

.primary-btn[disabled],
.ghost-btn[disabled] {
  opacity: 0.7;
  cursor: not-allowed;
}

body[data-telco-page="otp"] .otp-inline-helper {
  min-height: 1.05rem;
  margin-top: -0.15rem;
  font-size: 0.8rem;
  line-height: 1.25;
  color: #0b7a68;
  opacity: 0;
  transition: opacity 160ms ease;
}

body[data-telco-page="otp"] .otp-inline-helper.is-visible {
  opacity: 1;
}

body[data-telco-page="otp"] .rr-progress-track {
  height: 3px;
  width: 100%;
  border-radius: 999px;
  background: rgba(15, 91, 211, 0.08);
  overflow: hidden;
  opacity: 0;
  transition: opacity 160ms ease;
  margin-top: -0.15rem;
}

body[data-telco-page="otp"] .rr-progress-track.is-active {
  opacity: 1;
}

body[data-telco-page="otp"] .rr-progress-fill {
  width: 0%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(34, 197, 94, 0.9), rgba(16, 185, 129, 0.95));
  transition: width 700ms ease-out;
}

body[data-telco-page="otp"] .telco-card.rr-unlock {
  box-shadow:
    0 16px 34px rgba(15, 23, 42, 0.08),
    0 0 0 1px rgba(34, 197, 94, 0.12),
    0 0 0 4px rgba(34, 197, 94, 0.05);
  transition: box-shadow 180ms ease;
}

.stack {
  display: grid;
  gap: 0.5rem;
}

.field {
  display: grid;
  gap: 0.35rem;
}

.field-label {
  font-size: 0.78rem;
  color: var(--muted);
}

.field-input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.8rem 0.85rem;
  font: inherit;
  color: var(--ink);
  background: #fff;
}

.field-input:focus {
  outline: 2px solid rgba(15, 91, 211, 0.16);
  border-color: rgba(15, 91, 211, 0.35);
}

.notice {
  margin-top: 0.75rem;
  border-radius: 12px;
  padding: 0.7rem 0.75rem;
  font-size: 0.83rem;
  line-height: 1.35;
  border: 1px solid var(--line);
  background: rgba(245, 248, 255, 0.8);
}

.notice-error {
  background: rgba(198, 51, 61, 0.08);
  border: 1px solid rgba(198, 51, 61, 0.18);
  color: #8f1d26;
}

.notice-success {
  background: rgba(11, 122, 104, 0.08);
  border: 1px solid rgba(11, 122, 104, 0.18);
  color: #085548;
}

.qna-btn {
  margin-top: 0;
  text-align: left;
}

.qna-answer-k {
  margin: 0;
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.qna-answer-text {
  margin: 0.35rem 0 0;
  font-size: 0.86rem;
  line-height: 1.4;
  color: var(--ink);
}

.habit-hook {
  margin-top: 0.8rem;
  border: 1px dashed rgba(15, 91, 211, 0.2);
  border-radius: 12px;
  padding: 0.7rem 0.75rem;
  background: rgba(15, 91, 211, 0.03);
}

.habit-k {
  margin: 0;
  font-size: 0.75rem;
  color: var(--muted);
  font-weight: 700;
}

.habit-text {
  margin: 0.25rem 0 0;
  font-size: 0.86rem;
  font-weight: 600;
}

.plan-price {
  margin: 0.25rem 0 0;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--accent);
}

.text-link {
  display: inline-block;
  margin-top: 0.9rem;
  color: var(--accent);
  text-decoration: none;
  font-size: 0.83rem;
}

.text-link:hover {
  text-decoration: underline;
}

body[data-telco-page="home"] {
  color: #e9efff;
  background:
    radial-gradient(circle at 18% 12%, rgba(91, 121, 255, 0.18), transparent 42%),
    radial-gradient(circle at 82% 6%, rgba(74, 160, 255, 0.12), transparent 36%),
    radial-gradient(circle at 52% 88%, rgba(86, 70, 180, 0.12), transparent 46%),
    linear-gradient(180deg, #0b1020 0%, #111a35 100%);
}

body[data-telco-page="home"]::before,
body[data-telco-page="home"]::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-repeat: repeat;
}

body[data-telco-page="home"]::before {
  opacity: 0.28;
  background-image:
    radial-gradient(circle at 20px 30px, rgba(255, 255, 255, 0.98) 1.15px, transparent 2px),
    radial-gradient(circle at 90px 80px, rgba(203, 221, 255, 0.78) 1.05px, transparent 1.95px),
    radial-gradient(circle at 150px 40px, rgba(255, 255, 255, 0.72) 1px, transparent 1.9px);
  background-size: 180px 140px, 240px 190px, 280px 220px;
  animation: telco-stars-drift-a 90s linear infinite;
}

body[data-telco-page="home"]::after {
  opacity: 0.15;
  background-image:
    radial-gradient(circle at 50px 60px, rgba(120, 163, 255, 0.95) 1.2px, transparent 2.1px),
    radial-gradient(circle at 120px 25px, rgba(255, 255, 255, 0.88) 1.05px, transparent 1.95px);
  background-size: 220px 170px, 260px 210px;
  animation: telco-stars-drift-b 120s linear infinite;
}

@keyframes telco-stars-drift-a {
  to {
    transform: translate3d(-40px, 20px, 0);
  }
}

@keyframes telco-stars-drift-b {
  to {
    transform: translate3d(30px, -24px, 0);
  }
}

body[data-telco-page="home"] .telco-shell {
  position: relative;
  z-index: 1;
  padding-top: 1.15rem;
}

body[data-telco-page="home"] .telco-home-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: linear-gradient(
    180deg,
    rgba(18, 28, 56, 0.88) 0%,
    rgba(16, 24, 49, 0.92) 100%
  );
  border: 1px solid rgba(138, 169, 255, 0.16);
  box-shadow:
    0 18px 44px rgba(4, 8, 20, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  color: #eef3ff;
}

body[data-telco-page="home"] .telco-home-card::before {
  content: "";
  position: absolute;
  inset: -18% -20% 42% 36%;
  z-index: 0;
  pointer-events: none;
  border-radius: 999px;
  opacity: 0.9;
  background:
    radial-gradient(circle at 40% 44%, rgba(255, 214, 116, 0.18) 0%, rgba(255, 214, 116, 0.09) 22%, transparent 62%),
    radial-gradient(circle at 52% 46%, rgba(142, 165, 255, 0.19) 0%, rgba(142, 165, 255, 0.1) 26%, transparent 60%),
    radial-gradient(circle at 58% 38%, rgba(111, 132, 248, 0.16) 0%, rgba(111, 132, 248, 0.08) 26%, transparent 58%),
    radial-gradient(circle at 50% 52%, rgba(255, 231, 170, 0.11) 0%, transparent 50%),
    radial-gradient(circle at 34% 36%, rgba(255, 248, 226, 0.96) 1.45px, transparent 2.35px),
    radial-gradient(circle at 47% 29%, rgba(255, 228, 170, 0.9) 1.15px, transparent 2.05px),
    radial-gradient(circle at 62% 43%, rgba(245, 232, 206, 0.86) 1.2px, transparent 2.1px),
    radial-gradient(circle at 44% 55%, rgba(214, 226, 255, 0.84) 1px, transparent 1.9px),
    radial-gradient(circle at 56% 58%, rgba(255, 236, 189, 0.78) 0.95px, transparent 1.85px),
    radial-gradient(circle at 68% 34%, rgba(201, 219, 255, 0.72) 0.95px, transparent 1.85px);
  filter: blur(0.15px);
  transform-origin: 52% 48%;
  animation: telco-nebula-cluster 32s ease-in-out infinite alternate;
}

body[data-telco-page="home"] .telco-home-card::after,
.telco-welcome .telco-card::after {
  content: "";
  position: absolute;
  width: 120%;
  height: 120%;
  top: -10%;
  left: -10%;
  z-index: 0;
  background: radial-gradient(
    circle at 50% 20%,
    rgba(255, 59, 59, 0.08),
    transparent 60%
  );
  pointer-events: none;
}

body[data-telco-page="home"] .telco-home-card > * {
  position: relative;
  z-index: 1;
}

@keyframes telco-nebula-cluster {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.84;
  }
  50% {
    transform: translate3d(-8px, 4px, 0) scale(1.03);
    opacity: 0.96;
  }
  100% {
    transform: translate3d(7px, -5px, 0) scale(1.015);
    opacity: 0.88;
  }
}

body[data-telco-page="home"] .telco-home-eyebrow {
  color: rgba(189, 208, 255, 0.9);
  letter-spacing: 0.1em;
}

.rr-signal-topline {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.rr-signal-topline .telco-home-eyebrow {
  margin: 0;
}

.rr-signal-meter {
  display: flex;
  gap: 4px;
  flex: 0 0 auto;
}

.rr-signal-meter span {
  width: 6px;
  height: 18px;
  border-radius: 3px;
  background: rgba(255,255,255,0.15);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.rr-signal-meter span.filled {
  background: #ff3b3b;
  box-shadow: 0 0 8px rgba(255,59,59,0.6);
}

body[data-telco-page="home"] .telco-home-title {
  margin-top: 0.25rem;
  color: #f0f5ff;
  font-size: 1.05rem;
  line-height: 1.2;
  opacity: 0.8;
}

body[data-telco-page="home"] .loader-box {
  border-color: rgba(145, 171, 242, 0.16);
  background: rgba(14, 21, 42, 0.55);
}

body[data-telco-page="home"] .spinner {
  border-color: rgba(126, 160, 255, 0.18);
  border-top-color: #88aaff;
}

body[data-telco-page="home"] .loader-title {
  color: #e8efff;
}

body[data-telco-page="home"] .loader-note {
  color: rgba(205, 216, 244, 0.8);
}

body[data-telco-page="home"] .notice-error {
  background: rgba(184, 74, 78, 0.14);
  border-color: rgba(255, 146, 152, 0.22);
  color: #ffd3d5;
}

.telco-home-result {
  display: grid;
  gap: 0.65rem;
}

.home-reveal-group {
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity 520ms ease,
    transform 620ms ease;
}

.home-reveal-group.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.telco-home-headline-wrap {
  margin-top: 0.15rem;
}

.telco-home-heading {
  margin: 0;
  font-size: 1.78rem;
  line-height: 1.16;
  color: #f5f8ff;
  letter-spacing: 0.01em;
  text-shadow: 0 0 22px rgba(132, 166, 255, 0.12);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.telco-home-narrative {
  display: grid;
  gap: 0.08rem;
}

.telco-home-narrative p {
  margin: 0;
  color: rgba(230, 238, 255, 0.92);
  font-size: 1.08rem;
  line-height: 1.38;
}

.telco-home-windows {
  display: grid;
  gap: 0.45rem;
}

.telco-window-line {
  margin: 0;
  border-radius: 12px;
  padding: 0.72rem 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 1rem;
  line-height: 1.3;
  font-weight: 600;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.telco-window-line-blue {
  background: rgba(70, 104, 187, 0.2);
  border-color: rgba(109, 148, 247, 0.22);
  color: #d9e6ff;
}

.telco-window-line-orange {
  background: rgba(155, 101, 33, 0.18);
  border-color: rgba(240, 176, 95, 0.18);
  color: #ffe2bd;
}

.telco-window-line.rr-now-active {
  display: flex;
  align-items: center;
  gap: 6px;
}

.telco-window-line.rr-now-active::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #22c55e;
  flex: 0 0 auto;
}

.telco-window-line-secondary-compact,
.telco-window-line-secondary-past {
  border-radius: 10px;
  padding: 0.46rem 0.64rem;
  font-size: 0.9rem;
  line-height: 1.25;
  font-weight: 500;
  box-shadow: none;
  background: rgba(255, 255, 255, 0.035);
  border-color: rgba(255, 255, 255, 0.075);
  color: rgba(233, 241, 255, 0.78);
}

.telco-window-line-secondary-compact.telco-window-line-orange,
.telco-window-line-secondary-past.telco-window-line-orange {
  background: rgba(240, 176, 95, 0.06);
  border-color: rgba(240, 176, 95, 0.1);
  color: rgba(255, 229, 193, 0.8);
}

.telco-window-line-secondary-compact.telco-window-line-blue,
.telco-window-line-secondary-past.telco-window-line-blue {
  background: rgba(109, 148, 247, 0.06);
  border-color: rgba(109, 148, 247, 0.1);
  color: rgba(220, 233, 255, 0.8);
}

.rr-time-pill,
.telco-window-line {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 6px 12px;
  border-radius: 16px;
  font-weight: 500;
}

.rr-time-pill.active,
.telco-window-line.rr-now-active {
  background: rgba(255,59,59,0.15);
  border: 1px solid rgba(255,59,59,0.4);
  box-shadow: 0 0 6px rgba(255,59,59,0.4);
}

.telco-home-bridge {
  margin: 0.1rem 0 0;
  color: rgba(218, 228, 252, 0.76);
  font-size: 1rem;
  line-height: 1.4;
}

body[data-telco-page="home"] .telco-home-lock {
  margin-top: 0.55rem;
  position: relative;
  overflow: hidden;
  margin-left: -1rem;
  margin-right: -1rem;
  display: grid;
  gap: 0.9rem;
  padding: 1.05rem 0 0.9rem;
  border: 0;
  border-radius: 0;
  background:
    radial-gradient(
      120% 85% at 50% 100%,
      rgba(227, 29, 45, 0.14) 0%,
      rgba(227, 29, 45, 0.08) 26%,
      rgba(227, 29, 45, 0) 66%
    ),
    linear-gradient(
      180deg,
      rgba(11, 17, 34, 0.02) 0%,
      rgba(10, 15, 28, 0.34) 12%,
      rgba(9, 13, 25, 0.62) 42%,
      rgba(8, 11, 21, 0.82) 100%
    );
  box-shadow: none;
}

body[data-telco-page="home"] .telco-home-lock::before {
  content: "";
  position: absolute;
  inset: 0 1rem auto 1rem;
  height: 1px;
  background:
    linear-gradient(90deg,
      rgba(255, 211, 116, 0) 0%,
      rgba(255, 211, 116, 0.68) 22%,
      rgba(137, 170, 255, 0.82) 55%,
      rgba(255, 211, 116, 0.5) 82%,
      rgba(255, 211, 116, 0) 100%);
  opacity: 0.85;
  box-shadow:
    0 0 12px rgba(140, 170, 255, 0.2),
    0 0 16px rgba(255, 211, 116, 0.14);
}

body[data-telco-page="home"] .telco-home-lock::after {
  content: "";
  position: absolute;
  right: 1rem;
  top: 0.95rem;
  width: 42%;
  height: 42%;
  pointer-events: none;
  opacity: 0.14;
  border-radius: 10px;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.9) 0 1px,
      transparent 1px 10px,
      rgba(255, 255, 255, 0.65) 10px 11px,
      transparent 11px 20px,
      rgba(255, 255, 255, 0.6) 20px 21px,
      transparent 21px 30px,
      rgba(255, 255, 255, 0.45) 30px 31px,
      transparent 31px 100%
    );
  filter: blur(2.6px);
  transform: rotate(-3deg);
}

body[data-telco-page="home"] .telco-home-lock > * {
  position: relative;
  z-index: 1;
}

.telco-home-lock-hint {
  margin: 0;
  padding: 0 1rem;
  text-align: center;
  color: rgba(244, 248, 255, 0.99);
  font-size: 1.04rem;
  line-height: 1.42;
  font-weight: 600;
  letter-spacing: 0.005em;
  text-shadow:
    0 0 14px rgba(109, 145, 255, 0.08),
    0 0 20px rgba(255, 211, 116, 0.05);
}

body[data-telco-page="home"] .telco-home-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto;
  margin-left: 1rem;
  margin-right: 1rem;
  margin-top: 0;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  font-size: clamp(1.12rem, 4.6vw, 1.28rem);
  line-height: 1.15;
  letter-spacing: -0.01em;
  font-weight: 800;
  padding: 1rem 0.95rem;
  border-radius: 14px;
  border: 1px solid rgba(255, 170, 170, 0.2);
  color: #ffffff;
  background: linear-gradient(135deg, #cf1026 0%, #e31d2d 46%, #b80a1b 100%);
  box-shadow:
    0 14px 30px rgba(207, 16, 38, 0.34),
    0 0 0 rgba(230, 29, 45, 0),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
  animation: telco-cta-glow 3.2s ease-in-out infinite;
}

body[data-telco-page="home"] .telco-home-secondary-wrap {
  padding: 0 1rem 0.05rem;
}

body[data-telco-page="home"] .telco-home-secondary-window {
  margin: 0;
}

@keyframes telco-cta-glow {
  0%,
  100% {
    box-shadow:
      0 12px 26px rgba(207, 16, 38, 0.24),
      0 0 0 rgba(230, 29, 45, 0);
  }
  50% {
    box-shadow:
      0 15px 32px rgba(227, 29, 45, 0.34),
      0 0 18px rgba(227, 29, 45, 0.22);
  }
}

@media (max-width: 360px) {
  body[data-telco-page="home"] .telco-home-cta {
    font-size: 1.06rem;
    padding-left: 0.68rem;
    padding-right: 0.68rem;
    margin-left: 0.85rem;
    margin-right: 0.85rem;
  }
}

@media (max-height: 600px) {
  body[data-telco-page="home"] .telco-shell {
    padding-top: 0.9rem;
    padding-bottom: 1rem;
  }

  .rr-signal-meter {
    gap: 4px;
  }

  .rr-signal-meter span {
    width: 4px;
    height: 10px;
    border-radius: 2px;
  }

  body[data-telco-page="home"] .telco-home-card {
    padding: 0.86rem 0.9rem 0.9rem;
  }

  .telco-home-result {
    gap: 0.46rem;
  }

  .telco-home-headline-wrap {
    margin-top: 0.05rem;
  }

  .telco-home-narrative p {
    line-height: 1.35;
  }

  .telco-home-windows {
    gap: 0.3rem;
  }

  body[data-telco-page="welcome"] #welcome-recap-window-list {
    gap: 0.3rem;
  }

  body[data-telco-page="welcome"] #welcome-result > .rr-card {
    margin-top: 18px;
  }

  .telco-window-line {
    padding: 0.5rem 0.66rem;
    font-size: 0.93rem;
    line-height: 1.22;
  }

  .telco-window-line.rr-now-active {
    gap: 5px;
  }

  .telco-window-line.rr-now-active::before {
    width: 5px;
    height: 5px;
  }

  .telco-window-line-secondary-compact,
  .telco-window-line-secondary-past {
    padding: 0.38rem 0.56rem;
    font-size: 0.86rem;
    line-height: 1.22;
  }

  .telco-welcome .simulation-option {
    padding: 12px;
  }

  .telco-welcome #relasi-sim-choice-list .simulation-option:first-child {
    margin-top: 16px;
  }

  .telco-home-bridge {
    margin-top: 0;
    line-height: 1.35;
  }

  body[data-telco-page="home"] .telco-home-lock {
    margin-top: 0.32rem;
    gap: 0.62rem;
    padding-top: 0.86rem;
    padding-bottom: 0.62rem;
  }

  .telco-home-lock-hint {
    line-height: 1.35;
  }

  body[data-telco-page="home"] .telco-home-lock-hint:nth-of-type(2) {
    display: none;
  }

  body[data-telco-page="home"] .telco-home-cta {
    padding-top: 0.84rem;
    padding-bottom: 0.84rem;
  }

  body[data-telco-page="home"] .telco-home-secondary-wrap {
    padding-bottom: 0;
  }
}

body[data-telco-page="welcome"] .title {
  font-size: 1.42rem;
  line-height: 1.18;
}

body[data-telco-page="welcome"] .subtle {
  font-size: 1rem;
  line-height: 1.45;
}

body[data-telco-page="welcome"] .loader-title {
  font-size: 1.04rem;
  line-height: 1.32;
}

body[data-telco-page="welcome"] .loader-note {
  font-size: 0.92rem;
}

body[data-telco-page="welcome"] .score-k {
  font-size: 0.84rem;
}

body[data-telco-page="welcome"] .score-v {
  font-size: 3rem;
}

body[data-telco-page="welcome"] .score-label {
  font-size: 1rem;
}

body[data-telco-page="welcome"] .chip {
  font-size: 0.84rem;
  padding: 0.34rem 0.65rem;
}

body[data-telco-page="welcome"] .section-k {
  font-size: 1.06rem;
  line-height: 1.28;
  color: #12284a;
}

body[data-telco-page="welcome"] #welcome-result > .section-box:nth-child(3) .section-k {
  font-size: 1.1rem;
  line-height: 1.3;
  margin-bottom: 0.5rem;
}

body[data-telco-page="welcome"] .list {
  font-size: 0.94rem;
  line-height: 1.42;
}

body[data-telco-page="welcome"] .highlight {
  font-size: 0.95rem;
  line-height: 1.46;
}

body[data-telco-page="welcome"] .qna-btn {
  font-size: 0.95rem;
  line-height: 1.35;
}

body[data-telco-page="welcome"] .qna-answer-k {
  font-size: 0.78rem;
}

body[data-telco-page="welcome"] .qna-answer-text {
  font-size: 0.96rem;
  line-height: 1.46;
  overflow-wrap: anywhere;
  word-break: break-word;
}

body[data-telco-page="welcome"] .habit-k {
  font-size: 0.82rem;
}

body[data-telco-page="welcome"] .habit-text {
  font-size: 0.96rem;
}

.telco-welcome {
  color: #e8eefc;
  background:
    radial-gradient(circle at 18% 10%, rgba(76, 108, 199, 0.09), transparent 40%),
    radial-gradient(circle at 82% 8%, rgba(56, 122, 192, 0.07), transparent 34%),
    radial-gradient(circle at 50% 120%, rgba(18, 33, 74, 0.28), transparent 65%),
    linear-gradient(180deg, #0d1426 0%, #111a31 58%, #0d1424 100%);
  position: relative;
}

.telco-welcome::before,
.telco-welcome::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
}

.telco-welcome::before {
  z-index: 0;
  opacity: 0.13;
  background-repeat: repeat;
  background-image:
    radial-gradient(circle at 24px 30px, rgba(255, 255, 255, 0.85) 0.95px, transparent 1.8px),
    radial-gradient(circle at 92px 84px, rgba(193, 217, 255, 0.58) 0.9px, transparent 1.7px);
  background-size: 260px 210px, 340px 280px;
  animation: telco-stars-drift-a 170s linear infinite;
}

.telco-welcome::after {
  z-index: 0;
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.06), transparent 52%),
    radial-gradient(circle at 50% 50%, transparent 40%, rgba(7, 10, 18, 0.35) 100%);
}

.telco-welcome .telco-shell {
  position: relative;
  z-index: 1;
  min-height: 100svh;
}

.telco-welcome .telco-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(15, 24, 44, 0.88), rgba(14, 22, 39, 0.84));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 24px 48px rgba(3, 7, 16, 0.36),
    inset 0 1px 0 rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.telco-welcome .telco-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 78% 18%, rgba(214, 178, 84, 0.07), transparent 34%),
    radial-gradient(circle at 18% 12%, rgba(80, 124, 219, 0.08), transparent 38%);
  opacity: 0.65;
  z-index: 0;
}

.telco-welcome .telco-card > * {
  position: relative;
  z-index: 1;
}

.telco-welcome .eyebrow {
  color: rgba(190, 211, 255, 0.88);
  letter-spacing: 0.055em;
}

.telco-welcome .title {
  color: #f3f7ff;
  letter-spacing: -0.01em;
  text-shadow: none;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.telco-welcome .section-k {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.telco-welcome .subtle,
.telco-welcome .loader-note,
.telco-welcome .highlight {
  color: rgba(216, 226, 248, 0.8);
}

.telco-welcome .subtle,
.telco-welcome .highlight,
.telco-welcome .qna-answer-text,
.telco-welcome .list {
  line-height: 1.65;
}

.telco-welcome .loader-box {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.045);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 8px 22px rgba(2, 6, 12, 0.22);
}

.telco-welcome .spinner {
  border-color: rgba(118, 153, 233, 0.16);
  border-top-color: rgba(184, 206, 255, 0.95);
}

.telco-welcome .section-box,
.telco-welcome .habit-hook,
.telco-welcome [data-qna-item] {
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(3, 7, 16, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.telco-welcome .section-box {
  padding: 0.9rem;
}

.telco-welcome .habit-hook {
  border-style: solid;
  background: rgba(255, 255, 255, 0.045);
}

.telco-welcome .rr-card {
  border-radius: 18px;
  padding: 16px;
  margin-top: 18px;
}

.telco-welcome #welcome-result > .rr-card:first-child {
  margin-top: 0;
}

.telco-welcome .rr-card--primary {
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.08),
    rgba(255,255,255,0.04)
  );
  border: 1px solid rgba(255,255,255,0.15);
  box-shadow: 0 0 18px rgba(255,59,59,0.08);
}

.telco-welcome .rr-card--interactive {
  background: linear-gradient(
    180deg,
    rgba(30,40,80,0.6),
    rgba(15,20,40,0.8)
  );
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 0 22px rgba(100,150,255,0.08);
  position: relative;
  overflow: hidden;
}

.telco-welcome .section-k,
.telco-welcome .habit-k {
  color: rgba(238, 244, 255, 0.94);
  letter-spacing: -0.01em;
  font-weight: 700;
}

.telco-welcome .list {
  list-style: none;
  padding-left: 0;
  margin-top: 0.65rem;
  gap: 0.5rem;
}

.telco-welcome #welcome-recap-window-list {
  gap: 0.45rem;
}

.telco-welcome #welcome-recap-window-list li:not(.telco-window-line) {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.42rem;
  padding: 0.42rem 0.62rem 0.42rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.035);
  color: rgba(236, 243, 255, 0.94);
  font-size: 0.88rem;
  line-height: 1.3;
}

.telco-welcome #welcome-recap-window-list li:not(.telco-window-line)::before {
  content: "";
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: rgba(149, 181, 255, 0.9);
  box-shadow: 0 0 0 3px rgba(149, 181, 255, 0.12);
  flex: 0 0 auto;
}

.telco-welcome #welcome-recap-window-list li:not(.telco-window-line):first-child::before {
  background: rgba(255, 179, 94, 0.95);
  box-shadow: 0 0 0 3px rgba(255, 179, 94, 0.12);
}

.telco-welcome .notice {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(233, 240, 255, 0.94);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.telco-welcome .notice-error {
  background: rgba(190, 52, 68, 0.13);
  border-color: rgba(231, 111, 126, 0.24);
  color: #ffd9de;
}

.telco-welcome #welcome-result .rr-card p {
  margin-top: 0;
  margin-bottom: 10px;
}

.telco-welcome #welcome-result .rr-card p:last-child {
  margin-bottom: 0;
}

.telco-welcome #welcome-result .rr-card .subtle,
.telco-welcome #welcome-result .rr-card .highlight,
.telco-welcome #welcome-result .rr-card .qna-answer-text,
.telco-welcome #welcome-result .rr-card .habit-text {
  opacity: 0.9;
}

.telco-welcome .simulation-option {
  background: #ffffff;
  color: #13203d;
  border-radius: 14px;
  padding: 14px;
  margin-top: 12px;
  font-weight: 600;
  line-height: 1.35;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  box-shadow: 0 1px 0 rgba(0,0,0,0.03);
  overflow-wrap: anywhere;
}

.telco-welcome #relasi-sim-choice-list .simulation-option:first-child {
  margin-top: 20px;
}

.telco-welcome .simulation-option:hover {
  transform: translateY(-1px);
}

.telco-welcome .simulation-option:active {
  transform: translateY(1px);
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.1);
}

.telco-welcome .simulation-option[disabled] {
  transform: none;
}

.telco-welcome .simulation-footer {
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 13px;
  opacity: 0.75;
}

.telco-welcome [data-qna-item] {
  position: relative;
  padding: 0.55rem;
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.telco-welcome [data-qna-item] .stack {
  gap: 0.45rem;
}

.telco-welcome [data-qna-item]::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  bottom: 10px;
  width: 3px;
  border-radius: 999px;
  background: transparent;
  transition: background 180ms ease, box-shadow 180ms ease;
}

.telco-welcome [data-qna-item]:has([data-qna-answer-wrap]:not(.hidden)),
.telco-welcome [data-qna-item]:has([data-qna-error]:not(.hidden)) {
  background: rgba(255, 255, 255, 0.075);
  border-color: rgba(131, 171, 255, 0.22);
  box-shadow:
    0 14px 30px rgba(3, 7, 16, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.035);
}

.telco-welcome [data-qna-item]:has([data-qna-answer-wrap]:not(.hidden))::before,
.telco-welcome [data-qna-item]:has([data-qna-error]:not(.hidden))::before {
  background: linear-gradient(180deg, rgba(135, 173, 255, 0.95), rgba(92, 129, 220, 0.8));
  box-shadow: 0 0 14px rgba(118, 157, 255, 0.22);
}

.telco-welcome .qna-btn {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(244, 248, 255, 0.96);
  border-radius: 14px;
  padding: 0.78rem 0.85rem;
  transition: background-color 160ms ease, border-color 160ms ease, filter 160ms ease;
}

.telco-welcome .qna-btn:hover {
  background: rgba(255, 255, 255, 0.055);
  border-color: rgba(255, 255, 255, 0.12);
}

.telco-welcome .qna-btn[disabled] {
  opacity: 0.78;
}

.telco-welcome [data-qna-item]:has(.qna-btn[disabled]) [data-qna-answer-wrap]:not(.hidden) {
  position: relative;
  overflow: hidden;
}

.telco-welcome [data-qna-item]:has(.qna-btn[disabled]) [data-qna-answer-wrap]:not(.hidden)::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    rgba(255, 255, 255, 0) 20%,
    rgba(255, 255, 255, 0.035) 45%,
    rgba(255, 255, 255, 0) 70%
  );
  transform: translateX(-120%);
  animation: telco-qna-shimmer 1.4s ease infinite;
  pointer-events: none;
}

@keyframes telco-qna-shimmer {
  to {
    transform: translateX(120%);
  }
}

.telco-welcome .qna-answer-k {
  color: rgba(198, 214, 248, 0.82);
  letter-spacing: 0.04em;
}

.telco-welcome .qna-answer-text {
  color: rgba(240, 246, 255, 0.94);
  line-height: 1.68;
}

.telco-welcome [data-qna-answer-wrap] {
  margin-top: 0.15rem;
  background: rgba(255, 255, 255, 0.035);
  border-color: rgba(255, 255, 255, 0.08);
}

.telco-welcome .text-link {
  color: rgba(188, 207, 248, 0.9);
}

.telco-welcome .text-link:hover {
  color: #f0f6ff;
  text-decoration: none;
}

.telco-welcome [data-qna-detail-link] {
  margin-top: 0.35rem;
  font-size: 0.82rem;
  line-height: 1.3;
  color: rgba(188, 207, 248, 0.92);
  text-decoration: none;
  transition: color 150ms ease, opacity 150ms ease, filter 150ms ease;
}

.telco-welcome [data-qna-detail-link]::after {
  content: " ›";
  font-weight: 700;
  color: rgba(188, 207, 248, 0.85);
}

.telco-welcome [data-qna-detail-link]:hover {
  color: #f2f7ff;
  filter: brightness(1.06);
  text-decoration: none;
}

.telco-welcome [data-qna-detail-link]:hover::after {
  color: #f2f7ff;
}

.telco-welcome .loader-title,
.telco-welcome .loader-note,
.telco-welcome .qna-answer-k,
.telco-welcome .habit-k {
  text-shadow: none;
}

.telco-welcome .qna-answer-text,
.telco-welcome .subtle,
.telco-welcome .highlight,
.telco-welcome .habit-text {
  text-wrap: pretty;
}

/* Force readable text colors on /t/welcome after older light-theme selectors. */
body.telco-welcome[data-telco-page="welcome"] .section-box .section-k,
body.telco-welcome[data-telco-page="welcome"] .habit-hook .habit-k {
  color: rgba(242, 247, 255, 0.95);
}

body.telco-welcome[data-telco-page="welcome"] #welcome-active-phone,
body.telco-welcome[data-telco-page="welcome"] .section-box .subtle,
body.telco-welcome[data-telco-page="welcome"] .section-box .highlight,
body.telco-welcome[data-telco-page="welcome"] .habit-hook .habit-text,
body.telco-welcome[data-telco-page="welcome"] .loader-title,
body.telco-welcome[data-telco-page="welcome"] .loader-note {
  color: rgba(220, 230, 249, 0.9);
}

body.telco-welcome[data-telco-page="welcome"] #welcome-meaning-lines,
body.telco-welcome[data-telco-page="welcome"] #welcome-meaning-lines p {
  color: rgba(237, 243, 255, 0.94);
}

body.telco-welcome[data-telco-page="welcome"] .text-link {
  color: rgba(199, 216, 252, 0.94);
}

body.telco-welcome[data-telco-page="welcome"] .text-link:hover {
  color: #f3f7ff;
}

/* High-specificity /t/welcome card + simulation overrides (wins over older shared rules) */
body.telco-welcome[data-telco-page="welcome"] .rr-card {
  border-radius: 18px;
  padding: 16px;
  margin-top: 18px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.04);
}

body.telco-welcome[data-telco-page="welcome"] #welcome-result > .rr-card:first-child {
  margin-top: 0;
}

body.telco-welcome[data-telco-page="welcome"] .rr-card--primary {
  background: linear-gradient(180deg, rgba(255,255,255,0.10), rgba(255,255,255,0.04));
  border: 1px solid rgba(255,255,255,0.16);
  box-shadow: 0 0 22px rgba(255,59,59,0.10);
}

body.telco-welcome[data-telco-page="welcome"] .rr-card--interactive {
  background: linear-gradient(180deg, rgba(30,40,80,0.65), rgba(15,20,40,0.85));
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 0 26px rgba(120,170,255,0.10);
  position: relative;
  overflow: hidden;
}

body.telco-welcome[data-telco-page="welcome"] .simulation-option {
  background: #ffffff;
  border-radius: 14px;
  padding: 14px;
  margin-top: 12px;
  font-weight: 650;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 6px 18px rgba(0,0,0,0.20);
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}

body.telco-welcome[data-telco-page="welcome"] .simulation-option:active {
  transform: translateY(1px);
  box-shadow: 0 3px 10px rgba(0,0,0,0.18);
}

body.telco-welcome[data-telco-page="welcome"] #relasi-sim-choice-list .simulation-option:first-child {
  margin-top: 20px;
}

body.telco-welcome[data-telco-page="welcome"] .simulation-footer {
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.12);
  font-size: 13px;
  opacity: 0.80;
}

body.telco-welcome[data-telco-page="welcome"] .section-box .section-k,
body.telco-welcome[data-telco-page="welcome"] .habit-hook .habit-k {
  font-weight: 700;
}

body.telco-welcome[data-telco-page="welcome"] .section-box p,
body.telco-welcome[data-telco-page="welcome"] .habit-hook p {
  margin-top: 0;
  margin-bottom: 10px;
}

body.telco-welcome[data-telco-page="welcome"] .section-box p:last-child,
body.telco-welcome[data-telco-page="welcome"] .habit-hook p:last-child {
  margin-bottom: 0;
}

body.telco-welcome[data-telco-page="welcome"] .section-box .subtle,
body.telco-welcome[data-telco-page="welcome"] .section-box .highlight,
body.telco-welcome[data-telco-page="welcome"] .habit-hook .habit-text {
  opacity: 0.9;
}

@media (max-height: 600px) {
  body.telco-welcome[data-telco-page="welcome"] .simulation-option {
    padding: 12px;
  }

  body.telco-welcome[data-telco-page="welcome"] #relasi-sim-choice-list .simulation-option:first-child {
    margin-top: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  body[data-telco-page="home"]::before,
  body[data-telco-page="home"]::after {
    animation: none;
  }

  .home-reveal-group {
    transition: none;
  }

  body[data-telco-page="home"] .telco-home-cta {
    animation: none;
  }

  .telco-welcome::before {
    animation: none;
  }

  .telco-welcome [data-qna-item]:has(.qna-btn[disabled]) [data-qna-answer-wrap]:not(.hidden)::after {
    animation: none;
  }
}

/* /t/welcome refined card/simulation hierarchy (kept last to win naturally) */
body.telco-welcome[data-telco-page="welcome"] .rr-card {
  border-radius: 20px;
  padding: 16px;
  margin-top: 18px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.035);
  box-shadow: 0 10px 26px rgba(0,0,0,0.30);
}

body.telco-welcome[data-telco-page="welcome"] .rr-card--primary {
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
  border-color: rgba(255,255,255,0.14);
  position: relative;
  overflow: hidden;
  padding-top: 18px;
}

body.telco-welcome[data-telco-page="welcome"] .rr-card--primary::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 6px;
  background: linear-gradient(
    90deg,
    rgba(255,59,59,0.0) 0%,
    rgba(255,59,59,0.85) 15%,
    rgba(255,59,59,0.85) 85%,
    rgba(255,59,59,0.0) 100%
  );
  box-shadow: 0 0 14px rgba(255,59,59,0.18);
  opacity: 0.95;
}

body.telco-welcome[data-telco-page="welcome"] .rr-card--interactive {
  background: linear-gradient(180deg, rgba(22,30,56,0.55), rgba(14,18,34,0.75));
  border-color: rgba(255,255,255,0.12);
  position: relative;
  overflow: hidden;
  padding-top: 18px;
}

body.telco-welcome[data-telco-page="welcome"] .rr-card--interactive::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 6px;
  background: linear-gradient(
    90deg,
    rgba(140,180,255,0.0) 0%,
    rgba(140,180,255,0.55) 15%,
    rgba(140,180,255,0.55) 85%,
    rgba(140,180,255,0.0) 100%
  );
  box-shadow: 0 0 16px rgba(140,180,255,0.15);
  opacity: 0.95;
}

body.telco-welcome[data-telco-page="welcome"] .rr-card--interactive::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(255,255,255,0.05), transparent 55%);
  pointer-events: none;
}

body.telco-welcome[data-telco-page="welcome"] .rr-sim-btn {
  width: 100%;
  background: #ffffff;
  color: #0b0f1a;
  border-radius: 16px;
  padding: 14px;
  margin-top: 12px;
  font-weight: 700;
  border: 1px solid rgba(0,0,0,0.07);
  box-shadow: 0 8px 16px rgba(0,0,0,0.18);
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}

body.telco-welcome[data-telco-page="welcome"] .rr-sim-btn:active {
  transform: translateY(1px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.16);
}

body.telco-welcome[data-telco-page="welcome"] .rr-sim-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 18px rgba(0,0,0,0.20);
}

body.telco-welcome[data-telco-page="welcome"] .rr-card--interactive .rr-sim-btn:first-of-type {
  margin-top: 18px;
}

body.telco-welcome[data-telco-page="welcome"] .rr-sim-foot {
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.10);
  font-size: 13px;
  opacity: 0.82;
}

/* /t/welcome daily closing footer (kept last to override older habit-hook styles) */
body.telco-welcome[data-telco-page="welcome"] .rr-daily-footer {
  margin-top: 30px;
  padding: 20px 16px;
  border-radius: 18px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.08);
  position: relative;
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
}

body.telco-welcome[data-telco-page="welcome"] .rr-daily-footer::before {
  content: "";
  position: absolute;
  top: -16px;
  left: 22%;
  right: 22%;
  height: 1px;
  background: rgba(255,255,255,0.10);
  opacity: 0.8;
}

body.telco-welcome[data-telco-page="welcome"] .rr-daily-footer h3,
body.telco-welcome[data-telco-page="welcome"] .rr-daily-footer .section-title,
body.telco-welcome[data-telco-page="welcome"] .rr-daily-footer .habit-k {
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.2px;
  opacity: 0.85;
  margin-bottom: 6px;
}

body.telco-welcome[data-telco-page="welcome"] .rr-daily-footer p {
  font-size: 14px;
  line-height: 1.4;
  opacity: 0.75;
  margin: 0;
}
