/* LookMetric marketing site — calm, premium, mobile-first */

:root {
  --bg: #f7faf8;
  --bg-elevated: #ffffff;
  --ink: #0d1f1c;
  --ink-muted: #5a726c;
  --ink-soft: #8aa39c;
  --brand: #0f8f83;
  --brand-bright: #18c6b7;
  --brand-glow: rgba(24, 198, 183, 0.35);
  --accent: #ff7f5f;
  --dark: #061011;
  --dark-card: #0f1a19;
  --border: rgba(13, 31, 28, 0.08);
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 24px 60px -32px rgba(6, 16, 17, 0.35);
  --font: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
  --max: 1120px;
  --nav-h: 72px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--brand);
  text-decoration: none;
  transition: color 0.15s ease;
}

a:hover {
  color: var(--brand-bright);
}

.container {
  width: min(100% - 40px, var(--max));
  margin-inline: auto;
}

/* Nav */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: rgba(247, 250, 248, 0.82);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-weight: 800;
  font-size: 1.125rem;
  letter-spacing: -0.02em;
}

.brand:hover {
  color: var(--ink);
}

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

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: var(--ink-muted);
  font-size: 0.9375rem;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 8px;
}

.nav-links a:hover,
.nav-links a.is-active {
  color: var(--ink);
  background: rgba(15, 143, 131, 0.08);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--brand);
  color: #fff !important;
  font-weight: 700;
  font-size: 0.875rem;
  border-radius: 8px;
  box-shadow: 0 8px 24px -8px var(--brand-glow);
}

.nav-cta:hover {
  background: #0c7a70;
  color: #fff !important;
}

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

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  margin: 5px 0;
  border-radius: 2px;
}

/* Hero */
.hero {
  position: relative;
  padding: 72px 0 96px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% -10%, var(--brand-glow), transparent 55%),
    radial-gradient(ellipse 50% 40% at 10% 80%, rgba(255, 127, 95, 0.12), transparent 50%),
    linear-gradient(180deg, #eef8f5 0%, var(--bg) 100%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: rgba(15, 143, 131, 0.1);
  color: var(--brand);
  font-size: 0.8125rem;
  font-weight: 700;
  border-radius: 999px;
  margin-bottom: 20px;
}

h1 {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  font-weight: 800;
  margin: 0 0 20px;
  color: var(--ink);
}

.lead {
  font-size: clamp(1.0625rem, 2vw, 1.25rem);
  color: var(--ink-muted);
  max-width: 32rem;
  margin: 0 0 32px;
  line-height: 1.55;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 22px;
  font-weight: 700;
  font-size: 0.9375rem;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 12px 32px -12px var(--brand-glow);
}

.btn-primary:hover {
  background: #0c7a70;
  color: #fff;
}

.btn-secondary {
  background: var(--bg-elevated);
  color: var(--ink);
  border: 1px solid var(--border);
}

.btn-secondary:hover {
  border-color: rgba(15, 143, 131, 0.25);
  color: var(--brand);
}

.hero-card {
  background: var(--dark);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
  color: #e8f5f2;
}

.hero-card-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--brand-bright);
  font-weight: 700;
  margin-bottom: 16px;
}

.score-ring {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 20px;
}

.score-value {
  font-size: 3.5rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
}

.score-delta {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--brand-bright);
  background: rgba(24, 198, 183, 0.15);
  padding: 4px 10px;
  border-radius: 8px;
}

.metric-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pill {
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 8px 12px;
  background: var(--dark-card);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.pill span {
  color: var(--brand-bright);
}

/* Sections */
section {
  padding: 80px 0;
}

.section-label {
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--brand);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0 0 16px;
  line-height: 1.15;
}

.section-desc {
  color: var(--ink-muted);
  max-width: 36rem;
  margin: 0 0 40px;
  font-size: 1.0625rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.feature-card:hover {
  border-color: rgba(15, 143, 131, 0.2);
  box-shadow: var(--shadow);
}

.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(24, 198, 183, 0.2), rgba(15, 143, 131, 0.08));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 16px;
}

.feature-card h3 {
  margin: 0 0 8px;
  font-size: 1.0625rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.feature-card p {
  margin: 0;
  color: var(--ink-muted);
  font-size: 0.9375rem;
  line-height: 1.55;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  counter-reset: step;
}

.step {
  position: relative;
  padding-top: 8px;
}

.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  display: block;
  font-size: 0.8125rem;
  font-weight: 800;
  color: var(--brand-bright);
  margin-bottom: 12px;
}

.step h3 {
  margin: 0 0 8px;
  font-size: 1.125rem;
  font-weight: 800;
}

.step p {
  margin: 0;
  color: var(--ink-muted);
  font-size: 0.9375rem;
}

.cta-band {
  background: var(--dark);
  color: #d4ebe6;
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  text-align: center;
}

.cta-band h2 {
  color: #fff;
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin: 0 0 12px;
  letter-spacing: -0.03em;
}

.cta-band p {
  margin: 0 auto 28px;
  max-width: 28rem;
  color: #9bb8b0;
}

/* Content pages */
.page-hero {
  padding: 56px 0 40px;
  background: linear-gradient(180deg, #eef8f5 0%, var(--bg) 100%);
  border-bottom: 1px solid var(--border);
}

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin-bottom: 12px;
}

.page-hero .lead {
  margin-bottom: 0;
}

.content {
  padding: 48px 0 80px;
}

.prose {
  max-width: 42rem;
}

.prose h2 {
  font-size: 1.375rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 40px 0 12px;
  color: var(--ink);
}

.prose h2:first-child {
  margin-top: 0;
}

.prose p,
.prose li {
  color: var(--ink-muted);
  font-size: 1rem;
}

.prose ul,
.prose ol {
  padding-left: 1.25rem;
}

.prose li {
  margin-bottom: 8px;
}

.card-panel {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  margin: 24px 0;
}

.card-panel h3 {
  margin: 0 0 12px;
  font-size: 1.125rem;
  font-weight: 800;
}

.card-panel.highlight {
  border-color: rgba(15, 143, 131, 0.25);
  background: linear-gradient(180deg, #f0faf7 0%, var(--bg-elevated) 100%);
}

.faq {
  display: grid;
  gap: 12px;
  max-width: 48rem;
}

.faq-item {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
}

.faq-item h3 {
  margin: 0 0 8px;
  font-size: 1rem;
  font-weight: 800;
}

.faq-item p {
  margin: 0;
  color: var(--ink-muted);
  font-size: 0.9375rem;
}

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

.contact-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}

.contact-card strong {
  display: block;
  margin-bottom: 6px;
  color: var(--ink);
}

.deletion-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 16px;
}

.deletion-steps li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
}

.step-num {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--brand);
  color: #fff;
  font-weight: 800;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 48px 0 32px;
  background: var(--bg-elevated);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 40px;
}

.footer-brand p {
  color: var(--ink-muted);
  font-size: 0.9375rem;
  max-width: 20rem;
  margin: 12px 0 0;
}

.footer-col h4 {
  margin: 0 0 12px;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-soft);
  font-weight: 700;
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-col li {
  margin-bottom: 8px;
}

.footer-col a {
  color: var(--ink-muted);
  font-size: 0.9375rem;
  font-weight: 500;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 0.8125rem;
  color: var(--ink-soft);
}

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

  .hero-card {
    max-width: 400px;
  }

  .features-grid,
  .steps {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 720px) {
  .nav-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: var(--nav-h);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    padding: 16px 20px 20px;
    background: rgba(247, 250, 248, 0.98);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    display: block;
    padding: 12px 14px;
  }

  .nav-cta {
    justify-content: center;
    margin-top: 8px;
  }

  .hero {
    padding-top: 48px;
  }

  .cta-band {
    padding: 40px 24px;
  }

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