/* Short install LP — phone UI from docs/play-promo (no store-listing chrome). */
:root {
  --navy: #061018;
  --emerald: #10b981;
  --ink: #e8eef5;
  --muted: #8b9bb0;
  --serif: Georgia, "Times New Roman", serif;
  --sans: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: var(--sans);
  color: var(--ink);
  background:
    radial-gradient(ellipse 70% 45% at 50% 0%, rgba(16, 185, 129, 0.12), transparent 55%),
    linear-gradient(180deg, var(--navy) 0%, #0a1520 100%);
  min-height: 100dvh;
}

.install {
  max-width: 440px;
  margin: 0 auto;
  padding: 1.25rem 1.25rem 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.85rem;
}

.install-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.85rem;
  width: 100%;
}

.install-brand {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 700;
  font-size: 0.95rem;
}

.install-brand img { border-radius: 10px; }

.install-home-link {
  font-size: 0.85rem;
  margin: -0.25rem 0 0;
}

.install-home-link a {
  color: var(--muted);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.install-home-link a:hover { color: var(--emerald); }

.install h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.85rem, 7vw, 2.35rem);
  line-height: 1.15;
}

.install h1 em {
  font-style: italic;
  background: linear-gradient(90deg, #34d399, var(--emerald));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.install-lead {
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.45;
  max-width: 22rem;
}

.install-benefits {
  list-style: none;
  text-align: left;
  width: 100%;
  max-width: 22rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin: 0.15rem 0 0.35rem;
}

.install-benefits li {
  position: relative;
  padding-left: 1.35rem;
  color: var(--ink);
  font-size: 0.9rem;
  line-height: 1.35;
}

.install-benefits li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.4rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--emerald);
}

.install-phone {
  width: 100%;
  display: flex;
  justify-content: center;
  margin: 0.25rem 0 0.65rem;
}

.phone-shell {
  width: min(86vw, 340px);
  height: min(162vw, 680px);
  display: flex;
  flex-direction: column;
  border-radius: 40px;
  border: 2px solid rgba(52, 211, 153, 0.4);
  background: linear-gradient(165deg, #2a2f2e 0%, #141816 50%, #0a0c0b 100%);
  padding: 11px 10px 15px;
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.9),
    0 24px 48px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.phone-shell__notch {
  width: 84px;
  height: 20px;
  background: #050505;
  border-radius: 12px;
  margin: 0 auto 8px;
  flex-shrink: 0;
}

.phone-shell__screen {
  flex: 1;
  min-height: 0;
  border-radius: 28px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.phone-shell__screen--app {
  background: #0f1319;
  color: #f4f6f3;
}

/* Compact chrome inside mock so the bill list fills the screen */
.install-phone .home-v2-app__header {
  padding: 8px 12px 2px;
}
.install-phone .home-v2-app__greeting { font-size: 15px; }
.install-phone .home-v2-app__month { font-size: 12px; }
.install-phone .home-v2-app__tool { width: 28px; height: 28px; }
.install-phone .home-v2-app__tool svg { width: 16px; height: 16px; }
.install-phone .home-v2-app__hero {
  padding: 10px 12px;
  margin: 0 10px 6px;
}
.install-phone .home-v2-app__hero-label { font-size: 12px; }
.install-phone .home-v2-app__hero-amount { font-size: 26px; line-height: 1.1; }
.install-phone .home-v2-app__hero-stats { gap: 6px; margin-top: 6px; }
.install-phone .home-v2-app__stat { font-size: 11px; }
.install-phone .home-v2-app__chips {
  padding: 0 10px 6px;
  gap: 6px;
}
.install-phone .home-v2-app__chip {
  padding: 5px 10px;
  font-size: 12px;
}
.install-phone .home-v2-app__sub-teaser {
  padding: 0 10px;
  margin-bottom: 4px;
  gap: 8px;
}
.install-phone .home-v2-app__sub-teaser-label,
.install-phone .home-v2-app__sub-teaser-amt {
  font-size: 10px;
}
.install-phone .home-v2-app__sub-teaser-chevron {
  font-size: 15px;
}
.install-phone .home-v2-app__agenda {
  padding: 0 10px 4px;
}
.install-phone .home-v2-app__agenda-row {
  font-size: 11px;
  margin-bottom: 4px;
}
.install-phone .home-v2-app__day-name {
  font-size: 9px;
}
.install-phone .home-v2-app__day-num {
  font-size: 12px;
}
.install-phone .home-v2-app__list {
  padding: 2px 10px 0;
  gap: 6px;
}
.install-phone .home-v2-app__bill {
  padding: 9px 10px;
}
.install-phone .home-v2-app__bill-title { font-size: 14px; }
.install-phone .home-v2-app__bill-status { font-size: 11px; }
.install-phone .home-v2-app__bill-amt { font-size: 14px; }
.install-phone .home-v2-app__bill-icon {
  width: 32px;
  height: 32px;
}
.install-phone .home-v2-app__bill-icon svg {
  width: 16px;
  height: 16px;
}
.install-phone .home-v2-app__nav-wrap {
  padding: 8px 10px 6px;
}
.install-phone .home-v2-app__fab {
  width: 44px;
  height: 44px;
}
.install-phone .home-v2-app__nav {
  min-height: 48px;
}

.install-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 320px;
  padding: 0.95rem 1.25rem;
  border: 0;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--emerald), #059669);
  color: #061018;
  font-weight: 700;
  font-size: 1.05rem;
  text-decoration: none;
  cursor: pointer;
}

.install-cta:active { transform: scale(0.98); }

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

@media (min-width: 720px) {
  .install {
    max-width: 960px;
    padding: 2rem 2rem 3rem;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    column-gap: 2.5rem;
    row-gap: 0;
    align-items: center;
    text-align: left;
  }
  .install-copy {
    align-items: flex-start;
    text-align: left;
    justify-self: stretch;
  }
  .install-phone {
    margin: 0;
  }
  .install-cta {
    justify-self: start;
    width: auto;
    min-width: 280px;
  }
  .phone-shell {
    width: 360px;
    height: 720px;
  }
}
