:root {
  color-scheme: dark;
  --bg: #06121a;
  --bg-deep: #03090f;
  --panel: rgba(10, 34, 44, 0.78);
  --panel-strong: rgba(13, 47, 57, 0.9);
  --panel-soft: rgba(17, 67, 72, 0.58);
  --line: rgba(143, 241, 235, 0.16);
  --line-bright: rgba(105, 245, 207, 0.38);
  --ink: #f5fbff;
  --muted: #a9b9c9;
  --muted-2: #7f92a4;
  --green: #42f6a1;
  --green-2: #18d9b6;
  --blue: #2f88ff;
  --gold: #ffd65a;
  --danger: #ffcf8a;
  --shadow: 0 26px 70px rgba(0, 0, 0, 0.42);
  --inner: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  --radius-lg: 32px;
  --radius-md: 22px;
  --radius-sm: 16px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  font-family: "Segoe UI", Inter, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--ink);
  background: var(--bg-deep);
  overflow-x: hidden;
}

body {
  min-height: 100dvh;
  background:
    radial-gradient(circle at 18% 18%, rgba(30, 231, 197, 0.14), transparent 27%),
    radial-gradient(circle at 92% 72%, rgba(45, 255, 148, 0.11), transparent 24%),
    linear-gradient(180deg, #07131c 0%, #031018 54%, #02070d 100%);
}

body::before,
body::after {
  content: "";
  position: fixed;
  pointer-events: none;
  z-index: 0;
}

body::before {
  inset: 0;
  background:
    linear-gradient(116deg, transparent 0 11%, rgba(29, 214, 165, 0.06) 12% 13%, transparent 14% 100%),
    linear-gradient(68deg, transparent 0 78%, rgba(70, 255, 165, 0.08) 79% 80%, transparent 81% 100%);
  opacity: 0.8;
}

body::after {
  width: 260px;
  height: 260px;
  right: -118px;
  bottom: 62px;
  border-radius: 50%;
  border: 34px solid rgba(31, 218, 143, 0.08);
  filter: blur(1px);
}

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

button,
input {
  font: inherit;
}

button {
  color: inherit;
}

.app-body {
  display: grid;
  place-items: start center;
  padding: 0;
}

.phone-shell {
  position: relative;
  z-index: 1;
  width: min(100%, 460px);
  min-height: 100dvh;
  padding: 14px 10px calc(118px + env(safe-area-inset-bottom));
  background:
    linear-gradient(180deg, rgba(7, 18, 27, 0.58), rgba(4, 10, 16, 0.9)),
    radial-gradient(circle at 50% -10%, rgba(67, 246, 161, 0.1), transparent 36%);
  border-left: 1px solid rgba(105, 157, 185, 0.18);
  border-right: 1px solid rgba(105, 157, 185, 0.18);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.02), 0 30px 90px rgba(0, 0, 0, 0.5);
}

.miniapp-screen {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.tg-header {
  display: grid;
  grid-template-columns: 84px 1fr 50px;
  align-items: center;
  gap: 8px;
  min-height: 84px;
  padding: max(12px, env(safe-area-inset-top)) 4px 10px;
}

.tg-close {
  color: var(--blue);
  font-size: 18px;
  line-height: 1;
}

.tg-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.1;
}

.tg-title strong {
  font-size: 23px;
  letter-spacing: 0;
}

.tg-title > span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 650;
  text-transform: lowercase;
}

.tg-menu {
  justify-self: end;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--blue);
  background: rgba(47, 136, 255, 0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
}

.tg-menu span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--blue);
}

.hero-panel,
.glass-card,
.secure-banner,
.bottom-nav {
  border: 1px solid var(--line);
  box-shadow: var(--shadow), var(--inner);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
}

.hero-panel {
  position: relative;
  min-height: 178px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  padding: 36px 26px 26px;
  background:
    radial-gradient(circle at 86% 48%, rgba(68, 251, 139, 0.26), transparent 28%),
    radial-gradient(circle at 16% 104%, rgba(21, 219, 189, 0.18), transparent 26%),
    linear-gradient(135deg, rgba(7, 36, 48, 0.96), rgba(18, 70, 58, 0.8));
}

.hero-panel::after {
  content: "";
  position: absolute;
  inset: auto -60px -80px auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(62, 255, 145, 0.18), transparent 62%);
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 68%;
}

.hero-copy h1 {
  margin: 0 0 12px;
  font-size: 34px;
  line-height: 1.05;
  letter-spacing: 0;
}

.hero-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.35;
  font-weight: 600;
}

.coco-mascot {
  position: absolute;
  right: 18px;
  bottom: 0;
  width: 150px;
  height: 150px;
  z-index: 1;
}

.coconut {
  position: absolute;
  right: 4px;
  bottom: -8px;
  width: 104px;
  height: 104px;
  border-radius: 48% 52% 47% 53%;
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 216, 128, 0.72), transparent 23%),
    repeating-linear-gradient(100deg, transparent 0 10px, rgba(98, 47, 18, 0.2) 11px 13px),
    linear-gradient(145deg, #c57230, #6c351b 66%, #3b1b11);
  box-shadow: inset -16px -22px 30px rgba(38, 13, 8, 0.45), 0 28px 40px rgba(0, 0, 0, 0.42);
}

.palm-leaves {
  position: absolute;
  right: 2px;
  bottom: 80px;
  width: 130px;
  height: 74px;
  transform: rotate(-7deg);
}

.palm-leaves span {
  position: absolute;
  left: 52px;
  bottom: 0;
  width: 34px;
  height: 92px;
  border-radius: 100% 0 100% 0;
  transform-origin: 50% 100%;
  background: linear-gradient(160deg, #e8ee55, #4dca61 48%, #177b38);
  box-shadow: inset 8px 0 12px rgba(255, 255, 255, 0.18);
}

.palm-leaves span:nth-child(1) { transform: rotate(-64deg); }
.palm-leaves span:nth-child(2) { transform: rotate(-25deg); }
.palm-leaves span:nth-child(3) { transform: rotate(18deg); }
.palm-leaves span:nth-child(4) { transform: rotate(58deg); }

.glasses {
  position: absolute;
  left: 12px;
  top: 34px;
  width: 82px;
  height: 27px;
  border-top: 8px solid #101824;
}

.glasses::before,
.glasses::after {
  content: "";
  position: absolute;
  top: -7px;
  width: 34px;
  height: 26px;
  border: 5px solid #111722;
  border-radius: 9px 9px 15px 15px;
  background: linear-gradient(135deg, #0c2b5c, #060814);
  box-shadow: inset 5px 5px 9px rgba(74, 146, 255, 0.32);
}

.glasses::before { left: -3px; transform: rotate(5deg); }
.glasses::after { right: -3px; transform: rotate(-5deg); }

.smile {
  position: absolute;
  left: 39px;
  top: 69px;
  width: 34px;
  height: 16px;
  border-bottom: 5px solid #100b08;
  border-radius: 0 0 50px 50px;
}

.glass-card {
  border-radius: var(--radius-lg);
  background:
    linear-gradient(145deg, rgba(18, 71, 78, 0.82), rgba(8, 28, 43, 0.86)),
    radial-gradient(circle at 0 0, rgba(85, 246, 213, 0.14), transparent 38%);
}

.id-card {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 20px;
  align-items: center;
  min-height: 154px;
  margin-top: 0;
  padding: 24px 22px;
}

.glow-icon {
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  border-radius: 24px;
  background:
    radial-gradient(circle at 40% 28%, rgba(118, 255, 222, 0.32), transparent 34%),
    linear-gradient(145deg, rgba(39, 170, 170, 0.8), rgba(10, 56, 68, 0.9));
  border: 1px solid rgba(125, 255, 221, 0.4);
  box-shadow: inset 0 0 20px rgba(57, 255, 184, 0.22), 0 0 30px rgba(48, 255, 171, 0.25);
  font-size: 54px;
}

.id-card__content span,
.detail-row span,
.plan-card small,
.payment-card span,
.payment-card small,
.copy-card__label,
.soft-text,
.about-box p,
.help-list small {
  color: var(--muted);
}

.id-card__content > span {
  display: block;
  font-size: 19px;
  font-weight: 650;
}

.copy-inline {
  width: 100%;
  border: 0;
  padding: 6px 0;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  text-align: left;
}

.copy-inline strong {
  font-size: clamp(28px, 8vw, 40px);
  line-height: 1;
  letter-spacing: 0;
}

.copy-mark {
  display: grid;
  place-items: center;
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  color: var(--green);
  background: rgba(78, 240, 186, 0.09);
  border: 1px solid rgba(107, 255, 212, 0.22);
}

.id-card__content p {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.35;
}

.section-card {
  padding: 22px 20px;
}

.section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.section-heading h2 {
  margin: 0;
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: 0;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 9px 15px;
  border-radius: 999px;
  white-space: nowrap;
  font-size: 15px;
  font-weight: 800;
}

.status-pill.is-active {
  color: var(--green);
  background: rgba(45, 239, 151, 0.12);
}

.status-pill.is-muted {
  color: var(--muted);
  background: rgba(167, 187, 205, 0.1);
}

.detail-list {
  border-radius: 22px;
  border: 1px solid var(--line);
  background: rgba(10, 34, 48, 0.68);
  overflow: hidden;
}

.detail-row {
  display: grid;
  grid-template-columns: 56px 1fr 22px;
  align-items: center;
  gap: 14px;
  min-height: 86px;
  padding: 16px;
}

.detail-row + .detail-row {
  border-top: 1px solid rgba(166, 222, 229, 0.12);
}

.round-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  color: var(--green);
  background: radial-gradient(circle, rgba(70, 246, 161, 0.34), rgba(25, 143, 103, 0.58));
  box-shadow: 0 0 22px rgba(60, 244, 159, 0.18);
  font-weight: 900;
}

.detail-row div {
  display: flex;
  flex-direction: column;
  gap: 5px;
  min-width: 0;
}

.detail-row strong {
  font-size: 19px;
  line-height: 1.2;
}

.detail-row small {
  color: var(--muted);
  font-size: 15px;
  font-weight: 500;
}

.detail-row a {
  color: var(--muted);
  font-size: 42px;
  line-height: 1;
}

.secure-banner {
  position: relative;
  display: grid;
  grid-template-columns: 72px 1fr 54px;
  gap: 14px;
  align-items: center;
  overflow: hidden;
  min-height: 112px;
  border-radius: 26px;
  padding: 20px;
  background:
    radial-gradient(circle at 88% 20%, rgba(63, 255, 164, 0.2), transparent 26%),
    linear-gradient(135deg, rgba(14, 131, 91, 0.68), rgba(4, 59, 59, 0.88));
}

.secure-banner.compact {
  grid-template-columns: 60px 1fr;
  min-height: 92px;
}

.shield-large,
.banner-check {
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--green);
  border: 1px solid rgba(61, 255, 163, 0.16);
  background: rgba(40, 239, 147, 0.1);
}

.shield-large {
  width: 64px;
  height: 64px;
  font-size: 35px;
  font-weight: 900;
  box-shadow: 0 0 28px rgba(45, 244, 163, 0.22);
}

.banner-check {
  width: 48px;
  height: 48px;
  font-size: 27px;
  font-weight: 900;
}

.secure-banner strong {
  display: block;
  font-size: 20px;
  line-height: 1.2;
}

.secure-banner p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.25;
}

.notice-card,
.warning-card,
.payment-card,
.copy-card,
.donate-form,
.help-list a,
.about-box,
.mini-stats article {
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: rgba(8, 31, 45, 0.58);
  box-shadow: var(--inner);
}

.notice-card,
.warning-card,
.payment-card {
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding: 16px;
  margin-top: 12px;
}

.notice-card strong,
.payment-card strong {
  color: var(--green);
  font-size: 18px;
}

.warning-card {
  color: var(--danger);
  line-height: 1.45;
}

.plans-grid,
.donate-grid,
.mini-stats {
  display: grid;
  gap: 12px;
}

.plans-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.plan-card {
  padding: 18px;
}

.plan-badge {
  display: inline-flex;
  padding: 7px 11px;
  border-radius: 999px;
  color: var(--green);
  background: rgba(64, 245, 159, 0.1);
  font-weight: 750;
}

.plan-card strong {
  display: block;
  margin-top: 14px;
  font-size: 30px;
  line-height: 1;
}

.plan-card small {
  display: block;
  margin: 9px 0 14px;
  min-height: 34px;
  line-height: 1.35;
}

.plan-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.plan-actions__wide {
  grid-column: 1 / -1;
}

.primary-btn,
.secondary-btn,
.ghost-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 15px;
  border: 0;
  padding: 10px 14px;
  cursor: pointer;
  font-weight: 800;
  transition: transform 0.16s ease, filter 0.16s ease;
}

.primary-btn {
  color: #052015;
  background: linear-gradient(135deg, #62ffb2, #22e0bd);
}

.secondary-btn {
  color: var(--green);
  background: rgba(66, 246, 161, 0.1);
  border: 1px solid rgba(66, 246, 161, 0.18);
}

.ghost-btn {
  color: var(--muted);
  background: rgba(255, 255, 255, 0.06);
}

.primary-btn:hover,
.secondary-btn:hover,
.ghost-btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
}

.copy-card {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 16px;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
}

.copy-card__label {
  font-size: 14px;
  font-weight: 700;
}

.copy-card__value {
  display: block;
  width: 100%;
  overflow-wrap: anywhere;
  word-break: break-word;
  font-family: Consolas, "Courier New", monospace;
  font-size: 12px;
  line-height: 1.48;
}

.mini-stats {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 12px;
}

.mini-stats article {
  padding: 14px 10px;
  text-align: center;
}

.mini-stats span {
  display: block;
  color: var(--muted);
  font-size: 13px;
}

.mini-stats strong {
  display: block;
  margin-top: 6px;
  color: var(--green);
  font-size: 27px;
}

.soft-text,
.about-box p {
  margin: 0;
  font-size: 16px;
  line-height: 1.55;
}

.donate-grid {
  grid-template-columns: 1fr 1fr;
  margin-top: 16px;
}

.donate-form {
  padding: 15px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.donate-form label {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.donate-form input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px;
  color: var(--ink);
  background: rgba(2, 13, 20, 0.62);
  outline: none;
}

.help-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.help-list a {
  display: grid;
  grid-template-columns: 50px 1fr;
  align-items: center;
  gap: 12px;
  padding: 14px;
}

.help-list div {
  min-width: 0;
}

.help-list strong,
.help-list small {
  display: block;
  overflow-wrap: anywhere;
}

.about-box {
  display: flex;
  flex-direction: column;
  gap: 13px;
  padding: 17px;
}

.bottom-nav {
  position: fixed;
  left: 50%;
  bottom: max(10px, env(safe-area-inset-bottom));
  z-index: 20;
  width: min(calc(100% - 20px), 440px);
  transform: translateX(-50%);
  min-height: 88px;
  display: grid;
  grid-template-columns: repeat(7, minmax(58px, 1fr));
  gap: 4px;
  overflow-x: auto;
  padding: 10px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(17, 31, 43, 0.92), rgba(9, 20, 30, 0.92)),
    radial-gradient(circle at 24% 12%, rgba(57, 246, 161, 0.11), transparent 35%);
  scrollbar-width: none;
}

.bottom-nav::-webkit-scrollbar {
  display: none;
}

.bottom-nav a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-width: 58px;
  min-height: 66px;
  border-radius: 20px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 650;
  white-space: nowrap;
}

.bottom-nav a.active {
  color: var(--green);
  background: linear-gradient(145deg, rgba(28, 122, 93, 0.62), rgba(8, 64, 59, 0.76));
  border: 1px solid rgba(57, 245, 160, 0.26);
  box-shadow: inset 0 0 16px rgba(72, 255, 180, 0.13), 0 10px 26px rgba(0, 0, 0, 0.24);
}

.nav-icon {
  position: relative;
  width: 27px;
  height: 27px;
  display: block;
  color: currentColor;
}

.nav-icon::before,
.nav-icon::after {
  content: "";
  position: absolute;
  border-color: currentColor;
}

.nav-icon--user::before {
  width: 12px;
  height: 12px;
  left: 7px;
  top: 2px;
  border-radius: 50%;
  background: currentColor;
}

.nav-icon--user::after {
  left: 3px;
  bottom: 2px;
  width: 21px;
  height: 12px;
  border-radius: 14px 14px 4px 4px;
  background: currentColor;
}

.nav-icon--key::before {
  width: 12px;
  height: 12px;
  left: 1px;
  top: 4px;
  border: 4px solid currentColor;
  border-radius: 50%;
}

.nav-icon--key::after {
  width: 18px;
  height: 4px;
  left: 11px;
  top: 14px;
  background: currentColor;
  box-shadow: 8px 5px 0 -1px currentColor;
  transform: rotate(-38deg);
  transform-origin: left center;
}

.nav-icon--users::before {
  width: 10px;
  height: 10px;
  left: 2px;
  top: 4px;
  border-radius: 50%;
  box-shadow: 13px 0 0 currentColor;
  background: currentColor;
}

.nav-icon--users::after {
  left: 0;
  bottom: 3px;
  width: 13px;
  height: 9px;
  border: 3px solid currentColor;
  border-radius: 12px 12px 3px 3px;
  box-shadow: 13px 0 0 -1px currentColor;
}

.nav-icon--chat::before {
  inset: 3px 2px 6px;
  border: 3px solid currentColor;
  border-radius: 12px;
}

.nav-icon--chat::after {
  left: 7px;
  bottom: 2px;
  width: 10px;
  height: 10px;
  border-left: 3px solid currentColor;
  border-bottom: 3px solid currentColor;
  transform: rotate(-25deg);
}

.nav-icon--crown::before {
  left: 2px;
  bottom: 5px;
  width: 23px;
  height: 14px;
  border: 4px solid currentColor;
  border-top: 0;
  transform: skewX(-8deg);
}

.nav-icon--crown::after {
  left: 3px;
  top: 3px;
  width: 20px;
  height: 15px;
  background:
    linear-gradient(135deg, transparent 0 44%, currentColor 45% 56%, transparent 57%),
    linear-gradient(45deg, transparent 0 44%, currentColor 45% 56%, transparent 57%);
}

.nav-icon--heart::before {
  left: 5px;
  top: 6px;
  width: 17px;
  height: 17px;
  background: currentColor;
  transform: rotate(45deg);
}

.nav-icon--heart::after {
  left: 3px;
  top: 3px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 10px 0 0 currentColor;
}

.nav-icon--spark::before {
  left: 11px;
  top: 1px;
  width: 5px;
  height: 25px;
  border-radius: 6px;
  background: currentColor;
}

.nav-icon--spark::after {
  left: 1px;
  top: 11px;
  width: 25px;
  height: 5px;
  border-radius: 6px;
  background: currentColor;
}

.logout-form {
  position: fixed;
  right: calc(50% - 210px);
  top: 16px;
  z-index: 30;
}

.login-page {
  min-height: 100dvh;
  background:
    radial-gradient(circle at 72% 12%, rgba(64, 246, 161, 0.16), transparent 26%),
    linear-gradient(180deg, #07131c, #02070d);
}

.login-shell {
  min-height: 100dvh;
  display: grid;
  place-items: center;
  padding: 18px;
}

.login-card {
  width: min(560px, 100%);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  padding: 30px;
  background: linear-gradient(145deg, rgba(18, 71, 78, 0.82), rgba(8, 28, 43, 0.88));
  box-shadow: var(--shadow), var(--inner);
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.login-card h1 {
  margin: 0 0 20px;
  font-size: 32px;
}

.notice {
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  padding: 16px;
  background: rgba(8, 31, 45, 0.58);
}

.notice span {
  color: var(--muted);
}

@media (min-width: 900px) {
  .phone-shell {
    margin: 20px 0;
    min-height: calc(100dvh - 40px);
    border-radius: 34px;
    border: 1px solid rgba(105, 157, 185, 0.2);
  }
}

@media (max-width: 420px) {
  .phone-shell {
    padding-left: 0;
    padding-right: 0;
  }

  .tg-header,
  .miniapp-screen {
    padding-left: 8px;
    padding-right: 8px;
  }

  .tg-header {
    grid-template-columns: 76px 1fr 46px;
  }

  .tg-close {
    font-size: 17px;
  }

  .hero-panel {
    border-radius: 28px;
    padding: 30px 24px 24px;
  }

  .hero-copy h1 {
    font-size: 31px;
  }

  .hero-copy p {
    font-size: 17px;
  }

  .coco-mascot {
    right: 2px;
    transform: scale(0.9);
    transform-origin: right bottom;
  }

  .id-card {
    grid-template-columns: 96px 1fr;
    padding: 20px 18px;
    gap: 16px;
  }

  .glow-icon {
    border-radius: 22px;
    font-size: 46px;
  }

  .section-heading {
    align-items: flex-start;
  }

  .section-heading h2 {
    font-size: 20px;
  }

  .status-pill {
    min-height: 36px;
    padding: 8px 12px;
    font-size: 14px;
  }

  .plans-grid,
  .donate-grid {
    grid-template-columns: 1fr;
  }

  .plan-card small {
    min-height: 0;
  }

  .secure-banner {
    grid-template-columns: 60px 1fr;
  }

  .banner-check {
    display: none;
  }

  .secure-banner strong {
    font-size: 18px;
  }

  .secure-banner p {
    font-size: 16px;
  }
}

@media (max-width: 350px) {
  .hero-copy {
    max-width: 72%;
  }

  .hero-copy h1 {
    font-size: 27px;
  }

  .id-card {
    grid-template-columns: 1fr;
  }

  .glow-icon {
    width: 94px;
  }

  .detail-row {
    grid-template-columns: 48px 1fr;
  }

  .detail-row a {
    display: none;
  }
}
