:root {
  font-family: 'Manrope', 'Space Grotesk', system-ui, -apple-system, sans-serif;
  color: #0f1c2e;
  background: radial-gradient(circle at 20% 20%, rgba(12, 124, 134, 0.08), transparent 30%),
    radial-gradient(circle at 80% 0%, rgba(244, 158, 76, 0.12), transparent 32%),
    #f7f9fb;
  min-height: 100%;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: transparent;
}

#q-app {
  min-height: 100vh;
}

.page-shell {
  max-width: 1200px;
  margin: 0 auto;
  padding: 56px 20px 72px;
}

.page-header {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 24px;
}

.title-row {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.site-title {
  margin: 0;
  font-size: clamp(36px, 6vw, 56px);
  font-family: 'Space Grotesk', 'Manrope', sans-serif;
  line-height: 1.05;
}

.site-kicker {
  margin: 6px 0 0;
  color: #475569;
  font-size: 16px;
}

.title-wrap {
  display: grid;
  gap: 6px;
}

.title-logo {
  width: 120px;
  height: 120px;
  padding: 10px;
  border-radius: 16px;
  background: #0f172a;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.25);
  display: grid;
  place-items: center;
}

.title-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 36px;
  align-items: center;
  padding: 12px 0 32px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 20px;
  background: rgba(12, 124, 134, 0.12);
  color: #0c7c86;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.hero-title {
  font-family: 'Space Grotesk', 'Manrope', sans-serif;
  font-size: clamp(32px, 5vw, 48px);
  margin: 12px 0 8px;
  line-height: 1.1;
}

.hero-subtitle {
  font-size: 18px;
  color: #334155;
  margin: 0 0 16px;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
}

.card {
  background: #ffffff;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 18px 40px rgba(15, 28, 46, 0.08);
  border: 1px solid rgba(12, 124, 134, 0.08);
}

.device-shot {
  position: relative;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
}

.device-frame {
  position: relative;
  z-index: 1;
  width: 200px;
  height: 360px;
  border-radius: 24px;
  background: radial-gradient(circle at 20% 20%, rgba(244, 158, 76, 0.14), transparent 48%),
    #0f1c2e;
  box-shadow: inset 0 0 0 10px #101826, 0 24px 40px rgba(0, 0, 0, 0.35);
  display: grid;
  place-items: center;
  color: #e3eef5;
  padding: 18px;
  text-align: center;
}
.screenshot-frame {
  position: relative;
  z-index: 1;
  width: 230px;
  padding: 12px;
  border-radius: 24px;
  background: #0f1c2e;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.28);
  display: grid;
  place-items: center;
}

.screenshot-frame img {
  width: 100%;
  height: auto;
  max-height: 420px;
  object-fit: contain;
  border-radius: 0 !important;
  box-shadow: none;
  display: block;
}

.hero-logo {
  position: relative;
  z-index: 1;
  width: 120px;
  height: 120px;
  padding: 10px;
  border-radius: 16px;
  background: rgba(12, 124, 134, 0.12);
  box-shadow: 0 12px 24px rgba(15, 28, 46, 0.12);
  display: grid;
  place-items: center;
  overflow: visible;
}

.hero-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero-logo::before {
  content: '';
  position: absolute;
  inset: 6px;
  border-radius: 18px;
  background: #0b0f1a;
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.25);
  z-index: 0;
}

.hero-logo img {
  position: relative;
  z-index: 1;
}

.device-frame h4 {
  margin: 0;
  font-size: 18px;
}

.device-frame p {
  margin: 6px 0 0;
  color: #d6e5f0;
  font-size: 14px;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 12px 0 18px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 14px;
  background: #0f1c2e;
  color: #f7f9fb;
  font-weight: 600;
}

.section {
  margin-top: 48px;
}

.section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.section-title {
  font-size: 26px;
  margin: 0;
}

.section-subtitle {
  margin: 0;
  color: #475569;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

.screens-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  justify-items: center;
}

.screens-strip {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 220px;
  gap: 12px;
  overflow-x: auto;
  padding: 8px 4px 12px;
  scrollbar-width: thin;
}

.screens-strip::-webkit-scrollbar {
  height: 8px;
}

.screens-strip::-webkit-scrollbar-thumb {
  background: rgba(15, 28, 46, 0.5);
  border-radius: 999px;
}

.screen-card {
  background: #0f172a;
  color: #e2e8f0;
  border-radius: 16px;
  padding: 6px;
  display: grid;
  gap: 6px;
  place-items: center;
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.18);
}

.phone-card {
  width: 100%;
}

.watch-card {
  width: 100%;
}

.screen-frame {
  width: 100%;
  height: 460px;
  border-radius: 12px;
  background: #0b0f1a;
  padding: 6px;
  display: grid;
  place-items: center;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.watch-card .screen-frame {
  height: 150px;
}

.screen-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 0;
  box-shadow: none;
  background: #000;
  display: block;
}

.watch-strip {
  grid-auto-columns: 140px;
  gap: 12px;
}

.badge-strip {
  grid-auto-columns: 240px;
  justify-content: flex-start;
}

.badge-card {
  background: transparent;
  box-shadow: none;
  padding: 0;
}

.badge-frame {
  width: 240px;
  height: auto;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
}

.badge-img {
  width: 240px;
  height: auto;
  background: transparent;
  border-radius: 0;
}

.feature-title {
  margin: 8px 0 6px;
  font-size: 18px;
}

.feature-text {
  margin: 0;
  color: #475569;
}

.cta {
  background: linear-gradient(135deg, #0f1c2e, #0c7c86);
  color: #f4f7fb;
  border-radius: 16px;
  padding: 28px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
  align-items: center;
}

.cta-title {
  margin: 0 0 6px;
  font-size: 24px;
}

.cta-text {
  margin: 0;
  color: #d8e5f0;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.02em;
  font-size: 12px;
}

.pill.success {
  background: rgba(76, 222, 172, 0.16);
  color: #4cdeac;
}

.pill.neutral {
  background: #0f172a !important;
  color: #f6c086 !important;
  border: 1px solid rgba(246, 192, 134, 0.5);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.18);
}

.stat {
  display: grid;
  gap: 6px;
}

.stat-label {
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 12px;
}

.stat-value {
  font-size: 28px;
  font-weight: 700;
  color: #0f1c2e;
}

.tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 12px;
}

.tip-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 12px;
  background: #ffffff;
  border: 1px solid rgba(12, 124, 134, 0.08);
  box-shadow: 0 12px 24px rgba(15, 28, 46, 0.04);
}

.footer {
  margin-top: 48px;
  text-align: center;
  color: #334155;
}

.footer a {
  color: #0c7c86;
  font-weight: 600;
  text-decoration: none;
}

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

@media (max-width: 720px) {
  .page-shell {
    padding: 36px 16px 48px;
  }

  .page-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero {
    padding-top: 0;
  }
}
