:root {
  --bg: #fbf6ea;
  --bg-soft: #f5efdc;
  --ink: #0f172a;
  --ink-soft: #475569;
  --ink-mute: #64748b;
  --accent: #f59e0b;
  --accent-deep: #d97706;
  --line: rgba(15, 23, 42, 0.08);
  --card: #ffffff;
  --shadow: 0 20px 60px -20px rgba(15, 23, 42, 0.18);
  --shadow-sm: 0 4px 16px -4px rgba(15, 23, 42, 0.1);
  --radius: 18px;
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}
a { color: inherit; text-decoration: none; }
.wrap { max-width: 1120px; margin: 0 auto; padding: 0 24px; }

nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251, 246, 234, 0.85);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav-row { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; }
.logo { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 1.1rem; }
.logo-mark { width: 28px; height: 28px; display: block; border-radius: 6px; }
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a:not(.btn) { color: var(--ink-soft); font-weight: 500; font-size: .95rem; }
.nav-links a:not(.btn):hover { color: var(--ink); }
.lang-switch { font-size: .8rem; opacity: .6; letter-spacing: .05em; }
.lang-switch:hover { opacity: 1; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 11px 20px; border-radius: 999px;
  font-weight: 600; font-size: .95rem; line-height: 1;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  cursor: pointer; border: 0;
}
.btn-primary { background: var(--ink); color: var(--bg); }
.btn-primary:hover { transform: translateY(-1px); box-shadow: var(--shadow-sm); }
.btn-accent { background: var(--accent); color: var(--ink); }
.btn-accent:hover { background: var(--accent-deep); color: #fff; }
.btn-ghost { color: var(--ink); border: 1px solid var(--line); background: transparent; }
.btn-ghost:hover { background: var(--bg-soft); }
.btn-lg { padding: 16px 28px; font-size: 1.05rem; }

@media (max-width: 720px) {
  .nav-links a:not(.btn) { display: none; }
}

.hero { padding: 80px 0 60px; text-align: center; }
.hero-jar { width: 96px; height: 96px; display: inline-block; margin-bottom: 24px; border-radius: 22px; box-shadow: 0 12px 40px -12px rgba(15,23,42,.25); animation: gentle 4s ease-in-out infinite; }
.hero-jar.sm { width: 72px; height: 72px; border-radius: 16px; }
.compare-mark { width: 22px; height: 22px; display: inline-block; vertical-align: -5px; border-radius: 5px; margin-right: 4px; }
@keyframes gentle { 0%, 100% { transform: translateY(0) rotate(-2deg); } 50% { transform: translateY(-6px) rotate(2deg); } }
.hero h1 {
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  font-weight: 900; letter-spacing: -0.03em; line-height: 1.05;
  margin: 0 0 20px;
}
.hero h1 em {
  font-style: normal; color: var(--accent-deep);
  background: linear-gradient(180deg, transparent 60%, rgba(245,158,11,.18) 60%);
  padding: 0 4px;
}
.hero p.lead {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--ink-soft); max-width: 620px; margin: 0 auto 36px;
}
.hero-ctas { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.hero-meta { margin-top: 24px; font-size: .85rem; color: var(--ink-mute); }
.hero-meta strong { color: var(--ink); font-weight: 600; }

.device {
  max-width: 300px; margin: 60px auto 0;
  background: #0f0f1a; border-radius: 38px;
  padding: 8px; box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,.08);
}
.device img {
  width: 100%; height: auto; display: block; border-radius: 30px;
}
.device-shots {
  display: flex; gap: 32px; justify-content: center; flex-wrap: wrap;
  margin-top: 56px;
}
.device-shots .device { margin: 0; transform: rotate(-2deg); }
.device-shots .device:nth-child(2) { transform: rotate(2deg) translateY(20px); }

/* Tablet/desktop screenshot frame — used in the multi-device section */
.tablet {
  background: #0f0f1a; border-radius: 18px;
  padding: 8px; box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,.08);
}
.tablet img { width: 100%; height: auto; display: block; border-radius: 12px; }

/* Diptych — two tablets side-by-side, stacking on narrow viewports */
.tablet-pair {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 24px; max-width: 1080px; margin: 48px auto 0;
}
.tablet-pair .tablet { margin: 0; }
.tablet-pair .tablet:nth-child(1) { transform: rotate(-1.5deg); }
.tablet-pair .tablet:nth-child(2) { transform: rotate( 1.5deg); }
@media (max-width: 760px) {
  .tablet-pair { grid-template-columns: 1fr; gap: 20px; }
  .tablet-pair .tablet { transform: none !important; }
}

.screens { background: var(--bg-soft); }
.screens .lead-2 { margin: 0 auto; text-align: center; }
.screens-head { text-align: center; }

section { padding: 80px 0; }
.eyebrow {
  text-transform: uppercase; letter-spacing: .12em; font-size: .78rem;
  font-weight: 700; color: var(--accent-deep); margin-bottom: 12px;
}
h2 {
  font-size: clamp(1.8rem, 3.6vw, 2.6rem); font-weight: 800;
  letter-spacing: -0.02em; line-height: 1.15; margin: 0 0 20px;
}
h3 { font-size: 1.15rem; font-weight: 700; margin: 0 0 8px; }
.lead-2 { color: var(--ink-soft); font-size: 1.1rem; max-width: 640px; }

.peace { background: var(--bg-soft); }
.pillars {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  margin-top: 40px;
}
.pillar {
  background: var(--card); border-radius: var(--radius); padding: 28px;
  box-shadow: var(--shadow-sm);
}
.pillar-icon { font-size: 1.8rem; margin-bottom: 14px; }
.pillar p { color: var(--ink-soft); margin: 0; font-size: .95rem; }
@media (max-width: 760px) {
  .pillars { grid-template-columns: 1fr; }
}

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 40px; }
.step { position: relative; }
.step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--ink); color: var(--bg);
  font-weight: 800; font-size: .95rem; margin-bottom: 14px;
}
.step p { color: var(--ink-soft); margin: 0; }
@media (max-width: 760px) { .steps { grid-template-columns: 1fr; } }

.compare { background: var(--ink); color: #fff; }
.compare h2, .compare .lead-2 { color: #fff; }
.compare .eyebrow { color: var(--accent); }
.compare .lead-2 { color: rgba(255,255,255,.7); }
.ctable {
  margin-top: 40px; border-radius: var(--radius); overflow: hidden;
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08);
}
.ctable-row {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.ctable-row:last-child { border-bottom: 0; }
.ctable-row > div { padding: 18px 22px; font-size: .95rem; }
.ctable-row > div:first-child { color: rgba(255,255,255,.65); font-weight: 500; }
.ctable-head { background: rgba(255,255,255,.05); }
.ctable-head > div { font-weight: 700; font-size: 1rem; padding: 16px 22px; }
.ctable-head .you { color: var(--accent); }
.ctable-row .you { color: #fff; font-weight: 600; }
.ctable-row .them { color: rgba(255,255,255,.6); }
.ctable-row .you small { font-weight: 400; opacity: .7; font-size: .82em; }
@media (max-width: 720px) {
  .ctable-row { grid-template-columns: 1fr; }
  .ctable-row > div { padding: 12px 18px; }
  .ctable-row > div:first-child { padding-bottom: 4px; }
}

.mission { text-align: center; }
.mission blockquote {
  font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 700;
  letter-spacing: -0.01em; line-height: 1.3;
  max-width: 760px; margin: 0 auto; color: var(--ink);
}
.mission blockquote em {
  font-style: normal; background: linear-gradient(180deg, transparent 65%, rgba(245,158,11,.22) 65%);
}

.faq { background: var(--bg-soft); }
.faq-list { margin-top: 40px; max-width: 760px; }
details {
  background: var(--card); border-radius: 14px; padding: 0;
  margin-bottom: 12px; box-shadow: var(--shadow-sm);
  overflow: hidden;
}
details summary {
  list-style: none; cursor: pointer;
  padding: 20px 24px; font-weight: 600; font-size: 1rem;
  display: flex; justify-content: space-between; align-items: center;
}
details summary::-webkit-details-marker { display: none; }
details summary::after {
  content: '+'; font-size: 1.3rem; font-weight: 400; color: var(--ink-mute);
  transition: transform .15s ease;
}
details[open] summary::after { content: '−'; }
details .answer { padding: 0 24px 20px; color: var(--ink-soft); font-size: .96rem; }

.final {
  text-align: center; padding: 100px 24px;
  background: radial-gradient(ellipse at center, var(--bg-soft) 0%, var(--bg) 70%);
}
.final h2 { margin-bottom: 16px; }
.final p { color: var(--ink-soft); max-width: 540px; margin: 0 auto 32px; font-size: 1.1rem; }

footer {
  border-top: 1px solid var(--line);
  padding: 40px 0; color: var(--ink-mute); font-size: .9rem;
}
.foot-row { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px; align-items: center; }
.foot-links { display: flex; gap: 24px; }
.foot-links a { color: var(--ink-mute); }
.foot-links a:hover { color: var(--ink); }
