/* ============ Pixelium — Stylesheet ============ */
:root {
  --ink: #1d1d1f;
  --ink-soft: #424245;
  --ink-mute: #6e6e73;
  --line: #d2d2d7;
  --line-soft: #f5f5f7;
  --bg: #ffffff;
  --bg-soft: #f5f5f7;
  --bg-deep: #fbfbfd;
  --gold: #b48a3e;
  --gold-soft: #e8d9b3;
  --link: #0066cc;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { background: var(--bg); color: var(--ink); -webkit-font-smoothing: antialiased; }
body {
  font-family: "Geist", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 17px;
  line-height: 1.47;
  letter-spacing: -0.011em;
  overflow-x: hidden;
}
a { color: var(--link); text-decoration: none; }
a:hover { text-decoration: underline; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
img, svg { display: block; max-width: 100%; }

.mono { font-family: "Geist Mono", ui-monospace, monospace; }

/* ── Launch Banner — sliding marquee ── */
.launch-banner {
  background: var(--ink);
  color: white;
  position: relative;
  z-index: 60;
  font-size: 13px;
  letter-spacing: -0.005em;
  overflow: hidden;
  padding: 10px 0;
}
.launch-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(180,138,62,.18) 40%, rgba(180,138,62,.18) 60%, transparent 100%);
  transform: translateX(-100%);
  animation: banner-sweep 6s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}
@keyframes banner-sweep {
  0% { transform: translateX(-100%); }
  60% { transform: translateX(100%); }
  100% { transform: translateX(100%); }
}
.launch-banner.hide { display: none; }
.launch-banner-track {
  display: flex;
  gap: 0;
  white-space: nowrap;
  width: max-content;
  animation: launch-marquee 38s linear infinite;
  position: relative;
  z-index: 1;
}
.launch-banner:hover .launch-banner-track {
  animation-play-state: paused;
}
.launch-banner-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 32px 0 0;
  font-weight: 400;
}
.launch-banner-item strong {
  font-weight: 600;
  color: var(--gold);
}
.launch-banner-dot {
  display: inline-block;
  width: 4px; height: 4px;
  background: var(--gold);
  border-radius: 50%;
  margin-left: 24px;
}
.launch-icon {
  display: inline-flex;
  color: var(--gold);
  align-items: center;
  animation: launch-tick 3s ease-in-out infinite;
  transform-origin: center;
}
@keyframes launch-tick {
  0%, 100% { transform: rotate(0deg) scale(1); }
  25% { transform: rotate(90deg) scale(1.15); }
  50% { transform: rotate(180deg) scale(1); }
  75% { transform: rotate(270deg) scale(1.15); }
}
@keyframes launch-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ── Nav ── */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.72);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(0,0,0,.06);
  height: 48px;
}
.nav-inner {
  max-width: 1024px; margin: 0 auto; padding: 0 22px;
  height: 100%;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-links { display: flex; gap: 0; }
.nav-link {
  font-size: 12px; font-weight: 400;
  padding: 4px 12px; color: var(--ink);
  opacity: 0.88;
  transition: opacity .2s;
}
.nav-link:hover { opacity: 1; text-decoration: none; }
.nav-link.active { opacity: 1; }
.nav-brand {
  font-size: 19px; font-weight: 500;
  letter-spacing: -0.022em;
  display: flex; align-items: center; gap: 1px;
  color: var(--ink);
}
.nav-brand:hover { text-decoration: none; }
.nav-dot {
  width: 5px; height: 5px; background: var(--gold);
  border-radius: 50%; align-self: flex-end; margin-bottom: 5px;
}
@media (max-width: 640px) {
  .nav-link { padding: 4px 8px; font-size: 11px; }
}

/* ── Layout ── */
section { width: 100%; }
.bg-soft { background: var(--bg-soft); }
.bg-deep { background: var(--bg-deep); }
.bg-ink { background: #000; color: #f5f5f7; }

.container { max-width: 980px; margin: 0 auto; padding: 0 22px; }
.container-wide { max-width: 1240px; margin: 0 auto; padding: 0 22px; }
.container-narrow { max-width: 720px; margin: 0 auto; padding: 0 22px; }

.pad-xl { padding-top: 110px; padding-bottom: 110px; }
.pad-lg { padding-top: 80px; padding-bottom: 80px; }
.pad-md { padding-top: 56px; padding-bottom: 56px; }

/* ── Type ── */
h1.hero, h2.title {
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.05;
  text-wrap: balance;
}
h1.hero {
  font-size: clamp(48px, 8.6vw, 96px);
  letter-spacing: -0.04em;
  line-height: 1.0;
}
.hero-em {
  color: var(--ink);
}
h1.hero {
  color: rgba(29,29,31,.45);
}
h1.hero .hero-em {
  color: var(--ink);
}
h2.title {
  font-size: clamp(40px, 6vw, 72px);
}
h3.subtitle {
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 400;
  letter-spacing: -0.012em;
  color: var(--ink-soft);
  line-height: 1.2;
  margin-top: 18px;
  text-wrap: balance;
}
.kicker {
  font-size: 14px; font-weight: 500;
  color: var(--ink-mute);
  letter-spacing: -0.005em;
}
.kicker--gold { color: var(--gold); font-weight: 500; }
.lead {
  font-size: 21px;
  line-height: 1.38;
  letter-spacing: -0.018em;
  color: var(--ink-soft);
  text-wrap: pretty;
}
.center { text-align: center; }

/* ── CTAs ── */
.link-cta {
  color: var(--link);
  font-size: 17px;
  font-weight: 400;
  letter-spacing: -0.005em;
  display: inline-flex; align-items: center; gap: 4px;
}
.link-cta:hover { text-decoration: underline; }
.link-cta::after { content: "›"; font-size: 19px; margin-left: 2px; }
.link-cta-group {
  display: inline-flex; gap: 32px; flex-wrap: wrap; justify-content: center;
  margin-top: 22px;
}

.btn-pill {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 11px 24px;
  background: var(--link);
  color: white;
  font-size: 15px; font-weight: 500; letter-spacing: -0.005em;
  border-radius: 980px;
  transition: background .2s, transform .15s;
}
.btn-pill:hover { background: #0077ed; text-decoration: none; }
.btn-pill--ghost {
  background: transparent;
  color: var(--link);
  border: 1px solid var(--link);
}
.btn-pill--ghost:hover { background: rgba(0,102,204,.08); }
.btn-pill--ink { background: var(--ink); color: white; }
.btn-pill--ink:hover { background: #2a2a2c; }
.cta-row { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 32px; }

/* ── Site card mockup ── */
.site-card {
  width: 100%; max-width: 720px;
  aspect-ratio: 16 / 10;
  background: white;
  border-radius: 12px;
  border: 1px solid var(--line);
  overflow: hidden;
  display: grid; grid-template-rows: auto 1fr;
  box-shadow: 0 30px 60px -30px rgba(0,0,0,.25);
}
.site-card .chrome {
  display: flex; gap: 5px; padding: 9px 14px;
  border-bottom: 1px solid var(--line-soft);
  align-items: center;
}
.site-card .chrome i { width: 9px; height: 9px; background: #e3e3e6; border-radius: 50%; display: block; }
.site-card .chrome span {
  margin-left: 10px; font-family: "Geist Mono", monospace;
  font-size: 10px; color: var(--ink-mute);
}
.site-card .body {
  padding: 22px 24px; display: flex; flex-direction: column; gap: 12px;
  background: white; min-height: 0;
}
.site-card .body .nav-bar {
  display: flex; gap: 14px; font-size: 10px;
  font-family: "Geist Mono", monospace; color: var(--ink-mute);
  margin-bottom: 6px; align-items: center;
}
.site-card .body .hero-block {
  border-radius: 8px;
  padding: 22px 20px;
  flex: 1;
  display: flex; flex-direction: column; justify-content: flex-end;
  position: relative; overflow: hidden;
  min-height: 80px;
}
.site-card .body .hero-block .h {
  position: relative;
  font-weight: 600; font-size: 22px; letter-spacing: -0.025em;
  line-height: 1;
}
.site-card .body .hero-block .s {
  position: relative; margin-top: 6px;
  font-size: 11px;
}

/* ── Brand sign-off ── */
.signoff {
  padding: 120px 22px 100px;
  text-align: center;
  background: var(--ink);
  color: white;
}
.signoff-line {
  font-size: clamp(56px, 9.5vw, 132px);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1;
  text-wrap: balance;
  color: rgba(255,255,255,.55);
}
.signoff-em {
  color: white;
}
.signoff-brand {
  margin-top: 56px;
  display: inline-flex; align-items: center;
  font-size: 19px; font-weight: 500;
  letter-spacing: -0.022em;
  color: rgba(255,255,255,.7);
}
.signoff-dot {
  width: 5px; height: 5px; background: var(--gold);
  border-radius: 50%; align-self: flex-end; margin-bottom: 5px;
  margin-left: 1px;
}

/* ── Manifesto Band ── */
.manifesto-band {
  padding: 80px 0 96px;
  border-top: 1px solid var(--line);
  text-align: center;
}
.manifesto-mark {
  color: var(--gold);
  font-size: 56px;
  line-height: 0.1;
  font-weight: 600;
  margin-bottom: 32px;
}
.manifesto {
  font-size: clamp(34px, 5.4vw, 64px);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.1;
  color: var(--ink-soft);
  text-wrap: balance;
}
.manifesto-em {
  color: var(--ink);
  font-weight: 600;
}

/* ── Pourquoi : Reasons list ── */
.reasons {
  max-width: 760px; margin: 0 auto;
  display: flex; flex-direction: column;
  gap: 0;
}
.reason {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 22px;
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}
.reason:last-child { border-bottom: none; }
.reason-bullet {
  font-size: 22px; color: var(--gold); font-weight: 300;
  line-height: 1.1;
}
.reason-t {
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 600; letter-spacing: -0.02em;
  line-height: 1.18;
}
.reason-d {
  margin-top: 8px;
  font-size: 17px;
  color: var(--ink-mute);
  text-wrap: pretty;
  max-width: 580px;
}

/* ── Steps ── */
.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
@media (min-width: 800px) {
  .steps { grid-template-columns: repeat(4, 1fr); }
}
.step {
  padding: 36px 0;
  border-bottom: 1px solid var(--line);
}
@media (min-width: 800px) {
  .step {
    padding: 0 32px 0 0;
    border-bottom: none;
    border-right: 1px solid var(--line);
  }
  .step:last-child { border-right: none; padding-right: 0; }
  .step:not(:first-child) { padding-left: 32px; }
}
.step .n {
  font-size: 12px; font-weight: 500;
  color: var(--gold); letter-spacing: 0.08em;
  font-family: "Geist Mono", monospace;
}
.step .t { margin-top: 14px; font-size: 26px; font-weight: 600; letter-spacing: -0.02em; line-height: 1.12; }
.step .d { margin-top: 12px; font-size: 15px; color: var(--ink-mute); line-height: 1.45; text-wrap: pretty; }

/* ── Pricing tiles ── */
.price-grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
@media (min-width: 760px) {
  .price-grid-3 { grid-template-columns: repeat(3, 1fr); }
}
.price-tile {
  background: var(--bg);
  border-radius: 22px;
  padding: 40px 32px 36px;
  display: flex; flex-direction: column;
  min-height: 500px;
  position: relative;
  border: 1px solid var(--line);
}
.price-tile--feature {
  background: #1d1d1f; color: #f5f5f7;
  border-color: #1d1d1f;
}
.price-tile--feature .price-meta { color: rgba(245,245,247,.65); }
.price-tile .name { font-size: 24px; font-weight: 600; letter-spacing: -0.018em; }
.price-tile .price-meta { font-size: 14px; color: var(--ink-mute); margin-top: 6px; text-wrap: pretty; }
.price-tile .amount {
  font-size: clamp(44px, 5vw, 56px);
  font-weight: 600; letter-spacing: -0.025em;
  margin-top: 28px;
  line-height: 1;
}
.price-tile .amount .unit { font-size: 22px; font-weight: 500; }
.price-tile ul {
  list-style: none; margin-top: 24px;
  display: flex; flex-direction: column; gap: 10px;
  font-size: 15px;
}
.price-tile ul li { display: flex; gap: 10px; align-items: baseline; }
.price-tile ul li::before { content: "+"; color: var(--gold); font-weight: 500; flex: none; font-size: 17px; line-height: 1; }
.price-tile .cta-bottom { margin-top: 20px; padding-top: 0; display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }

/* Consia-style: CTA right after price, bullets below */
.price-cta-mid {
  margin-top: 24px;
  display: flex;
  justify-content: flex-start;
}
.price-pill {
  width: 100%;
  text-align: center;
  padding: 12px 22px;
}
.price-divider {
  height: 1px;
  background: var(--line);
  margin: 28px 0 4px;
}
.feature-flag {
  position: absolute; top: 20px; right: 20px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--gold);
}

/* ── FAQ ── */
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item:first-child { border-top: 1px solid var(--line); }
.faq-q {
  width: 100%; padding: 22px 0;
  display: flex; justify-content: space-between; align-items: center;
  gap: 24px; text-align: left;
  font-size: 19px; font-weight: 500; letter-spacing: -0.018em;
}
.faq-q .plus {
  flex: none;
  width: 22px; height: 22px;
  display: flex; align-items: center; justify-content: center;
  color: var(--ink-mute);
  transition: transform .25s ease, color .25s ease;
  font-size: 22px; font-weight: 300;
  line-height: 1;
}
.faq-item.open .faq-q .plus { transform: rotate(45deg); color: var(--ink); }
.faq-a {
  display: grid; grid-template-rows: 0fr;
  transition: grid-template-rows .3s ease;
}
.faq-a > div { overflow: hidden; }
.faq-item.open .faq-a { grid-template-rows: 1fr; }
.faq-a p { padding: 0 0 24px; color: var(--ink-mute); font-size: 16px; max-width: 720px; text-wrap: pretty; line-height: 1.5; }

/* ── Floating CTA ── */
.float-cta {
  position: fixed; bottom: 24px; right: 24px; z-index: 40;
  background: var(--ink); color: white;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 13px 22px;
  border-radius: 999px;
  font-size: 14px; font-weight: 500; letter-spacing: -0.005em;
  box-shadow: 0 18px 40px -16px rgba(0,0,0,.4);
  opacity: 0; transform: translateY(20px); pointer-events: none;
  transition: opacity .35s ease, transform .35s ease, background .2s ease;
}
.float-cta.visible {
  opacity: 1; transform: none; pointer-events: auto;
}
.float-cta:hover {
  background: #2a2a2c; text-decoration: none;
}
.float-cta-arrow {
  display: inline-block;
  color: var(--gold);
  font-size: 16px;
  transition: transform .2s ease;
}
.float-cta:hover .float-cta-arrow { transform: translateX(3px); }
@media (max-width: 520px) {
  .float-cta { bottom: 16px; right: 16px; left: 16px; justify-content: center; padding: 14px 18px; }
}

/* ── Footer ── */
footer {
  background: var(--bg-soft);
  font-size: 12px;
  color: var(--ink-mute);
  padding: 40px 0 22px;
}
footer a { color: var(--ink-soft); }
.footer-cols {
  display: grid; gap: 28px;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  padding-bottom: 28px; border-bottom: 1px solid var(--line);
}
.footer-cols h4 { font-size: 12px; font-weight: 600; color: var(--ink); margin-bottom: 12px; letter-spacing: -0.005em; }
.footer-cols ul { list-style: none; display: flex; flex-direction: column; gap: 8px; line-height: 1.4; }
.footer-cols a:hover { text-decoration: underline; }
.footer-legal {
  padding-top: 18px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
}

/* ── Legal pages ── */
.legal-wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: 64px 22px 100px;
}
.legal-back {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--link);
  font-size: 15px;
  margin-bottom: 32px;
}
.legal-back:hover { text-decoration: underline; }
.legal-back::before { content: "‹"; font-size: 18px; line-height: 1; }
.legal-h1 {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 600; letter-spacing: -0.025em;
  line-height: 1.05; margin-bottom: 12px;
  text-wrap: balance;
}
.legal-meta {
  font-size: 13px; color: var(--ink-mute);
  font-family: "Geist Mono", monospace;
  margin-bottom: 48px;
}
.legal-section { margin-top: 48px; }
.legal-section:first-of-type { margin-top: 0; }
.legal-section h2 {
  font-size: 22px; font-weight: 600; letter-spacing: -0.018em;
  margin-bottom: 14px;
}
.legal-section h3 {
  font-size: 17px; font-weight: 600;
  margin-top: 24px; margin-bottom: 6px;
}
.legal-section p, .legal-section li {
  font-size: 16px; line-height: 1.55;
  color: var(--ink-soft);
  text-wrap: pretty;
}
.legal-section p + p { margin-top: 12px; }
.legal-section ul {
  list-style: none;
  margin: 12px 0;
  padding-left: 0;
}
.legal-section ul li {
  padding-left: 22px;
  position: relative;
  margin-bottom: 6px;
}
.legal-section ul li::before {
  content: "—";
  position: absolute; left: 0;
  color: var(--gold);
}
.legal-section .addr {
  font-style: normal;
  color: var(--ink-soft);
  line-height: 1.55;
}
.legal-section a {
  color: var(--link);
  word-break: break-word;
}

/* ── Reveal ── */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .8s ease, transform .8s ease; }
.reveal.in { opacity: 1; transform: none; }

::selection { background: rgba(180,138,62,.3); }
