@font-face { font-family: "Outfit"; font-weight: 400; font-display: swap; src: url("/fonts/outfit-400.woff2") format("woff2"); }
@font-face { font-family: "Outfit"; font-weight: 500; font-display: swap; src: url("/fonts/outfit-500.woff2") format("woff2"); }
@font-face { font-family: "Outfit"; font-weight: 600; font-display: swap; src: url("/fonts/outfit-600.woff2") format("woff2"); }

:root {
  --bg: #F7F4EE;
  --card: #FFFFFF;
  --ink: #151515;
  --muted: #6B645C;
  --line: #E6E0D5;
  --gold: #C9A45C;
  --gold-ink: #9A7634;
  --night: #121212;
  --radius: 18px;
  --wrap: 1120px;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0; background: var(--bg); color: var(--ink);
  font-family: "Outfit", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 17px; line-height: 1.6; -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; }
h1, h2, h3 { font-weight: 500; line-height: 1.1; letter-spacing: -0.02em; margin: 0; }
p { margin: 0; }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }
.eyebrow { font-size: 13px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-ink); }
.muted { color: var(--muted); }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  height: 50px; padding: 0 24px; border-radius: 999px; font-size: 16px; font-weight: 500;
  text-decoration: none; border: 1px solid transparent; transition: transform .15s ease, background .15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: #000; }
.btn-ghost { border-color: var(--line); background: transparent; }
.btn-ghost:hover { background: #fff; }
.btn-gold { background: var(--gold); color: var(--night); }
.btn-small { height: 40px; padding: 0 18px; font-size: 15px; }

/* Nav */
.nav { position: sticky; top: 0; z-index: 10; background: rgba(247, 244, 238, 0.86); backdrop-filter: saturate(1.4) blur(12px); border-bottom: 1px solid transparent; }
.nav .wrap { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.nav .logo img { height: 26px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 22px; font-size: 15px; }
.nav-links a:not(.btn) { text-decoration: none; color: var(--muted); }
.nav-links a:not(.btn):hover { color: var(--ink); }

/* Hero */
.hero { padding: 72px 0 88px; }
.hero .wrap { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 56px; align-items: center; }
.hero h1 { font-size: clamp(42px, 6.2vw, 76px); margin: 18px 0 22px; }
.hero h1 span { color: var(--gold-ink); }
.hero .lead { font-size: 19px; color: var(--muted); max-width: 30em; }
.hero .ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.hero .note { margin-top: 18px; font-size: 14px; color: var(--muted); }

/* Stand mock-up */
.stand { position: relative; width: min(340px, 100%); margin: 0 auto; }
.stand .acrylic {
  position: relative; padding: 14px; border-radius: 10px;
  background: linear-gradient(135deg, rgba(255,255,255,.75), rgba(255,255,255,.25));
  box-shadow: 0 1px 0 rgba(255,255,255,.9) inset, 0 30px 60px -20px rgba(40,30,10,.35), 0 12px 24px -12px rgba(40,30,10,.25);
  border: 1px solid rgba(255,255,255,.9);
}
.insert {
  background: var(--night); color: var(--gold); border-radius: 3px; aspect-ratio: 105 / 148;
  display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center;
  padding: 22px 18px; position: relative;
}
.insert::before { content: ""; position: absolute; inset: 10px; border: 1px solid rgba(201,164,92,.7); }
.insert .biz { font-family: Georgia, "Times New Roman", serif; font-weight: 700; font-size: 27px; letter-spacing: -0.01em; }
.insert .stars { display: flex; gap: 6px; margin: 10px 0 14px; }
.insert .stars svg { width: 16px; height: 16px; }
.insert .q { font-family: Georgia, serif; font-size: 17px; font-weight: 600; }
.insert .t { font-family: Georgia, serif; font-size: 13px; color: #EBDDB9; margin-top: 4px; line-height: 1.35; }
.insert .tap { width: 46px; margin: 16px 0 12px; }
.insert .qr { width: 62px; height: 62px; background: #fff; border-radius: 4px; padding: 5px; }
.stand .base { height: 16px; margin: 0 -18px; border-radius: 0 0 12px 12px; background: linear-gradient(#fff, #EDE8DF); box-shadow: 0 18px 30px -18px rgba(40,30,10,.45); }
.insert .tapwrap { position: relative; margin: 16px 0 12px; }
.insert .tapwrap .tap { margin: 0; }
.insert .pulse { position: absolute; left: 50%; top: 50%; width: 64px; height: 64px; margin: -32px 0 0 -32px; border-radius: 50%; border: 1.5px solid var(--gold); opacity: 0; animation: pulse 2.6s ease-out infinite; pointer-events: none; }
.insert .pulse.two { animation-delay: 1.3s; }
@keyframes pulse { 0% { transform: scale(.55); opacity: .9; } 100% { transform: scale(1.6); opacity: 0; } }
@media (prefers-reduced-motion: reduce) { .insert .pulse { animation: none; } }

/* Sections */
section { padding: 88px 0; }
.section-head { max-width: 640px; margin-bottom: 44px; }
.section-head h2 { font-size: clamp(32px, 4.2vw, 48px); margin-top: 12px; }
.section-head p { margin-top: 14px; color: var(--muted); font-size: 18px; }
.section-head .eyebrow { margin: 0; font-size: 13px; color: var(--gold-ink); }
.dark .section-head .eyebrow { color: var(--gold); }

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.step { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; }
.step .n { width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--line); display: grid; place-items: center; font-size: 15px; color: var(--gold-ink); font-weight: 600; }
.step h3 { font-size: 21px; margin: 22px 0 8px; }
.step p { color: var(--muted); font-size: 16px; }

.products { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.product { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; display: flex; flex-direction: column; }
.product .icon { width: 52px; height: 52px; border-radius: 14px; background: var(--bg); display: grid; place-items: center; }
.product .icon svg { width: 28px; height: 28px; }
.product h3 { font-size: 21px; margin: 22px 0 8px; }
.product p { color: var(--muted); font-size: 16px; flex: 1; }
.product .tag { margin-top: 18px; font-size: 13px; font-weight: 500; color: var(--gold-ink); letter-spacing: .04em; }

.dark { background: var(--night); color: #F2EEE6; }
.dark .eyebrow { color: var(--gold); }
.dark .section-head p { color: #A9A197; }
.why { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.why h3 { font-size: 19px; color: #fff; margin: 16px 0 8px; }
.why p { color: #A9A197; font-size: 15.5px; }
.why svg { width: 26px; height: 26px; }

.faq { max-width: 760px; }
.faq details { border-bottom: 1px solid var(--line); padding: 20px 0; }
.faq summary { cursor: pointer; list-style: none; font-size: 19px; font-weight: 500; display: flex; justify-content: space-between; gap: 16px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--gold-ink); font-size: 24px; line-height: 1; }
.faq details[open] summary::after { content: "–"; }
.faq details p { color: var(--muted); margin-top: 10px; max-width: 42em; }

.cta-band { text-align: center; }
.cta-band h2 { font-size: clamp(34px, 4.6vw, 56px); }
.cta-band p { color: var(--muted); font-size: 18px; margin: 16px auto 30px; max-width: 34em; }
.cta-band .ctas { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; }

footer { border-top: 1px solid var(--line); padding: 36px 0 44px; font-size: 14px; color: var(--muted); }
footer .wrap { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 18px; }
footer img { height: 20px; width: auto; }
footer nav { display: flex; flex-wrap: wrap; gap: 20px; }
footer a { text-decoration: none; }
footer a:hover { color: var(--ink); }

/* Simple centred pages (demo, 404) */
.center-page { min-height: 100vh; min-height: 100svh; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 40px 20px; }
.center-page .symbol { width: 84px; margin-bottom: 30px; }
.center-page h1 { font-size: clamp(36px, 8vw, 56px); }
.center-page p { color: var(--muted); font-size: 18px; max-width: 26em; margin: 16px auto 30px; }
.center-page .ctas { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
.center-page .foot-logo { margin-top: 56px; height: 20px; width: auto; opacity: .75; }

/* Trust row under hero buttons */
.trust { display: flex; flex-wrap: wrap; gap: 10px 22px; margin-top: 26px; font-size: 14.5px; color: var(--muted); }
.trust span { display: inline-flex; align-items: center; gap: 7px; }
.trust svg { width: 16px; height: 16px; }

/* Try it now */
.try { padding: 0 0 20px; }
.try-card {
  background: var(--night); color: #F2EEE6; border-radius: 26px; padding: 44px 48px;
  display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: center;
}
.try-card h2 { font-size: clamp(28px, 3.4vw, 40px); color: #fff; margin-top: 10px; }
.try-card p { color: #A9A197; margin-top: 12px; max-width: 32em; }
.try-card .eyebrow { color: var(--gold); }
.try-card .qrbox { background: #fff; border-radius: 18px; padding: 16px; width: 176px; }
.try-card .qrbox img { width: 100%; }
.try-card .qrbox small { display: block; text-align: center; color: var(--muted); font-size: 12px; margin-top: 8px; }
.try-card .btn { display: none; margin-top: 22px; }

/* Who it's for */
.who { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.who-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.who-card .ph { aspect-ratio: 4 / 3; background: linear-gradient(145deg, #EFE9DE, #E4DBCB); display: grid; place-items: center; }
.who-card .ph svg { width: 44px; height: 44px; opacity: .8; }
.who-card .ph img { width: 100%; height: 100%; object-fit: cover; }
.who-card .body { padding: 20px 22px 24px; }
.who-card h3 { font-size: 19px; }
.who-card p { color: var(--muted); font-size: 15px; margin-top: 6px; }

/* Pricing */
.pricing { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; align-items: stretch; }
.plan { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; display: flex; flex-direction: column; }
.plan.featured { border-color: var(--ink); box-shadow: 0 24px 50px -30px rgba(20, 15, 5, .45); position: relative; }
.plan .badge { position: absolute; top: -13px; left: 30px; background: var(--ink); color: #fff; font-size: 12.5px; font-weight: 500; letter-spacing: .04em; padding: 5px 12px; border-radius: 999px; }
.plan h3 { font-size: 21px; }
.plan .price { display: flex; align-items: baseline; gap: 10px; margin: 16px 0 4px; }
.plan .price b { font-size: 46px; font-weight: 500; letter-spacing: -0.03em; }
.plan .price s { color: var(--muted); font-size: 20px; }
.plan .per { color: var(--muted); font-size: 14.5px; }
.plan ul { list-style: none; padding: 0; margin: 22px 0 28px; flex: 1; }
.plan li { display: flex; gap: 10px; padding: 7px 0; font-size: 15.5px; border-top: 1px solid var(--line); }
.plan li:first-child { border-top: 0; }
.plan li::before { content: ""; flex: none; width: 16px; height: 16px; margin-top: 4px; background: no-repeat center / contain url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%239A7634' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 12.5l5 5L20 6.5'/%3E%3C/svg%3E"); }
.plan .btn { width: 100%; }
.pricing-note { margin-top: 20px; font-size: 14.5px; color: var(--muted); }

/* Demo form */
.demo .wrap { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 56px; align-items: start; }
.demo .next { list-style: none; padding: 0; margin: 28px 0 0; counter-reset: n; }
.demo .next li { counter-increment: n; display: flex; gap: 14px; padding: 12px 0; color: var(--muted); }
.demo .next li::before { content: counter(n); flex: none; width: 28px; height: 28px; border-radius: 50%; border: 1px solid var(--line); display: grid; place-items: center; font-size: 13px; font-weight: 600; color: var(--gold-ink); }
.demo .next b { color: var(--ink); font-weight: 500; }
.form-card { background: var(--card); border: 1px solid var(--line); border-radius: 22px; padding: 32px; }
.form-card .row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.field label { font-size: 14px; font-weight: 500; }
.field label em { font-style: normal; color: var(--muted); font-weight: 400; }
.field input, .field textarea {
  font: inherit; font-size: 16px; color: var(--ink); background: var(--bg);
  border: 1px solid var(--line); border-radius: 12px; padding: 13px 14px; width: 100%;
}
.field textarea { min-height: 96px; resize: vertical; }
.field input:focus, .field textarea:focus { outline: 2px solid var(--gold); outline-offset: 1px; border-color: transparent; background: #fff; }
.hp { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.form-card .btn { width: 100%; border: 0; cursor: pointer; font-family: inherit; }
.form-card .btn[disabled] { opacity: .6; cursor: default; }
.form-card .small { font-size: 13px; color: var(--muted); margin-top: 14px; text-align: center; }
.form-status { margin-top: 14px; font-size: 15px; text-align: center; }
.form-status.error { color: #A3322A; }
.form-done { text-align: center; padding: 30px 10px; }
.form-done h3 { font-size: 26px; margin: 18px 0 8px; }
.form-done p { color: var(--muted); }
.form-done img { width: 64px; margin: 0 auto; }

/* Legal pages */
.legal { max-width: 740px; margin: 0 auto; padding: 56px 24px 88px; }
.legal h1 { font-size: clamp(34px, 5vw, 48px); margin-bottom: 8px; }
.legal h2 { font-size: 22px; margin: 34px 0 10px; }
.legal p, .legal li { color: #3D3833; margin-bottom: 10px; }
.legal .muted { color: var(--muted); }

/* Responsive */
@media (max-width: 900px) {
  .hero { padding: 40px 0 72px; }
  .hero .wrap { grid-template-columns: 1fr; gap: 56px; }
  .steps, .products, .pricing { grid-template-columns: 1fr; }
  .why, .who { grid-template-columns: 1fr 1fr; }
  .demo .wrap { grid-template-columns: 1fr; gap: 36px; }
  .try-card { grid-template-columns: 1fr; padding: 36px 28px; }
  .try-card .qrbox { display: none; }
  .try-card .btn { display: inline-flex; }
  section { padding: 68px 0; }
}
@media (max-width: 560px) {
  .wrap { padding: 0 16px; }
  .nav-links .hide-sm { display: none; }
  .why, .who { grid-template-columns: 1fr; }
  .hero .ctas .btn { flex: 1 1 100%; }
  .form-card { padding: 22px; }
  .form-card .row { grid-template-columns: 1fr; gap: 0; }
}
