/* Kobaltstack (omnitools.studio) — shared stylesheet.
   Structure follows the captainlab.dev reference build. Look keeps
   Kobaltstack's own language: deep-navy canvas with a faint blueprint grid,
   one indigo accent, Manrope. Dark only. */

:root {
  --background: #0a0a1a;
  --foreground: #f4f4fb;
  --card: #10102a;
  --muted: #161638;
  --muted-foreground: #9a9db5;
  --border: #22224a;
  --border-strong: #30306a;
  --primary: #ffffff;
  --primary-foreground: #0a0a1a;
  --accent: #6366f1;
  --accent-2: #4f46e5;
  --accent-soft: #a5b4fc;
  --accent-light: #818cf8;
  --ring: #818cf8;
  --success: #34d399;
  --radius: 0.625rem;
  --maxw: 72rem;
  color-scheme: dark;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: Manrope, -apple-system, "Segoe UI", system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--foreground);
  background:
    radial-gradient(60% 40% at 78% -6%, rgba(99, 102, 241, 0.20), transparent 65%),
    radial-gradient(40% 30% at 8% 104%, rgba(99, 102, 241, 0.08), transparent 60%),
    var(--background);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
/* Fine grain so large dark areas do not read as flat vector. */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 1000;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Blueprint grid behind the hero — a Kobaltstack signature, kept faint. */
.grid-bg { position: relative; }
.grid-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(129, 140, 248, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(129, 140, 248, 0.07) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(70% 80% at 50% 0%, #000 30%, transparent 100%);
  mask-image: radial-gradient(70% 80% at 50% 0%, #000 30%, transparent 100%);
  pointer-events: none;
}
.grid-bg > * { position: relative; }

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--ring);
  outline-offset: 2px;
  border-radius: var(--radius);
}
.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  z-index: 100;
  padding: 0.5rem 0.9rem;
  background: var(--primary);
  color: var(--primary-foreground);
  border-radius: var(--radius);
  font-weight: 700;
}
.skip-link:focus { top: 1rem; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ---------- Icons (inline SVG) ---------- */
.icon {
  width: 1.1em;
  height: 1.1em;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: none;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 2.75rem;
  padding: 0.55rem 1.15rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font: inherit;
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1;
  cursor: pointer;
  white-space: nowrap;
  transition: filter 0.2s, background 0.2s, border-color 0.2s, transform 0.15s;
}
.btn:active { transform: translateY(1px) scale(0.99); }
.btn-primary {
  background: linear-gradient(180deg, var(--accent) 0%, var(--accent-2) 100%);
  color: #fff;
  box-shadow: 0 8px 28px rgba(79, 70, 229, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}
.btn-primary:hover { filter: brightness(1.1); }
.btn-white { background: var(--primary); color: var(--primary-foreground); }
.btn-white:hover { filter: brightness(0.92); }
.btn-outline { border-color: var(--border-strong); color: var(--foreground); background: transparent; }
.btn-outline:hover { background: var(--muted); border-color: #3d3d80; }
.btn-ghost {
  border-color: rgba(129, 140, 248, 0.4);
  color: var(--accent-soft);
  background: rgba(99, 102, 241, 0.08);
}
.btn-ghost:hover { background: rgba(99, 102, 241, 0.16); border-color: var(--accent-light); }
.btn-sm { min-height: 2.25rem; padding: 0.4rem 0.85rem; font-size: 0.85rem; }
.btn-lg { min-height: 3.1rem; padding: 0.7rem 1.5rem; font-size: 1.02rem; }
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--accent-soft);
}
.text-link:hover { color: #fff; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 10, 26, 0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.site-header .container {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: 4.25rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  flex: none;
}
.brand .mark { width: 1.75rem; height: 1.75rem; flex: none; }
.brand .word em { font-style: normal; color: var(--accent-soft); }
.nav {
  display: flex;
  gap: 0.25rem;
  margin-left: auto;
  overflow-x: auto;
  scrollbar-width: none;
}
.nav::-webkit-scrollbar { display: none; }
.nav a {
  display: inline-flex;
  align-items: center;
  min-height: 2.5rem;
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--muted-foreground);
  white-space: nowrap;
  transition: background 0.2s, color 0.2s;
}
.nav a:hover, .nav a.active { background: var(--muted); color: var(--foreground); }
.header-actions { display: flex; align-items: center; gap: 0.5rem; flex: none; }

/* ---------- Sections ---------- */
.section { padding: 5rem 0 5.5rem; }
.section-head { max-width: 40rem; margin-bottom: 2.5rem; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.35rem 0.85rem 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(99, 102, 241, 0.10);
  border: 1px solid rgba(129, 140, 248, 0.28);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--accent-soft);
}
.eyebrow::before {
  content: "";
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: var(--accent-light);
  box-shadow: 0 0 10px rgba(129, 140, 248, 0.9);
}
h1, h2, h3 {
  margin: 0;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.06;
  text-wrap: balance;
}
h2 { font-size: clamp(1.9rem, 4vw, 2.75rem); margin-top: 1rem; }
h3 { font-size: 1.15rem; letter-spacing: -0.015em; line-height: 1.3; }
.lead {
  margin: 1.1rem 0 0;
  font-size: 1.08rem;
  line-height: 1.65;
  color: var(--muted-foreground);
  max-width: 34rem;
  text-wrap: pretty;
}
/* Highlight: a monochrome indigo wash, not a rainbow. */
.hl {
  background: linear-gradient(90deg, #c7d2fe 0%, #818cf8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- Hero ---------- */
.hero { padding: 4.5rem 0 2.5rem; }
.hero .container {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 3rem;
  align-items: center;
}
.hero h1 {
  margin-top: 1.25rem;
  font-size: clamp(2.4rem, 5vw, 3.9rem);
}
.hero .lead { font-size: 1.12rem; }
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 0.75rem 1.25rem; margin-top: 2rem; }

/* The "stack": the three product covers layered like the logo. */
.hero-stack {
  position: relative;
  aspect-ratio: 1 / 0.86;
  max-width: 34rem;
  margin-left: auto;
  width: 100%;
}
.stack-card {
  position: absolute;
  width: 68%;
  aspect-ratio: 8 / 5;
  border-radius: 0.9rem;
  overflow: hidden;
  border: 1px solid rgba(165, 180, 252, 0.28);
  box-shadow:
    0 30px 60px -20px rgba(5, 5, 20, 0.9),
    0 0 0 1px rgba(10, 10, 26, 0.8),
    0 10px 40px rgba(79, 70, 229, 0.18);
  background: var(--muted);
  transition: transform 0.5s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.stack-card img { width: 100%; height: 100%; object-fit: cover; }
.stack-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(10, 10, 26, 0.35) 100%);
  pointer-events: none;
}
.stack-1 { left: 2%;  top: 2%;  transform: rotate(-6deg); z-index: 1; opacity: 0.9; }
.stack-2 { left: 13%; top: 22%; transform: rotate(-1deg); z-index: 2; }
.stack-3 { left: 24%; top: 43%; transform: rotate(4deg);  z-index: 3; }
.hero-stack:hover .stack-1 { transform: rotate(-8deg) translateY(-6px); }
.hero-stack:hover .stack-3 { transform: rotate(5deg) translateY(6px); }
.stack-label {
  position: absolute;
  left: 0;
  bottom: -0.25rem;
  padding: 0.45rem 0.8rem;
  border-radius: 0.6rem;
  background: rgba(16, 16, 42, 0.85);
  border: 1px solid var(--border-strong);
  backdrop-filter: blur(8px);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--muted-foreground);
  z-index: 4;
}
.stack-label b { color: var(--foreground); font-weight: 800; }

/* Copy-to-clipboard email buttons */
.copy-email { font-variant-numeric: tabular-nums; }
.copy-email .icon-check { display: none; }
.copy-email.copied .icon-copy { display: none; }
.copy-email.copied .icon-check { display: inline-block; color: var(--success); }
.link-btn {
  background: none;
  border: 0;
  padding: 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

/* ---------- Stats ---------- */
.stats { padding: 1.5rem 0 2.5rem; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stat { padding: 1.6rem 1.5rem 1.6rem 0; }
.stat + .stat { padding-left: 1.5rem; border-left: 1px solid var(--border); }
.stat-value {
  font-size: clamp(1.9rem, 3.2vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.05;
  font-variant-numeric: tabular-nums;
  color: var(--foreground);
  white-space: nowrap;
}
.stat-label { margin-top: 0.35rem; color: var(--muted-foreground); font-size: 0.95rem; }

/* ---------- Products ---------- */
.tabs { display: flex; flex-wrap: wrap; gap: 0.4rem; margin: -0.75rem 0 1.75rem; }
.tab {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 2.35rem;
  padding: 0.4rem 0.9rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: transparent;
  color: var(--muted-foreground);
  font: inherit;
  font-weight: 600;
  font-size: 0.88rem;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.tab .count { font-size: 0.75rem; font-weight: 700; color: #6c6f92; }
.tab:hover { border-color: var(--border-strong); color: var(--foreground); }
.tab.active { background: var(--primary); border-color: var(--primary); color: var(--primary-foreground); }
.tab.active .count { color: #5b5fa8; }
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.products-grid .card[hidden] { display: none; }
.card {
  display: flex;
  flex-direction: column;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  overflow: hidden;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}
.card:hover {
  border-color: rgba(129, 140, 248, 0.55);
  box-shadow: 0 12px 40px rgba(79, 70, 229, 0.16);
  transform: translateY(-2px);
}
.card-cover {
  aspect-ratio: 8 / 5;
  border-bottom: 1px solid var(--border);
  background: var(--muted);
  overflow: hidden;
}
.card-cover img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.card:hover .card-cover img { transform: scale(1.02); }
.card-body { display: flex; flex-direction: column; gap: 0.45rem; padding: 1.15rem 1.35rem 1.35rem; flex: 1; }
.card-kicker { font-size: 0.85rem; font-weight: 600; color: var(--accent-soft); }
.card h3 { font-size: 1.15rem; }
.card-title-row { display: flex; align-items: flex-start; justify-content: space-between; gap: 0.75rem; }
.badge {
  display: inline-flex;
  align-items: center;
  flex: none;
  padding: 0.2rem 0.5rem;
  border-radius: 0.35rem;
  font-size: 0.75rem;
  font-weight: 700;
  background: rgba(99, 102, 241, 0.14);
  color: var(--accent-soft);
  white-space: nowrap;
}
.badge-free { background: rgba(52, 211, 153, 0.12); color: var(--success); }
.card-desc { margin: 0; font-size: 0.9rem; line-height: 1.55; color: var(--muted-foreground); flex: 1; text-wrap: pretty; }
.card .text-link { margin-top: 0.6rem; }

/* ---------- About ---------- */
.about .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}
.about-art {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
  border-radius: 1.5rem;
}
.about-art img {
  border-radius: 0.9rem;
  border: 1px solid var(--border);
  aspect-ratio: 8 / 5;
  object-fit: cover;
}
.about-art img:nth-child(2), .about-art img:nth-child(4) { transform: translateY(1.5rem); }
.about-art::after {
  content: "";
  position: absolute;
  inset: -10% -6% -14%;
  background: radial-gradient(60% 60% at 50% 55%, rgba(99, 102, 241, 0.22), transparent 70%);
  z-index: -1;
  pointer-events: none;
}
.about-list { list-style: none; margin: 1.75rem 0 0; padding: 0; display: grid; gap: 0.9rem; }
.about-list li { display: flex; gap: 0.75rem; align-items: flex-start; color: #d4d4e4; }
.about-list .bullet {
  flex: none;
  width: 2rem;
  height: 2rem;
  border-radius: 0.6rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(99, 102, 241, 0.12);
  border: 1px solid rgba(129, 140, 248, 0.3);
  color: var(--accent-soft);
}
.about-list .bullet .icon { width: 1rem; height: 1rem; }

/* ---------- Contact ---------- */
.contact-card {
  position: relative;
  overflow: hidden;
  background: var(--card);
  border: 1px solid rgba(129, 140, 248, 0.32);
  border-radius: 1.5rem;
  padding: 3rem;
  box-shadow: 0 12px 70px rgba(79, 70, 229, 0.16);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2.5rem;
  align-items: center;
}
.contact-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(50% 60% at 100% 0%, rgba(99, 102, 241, 0.28), transparent 70%);
  pointer-events: none;
}
.contact-card > * { position: relative; }
.contact-email {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 1.25rem;
  padding: 0.6rem 1rem 0.6rem 0.9rem;
  margin-left: -0.9rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  background: none;
  font: inherit;
  font-size: clamp(1.2rem, 2.6vw, 1.6rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--foreground);
  cursor: pointer;
  word-break: break-all;
  text-align: left;
  transition: background 0.2s, border-color 0.2s;
}
.contact-email .icon { color: var(--accent-soft); width: 1em; height: 1em; }
.contact-email:hover { background: var(--muted); border-color: var(--border); }
.contact-side { display: grid; gap: 0.75rem; }
.contact-side .btn { width: 100%; }

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--border); padding: 2.5rem 0 3rem; }
.site-footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 3rem;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-brand { display: grid; gap: 0.5rem; max-width: 22rem; }
.footer-brand .brand { font-size: 0.95rem; }
.tagline, .address {
  margin: 0;
  font-style: normal;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--muted-foreground);
}
.footer-links { display: flex; flex-wrap: wrap; gap: 0.25rem 1.25rem; margin: 0; padding: 0; list-style: none; }
.footer-links a, .footer-links .link-btn { font-size: 0.9rem; font-weight: 600; color: var(--muted-foreground); }
.footer-links a:hover, .footer-links .link-btn:hover { color: var(--foreground); }
.copyright { font-size: 0.82rem; color: #5c5c80; width: 100%; margin: 0.5rem 0 0; }

/* ---------- Pricing page ---------- */
.pricing-hero { padding: 4rem 0 1rem; text-align: center; }
.pricing-hero h1 { margin-top: 1.25rem; font-size: clamp(2.2rem, 4.5vw, 3.4rem); }
.pricing-hero .lead { margin-left: auto; margin-right: auto; max-width: 38rem; }
.billing-toggle {
  display: inline-flex;
  margin-top: 2rem;
  padding: 0.3rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--card);
}
.toggle-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 2.5rem;
  padding: 0.4rem 1.1rem;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted-foreground);
  font: inherit;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.toggle-btn.active { background: var(--primary); color: var(--primary-foreground); }
.toggle-save {
  padding: 0.15rem 0.5rem;
  border-radius: 999px;
  background: rgba(99, 102, 241, 0.16);
  color: var(--accent-soft);
  font-size: 0.7rem;
  font-weight: 700;
}
.toggle-btn.active .toggle-save { color: var(--accent-2); background: rgba(99, 102, 241, 0.14); }
.pricing-plans { padding-top: 2.5rem; }
.pricing-plans .group-title { margin-top: 2.5rem; }
.pricing-plans .group-title:first-child { margin-top: 0; }
.pricing-group { padding: 2.5rem 0; }
.pricing-group + .pricing-group { padding-top: 0.5rem; }
.group-title {
  margin: 0 0 1.25rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--accent-soft);
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.plan {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}
.plan:hover {
  border-color: rgba(129, 140, 248, 0.55);
  box-shadow: 0 12px 40px rgba(79, 70, 229, 0.16);
  transform: translateY(-2px);
}
.plan-head { min-height: 6.75rem; }
.plan h2 { font-size: 1.2rem; margin: 0.25rem 0 0; letter-spacing: -0.015em; line-height: 1.3; }
.plan-desc { margin: 0.4rem 0 0; font-size: 0.9rem; line-height: 1.5; color: var(--muted-foreground); }
.plan-price { display: flex; align-items: baseline; gap: 0.4rem; flex-wrap: wrap; }
.plan-amount {
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  color: var(--foreground);
}
.plan-free .plan-amount { color: var(--success); }
.plan-note { margin: -0.4rem 0 0; font-size: 0.82rem; color: #7c7c9e; min-height: 2.4em; }
.plan-features { list-style: none; margin: 0; padding: 0.9rem 0 0; border-top: 1px solid var(--border); display: grid; gap: 0.5rem; flex: 1; }
.plan-features li { position: relative; padding-left: 1.4rem; font-size: 0.9rem; line-height: 1.45; color: #d4d4e4; }
.plan-features li::before {
  content: "";
  position: absolute;
  left: 0.1rem;
  top: 0.55em;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--accent-light);
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.16);
}
.plan .btn { width: 100%; margin-top: 0.25rem; }
.included-card {
  padding: 2.5rem;
  background: var(--card);
  border: 1px solid rgba(129, 140, 248, 0.32);
  border-radius: 1.5rem;
  box-shadow: 0 12px 70px rgba(79, 70, 229, 0.12);
}
.included-card .section-head { margin-bottom: 1.75rem; }
.included-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem 1.5rem;
}
.included-list li { display: flex; gap: 0.85rem; align-items: flex-start; }
.included-list .bullet {
  flex: none;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.65rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(99, 102, 241, 0.12);
  border: 1px solid rgba(129, 140, 248, 0.3);
  color: var(--accent-soft);
}
.included-list .bullet .icon { width: 1.1rem; height: 1.1rem; }
.included-list strong { display: block; font-size: 0.98rem; margin-bottom: 0.15rem; }
.included-list span:not(.bullet) { font-size: 0.86rem; line-height: 1.5; color: var(--muted-foreground); }

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 3rem;
  border-top: 1px solid var(--border);
}
.faq-item { padding: 1.5rem 0; border-bottom: 1px solid var(--border); }
.faq-item h3 { font-size: 1.02rem; margin-bottom: 0.4rem; }
.faq-item p { margin: 0; font-size: 0.93rem; line-height: 1.6; color: var(--muted-foreground); text-wrap: pretty; }
.faq-item a { color: var(--accent-soft); text-decoration: underline; text-underline-offset: 0.15em; }

/* ---------- Legal pages ---------- */
.legal { padding: 3.5rem 0 5rem; }
.legal-wrap { max-width: 46rem; }
.legal h1 { font-size: clamp(2rem, 4.5vw, 3rem); margin-top: 1rem; }
.legal .updated { margin: 0.75rem 0 0; color: var(--muted-foreground); font-size: 0.9rem; }
.legal-body { margin-top: 2.5rem; padding-top: 2.5rem; border-top: 1px solid var(--border); }
.legal-body h2 {
  font-size: 1.3rem;
  letter-spacing: -0.02em;
  margin: 2.25rem 0 0.75rem;
  line-height: 1.3;
}
.legal-body h2:first-child { margin-top: 0; }
.legal-body h3 { font-size: 1.05rem; margin: 1.5rem 0 0.5rem; }
.legal-body p, .legal-body li { color: rgba(244, 244, 251, 0.8); line-height: 1.7; font-size: 0.98rem; }
.legal-body p { margin: 0 0 1rem; }
.legal-body ul { margin: 0 0 1rem; padding-left: 1.25rem; }
.legal-body li { margin-bottom: 0.35rem; }
.legal-body strong { color: var(--foreground); }
.legal-body a { color: var(--accent-soft); text-decoration: underline; text-underline-offset: 0.15em; }
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--muted-foreground);
}
.back-link:hover { color: var(--foreground); }

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 1000px) {
  .hero .container { grid-template-columns: 1fr; gap: 2rem; }
  .included-list { grid-template-columns: repeat(2, 1fr); }
  .about-art { max-width: 34rem; margin: 0 auto; width: 100%; }
  .hero-stack { margin: 0 auto; max-width: 30rem; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .about .container { grid-template-columns: 1fr; gap: 2rem; }
  .contact-card { grid-template-columns: 1fr; padding: 2rem; }
}
@media (max-width: 760px) {
  .section { padding: 3.5rem 0 4rem; }
  .hero { padding: 2.5rem 0 1.5rem; }
  .site-header .container { flex-wrap: wrap; padding-top: 0.6rem; padding-bottom: 0.6rem; gap: 0.6rem; }
  .header-actions { margin-left: auto; }
  .nav { order: 3; width: 100%; margin-left: 0; }
  .stats-grid { grid-template-columns: 1fr; }
  .stat, .stat + .stat { padding: 1rem 0; border-left: 0; }
  .stat + .stat { border-top: 1px solid var(--border); }
  .products-grid { grid-template-columns: 1fr; }
  .pricing-grid, .faq-grid, .included-list { grid-template-columns: 1fr; }
  .included-card { padding: 1.5rem; }
  .site-footer .container { flex-direction: column; }
}
@media (max-width: 400px) {
  .container { padding: 0 1rem; }
  .hero-actions .btn { width: 100%; }
  .brand .word { display: none; }
}
