:root {
  --ink: #0d1f1a;
  --muted: #3d5a50;
  --brand: #0a7a56;
  --brand-deep: #045c3f;
  /* Warna mirip layar kasir */
  --kasir-bg: #f3efe6;
  --kasir-brand: #1a5c3a;
  --kasir-card: #fffdf8;
  --kasir-line: #d5d0c4;
  --kasir-muted: #5c6b62;
  --mint: #d8f0e6;
  --paper: #ffffff;
  --wa: #25d366;
  --wa-bg: #e7f9ee;
  --line: #b9d4c8;
  --mess: #6b4f3a;
  --warn: #a11d1d;
  --radius: 18px;
  --font: "Lexend", "Avenir Next", "Trebuchet MS", sans-serif;
  --display: "Sora", "Lexend", sans-serif;
  --pad: max(16px, env(safe-area-inset-left));
  --pad-r: max(16px, env(safe-area-inset-right));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  font-family: var(--font);
  font-weight: 500;
  background: #eef7f3;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
}

.atmosphere {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 90% 55% at 100% 0%, #9fd4bb 0%, transparent 55%),
    radial-gradient(ellipse 70% 50% at 0% 40%, #c5e8d8 0%, transparent 50%),
    linear-gradient(180deg, #e4f4ec 0%, #eef7f3 40%, #dceee5 100%);
}

a { color: var(--brand); }
a:hover { text-decoration: underline; }

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px var(--pad-r) 14px var(--pad);
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(238, 247, 243, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(185, 212, 200, 0.65);
}
.logo {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.3rem;
  letter-spacing: -0.03em;
  color: var(--brand-deep);
  text-decoration: none;
}
.nav-link {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--ink);
  text-decoration: none;
  padding: 10px 12px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

/* —— Phone frame —— */
.phone {
  width: 260px;
  background: #1a2220;
  border-radius: 28px;
  padding: 10px 8px 8px;
  box-shadow:
    0 0 0 2px #2c3834,
    0 22px 50px rgba(13, 31, 26, 0.22);
  position: relative;
}
.phone-sm { width: 220px; }
.phone-hero { width: min(72vw, 268px); }
.phone-notch {
  width: 72px;
  height: 8px;
  margin: 0 auto 8px;
  border-radius: 999px;
  background: #0d1412;
}

/* —— Kasir UI mock (match app.css feel) —— */
.kasir-ui {
  background:
    radial-gradient(400px 200px at 10% -10%, #dceee3 0%, transparent 55%),
    var(--kasir-bg);
  border-radius: 20px;
  padding: 12px 10px 8px;
  color: #1c241f;
  font-family: "Segoe UI", "Avenir Next", "Trebuchet MS", sans-serif;
  min-height: 340px;
  display: flex;
  flex-direction: column;
}
.phone-sm .kasir-ui { min-height: 300px; padding: 10px 8px 6px; }

.k-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 8px;
}
.k-top.compact { margin-bottom: 10px; }
.k-biz {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--kasir-brand);
}
.k-chip {
  display: inline-block;
  margin-top: 4px;
  border: 1px solid var(--kasir-line);
  background: var(--kasir-card);
  border-radius: 999px;
  padding: 2px 8px;
  font-size: 0.62rem;
  font-weight: 700;
  color: var(--kasir-muted);
}
.k-total {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  text-align: right;
}
.k-cart {
  margin: 0 0 10px;
  font-size: 0.72rem;
  color: var(--kasir-muted);
}
.k-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  flex: 1;
}
.k-grid.mini { gap: 6px; }
.k-item {
  border: 1px solid var(--kasir-line);
  background: var(--kasir-card);
  border-radius: 14px;
  min-height: 64px;
  padding: 8px;
  text-align: left;
  position: relative;
}
.k-item.dashed {
  border-style: dashed;
  background: transparent;
}
.k-item.selected {
  box-shadow: inset 0 0 0 2px var(--kasir-brand);
  border-color: var(--kasir-brand);
}
.k-name {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 2px;
}
.k-price {
  display: block;
  font-size: 0.68rem;
  color: var(--kasir-muted);
}
.k-qty {
  display: inline-block;
  margin-top: 6px;
  background: var(--kasir-brand);
  color: #fff;
  border-radius: 999px;
  padding: 1px 8px;
  font-size: 0.65rem;
  font-weight: 700;
}
.k-btn-print {
  margin-top: 10px;
  background: var(--kasir-brand);
  color: #fff;
  border-radius: 14px;
  min-height: 44px;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 0.95rem;
}
.k-btn-print.sm {
  min-height: 36px;
  font-size: 0.8rem;
  margin-top: 8px;
}
.k-btn-print.pulse {
  animation: tap-pulse 1.8s ease-in-out infinite;
}
.k-btn-ghost {
  margin-top: 6px;
  border: 1px solid var(--kasir-line);
  border-radius: 14px;
  min-height: 36px;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 0.8rem;
  color: #1c241f;
}
.k-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2px;
  margin-top: 10px;
  padding-top: 8px;
  border-top: 1px solid var(--kasir-line);
}
.k-tabs span {
  text-align: center;
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--kasir-muted);
  padding: 8px 2px;
  border-radius: 10px;
}
.k-tabs span.on {
  background: #e7efea;
  color: var(--kasir-brand);
}

.mini-kasir {
  padding: 12px;
  background:
    radial-gradient(280px 140px at 10% -10%, #dceee3 0%, transparent 55%),
    var(--kasir-bg);
  font-family: "Segoe UI", "Avenir Next", "Trebuchet MS", sans-serif;
}
.mini-kasir .k-total { font-size: 0.95rem; }
.mini-kasir .k-item { min-height: 52px; }

/* —— WA mock —— */
.wa-ui {
  background: #ece5dd;
  border-radius: 20px;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  font-family: "Segoe UI", "Avenir Next", "Trebuchet MS", sans-serif;
}
.wa-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  background: #075e54;
  color: #fff;
}
.wa-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #128c7e;
  display: grid;
  place-items: center;
  font-size: 0.75rem;
  font-weight: 800;
}
.wa-name { font-size: 0.85rem; font-weight: 700; }
.wa-thread {
  flex: 1;
  padding: 12px 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  background:
    url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 30h60M30 0v60' stroke='%23d4cfc4' stroke-width='0.5' opacity='0.35'/%3E%3C/svg%3E");
}
.wa-in, .wa-out {
  max-width: 88%;
  padding: 8px 10px;
  font-size: 0.78rem;
  line-height: 1.35;
  border-radius: 8px;
}
.wa-in {
  align-self: flex-start;
  background: #fff;
  border-top-left-radius: 2px;
  color: #1c241f;
}
.wa-out {
  align-self: flex-end;
  background: #dcf8c6;
  border-top-right-radius: 2px;
  color: #1c241f;
}

/* —— Hero —— */
.hero {
  position: relative;
  min-height: calc(100dvh - 56px);
  display: flex;
  flex-direction: column;
  padding: 0;
}

.hero-stage {
  flex: 1;
  min-height: 46vh;
  display: grid;
  place-items: center;
  padding: 24px var(--pad) 12px;
  position: relative;
  animation: scene-in 0.85s ease-out both;
}

.hero-wa-float {
  position: absolute;
  left: max(12px, env(safe-area-inset-left));
  top: 12%;
  max-width: 46%;
  background: var(--wa-bg);
  border: 1.5px solid #8fd9ad;
  border-radius: 4px 16px 16px 16px;
  padding: 10px 12px;
  box-shadow: 0 10px 28px rgba(13, 31, 26, 0.1);
  animation: pop-left 0.7s 0.2s ease-out both;
  z-index: 2;
}
.wa-label {
  margin: 0 0 4px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--wa);
}
.wa-msg {
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.35;
  color: var(--ink);
}

.hero-content {
  padding: 16px var(--pad-r) max(28px, env(safe-area-inset-bottom)) var(--pad);
  max-width: 40rem;
  animation: rise 0.7s 0.2s ease-out both;
}

.brand {
  margin: 0 0 8px;
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(2.5rem, 11vw, 3.5rem);
  letter-spacing: -0.045em;
  line-height: 0.95;
  color: var(--brand-deep);
}

.hero h1 {
  margin: 0;
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(1.35rem, 5.5vw, 1.8rem);
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--ink);
  max-width: 18ch;
}

.lead {
  margin: 12px 0 22px;
  font-size: 1.05rem;
  line-height: 1.45;
  color: var(--muted);
  max-width: 30ch;
}

.cta-row { display: grid; gap: 10px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 18px;
  border: 0;
  border-radius: var(--radius);
  font: inherit;
  font-weight: 700;
  font-size: 1.05rem;
  cursor: pointer;
  text-decoration: none !important;
  transition: transform 0.15s ease, background 0.15s ease;
}
.btn:active { transform: scale(0.98); }
.btn.primary {
  background: var(--brand);
  color: #fff;
}
.btn.primary:hover { background: var(--brand-deep); }
.btn.ghost {
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  border: 1px solid var(--line);
}
.btn-block { width: 100%; }

.section {
  padding: 56px var(--pad-r) 56px var(--pad);
  max-width: 560px;
  margin: 0 auto;
}
.section.alt {
  max-width: none;
  background: rgba(216, 240, 230, 0.55);
  border-block: 1px solid var(--line);
}
.section.alt > *:not(.flow):not(.os-guides):not(.pin-story) {
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.section.alt > .flow,
.section.alt > .os-guides,
.section.alt > .howto-note,
.section.alt > .pin-story,
.section.alt > .quotes {
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.section h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.45rem, 5vw, 1.85rem);
  letter-spacing: -0.025em;
  line-height: 1.2;
}
.sub {
  margin: 10px 0 28px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.5;
}

.compare {
  display: grid;
  gap: 12px;
  margin: 0;
}
.compare-vs {
  margin: 0;
  text-align: center;
  font-family: var(--display);
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand);
}

.panel {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--paper);
}
.panel figcaption {
  padding: 10px 14px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.panel.before figcaption {
  background: #f3e8dc;
  color: var(--mess);
}
.panel.after figcaption {
  background: var(--mint);
  color: var(--brand-deep);
}

.hand-note {
  padding: 16px 18px 20px;
  background:
    repeating-linear-gradient(
      transparent,
      transparent 27px,
      #e8d9c8 27px,
      #e8d9c8 28px
    ),
    #faf4ec;
  min-height: 140px;
  font-family: "Segoe Print", "Comic Sans MS", "Chalkboard SE", cursive;
  color: #5c4030;
  transform: rotate(-0.6deg);
}
.hand-note p {
  margin: 0 0 10px;
  font-size: 1.05rem;
  line-height: 1.35;
}
.hand-note .scratch {
  text-decoration: line-through;
  opacity: 0.7;
}
.hand-note .faded {
  opacity: 0.45;
  font-size: 0.95rem;
}

/* —— Flow steps with phone visuals —— */
.flow {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 40px;
}
.flow-step {
  display: grid;
  gap: 16px;
  justify-items: center;
}
.flow-copy {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  width: 100%;
}
.flow-num {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--brand);
  color: #fff;
  font-weight: 800;
  display: grid;
  place-items: center;
}
.flow-copy strong {
  display: block;
  font-size: 1.08rem;
  margin-bottom: 2px;
}
.flow-copy span:last-child {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.4;
}

.print-scene {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 8px;
  width: 100%;
  position: relative;
}
.thermal {
  width: 118px;
  margin-top: 36px;
  background: #fff;
  border: 1px solid #cfcfcf;
  padding: 12px 10px;
  font-size: 0.62rem;
  line-height: 1.35;
  color: #222;
  box-shadow: 0 12px 28px rgba(13, 31, 26, 0.12);
  animation: slip-out 0.9s 0.3s ease-out both;
  font-family: "Courier New", ui-monospace, monospace;
}
.th-brand {
  margin: 0 0 2px;
  font-family: var(--display);
  font-weight: 800;
  font-size: 0.72rem;
  color: var(--kasir-brand);
  letter-spacing: -0.02em;
}
.th-biz {
  margin: 0 0 8px;
  color: #666;
  border-bottom: 1px dashed #ccc;
  padding-bottom: 6px;
}
.th-line, .th-total {
  display: flex;
  justify-content: space-between;
  gap: 6px;
  margin: 0 0 3px;
}
.th-total {
  margin-top: 6px;
  padding-top: 6px;
  border-top: 1px dashed #ccc;
  font-weight: 800;
}
.th-foot {
  margin: 10px 0 0;
  text-align: center;
  color: #888;
  font-size: 0.58rem;
}

.use-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.use-list li {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 12px 16px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.98rem;
}

.example-grid {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}
.example-card {
  background: var(--paper);
  border-left: 3px solid var(--brand);
  padding: 14px 16px;
}
.ex-label {
  margin: 0 0 4px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brand);
}
.ex-chat {
  margin: 0;
  font-size: 1rem;
  line-height: 1.4;
  color: var(--ink);
}

.why-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 16px;
}
.why-list strong {
  display: block;
  font-size: 1.05rem;
  margin-bottom: 2px;
}
.why-list span {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.4;
}

.printer-points {
  margin: 0 0 16px;
  padding-left: 1.2rem;
  display: grid;
  gap: 10px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.45;
}
.printer-points strong { color: var(--ink); }

#cara {
  max-width: none;
}
#cara > h2,
#cara > .sub,
#cara > .os-guides,
#cara > .howto-note {
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
#cara > .pin-story {
  max-width: min(100%, 720px);
  margin-left: auto;
  margin-right: auto;
}

/* —— Testimoni —— */
.quotes {
  display: grid;
  gap: 20px;
  margin: 0;
}

.quote {
  margin: 0;
  padding: 0 0 0 16px;
  border-left: 3px solid var(--brand);
}

.quote p {
  margin: 0 0 14px;
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(1.05rem, 3.8vw, 1.2rem);
  line-height: 1.4;
  letter-spacing: -0.015em;
  color: var(--ink);
}

.quote footer {
  display: flex;
  align-items: center;
  gap: 10px;
}

.quote-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  font-family: var(--display);
  font-weight: 800;
  font-size: 0.95rem;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.quote:nth-child(2) .quote-avatar { background: #0d5c7a; }
.quote:nth-child(3) .quote-avatar { background: #8a5a00; }

.quote cite {
  font-style: normal;
  font-weight: 800;
  font-size: 0.95rem;
  display: block;
  color: var(--ink);
}

.quote-meta {
  display: block;
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 1px;
}

/* —— Pin ke layar utama (visual) —— */
.pin-story {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
  gap: 8px 6px;
  margin: 0 0 32px;
}

.pin-frame {
  margin: 0;
  display: grid;
  justify-items: center;
  gap: 10px;
  flex: 0 1 auto;
}

.pin-frame figcaption {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--brand-deep);
  text-align: center;
  max-width: 11ch;
  line-height: 1.25;
}

.pin-arrow {
  width: 18px;
  height: 18px;
  margin-top: 72px;
  border-right: 2.5px solid var(--brand);
  border-top: 2.5px solid var(--brand);
  transform: rotate(45deg);
  flex-shrink: 0;
  opacity: 0.55;
}

.phone-tiny {
  width: 132px;
  padding: 8px 6px 6px;
  border-radius: 20px;
}

.phone-tiny .phone-notch {
  width: 48px;
  height: 5px;
  margin-bottom: 6px;
}

.browser-ui,
.home-ui {
  border-radius: 14px;
  overflow: hidden;
  min-height: 168px;
  position: relative;
}

.browser-ui {
  background: var(--kasir-bg);
  display: flex;
  flex-direction: column;
}

.browser-ui.dim .br-page.faint { opacity: 0.35; }

.br-bar {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 6px 6px;
  background: #fff;
  border-bottom: 1px solid var(--kasir-line);
  font-size: 0.55rem;
}

.br-lock {
  width: 8px;
  height: 10px;
  border: 1.5px solid #666;
  border-radius: 2px;
  position: relative;
  flex-shrink: 0;
}
.br-lock::before {
  content: "";
  position: absolute;
  left: 1px;
  top: -5px;
  width: 4px;
  height: 5px;
  border: 1.5px solid #666;
  border-bottom: 0;
  border-radius: 4px 4px 0 0;
}
.br-url {
  flex: 1;
  background: #f1f3f4;
  border-radius: 999px;
  padding: 3px 6px;
  color: #444;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.br-menu {
  font-weight: 800;
  font-size: 0.85rem;
  padding: 0 4px;
  color: #444;
  line-height: 1;
}
.br-menu.on {
  color: var(--kasir-brand);
  background: #e7f4ec;
  border-radius: 6px;
}

.br-page {
  padding: 12px 10px;
  flex: 1;
}

.br-brand {
  margin: 0 0 4px;
  font-family: var(--display);
  font-weight: 800;
  font-size: 0.85rem;
  color: var(--kasir-brand);
}

.br-h {
  margin: 0 0 10px;
  font-weight: 800;
  font-size: 0.95rem;
}

.br-field {
  height: 18px;
  border-radius: 8px;
  border: 1px solid var(--kasir-line);
  background: var(--kasir-card);
  margin-bottom: 6px;
}

.br-cta {
  margin-top: 4px;
  background: var(--kasir-brand);
  color: #fff;
  border-radius: 8px;
  text-align: center;
  padding: 6px;
  font-size: 0.7rem;
  font-weight: 700;
}

.br-sheet {
  position: absolute;
  right: 6px;
  top: 28px;
  width: 78%;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
  padding: 6px 0;
  z-index: 2;
  animation: sheet-in 0.5s ease-out both;
}

.sheet-row {
  margin: 0;
  padding: 7px 10px;
  font-size: 0.58rem;
  font-weight: 650;
  color: #333;
}
.sheet-row.muted { color: #999; }
.sheet-row.active {
  background: #e7f4ec;
  color: var(--kasir-brand);
  font-weight: 800;
}

.home-ui {
  background: linear-gradient(165deg, #1a5c3a 0%, #0d3d28 55%, #0a2e1f 100%);
  color: #fff;
  padding: 14px 8px 10px;
}

.home-clock {
  margin: 0 0 14px;
  text-align: center;
  font-family: var(--display);
  font-weight: 700;
  font-size: 1rem;
  opacity: 0.9;
}

.home-apps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 6px;
}

.phone-tiny .home-apps {
  grid-template-columns: repeat(2, 1fr);
}

.home-app {
  display: grid;
  justify-items: center;
  gap: 4px;
  font-size: 0.52rem;
  font-weight: 600;
  opacity: 0.72;
}

.home-app.highlight {
  opacity: 1;
  animation: pin-pop 2.2s ease-in-out infinite;
}

.home-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-size: 0.7rem;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.18);
}

.home-icon.wa { background: #25d366; color: #fff; }
.home-icon.struk {
  background: #fff;
  color: var(--kasir-brand);
  font-family: var(--display);
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.4);
}
.home-icon.cam { background: #5a6b7a; }
.home-icon.gal { background: #c45c26; }

.os-guides {
  display: grid;
  gap: 14px;
  margin-bottom: 16px;
}

.os-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px 16px 14px;
}

.os-card.visual { padding-top: 14px; }

.os-card h3 {
  margin: 0 0 12px;
  font-family: var(--display);
  font-size: 1.05rem;
  color: var(--brand-deep);
}

.os-demo {
  margin: 0 0 14px;
  border-radius: 14px;
  background: #eef2f0;
  border: 1px solid var(--line);
  overflow: hidden;
  min-height: 150px;
}

.demo-chrome {
  position: relative;
  padding: 10px;
  min-height: 150px;
}

.demo-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  border-radius: 10px;
  padding: 8px 10px;
  margin-bottom: 8px;
  font-size: 0.7rem;
  color: #888;
}

.demo-kebab {
  font-size: 1.15rem;
  font-weight: 800;
  color: #222;
  line-height: 1;
  padding: 2px 6px;
  border-radius: 6px;
}

.demo-menu {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  display: grid;
  overflow: hidden;
}

.demo-menu span {
  padding: 11px 14px;
  font-size: 0.88rem;
  font-weight: 650;
  color: #666;
  border-bottom: 1px solid #f0f0f0;
}
.demo-menu span:last-child { border-bottom: 0; }
.demo-menu .pick {
  background: #e7f4ec;
  color: var(--kasir-brand);
  font-weight: 800;
}

.demo-safari {
  position: relative;
  min-height: 150px;
  display: flex;
  flex-direction: column;
}

.demo-saf-page {
  flex: 1;
  padding: 16px;
  background: var(--kasir-bg);
}

.demo-saf-bar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.92);
  border-top: 1px solid var(--kasir-line);
}

.share-btn {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: #007aff;
  background: #e8f1ff;
}

.demo-share-sheet {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 48px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.16);
  display: grid;
  overflow: hidden;
  animation: sheet-in 0.55s 0.1s ease-out both;
}

.demo-share-sheet span {
  padding: 11px 14px;
  font-size: 0.88rem;
  font-weight: 650;
  color: #666;
  border-bottom: 1px solid #f0f0f0;
}
.demo-share-sheet span:last-child { border-bottom: 0; }
.demo-share-sheet .pick {
  background: #e7f4ec;
  color: var(--kasir-brand);
  font-weight: 800;
}
.demo-share-sheet .muted { color: #aaa; }

.pulse-tap {
  animation: tap-glow 1.8s ease-in-out infinite;
}

.os-card ol {
  margin: 0;
  padding-left: 1.15rem;
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.4;
}

.os-card li strong { color: var(--ink); }

.howto-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

@keyframes pin-pop {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}
@keyframes sheet-in {
  from { opacity: 0; transform: translateY(8px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes tap-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(10, 122, 86, 0.35); }
  50% { box-shadow: 0 0 0 8px rgba(10, 122, 86, 0); }
}

.price-block { padding: 8px 0 0; }
.price-num {
  margin: 0 0 8px;
  font-family: var(--display);
  font-size: clamp(2rem, 8vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--brand-deep);
}
.price-num span {
  font-size: 1rem;
  font-weight: 650;
  color: var(--muted);
}
.price-note {
  margin: 0 0 20px;
  color: var(--muted);
  line-height: 1.45;
}

.daftar-section { padding-bottom: 72px; }

.reg-form { display: grid; gap: 4px; }
.field {
  display: grid;
  gap: 6px;
  margin-bottom: 12px;
}
.field span {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--muted);
}
.field input,
.field select {
  width: 100%;
  min-height: 52px;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px 16px;
  font: inherit;
  font-size: 1.05rem;
  background: var(--paper);
  color: var(--ink);
}
.field input:focus,
.field select:focus {
  outline: 2px solid rgba(10, 122, 86, 0.35);
  border-color: var(--brand);
}

.form-msg {
  margin: 12px 0 0;
  font-weight: 700;
  line-height: 1.4;
}
.form-msg.ok { color: var(--brand); }
.form-msg.err { color: var(--warn); }

.footer {
  padding: 24px var(--pad-r) max(28px, env(safe-area-inset-bottom)) var(--pad);
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: 0.92rem;
}
.footer-brand {
  margin: 0;
  font-family: var(--display);
  font-weight: 800;
  color: var(--brand-deep);
}
.footer-links { margin: 0; }
.footer-links a {
  color: var(--ink);
  font-weight: 700;
  text-decoration: none;
}

@keyframes rise {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes scene-in {
  from { opacity: 0; transform: scale(0.97); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes pop-left {
  from { opacity: 0; transform: translateX(-18px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes slip-out {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes tap-pulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(26, 92, 58, 0.35); }
  50% { transform: scale(1.02); box-shadow: 0 0 0 8px rgba(26, 92, 58, 0); }
}

@media (min-width: 720px) {
  .hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    min-height: calc(100dvh - 60px);
    gap: 24px;
    padding: 0 clamp(24px, 5vw, 64px);
  }
  .hero-stage {
    order: 2;
    min-height: auto;
    padding: 40px 0;
  }
  .hero-wa-float {
    left: 8%;
    top: 18%;
    max-width: 160px;
  }
  .phone-hero { width: 280px; }
  .hero-content {
    order: 1;
    padding: 48px 0;
    max-width: none;
  }
  .brand { font-size: clamp(3.2rem, 6vw, 4.4rem); }
  .hero h1 {
    font-size: clamp(1.7rem, 2.8vw, 2.15rem);
    max-width: 16ch;
  }
  .lead { font-size: 1.12rem; max-width: 34ch; }
  .cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
  }
  .cta-row .btn { width: auto; min-width: 180px; }

  .compare {
    grid-template-columns: 1fr auto 1fr;
    align-items: stretch;
    gap: 16px;
  }
  .compare-vs {
    display: flex;
    align-items: center;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
  }

  .section.alt > * { max-width: 720px; }
  .section { padding: 72px 24px; max-width: 680px; }
  .section.alt > *:not(.flow):not(.os-guides):not(.pin-story) { max-width: 680px; }
  .section.alt > .flow,
  .section.alt > .howto-note {
    max-width: 680px;
  }
  .section.alt > .pin-story {
    max-width: 720px;
  }

  #cara > h2,
  #cara > .sub,
  #cara > .os-guides,
  #cara > .howto-note {
    max-width: 680px;
  }

  .pin-story {
    gap: 12px 10px;
    flex-wrap: nowrap;
  }
  .phone-tiny { width: 148px; }
  .pin-arrow { margin-top: 80px; }

  .example-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }

  .why-list {
    grid-template-columns: 1fr 1fr;
    gap: 18px 24px;
  }

  .os-guides {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    max-width: 720px !important;
  }

  .quotes {
    max-width: 640px;
    gap: 28px;
  }

  .flow { gap: 56px; max-width: 720px; }
  .flow-step {
    grid-template-columns: 1fr 1.1fr;
    align-items: center;
    gap: 28px;
    justify-items: stretch;
  }
  .flow-step:nth-child(even) .flow-copy { order: 2; }
  .flow-step:nth-child(even) .phone,
  .flow-step:nth-child(even) .print-scene { order: 1; justify-self: start; }
  .flow-step .phone,
  .flow-step .print-scene { justify-self: end; }
  .phone-sm { width: 240px; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-content,
  .hero-stage,
  .hero-wa-float,
  .thermal,
  .k-btn-print.pulse,
  .home-app.highlight,
  .br-sheet,
  .demo-share-sheet,
  .pulse-tap {
    animation: none;
  }
}
