:root {
  --ink:    #1a1e24;
  --muted:  #555e6a;
  --accent: #295f4e;
  --rule:   #d8d4cc;
  --bg:     #ffffff;
  --chalk:  #f7f4ee;
  --chip:   #ebe4d6;
  --deep:   #0d1a14;
  --warn:   #8c3a32;
  --warn-bg:#fff0ee;
}
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: "DM Sans", Georgia, serif; color: var(--ink); background: var(--bg); line-height: 1.65; }
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

.shell { max-width: 980px; margin: 0 auto; padding: 0 40px; }
.page-body { padding: 56px 0 88px; }

.kicker {
  font-size: .72rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 10px;
}
h1 {
  font-size: 2.55rem; font-weight: 700; color: var(--ink);
  letter-spacing: -.028em; margin-bottom: 16px; line-height: 1.1;
}
.lead {
  font-size: 1.08rem; color: var(--muted); max-width: 66ch; line-height: 1.62;
}

.page-header {
  padding-bottom: 40px; margin-bottom: 52px;
  border-bottom: 2px solid var(--ink);
}

/* Hero flag */
.hero-flag {
  display: inline-block;
  background: var(--warn);
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 4px;
  margin-bottom: 14px;
}

/* Problem section */
.problem-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-bottom: 64px;
  align-items: start;
}
.problem-block h2 {
  font-size: 1.5rem; font-weight: 700; color: var(--ink);
  letter-spacing: -.02em; line-height: 1.2; margin-bottom: 14px;
}
.problem-block p {
  font-size: .96rem; color: var(--muted); line-height: 1.72; margin-bottom: 13px;
}
.problem-block p:last-child { margin-bottom: 0; }

.stat-stack {
  display: flex; flex-direction: column; gap: 14px;
}
.stat-card {
  background: var(--warn-bg);
  border: 1px solid #e8c4be;
  border-radius: 10px;
  padding: 20px 22px;
}
.stat-card .stat-num {
  font-size: 2.2rem; font-weight: 700; color: var(--warn);
  letter-spacing: -.03em; line-height: 1; margin-bottom: 4px;
}
.stat-card .stat-label {
  font-size: .88rem; color: var(--muted); line-height: 1.5;
}

/* Section headings */
.section-head {
  margin-bottom: 28px; padding-bottom: 14px; border-bottom: 1px solid var(--rule);
}
.section-head .kicker { margin-bottom: 6px; }
.section-head h2 {
  font-size: 1.45rem; font-weight: 700; color: var(--ink);
  letter-spacing: -.02em; line-height: 1.2;
}
.section-head p {
  margin-top: 8px; font-size: .94rem; color: var(--muted); max-width: 66ch;
}

/* Compare table */
.compare-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 64px;
}
.compare-col {
  border-radius: 10px;
  border: 1px solid var(--rule);
  overflow: hidden;
}
.compare-col-head {
  padding: 16px 22px;
  font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
}
.compare-col.old .compare-col-head { background: #fff0ee; color: var(--warn); border-bottom: 1px solid #e8c4be; }
.compare-col.new .compare-col-head { background: #eef5f1; color: var(--accent); border-bottom: 1px solid #bdd8cb; }
.compare-col ul { list-style: none; padding: 0; margin: 0; }
.compare-col ul li {
  display: flex; gap: 10px; align-items: flex-start;
  padding: 12px 22px; border-bottom: 1px solid var(--rule);
  font-size: .9rem; color: var(--muted); line-height: 1.5;
}
.compare-col ul li:last-child { border-bottom: none; }
.compare-col.old ul li .icon { color: var(--warn); font-style: normal; flex-shrink: 0; margin-top: 1px; }
.compare-col.new ul li .icon { color: var(--accent); font-style: normal; flex-shrink: 0; margin-top: 1px; }

/* QR example block */
.qr-example {
  background: var(--chalk);
  border: 1px solid var(--rule);
  border-radius: 12px;
  padding: 36px;
  margin-bottom: 64px;
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 36px;
  align-items: center;
}
.qr-example img {
  width: 140px; height: 140px;
  border-radius: 8px;
  border: 1px solid var(--rule);
  background: #fff;
  display: block;
}
.qr-example-text h3 {
  font-size: 1.12rem; font-weight: 700; color: var(--ink);
  letter-spacing: -.01em; margin-bottom: 10px; line-height: 1.3;
}
.qr-example-text p {
  font-size: .92rem; color: var(--muted); line-height: 1.68; margin-bottom: 10px;
}
.qr-example-text p:last-child { margin-bottom: 0; }
.qr-badge {
  display: inline-block;
  font-family: "DM Mono", monospace;
  font-size: .68rem;
  font-weight: 500;
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: 4px;
  padding: 3px 9px;
  color: var(--accent);
  margin: 2px 3px 2px 0;
}

/* Inside the code */
.inside-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 64px;
}
.inside-item {
  border: 1px solid var(--rule);
  border-radius: 8px;
  padding: 18px 20px;
}
.inside-item-label {
  font-size: .68rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 6px;
}
.inside-item h4 {
  font-size: .94rem; font-weight: 700; color: var(--ink); margin-bottom: 5px;
}
.inside-item p { font-size: .84rem; color: var(--muted); line-height: 1.6; margin: 0; }
.inside-item.absent { border-color: #e8c4be; background: #fff8f7; }
.inside-item.absent .inside-item-label { color: var(--warn); }
.inside-item.absent h4 { color: var(--warn); }

/* How it works steps */
.how-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 64px;
}
.how-step {
  border: 1px solid var(--rule);
  border-radius: 8px;
  padding: 22px 20px;
  position: relative;
}
.how-step-num {
  font-family: "DM Mono", monospace;
  font-size: .68rem; font-weight: 500;
  color: var(--accent); background: #d4e9e1;
  border-radius: 4px; padding: 3px 8px;
  display: inline-block; margin-bottom: 12px;
}
.how-step h4 { font-size: .94rem; font-weight: 700; color: var(--ink); margin-bottom: 6px; }
.how-step p { font-size: .84rem; color: var(--muted); line-height: 1.6; margin: 0; }

/* Venues */
.venues-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 64px;
}
.venue-card {
  border: 1px solid var(--rule);
  border-radius: 8px;
  padding: 22px 22px;
}
.venue-icon {
  display: block;
  margin-bottom: 12px;
  color: var(--accent);
  line-height: 1;
}
.venue-card h4 { font-size: .97rem; font-weight: 700; color: var(--ink); margin-bottom: 6px; }
.venue-card p { font-size: .85rem; color: var(--muted); line-height: 1.62; margin: 0; }

/* Fans section */
.fans-block {
  background: var(--chalk);
  border: 1px solid var(--rule);
  border-radius: 10px;
  padding: 36px;
  margin-bottom: 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.fans-block h2 {
  font-size: 1.35rem; font-weight: 700; color: var(--ink);
  letter-spacing: -.02em; margin-bottom: 16px; line-height: 1.2;
  grid-column: 1 / -1;
}
.fan-point { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 16px; }
.fan-point:last-child { margin-bottom: 0; }
.fan-tick {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--accent); color: #fff;
  font-size: .72rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 1px;
}
.fan-point-text h5 { font-size: .94rem; font-weight: 700; color: var(--ink); margin-bottom: 3px; }
.fan-point-text p { font-size: .86rem; color: var(--muted); line-height: 1.58; margin: 0; }

/* CTA */
.cta-block {
  background: var(--deep); color: #e8ede9; border-radius: 12px;
  padding: 52px 48px; display: flex;
  align-items: flex-start; justify-content: space-between; gap: 40px;
}
.cta-block h2 {
  font-size: 1.7rem; font-weight: 700; color: #e8ede9;
  letter-spacing: -.02em; line-height: 1.2; margin-bottom: 12px;
}
.cta-block p { font-size: .97rem; color: #8eaaa0; line-height: 1.65; max-width: 52ch; }
.cta-panel { flex-shrink: 0; text-align: center; }
.cta-email {
  display: inline-block; background: var(--accent); color: #e8ede9;
  border-radius: 7px; padding: 14px 26px; font-size: 1rem; font-weight: 700;
  text-decoration: none; white-space: nowrap; transition: background .15s;
}
.cta-email:hover { background: #1e4a3c; text-decoration: none; color: #e8ede9; }
.cta-note { margin-top: 10px; font-size: .78rem; color: #5e7a72; font-family: "DM Mono", monospace; }

@media (max-width: 860px) {
  .shell { padding: 0 20px; }
  .page-body { padding: 40px 0 64px; }
  .problem-block { grid-template-columns: 1fr; gap: 32px; }
  .compare-block { grid-template-columns: 1fr; }
  .qr-example { grid-template-columns: 1fr; text-align: center; }
  .qr-example img { margin: 0 auto; }
  .inside-grid { grid-template-columns: 1fr 1fr; }
  .how-steps { grid-template-columns: 1fr 1fr; }
  .venues-grid { grid-template-columns: 1fr 1fr; }
  .fans-block { grid-template-columns: 1fr; gap: 0; }
  .fans-block h2 { grid-column: 1; }
  .cta-block { flex-direction: column; gap: 28px; padding: 36px 28px; }
  .cta-panel { text-align: left; }
}
@media (max-width: 560px) {
  h1 { font-size: 1.9rem; }
  .inside-grid { grid-template-columns: 1fr; }
  .how-steps { grid-template-columns: 1fr; }
  .venues-grid { grid-template-columns: 1fr; }
  .stat-card .stat-num { font-size: 1.8rem; }
}