/* ShowOnPoint landing page */
:root {
  --bg: #081018;
  --bg-soft: #0d1824;
  --panel: #111f2d;
  --panel-2: #14283a;
  --text: #f4f7fb;
  --muted: #a9b8c8;
  --muted-2: #d4dde8;
  --brand: #0a84ff;
  --brand-2: #67d4ff;
  --accent: #8cffc1;
  --border: rgba(255, 255, 255, 0.12);
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.35);
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  line-height: 1.5;
  color: var(--text);
  background:
    radial-gradient(900px 500px at 12% 0%, rgba(10, 132, 255, 0.22), transparent 60%),
    radial-gradient(800px 500px at 90% 8%, rgba(140, 255, 193, 0.13), transparent 60%),
    linear-gradient(180deg, #07101a 0%, #081018 42%, #05090e 100%);
}

a {
  color: inherit;
}

.container {
  width: min(100%, 1120px);
  margin: 0 auto;
  padding: 0 22px;
}

.narrow {
  max-width: 820px;
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(8, 16, 24, 0.76);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-wrap {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-icon {
  width: 56px !important;
  height: 56px !important;
  max-width: 56px !important;
  max-height: 56px !important;
  min-width: 56px;
  border-radius: 14px;
  display: block;
  object-fit: cover;
  box-shadow: 0 12px 28px rgba(10, 132, 255, 0.28);
}

.brand-mark {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-weight: 900;
  letter-spacing: -0.5px;
  color: #06111b;
  background: linear-gradient(135deg, var(--brand-2), var(--accent));
  box-shadow: 0 12px 28px rgba(10, 132, 255, 0.28);
}

.brand-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: block;
  object-fit: cover;
  box-shadow: 0 12px 28px rgba(10, 132, 255, 0.28);
}

.brand-name {
  font-size: 19px;
  font-weight: 850;
  letter-spacing: -0.3px;
}

.brand-subtitle {
  margin-top: 1px;
  color: var(--muted);
  font-size: 12px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav a {
  color: var(--muted-2);
  text-decoration: none;
  font-size: 14px;
  font-weight: 650;
  padding: 10px 12px;
  border-radius: 999px;
}

.nav a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
}

/* Hero */

.hero {
  padding: 86px 0 66px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(330px, 0.95fr);
  gap: 54px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 720px;
  margin-bottom: 18px;
  font-size: clamp(42px, 7vw, 76px);
  line-height: 0.95;
  letter-spacing: -0.065em;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.02;
  letter-spacing: -0.045em;
}

h3 {
  margin-bottom: 8px;
  font-size: 21px;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.hero-lead {
  max-width: 680px;
  margin-bottom: 28px;
  color: var(--muted-2);
  font-size: clamp(18px, 2vw, 22px);
}

.cta-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 19px;
  border-radius: 15px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.14s ease, box-shadow 0.14s ease, background 0.14s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  color: white;
  background: linear-gradient(180deg, #3aa0ff, var(--brand));
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow:
    0 16px 34px rgba(10, 132, 255, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.btn-primary:hover {
  box-shadow:
    0 20px 42px rgba(10, 132, 255, 0.44),
    inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

.btn-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
}

.launch-note,
.small-note {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.small-note a,
.launch-note a {
  color: var(--brand-2);
}

/* Phone preview */

.hero-card {
  display: flex;
  justify-content: center;
}

.phone-frame {
  width: min(100%, 360px);
  padding: 14px;
  border-radius: 42px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.03)),
    #05080c;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: var(--shadow);
}

.phone-top {
  width: 92px;
  height: 24px;
  margin: 0 auto 10px;
  border-radius: 0 0 18px 18px;
  background: #05080c;
}

.app-preview {
  min-height: 570px;
  padding: 22px;
  border-radius: 30px;
  background:
    radial-gradient(280px 220px at 50% 0%, rgba(10, 132, 255, 0.28), transparent 70%),
    linear-gradient(180deg, #102133, #07111b);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.preview-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 22px;
}

.preview-header span {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.preview-header small {
  color: var(--muted);
  font-weight: 700;
}

.preview-tile {
  margin-bottom: 13px;
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.preview-tile strong {
  display: block;
  margin-bottom: 5px;
  font-size: 17px;
}

.preview-tile span {
  display: block;
  color: var(--muted-2);
  font-size: 14px;
}

/* Sections */

.section,
.problem-section {
  padding: 72px 0;
}

.problem-section {
  background: rgba(255, 255, 255, 0.035);
  border-top: 1px solid rgba(255, 255, 255, 0.075);
  border-bottom: 1px solid rgba(255, 255, 255, 0.075);
}

.problem-section p,
.section p {
  color: var(--muted-2);
  font-size: 18px;
}

.section-heading {
  max-width: 790px;
  margin-bottom: 28px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.feature-card {
  min-height: 255px;
  padding: 22px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid var(--border);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.16);
}

.feature-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 16px;
}

.icon {
  width: 46px;
  height: 46px;
  margin-bottom: 20px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  font-size: 24px;
}

.section-alt {
  background:
    linear-gradient(180deg, rgba(10, 132, 255, 0.08), rgba(255, 255, 255, 0.02));
  border-top: 1px solid rgba(255, 255, 255, 0.075);
  border-bottom: 1px solid rgba(255, 255, 255, 0.075);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 42px;
  align-items: center;
}

.report-card {
  padding: 22px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.report-row {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.report-row:last-child {
  border-bottom: 0;
}

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

.report-row strong {
  text-align: right;
}

.show-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.show-list span {
  padding: 10px 13px;
  border-radius: 999px;
  color: var(--muted-2);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  font-weight: 700;
  font-size: 14px;
}

.final-cta {
  text-align: center;
}

.final-cta .btn {
  margin-top: 8px;
}

/* Footer */

.site-footer {
  padding: 34px 0;
  color: var(--muted);
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(0, 0, 0, 0.18);
}

.site-footer p {
  margin: 6px 0 0;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 28px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px 16px;
}

.footer-links a {
  color: var(--muted-2);
  text-decoration: none;
  font-weight: 650;
}

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

/* Mobile */

@media (max-width: 660px) {
  .hero {
    padding-top: 56px;
  }

  .hero-grid,
  .split {
    grid-template-columns: 1fr;
  }

  .hero-card {
    justify-content: flex-start;
  }

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

  .app-preview {
    min-height: 500px;
  }
}

@media (max-width: 660px) {
  .nav {
    display: none;
  }

  .nav-wrap {
    min-height: 68px;
  }

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

  h1 {
    font-size: clamp(42px, 13vw, 58px);
  }

  h2 {
    font-size: 34px;
  }

  .hero {
    padding: 44px 0 48px;
  }

  .section,
  .problem-section {
    padding: 54px 0;
  }

  .cta-row {
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    min-height: auto;
  }

  .split {
    gap: 24px;
  }

  .report-card {
    width: 100%;
  }

  .phone-frame {
    width: 100%;
    max-width: 360px;
  }

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

  .footer-links {
    justify-content: flex-start;
  }
}