/* Reportiq marketing site — brand tokens from "Reportiq Brand & App" (claude.ai/design) */

:root {
  --emerald: #10b981;
  --emerald-soft: #34d399;
  --emerald-deep: #0ea371;
  --teal: #0d9488;
  --ink: #0e211c;
  --ink-2: #0b463b;
  --amber: #f59e0b;
  --red: #ef4444;
  --mint: #e4f5ec;

  --border: #dce9e2;
  --border-soft: #e3ede8;
  --divider: #eef4f1;

  --text: #0e211c;
  --text-mid: #38504a;
  --text-muted: #5b7268;
  --text-faint: #8aa097;

  --bg: #f6faf8;
  --bg-mint-glow: radial-gradient(1200px 700px at 20% -5%, #e4f5ec 0%, #f6faf8 55%);

  --font-display: "Bricolage Grotesque", system-ui, sans-serif;
  --font-text: "Plus Jakarta Sans", system-ui, sans-serif;

  --shadow-panel: 0 40px 80px -44px rgba(14, 64, 50, 0.4);
  --shadow-cta: 0 12px 24px -10px rgba(16, 185, 129, 0.8);
  --maxw: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-text);
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  line-height: 1.55;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------------- buttons ---------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 46px;
  padding: 0 22px;
  border-radius: 11px;
  font-family: var(--font-text);
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.12s ease, box-shadow 0.15s ease, background 0.15s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--emerald);
  color: #fff;
  box-shadow: var(--shadow-cta);
}

.btn-primary:hover {
  background: var(--emerald-deep);
  transform: translateY(-1px);
}

.btn-ghost {
  background: #fff;
  color: var(--text-mid);
  border-color: var(--border);
}

.btn-ghost:hover {
  border-color: var(--emerald);
}

.btn-ghost-dark {
  background: rgba(255, 255, 255, 0.08);
  color: #e4f5ec;
  border-color: rgba(255, 255, 255, 0.18);
}

.btn-ghost-dark:hover {
  background: rgba(255, 255, 255, 0.14);
}

.btn-sm {
  height: 38px;
  padding: 0 16px;
  font-size: 14px;
}

/* ---------------- nav ---------------- */

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(246, 250, 248, 0.82);
  backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: 18px;
  height: 68px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
}

.wordmark {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.02em;
}

.wordmark .iq {
  color: var(--teal);
}

.nav-links {
  display: flex;
  gap: 26px;
  margin-left: 26px;
}

.nav-links a {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--text-muted);
}

.nav-links a:hover {
  color: var(--text);
}

.nav-cta {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* ---------------- hero ---------------- */

.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0e211c 0%, #0b463b 55%, #0d9488 135%);
  color: #fff;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero::before {
  width: 620px;
  height: 620px;
  background: radial-gradient(circle, rgba(52, 211, 153, 0.26), transparent 70%);
  top: -220px;
  right: -160px;
}

.hero::after {
  width: 460px;
  height: 460px;
  background: radial-gradient(circle, rgba(13, 148, 136, 0.4), transparent 70%);
  bottom: -200px;
  left: -120px;
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
  padding: 84px 0 96px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 32px;
  padding: 0 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}

.pill-mint {
  background: var(--mint);
  color: #047857;
}

.pill-glass {
  background: rgba(255, 255, 255, 0.1);
  color: #e4f5ec;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.pill-solid {
  background: var(--emerald);
  color: #fff;
}

.hero h1 {
  font-size: 58px;
  margin: 22px 0 0;
}

.hero .sub {
  font-size: 20px;
  line-height: 1.5;
  color: #c8e6dc;
  margin: 22px 0 0;
  max-width: 470px;
  font-weight: 500;
}

.hero-ctas {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.hero-badges {
  display: flex;
  gap: 10px;
  margin-top: 26px;
  flex-wrap: wrap;
}

.hero-badges .pill {
  height: 40px;
  padding: 0 18px;
  font-size: 14px;
}

/* hero mock */
.hero-mock {
  position: relative;
}

.mock-card {
  background: #fff;
  border-radius: 16px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-panel);
  color: var(--text);
  overflow: hidden;
}

.mock-chrome {
  height: 44px;
  background: var(--ink);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 16px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.mock-body {
  padding: 22px;
}

.prompt-box {
  border: 1.5px solid var(--emerald);
  border-radius: 14px;
  padding: 16px 16px 12px;
  box-shadow: 0 16px 32px -22px rgba(16, 185, 129, 0.5);
}

.prompt-text {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
}

.hl {
  background: var(--mint);
  border-radius: 5px;
  padding: 1px 5px;
}

.hl-red {
  background: #fee2e2;
  color: #b91c1c;
  border-radius: 5px;
  padding: 1px 5px;
}

.caret {
  display: inline-block;
  width: 2px;
  height: 17px;
  background: var(--emerald);
  vertical-align: -3px;
  margin-left: 2px;
  animation: blink 1s steps(1) infinite;
}

@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}

.prompt-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid var(--divider);
}

.mini-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 28px;
  padding: 0 11px;
  border-radius: 8px;
  background: #f4f8f6;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-mid);
}

.mock-rows {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.mock-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 11px;
  border: 1px solid var(--divider);
  border-radius: 10px;
}

.thumb {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
  font-size: 11px;
}

.badge {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  height: 24px;
  padding: 0 9px;
  border-radius: 999px;
  font-size: 11.5px;
  font-weight: 700;
}

.badge-red {
  background: #fee2e2;
  color: #b91c1c;
}

.badge-amber {
  background: #fef3c7;
  color: #b45309;
}

.badge-green {
  background: #d1fae5;
  color: #047857;
}

/* ---------------- sections ---------------- */

section {
  padding: 88px 0;
}

.eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
}

.section-head {
  max-width: 620px;
  margin: 0 auto 48px;
  text-align: center;
}

.section-head h2 {
  font-size: 38px;
  margin: 12px 0 0;
}

.section-head p {
  font-size: 17px;
  color: var(--text-muted);
  margin: 14px 0 0;
  font-weight: 500;
}

/* trust strip */
.trust {
  padding: 26px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: #fff;
}

.trust-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  flex-wrap: wrap;
  color: var(--text-faint);
  font-weight: 700;
  font-size: 13.5px;
  letter-spacing: 0.02em;
}

.trust-inner .sep {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--border);
}

/* steps */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.step {
  position: relative;
}

.step-num {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  background: var(--mint);
  color: #047857;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 17px;
  margin-bottom: 16px;
}

.step h3 {
  font-size: 18px;
  letter-spacing: -0.01em;
}

.step p {
  font-size: 14.5px;
  color: var(--text-muted);
  margin: 8px 0 0;
  font-weight: 500;
}

/* template cards */
.tpl-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.tpl-card {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: 16px;
  padding: 22px;
  transition: border-color 0.15s ease, box-shadow 0.15s ease,
    transform 0.15s ease;
}

.tpl-card:hover {
  border-color: var(--emerald);
  box-shadow: 0 18px 34px -22px rgba(16, 185, 129, 0.55);
  transform: translateY(-2px);
}

.tpl-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.tpl-card h3 {
  font-size: 17px;
  letter-spacing: -0.01em;
}

.tpl-card p {
  font-size: 14px;
  color: var(--text-muted);
  margin: 7px 0 0;
  font-weight: 500;
  line-height: 1.5;
}

/* feature rows */
.feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.feature.reverse .feature-media {
  order: -1;
}

.feature h2 {
  font-size: 32px;
}

.feature p {
  font-size: 16.5px;
  color: var(--text-muted);
  margin: 16px 0 0;
  font-weight: 500;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feature-list li {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-mid);
}

.check {
  width: 22px;
  height: 22px;
  border-radius: 7px;
  background: var(--mint);
  color: #047857;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.feature-media {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: var(--shadow-panel);
  overflow: hidden;
}

.media-banner {
  background: var(--ink);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.media-body {
  padding: 20px;
}

/* stat cards (share preview) */
.stat-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.stat {
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  padding: 14px 16px;
}

.stat .lbl {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-faint);
}

.stat .num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 30px;
  margin-top: 4px;
  line-height: 1;
}

/* schedule mock */
.sched-item {
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  padding: 14px 16px;
  background: #fafcfb;
  margin-bottom: 10px;
}

.sched-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.sched-chips {
  display: flex;
  gap: 7px;
  margin-top: 11px;
  padding-top: 11px;
  border-top: 1px solid var(--divider);
}

/* pricing */
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}

.price {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
}

.price.featured {
  border: 1.5px solid var(--emerald);
  box-shadow: 0 30px 60px -34px rgba(16, 185, 129, 0.45);
  position: relative;
}

.price .tag {
  position: absolute;
  top: -13px;
  left: 26px;
  height: 26px;
  padding: 0 12px;
  border-radius: 999px;
  background: var(--emerald);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
}

.price h3 {
  font-size: 20px;
  letter-spacing: -0.01em;
}

.price .amt {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 44px;
  margin: 14px 0 2px;
  line-height: 1;
}

.price .per {
  color: var(--text-faint);
  font-weight: 700;
  font-size: 15px;
}

.price .desc {
  color: var(--text-muted);
  font-size: 14.5px;
  font-weight: 500;
  margin: 8px 0 20px;
}

.price ul {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.price li {
  display: flex;
  gap: 10px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--text-mid);
}

.price .btn {
  margin-top: auto;
  width: 100%;
}

.trial-note {
  text-align: center;
  margin-top: 26px;
  font-size: 14.5px;
  color: var(--text-muted);
  font-weight: 600;
}

/* CTA band */
.cta-band {
  background: linear-gradient(135deg, #0e211c 0%, #0b463b 60%, #0d9488 140%);
  border-radius: 24px;
  padding: 64px 48px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.cta-band::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(52, 211, 153, 0.28), transparent 70%);
  top: -160px;
  right: -100px;
}

.cta-band h2 {
  font-size: 40px;
  position: relative;
}

.cta-band p {
  color: #c8e6dc;
  font-size: 18px;
  margin: 16px auto 0;
  max-width: 480px;
  font-weight: 500;
  position: relative;
}

.cta-band .hero-ctas {
  justify-content: center;
  position: relative;
}

/* footer */
footer {
  padding: 48px 0 40px;
  border-top: 1px solid var(--border);
  background: #fff;
}

.foot-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.foot-links {
  display: flex;
  gap: 24px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
}

.foot-copy {
  color: var(--text-faint);
  font-size: 13px;
  font-weight: 600;
}

/* ---------------- responsive ---------------- */

@media (max-width: 900px) {
  .hero-inner,
  .feature {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .feature.reverse .feature-media {
    order: 0;
  }
  .hero h1 {
    font-size: 44px;
  }
  .steps,
  .tpl-grid,
  .price-grid {
    grid-template-columns: 1fr;
  }
  .nav-links {
    display: none;
  }
  section {
    padding: 60px 0;
  }
  .section-head h2 {
    font-size: 30px;
  }
}

@media (max-width: 560px) {
  .stat-cards {
    grid-template-columns: 1fr;
  }
  .cta-band {
    padding: 44px 24px;
  }
  .cta-band h2 {
    font-size: 30px;
  }
}

/* ============ LEGAL / INFO PAGES ============ */
.legal {
  padding: 120px 24px 96px;
  max-width: 780px;
}
.legal .eyebrow {
  color: var(--teal);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.legal h1 {
  font-family: var(--font-display);
  font-size: 40px;
  letter-spacing: -0.025em;
  color: var(--text);
  margin: 10px 0 8px;
  line-height: 1.05;
}
.legal .updated {
  color: var(--text-faint);
  font-weight: 600;
  font-size: 14px;
  margin: 0 0 36px;
}
.legal .lead {
  font-size: 18px;
  color: var(--text-mid);
  line-height: 1.7;
  margin: 0 0 8px;
}
.legal h2 {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--text);
  margin: 38px 0 12px;
}
.legal h3 {
  font-size: 16px;
  color: var(--text);
  margin: 22px 0 8px;
}
.legal p,
.legal li {
  color: var(--text-mid);
  font-size: 16px;
  line-height: 1.75;
}
.legal p {
  margin: 0 0 16px;
}
.legal ul {
  margin: 0 0 16px;
  padding-left: 22px;
}
.legal li {
  margin: 0 0 8px;
}
.legal a {
  color: var(--teal);
  font-weight: 600;
}
.legal strong {
  color: var(--text);
  font-weight: 700;
}
@media (max-width: 640px) {
  .legal {
    padding: 100px 20px 72px;
  }
  .legal h1 {
    font-size: 32px;
  }
}
