@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,500;0,600;0,700;1,500;1,600&family=Inter:wght@400;500;600;700;800&family=JetBrains+Mono:wght@400;500&display=swap');

:root {
  --ink: #16130f;
  --ink-soft: #322b23;
  --paper: #fbf8f3;
  --paper-alt: #f2ecdf;
  --paper-line: #e3d9c8;
  --on-dark: #f7f2ea;
  --on-dark-soft: rgba(247, 242, 234, 0.6);
  --on-dark-faint: rgba(247, 242, 234, 0.32);
  --ink-muted: #6b6255;
  --brand: #e8491d;
  --brand-deep: #b93a16;
  --brand-glow: rgba(232, 73, 29, 0.38);
  --line: rgba(22, 19, 15, 0.12);
  --radius-s: 3px;
  --radius-m: 8px;
  --radius-l: 14px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --container: 1240px;
  --serif: "Playfair Display", "Georgia", serif;
  --sans: "Inter", -apple-system, "Segoe UI", sans-serif;
  --mono: "JetBrains Mono", ui-monospace, monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
svg { display: block; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}

/* ---------- Small utilities ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
}

.eyebrow .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 0 var(--brand-glow);
  animation: dot-pulse 2.4s ease-out infinite;
  flex-shrink: 0;
}

@keyframes dot-pulse {
  0% { box-shadow: 0 0 0 0 var(--brand-glow); }
  70% { box-shadow: 0 0 0 9px rgba(232, 73, 29, 0); }
  100% { box-shadow: 0 0 0 0 rgba(232, 73, 29, 0); }
}

.rule {
  width: 44px;
  height: 2px;
  background: var(--brand);
}

em.accent {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  color: var(--brand);
}

/* ---------- Buttons ---------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 26px;
  font-size: 0.92rem;
  font-weight: 600;
  border-radius: var(--radius-s);
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.35s var(--ease), background 0.3s ease, color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.btn svg { width: 15px; height: 15px; transition: transform 0.35s var(--ease); }
.btn:hover svg { transform: translateX(4px); }

.btn-solid {
  background: var(--brand);
  color: var(--on-dark);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.08);
}
.btn-solid:hover { background: var(--brand-deep); transform: translateY(-2px); box-shadow: 0 10px 24px -10px var(--brand-glow); }

.btn-outline-dark { border-color: rgba(247, 242, 234, 0.28); color: var(--on-dark); }
.btn-outline-dark:hover { border-color: var(--on-dark); background: rgba(247, 242, 234, 0.06); transform: translateY(-2px); }

.btn-outline-light { border-color: var(--line); color: var(--ink); }
.btn-outline-light:hover { border-color: var(--ink); transform: translateY(-2px); }

.btn-text {
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0;
  border-bottom: 1px solid currentColor;
  border-radius: 0;
}
.btn-text:hover { color: var(--brand); }

/* ---------- Nav ---------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 22px 0;
  transition: background 0.4s ease, border-color 0.4s ease, padding 0.4s ease, backdrop-filter 0.4s ease;
  border-bottom: 1px solid transparent;
}

.nav .container { display: flex; align-items: center; justify-content: space-between; }

.nav.scrolled {
  padding: 14px 0;
  background: rgba(251, 248, 243, 0.86);
  backdrop-filter: blur(14px) saturate(160%);
  border-bottom-color: var(--line);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.15rem;
  letter-spacing: -0.01em;
  color: var(--on-dark);
  transition: color 0.4s ease;
}
.nav.scrolled .brand { color: var(--ink); }
.brand img { height: 30px; width: auto; transition: transform 0.4s var(--ease); }
.brand:hover img { transform: rotate(-8deg); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--on-dark-soft);
  transition: color 0.4s ease;
}
.nav.scrolled .nav-links { color: var(--ink-muted); }

.nav-links a { position: relative; padding: 4px 0; }
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: 0;
  height: 1px;
  background: currentColor;
  transition: right 0.3s var(--ease);
}
.nav-links a:hover { color: var(--on-dark); }
.nav.scrolled .nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { right: 0; }

.nav-actions { display: flex; align-items: center; gap: 22px; }
.nav .btn-text { color: var(--on-dark); }
.nav.scrolled .btn-text { color: var(--ink); }

.nav-toggle {
  display: none;
  width: 34px;
  height: 34px;
  border: none;
  background: none;
  cursor: pointer;
  position: relative;
}
.nav-toggle span {
  position: absolute;
  left: 6px;
  right: 6px;
  height: 1.5px;
  background: var(--on-dark);
  transition: background 0.3s ease, transform 0.3s ease, opacity 0.3s ease;
}
.nav.scrolled .nav-toggle span { background: var(--ink); }
.nav-toggle span:nth-child(1) { top: 12px; }
.nav-toggle span:nth-child(2) { top: 19px; }
.nav-toggle span:nth-child(3) { top: 26px; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-panel {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: var(--ink);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 28px;
  padding: 32px;
  transform: translateY(-100%);
  transition: transform 0.5s var(--ease);
}
.mobile-panel.open { transform: translateY(0); }
.mobile-panel a { font-family: var(--serif); font-size: 2rem; color: var(--on-dark); }
.mobile-panel .btn { align-self: flex-start; margin-top: 12px; }

/* ============ HERO ============ */
.hero {
  position: relative;
  background: var(--ink);
  color: var(--on-dark);
  overflow: hidden;
  padding-top: 150px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 78% 18%, rgba(232, 73, 29, 0.22), transparent 45%),
    radial-gradient(circle at 8% 82%, rgba(232, 73, 29, 0.12), transparent 40%);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%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)' opacity='0.05'/%3E%3C/svg%3E");
  opacity: 0.5;
  mix-blend-mode: overlay;
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
  padding-bottom: 100px;
}

.hero-copy .eyebrow { color: #ff9a71; margin-bottom: 28px; }

.hero h1 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(2.6rem, 5.1vw, 4.6rem);
  line-height: 1.06;
  letter-spacing: -0.02em;
  margin: 0 0 26px;
}

.hero-copy p.lead {
  font-size: 1.1rem;
  color: var(--on-dark-soft);
  max-width: 460px;
  margin: 0 0 40px;
  font-weight: 400;
}

.hero-actions { display: flex; align-items: center; gap: 26px; flex-wrap: wrap; margin-bottom: 56px; }

.hero-stats {
  display: flex;
  gap: 0;
  border-top: 1px solid rgba(247, 242, 234, 0.14);
  padding-top: 24px;
  max-width: 460px;
}
.hero-stats div { flex: 1; padding-right: 20px; }
.hero-stats strong {
  display: block;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.6rem;
  color: var(--on-dark);
  font-weight: 600;
}
.hero-stats span { font-size: 0.76rem; color: var(--on-dark-faint); text-transform: uppercase; letter-spacing: 0.06em; }

/* Device frame mockup */
.device {
  position: relative;
  border-radius: var(--radius-l);
  background: #0c0a08;
  border: 1px solid rgba(247, 242, 234, 0.12);
  box-shadow: 0 40px 80px -30px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  transform: perspective(1400px) rotateY(-7deg) rotateX(2deg);
  transition: transform 0.6s var(--ease);
}
.device:hover { transform: perspective(1400px) rotateY(-3deg) rotateX(1deg) scale(1.01); }

.device-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: #151210;
  border-bottom: 1px solid rgba(247, 242, 234, 0.08);
}
.device-bar .tl { display: flex; gap: 6px; }
.device-bar .tl span { width: 9px; height: 9px; border-radius: 50%; background: rgba(247, 242, 234, 0.18); }
.device-url {
  margin: 0 auto;
  font-family: var(--mono);
  font-size: 0.7rem;
  color: var(--on-dark-faint);
  background: rgba(247, 242, 234, 0.05);
  border-radius: 999px;
  padding: 4px 14px;
}

.device-shot { position: relative; overflow: hidden; }
.device-shot::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(200deg, rgba(232, 73, 29, 0.1), transparent 55%);
  pointer-events: none;
}

/* ---------- Fake product-UI mockup (screenshot substitute) ---------- */
.mock-ui {
  display: grid;
  grid-template-columns: 64px 1fr;
  background: #fdfaf5;
  min-height: 380px;
}

.mock-side {
  background: var(--ink);
  padding: 18px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.mock-logo { width: 26px; height: 26px; border-radius: 7px; background: var(--brand); margin-bottom: 8px; }
.mock-nav {
  width: 30px; height: 30px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(247, 242, 234, 0.35);
}
.mock-nav svg { width: 15px; height: 15px; }
.mock-nav.active { background: rgba(232, 73, 29, 0.16); color: var(--brand); }

.mock-main { padding: 22px 26px; }
.mock-topbar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.mock-title { font-family: var(--serif); font-weight: 600; font-size: 1.05rem; color: var(--ink); }
.mock-search { width: 130px; height: 26px; border-radius: 6px; background: var(--paper-alt); border: 1px solid var(--paper-line); }

.mock-table { display: grid; gap: 8px; }
.mock-row {
  display: grid;
  grid-template-columns: 1fr 1.3fr 0.9fr 0.7fr;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  background: #fff;
  border: 1px solid var(--paper-line);
  border-radius: 7px;
  font-size: 0.74rem;
  color: var(--ink-soft);
}
.mock-row .plate { font-family: var(--mono); font-weight: 500; color: var(--ink); }
.mock-row .bar-track { height: 4px; border-radius: 3px; background: var(--paper-alt); overflow: hidden; }
.mock-row .bar-track span { display: block; height: 100%; background: var(--paper-line); border-radius: 3px; }

.mock-pill {
  justify-self: start;
  font-size: 0.66rem;
  font-weight: 600;
  padding: 3px 9px;
  border-radius: 999px;
}
.pill-done { background: #dff3e6; color: #1c7a44; }
.pill-progress { background: #fdead9; color: var(--brand-deep); }
.pill-new { background: #e3ecfc; color: #2954a8; }

.mock-amount { text-align: right; font-weight: 600; color: var(--ink); }

/* dashboard variant */
.mock-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-bottom: 18px; }
.mock-stat-tile { background: #fff; border: 1px solid var(--paper-line); border-radius: 8px; padding: 12px 14px; }
.mock-stat-tile .n { font-family: var(--serif); font-style: italic; font-weight: 600; font-size: 1.3rem; color: var(--ink); }
.mock-stat-tile .l { font-size: 0.62rem; color: var(--ink-muted); text-transform: uppercase; letter-spacing: 0.04em; }

.mock-chart {
  display: flex;
  align-items: flex-end;
  gap: 7px;
  height: 96px;
  background: #fff;
  border: 1px solid var(--paper-line);
  border-radius: 8px;
  padding: 14px;
  margin-bottom: 10px;
}
.mock-chart span { flex: 1; border-radius: 3px 3px 0 0; background: var(--paper-line); }
.mock-chart span.hi { background: var(--brand); }

.mock-activity { display: grid; gap: 7px; }
.mock-act-row {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.72rem; color: var(--ink-muted);
  padding: 8px 10px;
  background: #fff;
  border: 1px solid var(--paper-line);
  border-radius: 7px;
}
.mock-act-row .dot2 { width: 6px; height: 6px; border-radius: 50%; background: var(--brand); flex-shrink: 0; }

.float-card {
  position: absolute;
  z-index: 3;
  background: rgba(22, 19, 15, 0.72);
  backdrop-filter: blur(16px) saturate(160%);
  border: 1px solid rgba(247, 242, 234, 0.14);
  border-radius: var(--radius-m);
  padding: 13px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 20px 40px -18px rgba(0, 0, 0, 0.55);
}
.float-card.card-a { bottom: -22px; left: -28px; animation: bob 6s ease-in-out infinite; }
.float-card.card-b { top: 30px; right: -30px; animation: bob 7s ease-in-out infinite 1s; }

.float-card .ic {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--brand);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.float-card .t1 { font-size: 0.8rem; font-weight: 600; color: var(--on-dark); }
.float-card .t2 { font-size: 0.7rem; color: var(--on-dark-faint); }

@keyframes bob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

/* ---------- Marquee strip ---------- */
.strip {
  background: var(--ink);
  border-top: 1px solid rgba(247, 242, 234, 0.1);
  overflow: hidden;
  padding: 20px 0;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.strip .track { display: flex; width: max-content; gap: 0; animation: marquee 26s linear infinite; }
.strip .track:hover { animation-play-state: paused; }
.strip .items { display: flex; gap: 0; flex-wrap: nowrap; }
.strip .items span {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--on-dark-faint);
  white-space: nowrap;
  padding: 0 28px;
}
.strip .items span::after { content: "—"; color: rgba(232, 73, 29, 0.6); font-style: normal; margin-left: 28px; }

/* ---------- Section shell ---------- */
.section { padding: 130px 0; position: relative; }
.section-cream { background: var(--paper); }
.section-dark { background: var(--ink); color: var(--on-dark); }

.section-head {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 40px;
  margin-bottom: 68px;
}
.section-head .eyebrow { color: var(--brand); margin-bottom: 18px; }
.section-dark .section-head .eyebrow { color: #ff9a71; }

.section-head h2 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(2rem, 3.4vw, 3rem);
  letter-spacing: -0.02em;
  line-height: 1.12;
  margin: 0;
  max-width: 620px;
}

.section-head p {
  max-width: 320px;
  color: var(--ink-muted);
  font-size: 0.98rem;
  margin: 0;
}
.section-dark .section-head p { color: var(--on-dark-soft); }

/* ---------- Bento grid ---------- */
.bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 172px;
  gap: 20px;
}

.bcard {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-m);
  border: 1px solid var(--line);
  background: #fff;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s ease;
}
.bcard:hover { transform: translateY(-5px); box-shadow: 0 30px 60px -30px rgba(22, 19, 15, 0.22); border-color: rgba(232, 73, 29, 0.25); }

.bcard-lg { grid-column: span 3; grid-row: span 2; }
.bcard-md { grid-column: span 3; grid-row: span 1; }
.bcard-sm { grid-column: span 2; grid-row: span 1; }

.bcard-dark { background: var(--ink); color: var(--on-dark); border-color: rgba(247, 242, 234, 0.08); }
.bcard-dark .bcard-icon { background: var(--brand); color: #fff; }
.bcard-dark p { color: var(--on-dark-soft); }

.bcard-icon {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  background: var(--paper-alt);
  color: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: auto;
  transition: transform 0.4s var(--ease), background 0.3s ease, color 0.3s ease;
}
.bcard:hover .bcard-icon { transform: rotate(-8deg) scale(1.08); }
.bcard-dark:hover .bcard-icon { background: var(--brand); }

.bcard h3 { font-family: var(--serif); font-weight: 600; font-size: 1.28rem; margin: 0 0 8px; letter-spacing: -0.01em; }
.bcard p { margin: 0; color: var(--ink-muted); font-size: 0.92rem; max-width: 34ch; }

.bcard-tag {
  position: absolute;
  top: 26px;
  right: 26px;
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-muted);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 4px 10px;
}
.bcard-dark .bcard-tag { color: var(--on-dark-faint); border-color: rgba(247, 242, 234, 0.16); }

.mini-rows { display: grid; gap: 8px; margin: 18px 0; }
.mini-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  background: var(--paper-alt);
  border-radius: 6px;
  font-size: 0.78rem;
  color: var(--ink-soft);
}
.mini-row .bar { height: 5px; border-radius: 4px; background: var(--brand); opacity: 0.75; }

.mini-stat { display: flex; align-items: baseline; gap: 8px; margin: 14px 0 6px; }
.mini-stat strong { font-family: var(--serif); font-style: italic; font-size: 2.4rem; font-weight: 600; }
.mini-stat span { font-size: 0.76rem; color: var(--ink-muted); text-transform: uppercase; letter-spacing: 0.05em; }
.bcard-dark .mini-stat span { color: var(--on-dark-faint); }

/* ---------- How it works (timeline) ---------- */
.timeline { position: relative; max-width: 760px; }
.timeline::before {
  content: "";
  position: absolute;
  top: 6px;
  bottom: 6px;
  left: 27px;
  width: 1px;
  background: var(--line);
}
.timeline-progress {
  position: absolute;
  top: 6px;
  left: 27px;
  width: 1px;
  height: 0%;
  background: var(--brand);
  transform-origin: top;
}

.tstep {
  position: relative;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 28px;
  padding-bottom: 56px;
}
.tstep:last-child { padding-bottom: 0; }

.tstep .num {
  position: relative;
  z-index: 1;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--paper);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 600;
  font-size: 1.3rem;
  color: var(--brand);
  transition: background 0.35s ease, color 0.35s ease, transform 0.35s ease, border-color 0.35s ease;
}
.tstep:hover .num { background: var(--brand); color: #fff; border-color: var(--brand); transform: scale(1.06); }

.tstep h3 { font-family: var(--serif); font-size: 1.3rem; font-weight: 600; margin: 6px 0 8px; letter-spacing: -0.01em; }
.tstep p { margin: 0; color: var(--ink-muted); max-width: 46ch; }

/* ---------- Showcase (dark, annotated device) ---------- */
.showcase { position: relative; overflow: hidden; }
.showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(247, 242, 234, 0.045) 1px, transparent 1px), linear-gradient(90deg, rgba(247, 242, 234, 0.045) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 60% 55% at 50% 40%, #000 0%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 60% 55% at 50% 40%, #000 0%, transparent 75%);
}

.showcase .container { position: relative; z-index: 1; }
.showcase .section-head { text-align: center; grid-template-columns: 1fr; justify-items: center; }
.showcase .section-head p { max-width: 480px; }

.showcase-frame { position: relative; max-width: 940px; margin: 0 auto; }
.showcase-frame .device { transform: perspective(1600px) rotateX(3deg); }
.showcase-frame .device:hover { transform: perspective(1600px) rotateX(1deg) scale(1.008); }

.callout {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(22, 19, 15, 0.9);
  border: 1px solid rgba(247, 242, 234, 0.16);
  backdrop-filter: blur(10px);
  border-radius: 999px;
  padding: 9px 16px 9px 10px;
  font-size: 0.78rem;
  color: var(--on-dark);
  box-shadow: 0 16px 30px -16px rgba(0, 0, 0, 0.6);
}
.callout .n {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.callout-1 { top: -18px; left: 6%; }
.callout-2 { bottom: -18px; right: 8%; }

/* ---------- Stats (editorial, no cards) ---------- */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stats-row .stat { padding: 0 32px; border-left: 1px solid var(--line); }
.stats-row .stat:first-child { border-left: none; padding-left: 0; }

.stats-row strong {
  display: block;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 600;
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  letter-spacing: -0.01em;
  color: var(--brand);
  margin-bottom: 8px;
}
.stats-row span { font-size: 0.78rem; color: var(--ink-muted); text-transform: uppercase; letter-spacing: 0.06em; }

/* ---------- Trust / Security grid ---------- */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.trust-item {
  padding: 28px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  background: #fff;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s ease;
}
.trust-item:hover { transform: translateY(-5px); box-shadow: 0 30px 60px -30px rgba(22, 19, 15, 0.22); border-color: rgba(232, 73, 29, 0.25); }
.trust-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--paper-alt);
  color: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: transform 0.4s var(--ease);
}
.trust-item:hover .trust-icon { transform: rotate(-8deg) scale(1.08); }
.trust-item h3 { font-family: var(--serif); font-weight: 600; font-size: 1.08rem; margin: 0 0 8px; letter-spacing: -0.01em; }
.trust-item p { margin: 0; color: var(--ink-muted); font-size: 0.86rem; }

/* ---------- Pricing ---------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: stretch;
}
.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 34px 30px;
  border-radius: var(--radius-l);
  border: 1px solid rgba(247, 242, 234, 0.14);
  background: rgba(247, 242, 234, 0.04);
  transition: transform 0.4s var(--ease), border-color 0.4s ease, background 0.4s ease;
}
.price-card:hover { transform: translateY(-6px); border-color: rgba(247, 242, 234, 0.3); }

.price-featured {
  background: var(--brand);
  border-color: var(--brand);
}
.price-featured:hover { border-color: var(--brand-deep); }
.price-featured .price-head p,
.price-featured .price-features li { color: rgba(255, 255, 255, 0.85); }
.price-featured .price-features li::before { color: #fff; }

.price-badge {
  position: absolute;
  top: -13px;
  left: 30px;
  background: var(--ink);
  color: var(--on-dark);
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
}

.price-head h3 { font-family: var(--serif); font-weight: 600; font-size: 1.4rem; margin: 0 0 8px; letter-spacing: -0.01em; }
.price-head p { margin: 0 0 26px; color: var(--on-dark-soft); font-size: 0.88rem; min-height: 40px; }

.price-features { list-style: none; margin: 0 0 30px; padding: 0; display: grid; gap: 12px; flex: 1; }
.price-features li {
  position: relative;
  padding-left: 26px;
  font-size: 0.88rem;
  color: var(--on-dark-soft);
}
.price-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23e8491d' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 10px 10px;
  background-repeat: no-repeat;
  background-position: center;
}

.price-cta { width: 100%; justify-content: center; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 820px; display: grid; gap: 12px; }
.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  background: #fff;
  padding: 22px 26px;
  transition: border-color 0.3s ease;
}
.faq-item[open] { border-color: rgba(232, 73, 29, 0.3); }
.faq-item summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--sans);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--brand);
  transition: transform 0.3s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { margin: 14px 0 0; color: var(--ink-muted); font-size: 0.92rem; max-width: 62ch; }

/* ---------- Legal pages ---------- */
.legal {
  padding: 170px 0 120px;
  max-width: 760px;
}
.legal h1 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(2rem, 4vw, 2.8rem);
  letter-spacing: -0.02em;
  margin: 0 0 12px;
}
.legal .updated { font-family: var(--mono); font-size: 0.78rem; color: var(--ink-muted); margin-bottom: 48px; }
.legal h2 { font-family: var(--serif); font-weight: 600; font-size: 1.35rem; margin: 44px 0 14px; letter-spacing: -0.01em; }
.legal p { color: var(--ink-soft); font-size: 0.98rem; margin: 0 0 16px; }
.legal ul { color: var(--ink-soft); font-size: 0.98rem; padding-left: 20px; margin: 0 0 16px; }
.legal li { margin-bottom: 8px; }

/* ---------- CTA ---------- */
.cta {
  position: relative;
  text-align: center;
  overflow: hidden;
}
.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 70% at 50% 0%, rgba(232, 73, 29, 0.28), transparent 60%);
}
.cta .container { position: relative; z-index: 1; }
.cta .corner {
  position: absolute;
  width: 26px;
  height: 26px;
  border: 1px solid rgba(247, 242, 234, 0.3);
}
.cta .corner-tl { top: 40px; left: 32px; border-right: none; border-bottom: none; }
.cta .corner-br { bottom: 40px; right: 32px; border-left: none; border-top: none; }

.cta h2 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(2.1rem, 4.2vw, 3.6rem);
  letter-spacing: -0.02em;
  margin: 0 0 20px;
  max-width: 720px;
  margin-inline: auto;
}
.cta p { color: var(--on-dark-soft); max-width: 480px; margin: 0 auto 40px; font-size: 1.02rem; }
.cta .actions { display: flex; gap: 24px; justify-content: center; align-items: center; flex-wrap: wrap; }
.cta .btn-text { color: var(--on-dark); }

/* ---------- Footer ---------- */
footer {
  background: var(--ink);
  color: var(--on-dark-soft);
  padding: 76px 0 0;
  border-top: 1px solid rgba(247, 242, 234, 0.08);
  overflow: hidden;
}

.footer-word {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(4rem, 14vw, 11rem);
  line-height: 0.82;
  letter-spacing: -0.03em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(247, 242, 234, 0.14);
  text-align: center;
  margin: 30px 0 -0.06em;
  user-select: none;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: 40px;
  padding-bottom: 56px;
}

.footer-brand { display: flex; align-items: center; gap: 10px; color: var(--on-dark); font-family: var(--serif); font-weight: 600; font-size: 1.1rem; margin-bottom: 16px; }
.footer-brand img { height: 28px; transition: transform 0.4s var(--ease); }
.footer-brand:hover img { transform: rotate(-8deg); }
.footer-by { font-family: var(--sans); font-weight: 400; font-size: 0.68rem; letter-spacing: 0.02em; color: var(--on-dark-faint); }
.footer-top > div:first-child p { font-size: 0.92rem; max-width: 260px; color: var(--on-dark-faint); }

.footer-col h4 {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--on-dark-faint);
  margin: 0 0 18px;
  font-weight: 500;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.footer-col a { font-size: 0.9rem; transition: color 0.25s ease, padding-left 0.25s ease; }
.footer-col a:hover { color: var(--on-dark); padding-left: 4px; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0 30px;
  border-top: 1px solid rgba(247, 242, 234, 0.08);
  font-size: 0.78rem;
  color: var(--on-dark-faint);
  flex-wrap: wrap;
  gap: 12px;
  font-family: var(--mono);
  letter-spacing: 0.02em;
}

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .bento { grid-template-columns: repeat(2, 1fr); grid-auto-rows: auto; }
  .bcard-lg, .bcard-md, .bcard-sm { grid-column: span 1; grid-row: span 1; min-height: 220px; }
  .stats-row { grid-template-columns: repeat(2, 1fr); row-gap: 40px; }
  .stats-row .stat:nth-child(3) { border-left: none; padding-left: 0; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
}

@media (max-width: 900px) {
  .hero .container { grid-template-columns: 1fr; padding-top: 20px; }
  .device { transform: none !important; }
  .float-card { display: none; }
  .section-head { grid-template-columns: 1fr; }
  .section-head p { max-width: 100%; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 680px) {
  .container { padding: 0 22px; }
  .nav-links, .nav-actions .btn-text { display: none; }
  .nav-toggle { display: block; }
  .section { padding: 88px 0; }
  .hero { padding-top: 120px; }
  .bento { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .callout { display: none; }
  .hero-actions { gap: 18px; }
  .faq-item { padding: 18px 20px; }
  .faq-item summary { font-size: 0.96rem; }
}
