@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap");

:root {
  --blue: #003366;
  --blue-2: #004d99;
  --cyan: #00b5e2;
  --cyan-2: #00c8f8;
  --light-blue: #e8f4fd;
  --bg: #f8f9fa;
  --text: #1f2937;
  --muted: #6b7280;
  --line: #e5e7eb;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Poppins", "Avenir Next", "Nunito Sans", "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background: linear-gradient(135deg, #e8eef5 0%, #d4e3f0 100%);
}

button,
input {
  font: inherit;
}

button {
  border: 0;
}

a {
  color: inherit;
}

.app-shell {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 52px 16px 44px;
  position: relative;
}

.desktop-label {
  display: none;
  position: absolute;
  top: 22px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: #617083;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 12px;
}

.desktop-label span {
  display: block;
  margin-top: 2px;
  letter-spacing: 0.06em;
}

.phone-frame {
  position: relative;
  width: min(390px, calc(100vw - 28px));
  height: min(844px, calc(100vh - 104px));
  min-height: 620px;
  overflow: hidden;
  background: var(--bg);
  border-radius: 44px;
  box-shadow:
    0 40px 80px rgba(0, 51, 102, 0.25),
    0 0 0 10px #1a1a2e,
    0 0 0 12px #2a2a3e;
}

.phone-notch {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 20;
  width: 120px;
  height: 34px;
  transform: translateX(-50%);
  border-radius: 0 0 20px 20px;
  background: #1a1a2e;
}

.screen {
  display: none;
  height: 100%;
  overflow-y: auto;
  background: var(--bg);
}

.screen.is-active {
  display: flex;
  flex-direction: column;
}

.status-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 34px;
  padding: 12px 24px 5px;
  background: var(--bg);
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
}

.status-bar--blue,
.screen[data-screen="login"] .status-bar {
  background: var(--blue);
  color: #fff;
}

.status-icons {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.status-icons [data-icon] {
  width: 13px;
  height: 13px;
}

.status-icons strong {
  font-size: 12px;
}

.signal-bars {
  width: 14px;
  height: 12px;
  display: inline-flex;
  align-items: flex-end;
  gap: 2px;
}

.signal-bars i {
  width: 2px;
  border-radius: 1px;
  background: currentColor;
}

.signal-bars i:nth-child(1) { height: 4px; }
.signal-bars i:nth-child(2) { height: 6px; }
.signal-bars i:nth-child(3) { height: 8px; }
.signal-bars i:nth-child(4) { height: 10px; }

.login-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 54px 24px 26px;
}

.login-brand img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  border-radius: 18px;
  margin: 0 0 20px;
  box-shadow: 0 4px 20px rgba(0, 51, 102, 0.15);
}

.login-brand p,
.login-footer p,
.copyright-line,
.secure-line,
.page-subhead {
  color: var(--muted);
  font-size: 13px;
}

.login-brand p {
  margin: 0 0 6px;
  color: #687386;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
}

.login-brand h1 {
  margin: 0;
  color: var(--blue);
  font-size: 23px;
  font-weight: 800;
  line-height: 1.2;
}

.login-form {
  display: grid;
  gap: 17px;
  width: min(342px, calc(100% - 48px));
  margin: 0 auto;
  padding: 0;
}

.input-row {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 56px;
  border: 1.5px solid var(--line);
  border-radius: 16px;
  padding: 0 16px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 51, 102, 0.08);
}

.input-row span {
  color: #9ca3af;
  font-size: 12px;
  font-weight: 700;
}

.field-icon,
[data-icon] {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.field-icon svg,
[data-icon] svg {
  width: 100%;
  height: 100%;
  display: block;
  stroke: currentColor;
}

.input-row input {
  min-width: 0;
  flex: 1;
  border: 0;
  outline: 0;
  color: var(--text);
  background: transparent;
  font-size: 15px;
  font-weight: 500;
}

.icon-btn,
.text-link {
  cursor: pointer;
  color: var(--cyan);
  background: transparent;
  font-size: 12px;
  font-weight: 800;
}

.icon-btn {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  color: #9ca3af;
}

.icon-btn [data-icon] {
  width: 18px;
  height: 18px;
}

.text-link {
  justify-self: end;
  margin-top: 2px;
}

.screen-spacer {
  flex: 1;
}

.login-footer {
  width: min(342px, calc(100% - 48px));
  margin: 0 auto;
  padding: 18px 0 34px;
  text-align: center;
}

.login-footer p {
  margin: 0 0 16px;
  font-weight: 500;
}

.login-footer p strong {
  color: var(--cyan);
  font-weight: 800;
}

.login-footer small {
  display: block;
  margin-top: 14px;
  color: #9ca3af;
  font-size: 11px;
  line-height: 1.45;
}

.primary-btn {
  width: 100%;
  min-height: 52px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--cyan), var(--cyan-2));
  box-shadow: 0 4px 16px rgba(0, 181, 226, 0.35);
  cursor: pointer;
  font-size: 15px;
  font-weight: 800;
}

.primary-btn--blue {
  background: var(--blue);
  box-shadow: 0 4px 16px rgba(0, 51, 102, 0.3);
  min-height: 52px;
}

.primary-btn:disabled {
  cursor: not-allowed;
  opacity: 0.55;
}

.offer-hero,
.success-hero {
  position: relative;
  flex-shrink: 0;
  padding: 22px 24px 28px;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-2) 50%, var(--cyan) 100%);
}

.hero-rings::before,
.hero-rings::after {
  content: "";
  position: absolute;
  top: -28px;
  right: -34px;
  border: 2px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
}

.hero-rings::before {
  width: 140px;
  height: 140px;
}

.hero-rings::after {
  top: -6px;
  right: -10px;
  width: 90px;
  height: 90px;
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 24px;
  border-radius: 999px;
  padding: 0 12px;
  margin-bottom: 12px;
  background: rgba(255, 255, 255, 0.16);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.offer-hero h1,
.success-hero h1 {
  margin: 0 0 8px;
  font-size: 24px;
  line-height: 1.15;
}

.celebration-icon {
  display: inline-block;
  margin-right: 2px;
  font-size: 22px;
  line-height: 1;
  vertical-align: 0;
}

.offer-hero p,
.success-hero p {
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 13px;
  line-height: 1.45;
}

.card-visual {
  position: relative;
  width: 100%;
  max-width: 300px;
  height: 160px;
  margin: 20px auto 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0.08));
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.card-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.06;
  background: repeating-linear-gradient(45deg, white 0, white 1px, transparent 0, transparent 50%);
  background-size: 8px 8px;
}

.card-visual__brand {
  position: absolute;
  top: 16px;
  left: 20px;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.15);
}

.card-visual__brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.mastercard-mark {
  position: absolute;
  top: 18px;
  right: 20px;
  display: flex;
}

.mastercard-mark span {
  display: block;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  opacity: 0.84;
}

.mastercard-mark span:first-child {
  margin-right: -10px;
  background: #eb001b;
}

.mastercard-mark span:last-child {
  background: #f79e1b;
}

.card-chip {
  position: absolute;
  bottom: 54px;
  left: 20px;
  width: 32px;
  height: 24px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.2);
}

.card-number {
  position: absolute;
  bottom: 36px;
  left: 20px;
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 11px;
  letter-spacing: 3px;
}

.card-bottom {
  position: absolute;
  right: 20px;
  bottom: 14px;
  left: 20px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
}

.card-bottom strong,
.card-bottom span {
  color: #fff;
  font-size: 10px;
  line-height: 1.2;
}

.card-bottom span {
  color: rgba(255, 255, 255, 0.7);
  text-align: right;
}

.screen-content {
  display: grid;
  gap: 12px;
  padding: 16px 16px 28px;
}

.screen-content--with-footer {
  padding-bottom: 96px;
}

.mobile-card,
.review-card {
  border: 1px solid rgba(0, 51, 102, 0.06);
  border-radius: 20px;
  padding: 18px;
  background: #fff;
  box-shadow: 0 2px 16px rgba(0, 51, 102, 0.08);
}

.compact-card {
  padding: 16px;
}

.compact-card .data-list dt {
  color: #667085;
  font-size: 12px;
  font-weight: 500;
}

.compact-card .data-list dd {
  color: #1f2937;
  font-size: 13px;
  font-weight: 500;
}

.section-title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.offer-title-row {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) auto;
  align-items: start;
  column-gap: 12px;
}

.offer-title-copy {
  min-width: 0;
  padding-top: 1px;
}

.section-title-row h2,
.section-title-row h3,
.review-card h3,
.compact-card h3 {
  margin: 0;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.section-title-row h2 {
  font-size: 14px;
  text-transform: none;
}

.offer-title-row h2,
.offer-title-row p {
  line-height: 1.25;
}

.section-title-row p {
  margin: 1px 0 0;
  color: var(--blue);
  font-size: 14px;
  font-weight: 800;
}

.title-icon {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--light-blue);
  color: var(--blue);
  font-size: 11px;
  font-weight: 800;
}

.title-icon [data-icon],
.nav-icon [data-icon],
.success-icon [data-icon],
.eyebrow [data-icon] {
  color: currentColor;
}

.stars {
  color: var(--cyan);
  font-size: 11px;
  line-height: 1;
  padding-top: 5px;
  white-space: nowrap;
}

.benefit-list {
  display: grid;
  gap: 10px;
}

.benefit-row {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #374151;
  font-size: 13px;
  font-weight: 500;
}

.benefit-row span:first-child {
  width: 26px;
  height: 26px;
  flex: 0 0 26px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: var(--light-blue);
  color: var(--blue);
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
}

.benefit-row strong {
  color: #374151;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.35;
}

.verified-pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  border-radius: 999px;
  padding: 4px 10px;
  color: var(--cyan);
  background: rgba(0, 181, 226, 0.12);
  font-size: 10px;
  font-weight: 850;
  white-space: nowrap;
}

.verified-pill [data-icon] {
  width: 11px;
  height: 11px;
}

.data-list,
.review-list {
  margin: 0;
}

.data-list div,
.review-list div {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid #f3f4f6;
}

.data-list div:last-child,
.review-list div:last-child {
  border-bottom: 0;
}

.prefilled-list dt {
  color: #667085;
  font-size: 13px;
  font-weight: 500;
}

.prefilled-list dd {
  color: #1f2937;
  font-size: 13px;
  font-weight: 600;
}

.review-list dt {
  color: #667085;
  font-size: 12px;
  font-weight: 500;
}

.review-list dd {
  color: #1f2937;
  font-size: 13px;
  font-weight: 500;
}

dt {
  color: #6b7280;
  font-size: 12px;
  font-weight: 650;
}

dd {
  margin: 0;
  color: var(--text);
  text-align: right;
  font-size: 13px;
  font-weight: 800;
}

.amount-panel,
.income-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  border: 1.5px solid rgba(0, 181, 226, 0.25);
  border-radius: 16px;
  padding: 14px;
  margin-top: 12px;
  background: linear-gradient(135deg, rgba(0, 51, 102, 0.06), rgba(0, 181, 226, 0.1));
}

.income-panel {
  flex-wrap: nowrap;
  margin-bottom: 8px;
}

.amount-panel span,
.income-panel span {
  display: block;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.amount-panel strong,
.income-panel strong {
  display: block;
  margin-top: 2px;
  color: var(--blue);
  font-size: 22px;
  line-height: 1.1;
}

.peso-mark {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  font-size: 20px;
  font-weight: 900;
}

.notice {
  flex: 1 0 100%;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 0;
  border-radius: 10px;
  padding: 8px 12px;
  color: #5f6f80;
  background: rgba(255, 255, 255, 0.8);
  font-size: 11px;
}

.notice [data-icon] {
  width: 13px;
  height: 13px;
  color: var(--cyan);
}

.copyright-line,
.secure-line {
  margin: 0;
  text-align: center;
  font-size: 11px;
}

.secure-line {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  color: #9ca3af;
  font-weight: 600;
}

.secure-line [data-icon] {
  width: 13px;
  height: 13px;
}

.top-nav,
.top-bar-blue {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  flex-shrink: 0;
}

.top-nav {
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 51, 102, 0.04);
}

.top-nav h2 {
  margin: 0;
  color: var(--blue);
  font-size: 15px;
}

.top-nav p {
  margin: 2px 0 0;
  color: #9ca3af;
  font-size: 11px;
  font-weight: 700;
}

.back-btn,
.nav-icon {
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--light-blue);
  color: var(--blue);
  cursor: pointer;
  font-size: 24px;
  font-weight: 800;
}

.nav-icon {
  margin-left: auto;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
}

.progress-track {
  height: 4px;
  background: #eef2f7;
}

.progress-track span {
  display: block;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
}

.inline-note {
  border: 1px solid rgba(0, 181, 226, 0.18);
  border-radius: 16px;
  padding: 12px;
  color: #5f6f80;
  background: linear-gradient(135deg, rgba(0, 51, 102, 0.05), rgba(0, 181, 226, 0.1));
  font-size: 12px;
  line-height: 1.45;
}

.review-card h3 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 12px;
  margin-bottom: 2px;
  border-bottom: 1.5px solid var(--light-blue);
}

.review-card h3 span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  border-radius: 999px;
  padding: 3px 8px;
  color: var(--cyan);
  background: rgba(0, 181, 226, 0.1);
  font-size: 10px;
}

.review-card h3 span [data-icon] {
  width: 11px;
  height: 11px;
}

.good-score {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  color: #16a34a;
  white-space: nowrap;
}

.score-dots {
  display: inline-flex;
  align-items: center;
  gap: 3px;
}

.score-dots i {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #16a34a;
}

.score-dots i:last-child {
  background: #d1d5db;
}

.secondary-dashed {
  min-height: 46px;
  border: 1.5px dashed rgba(0, 51, 102, 0.25);
  border-radius: 16px;
  color: var(--blue);
  background: #fff;
  cursor: pointer;
  font-weight: 800;
}

.top-bar-blue {
  justify-content: space-between;
  color: #fff;
  background: var(--blue);
}

.top-bar-blue span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 700;
}

.back-btn--light {
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.12);
}

.page-heading {
  margin: 0 0 2px;
  color: var(--blue);
  font-size: 22px;
}

.page-subhead {
  margin: 0;
}

.dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 8px 0;
}

.dots span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #d1d5db;
}

.dots span:nth-child(-n+2),
.dots .active {
  background: var(--cyan);
}

.dots .active {
  width: 22px;
}

.consent-box {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  border: 1px solid rgba(0, 51, 102, 0.06);
  border-radius: 18px;
  padding: 16px;
  background: #fff;
  box-shadow: 0 2px 16px rgba(0, 51, 102, 0.08);
}

.consent-box input {
  appearance: none;
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  display: grid;
  place-items: center;
  border: 2px solid var(--cyan);
  border-radius: 999px;
  background: #fff;
  cursor: pointer;
}

.consent-box input::before {
  content: "";
  width: 9px;
  height: 5px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg) scale(0);
  transform-origin: center;
}

.consent-box input:checked {
  background: var(--cyan);
}

.consent-box input:checked::before {
  transform: rotate(-45deg) scale(1);
}

.consent-box span {
  color: #4b5563;
  font-size: 12px;
  line-height: 1.55;
}

.consent-box strong {
  color: var(--cyan);
}

.sticky-footer {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 14px 16px 24px;
  background: #fff;
  box-shadow: 0 -4px 20px rgba(0, 51, 102, 0.06);
}

.success-hero {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 14px;
  padding-top: 22px;
  padding-bottom: 22px;
}

.success-icon {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--cyan), #00d4ff);
  box-shadow: 0 4px 20px rgba(0, 181, 226, 0.5);
  font-weight: 900;
}

.success-icon [data-icon] {
  width: 30px;
  height: 30px;
}

.reference-pill {
  grid-column: 1 / -1;
  justify-self: center;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border-radius: 999px;
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 12px;
}

.reference-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--cyan);
}

.timeline {
  display: grid;
  gap: 16px;
  list-style: none;
  margin: 0;
  padding: 4px 0 0 20px;
  border-left: 2px solid #dce4ed;
}

.timeline li {
  position: relative;
  display: grid;
  gap: 2px;
}

.timeline li::before {
  content: "";
  position: absolute;
  top: 2px;
  left: -27px;
  width: 14px;
  height: 14px;
  border: 2px solid #d1d5db;
  border-radius: 999px;
  background: #fff;
}

.timeline li.done::before {
  border-color: var(--cyan);
  background: var(--cyan);
}

.timeline-label {
  color: var(--blue);
  font-size: 13px;
  font-weight: 500;
}

.timeline-time,
.update-list p,
.next-panel p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.timeline-time {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-weight: 400;
}

.timeline-time [data-icon] {
  width: 11px;
  height: 11px;
}

.update-list {
  display: grid;
  gap: 10px;
}

.update-list p {
  display: flex;
  align-items: center;
  gap: 12px;
  border-radius: 14px;
  padding: 12px;
  background: var(--light-blue);
  font-weight: 400;
}

.update-list p > [data-icon] {
  width: 15px;
  height: 15px;
  flex: 0 0 15px;
  color: var(--cyan);
}

.update-list p > span:last-child {
  font-weight: 400;
}

.next-panel {
  display: flex;
  align-items: center;
  gap: 14px;
  border-radius: 18px;
  padding: 16px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  box-shadow: 0 4px 20px rgba(0, 51, 102, 0.25);
}

.next-panel-icon {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
}

.next-panel-icon [data-icon] {
  width: 21px;
  height: 21px;
}

.next-panel strong {
  display: block;
  margin-bottom: 4px;
  color: #fff;
  font-size: 13px;
}

.next-panel p {
  color: rgba(255, 255, 255, 0.72);
}

.track-link {
  display: block;
  text-align: center;
  text-decoration: none;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
}

.utility-links {
  position: absolute;
  right: 18px;
  bottom: 14px;
  display: flex;
  gap: 10px;
  color: #526172;
  font-size: 12px;
  font-weight: 800;
}

.utility-links a {
  text-decoration: none;
}

.toast {
  display: none;
}

@media (max-width: 640px) {
  .app-shell {
    display: block;
    padding: 0;
  }

  .desktop-label,
  .utility-links {
    display: none;
  }

  .phone-frame {
    width: 100vw;
    height: 100vh;
    min-height: 100vh;
    border-radius: 0;
    box-shadow: none;
  }

  .phone-notch {
    display: none;
  }

  .toast { display: none; }
}
