:root {
  color-scheme: light;
  --page: #f6f7f6;
  --ink: #17191a;
  --muted: #6e7370;
  --line: rgba(23, 25, 26, 0.1);
  --surface: rgba(255, 255, 255, 0.78);
  --surface-strong: #ffffff;
  --graphite: #26292b;
  --sage: #6f8c7b;
  --sage-dark: #4f7563;
  --sandless: #e9eeeb;
  --shadow: 0 24px 80px rgba(24, 29, 27, 0.14);
  --radius: 28px;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background:
    linear-gradient(180deg, #fbfcfb 0%, var(--page) 44%, #eef2ef 100%);
  overflow-x: hidden;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1240px, calc(100% - 32px));
  margin: 18px auto 0;
  padding: 11px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(22px);
  box-shadow: 0 14px 40px rgba(35, 38, 37, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-left: 4px;
  font-weight: 750;
  letter-spacing: 0;
}

.brand-icon,
.screen-icon,
.download-icon {
  display: block;
  border-radius: 23%;
  box-shadow: 0 10px 28px rgba(18, 21, 20, 0.18);
}

.brand-icon {
  width: 34px;
  height: 34px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
}

.nav-links a,
.nav-cta,
.button {
  transition: transform 180ms ease, color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.nav-links a:hover,
.nav-cta:hover,
.button:hover {
  transform: translateY(-1px);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 18px 0 20px;
  border-radius: 999px;
  color: white;
  background: var(--graphite);
  font-size: 14px;
  font-weight: 700;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(520px, 1.08fr);
  align-items: center;
  gap: 64px;
  width: min(1240px, calc(100% - 32px));
  min-height: 790px;
  margin: 0 auto;
  padding: 68px 0 42px;
}

.hero-copy {
  max-width: 560px;
  align-self: center;
}

h1,
h2,
p {
  margin: 0;
}

h1 {
  max-width: 590px;
  font-size: clamp(50px, 6.4vw, 82px);
  line-height: 0.96;
  letter-spacing: 0;
  font-weight: 820;
}

.hero-copy p {
  max-width: 520px;
  margin-top: 24px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.58;
  font-weight: 500;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 15px;
  font-weight: 750;
  letter-spacing: 0;
}

.button.primary {
  color: white;
  background: var(--graphite);
  box-shadow: 0 18px 42px rgba(24, 27, 28, 0.22);
}

.store-badge {
  justify-content: flex-start;
  min-width: 210px;
  min-height: 58px;
  padding: 0 20px;
  border-radius: 15px;
  line-height: 1.03;
  text-align: left;
}

.store-badge small {
  display: block;
  margin-bottom: 3px;
  font-size: 11px;
  font-weight: 650;
  opacity: 0.78;
}

.button.secondary {
  color: var(--graphite);
  background: rgba(255, 255, 255, 0.58);
  border-color: var(--line);
}

.play-button {
  gap: 10px;
  padding-right: 24px;
}

.play-button span {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(38, 41, 43, 0.08);
}

.play-button span::before {
  content: "";
  width: 0;
  height: 0;
  margin-left: 2px;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 9px solid var(--graphite);
}

.apple-mark {
  width: 14px;
  height: 17px;
  margin-right: 9px;
  background: currentColor;
  clip-path: polygon(54% 0%, 68% 2%, 64% 20%, 49% 25%, 37% 21%, 34% 8%, 45% 5%, 50% 0%, 56% 0%, 47% 31%, 75% 31%, 90% 43%, 84% 75%, 67% 100%, 54% 92%, 41% 100%, 23% 78%, 12% 50%, 24% 32%, 47% 31%);
}

.scroll-cue {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 94px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.scroll-cue span {
  position: relative;
  display: block;
  width: 24px;
  height: 38px;
  border: 1px solid rgba(38, 41, 43, 0.24);
  border-radius: 999px;
}

.scroll-cue span::after {
  content: "";
  position: absolute;
  top: 8px;
  left: 50%;
  width: 4px;
  height: 7px;
  border-radius: 999px;
  background: var(--sage-dark);
  transform: translateX(-50%);
  animation: scrollDot 1.8s ease-in-out infinite;
}

.hero-visual {
  position: relative;
  min-height: 690px;
  perspective: 1200px;
}

.phone-shell {
  position: absolute;
  inset: 0 49%;
  width: 360px;
  transform: translateX(-50%) rotate(0deg);
  animation: phoneFloat 7s ease-in-out infinite;
}

.phone-frame {
  position: relative;
  min-height: 700px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 54px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.16), transparent 22%),
    linear-gradient(145deg, #303437, #0f1112 72%);
  box-shadow: 0 34px 110px rgba(15, 18, 17, 0.24), inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.phone-frame::before {
  content: "";
  position: absolute;
  top: 11px;
  left: 50%;
  width: 108px;
  height: 28px;
  border-radius: 0 0 18px 18px;
  background: #101213;
  transform: translateX(-50%);
  z-index: 2;
}

.phone-status {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 34px;
  padding: 0 20px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 12px;
  font-weight: 700;
}

.status-dots {
  width: 45px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, #fff 0 22%, transparent 22% 36%, #fff 36% 58%, transparent 58% 72%, #fff 72%);
  opacity: 0.84;
}

.app-screen {
  overflow: hidden;
  min-height: 636px;
  padding: 30px 16px 14px;
  border-radius: 40px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(244, 246, 244, 0.98)),
    #f7f8f7;
}

.app-top {
  display: grid;
  grid-template-columns: 36px 1fr 36px;
  align-items: center;
  text-align: center;
}

.screen-gear,
.screen-add {
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 13px;
  background: rgba(38, 41, 43, 0.06);
  color: var(--graphite);
  font-weight: 800;
}

.screen-gear::before {
  content: "⚙";
  font-size: 14px;
}

.screen-add {
  color: white;
  background: var(--graphite);
  font-size: 21px;
}

.app-top h2 {
  font-size: 17px;
  line-height: 1;
  font-weight: 750;
}

.screen-icon {
  width: 42px;
  height: 42px;
}

.total-card,
.renewal-list article,
.float-card,
.feature-strip article,
.privacy-panel,
.insight-grid article,
.download-section {
  border: 1px solid rgba(255, 255, 255, 0.64);
  background: var(--surface);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 50px rgba(31, 36, 34, 0.09);
}

.total-card {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 14px;
  margin-top: 22px;
  padding: 18px 14px 14px;
  border-radius: 21px;
  background: rgba(255, 255, 255, 0.86);
}

.total-card span,
.float-card span,
.insight-grid span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
}

.total-card strong {
  display: block;
  margin-top: 6px;
  font-size: 32px;
  line-height: 1;
  letter-spacing: 0;
}

.total-card small {
  display: inline-flex;
  margin-top: 8px;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(111, 140, 123, 0.12);
  color: var(--sage-dark);
  font-size: 11px;
  font-weight: 700;
}

.screen-chart {
  position: relative;
  display: grid;
  align-items: end;
  min-width: 132px;
}

.screen-chart svg {
  position: absolute;
  right: 0;
  bottom: 4px;
  width: 128px;
  height: 44px;
  color: rgba(79, 117, 99, 0.88);
}

.screen-bars {
  display: flex;
  align-items: end;
  gap: 6px;
  height: 76px;
  padding-bottom: 4px;
}

.screen-bars i {
  width: 9px;
  height: var(--h);
  border-radius: 999px;
  background: rgba(38, 41, 43, 0.26);
}

.screen-bars i:nth-child(n+5) {
  background: var(--sage);
}

.renewal-list {
  display: grid;
  gap: 0;
  margin-top: 13px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.64);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 12px 28px rgba(31, 36, 34, 0.07);
}

.renewal-list article {
  display: grid;
  grid-template-columns: 30px 1fr 46px auto;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-top: 1px solid rgba(38, 41, 43, 0.06);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.renewal-list strong,
.renewal-list b {
  font-size: 13px;
}

.renewal-list small {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 650;
}

.renewal-list em {
  color: var(--muted);
  font-size: 10px;
  font-style: normal;
  font-weight: 700;
}

.service-dot {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  color: white;
  font-size: 11px;
  font-weight: 900;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.34);
}

.service-dot::after {
  content: "";
}

.list-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 12px 8px;
  font-size: 12px;
  font-weight: 800;
}

.list-title small {
  color: var(--sage-dark);
  font-size: 10px;
  font-weight: 750;
}

.category-card {
  margin-top: 9px;
  border: 1px solid rgba(255, 255, 255, 0.64);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 12px 28px rgba(31, 36, 34, 0.07);
}

.category-content {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 12px;
  align-items: center;
  padding: 0 12px 12px;
}

.donut {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: conic-gradient(var(--sage) 0 34%, #6f7d8a 34% 56%, #a4b1ad 56% 78%, #d7ddda 78%);
  position: relative;
}

.donut::after {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: inherit;
  background: white;
}

.category-content ul {
  display: grid;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 10px;
  font-weight: 700;
}

.category-content li {
  display: grid;
  grid-template-columns: 8px 1fr auto;
  align-items: center;
  gap: 6px;
}

.category-content li span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sage);
}

.category-content li:nth-child(2) span { background: #6f7d8a; }
.category-content li:nth-child(3) span { background: #a4b1ad; }

.tabbar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3px;
  margin-top: 8px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
  text-align: center;
}

.tabbar span::before {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  margin: 0 auto 4px;
  border-radius: 7px;
  background: rgba(38, 41, 43, 0.08);
}

.tabbar .active {
  color: var(--sage-dark);
}

.red { background: #b85c5c; }
.green { background: #4f7d68; }
.blue { background: #577a98; }
.dark { background: #202326; }
.red::after { content: "N"; }
.green::after { content: "S"; }
.blue::after { content: "☁"; font-size: 12px; }
.dark::after { content: "▶"; font-size: 10px; }

.float-card {
  position: absolute;
  z-index: 5;
  display: grid;
  gap: 8px;
  min-width: 176px;
  padding: 16px;
  border-radius: 22px;
  animation: panelFloat 6s ease-in-out infinite;
}

.float-card strong {
  font-size: 15px;
  line-height: 1.25;
}

.float-spend {
  right: -8px;
  bottom: 94px;
  width: 250px;
}

.float-private {
  left: 8px;
  top: 226px;
  width: 206px;
  animation-delay: -1.2s;
}

.float-renewal {
  top: 84px;
  right: 2px;
  width: 230px;
  animation-delay: -2s;
}

.float-account {
  left: 28px;
  bottom: 158px;
  width: 204px;
  animation-delay: -2.8s;
}

.float-card button {
  min-height: 36px;
  border: 0;
  border-radius: 12px;
  background: rgba(38, 41, 43, 0.06);
  font-weight: 750;
}

.service-preview {
  display: flex;
  align-items: center;
  gap: 10px;
}

.service-logo {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: white;
  background: #1db954;
  font-weight: 900;
}

.service-preview small,
.float-spend small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
}

.float-spend svg {
  width: 100%;
  height: 54px;
  color: var(--sage-dark);
}

.mini-bars {
  display: flex;
  align-items: end;
  gap: 5px;
  height: 42px;
}

.mini-bars i {
  width: 15px;
  height: var(--h);
  border-radius: 999px 999px 4px 4px;
  background: var(--sage);
}

.motion-orbit {
  position: absolute;
  border: 1px solid rgba(111, 140, 123, 0.18);
  border-radius: 999px;
  transform: rotate(-10deg);
}

.orbit-one {
  inset: 64px 76px 92px 54px;
}

.orbit-two {
  inset: 20px 36px 54px 12px;
  opacity: 0.52;
}

.feature-strip,
.split-section,
.insights-section,
.download-section,
.page-hero,
.legal-layout,
.support-grid {
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
}

.page-hero {
  position: relative;
  padding: 108px 0 58px;
}

.page-hero h1 {
  max-width: 860px;
  font-size: clamp(48px, 7vw, 86px);
}

.page-hero p {
  max-width: 700px;
  margin-top: 24px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.62;
  font-weight: 500;
}

.page-kicker {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--sage-dark);
  background: rgba(255, 255, 255, 0.64);
  font-size: 13px;
  font-weight: 800;
}

.legal-layout {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
  padding: 0 0 96px;
}

.legal-summary,
.legal-document,
.support-card {
  border: 1px solid rgba(255, 255, 255, 0.64);
  background: var(--surface);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 50px rgba(31, 36, 34, 0.09);
}

.legal-summary {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 10px;
  padding: 24px;
  border-radius: var(--radius);
}

.legal-summary span,
.support-card span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.legal-summary strong {
  font-size: 28px;
  line-height: 1;
}

.legal-summary p,
.legal-document p,
.legal-document li,
.support-card p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.68;
  font-weight: 500;
}

.legal-document {
  padding: 34px;
  border-radius: var(--radius);
}

.legal-document h2 {
  margin-top: 34px;
  font-size: 26px;
  line-height: 1.1;
}

.legal-document h2:first-child {
  margin-top: 0;
}

.legal-document p,
.legal-document ul {
  margin-top: 12px;
}

.legal-document ul {
  display: grid;
  gap: 10px;
  padding-left: 22px;
}

.legal-document a {
  color: var(--sage-dark);
  font-weight: 800;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: 0 0 96px;
}

.support-card {
  min-height: 260px;
  padding: 26px;
  border-radius: var(--radius);
}

.support-card h2 {
  margin-top: 34px;
  font-size: 30px;
  line-height: 1.05;
}

.support-card p {
  margin-top: 14px;
}

.contact-card {
  grid-column: span 2;
  color: white;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 36%),
    var(--graphite);
}

.contact-card span,
.contact-card p {
  color: rgba(255, 255, 255, 0.72);
}

.contact-card .button {
  width: fit-content;
  margin-top: 24px;
  color: var(--graphite);
  background: white;
}

.feature-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: 2px 0 96px;
}

.feature-strip article {
  min-height: 260px;
  padding: 26px;
  border-radius: var(--radius);
}

.feature-icon {
  width: 46px;
  height: 46px;
  margin-bottom: 48px;
  border-radius: 16px;
  background: var(--sandless);
  position: relative;
}

.feature-icon::after {
  content: "";
  position: absolute;
  inset: 13px;
  border: 3px solid var(--sage-dark);
  border-radius: 8px;
}

.feature-icon.bell::after {
  border-radius: 14px 14px 8px 8px;
}

.feature-icon.chart::after {
  border-width: 0 0 3px 3px;
  transform: skew(-8deg);
}

.feature-strip h2,
.section-copy h2,
.section-heading h2,
.download-section h2 {
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.04;
  letter-spacing: 0;
}

.feature-strip p,
.section-copy p,
.section-heading p,
.download-section p {
  margin-top: 14px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
  font-weight: 500;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 52px;
  align-items: center;
  padding: 40px 0 112px;
}

.section-copy {
  max-width: 680px;
}

.privacy-panel {
  display: grid;
  gap: 12px;
  padding: 18px;
  border-radius: var(--radius);
}

.privacy-row {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 64px;
  padding: 0 16px;
  border-radius: 18px;
  background: rgba(246, 248, 247, 0.82);
}

.privacy-row span {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--sage);
  box-shadow: inset 0 0 0 7px rgba(255, 255, 255, 0.58);
}

.insights-section {
  padding: 0 0 108px;
}

.section-heading {
  max-width: 720px;
}

.insight-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 30px;
}

.insight-grid article {
  padding: 24px;
  border-radius: var(--radius);
}

.insight-grid strong {
  display: block;
  margin-top: 10px;
  font-size: 28px;
}

.progress {
  overflow: hidden;
  height: 9px;
  margin-top: 24px;
  border-radius: 999px;
  background: rgba(38, 41, 43, 0.08);
}

.progress i {
  display: block;
  width: var(--w);
  height: 100%;
  border-radius: inherit;
  background: var(--sage);
  transform-origin: left;
  animation: fillBar 900ms ease-out both;
}

.download-section {
  display: grid;
  justify-items: center;
  margin-bottom: 44px;
  padding: 54px 22px;
  text-align: center;
  border-radius: 36px;
}

.download-section p {
  max-width: 560px;
  margin-bottom: 26px;
}

.download-icon {
  width: 74px;
  height: 74px;
  margin-bottom: 18px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
  padding: 26px 0 36px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 14px;
  font-weight: 600;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes phoneFloat {
  0%, 100% { transform: translateX(-50%) translateY(0) rotate(-2deg); }
  50% { transform: translateX(-50%) translateY(-14px) rotate(1deg); }
}

@keyframes panelFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@keyframes fillBar {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

@keyframes scrollDot {
  0%, 100% { transform: translate(-50%, 0); opacity: 0.45; }
  50% { transform: translate(-50%, 12px); opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }
}

@media (max-width: 980px) {
  .site-header {
    width: min(720px, calc(100% - 24px));
  }

  .nav-links {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 34px;
    min-height: auto;
    padding-top: 64px;
  }

  .hero-copy {
    max-width: 740px;
  }

  .hero-visual {
    min-height: 620px;
  }

  .feature-strip,
  .split-section,
  .insight-grid,
  .legal-layout,
  .support-grid {
    grid-template-columns: 1fr;
  }

  .legal-summary {
    position: static;
  }

  .contact-card {
    grid-column: auto;
  }

  .feature-strip {
    padding-bottom: 64px;
  }

  .split-section {
    gap: 22px;
    padding-bottom: 76px;
  }
}

@media (max-width: 620px) {
  .site-header {
    margin-top: 10px;
  }

  .brand span {
    font-size: 15px;
  }

  .nav-cta {
    min-height: 36px;
    padding: 0 14px;
    font-size: 13px;
  }

  .hero {
    width: min(100% - 24px, 480px);
    padding-top: 34px;
    gap: 18px;
    overflow: hidden;
  }

  h1 {
    font-size: 44px;
  }

  .hero-copy p {
    font-size: 16px;
    line-height: 1.55;
  }

  .button {
    width: 100%;
  }

  .scroll-cue {
    margin-top: 36px;
  }

  .hero-visual {
    min-height: 430px;
    transform: scale(0.6);
    transform-origin: top center;
  }

  .phone-shell {
    width: 342px;
  }

  .float-spend {
    top: 172px;
    right: -26px;
    width: 220px;
  }

  .float-private {
    top: 92px;
    left: -18px;
  }

  .float-renewal {
    top: 38px;
    right: -24px;
    width: 218px;
  }

  .float-account {
    display: none;
  }

  .feature-strip,
  .split-section,
  .insights-section,
  .download-section,
  .page-hero,
  .legal-layout,
  .support-grid,
  .site-footer {
    width: calc(100% - 24px);
  }

  .page-hero {
    padding: 66px 0 36px;
  }

  .page-hero h1 {
    font-size: 44px;
  }

  .page-hero p {
    font-size: 16px;
  }

  .legal-document,
  .legal-summary,
  .support-card {
    padding: 22px;
  }

  .feature-strip {
    margin-top: -96px;
  }

  .site-footer {
    flex-direction: column;
  }
}
