:root {
  --brand:      #E8600A;
  --brand-light:#F97B2C;
  --brand-dim:  rgba(232,96,10,0.12);
  --brand-border: rgba(232,96,10,0.22);
  --ink:        #0D0C0A;
  --ink-2:      #1C1A17;
  --ink-3:      #2A2722;
  --parchment:  #FAF8F5;
  --warm-white: #FFFEFB;
  --text:       #3D3830;
  --muted:      #8C8479;
  --rule:       rgba(61,56,48,0.1);
  --shadow-sm:  0 2px 8px rgba(13,12,10,0.06);
  --shadow-md:  0 8px 32px rgba(13,12,10,0.1);
  --shadow-lg:  0 24px 64px rgba(13,12,10,0.14);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

::selection { background: rgba(232,96,10,0.25); color: inherit; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Outfit', sans-serif;
  background: var(--warm-white);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── Utility ── */
.container { max-width: 1140px; margin: 0 auto; padding: 0 2.5rem; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--brand);
}
.eyebrow::before {
  content: ''; display: block; width: 20px; height: 1.5px;
  background: var(--brand);
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: rgba(255,254,251,0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--rule);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 2.5rem; max-width: 1140px; margin: 0 auto;
}
.nav-logo {
  display: flex; align-items: center; gap: 0.65rem;
  text-decoration: none;
}
.nav-logo-mark {
  width: 34px; height: 34px; border-radius: 8px;
  background: var(--brand);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 8px rgba(232,96,10,0.35);
}
.nav-logo-mark svg { display: block; }
.nav-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem; font-weight: 700;
  color: var(--ink); letter-spacing: -0.3px;
}
.nav-links { display: flex; gap: 2rem; }
.nav-links a {
  font-size: 0.82rem; font-weight: 500; color: var(--muted);
  text-decoration: none; letter-spacing: 0.01em;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--ink); }
.nav-actions { display: flex; gap: 0.75rem; align-items: center; }
.btn-ghost {
  font-family: 'Outfit', sans-serif; font-size: 0.82rem; font-weight: 600;
  color: var(--text); background: none; border: none; cursor: pointer;
  padding: 0.5rem 1rem; border-radius: 6px;
  transition: background 0.2s;
}
.btn-ghost:hover { background: var(--parchment); }
.btn-primary {
  font-family: 'Outfit', sans-serif; font-size: 0.82rem; font-weight: 600;
  color: #fff; background: var(--brand); border: none; cursor: pointer;
  padding: 0.55rem 1.3rem; border-radius: 6px;
  box-shadow: 0 2px 12px rgba(232,96,10,0.3);
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}
.btn-primary:hover {
  background: var(--brand-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 18px rgba(232,96,10,0.38);
}

.mobile-toggle { display: none; }
.nav-cta {
  font-family: 'Outfit', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: #fff;
  background: var(--brand);
  border: none;
  cursor: pointer;
  padding: 0.55rem 1.3rem;
  border-radius: 6px;
  box-shadow: 0 2px 12px rgba(232,96,10,0.3);
  transition: all 0.2s;
}
.nav-cta:hover {
  background: var(--brand-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 18px rgba(232,96,10,0.38);
}

/* ── HERO ── */
#hero {
  padding: 9rem 0 6rem;
  position: relative;
  overflow: hidden;
}
.hero-bg-lines {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(var(--rule) 1px, transparent 1px),
    linear-gradient(90deg, var(--rule) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 0%, black 20%, transparent 80%);
  opacity: 0.5;
}
.hero-content {
  position: relative; z-index: 1;
  max-width: 760px; margin: 0 auto; text-align: center;
  padding: 0 2.5rem;
}
.hero-eyebrow { margin-bottom: 1.5rem; }
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  font-weight: 800; line-height: 1.07;
  letter-spacing: -1.5px; color: var(--ink);
  margin-bottom: 1.25rem;
}
.hero-title em {
  font-style: italic; color: var(--brand);
}
.hero-sub {
  font-size: 1.05rem; color: var(--muted); line-height: 1.7;
  font-weight: 400; max-width: 540px; margin: 0 auto 2.5rem;
}
.hero-actions {
  display: flex; gap: 1rem; justify-content: center; margin-bottom: 1rem;
}
.btn-hero-primary {
  font-family: 'Outfit', sans-serif; font-weight: 600; font-size: 0.92rem;
  color: #fff; background: var(--brand); border: none; cursor: pointer;
  padding: 0.85rem 2.2rem; border-radius: 8px;
  box-shadow: 0 4px 20px rgba(232,96,10,0.35);
  transition: all 0.2s; letter-spacing: 0.01em;
}
.btn-hero-primary:hover {
  background: var(--brand-light); transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(232,96,10,0.42);
}
.btn-hero-outline {
  font-family: 'Outfit', sans-serif; font-weight: 600; font-size: 0.92rem;
  color: var(--text); background: transparent; cursor: pointer;
  padding: 0.85rem 2.2rem; border-radius: 8px;
  border: 1.5px solid var(--rule);
  transition: all 0.2s;
}
.btn-hero-outline:hover { border-color: rgba(61,56,48,0.25); background: var(--parchment); }
.hero-note {
  font-size: 0.75rem; color: var(--muted); margin-top: 0.75rem;
}
.hero-note span { color: var(--brand); font-weight: 600; }

/* ── SCREENSHOT FRAME ── */
.hero-frame-wrap {
  margin-top: 4rem;
  padding: 0 2rem;
  position: relative;
}
.hero-frame-wrap::before {
  content: '';
  position: absolute; left: 50%; top: -20px; transform: translateX(-50%);
  width: 60%; height: 1px; background: linear-gradient(90deg, transparent, var(--brand-border), transparent);
}
.hero-frame {
  max-width: 960px; width: 100%; margin: 0 auto;
  background: #ffffff;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.1);
  box-shadow:
    0 0 0 1px rgba(232,96,10,0.08),
    0 30px 80px rgba(13,12,10,0.15),
    0 0 40px rgba(232,96,10,0.02);
  animation: heroFrameIn 0.8s 0.3s cubic-bezier(0.22,1,0.36,1) both;
}
@keyframes heroFrameIn {
  from { opacity: 0; transform: translateY(30px) scale(0.98); }
  to   { opacity: 1; transform: none; }
}
.frame-chrome {
  background: #f8fafc;
  padding: 0.65rem 1rem;
  display: flex; align-items: center; gap: 0.75rem;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.chrome-dots { display: flex; gap: 5px; }
.chrome-dot { width: 10px; height: 10px; border-radius: 50%; }
.chrome-url {
  flex: 1; background: rgba(0,0,0,0.05); border-radius: 6px;
  padding: 0.25rem 0.9rem; font-size: 0.68rem; color: rgba(0,0,0,0.5);
  font-family: monospace;
}
.frame-body {
  display: flex; height: 420px;
}
.frame-sidebar {
  width: 200px; background: #ffffff; flex-shrink: 0;
  border-right: 1px solid rgba(0,0,0,0.05);
  padding: 1.25rem 0;
}
.sidebar-logo-area {
  padding: 0 1rem 1.25rem;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  margin-bottom: 0.75rem;
}
.sl-name { font-size: 0.8rem; font-weight: 700; color: #0f172a; letter-spacing: -0.2px; }
.sl-sub  { font-size: 0.6rem; color: #E8600A; margin-top: 1px; }
.s-item {
  display: flex; align-items: center; gap: 0.55rem;
  padding: 0.55rem 1rem; font-size: 0.7rem; font-weight: 500; color: rgba(0,0,0,0.5);
  cursor: default;
}
.s-item.active {
  color: #E8600A; background: rgba(232,96,10,0.08);
  border-left: 2px solid #E8600A;
}
.frame-main {
  flex: 1; background: #f8fafc; padding: 1.5rem; overflow: hidden;
  position: relative;
}
.mockup-view { display: none; }
.mockup-view.active { display: block; animation: viewIn 0.3s ease both; }
@keyframes viewIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }

.kpi-row { display: grid; grid-template-columns: repeat(4,1fr); gap: 0.65rem; margin-bottom: 1rem; }
.kpi-box {
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.08); box-shadow: 0 2px 4px rgba(0,0,0,0.02);
  border-radius: 10px; padding: 0.75rem;
}
.kpi-l { font-size: 0.53rem; color: rgba(0,0,0,0.4); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.3rem; font-family: monospace; }
.kpi-v { font-size: 1.05rem; font-weight: 700; color: #0f172a; }
.kpi-d { font-size: 0.53rem; color: #4ade80; margin-top: 0.2rem; }
.charts-row { display: grid; grid-template-columns: 2fr 1fr; gap: 0.65rem; }
.chart-box {
  background: rgba(255,255,255,0.85); border: 1px solid rgba(0,0,0,0.08); box-shadow: 0 2px 4px rgba(0,0,0,0.02);
  border-radius: 10px; padding: 0.9rem;
}
.chart-title { font-size: 0.53rem; color: rgba(0,0,0,0.4); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.6rem; font-family: monospace; }
.chart-bars { display: flex; align-items: flex-end; gap: 5px; height: 72px; }
.c-bar {
  flex: 1; border-radius: 3px 3px 0 0;
  animation: barUp 0.8s ease both;
  transform-origin: bottom;
}
@keyframes barUp { from { transform: scaleY(0); } to { transform: scaleY(1); } }
.chart-donut {
  display: flex; align-items: center; justify-content: center;
}

/* ── Billing mockup inside how-visual ── */
.billing-mock { display: flex; gap: 0.75rem; height: 240px; }
.bm-left { flex: 1; display: flex; flex-direction: column; gap: 0.65rem; overflow: hidden; }
.bm-section-label { font-size: 0.55rem; color: rgba(0,0,0,0.4); text-transform: uppercase; letter-spacing: 0.1em; font-family: monospace; }
.bm-input { background: #ffffff; border: 1px solid rgba(0,0,0,0.1); border-radius: 5px; padding: 0.35rem 0.55rem; font-size: 0.6rem; color: #0f172a; font-family: monospace; }
.bm-product { background: #ffffff; border: 1px solid rgba(0,0,0,0.05); box-shadow: 0 1px 2px rgba(0,0,0,0.02); border-radius: 5px; padding: 0.35rem 0.55rem; }
.bm-pname { font-size: 0.62rem; font-weight: 600; color: #0f172a; }
.bm-pprice { font-size: 0.55rem; color: #E8600A; font-family: monospace; }
.bm-right {
  width: 155px; background: #ffffff; border-radius: 8px; border: 1px solid rgba(0,0,0,0.05); box-shadow: 0 2px 8px rgba(0,0,0,0.03);
  padding: 0.85rem; display: flex; flex-direction: column;
}
.bm-cart-label { font-size: 0.55rem; color: rgba(0,0,0,0.4); text-transform: uppercase; letter-spacing: 0.1em; font-family: monospace; margin-bottom: 0.5rem; }
.bm-cart-item {
  background: #f1f5f9; border-radius: 4px;
  padding: 0.3rem 0.4rem; margin-bottom: 0.25rem; border: 1px solid rgba(0,0,0,0.03);
  display: flex; justify-content: space-between; align-items: center;
}
.bci-n { font-size: 0.58rem; color: #334155; }
.bci-p { font-size: 0.58rem; color: #E8600A; font-family: monospace; }
.bm-totals { margin-top: auto; padding-top: 0.5rem; border-top: 1px solid rgba(0,0,0,0.05); }
.bm-tot-line { display: flex; justify-content: space-between; font-size: 0.58rem; color: rgba(0,0,0,0.5); margin-bottom: 0.2rem; font-family: monospace; }
.bm-tot-total { display: flex; justify-content: space-between; font-size: 0.72rem; font-weight: 700; color: #0f172a; margin-top: 0.25rem; }
.bm-tot-total span:last-child { color: #E8600A; }
.bm-checkout-btn {
  width: 100%; margin-top: 0.5rem; padding: 0.4rem;
  background: linear-gradient(135deg,#E8600A,#F97B2C);
  border: none; border-radius: 5px; cursor: pointer;
  font-size: 0.62rem; font-weight: 700; color: #fff; font-family: 'Outfit', sans-serif;
}

/* ── TRUST BAR ── */
#trust {
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  background: var(--parchment);
  padding: 1.4rem 0;
}
.trust-inner {
  display: flex; align-items: center; justify-content: center; gap: 3rem;
  flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.78rem; font-weight: 500; color: var(--muted);
}
.trust-icon { font-size: 0.9rem; }
.trust-sep { width: 1px; height: 18px; background: var(--rule); }

/* ── FEATURES ── */
#features {
  padding: 7rem 0;
}
.section-header {
  margin-bottom: 4rem;
}
.section-header .eyebrow { margin-bottom: 0.75rem; }
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700; color: var(--ink);
  letter-spacing: -1px; line-height: 1.1;
  margin-bottom: 0.75rem;
}
.section-desc {
  font-size: 0.95rem; color: var(--muted); line-height: 1.7;
  max-width: 480px; font-weight: 400;
}
.features-layout {
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 1.5px;
  background: var(--rule);
  border: 1px solid var(--rule);
  border-radius: 16px; overflow: hidden;
}
.feat-card {
  background: var(--warm-white);
  padding: 2.25rem;
  transition: background 0.2s;
  position: relative;
}
.feat-card:hover { background: var(--parchment); }
.feat-card::after {
  content: '';
  position: absolute; bottom: 0; left: 2.25rem; right: 2.25rem;
  height: 1px; background: var(--rule);
}
.feat-icon-wrap {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--brand-dim); border: 1px solid var(--brand-border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; margin-bottom: 1.1rem;
}
.feat-name {
  font-size: 0.95rem; font-weight: 600; color: var(--ink);
  margin-bottom: 0.45rem; letter-spacing: -0.2px;
}
.feat-desc {
  font-size: 0.82rem; color: var(--muted); line-height: 1.65; font-weight: 400;
}

/* ── HOW IT WORKS ── */
#how {
  padding: 7rem 0;
  background: var(--parchment);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.how-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
}
.how-steps { display: flex; flex-direction: column; gap: 0; }
.how-step {
  display: flex; gap: 1.25rem;
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--rule);
  cursor: default;
  transition: all 0.2s;
}
.how-step:last-child { border-bottom: none; }
.step-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem; font-weight: 700; color: var(--brand);
  opacity: 0.25; line-height: 1; flex-shrink: 0; width: 2rem; margin-top: 0.1rem;
  transition: opacity 0.2s;
}
.how-step:hover .step-num { opacity: 1; }
.step-content h3 {
  font-size: 0.95rem; font-weight: 600; color: var(--ink); margin-bottom: 0.35rem;
}
.step-content p {
  font-size: 0.82rem; color: var(--muted); line-height: 1.65;
}
.how-visual {
  background: #ffffff;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.1);
  box-shadow: var(--shadow-lg);
}
.how-visual-chrome {
  background: #f8fafc; padding: 0.55rem 0.85rem;
  display: flex; align-items: center; gap: 0.5rem;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.how-visual-body {
  padding: 1.25rem; min-height: 280px; background: #f8fafc;
}

/* ── RECEIPT ── */
#receipt {
  padding: 7rem 0;
}
.receipt-layout {
  display: grid; grid-template-columns: 5fr 4fr; gap: 5rem; align-items: center;
}
.receipt-text .section-title { margin-bottom: 1rem; }
.receipt-text .section-desc { margin-bottom: 2rem; }
.receipt-bullets { display: flex; flex-direction: column; gap: 1rem; }
.r-bullet {
  display: flex; align-items: flex-start; gap: 0.85rem;
  padding: 1rem 1.25rem;
  background: var(--parchment);
  border: 1px solid var(--rule);
  border-radius: 10px;
}
.r-bullet-icon {
  width: 36px; height: 36px; border-radius: 8px; flex-shrink: 0;
  background: var(--brand-dim); border: 1px solid var(--brand-border);
  display: flex; align-items: center; justify-content: center; font-size: 0.9rem;
}
.r-bullet-text h4 { font-size: 0.88rem; font-weight: 600; color: var(--ink); margin-bottom: 0.2rem; }
.r-bullet-text p  { font-size: 0.78rem; color: var(--muted); line-height: 1.55; }

.receipt-visual {
  display: flex; justify-content: center;
}
.thermal-receipt {
  width: 210px;
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 30px 70px rgba(13,12,10,0.15), 0 2px 8px rgba(13,12,10,0.08);
  transform: rotate(1.5deg);
  font-family: 'Courier New', monospace;
  overflow: hidden;
}
.tr-header {
  background: #E8600A; padding: 0.85rem 0.85rem 0.7rem;
}
.tr-header h3 { color: #fff; font-size: 0.82rem; font-family: 'Playfair Display',serif; font-weight: 700; text-align: center; }
.tr-header p  { color: rgba(255,255,255,0.75); font-size: 0.5rem; text-align: center; margin-top: 1px; font-family: monospace; }
.tr-body { padding: 0.75rem; color: #3D2600; }
.tr-meta { font-size: 0.58rem; margin-bottom: 0.2rem; }
.tr-rule { border: none; border-top: 1px dashed #E8600A; margin: 0.45rem 0; }
.tr-row  { display: flex; justify-content: space-between; font-size: 0.58rem; padding: 0.12rem 0; }
.tr-row.hdr { font-size: 0.5rem; color: #9B5000; font-weight: 700; letter-spacing: 0.05em; }
.tr-subtotals { margin-top: 0.2rem; }
.tr-footer-bar {
  background: #E8600A; margin: 0 -0.75rem -0.75rem;
  padding: 0.45rem 0.75rem;
  display: flex; justify-content: space-between;
  color: #fff; font-size: 0.65rem; font-weight: 700;
}
.tr-qr {
  width: 52px; height: 52px; margin: 0.5rem auto 0.3rem;
  background: #f5f5f5; border-radius: 3px; padding: 4px;
  display: grid; grid-template-columns: repeat(6,1fr); gap: 1px;
  overflow: hidden;
}
.qp { border-radius: 0.5px; }
.tr-upi { text-align: center; font-size: 0.5rem; color: #E8600A; font-weight: 700; letter-spacing: 0.05em; }



.price-card {
  background: var(--warm-white);
  padding: 2.25rem;
  position: relative;
}
.price-card.featured {
  background: var(--ink);
}
.price-badge {
  display: inline-block; font-size: 0.62rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  background: var(--brand); color: #fff;
  padding: 0.2rem 0.7rem; border-radius: 99px; margin-bottom: 1rem;
}
.price-plan {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 0.5rem;
}
.price-card.featured .price-plan { color: rgba(255,255,255,0.4); }
.price-amount {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem; font-weight: 700; color: var(--ink);
  line-height: 1; margin-bottom: 0.2rem;
  letter-spacing: -1px;
}
.price-card.featured .price-amount { color: #fff; }
.price-per { font-size: 0.75rem; color: var(--muted); margin-bottom: 1.25rem; }
.price-card.featured .price-per { color: rgba(255,255,255,0.4); }
.price-desc { font-size: 0.8rem; color: var(--muted); line-height: 1.6; margin-bottom: 1.75rem; }
.price-card.featured .price-desc { color: rgba(255,255,255,0.5); }
.price-features { list-style: none; display: flex; flex-direction: column; gap: 0.65rem; margin-bottom: 2rem; }
.price-features li {
  font-size: 0.8rem; color: var(--text); display: flex; align-items: flex-start; gap: 0.5rem;
}
.price-card.featured .price-features li { color: rgba(255,255,255,0.75); }
.price-features li::before {
  content: '✓'; color: var(--brand); font-weight: 700; flex-shrink: 0; margin-top: 0.05rem;
}
.price-btn {
  width: 100%; padding: 0.75rem;
  font-family: 'Outfit', sans-serif; font-size: 0.85rem; font-weight: 600;
  border-radius: 8px; cursor: pointer; border: none; transition: all 0.2s;
  letter-spacing: 0.01em;
}
.price-btn-outline {
  background: transparent; color: var(--text);
  border: 1.5px solid var(--rule) !important;
}
.price-btn-outline:hover { background: var(--parchment); }
.price-btn-primary {
  background: var(--brand); color: #fff;
  box-shadow: 0 4px 16px rgba(232,96,10,0.3);
}
.price-btn-primary:hover { background: var(--brand-light); transform: translateY(-1px); }

/* ── FAQ ── */
#faq { padding: 7rem 0; }
.faq-layout {
  display: grid; grid-template-columns: 1fr 2fr; gap: 5rem;
}
.faq-items { display: flex; flex-direction: column; }
.faq-item {
  border-bottom: 1px solid var(--rule); overflow: hidden;
}
.faq-question {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.25rem 0; cursor: pointer;
  font-size: 0.88rem; font-weight: 600; color: var(--ink);
  transition: color 0.2s;
}
.faq-question:hover { color: var(--brand); }
.faq-toggle {
  font-size: 1.1rem; color: var(--muted); transition: transform 0.3s;
  flex-shrink: 0; margin-left: 1rem;
}
.faq-item.open .faq-toggle { transform: rotate(45deg); color: var(--brand); }
.faq-answer {
  font-size: 0.82rem; color: var(--muted); line-height: 1.7;
  max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.3s;
  padding-bottom: 0;
}
.faq-item.open .faq-answer { max-height: 200px; padding-bottom: 1.25rem; }

/* ── CTA ── */
#cta {
  padding: 7rem 0;
  background: var(--ink);
  position: relative; overflow: hidden;
}
#cta::before {
  content: '';
  position: absolute; top: -100px; right: -100px;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(232,96,10,0.12), transparent 70%);
}
#cta::after {
  content: '';
  position: absolute; bottom: -100px; left: -100px;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(232,96,10,0.06), transparent 70%);
}
.cta-inner {
  position: relative; z-index: 1;
  text-align: center; max-width: 600px; margin: 0 auto; padding: 0 2rem;
}
.cta-inner .eyebrow { color: rgba(232,96,10,0.8); margin-bottom: 1.25rem; }
.cta-inner .eyebrow::before { background: rgba(232,96,10,0.8); }
.cta-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem,4vw,3rem); font-weight: 700;
  color: #fff; letter-spacing: -1px; line-height: 1.1;
  margin-bottom: 1rem;
}
.cta-sub { font-size: 0.95rem; color: rgba(255,255,255,0.45); line-height: 1.65; margin-bottom: 2.5rem; }
.cta-actions { display: flex; justify-content: center; gap: 0.85rem; }
.btn-cta-primary {
  font-family: 'Outfit', sans-serif; font-weight: 600; font-size: 0.9rem;
  color: #fff; background: var(--brand); border: none; cursor: pointer;
  padding: 0.85rem 2rem; border-radius: 8px;
  box-shadow: 0 4px 20px rgba(232,96,10,0.4);
  transition: all 0.2s;
}
.btn-cta-primary:hover { background: var(--brand-light); transform: translateY(-2px); }
.btn-cta-ghost {
  font-family: 'Outfit', sans-serif; font-weight: 600; font-size: 0.9rem;
  color: rgba(255,255,255,0.6); background: transparent; cursor: pointer;
  padding: 0.85rem 2rem; border-radius: 8px;
  border: 1.5px solid rgba(255,255,255,0.12);
  transition: all 0.2s;
}
.btn-cta-ghost:hover { color: #fff; border-color: rgba(255,255,255,0.25); }

/* ── FOOTER ── */
footer {
  background: #0A0908;
  padding: 3rem 0 2rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-inner {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem;
  margin-bottom: 2.5rem;
}
.footer-brand .nav-logo { margin-bottom: 0.85rem; }
.footer-brand p {
  font-size: 0.78rem; color: rgba(255,255,255,0.3); line-height: 1.65;
  max-width: 220px;
}
.footer-col h4 {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: rgba(255,255,255,0.5);
  margin-bottom: 1rem;
}
.footer-col a {
  display: block; font-size: 0.8rem; color: rgba(255,255,255,0.3);
  text-decoration: none; margin-bottom: 0.55rem;
  transition: color 0.2s;
}
.footer-col a:hover { color: rgba(255,255,255,0.7); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 1.5rem;
  display: flex; align-items: center; justify-content: space-between;
}
.footer-copy { font-size: 0.75rem; color: rgba(255,255,255,0.2); }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a {
  font-size: 0.72rem; color: rgba(255,255,255,0.2); text-decoration: none;
  transition: color 0.2s;
}
.footer-legal a:hover { color: rgba(255,255,255,0.5); }


/* ── ROADMAP ── */
#roadmap {
  padding: 7rem 0;
  background: var(--warm-white);
}
.roadmap-header {
  margin-bottom: 4rem;
}
.roadmap-header .eyebrow { margin-bottom: 0.75rem; }
.roadmap-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}
.roadmap-col {
  background: var(--parchment);
  border: 1px solid var(--rule);
  border-radius: 18px;
  overflow: hidden;
}
.rm-col-header {
  padding: 1.5rem 1.75rem 1.25rem;
  border-bottom: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.rm-col-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.65rem;
  border-radius: 99px;
  width: fit-content;
}
.rm-badge-done {
  background: rgba(34, 197, 94, 0.12);
  color: #16a34a;
  border: 1px solid rgba(34, 197, 94, 0.25);
}
.rm-badge-upcoming {
  background: var(--brand-dim);
  color: var(--brand);
  border: 1px solid var(--brand-border);
}
.rm-col-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.3px;
}
.rm-col-count {
  font-size: 0.72rem;
  color: var(--muted);
  font-weight: 500;
}

/* Progress bar — done column only */
.rm-done-header::after {
  content: '';
  display: block;
  height: 3px;
  background: linear-gradient(90deg, #22c55e, #16a34a);
  border-radius: 2px;
  margin-top: 0.5rem;
  animation: rmProgress 1.2s 0.5s cubic-bezier(0.22,1,0.36,1) both;
  transform-origin: left;
}
@keyframes rmProgress {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}

.rm-items {
  padding: 0.75rem 0;
}
.rm-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.9rem 1.75rem;
  position: relative;
  opacity: 0;
  transform: translateX(-12px);
  transition: background 0.2s;
  cursor: default;
}
.rm-item:hover { background: rgba(0,0,0,0.02); }
.rm-item-upcoming:hover { background: rgba(232,96,10,0.03); }

/* Vertical connector line */
.rm-item::before {
  content: '';
  position: absolute;
  left: calc(1.75rem + 11px);
  top: calc(0.9rem + 24px);
  bottom: -0.9rem;
  width: 1px;
  background: var(--rule);
}
.rm-item:last-child::before { display: none; }

.rm-icon-wrap {
  width: 24px; height: 24px;
  border-radius: 6px;
  flex-shrink: 0;
  margin-top: 1px;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.rm-icon-wrap i {
  width: 13px;
  height: 13px;
  stroke-width: 2.5px;
}
.rm-icon-done {
  background: #22c55e;
  color: #fff;
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.1);
}
.rm-icon-upcoming {
  background: var(--parchment);
  border: 1.5px solid var(--brand);
  color: var(--brand);
  box-shadow: 0 0 0 4px var(--brand-dim);
}
.rm-priority-high .rm-icon-upcoming {
  background: var(--brand);
  color: #fff;
  animation: rmPulse 2s ease-in-out infinite;
}
@keyframes rmPulse {
  0%, 100% { box-shadow: 0 0 0 4px var(--brand-dim); }
  50% { box-shadow: 0 0 0 8px rgba(232,96,10,0.08); }
}

.rm-item-body { flex: 1; min-width: 0; }
.rm-item-title {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.4;
  margin-bottom: 0.2rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.rm-item-done .rm-item-title {
  color: var(--muted);
  text-decoration: line-through;
  text-decoration-color: rgba(22, 163, 74, 0.5);
}
.rm-item-desc {
  font-size: 0.76rem;
  color: var(--muted);
  line-height: 1.55;
}
.rm-item-done .rm-item-desc {
  opacity: 0.65;
}

/* Tags */
.rm-tag {
  display: inline-block;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.12rem 0.5rem;
  border-radius: 99px;
  flex-shrink: 0;
  text-decoration: none !important;
}
.rm-tag-soon {
  background: rgba(232,96,10,0.12);
  color: var(--brand);
  border: 1px solid var(--brand-border);
}
.rm-tag-big {
  background: rgba(139,92,246,0.1);
  color: #7c3aed;
  border: 1px solid rgba(139,92,246,0.25);
}

/* Show more button */
.rm-show-more {
  padding: 0.75rem 1.75rem 1.5rem;
  border-top: 1px solid var(--rule);
}
.rm-more-btn {
  width: 100%;
  padding: 0.6rem;
  background: transparent;
  border: 1.5px dashed var(--rule);
  border-radius: 8px;
  cursor: pointer;
  font-family: 'Outfit', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--muted);
  transition: all 0.2s;
}
.rm-more-btn:hover {
  border-color: var(--brand-border);
  color: var(--brand);
  background: var(--brand-dim);
}

/* Hidden items — collapsed by default */
.rm-item-upcoming.rm-hidden {
  display: none;
}

/* Responsive */
@media (max-width: 900px) {
  .roadmap-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .rm-col-header { padding: 1.25rem; }
  .rm-item { padding: 0.75rem 1.25rem; }
  .rm-item::before { left: calc(1.25rem + 6px); }
}

/* ── Reveal ── */

.reveal { opacity: 0; }
html { scroll-behavior: smooth; }

/* Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--parchment); }
::-webkit-scrollbar-thumb { background: rgba(232,96,10,0.3); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: rgba(232,96,10,0.6); }

@media (max-width: 900px) {
  .nav-links { display: none; }
  .hero-frame-wrap { padding: 0 1rem; }
  .features-layout { grid-template-columns: 1fr 1fr; }
  .how-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .receipt-layout { grid-template-columns: 1fr; gap: 3rem; }
  .receipt-visual { order: -1; }
  .pricing-grid { grid-template-columns: 1fr; }
  .faq-layout { grid-template-columns: 1fr; gap: 2rem; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1/-1; }
}

@media (max-width: 768px) {
  .frame-sidebar { width: 60px; }
  .sidebar-logo-area, .s-item span { display: none; }
  .s-item { justify-content: center; padding: 1rem 0; }
  .kpi-row { grid-template-columns: 1fr 1fr; }
  .charts-row { grid-template-columns: 1fr; }
  .chart-donut { display: none; }
}

@media (max-width: 600px) {
  .container { padding: 0 1.25rem; }
  .nav-inner { padding: 0.75rem 1.25rem; }
  .btn-ghost { display: none; }
  .hero-title { font-size: 2.2rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .btn-hero-primary, .btn-hero-outline { width: 100%; text-align: center; }
  .features-layout { grid-template-columns: 1fr; }
  .trust-inner { gap: 1.5rem; }
  .trust-sep { display: none; }
  .frame-body { height: auto; flex-direction: column; }
  .frame-sidebar { 
    width: 100%; height: auto; display: flex; 
    border-right: none; border-bottom: 1px solid rgba(0,0,0,0.05); 
    padding: 0; overflow-x: auto; -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .frame-sidebar::-webkit-scrollbar { display: none; }
  .s-item { 
    flex: 0 0 auto; border-left: none !important; border-bottom: 2px solid transparent; 
    padding: 0.85rem 1.25rem; font-size: 0.65rem; display: flex; align-items: center; gap: 0.5rem;
  }
  .s-item.active { border-bottom: 2px solid #E8600A; border-left: none !important; }
  .frame-main { padding: 1rem; width: 100%; }
  .kpi-row, .analytics-stats-row, .analytics-charts-row { grid-template-columns: 1fr; gap: 0.5rem; }
  .billing-mock { flex-direction: column; height: auto; }
  .bm-right { width: 100%; margin-top: 1rem; }
  .thermal-receipt { width: 180px; }
  .cta-actions { flex-direction: column; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
}
/* ── Subpages ── */

.features-hero, .pricing-hero, .roadmap-hero, .help-hero, .status-hero {
  padding: 8rem 0 4rem;
  text-align: center;
  background: var(--parchment);
  border-bottom: 1px solid var(--rule);
}

.feature-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 6rem 0;
}
.feature-detail-grid:nth-child(even) { direction: rtl; }
.feature-detail-grid:nth-child(even) .feature-text { direction: ltr; }
.feature-image-mock {
  padding: 2rem;
  overflow: visible;
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-text h2 { font-family: 'Playfair Display', serif; font-size: 2.5rem; margin-bottom: 1.5rem; color: var(--ink); }
.feature-text p { font-size: 1.1rem; color: var(--muted); line-height: 1.6; margin-bottom: 2rem; }
.feature-list { list-style: none; padding: 0; }
.feature-list li { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem; font-weight: 500; color: var(--ink); }
.feature-list i { color: var(--brand); width: 18px; height: 18px; }

#pricing { background: var(--parchment); }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; padding: 6rem 0; }
.pricing-card {
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: 18px;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.pricing-card:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(0,0,0,0.05); border-color: var(--brand-border); }
.pricing-card.popular { border-color: var(--brand); position: relative; scale: 1.05; z-index: 2; }
.popular-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--brand); color: #fff; padding: 0.25rem 0.75rem; border-radius: 99px;
  font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em;
}
.tier-name { font-size: 0.9rem; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 1rem; }
.price { font-family: 'Playfair Display', serif; font-size: 3rem; font-weight: 800; color: var(--ink); margin-bottom: 0.5rem; display: flex; align-items: baseline; gap: 0.25rem; }
.price span { font-size: 1rem; font-weight: 500; color: var(--muted); font-family: 'Outfit', sans-serif; }
.price-desc { font-size: 0.9rem; color: var(--muted); margin-bottom: 2rem; }
.pricing-features { list-style: none; padding: 0; margin: 0 0 2.5rem; flex: 1; }
.pricing-features li { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem; font-size: 0.95rem; color: var(--ink); }
.pricing-features i { color: var(--brand); width: 16px; height: 16px; flex-shrink: 0; }
.btn-pricing { width: 100%; padding: 1rem; border-radius: 10px; font-weight: 600; text-align: center; transition: all 0.2s; cursor: pointer; border: none; font-family: 'Outfit', sans-serif; }
.btn-free { background: var(--parchment); color: var(--ink); border: 1px solid var(--rule); }
.btn-free:hover { background: #eee; }
.btn-pro { background: var(--brand); color: #fff; }
.btn-pro:hover { background: #CC5500; }

.help-search-wrap { position: relative; max-width: 600px; margin: 2.5rem auto 0; }
.help-search-wrap i { position: absolute; left: 1.25rem; top: 50%; transform: translateY(-50%); color: var(--muted); }
.help-search { width: 100%; padding: 1.25rem 1.25rem 1.25rem 3.5rem; border-radius: 12px; border: 1px solid var(--rule); font-family: 'Outfit', sans-serif; font-size: 1.1rem; box-shadow: 0 10px 30px rgba(0,0,0,0.03); outline: none; transition: border-color 0.2s; }
.help-search:focus { border-color: var(--brand); }
.help-categories { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; padding: 4rem 0; }
.help-cat-card { padding: 2rem; background: #fff; border: 1px solid var(--rule); border-radius: 14px; text-align: center; transition: all 0.2s; cursor: pointer; text-decoration: none; color: inherit; }
.help-cat-card:hover { transform: translateY(-5px); box-shadow: 0 15px 35px rgba(0,0,0,0.05); border-color: var(--brand-border); }
.help-cat-card i { color: var(--brand); margin-bottom: 1.25rem; }
.help-cat-card h3 { margin-bottom: 0.5rem; font-size: 1.2rem; }
.help-cat-card p { font-size: 0.9rem; color: var(--muted); line-height: 1.5; }
#faq { background: transparent !important; padding-top: 2rem; }

.status-banner { display: flex; align-items: center; gap: 1.5rem; padding: 2rem; border-radius: 16px; background: rgba(232, 96, 10, 0.05); border: 1px solid rgba(232, 96, 10, 0.2); margin-top: 2rem; }
.status-indicator { width: 16px; height: 16px; border-radius: 50%; background: var(--brand); box-shadow: 0 0 0 4px var(--brand-dim); animation: pulseStatus 2s infinite; }
@keyframes pulseStatus { 0%, 100% { box-shadow: 0 0 0 4px var(--brand-dim); } 50% { box-shadow: 0 0 0 10px rgba(232, 96, 10, 0.1); } }
.status-msg h2 { font-size: 1.25rem; font-weight: 700; color: var(--brand); margin-bottom: 0.25rem; }
.status-msg p { font-size: 0.95rem; color: var(--muted); }
.status-grid { display: grid; gap: 1rem; padding: 4rem 0; }
.status-item { padding: 1.25rem 1.5rem; background: #fff; border: 1px solid var(--rule); border-radius: 12px; display: flex; align-items: center; justify-content: space-between; }
.status-label { font-weight: 600; font-size: 0.95rem; display: flex; align-items: center; gap: 0.75rem; }
.status-value { font-family: 'DM Mono', monospace; font-size: 0.8rem; padding: 0.25rem 0.6rem; border-radius: 6px; }
.val-operational { background: #dcfce7; color: #166534; }
.val-development { background: #fef3c7; color: #92400e; }
.val-planned { background: #f1f5f9; color: #475569; }
.uptime-graph { margin-top: 4rem; padding: 2rem; background: #fff; border: 1px solid var(--rule); border-radius: 16px; }
.uptime-header { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 1.5rem; }
.uptime-bars { display: flex; gap: 4px; height: 30px; align-items: flex-end; }
.uptime-bar { flex: 1; background: #22c55e; border-radius: 2px; opacity: 0.3; }
.uptime-bar.active { opacity: 1; }

@media (max-width: 900px) {
  .feature-detail-grid { grid-template-columns: 1fr; gap: 2rem; text-align: center; }
  .feature-detail-grid:nth-child(even) { direction: ltr; }
  .feature-list li { justify-content: center; }
  .pricing-grid, .help-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .pricing-card.popular { scale: 1; }
}

/* ── Roadmap Specific ── */
#roadmap { background: transparent !important; padding-top: 4rem; }
.roadmap-header { display: none; }

