/* Pixora INKE — shared styles for static use-case landing pages */
:root {
  --primary: #d4623a;
  --primary-dark: #b14e2a;
  --primary-light: #e8845e;
  --ink: #0d0d10;
  --ink-soft: #222228;
  --paper: #f7f4ef;
  --surface: #ffffff;
  --surface-2: #fafaf8;
  --warmgray: #6e6a64;
  --border: #e8e4dc;
  --shadow-card: 0 1px 3px rgba(0, 0, 0, 0.04), 0 4px 16px rgba(0, 0, 0, 0.06);
  --shadow-premium: 0 4px 12px rgba(0, 0, 0, 0.04), 0 16px 40px rgba(0, 0, 0, 0.08),
    0 40px 80px rgba(0, 0, 0, 0.06);
  --maxw: 1120px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--surface);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: inherit; }
img { max-width: 100%; display: block; }
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 1.25rem; }
.display { font-family: 'Inter Tight', 'Inter', sans-serif; }

/* ── Header ───────────────────────────────────────────── */
header.site {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.nav img { height: 38px; width: auto; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.75rem 1.4rem; border-radius: 0.75rem; font-weight: 700;
  font-size: 0.9rem; text-decoration: none; cursor: pointer;
  transition: transform 0.15s, box-shadow 0.2s, background 0.2s; white-space: nowrap;
}
.btn-primary { background: var(--primary); color: #fff; box-shadow: 0 8px 24px rgba(212, 98, 58, 0.28); }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-1px); }
.btn-ghost { background: #fff; color: var(--ink); border: 1px solid var(--border); }
.btn-ghost:hover { border-color: var(--primary); transform: translateY(-1px); }
.btn-wa { background: #25d366; color: #fff; }
.btn-wa:hover { background: #128c7e; transform: translateY(-1px); }

/* ── Breadcrumb ───────────────────────────────────────── */
.crumb { font-size: 0.8rem; color: var(--warmgray); padding: 1.25rem 0 0; }
.crumb a { color: var(--primary); text-decoration: none; }
.crumb a:hover { text-decoration: underline; }

/* ── Hero ─────────────────────────────────────────────── */
.hero { padding: 2rem 0 3.5rem; }
.hero-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: center; }
@media (min-width: 900px) { .hero-grid { grid-template-columns: 1.05fr 0.95fr; gap: 4rem; } }
.eyebrow {
  font-size: 0.72rem; font-weight: 800; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--primary); margin-bottom: 1rem;
}
h1 { font-family: 'Inter Tight', 'Inter', sans-serif; font-weight: 800;
  font-size: clamp(2rem, 5vw, 3.25rem); line-height: 1.08; letter-spacing: -0.02em; }
.lead { color: var(--warmgray); font-size: clamp(1.05rem, 2vw, 1.2rem); margin: 1.25rem 0 1.75rem; max-width: 40ch; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.hero-media { position: relative; border-radius: 1.5rem; overflow: hidden;
  box-shadow: var(--shadow-premium); aspect-ratio: 4 / 3; background: var(--surface-2); }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.badge {
  position: absolute; bottom: 1rem; left: 1rem;
  background: rgba(255, 255, 255, 0.82); backdrop-filter: blur(10px);
  border-radius: 1rem; padding: 0.6rem 0.9rem; display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.78rem; font-weight: 700; box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}
.dot { width: 8px; height: 8px; border-radius: 999px; background: var(--primary); }

/* ── Section scaffolding ──────────────────────────────── */
section { padding: 3.5rem 0; }
.section-head { text-align: center; max-width: 620px; margin: 0 auto 2.5rem; }
.section-head h2 { font-family: 'Inter Tight', 'Inter', sans-serif; font-weight: 800;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem); line-height: 1.15; letter-spacing: -0.01em; }
.section-head p { color: var(--warmgray); margin-top: 0.75rem; }
.bg-paper { background: var(--paper); }

/* ── Benefit cards ────────────────────────────────────── */
.cards { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 640px) { .cards { grid-template-columns: 1fr 1fr; } }
.card {
  background: #fff; border: 1px solid var(--border); border-radius: 1.25rem;
  padding: 1.5rem; box-shadow: var(--shadow-card); transition: transform 0.25s, box-shadow 0.25s;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-premium); }
.card .ic { width: 42px; height: 42px; border-radius: 0.75rem; background: rgba(212, 98, 58, 0.1);
  display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; color: var(--primary); }
.card h3 { font-family: 'Inter Tight', 'Inter', sans-serif; font-size: 1.05rem; margin-bottom: 0.4rem; }
.card p { color: var(--warmgray); font-size: 0.9rem; }

/* ── Feature list band ────────────────────────────────── */
.featlist { display: grid; grid-template-columns: 1fr; gap: 0.9rem; max-width: 760px; margin: 0 auto; }
.featlist li { list-style: none; display: flex; gap: 0.75rem; align-items: flex-start;
  background: #fff; border: 1px solid var(--border); border-radius: 1rem; padding: 1rem 1.25rem; }
.featlist .tick { color: var(--primary); font-weight: 800; flex-shrink: 0; }
.featlist strong { display: block; font-family: 'Inter Tight', 'Inter', sans-serif; }
.featlist span { color: var(--warmgray); font-size: 0.9rem; }

/* ── FAQ ──────────────────────────────────────────────── */
.faq { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 0.75rem; }
.faq details { background: #fff; border: 1px solid var(--border); border-radius: 1rem; padding: 0 1.25rem; }
.faq summary { cursor: pointer; list-style: none; padding: 1.1rem 0; font-weight: 700;
  font-family: 'Inter Tight', 'Inter', sans-serif; display: flex; justify-content: space-between; gap: 1rem; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; color: var(--primary); font-size: 1.4rem; line-height: 1; }
.faq details[open] summary::after { content: '\2212'; }
.faq details p { color: var(--warmgray); padding: 0 0 1.1rem; font-size: 0.94rem; }

/* ── Cross links ──────────────────────────────────────── */
.xlinks { display: grid; grid-template-columns: 1fr; gap: 0.75rem; }
@media (min-width: 640px) { .xlinks { grid-template-columns: repeat(3, 1fr); } }
.xlink { background: #fff; border: 1px solid var(--border); border-radius: 1rem;
  padding: 1.1rem 1.25rem; text-decoration: none; transition: border-color 0.2s, transform 0.2s;
  display: flex; align-items: center; justify-content: space-between; gap: 0.5rem; font-weight: 600; }
.xlink:hover { border-color: var(--primary); transform: translateY(-2px); }
.xlink .arr { color: var(--primary); }

/* ── CTA band ─────────────────────────────────────────── */
.cta-band { background: var(--ink); color: #fff; border-radius: 1.75rem;
  padding: 3rem 1.5rem; text-align: center; }
.cta-band h2 { font-family: 'Inter Tight', 'Inter', sans-serif; font-weight: 800;
  font-size: clamp(1.7rem, 3.5vw, 2.4rem); }
.cta-band p { color: rgba(255, 255, 255, 0.6); margin: 0.75rem 0 1.75rem; }
.cta-band .hero-cta { justify-content: center; }

/* ── Footer ───────────────────────────────────────────── */
footer.site { background: var(--ink); color: #fff; padding: 2.5rem 0; margin-top: 1rem; }
footer.site .row { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; justify-content: space-between; }
footer.site img { height: 36px; width: auto; }
footer.site a { color: rgba(255, 255, 255, 0.55); text-decoration: none; font-size: 0.875rem; }
footer.site a:hover { color: #fff; }
footer.site .links { display: flex; flex-wrap: wrap; gap: 1.25rem; }
footer.site .legal { color: rgba(255, 255, 255, 0.35); font-size: 0.8rem; margin-top: 1.25rem; }

/* ── 3D hero scene (pure CSS) ─────────────────────────── */
.scene-3d {
  position: relative;
  perspective: 1400px;
  perspective-origin: 60% 40%;
  aspect-ratio: 4 / 3;
}
.scene-3d .stage {
  position: absolute;
  inset: 0;
  transform-style: preserve-3d;
  transform: rotateY(-14deg) rotateX(7deg);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}
.scene-3d:hover .stage { transform: rotateY(-7deg) rotateX(4deg) scale(1.015); }

.depth-layer {
  position: absolute;
  border-radius: 1.4rem;
  overflow: hidden;
}
/* main display panel */
.scene-3d .tilt {
  inset: 6% 8%;
  background: var(--surface-2);
  box-shadow: var(--shadow-premium);
  transform: translateZ(60px);
  border: 1px solid rgba(255, 255, 255, 0.6);
}
.scene-3d .tilt img { width: 100%; height: 100%; object-fit: cover; }

/* stacked cards behind the main display, giving depth */
.depth-back-1 {
  inset: 12% 2% 14% 18%;
  background: linear-gradient(140deg, rgba(212, 98, 58, 0.16), rgba(212, 98, 58, 0.04));
  transform: translateZ(-40px) translateX(22px) translateY(-14px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}
.depth-back-2 {
  inset: 18% -2% 20% 26%;
  background: linear-gradient(140deg, rgba(13, 13, 16, 0.10), rgba(13, 13, 16, 0.02));
  transform: translateZ(-90px) translateX(42px) translateY(-26px);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.10);
}
/* floating accent chip in front */
.scene-3d .float-chip {
  position: absolute;
  bottom: 9%;
  left: 3%;
  z-index: 3;
  transform: translateZ(120px);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 1rem;
  padding: 0.6rem 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 700;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.16);
  animation: floaty 5.5s ease-in-out infinite;
}
.scene-3d .float-chip .dot {
  width: 8px; height: 8px; border-radius: 999px; background: var(--primary);
  box-shadow: 0 0 0 0 rgba(212, 98, 58, 0.5);
  animation: ping 2.4s ease-out infinite;
}
@keyframes floaty {
  0%, 100% { transform: translateZ(120px) translateY(0); }
  50% { transform: translateZ(120px) translateY(-9px); }
}
@keyframes ping {
  0% { box-shadow: 0 0 0 0 rgba(212, 98, 58, 0.45); }
  70%, 100% { box-shadow: 0 0 0 9px rgba(212, 98, 58, 0); }
}
/* soft floor glow */
.scene-3d::after {
  content: '';
  position: absolute;
  left: 12%; right: 12%; bottom: -4%;
  height: 28px;
  background: radial-gradient(ellipse at center, rgba(13, 13, 16, 0.18), transparent 70%);
  filter: blur(8px);
  z-index: -1;
}

/* ── "A typical day" timeline ─────────────────────────── */
.timeline { max-width: 820px; margin: 0 auto; display: grid; gap: 1rem; }
.timeline .step {
  display: grid; grid-template-columns: auto 1fr; gap: 1rem 1.1rem; align-items: start;
  background: #fff; border: 1px solid var(--border); border-radius: 1.1rem; padding: 1.2rem 1.35rem;
}
.timeline .when {
  font-family: 'Inter Tight', 'Inter', sans-serif; font-weight: 800; color: var(--primary);
  font-size: 0.95rem; white-space: nowrap; padding-top: 0.1rem;
}
.timeline h3 { font-family: 'Inter Tight', 'Inter', sans-serif; font-size: 1.02rem; margin-bottom: 0.25rem; }
.timeline p { color: var(--warmgray); font-size: 0.92rem; }

/* ── Stat strip ───────────────────────────────────────── */
.stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; max-width: 820px; margin: 0 auto; }
@media (min-width: 720px) { .stats { grid-template-columns: repeat(4, 1fr); } }
.stat { text-align: center; padding: 1.4rem 0.75rem; background: #fff; border: 1px solid var(--border); border-radius: 1.1rem; }
.stat .num { font-family: 'Inter Tight', 'Inter', sans-serif; font-weight: 800; font-size: 1.7rem; color: var(--primary); line-height: 1; }
.stat .lbl { color: var(--warmgray); font-size: 0.82rem; margin-top: 0.45rem; }

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; scroll-behavior: auto !important; animation: none !important; }
  .scene-3d .stage { transform: none; }
  .scene-3d .tilt, .depth-back-1, .depth-back-2, .scene-3d .float-chip { transform: none; }
  .scene-3d { perspective: none; }
  .depth-back-1, .depth-back-2 { display: none; }
}
