/* Camuzo — camuzo.com static site. Modern 2026: dark, brand red, glass, motion. */
:root {
  --bg: #08080a;
  --bg-2: #101014;
  --surface: rgba(255, 255, 255, 0.04);
  --border: rgba(255, 255, 255, 0.10);
  --text: #f4f4f6;
  --muted: #a0a0aa;
  --red: #f0414e;
  --red-soft: #ff6b76;
  --yellow: #ffcf3a;
  --radius: 20px;
  --maxw: 1120px;
  --font: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

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

/* Ambient animated gradient mesh behind everything */
.mesh {
  position: fixed; inset: -20% -10% auto -10%; height: 120vh; z-index: -1;
  background:
    radial-gradient(40% 35% at 18% 12%, rgba(240, 65, 78, 0.28), transparent 70%),
    radial-gradient(38% 32% at 85% 8%, rgba(120, 70, 220, 0.22), transparent 70%),
    radial-gradient(45% 40% at 70% 60%, rgba(240, 65, 78, 0.12), transparent 70%);
  filter: blur(20px);
  animation: drift 22s ease-in-out infinite alternate;
}
@keyframes drift {
  0% { transform: translate3d(0,0,0) scale(1); }
  100% { transform: translate3d(0,-4%,0) scale(1.08); }
}

/* Nav */
header.nav {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: saturate(160%) blur(14px);
  background: rgba(8, 8, 10, 0.55);
  border-bottom: 1px solid var(--border);
}
.nav .wrap { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.brand { display: flex; align-items: center; gap: 12px; font-weight: 700; letter-spacing: -0.01em; font-size: 18px; }
.brand img { width: 34px; height: 34px; border-radius: 9px; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a:not(.btn) { color: var(--muted); font-size: 15px; transition: color .2s; }
.nav-links a:not(.btn):hover { color: var(--text); }
.nav-links a.btn { color: #fff; }
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--red); color: #fff; font-weight: 600; font-size: 15px;
  padding: 11px 20px; border-radius: 999px; transition: transform .2s, box-shadow .2s;
  box-shadow: 0 8px 30px rgba(240, 65, 78, 0.35);
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 12px 38px rgba(240, 65, 78, 0.45); }
.btn.ghost { background: var(--surface); border: 1px solid var(--border); box-shadow: none; color: var(--text); }
@media (max-width: 720px) { .nav-links a:not(.btn) { display: none; } }

/* Hero */
.hero { padding: clamp(70px, 12vw, 150px) 0 clamp(50px, 8vw, 90px); text-align: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600;
  color: var(--red-soft); background: rgba(240, 65, 78, 0.10); border: 1px solid rgba(240, 65, 78, 0.25);
  padding: 7px 14px; border-radius: 999px; margin-bottom: 26px; letter-spacing: .02em;
}
h1 {
  font-size: clamp(40px, 7vw, 78px); line-height: 1.02; letter-spacing: -0.03em; font-weight: 800;
  max-width: 16ch; margin: 0 auto 22px;
}
h1 .accent { color: var(--red); }
.lede { font-size: clamp(17px, 2.4vw, 21px); color: var(--muted); max-width: 56ch; margin: 0 auto 36px; }
.cta-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.note { margin-top: 18px; font-size: 14px; color: var(--muted); }

/* Phone mock in hero */
.hero-phone {
  width: min(280px, 72vw); aspect-ratio: 9 / 19.5; margin: 54px auto 0;
  border-radius: 42px; padding: 10px; background: linear-gradient(160deg, #1b1b22, #0a0a0d);
  border: 1px solid var(--border); box-shadow: 0 40px 90px rgba(0,0,0,.6);
  position: relative;
}
.hero-phone .screen {
  width: 100%; height: 100%; border-radius: 33px; overflow: hidden; position: relative;
  background: linear-gradient(180deg, #e7727a, #3a1b22 70%, #14121a);
  display: flex; flex-direction: column; justify-content: space-between; padding: 18px 16px;
}
.pill {
  align-self: center; display: inline-flex; gap: 7px; align-items: center;
  background: rgba(0,0,0,.35); backdrop-filter: blur(8px); color: #fff;
  font-size: 12px; font-weight: 600; padding: 7px 12px; border-radius: 999px; border: 1px solid rgba(255,255,255,.18);
}
.eq { display: inline-flex; gap: 2px; align-items: flex-end; height: 12px; }
.eq span { width: 2px; background: #fff; border-radius: 2px; animation: eq 1s ease-in-out infinite; }
.eq span:nth-child(1){height:5px;animation-delay:0s} .eq span:nth-child(2){height:11px;animation-delay:.15s}
.eq span:nth-child(3){height:7px;animation-delay:.3s} .eq span:nth-child(4){height:12px;animation-delay:.45s}
.eq span:nth-child(5){height:6px;animation-delay:.6s}
@keyframes eq { 0%,100%{transform:scaleY(.4)} 50%{transform:scaleY(1)} }
.rec { align-self: center; display: inline-flex; gap: 7px; align-items: center; background: rgba(0,0,0,.35); color:#fff; font-size:12px; font-weight:600; padding:5px 11px; border-radius:999px; }
.rec .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--red); animation: blink 1.4s infinite; }
@keyframes blink { 50% { opacity: .3; } }
.shutter { align-self: center; width: 64px; height: 64px; border-radius: 50%; border: 4px solid #fff; display: grid; place-items: center; }
.shutter i { width: 48px; height: 48px; border-radius: 50%; background: var(--red); }

/* Sections */
section { padding: clamp(56px, 9vw, 110px) 0; }
.section-head { text-align: center; max-width: 60ch; margin: 0 auto 54px; }
h2 { font-size: clamp(30px, 4.6vw, 46px); letter-spacing: -0.02em; font-weight: 800; line-height: 1.08; }
.section-head p { color: var(--muted); margin-top: 14px; font-size: 18px; }

.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 880px) { .grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .grid { grid-template-columns: 1fr; } }
.card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 28px; transition: transform .3s, border-color .3s, background .3s;
}
.card:hover { transform: translateY(-4px); border-color: rgba(240,65,78,.35); background: rgba(255,255,255,.06); }
.card .ico { width: 46px; height: 46px; border-radius: 13px; display: grid; place-items: center; color: var(--red-soft); background: rgba(240,65,78,.14); margin-bottom: 18px; }
.card .ico svg { width: 20px; height: 20px; }
.card h3 { font-size: 19px; letter-spacing: -.01em; margin-bottom: 8px; }
.card p { color: var(--muted); font-size: 15.5px; }

/* Pricing */
.tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; max-width: 880px; margin: 0 auto; }
@media (max-width: 720px){ .tiers { grid-template-columns: 1fr; } }
.tier { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; text-align: center; position: relative; }
.tier.best { border-color: var(--yellow); background: rgba(255,207,58,.06); }
.tier .tag { position:absolute; top:-12px; left:50%; transform:translateX(-50%); background: var(--yellow); color:#1a1a1a; font-size:11px; font-weight:800; padding:4px 12px; border-radius:999px; letter-spacing:.04em; }
.tier .price { font-size: 38px; font-weight: 800; letter-spacing: -.02em; margin: 6px 0; }
.tier .per { color: var(--muted); font-size: 14px; }
.tier .label { color: var(--muted); font-weight: 600; }

/* Honesty band */
.band { background: linear-gradient(180deg, rgba(255,255,255,.03), transparent); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.band .wrap { max-width: 760px; text-align: center; }
.band p { color: var(--muted); font-size: 17px; }

/* Footer */
footer { padding: 60px 0 50px; border-top: 1px solid var(--border); }
footer .wrap { display: flex; flex-wrap: wrap; gap: 24px; justify-content: space-between; align-items: center; }
.foot-links { display: flex; gap: 24px; flex-wrap: wrap; }
.foot-links a { color: var(--muted); font-size: 15px; transition: color .2s; }
.foot-links a:hover { color: var(--text); }
.copy { color: #6a6a72; font-size: 14px; }

/* Reveal on scroll — only hidden when JS is available (progressive enhancement, so the
   site is fully visible even if JS is blocked or slow to load). */
.js .reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
.js .reveal.in { opacity: 1; transform: none; }
.js .reveal[data-d="1"]{transition-delay:.08s} .js .reveal[data-d="2"]{transition-delay:.16s} .js .reveal[data-d="3"]{transition-delay:.24s}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .mesh, .eq span, .rec .dot { animation: none; }
  html { scroll-behavior: auto; }
}

/* Legal pages */
.legal { padding: clamp(60px, 9vw, 110px) 0; }
.legal .wrap { max-width: 760px; }
.legal h1 { font-size: clamp(32px, 5vw, 48px); text-align: left; margin-bottom: 8px; max-width: none; }
.legal .updated { color: var(--muted); margin-bottom: 36px; }
.legal h2 { font-size: 22px; margin: 34px 0 10px; }
.legal p, .legal li { color: #d6d6dc; font-size: 16.5px; margin-bottom: 12px; }
.legal ul { padding-left: 22px; }
.legal a { color: var(--red-soft); }
