/* Meetings2Content — local poster preview. Helvetica. Black / white. Color pops later. */
:root {
  --ink: #111;
  --paper: #fff;
  --sheet: #fff;
  --rec: #f80f00;
  --font: Helvetica, "Helvetica Neue", Arial, sans-serif;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font);
  -webkit-font-smoothing: antialiased;
  line-height: 1.4;
}
button, input, a { font-family: inherit; color: inherit; }
a { text-decoration: none; }
button { cursor: pointer; background: none; border: none; }
button:focus-visible, a:focus-visible, input:focus-visible {
  outline: 1px solid var(--ink);
  outline-offset: 3px;
}
.wrap { max-width: 1320px; margin: 0 auto; padding: 0 28px; }

/* m2c + rec light. The light is the only color; it breathes. */
.logo {
  display: inline-flex;
  align-items: flex-start;
  gap: 0.16em;
  font-size: 37.4px;
  font-weight: 700;
  letter-spacing: -0.07em;
  line-height: 0.82;
  text-transform: lowercase;
  color: var(--ink);
}
.rec-light {
  width: 0.34em;
  height: 0.34em;
  margin-top: 0.05em;
  border-radius: 50%;
  background: var(--rec);
  flex-shrink: 0;
  animation: rec-blink 2.8s ease-in-out infinite;
}
@keyframes rec-blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.12; }
}
@media (prefers-reduced-motion: reduce) {
  .rec-light { animation: none; }
}
.logo.lg { font-size: 72px; }

.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 28px 14px;
  max-width: 1320px; margin: 0 auto;
  border: none;
  box-shadow: none;
}
.nav-links {
  display: flex; align-items: center; gap: 28px;
  font-size: 13px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
}
@media (max-width: 720px) {
  .nav { flex-wrap: wrap; gap: 12px; }
  .nav-links { width: 100%; justify-content: space-between; gap: 12px; }
}
.nav-links > a:hover { border-bottom: 1px solid var(--ink); }
.nav-cta {
  border: 1px solid var(--rec);
  background: var(--rec); color: #fff;
  padding: 8px 14px;
  font-size: 13px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
}
.nav-cta:hover { background: var(--ink); border-color: var(--ink); color: #fff; }

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.25fr);
  align-items: center;
  column-gap: 32px;
  padding: 48px 0 80px;
  min-height: calc(100svh - 88px);
  box-sizing: border-box;
}
.hero-copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
}
.kicker {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.hero h1 {
  font-size: clamp(36px, 4.6vw, 64px);
  font-weight: 700;
  letter-spacing: -0.06em;
  line-height: 1.04;
  display: flex;
  flex-direction: column;
}
.hero h1 span { white-space: nowrap; }
.hero-lead {
  margin-top: 0;
  font-size: 22px;
  max-width: 52ch;
  text-wrap: pretty;
  font-weight: 400;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 4px;
  align-items: center;
  position: relative;
  z-index: 9;
}
.dl-menu { position: relative; display: inline-block; z-index: 8; }
.dl-panel {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 100%;
  z-index: 30;
  background: #fff;
  border: 1px solid var(--ink);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}
.dl-opt {
  display: block;
  padding: 12px 16px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--ink);
}
.dl-opt + .dl-opt { border-top: 1px solid var(--ink); }
.dl-opt:hover,
.dl-opt:focus-visible { background: var(--rec); color: #fff; }
.btn-ink {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--rec); color: #fff;
  border: 1px solid var(--rec);
  padding: 14px 22px;
  min-height: 51px;
  line-height: 1;
  font-size: 15px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase;
}
.btn-ink:hover { background: var(--ink); border-color: var(--ink); color: #fff; }
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid var(--ink);
  padding: 14px 22px;
  min-height: 51px;
  line-height: 1;
  font-size: 15px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase;
}
.btn-ghost .li-mark { display: block; flex-shrink: 0; }
.btn-ghost:hover { background: var(--rec); border-color: var(--rec); color: #fff; }
.note { font-size: 13px; opacity: 0.55; margin-top: 14px; }

.hero-demo { min-width: 0; padding: 0; position: relative; }
.demo-stage {
  position: relative;
  width: 100%;
  max-width: 680px;
  margin-left: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.demo-window { position: relative; width: 100%; }
.hero-demo .live-badge {
  position: static;
  transform: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0;
  border: none;
  background: none;
  padding: 0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
  pointer-events: none;
}
.live-badge .rec-light {
  width: 8px;
  height: 8px;
  margin-top: 0;
}
.live-frame {
  width: 100%;
  height: auto;
  aspect-ratio: 800 / 900;
  border: none;
  border-radius: 16px;
  overflow: hidden;
  background: transparent;
  display: block;
  box-shadow:
    0 8px 24px rgba(0, 0, 0, 0.06),
    0 24px 56px rgba(0, 0, 0, 0.10);
}
.demo-caption {
  margin: 10px 0 0;
  padding: 0;
  border: none;
  background: none;
  width: 100%;
  text-align: center;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.35;
  min-height: 1.5em;
  text-wrap: pretty;
  opacity: 0.45;
  transition: opacity 160ms ease;
}
.demo-caption.is-on { opacity: 1; }
.demo-pill {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  margin: 0 0 14px auto;
  max-width: 640px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.demo-pill span { font-weight: 400; letter-spacing: 0.04em; text-transform: none; opacity: 0.5; }
.demo-pill .rec-light {
  width: 8px;
  height: 8px;
  margin-top: 0;
}
.screenshot-slot {
  width: 100%;
  max-width: 640px;
  margin-left: auto;
  aspect-ratio: 800 / 900;
  border: 1px dashed var(--ink);
  background: var(--sheet);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  padding: 28px;
}
.screenshot-label {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.screenshot-meta {
  font-size: 14px;
  max-width: 28ch;
  opacity: 0.55;
}
.verify {
  font-size: 0.42em;
  font-weight: 700;
  letter-spacing: 0.08em;
  vertical-align: super;
  opacity: 0.65;
}
@media (max-width: 980px) {
  .hero { grid-template-columns: 1fr; gap: 32px; }
  .demo-stage, .demo-caption { margin-left: auto; margin-right: auto; }
}
.rule { height: 1px; background: var(--ink); margin: 0; }
.section { padding: 72px 0; }
.section h2 {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700; letter-spacing: -0.05em; line-height: 0.92;
  text-wrap: balance;
  margin-bottom: 28px;
}

.band.paper {
  background: var(--paper);
  color: var(--ink);
}
.band.ink {
  background: var(--ink);
  color: var(--sheet);
}
#how {
  background: #000;
  color: #fff;
}
#how .kicker,
#how h2,
#how h3,
#how .n,
#how .ico {
  color: #fff;
}
#how .section { padding: 88px 0 96px; }
#how h2 .extract-mark {
  white-space: nowrap;
  display: inline-block;
  cursor: default;
  transform-origin: center;
  transition: transform 180ms cubic-bezier(0.2, 0, 0, 1);
}
#how h2 .extract-mark .br {
  color: var(--rec);
  display: inline-block;
}
#how h2 .extract-mark:hover {
  transform: scale(1.08);
}
#how h2 .extract-mark:hover .br {
  animation: extract-glitch 280ms steps(2) 2;
}
@keyframes extract-glitch {
  0% { transform: translate(0, 0); }
  25% { transform: translate(-2px, 1px); }
  50% { transform: translate(2px, -1px); }
  75% { transform: translate(-1px, 0); }
  100% { transform: translate(0, 0); }
}
@media (prefers-reduced-motion: reduce) {
  #how h2 .extract-mark { transition: none; }
  #how h2 .extract-mark:hover { transform: none; }
  #how h2 .extract-mark:hover .br { animation: none; }
}
.band.ink a:focus-visible,
.band.ink summary:focus-visible {
  outline-color: var(--sheet);
}
.band.ink .btn-ink {
  background: var(--rec);
  color: #fff;
  border-color: var(--rec);
}
.band.ink .btn-ink:hover {
  background: #fff;
  color: var(--ink);
  border-color: #fff;
}
.band.ink .btn-ghost {
  border-color: var(--sheet);
  color: var(--sheet);
}
.band.ink .btn-ghost:hover {
  background: var(--rec);
  border-color: var(--rec);
  color: #fff;
}
.band.ink .dl-panel { background: #fff; }
.band.ink .dl-opt { color: var(--ink); }
.band.ink .dl-opt:hover,
.band.ink .dl-opt:focus-visible { background: var(--rec); color: #fff; }
.band.ink .price-list li {
  border-bottom-color: rgba(255, 255, 255, 0.28);
}
.band.ink .logo { color: inherit; }
.band.ink .foot { border-top: none; }
.band.ink .foot a:hover { border-bottom: 1px solid currentColor; }
.works {
  list-style: none;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: 0;
  margin: 48px 0 0;
  padding: 0;
}
.works li {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  padding: 8px 28px 0;
  border-right: 1px solid rgba(255, 255, 255, 0.28);
}
.works li:first-child { padding-left: 28px; }
.works li:last-child { border-right: none; padding-right: 28px; }
.works .ico {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin: 0 0 24px;
  overflow: hidden;
}
.works .ico svg {
  display: block;
  width: 56px;
  height: 56px;
}
.works .ico .cam,
.works .ico .lens,
.works .ico .rec,
.works .ico .ghost,
.works .ico .back,
.works .ico .front {
  transition: transform 220ms cubic-bezier(0.2, 0, 0, 1), opacity 220ms cubic-bezier(0.2, 0, 0, 1);
  transform-box: fill-box;
  transform-origin: center;
}
.works .ico-ghost {
  width: 72px;
  overflow: visible;
}
.works .ico-ghost svg {
  width: 72px;
  overflow: visible;
}
.works .ico-ghost .scribble {
  opacity: 0.35;
}
.works .ico-ghost .pencil {
  transform-box: view-box;
  transform-origin: 40px 37px;
  animation: ghost-pencil 0.95s ease-in-out infinite;
}
@keyframes ghost-pencil {
  0% { transform: translate(0, 0) rotate(-20deg); }
  40% { transform: translate(14px, 4px) rotate(12deg); }
  70% { transform: translate(6px, 9px) rotate(-16deg); }
  100% { transform: translate(0, 0) rotate(-20deg); }
}
.works .ico-meet .rec { opacity: 0.35; }
.works li:hover .ico-meet .cam { transform: translateX(-2px); }
.works li:hover .ico-meet .lens { transform: translateX(3px); }
.works li:hover .ico-meet .rec { opacity: 1; }
.works li:hover .ico-ghost .ghost { transform: translateY(-2px); }
.works li:hover .ico-copy .front { transform: translate(3px, 3px); }
.works li:hover .ico-copy .back { transform: translate(-2px, -2px); opacity: 0.55; }
.works .n {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  margin-bottom: 12px;
  opacity: 0.5;
}
.works h3 {
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.12;
  text-wrap: pretty;
}

.excuses {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  margin-top: 48px;
}
.excuse {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 8px 36px 0;
  border-right: 1px solid var(--ink);
}
.excuse:first-child { padding-left: 0; }
.excuse:last-child { border-right: none; padding-right: 0; }
.xout {
  text-decoration: none;
  position: relative;
  display: inline-block;
}
.xout::before,
.xout::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 0.08em;
  margin-top: -0.04em;
  background: var(--rec);
  border-radius: 1px;
  pointer-events: none;
}
.xout::after {
  transform: rotate(-8deg);
}
.xout::before {
  transform: rotate(8deg) scaleX(0);
  transform-origin: 50% 50%;
  transition: transform 280ms cubic-bezier(0.2, 0, 0, 1);
}
.xout:hover::before,
#excuses h2:hover .xout::before {
  transform: rotate(8deg) scaleX(1);
}
@media (prefers-reduced-motion: reduce) {
  .xout::before { transition: none; transform: rotate(8deg) scaleX(1); }
}
.excuse .from {
  font-size: clamp(19px, 1.85vw, 23px);
  font-weight: 400;
  font-style: italic;
  letter-spacing: -0.02em;
  line-height: 1.3;
  text-wrap: pretty;
}
.excuse .from em {
  font-style: italic;
  font-weight: 400;
}
.excuse .to {
  font-size: clamp(21px, 2.2vw, 26px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.28;
  text-wrap: pretty;
  max-width: 28ch;
}
.excuse .down {
  display: block;
  width: 24px;
  height: 24px;
  opacity: 0.4;
  overflow: hidden;
  transition: transform 220ms cubic-bezier(0.2, 0, 0, 1), opacity 220ms cubic-bezier(0.2, 0, 0, 1);
}
.excuse .down svg { display: block; width: 24px; height: 24px; }
.excuse:hover .down {
  transform: translateY(6px);
  opacity: 1;
}

@media (max-width: 520px) {
  .works, .excuses { grid-template-columns: 1fr; }
  .works li, .excuse {
    border-right: none;
    border-bottom: 1px solid currentColor;
    padding: 28px 0;
  }
  .works li:last-child, .excuse:last-child { border-bottom: none; }
}
@media (prefers-reduced-motion: reduce) {
  .works .ico .cam,
  .works .ico .lens,
  .works .ico .rec,
  .works .ico .ghost,
  .works .ico .pencil,
  .works .ico .back,
  .works .ico .front,
  .excuse .down { transition: none; animation: none; }
  .works .ico-ghost .pencil { transform: none; }
}

.price-stage {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.25fr);
  column-gap: 32px;
  align-items: center;
}
.price-copy { min-width: 0; }
.price-num {
  display: flex;
  align-items: baseline;
  gap: 0.12em;
  font-size: clamp(72px, 12vw, 140px);
  font-weight: 700; letter-spacing: -0.08em; line-height: 0.92;
  padding: 4px 0 20px;
}
.price-num .amt { display: block; }
.price-num small {
  font-size: 0.18em;
  letter-spacing: 0.08em;
  font-weight: 700;
  text-transform: uppercase;
  opacity: 0.55;
}
.price-list {
  list-style: none;
  font-size: 20px;
  width: 100%;
  max-width: 680px;
  margin-left: auto;
}
.price-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--ink);
  font-weight: 700;
  letter-spacing: -0.02em;
}
.price-list .pi {
  display: flex;
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  opacity: 0.85;
}
.price-list .pi svg { width: 22px; height: 22px; display: block; }
@media (max-width: 980px) {
  .price-stage { grid-template-columns: 1fr; gap: 32px; }
  .price-list { margin-left: 0; max-width: none; }
}

.faq details { border-bottom: 1px solid var(--ink); padding: 16px 0; }
.faq summary { font-size: 20px; font-weight: 700; letter-spacing: -0.02em; cursor: pointer; list-style: none; }
.faq summary::-webkit-details-marker { display: none; }
.faq p { margin-top: 10px; font-size: 16px; max-width: 62ch; text-wrap: pretty; }
.faq a { border-bottom: 1px solid var(--ink); }

.foot {
  border-top: 1px solid var(--ink);
  padding: 28px;
  display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap;
  font-size: 13px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
}
.foot-links { display: flex; gap: 28px; }

.page-main { max-width: 720px; margin: 0 auto; padding: 56px 28px 96px; }
.page-main h1 { font-size: clamp(42px, 7vw, 72px); font-weight: 700; letter-spacing: -0.06em; line-height: 0.9; margin: 16px 0 24px; }
.page-main p { font-size: 18px; margin-bottom: 16px; text-wrap: pretty; }
.page-main ul { margin: 12px 0 24px 18px; font-size: 18px; }
.page-main li { margin: 8px 0; }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.page-main .dl-menu { margin-top: 28px; }

.pains { display: grid; grid-template-columns: 1fr 1fr 1fr; border-top: 1px solid var(--ink); }
.pain { padding: 28px 32px; border-right: 1px solid var(--ink); }
.pain:first-child { padding-left: 0; }
.pain:last-child { border-right: none; padding-right: 0; }
.pain h3 { font-size: 26px; font-weight: 700; letter-spacing: -0.04em; line-height: 1.1; margin-bottom: 8px; }
.pain p { font-size: 16px; max-width: 28ch; text-wrap: pretty; }
@media (max-width: 800px) {
  .pains { grid-template-columns: 1fr; }
  .pain { border-right: none; border-bottom: 1px solid var(--ink); padding-left: 0; padding-right: 0; }
}

.slab {
  color: var(--ink);
  background: var(--paper);
  padding: 48px 28px;
  border-top: 1px solid var(--ink);
}
.slab h2 { font-size: 13px; letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 16px; font-weight: 700; }
.slab p, .slab li { font-size: 22px; font-weight: 700; letter-spacing: -0.03em; line-height: 1.25; max-width: 28ch; text-wrap: pretty; }
.slab ul { list-style: none; }
.slab li + li { margin-top: 10px; }
.slab.ink { background: var(--ink); color: var(--sheet); }
.priv-hero { max-width: 1120px; margin: 0 auto; padding: 56px 28px 48px; }
.priv-hero h1 { font-size: clamp(48px, 8vw, 92px); font-weight: 700; letter-spacing: -0.07em; line-height: 0.88; max-width: 12ch; }
.priv-hero .lead { font-size: 22px; margin-top: 24px; max-width: 36ch; }

.hidden { display: none !important; }
.activate-main { max-width: 560px; }
.act-box {
  border: 1px solid var(--ink);
  padding: 20px;
  margin: 28px 0 24px;
}
.act-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.act-key {
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.04em;
  word-break: break-all;
  user-select: all;
  margin: 0 0 14px;
}
.act-input {
  width: 100%;
  margin-top: 8px;
  padding: 14px 16px;
  border: 1px solid var(--ink);
  background: var(--paper);
  color: var(--ink);
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 15px;
  letter-spacing: 0.04em;
}
.act-input:focus {
  outline: 1px solid var(--ink);
  outline-offset: 3px;
}
.act-wide {
  width: 100%;
  margin-top: 8px;
}
.btn-ink:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
.act-steps {
  border: 1px solid var(--ink);
  padding: 16px 20px;
  margin-top: 28px;
}
.act-steps ol {
  margin: 0;
  padding-left: 18px;
  font-size: 16px;
  line-height: 1.7;
}
.act-steps a { text-decoration: underline; }
