:root {
  --ink: #1a1f2e;
  --muted: #5a6072;
  --card: rgba(255, 255, 255, 0.84);
  --line: rgba(30, 43, 79, 0.14);
  --accent: #0a5c7b;
  --accent-2: #1e4f8f;
  --bg-a: #e8f1ff;
  --bg-b: #e6fbff;
  --bg-c: #eef0fb;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: Helvetica, Arial, sans-serif;
  color: var(--ink);
  line-height: 1.55;
  background:
    radial-gradient(circle at 10% 0%, rgba(46, 104, 191, 0.18), transparent 36%),
    radial-gradient(circle at 90% 4%, rgba(24, 152, 185, 0.16), transparent 40%),
    radial-gradient(circle at 52% 100%, rgba(86, 120, 194, 0.12), transparent 42%),
    linear-gradient(162deg, var(--bg-a), var(--bg-b) 48%, var(--bg-c));
  min-height: 100dvh;
}

.page {
  width: min(880px, 92vw);
  margin: 1.5rem auto 2.4rem;
  display: grid;
  gap: 1rem;
  animation: rise 300ms ease-out;
}

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1rem 1.1rem;
  backdrop-filter: blur(4px);
}

.hero {
  border-color: rgba(14, 91, 128, 0.25);
  padding-bottom: 0.55rem;
}

.hero-layout {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: start;
}

.hero-logo {
  width: clamp(64px, 11vw, 96px);
  height: auto;
  border-radius: 12px;
  border: 1px solid rgba(16, 44, 98, 0.2);
  box-shadow: 0 6px 14px rgba(20, 46, 93, 0.16);
  background: rgba(255, 255, 255, 0.72);
  justify-self: end;
  align-self: start;
}

.eyebrow {
  margin: 0;
  color: var(--accent-2);
  font-weight: 600;
  letter-spacing: 0.02em;
}

h1,
h2,
h3 {
  margin-top: 0;
  line-height: 1.2;
}

h1 {
  margin-bottom: 0.5rem;
  font-size: clamp(1.65rem, 5vw, 2.45rem);
}

h2 {
  margin-bottom: 0.45rem;
  font-size: clamp(1.1rem, 2.6vw, 1.35rem);
}

h3 {
  margin-bottom: 0.42rem;
  font-size: 1rem;
}

.lede {
  margin-top: 0;
  margin-bottom: 0.4rem;
  color: var(--muted);
  max-width: 68ch;
}

.hero-links {
  margin-top: 0.25rem;
  padding: 0.42rem 0.1rem 0;
  border-top: 1px solid rgba(20, 46, 93, 0.2);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.44rem;
}

.hero-links a {
  color: #000;
  text-decoration: none;
  font-weight: 600;
}

.hero-links a:hover {
  color: #000;
}

.sep {
  color: rgba(0, 0, 0, 0.55);
}

.hero-links a:focus-visible {
  outline: 2px solid #0d5296;
  outline-offset: 2px;
  border-radius: 4px;
}

.feature-grid {
  display: grid;
  gap: 0.75rem;
}

.feature {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.65);
  padding: 0.78rem;
}

.feature p {
  margin: 0;
  color: var(--muted);
}

.screenshot-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.shot {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.6);
  padding: 0.7rem;
}

.shot-meta h3 {
  margin: 0 0 0.2rem;
  font-size: 0.98rem;
}

.shot-meta p {
  margin: 0 0 0.55rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.screenshot-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  border: 1px solid rgba(16, 44, 98, 0.2);
  background: rgba(255, 255, 255, 0.55);
  display: block;
}

.screenshot-placeholder {
  border: 1px dashed rgba(16, 44, 98, 0.35);
  border-radius: 10px;
  min-height: 180px;
  background: rgba(255, 255, 255, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0.8rem;
  color: var(--muted);
  font-weight: 600;
}

.live-activity-row {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.faq-list .qa-item {
  padding: 0.15rem 0 0.95rem;
  margin-bottom: 0.95rem;
  border-bottom: 1px dashed rgba(20, 46, 93, 0.3);
}

.faq-list .qa-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}

.faq-list h3 {
  margin-bottom: 0.45rem;
}

.card ul,
.card ol {
  margin: 0.35rem 0 0.2rem 1.3rem;
  max-width: min(72ch, 96%);
  padding-left: 1.15rem;
}

.card li + li {
  margin-top: 0.22rem;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (min-width: 760px) {
  .page {
    gap: 1.1rem;
  }

  .card {
    padding: 1.05rem 1.25rem;
  }

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

@media (max-width: 700px) {
  .hero-layout {
    grid-template-columns: 1fr;
  }

  .hero-logo {
    width: 74px;
    justify-self: start;
  }

  .screenshot-grid,
  .live-activity-row {
    grid-template-columns: 1fr;
  }
}
