:root {
  --surface: #f9f9ff;
  --surface-subtle: #f7f8fa;
  --surface-low: #f1f3ff;
  --surface-dim: #d7dae5;
  --border-light: #e5e6eb;
  --text: #181c23;
  --text-secondary: #4e5969;
  --primary: #003da6;
  --primary-bright: #0052d9;
  --primary-fixed: #dbe1ff;
  --brand-blue-deep: #002b6b;
  --success: #00a870;
  --inverse-surface: #2c3039;
  --white: #ffffff;
  --shadow: 0 20px 40px rgba(0, 61, 166, 0.1);
  --container: 1200px;
  --gutter: 24px;
  font-family: Inter, "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--surface);
  color: var(--text);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
.container { width: min(100% - 48px, var(--container)); margin-inline: auto; }

.top-nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  border-bottom: 1px solid var(--border-light);
  background: rgba(249, 249, 255, 0.92);
  backdrop-filter: blur(14px);
  box-shadow: 0 4px 18px rgba(24, 28, 35, 0.06);
}
.nav-inner {
  width: min(100% - 48px, var(--container));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 0;
}
.nav-brand { display: flex; align-items: center; gap: 16px; min-width: 0; }
.nav-brand img { width: 148px; max-height: 40px; object-fit: contain; }
.nav-brand span { color: var(--primary); font-size: 20px; font-weight: 800; white-space: nowrap; }
.nav-links { display: flex; align-items: center; gap: 32px; color: #434654; }
.nav-links a:not(.nav-cta):hover { color: var(--primary); }
.nav-cta {
  border-radius: 6px;
  background: var(--primary);
  color: #fff;
  padding: 8px 24px;
  font-weight: 700;
  transition: background 0.2s ease;
}
.nav-cta:hover { background: var(--primary-bright); }
.menu-toggle { display: none; border: 0; background: transparent; color: var(--primary); font-size: 28px; }

.hero-section {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(0, 43, 107, 0.88), rgba(0, 61, 166, 0.28)),
    radial-gradient(circle at 72% 32%, rgba(219, 225, 255, 0.55), transparent 28rem),
    linear-gradient(120deg, #0a2756, #0f58c6 52%, #9fb8ff);
}
.hero-bg::before,
.hero-bg::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.16);
  transform: rotate(-10deg);
}
.hero-bg::before { width: 42rem; height: 42rem; right: -12rem; top: 8rem; }
.hero-bg::after { width: 28rem; height: 28rem; left: 44%; bottom: -10rem; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(0, 43, 107, 0.88), rgba(0, 61, 166, 0.38)); }
.hero-content { position: relative; z-index: 1; }
.hero-copy { max-width: 680px; color: #fff; }
.label {
  display: inline-block;
  color: var(--primary);
  font-family: "JetBrains Mono", Consolas, monospace;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1;
  text-transform: uppercase;
}
.light-label { color: var(--primary-fixed); margin-bottom: 16px; }
h1, h2, h3, p { margin-top: 0; }
h1 {
  margin-bottom: 16px;
  font-size: clamp(2.7rem, 6vw, 4.8rem);
  line-height: 1.12;
  letter-spacing: -0.04em;
  font-weight: 900;
}
h2 { color: var(--brand-blue-deep); font-size: clamp(2rem, 4vw, 3rem); line-height: 1.25; margin-bottom: 16px; }
h3 { font-size: 24px; line-height: 1.35; margin-bottom: 8px; }
.hero-subtitle { color: var(--surface-low); font-size: 18px; max-width: 640px; margin-bottom: 32px; }
.hero-actions, .contact-buttons { display: flex; flex-wrap: wrap; gap: 16px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  border-radius: 6px;
  padding: 12px 28px;
  font-weight: 800;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-bright); }
.btn-ghost { border: 1px solid rgba(255,255,255,0.36); color: #fff; backdrop-filter: blur(6px); }
.btn-ghost:hover { background: rgba(255,255,255,0.12); }
.btn-light { background: #fff; color: var(--primary); }
.btn-outline { border: 1px solid rgba(255,255,255,0.35); color: #fff; }

.section { padding-block: 120px; }
.about-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.section-rule { width: 64px; height: 4px; background: var(--primary); margin: 0 0 32px; }
.about-copy p { color: var(--text-secondary); margin-bottom: 16px; }
.check-list { list-style: none; padding: 16px 0 0; margin: 0; display: grid; gap: 8px; }
.check-list li { display: flex; align-items: center; gap: 8px; color: var(--primary); font-weight: 700; }
.check-list span { color: var(--success); font-size: 12px; }
.about-visual {
  position: relative;
  min-height: 400px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 28px 70px rgba(0, 43, 107, 0.18);
  background: linear-gradient(135deg, rgba(0,61,166,0.1), rgba(0,43,107,0.8)), linear-gradient(45deg, #dfe8ff, #ffffff);
}
.about-visual::before { content: ""; position: absolute; inset: -16px; border-radius: 14px; background: rgba(0,61,166,0.05); z-index: -1; }
.visual-grid, .map-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.22) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.22) 1px, transparent 1px);
  background-size: 34px 34px;
}
.visual-panel {
  position: absolute;
  right: 28px;
  bottom: 28px;
  width: min(78%, 320px);
  padding: 24px;
  border: 1px solid rgba(255,255,255,0.28);
  border-radius: 10px;
  background: rgba(255,255,255,0.12);
  color: #fff;
  backdrop-filter: blur(10px);
}
.visual-panel span, .visual-panel small { display: block; opacity: 0.82; }
.visual-panel strong { display: block; margin: 8px 0; font-size: 28px; line-height: 1.15; }

.services-section { background: var(--surface-subtle); padding-block: 120px; }
.section-heading { text-align: center; margin-bottom: 64px; }
.section-heading .label { margin-bottom: 8px; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
  min-height: 300px;
  padding: 40px;
  border: 1px solid var(--border-light);
  background: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.service-index { display: block; margin-bottom: 16px; color: var(--primary); font-family: Consolas, monospace; font-weight: 800; letter-spacing: 0.12em; }
.service-icon { display: block; margin-bottom: 16px; color: var(--primary); font-size: 38px; }
.service-card p { color: var(--text-secondary); margin: 0; }
.delay-1 { transition-delay: 100ms; }
.delay-2 { transition-delay: 200ms; }

.info-section { padding-block: 120px; }
.info-card { border: 1px solid var(--border-light); background: #fff; overflow: hidden; }
.info-header { background: var(--primary); padding: 24px 32px; }
.info-header h2 { color: #fff; margin: 0; font-size: 24px; }
.info-body { display: grid; grid-template-columns: 1fr 1fr; }
.info-column { padding: 32px; }
.info-side { background: var(--surface-low); display: flex; flex-direction: column; justify-content: space-between; gap: 32px; }
.info-list { margin: 0; display: grid; gap: 24px; }
.info-list div { padding-bottom: 24px; border-bottom: 1px solid var(--border-light); }
.info-list div:last-child { border-bottom: 0; padding-bottom: 0; }
dt { margin-bottom: 8px; color: var(--text-secondary); font-family: Consolas, monospace; font-size: 13px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; }
dd { margin: 0; color: var(--text); font-weight: 700; overflow-wrap: anywhere; }
dd a { color: var(--primary); }
.map-card { position: relative; height: 192px; border: 1px solid var(--border-light); border-radius: 8px; overflow: hidden; background: linear-gradient(135deg, #dfe2ed, #fff); }
.map-card a { position: absolute; inset: auto auto 50% 50%; transform: translate(-50%, 50%); padding: 8px 16px; border-radius: 6px; background: rgba(255,255,255,0.92); color: var(--primary); font-weight: 700; box-shadow: 0 10px 24px rgba(0,0,0,0.12); }

.contact-section { padding-bottom: 120px; }
.contact-panel {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
  padding: clamp(40px, 7vw, 80px);
  border-radius: 12px;
  background: var(--brand-blue-deep);
  color: #fff;
}
.contact-panel h2 { color: #fff; }
.contact-panel p { color: var(--surface-dim); font-size: 18px; margin-bottom: 32px; }
.contact-copy, .metric-grid { position: relative; z-index: 1; }
.contact-glow { position: absolute; width: 280px; height: 280px; border-radius: 999px; filter: blur(60px); background: rgba(0,82,217,0.28); }
.contact-glow.one { top: -120px; right: -100px; }
.contact-glow.two { bottom: -160px; left: -120px; }
.metric-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.metric-grid div { padding: 24px; border: 1px solid rgba(255,255,255,0.12); border-radius: 8px; background: rgba(255,255,255,0.06); backdrop-filter: blur(8px); }
.metric-grid strong { display: block; margin-bottom: 4px; font-size: 32px; line-height: 1; }
.metric-grid span { color: var(--surface-dim); font-size: 12px; }

.site-footer { border-top: 1px solid var(--border-light); background: var(--surface-subtle); padding-block: 32px; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.footer-brand { display: grid; gap: 6px; text-align: left; }
.footer-brand strong { font-size: 18px; }
.footer-brand span { color: var(--text-secondary); font-size: 12px; }
.footer-links { display: flex; align-items: center; gap: 32px; color: var(--text-secondary); font-size: 12px; }
.police-record { display: inline-flex; align-items: center; gap: 6px; }
.police-record img { width: 16px; height: 16px; display: block; object-fit: contain; }
.footer-links a:hover { color: var(--primary); }

.reveal-on-scroll { opacity: 0; transform: translateY(20px); transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal-on-scroll.active { opacity: 1; transform: translateY(0); }

@media (max-width: 900px) {
  .container, .nav-inner { width: min(100% - 32px, var(--container)); }
  .menu-toggle { display: inline-flex; }
  .nav-brand span { display: none; }
  .nav-links {
    position: absolute;
    left: 16px;
    right: 16px;
    top: calc(100% + 8px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--border-light);
    border-radius: 10px;
    background: rgba(249,249,255,0.98);
    box-shadow: 0 20px 44px rgba(24,28,35,0.14);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px; }
  .nav-cta { text-align: center; margin-top: 8px; }
  .hero-section { min-height: 760px; }
  .about-section, .info-body, .contact-panel { grid-template-columns: 1fr; }
  .service-grid { grid-template-columns: 1fr; }
  .section, .services-section, .info-section { padding-block: 72px; }
  .contact-section { padding-bottom: 72px; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-brand { text-align: center; }
}

@media (max-width: 520px) {
  .nav-brand img { width: 120px; }
  h1 { font-size: clamp(2.15rem, 12vw, 3.2rem); word-break: break-word; }
  h2 { font-size: 2rem; }
  .hero-subtitle { font-size: 16px; }
  .hero-actions, .contact-buttons { flex-direction: column; }
  .btn { width: 100%; }
  .about-visual { min-height: 320px; }
  .visual-panel { left: 20px; right: 20px; width: auto; }
  .service-card, .info-column { padding: 24px; }
  .metric-grid { grid-template-columns: 1fr; }
  .footer-links { gap: 18px; flex-wrap: wrap; justify-content: center; }
}

/* App introduction page */
.app-page { background: linear-gradient(180deg, #f9f9ff 0%, #eef3ff 100%); }
.app-hero-section {
  position: relative;
  overflow: hidden;
  min-height: 760px;
  padding: 150px 0 90px;
  color: #fff;
}
.app-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 16%, rgba(255,255,255,0.32), transparent 18rem),
    radial-gradient(circle at 20% 80%, rgba(0,168,112,0.28), transparent 22rem),
    linear-gradient(135deg, #002b6b 0%, #003da6 52%, #0052d9 100%);
}
.app-hero-bg::before,
.app-hero-bg::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255,255,255,0.14);
  transform: rotate(-12deg);
}
.app-hero-bg::before { width: 36rem; height: 36rem; right: -10rem; top: 5rem; border-radius: 6rem; }
.app-hero-bg::after { width: 22rem; height: 22rem; left: -7rem; bottom: -8rem; border-radius: 999px; }
.app-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  align-items: center;
  gap: 64px;
}
.app-hero-copy h1 { margin-bottom: 18px; }
.phone-card { display: flex; justify-content: center; }
.phone-frame {
  width: min(100%, 360px);
  min-height: 560px;
  padding: 18px;
  border: 1px solid rgba(255,255,255,0.32);
  border-radius: 42px;
  background: rgba(255,255,255,0.18);
  box-shadow: 0 34px 80px rgba(0, 18, 55, 0.36);
  backdrop-filter: blur(18px);
}
.phone-status {
  width: 92px;
  height: 6px;
  margin: 0 auto 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.62);
}
.phone-screen {
  min-height: 500px;
  padding: 34px 26px;
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.96), rgba(241,243,255,0.96)),
    radial-gradient(circle at top right, rgba(0,82,217,0.18), transparent 12rem);
  color: var(--text);
}
.app-badge {
  display: inline-flex;
  margin-bottom: 24px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--primary-fixed);
  color: var(--primary);
  font-size: 13px;
  font-weight: 800;
}
.phone-screen h2 { font-size: 30px; margin-bottom: 26px; }
.phone-screen ul { list-style: none; display: grid; gap: 14px; margin: 0; padding: 0; }
.phone-screen li {
  padding: 14px 16px;
  border: 1px solid var(--border-light);
  border-radius: 14px;
  background: #fff;
  color: var(--text-secondary);
  font-weight: 700;
}
.app-summary {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: start;
  gap: 48px;
  padding-block: 90px;
}
.app-summary p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 18px;
}
.app-feature-grid { grid-template-columns: repeat(3, 1fr); }
.app-feature-grid .service-card { min-height: 280px; }
.agreement-section { padding-block: 110px; }
.agreement-section .section-heading p {
  max-width: 720px;
  margin: 0 auto;
  color: var(--text-secondary);
}
.agreement-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.agreement-card {
  padding: 30px;
  border: 1px solid var(--border-light);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 18px 44px rgba(0, 61, 166, 0.07);
}
.agreement-card h3 { color: var(--brand-blue-deep); }
.agreement-card p { margin: 0; color: var(--text-secondary); }

@media (max-width: 900px) {
  .app-hero-section { padding: 120px 0 72px; }
  .app-hero-grid, .app-summary, .agreement-grid { grid-template-columns: 1fr; }
  .app-feature-grid { grid-template-columns: 1fr; }
  .phone-frame { min-height: auto; }
  .phone-screen { min-height: 420px; }
}

@media (max-width: 520px) {
  .app-hero-section { min-height: auto; }
  .phone-frame { border-radius: 30px; padding: 12px; }
  .phone-screen { border-radius: 22px; padding: 26px 20px; }
  .agreement-card { padding: 24px; }
}

/* App Store style application page */
.store-page {
  background: #f5f5f7;
  color: #1d1d1f;
}
.store-page .top-nav {
  background: rgba(245, 245, 247, 0.88);
}
.store-shell {
  padding-top: 108px;
}
.store-hero {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 32px;
  align-items: center;
  padding: 46px 0 34px;
  border-bottom: 1px solid #d2d2d7;
}
.store-app-icon {
  display: grid;
  place-items: center;
  width: 190px;
  height: 190px;
  border-radius: 42px;
  background: #fff;
  box-shadow: 0 22px 44px rgba(0, 61, 166, 0.18);
  overflow: hidden;
}
.store-app-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.store-title-block h1 {
  margin: 0 0 4px;
  color: #1d1d1f;
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  letter-spacing: -0.055em;
}
.store-eyebrow {
  margin: 0 0 6px;
  color: #6e6e73;
  font-size: 15px;
  font-weight: 700;
}
.store-subtitle {
  margin: 0 0 6px;
  color: #1d1d1f;
  font-size: 22px;
  font-weight: 700;
}
.store-developer {
  margin: 0 0 26px;
  color: #06c;
  font-size: 17px;
}
.store-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}
.store-get-button,
.store-share-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  border-radius: 999px;
  background: #0071e3;
  color: #fff;
  font-weight: 800;
}
.store-get-button {
  padding: 7px 24px;
}
.store-share-button {
  width: 36px;
  height: 36px;
  font-size: 18px;
}
.store-metrics {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  padding: 22px 0 34px;
  border-bottom: 1px solid #d2d2d7;
}
.store-metrics article {
  min-height: 82px;
  padding: 0 18px;
  border-right: 1px solid #d2d2d7;
  text-align: center;
}
.store-metrics article:last-child { border-right: 0; }
.store-metrics span,
.store-metrics small {
  display: block;
  color: #6e6e73;
  font-size: 12px;
  font-weight: 700;
}
.store-metrics strong {
  display: block;
  margin: 7px 0 4px;
  color: #1d1d1f;
  font-size: 25px;
  line-height: 1.05;
}
.store-section {
  padding: 34px 0;
  border-bottom: 1px solid #d2d2d7;
}
.store-section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 22px;
}
.store-section-header h2 {
  margin: 0;
  color: #1d1d1f;
  font-size: 30px;
  letter-spacing: -0.03em;
}
.store-section-header span,
.store-section-header a {
  color: #06c;
  font-size: 15px;
  font-weight: 700;
}
.store-section-header.borderless { margin-bottom: 10px; }
.store-description {
  max-width: 880px;
  color: #424245;
  font-size: 18px;
}
.store-description p { margin-bottom: 16px; }
.store-description ul {
  display: grid;
  gap: 10px;
  margin: 0 0 16px;
  padding-left: 22px;
}
.privacy-card,
.developer-card,
.store-list article {
  border-radius: 18px;
  background: #fff;
  padding: 22px;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.05);
}
.store-list h3 { margin-bottom: 8px; color: #1d1d1f; }
.privacy-card p,
.store-list p { margin: 0; color: #424245; }
.store-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.store-info-list {
  margin: 0;
  border-radius: 18px;
  background: #fff;
  overflow: hidden;
}
.store-info-list div {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 24px;
  padding: 18px 22px;
  border-bottom: 1px solid #e5e5ea;
}
.store-info-list div:last-child { border-bottom: 0; }
.store-info-list dt {
  margin: 0;
  color: #6e6e73;
  font-family: inherit;
  font-size: 15px;
  letter-spacing: 0;
  text-transform: none;
}
.store-info-list dd {
  color: #1d1d1f;
  font-weight: 700;
}
.store-info-list a,
.privacy-card a,
.developer-card a { color: #06c; font-weight: 800; }
.developer-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) repeat(3, auto);
  align-items: center;
  gap: 18px;
}
.developer-card strong,
.developer-card span { display: block; }
.developer-card span { color: #6e6e73; font-size: 14px; }

@media (max-width: 900px) {
  .store-shell { padding-top: 88px; }
  .store-hero { grid-template-columns: 120px minmax(0, 1fr); gap: 22px; }
  .store-app-icon { width: 120px; height: 120px; border-radius: 28px; }
  .store-metrics { grid-template-columns: repeat(3, 1fr); row-gap: 22px; }
  .store-metrics article:nth-child(3n) { border-right: 0; }
  .store-list { grid-template-columns: 1fr; }
  .developer-card { grid-template-columns: 1fr; }
}

@media (max-width: 520px) {
  .store-hero { grid-template-columns: 1fr; text-align: center; }
  .store-app-icon { margin: 0 auto; }
  .store-actions { justify-content: center; }
  .store-metrics { grid-template-columns: repeat(2, 1fr); }
  .store-metrics article,
  .store-metrics article:nth-child(3n) { border-right: 1px solid #d2d2d7; }
  .store-metrics article:nth-child(2n) { border-right: 0; }
  .store-section-header { align-items: flex-start; flex-direction: column; gap: 8px; }
  .store-info-list div { grid-template-columns: 1fr; gap: 6px; }
}

/* Legal agreement content shared by app pages */
.agreement-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin: -6px 0 18px;
  color: #6e6e73;
  font-size: 14px;
  font-weight: 700;
}
.agreement-notice {
  margin-bottom: 18px;
  padding: 22px;
  border: 1px solid rgba(0, 113, 227, 0.18);
  border-radius: 18px;
  background: #fff;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.03);
}
.agreement-notice strong {
  display: block;
  margin-bottom: 8px;
  color: #1d1d1f;
  font-size: 18px;
}
.agreement-notice p {
  margin: 0;
  color: #424245;
}
.legal-list article p {
  line-height: 1.72;
}

/* Compliance document library */
.compliance-section { padding-block: 110px; }
.compliance-intro {
  max-width: 880px;
  margin: -8px 0 22px;
  color: #424245;
  font-size: 17px;
}
.compliance-card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-bottom: 24px;
}
.compliance-card-grid a {
  display: grid;
  gap: 6px;
  padding: 18px;
  border-radius: 16px;
  background: #fff;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.06);
}
.compliance-card-grid strong {
  color: #1d1d1f;
  font-size: 17px;
}
.compliance-card-grid span {
  color: #6e6e73;
  font-size: 14px;
}
.compliance-docs {
  display: grid;
  gap: 14px;
}
.compliance-doc {
  border-radius: 18px;
  background: #fff;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.06);
  overflow: hidden;
}
.compliance-doc summary {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
  color: #1d1d1f;
  font-weight: 900;
  list-style: none;
}
.compliance-doc summary::-webkit-details-marker { display: none; }
.compliance-doc summary::after {
  content: "+";
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: #f5f5f7;
  color: #06c;
  font-size: 18px;
}
.compliance-doc[open] summary::after { content: "−"; }
.compliance-doc summary span { font-size: 20px; }
.compliance-doc summary small {
  margin-left: auto;
  color: #6e6e73;
  font-size: 12px;
  font-weight: 700;
}
.compliance-doc-body {
  padding: 0 22px 24px;
  color: #424245;
  line-height: 1.72;
}
.compliance-doc-body h3,
.compliance-doc-body h4,
.compliance-doc-body h5,
.compliance-doc-body h6 {
  margin: 22px 0 10px;
  color: #1d1d1f;
  line-height: 1.35;
}
.compliance-doc-body p { margin: 0 0 10px; }
.compliance-doc-body ul { margin: 0 0 12px 1.1rem; padding: 0; }
.compliance-doc-body li { margin-bottom: 7px; }
.compliance-doc-body a { color: #06c; font-weight: 700; }
.compliance-table-wrap {
  overflow-x: auto;
  margin: 12px 0 18px;
}
.compliance-table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
  background: #fff;
}
.compliance-table th,
.compliance-table td {
  border: 1px solid #e5e5ea;
  padding: 10px 12px;
  text-align: left;
  vertical-align: top;
}
.compliance-table th {
  background: #f5f5f7;
  color: #1d1d1f;
}

@media (max-width: 900px) {
  .compliance-card-grid { grid-template-columns: 1fr; }
  .compliance-doc summary { align-items: flex-start; flex-direction: column; }
  .compliance-doc summary small { margin-left: 0; }
}

/* Service details section */
.service-detail-section {
  background: transparent;
}
.service-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.service-detail-grid article {
  padding: 24px;
  border-radius: 18px;
  background: #fff;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.06), 0 14px 34px rgba(0, 61, 166, 0.06);
}
.service-detail-grid span {
  display: inline-block;
  margin-bottom: 12px;
  color: #06c;
  font-family: Consolas, monospace;
  font-weight: 900;
  letter-spacing: 0.12em;
}
.service-detail-grid h3 {
  color: #1d1d1f;
  font-size: 22px;
}
.service-detail-grid p {
  margin: 0;
  color: #424245;
}

@media (max-width: 900px) {
  .service-detail-grid { grid-template-columns: 1fr; }
}

/* Technical support page */
.support-shell {
  padding-bottom: 42px;
}
.support-hero {
  display: grid;
  grid-template-columns: 148px minmax(0, 1fr);
  gap: 30px;
  align-items: center;
  padding: 52px 0 34px;
  border-bottom: 1px solid #d2d2d7;
}
.support-icon {
  display: grid;
  place-items: center;
  width: 148px;
  height: 148px;
  border-radius: 34px;
  background: #fff;
  box-shadow: 0 22px 44px rgba(0, 61, 166, 0.16);
  overflow: hidden;
}
.support-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.support-hero-copy h1 {
  margin: 0 0 8px;
  color: #1d1d1f;
  font-size: clamp(2.35rem, 5.8vw, 4rem);
  letter-spacing: -0.05em;
}
.support-subtitle {
  max-width: 820px;
  margin: 0 0 24px;
  color: #424245;
  font-size: 19px;
}
.support-notice {
  margin-top: 22px;
  padding: 22px;
  border: 1px solid rgba(0, 113, 227, 0.18);
  border-radius: 18px;
  background: #fff;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.03);
}
.support-notice strong {
  display: block;
  margin-bottom: 8px;
  color: #1d1d1f;
  font-size: 18px;
}
.support-notice p {
  margin: 0;
  color: #424245;
}
.support-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.support-grid article {
  padding: 24px;
  border-radius: 18px;
  background: #fff;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.06), 0 14px 34px rgba(0, 61, 166, 0.06);
}
.support-grid span {
  display: inline-block;
  margin-bottom: 12px;
  color: #06c;
  font-family: Consolas, monospace;
  font-weight: 900;
  letter-spacing: 0.12em;
}
.support-grid h3 {
  color: #1d1d1f;
  font-size: 22px;
}
.support-grid p {
  margin: 0;
  color: #424245;
}
.support-info-list dd {
  font-weight: 600;
}

@media (max-width: 900px) {
  .support-hero { grid-template-columns: 112px minmax(0, 1fr); gap: 22px; }
  .support-icon { width: 112px; height: 112px; border-radius: 26px; }
  .support-grid { grid-template-columns: 1fr; }
}

@media (max-width: 520px) {
  .support-hero { grid-template-columns: 1fr; text-align: center; }
  .support-icon { margin: 0 auto; }
  .support-hero .store-actions { justify-content: center; }
}

/* Marketing page */
.marketing-page {
  background: #f5f7fb;
}
.marketing-shell {
  padding-top: 72px;
}
.marketing-hero {
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 18%, rgba(0, 168, 112, 0.18), transparent 21rem),
    radial-gradient(circle at 16% 82%, rgba(0, 82, 217, 0.14), transparent 23rem),
    linear-gradient(180deg, #ffffff 0%, #edf3ff 100%);
}
.marketing-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  align-items: center;
  gap: 72px;
  min-height: 760px;
  padding: 74px 0 58px;
}
.marketing-copy h1 {
  color: var(--brand-blue-deep);
  margin: 14px 0 18px;
}
.marketing-lead {
  max-width: 680px;
  color: #424245;
  font-size: 21px;
  line-height: 1.72;
}
.marketing-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}
.btn-soft {
  background: #e8f0ff;
  color: var(--primary);
}
.marketing-phone {
  display: flex;
  justify-content: center;
}
.marketing-phone-shell {
  width: min(100%, 370px);
  padding: 18px;
  border-radius: 44px;
  background: linear-gradient(145deg, #0b2c66, #0066cc);
  box-shadow: 0 34px 90px rgba(0, 43, 107, 0.28);
}
.marketing-phone-screen {
  min-height: 540px;
  padding: 34px 28px;
  border-radius: 30px;
  background: linear-gradient(180deg, #ffffff, #eef4ff);
  color: #1d1d1f;
}
.marketing-phone-screen img {
  width: 82px;
  height: 82px;
  border-radius: 22px;
  margin-bottom: 26px;
  box-shadow: 0 16px 36px rgba(0, 61, 166, 0.16);
}
.marketing-phone-screen strong {
  display: block;
  color: var(--brand-blue-deep);
  font-size: 30px;
  line-height: 1.25;
}
.marketing-phone-screen p {
  margin: 14px 0 24px;
  color: #5f6673;
}
.marketing-phone-screen ul {
  display: grid;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.marketing-phone-screen li {
  padding: 14px 16px;
  border: 1px solid #dfe6f5;
  border-radius: 16px;
  background: #fff;
  color: #25324a;
  font-weight: 800;
}
.marketing-section {
  padding-block: 92px;
}
.marketing-section-header {
  max-width: 840px;
  margin-bottom: 34px;
}
.marketing-section-header .label {
  margin-bottom: 10px;
}
.marketing-feature-grid,
.marketing-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.marketing-feature-grid article,
.marketing-trust-grid article {
  padding: 24px;
  border-radius: 18px;
  background: #fff;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.06), 0 14px 34px rgba(0, 61, 166, 0.06);
}
.marketing-feature-grid span {
  display: inline-block;
  margin-bottom: 14px;
  color: #06c;
  font-family: Consolas, monospace;
  font-weight: 900;
  letter-spacing: 0.12em;
}
.marketing-feature-grid p,
.marketing-trust-grid p {
  margin: 0;
  color: #424245;
}
.marketing-band {
  background: #fff;
  padding-block: 92px;
}
.marketing-journey {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 56px;
  align-items: start;
}
.marketing-journey p {
  color: #424245;
  font-size: 18px;
}
.journey-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: journey;
}
.journey-list li {
  counter-increment: journey;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  padding: 18px;
  border-radius: 18px;
  background: #f5f7fb;
}
.journey-list li::before {
  content: counter(journey, decimal-leading-zero);
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: var(--primary);
  color: #fff;
  font-weight: 900;
}
.journey-list strong,
.journey-list span {
  grid-column: 2;
}
.journey-list strong {
  color: #1d1d1f;
  font-size: 19px;
}
.journey-list span {
  color: #5f6673;
}
.marketing-trust-grid {
  grid-template-columns: repeat(3, 1fr);
}
.marketing-final {
  margin-top: 18px;
  padding: clamp(30px, 6vw, 56px);
  border-radius: 22px;
  background: var(--brand-blue-deep);
  color: #fff;
}
.marketing-final h2 {
  color: #fff;
}
.marketing-final p {
  color: #dbe5ff;
}

@media (max-width: 900px) {
  .marketing-hero-inner,
  .marketing-journey {
    grid-template-columns: 1fr;
  }
  .marketing-hero-inner {
    min-height: auto;
    padding-top: 54px;
  }
  .marketing-feature-grid,
  .marketing-trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px) {
  .marketing-actions {
    flex-direction: column;
  }
  .marketing-feature-grid,
  .marketing-trust-grid {
    grid-template-columns: 1fr;
  }
  .marketing-phone-shell {
    border-radius: 32px;
    padding: 12px;
  }
  .marketing-phone-screen {
    min-height: 460px;
    border-radius: 24px;
  }
}

/* Goal OS inspired app page refresh */
.app-redesign {
  --goal-bg: #fbfaf7;
  --goal-ink: #111111;
  --goal-muted: #5f5f5f;
  --goal-line: #e7e1d8;
  background:
    radial-gradient(circle at 80% 18%, rgba(224, 211, 191, 0.35), transparent 28rem),
    linear-gradient(180deg, #fbfaf7 0%, #f4f0e8 100%);
  color: var(--goal-ink);
}
.app-redesign .top-nav {
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
  background: rgba(251, 250, 247, 0.86);
  box-shadow: none;
}
.app-redesign .nav-brand span,
.app-redesign .nav-links a:not(.nav-cta):hover,
.app-redesign .menu-toggle { color: var(--goal-ink); }
.app-redesign .nav-links { color: #3f3b35; }
.app-redesign .store-shell { padding-top: 0; }
.goal-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.76fr);
  gap: clamp(40px, 7vw, 96px);
  align-items: center;
  min-height: 100vh;
  padding-top: 122px;
  padding-bottom: 70px;
}
.goal-hero-copy,
.goal-phone-wrap {
  min-width: 0;
}
.goal-pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  margin: 0 0 22px;
  padding: 6px 14px;
  border: 1px solid var(--goal-line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  color: var(--goal-muted);
  font-size: 14px;
  font-weight: 800;
}
.goal-hero-copy h1 {
  max-width: 760px;
  margin-bottom: 18px;
  color: var(--goal-ink);
  font-size: clamp(3.8rem, 8.5vw, 7.4rem);
  line-height: 0.94;
  letter-spacing: 0;
  font-weight: 900;
  overflow-wrap: anywhere;
}
.goal-hero-copy h1 span {
  display: block;
}
.goal-hero-name {
  margin: 0 0 18px;
  color: var(--goal-ink);
  font-size: 30px;
  font-weight: 900;
}
.goal-hero-text {
  max-width: 650px;
  margin-bottom: 32px;
  color: var(--goal-muted);
  font-size: 20px;
  line-height: 1.65;
}
.app-redesign .store-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.app-store-button {
  display: inline-grid;
  min-width: 178px;
  min-height: 58px;
  justify-content: center;
  padding: 9px 22px 10px;
  border-radius: 12px;
  background: #111;
  color: #fff;
  box-shadow: 0 16px 34px rgba(17, 17, 17, 0.16);
}
.app-store-button span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 11px;
  line-height: 1.1;
}
.app-store-button strong {
  color: #fff;
  font-size: 21px;
  line-height: 1.1;
  letter-spacing: 0;
}
.app-store-button.dark {
  background: #111;
  justify-self: end;
}
.app-redesign .store-get-button.secondary {
  min-height: 58px;
  padding: 14px 24px;
  border: 1px solid var(--goal-line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.58);
  color: var(--goal-ink);
  box-shadow: none;
}
.goal-phone-wrap {
  display: grid;
  place-items: center;
  min-height: 630px;
}
.goal-phone {
  width: min(100%, 372px);
  padding: 14px;
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: 48px;
  background: #161616;
  box-shadow: 0 34px 80px rgba(53, 42, 24, 0.26);
}
.goal-phone-top {
  width: 104px;
  height: 7px;
  margin: 5px auto 13px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.25);
}
.goal-phone-screen {
  min-height: 566px;
  padding: 24px;
  border-radius: 36px;
  background:
    radial-gradient(circle at 88% 12%, rgba(210, 187, 146, 0.35), transparent 11rem),
    linear-gradient(180deg, #fffaf1 0%, #f7efe1 100%);
  overflow: hidden;
}
.goal-app-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}
.goal-app-header img {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  object-fit: cover;
}
.goal-app-header span,
.goal-wheel-card span,
.goal-action-card span {
  display: block;
  color: #83786a;
  font-size: 12px;
  font-weight: 800;
}
.goal-app-header strong {
  display: block;
  color: #171717;
  font-size: 20px;
  line-height: 1.1;
}
.goal-dialogue {
  display: grid;
  gap: 12px;
  margin-bottom: 18px;
}
.goal-dialogue p {
  width: 88%;
  margin: 0;
  padding: 14px 16px;
  border-radius: 18px 18px 18px 6px;
  background: rgba(255, 255, 255, 0.74);
  color: #332f2a;
  font-size: 15px;
  line-height: 1.55;
  box-shadow: inset 0 0 0 1px rgba(17, 17, 17, 0.05);
}
.goal-dialogue p:nth-child(2) {
  justify-self: end;
  border-radius: 18px 18px 6px 18px;
  background: #171717;
  color: #fff;
}
.goal-wheel-card,
.goal-action-card {
  margin-top: 14px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 18px 38px rgba(80, 61, 30, 0.1);
}
.goal-wheel-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px;
}
.goal-wheel-card strong {
  display: block;
  margin-top: 3px;
  color: #171717;
  font-size: 20px;
}
.goal-wheel-card em {
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: conic-gradient(#171717 0 72%, #ded3c0 72% 100%);
  color: #fff;
  font-style: normal;
  font-weight: 900;
}
.goal-action-card {
  padding: 18px;
}
.goal-action-card strong {
  display: block;
  margin-top: 5px;
  color: #171717;
  font-size: 18px;
  line-height: 1.35;
}
.goal-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 30px 0;
  border-top: 1px solid var(--goal-line);
  border-bottom: 1px solid var(--goal-line);
}
.goal-metrics article {
  min-height: 100px;
  padding: 8px 26px;
  border-right: 1px solid var(--goal-line);
  text-align: center;
}
.goal-metrics article:last-child { border-right: 0; }
.goal-metrics strong {
  display: block;
  color: var(--goal-ink);
  font-size: 42px;
  line-height: 1;
}
.goal-metrics span {
  display: block;
  margin-top: 10px;
  color: var(--goal-muted);
  font-size: 14px;
  font-weight: 800;
}
.goal-section {
  padding: 106px 0;
}
.goal-section-header {
  max-width: 790px;
  margin: 0 auto 58px;
  text-align: center;
}
.goal-section-header p,
.goal-cta p {
  margin: 0 0 10px;
  color: var(--goal-muted);
  font-size: 15px;
  font-weight: 900;
}
.goal-section-header h2,
.goal-cta h2 {
  margin-bottom: 14px;
  color: var(--goal-ink);
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  line-height: 1.02;
  letter-spacing: 0;
}
.goal-section-header span,
.goal-cta span {
  color: var(--goal-muted);
  font-size: 18px;
}
.review-info-note {
  display: block;
  max-width: 700px;
  margin: 18px auto 0;
  color: #7a7166;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.7;
}
.goal-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.goal-feature-grid article {
  min-height: 214px;
  padding: 28px;
  border: 1px solid var(--goal-line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.68);
}
.goal-feature-grid h3 {
  margin-bottom: 12px;
  color: var(--goal-ink);
  font-size: 24px;
}
.goal-feature-grid p {
  margin: 0;
  color: var(--goal-muted);
  font-size: 16px;
}
.goal-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  margin-bottom: 72px;
  padding: 48px;
  border: 1px solid var(--goal-line);
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 24px 60px rgba(73, 58, 34, 0.08);
}
.goal-cta h2 { font-size: clamp(2.1rem, 4vw, 3.5rem); }
.app-redesign .store-section { border-bottom-color: var(--goal-line); }
.app-redesign .store-section-header h2 {
  color: var(--goal-ink);
  letter-spacing: 0;
}
.app-redesign .compliance-card-grid a,
.app-redesign .privacy-card,
.app-redesign .developer-card,
.app-redesign .store-info-list,
.app-redesign .store-list article,
.app-redesign .compliance-doc {
  border: 1px solid var(--goal-line);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: none;
}
.app-redesign .site-footer {
  border-top-color: var(--goal-line);
  background: #f4f0e8;
}

@media (max-width: 900px) {
  .app-redesign .nav-links { background: rgba(251, 250, 247, 0.98); }
  .goal-hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 116px;
    text-align: center;
  }
  .goal-hero-copy h1,
  .goal-hero-text { margin-inline: auto; }
  .goal-phone-wrap { min-height: auto; }
  .goal-metrics,
  .goal-feature-grid { grid-template-columns: repeat(2, 1fr); }
  .goal-metrics article:nth-child(2n) { border-right: 0; }
  .goal-metrics article { border-bottom: 1px solid var(--goal-line); }
  .goal-metrics article:nth-last-child(-n + 2) { border-bottom: 0; }
  .goal-cta {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .app-store-button.dark { justify-self: center; }
}

@media (max-width: 560px) {
  .goal-hero {
    padding-top: 102px;
    padding-bottom: 46px;
  }
  .goal-hero-copy h1 {
    font-size: clamp(2.72rem, 12vw, 3.55rem);
    line-height: 1.06;
  }
  .goal-hero-text { font-size: 17px; }
  .app-redesign .store-actions { justify-content: center; }
  .app-store-button,
  .app-redesign .store-get-button.secondary { width: 100%; }
  .goal-phone {
    width: min(100%, 260px);
    border-radius: 38px;
  }
  .goal-phone-screen {
    min-height: 520px;
    padding: 20px;
    border-radius: 29px;
  }
  .goal-metrics,
  .goal-feature-grid { grid-template-columns: 1fr; }
  .goal-metrics article,
  .goal-metrics article:nth-child(2n) {
    border-right: 0;
    border-bottom: 1px solid var(--goal-line);
  }
  .goal-metrics article:last-child { border-bottom: 0; }
  .goal-section { padding: 74px 0; }
  .goal-feature-grid article,
  .goal-cta {
    border-radius: 18px;
    padding: 24px;
  }
}

/* Product Design pass: match Goal OS centered layout on a black canvas */
.app-redesign {
  --goal-bg: #050505;
  --goal-ink: #ffffff;
  --goal-muted: #a1a1aa;
  --goal-line: rgba(255, 255, 255, 0.12);
  background:
    radial-gradient(circle at 50% 10%, rgba(255, 255, 255, 0.09), transparent 28rem),
    linear-gradient(180deg, #050505 0%, #080808 54%, #030303 100%);
  color: var(--goal-ink);
}
.app-redesign .top-nav {
  border-bottom-color: rgba(255, 255, 255, 0.08);
  background: rgba(5, 5, 5, 0.74);
  backdrop-filter: blur(16px);
}
.app-redesign .nav-brand span,
.app-redesign .nav-links,
.app-redesign .nav-links a:not(.nav-cta):hover,
.app-redesign .menu-toggle {
  color: #fff;
}
.app-redesign .nav-brand img {
  filter: brightness(0) invert(1);
}
.app-redesign .store-shell {
  background: transparent;
}
.goal-hero {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
  min-height: 100vh;
  padding-top: 112px;
  padding-bottom: 88px;
  text-align: center;
}
.goal-hero-copy {
  display: grid;
  justify-items: center;
}
.goal-pill {
  margin-bottom: 30px;
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.08);
  color: #d4d4d8;
}
.goal-hero-copy h1 {
  max-width: 920px;
  margin-bottom: 22px;
  color: #fff;
  font-size: clamp(4.3rem, 8vw, 7.2rem);
  line-height: 0.98;
  text-wrap: balance;
}
.goal-hero-name {
  color: #d4d4d8;
}
.goal-hero-text {
  max-width: 720px;
  margin-inline: auto;
  color: #a1a1aa;
}
.app-redesign .store-actions {
  justify-content: center;
}
.app-store-button {
  background: #fff;
  color: #09090b;
  box-shadow: 0 18px 46px rgba(255, 255, 255, 0.12);
}
.app-store-button span,
.app-store-button strong {
  color: #09090b;
}
.app-redesign .store-get-button.secondary {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}
.goal-phone-wrap {
  width: 100%;
  min-height: 0;
  margin-top: 64px;
}
.goal-phone {
  width: min(100%, 320px);
  border-color: rgba(255, 255, 255, 0.12);
  background: #111;
  box-shadow:
    0 32px 90px rgba(255, 255, 255, 0.08),
    0 0 120px rgba(255, 255, 255, 0.08);
}
.goal-metrics {
  border-top-color: rgba(255, 255, 255, 0.1);
  border-bottom-color: rgba(255, 255, 255, 0.1);
}
.goal-metrics article {
  border-right-color: rgba(255, 255, 255, 0.1);
}
.goal-metrics strong,
.goal-section-header h2,
.goal-cta h2,
.goal-feature-grid h3,
.app-redesign .store-section-header h2 {
  color: #fff;
}
.goal-metrics span,
.goal-section-header p,
.goal-section-header span,
.goal-cta p,
.goal-cta span,
.goal-feature-grid p,
.review-info-note,
.app-redesign .store-info-list dt,
.app-redesign .store-description,
.app-redesign .privacy-card p,
.app-redesign .store-list p,
.app-redesign .compliance-intro {
  color: #a1a1aa;
}
.goal-feature-grid article,
.goal-cta,
.app-redesign .compliance-card-grid a,
.app-redesign .privacy-card,
.app-redesign .developer-card,
.app-redesign .store-info-list,
.app-redesign .store-list article,
.app-redesign .compliance-doc {
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.055);
  box-shadow: none;
}
.app-redesign .store-info-list dd,
.app-redesign .store-list h3,
.app-redesign .developer-card strong,
.app-redesign .compliance-card-grid strong,
.app-redesign .compliance-doc summary span,
.app-redesign .compliance-doc-body h3,
.app-redesign .compliance-doc-body h4,
.app-redesign .compliance-doc-body h5,
.app-redesign .compliance-doc-body h6 {
  color: #fff;
}
.app-redesign .compliance-card-grid span,
.app-redesign .compliance-doc summary small,
.app-redesign .compliance-doc-body,
.app-redesign .compliance-doc-body p,
.app-redesign .compliance-doc-body li {
  color: #c4c4cc;
}
.app-redesign .store-info-list div,
.app-redesign .compliance-table th,
.app-redesign .compliance-table td {
  border-color: rgba(255, 255, 255, 0.1);
}
.app-redesign .compliance-table th {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}
.app-redesign .compliance-table td {
  color: #d4d4d8;
}
.app-store-button.dark {
  background: #fff;
}
.app-redesign .site-footer {
  border-top-color: rgba(255, 255, 255, 0.1);
  background: #050505;
}
.app-redesign .footer-brand strong,
.app-redesign .footer-links a:hover {
  color: #fff;
}
.app-redesign .footer-brand span,
.app-redesign .footer-links {
  color: #a1a1aa;
}
.app-redesign .footer-links img {
  filter: none;
}

@media (max-width: 900px) {
  .app-redesign .nav-links {
    border-color: rgba(255, 255, 255, 0.1);
    background: rgba(10, 10, 10, 0.98);
  }
  .goal-hero {
    padding-top: 116px;
  }
  .goal-hero-copy h1 {
    font-size: clamp(3.4rem, 13vw, 5.2rem);
  }
  .goal-metrics article,
  .goal-metrics article:nth-child(2n) {
    border-bottom-color: rgba(255, 255, 255, 0.1);
    border-right-color: rgba(255, 255, 255, 0.1);
  }
}

@media (max-width: 560px) {
  .app-redesign {
    overflow-x: hidden;
  }
  .goal-hero {
    padding-top: 100px;
    padding-bottom: 64px;
    overflow-x: hidden;
  }
  .goal-hero-copy h1 {
    max-width: 340px;
    font-size: clamp(3rem, 14vw, 3.85rem);
    line-height: 1.05;
  }
  .goal-hero-text {
    max-width: 340px;
    font-size: 16px;
  }
  .app-redesign .store-actions {
    justify-self: center;
    width: 100%;
    max-width: 280px;
    margin-inline: auto;
    flex-direction: column;
  }
  .app-redesign .store-actions .app-store-button,
  .app-redesign .store-actions .store-get-button.secondary {
    max-width: 280px;
  }
  .goal-phone-wrap {
    margin-top: 48px;
  }
  .goal-phone {
    width: min(100%, 270px);
  }
  .goal-phone-screen {
    min-height: 500px;
  }
}

/* App Store screenshot carousel */
.app-shot-carousel {
  position: relative;
  width: min(100%, 1120px);
  min-height: 780px;
  margin: 64px auto 0;
  display: grid;
  place-items: start center;
  overflow: hidden;
  isolation: isolate;
}

.app-shot-carousel::before {
  content: "";
  position: absolute;
  inset: 14% 13% auto;
  height: 460px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.13), transparent 70%);
  filter: blur(18px);
  z-index: -1;
}

.app-shot-slide {
  position: absolute;
  top: 0;
  width: clamp(250px, 31vw, 380px);
  aspect-ratio: 1242 / 2688;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: clamp(24px, 3vw, 38px);
  background: transparent;
  overflow: hidden;
  cursor: pointer;
  transition:
    transform 360ms cubic-bezier(0.16, 1, 0.3, 1),
    opacity 260ms ease,
    filter 260ms ease;
  will-change: transform, opacity, filter;
}

.app-shot-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: inherit;
  box-shadow:
    0 34px 90px rgba(0, 0, 0, 0.44),
    0 0 0 1px rgba(255, 255, 255, 0.11);
}

.app-shot-slide.is-active {
  position: relative;
  z-index: 3;
  cursor: pointer;
  transform: translateX(0) scale(1);
}

.app-shot-slide.is-prev {
  z-index: 2;
  opacity: 0.58;
  filter: saturate(0.82) brightness(0.78);
  transform: translateX(clamp(-340px, -28vw, -230px)) translateY(68px) scale(0.76) rotate(-3deg);
}

.app-shot-slide.is-next {
  z-index: 2;
  opacity: 0.58;
  filter: saturate(0.82) brightness(0.78);
  transform: translateX(clamp(230px, 28vw, 340px)) translateY(68px) scale(0.76) rotate(3deg);
}

.app-shot-slide.is-prev:hover,
.app-shot-slide.is-next:hover {
  opacity: 0.84;
  filter: saturate(0.96) brightness(0.9);
}

.app-shot-carousel.is-shifting-forward .app-shot-slide.is-active {
  transform: translateX(clamp(-64px, -6vw, -32px)) scale(0.94);
  opacity: 0.72;
}

.app-shot-carousel.is-shifting-forward .app-shot-slide.is-next {
  transform: translateX(0) translateY(18px) scale(0.9) rotate(0deg);
  opacity: 0.92;
  filter: saturate(1) brightness(0.96);
}

.app-shot-carousel.is-shifting-backward .app-shot-slide.is-active {
  transform: translateX(clamp(32px, 6vw, 64px)) scale(0.94);
  opacity: 0.72;
}

.app-shot-carousel.is-shifting-backward .app-shot-slide.is-prev {
  transform: translateX(0) translateY(18px) scale(0.9) rotate(0deg);
  opacity: 0.92;
  filter: saturate(1) brightness(0.96);
}

.app-shot-carousel.is-settling .app-shot-slide.is-active {
  animation: carouselFocusIn 300ms cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes carouselFocusIn {
  0% {
    transform: translateY(22px) scale(0.94);
    opacity: 0.74;
    filter: saturate(0.9) brightness(0.9);
  }
  100% {
    transform: translateY(0) scale(1);
    opacity: 1;
    filter: none;
  }
}

.app-shot-dots {
  position: absolute;
  left: 50%;
  bottom: 24px;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transform: translateX(-50%);
}

.app-shot-dots button {
  width: 7px;
  height: 7px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.25);
  cursor: pointer;
  transition: width 200ms ease, background 200ms ease;
}

.app-shot-dots button.is-active {
  width: 22px;
  background: #fff;
}

@media (max-width: 900px) {
  .app-shot-carousel {
    width: min(100%, 680px);
    min-height: 720px;
    margin-top: 52px;
  }

  .app-shot-slide {
    width: clamp(230px, 56vw, 340px);
  }

  .app-shot-slide.is-prev {
    transform: translateX(-190px) translateY(62px) scale(0.68) rotate(-3deg);
  }

  .app-shot-slide.is-next {
    transform: translateX(190px) translateY(62px) scale(0.68) rotate(3deg);
  }
}

@media (max-width: 560px) {
  .app-shot-carousel {
    width: 100%;
    min-height: 630px;
    margin-top: 42px;
    overflow: visible;
  }

  .app-shot-slide {
    width: min(72vw, 280px);
    border-radius: 24px;
  }

  .app-shot-slide.is-prev {
    opacity: 0.42;
    transform: translateX(-112px) translateY(50px) scale(0.62) rotate(-3deg);
  }

  .app-shot-slide.is-next {
    opacity: 0.42;
    transform: translateX(112px) translateY(50px) scale(0.62) rotate(3deg);
  }

  .app-shot-carousel.is-shifting-forward .app-shot-slide.is-active {
    transform: translateX(-36px) scale(0.94);
  }

  .app-shot-carousel.is-shifting-forward .app-shot-slide.is-next,
  .app-shot-carousel.is-shifting-backward .app-shot-slide.is-prev {
    transform: translateX(0) translateY(18px) scale(0.82) rotate(0deg);
  }

  .app-shot-carousel.is-shifting-backward .app-shot-slide.is-active {
    transform: translateX(36px) scale(0.94);
  }

  .app-shot-dots {
    bottom: 18px;
    max-width: 280px;
    flex-wrap: wrap;
  }
}
