/* SprintTrack — landing styles */
:root {
  --lime: #39ff14;
  --lime-dark: #24cc00;
  --lime-soft: rgba(57, 255, 20, 0.12);
  --black: #0a0a0a;
  --white: #ffffff;
  --mint: #eefaf2;
  --muted: #5c6560;
  --chrome-1: #f8fafc;
  --chrome-2: #d4dce6;
  --chrome-3: #9aa8b8;
  --radius-lg: 22px;
  --radius-xl: 32px;
  --font: "Plus Jakarta Sans", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  background: var(--mint);
  color: var(--black);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

/* Chrome gradient utilities */
.chrome-border {
  border: 1px solid transparent;
  background:
    linear-gradient(var(--white), var(--white)) padding-box,
    linear-gradient(145deg, var(--chrome-1), var(--chrome-3) 45%, var(--chrome-2) 55%, var(--chrome-1)) border-box;
}

.chrome-text {
  background: linear-gradient(180deg, #ffffff 0%, #c8d4e0 45%, #8a9bab 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Nav */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(238, 250, 242, 0.82);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.nav-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 14px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: -0.03em;
  font-size: 1.15rem;
}

.brand img {
  width: 36px;
  height: 36px;
  border-radius: 10px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--muted);
}

.nav-links a:hover {
  color: var(--black);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.88rem;
  background: var(--black);
  color: var(--white);
  border: 1px solid var(--black);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgba(57, 255, 20, 0.22);
}

.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 8px;
  cursor: pointer;
}

@media (max-width: 820px) {
  .nav-links,
  .nav-inner .nav-cta:not(.mobile-wide) {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .nav-drawer.open {
    display: flex;
  }
}

.nav-drawer {
  display: none;
  flex-direction: column;
  gap: 16px;
  padding: 18px 22px 22px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  background: rgba(238, 250, 242, 0.96);
}

.nav-drawer a {
  font-weight: 600;
  color: var(--muted);
}

.nav-drawer .nav-cta {
  justify-content: center;
  width: 100%;
}

/* Sections */
.section {
  padding: 88px 22px;
}

.section-inner {
  max-width: 1120px;
  margin: 0 auto;
}

.section-label {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.45rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  margin: 0 0 14px;
  line-height: 1.15;
}

.section-lede {
  margin: 0;
  max-width: 560px;
  color: var(--muted);
  font-size: 1.05rem;
}

/* Hero */
.hero {
  padding: 48px 22px 72px;
  overflow: hidden;
}

.hero-grid {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

@media (max-width: 920px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-copy .hero-actions {
    justify-content: center;
  }

  .hero-copy .store-row {
    justify-content: center;
  }

  .hero-copy .section-lede {
    margin-left: auto;
    margin-right: auto;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--black);
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: var(--white);
  margin-bottom: 18px;
}

.hero-badge span {
  color: var(--lime-dark);
}

.hero h1 {
  font-size: clamp(2.35rem, 5.5vw, 3.55rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.05;
  margin: 0 0 16px;
}

.hero h1 em {
  font-style: normal;
  color: var(--lime-dark);
}

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

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.95rem;
  background: linear-gradient(135deg, var(--lime) 0%, var(--lime-dark) 100%);
  color: var(--black);
  border: 1px solid rgba(0, 0, 0, 0.15);
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(57, 255, 20, 0.35);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  background: var(--white);
  color: var(--black);
  cursor: pointer;
  transition: transform 0.15s ease;
}

.chrome-border.btn-ghost:hover {
  transform: translateY(-2px);
}

.store-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.store-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 0.85rem;
  background: var(--black);
  color: var(--white);
}

.store-pill svg {
  flex-shrink: 0;
}

/* Phone mockup — screenshots behind bezel so chrome + rounded mask sit on top */
.phone-stage {
  display: flex;
  justify-content: center;
  perspective: 900px;
}

.phone-mockup {
  position: relative;
  width: min(320px, 88vw);
  filter: drop-shadow(0 28px 55px rgba(0, 0, 0, 0.22));
}

.phone-mockup .screen-slot {
  position: absolute;
  z-index: 1;
  /* Match inner screen opening of assets/iphone-bezel.png — tweak if you swap the asset */
  top: 8%;
  left: 6.25%;
  right: 6.25%;
  bottom: 8%;
  border-radius: 28px;
  overflow: hidden;
  background: #000;
}

.phone-mockup .screen-slot img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 108%;
  height: 108%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  object-position: top center;
  opacity: 0;
  z-index: 1;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.phone-mockup .screen-slot img.active {
  opacity: 1;
  z-index: 2;
}

.phone-mockup .bezel {
  position: relative;
  z-index: 3;
  width: 100%;
  pointer-events: none;
}

/* Logos strip */
.logo-strip {
  border-block: 1px solid rgba(0, 0, 0, 0.06);
  background: var(--white);
  padding: 22px;
}

.logo-strip-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 18px 36px;
  font-weight: 700;
  color: var(--muted);
  font-size: 0.92rem;
}

.logo-strip-inner strong {
  color: var(--black);
}

.stars {
  color: #ffb703;
  letter-spacing: 2px;
}

/* Testimonials marquee-style */
.quote-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 36px;
}

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

.quote-card {
  padding: 22px;
  border-radius: var(--radius-lg);
  background: var(--white);
}

.quote-card p {
  margin: 0 0 14px;
  font-size: 0.98rem;
  color: var(--black);
}

.quote-card footer {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--muted);
}

/* Feature split */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-top: 44px;
}

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

.feature-list {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feature-list li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  align-items: start;
}

.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--lime-soft);
  border: 1px solid rgba(57, 255, 20, 0.35);
  font-size: 1.15rem;
}

.feature-list strong {
  display: block;
  margin-bottom: 4px;
}

.feature-list span {
  font-size: 0.92rem;
  color: var(--muted);
}

.preview-stack {
  position: relative;
  min-height: 380px;
}

.preview-stack img {
  position: absolute;
  width: min(300px, 100%);
  border-radius: 28px;
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.preview-stack img:nth-child(1) {
  top: 0;
  right: 12%;
  z-index: 1;
  transform: rotate(-6deg);
}

.preview-stack img:nth-child(2) {
  top: 72px;
  left: 4%;
  z-index: 2;
  transform: rotate(4deg);
}

@media (max-width: 900px) {
  .preview-stack {
    min-height: 420px;
    margin-top: 12px;
  }

  .preview-stack img:nth-child(1) {
    right: 50%;
    transform: translateX(50%) rotate(-4deg);
  }

  .preview-stack img:nth-child(2) {
    left: 50%;
    transform: translateX(-50%) rotate(5deg);
    top: 140px;
  }
}

/* Three reasons */
.reasons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 36px;
}

@media (max-width: 820px) {
  .reasons {
    grid-template-columns: 1fr;
  }
}

.reason-card {
  padding: 26px;
  border-radius: var(--radius-lg);
  background: var(--white);
}

.reason-card h3 {
  margin: 0 0 10px;
  font-size: 1.15rem;
}

.reason-card p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--muted);
}

/* Dark band */
.dark-band {
  background:
    radial-gradient(ellipse 80% 60% at 50% -20%, rgba(57, 255, 20, 0.18), transparent 55%),
    linear-gradient(180deg, #070707 0%, #0f1210 100%);
  color: var(--white);
  border-block: 1px solid rgba(255, 255, 255, 0.06);
}

.dark-band .section-label {
  color: rgba(255, 255, 255, 0.55);
}

.dark-band .section-lede {
  color: rgba(255, 255, 255, 0.68);
}

.dark-panel {
  margin-top: 36px;
  padding: 28px;
  border-radius: var(--radius-xl);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: center;
}

@media (max-width: 820px) {
  .dark-panel {
    grid-template-columns: 1fr;
  }
}

.dark-panel img {
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}

.dark-panel h3 {
  margin: 0 0 12px;
  font-size: 1.45rem;
}

.dark-panel p {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.72);
}

.tag-new {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--lime);
  color: var(--black);
  margin-bottom: 14px;
}

/* Wall of love */
.wall-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 36px;
}

@media (max-width: 720px) {
  .wall-grid {
    grid-template-columns: 1fr;
  }
}

.wall-card {
  padding: 22px;
  border-radius: var(--radius-lg);
  background: var(--white);
}

.wall-card .handle {
  font-weight: 800;
  margin-bottom: 8px;
}

/* Ratings */
.ratings {
  text-align: center;
  padding: 72px 22px 96px;
  background: linear-gradient(180deg, var(--white) 0%, var(--mint) 100%);
}

.ratings-inner {
  max-width: 560px;
  margin: 0 auto;
}

.ratings .big-stars {
  font-size: 1.6rem;
  margin-bottom: 12px;
}

.ratings h2 {
  margin: 0 0 10px;
  font-size: 1.85rem;
}

.ratings p {
  margin: 0 0 22px;
  color: var(--muted);
}

.ratings .btn-primary {
  font-size: 1rem;
  padding: 16px 28px;
}

/* Footer */
.site-footer {
  padding: 36px 22px 48px;
  background: var(--black);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
}

.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  justify-content: space-between;
  align-items: center;
}

.footer-links {
  display: flex;
  gap: 22px;
}

.footer-links a:hover {
  color: var(--lime);
}

/* Modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  display: grid;
  place-items: center;
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  padding: 22px;
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.modal {
  width: min(420px, 100%);
  padding: 28px;
  border-radius: var(--radius-xl);
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.35);
}

.modal h3 {
  margin: 0 0 8px;
}

.modal p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 0.95rem;
}

.modal-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.modal-close {
  margin-top: 16px;
  width: 100%;
  padding: 12px;
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: transparent;
  font-weight: 700;
  cursor: pointer;
}

.notify-status {
  margin: 12px 0 0;
  font-size: 0.88rem;
  min-height: 1.35em;
  font-weight: 600;
}

.notify-status.is-error {
  color: #b42318;
}

.notify-status.is-success {
  color: var(--lime-dark);
}

.notify-status.is-muted {
  color: var(--muted);
}

/* Support */
.support-band {
  background: var(--white);
  border-block: 1px solid rgba(0, 0, 0, 0.06);
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 32px;
}

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

.support-card {
  padding: 24px;
  border-radius: var(--radius-lg);
  background: var(--mint);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.support-card h3 {
  margin: 0 0 10px;
  font-size: 1.08rem;
}

.support-card p {
  margin: 0 0 14px;
  font-size: 0.95rem;
  color: var(--muted);
}

.support-card p:last-child {
  margin-bottom: 0;
}

.support-card a {
  font-weight: 700;
  color: var(--lime-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.support-card a:hover {
  color: var(--black);
}

.support-legal-row {
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  display: flex;
  flex-wrap: wrap;
  gap: 14px 28px;
  align-items: center;
  font-size: 0.95rem;
  color: var(--muted);
}

.support-legal-row strong {
  color: var(--black);
}

.support-legal-row a {
  font-weight: 700;
  color: var(--black);
}

.support-legal-row a:hover {
  color: var(--lime-dark);
}

/* Legal & inner pages */
.page-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.page-shell main {
  flex: 1;
}

.page-nav {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.page-nav .brand {
  font-size: 1rem;
}

.page-nav .back-link {
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--muted);
}

.page-nav .back-link:hover {
  color: var(--lime-dark);
}

.legal-main {
  padding: 24px 22px 72px;
}

.legal-inner {
  max-width: 720px;
  margin: 0 auto;
}

.legal-inner h1 {
  margin: 0 0 8px;
  font-size: clamp(1.65rem, 3.5vw, 2.1rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.legal-effective {
  margin: 0 0 28px;
  font-size: 0.88rem;
  color: var(--muted);
}

.legal-doc h2 {
  margin: 32px 0 12px;
  font-size: 1.15rem;
  font-weight: 800;
}

.legal-doc h2:first-of-type {
  margin-top: 0;
}

.legal-doc h3 {
  margin: 22px 0 8px;
  font-size: 1rem;
  font-weight: 700;
}

.legal-doc p,
.legal-doc li {
  margin: 0 0 12px;
  font-size: 0.95rem;
  color: #2d332f;
}

.legal-doc ul {
  padding-left: 1.25rem;
  margin: 0 0 16px;
}

.legal-doc a {
  font-weight: 600;
  color: var(--lime-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-doc a:hover {
  color: var(--black);
}

.page-footer-mini {
  padding: 22px;
  background: var(--black);
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.82rem;
  text-align: center;
}

.page-footer-mini a {
  color: var(--lime);
  font-weight: 600;
}

.page-footer-mini a:hover {
  text-decoration: underline;
}
