@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300..800&family=Space+Grotesk:wght@400..700&display=swap');

:root {
  color-scheme: light;
  --app-font-body: "Manrope", "Space Grotesk", sans-serif;
  --app-font-display: "Space Grotesk", "Manrope", sans-serif;
  --app-radius-lg: 1.25rem;
  --app-radius-md: 0.9rem;
  --app-shadow-card: 0 18px 40px -28px rgba(15, 23, 42, 0.4);
  --app-border: rgba(15, 23, 42, 0.12);
  --app-surface: rgba(255, 255, 255, 0.92);
  --app-surface-strong: #ffffff;
  --app-surface-muted: rgba(148, 163, 184, 0.15);
  --app-page-bg: #f4f6f9;
  --app-accent-soft: rgba(20, 184, 166, 0.18);
  --app-primary: #0ea5e9;
  --app-primary-hover: #0284c7;
  --app-secondary: #64748b;
  --app-text: #0f172a;
  --app-success: #047857;
  --app-danger: #b91c1c;
}

* {
  box-sizing: border-box;
}

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

body {
  font-family: var(--app-font-body);
  background: var(--app-page-bg);
  color: var(--app-text);
  line-height: 1.55;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
}

body::before {
  background:
    radial-gradient(60% 50% at 10% 10%, rgba(14, 165, 233, 0.18), transparent 60%),
    radial-gradient(50% 50% at 90% 5%, rgba(20, 184, 166, 0.16), transparent 60%);
}

body::after {
  background:
    radial-gradient(45% 50% at 85% 85%, rgba(14, 165, 233, 0.12), transparent 60%),
    radial-gradient(40% 35% at 15% 85%, rgba(234, 179, 8, 0.12), transparent 60%);
  z-index: -3;
}

a {
  color: var(--app-primary-hover);
  text-underline-offset: 0.2em;
}

a:hover {
  color: var(--app-primary);
}

.container {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--app-border);
  background: rgba(255, 255, 255, 0.75);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--app-font-display);
  font-weight: 700;
  color: var(--app-text);
  text-decoration: none;
}

.brand-logo {
  width: 30px;
  height: 30px;
  border-radius: 8px;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.header-nav a {
  text-decoration: none;
  font-weight: 600;
  color: var(--app-text);
}

.section {
  padding: 4.25rem 0;
}

.section-alt {
  background: rgba(255, 255, 255, 0.4);
  border-top: 1px solid var(--app-border);
  border-bottom: 1px solid var(--app-border);
}

.section-showcase {
  padding-top: 1rem;
  padding-bottom: 1.5rem;
}

.hero {
  padding: 5rem 0 4rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1.5rem;
  align-items: center;
}

h1,
h2,
h3 {
  font-family: var(--app-font-display);
  letter-spacing: -0.02em;
  margin: 0 0 0.75rem;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2rem, 4.6vw, 3.25rem);
}

h2 {
  font-size: clamp(1.6rem, 3.2vw, 2.2rem);
}

h3 {
  font-size: 1.2rem;
}

p {
  margin: 0 0 1rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--app-secondary);
  margin-bottom: 0.9rem;
}

.lede {
  font-size: 1.14rem;
  color: #1e293b;
}

.narrow {
  max-width: 760px;
}

.credibility {
  margin-top: 1rem;
  font-size: 0.92rem;
  color: var(--app-secondary);
  font-weight: 600;
}

.hero-actions {
  margin: 1.6rem 0 0.8rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  text-decoration: none;
  font-family: var(--app-font-body);
  font-weight: 700;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}

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

.btn:focus-visible {
  outline: 2px solid rgba(14, 165, 233, 0.55);
  outline-offset: 2px;
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, #0ea5e9, #14b8a6);
  box-shadow: 0 10px 24px -14px rgba(14, 165, 233, 0.8);
}

.btn-primary:hover {
  color: #fff;
  background: linear-gradient(135deg, #0284c7, #0d9488);
}

.btn-ghost {
  color: var(--app-text);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(15, 23, 42, 0.16);
}

.btn-ghost:hover {
  color: var(--app-text);
  background: rgba(255, 255, 255, 0.98);
}

.btn-sm {
  font-size: 0.85rem;
  padding: 0.48rem 0.9rem;
}

.btn-lg {
  font-size: 1rem;
  padding: 0.9rem 1.35rem;
}

.card {
  position: relative;
  overflow: hidden;
  background: var(--app-surface);
  border: 1px solid var(--app-border);
  border-radius: var(--app-radius-lg);
  box-shadow: var(--app-shadow-card);
  padding: 1.25rem;
  background:
    linear-gradient(170deg, rgba(255, 255, 255, 0.96), rgba(248, 250, 252, 0.88)),
    var(--app-surface);
}

.card::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  background: linear-gradient(90deg, rgba(14, 165, 233, 0.85), rgba(20, 184, 166, 0.7));
  opacity: 0.75;
}

.card > * {
  position: relative;
  z-index: 1;
}

.card-accent {
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.16), rgba(20, 184, 166, 0.14));
  border: 1px solid rgba(14, 165, 233, 0.25);
}

.hero-card h2 {
  font-size: 1.2rem;
  margin-bottom: 0.9rem;
}

.icon-list,
.check-list,
.analysis-list,
.steps {
  margin: 0;
  padding-left: 1.2rem;
}

.icon-list li,
.check-list li,
.analysis-list li,
.steps li {
  margin-bottom: 0.6rem;
}

.analysis-list li {
  display: grid;
  gap: 0.18rem;
}

.analysis-list a {
  font-weight: 700;
}

.analysis-list span {
  color: #1e293b;
}

.card-grid {
  display: grid;
  gap: 1rem;
}

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

.card-grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.section-note {
  margin-top: 1rem;
  color: #334155;
}

.solution-grid {
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: 1rem;
  align-items: start;
}

.solution-card {
  min-height: 100%;
}

.shot-stack {
  display: grid;
  gap: 0.9rem;
}

.screenshot-card {
  padding: 0.55rem;
}

.screenshot-card img {
  width: 100%;
  display: block;
  border-radius: 0.8rem;
  border: 1px solid rgba(15, 23, 42, 0.12);
  cursor: zoom-in;
}

.screenshot-feature {
  max-width: 980px;
  margin: 0 auto;
}

.muted {
  color: var(--app-secondary);
}

.split-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1rem;
  align-items: start;
}

.stat-stack {
  display: grid;
  gap: 0.85rem;
}

.stat {
  background: var(--app-surface-muted);
  border: 1px solid var(--app-border);
  border-radius: var(--app-radius-md);
  padding: 1rem;
}

.stat-label {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--app-secondary);
}

.stat-value {
  margin-top: 0.35rem;
  font-size: 1.25rem;
  font-family: var(--app-font-display);
  font-weight: 700;
}

.cta {
  padding-top: 4.6rem;
}

.form-card {
  max-width: 760px;
}

.lead-form {
  display: grid;
  gap: 1rem;
}

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

.lead-form label {
  display: grid;
  gap: 0.35rem;
  font-weight: 600;
}

.full-width {
  grid-column: 1 / -1;
}

.lead-form input {
  width: 100%;
  min-height: 42px;
  border-radius: 0.7rem;
  border: 1px solid rgba(15, 23, 42, 0.2);
  padding: 0.62rem 0.78rem;
  font: inherit;
  color: var(--app-text);
  background: var(--app-surface-strong);
}

.lead-form input:focus-visible {
  outline: 2px solid rgba(14, 165, 233, 0.55);
  outline-offset: 1px;
  border-color: transparent;
}

.form-actions {
  display: grid;
  gap: 0.65rem;
  justify-items: start;
}

.form-feedback {
  margin: 0;
  min-height: 1.4rem;
  font-weight: 600;
}

.form-feedback.success {
  color: var(--app-success);
}

.form-feedback.error {
  color: var(--app-danger);
}

.site-footer {
  border-top: 1px solid var(--app-border);
  background: rgba(255, 255, 255, 0.55);
  padding: 1.1rem 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.footer-inner a {
  font-weight: 600;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(2, 6, 23, 0.86);
  backdrop-filter: blur(4px);
}

.lightbox[hidden] {
  display: none;
}

.lightbox img {
  max-width: min(96vw, 1600px);
  max-height: 90vh;
  width: auto;
  height: auto;
  border-radius: 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 24px 60px -30px rgba(15, 23, 42, 0.85);
  background: #0f172a;
}

.lightbox-close {
  position: fixed;
  top: 0.8rem;
  right: 0.9rem;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(2, 6, 23, 0.8);
  color: #fff;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}

body.lightbox-open {
  overflow: hidden;
}

@media (max-width: 960px) {
  .hero-grid,
  .split-grid,
  .card-grid.three,
  .solution-grid {
    grid-template-columns: 1fr;
  }

  .header-nav a:not(.btn) {
    display: none;
  }
}

@media (max-width: 720px) {
  .section {
    padding: 3.4rem 0;
  }

  .hero {
    padding-top: 3.8rem;
  }

  .form-grid,
  .card-grid.two {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
