:root {
  --ink: #153326;
  --ink-soft: #3f5d50;
  --paper: #fffdf4;
  --cream: #fff6dc;
  --mint: #d9ffd0;
  --lime: #b7f26d;
  --leaf: #55d68d;
  --sky: #55cbe9;
  --sun: #ffcc4d;
  --coral: #ff7f6e;
  --violet: #8c6df2;
  --event-brand: #b7f26d;
  --white: #ffffff;
  --line: rgba(21, 51, 38, 0.14);
  --shadow: 0 24px 70px rgba(21, 51, 38, 0.16);
  --small-shadow: 0 12px 30px rgba(21, 51, 38, 0.12);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --max: 1180px;
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(183, 242, 109, .35), transparent 32rem),
    radial-gradient(circle at 95% 12%, rgba(85, 203, 233, .24), transparent 28rem),
    linear-gradient(180deg, var(--paper), #f7fff4 48%, #fff9eb);
  min-height: 100vh;
}

body.snap-page {
  background:
    radial-gradient(circle at top, rgba(85, 203, 233, .32), transparent 30rem),
    linear-gradient(180deg, #f6fff5, #fff8e7);
}

a { color: inherit; text-decoration: none; }

img, svg { max-width: 100%; height: auto; display: block; }

button, input, textarea, select { font: inherit; }

.container {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  background: var(--ink);
  color: white;
  padding: 12px 16px;
  border-radius: 999px;
  z-index: 20;
}

.skip-link:focus { top: 16px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(18px);
  background: rgba(255, 253, 244, .78);
  border-bottom: 1px solid var(--line);
}

.nav {
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo-link {
  display: flex;
  align-items: center;
  min-width: 176px;
}

.logo-link img { width: 212px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--ink-soft);
  font-weight: 750;
  font-size: 14px;
}

.nav-links a { opacity: .9; }

.nav-links a:hover { color: var(--ink); opacity: 1; }

.nav-actions { display: flex; align-items: center; gap: 12px; }

.mobile-menu-button { display: none; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  border-radius: 999px;
  border: 2px solid var(--ink);
  padding: 0 20px;
  color: var(--ink);
  background: white;
  box-shadow: 0 5px 0 var(--ink);
  font-weight: 900;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  white-space: nowrap;
}

.btn:hover { transform: translateY(-2px); box-shadow: 0 7px 0 var(--ink); }
.btn:active { transform: translateY(3px); box-shadow: 0 2px 0 var(--ink); }
.btn.primary { background: var(--lime); }
.btn.dark { background: var(--ink); color: white; box-shadow: 0 5px 0 #06150f; }
.btn.ghost { background: transparent; box-shadow: none; }
.btn.soft { background: var(--cream); }
.btn.full { width: 100%; }
.btn.small { min-height: 38px; padding: 0 14px; font-size: 13px; }

.hero {
  padding: 72px 0 48px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, .92fr);
  align-items: center;
  gap: 44px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.7);
  color: var(--ink-soft);
  font-weight: 850;
  font-size: 13px;
  letter-spacing: .02em;
}

.eyebrow::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--coral);
  box-shadow: 16px 0 0 var(--sun), 32px 0 0 var(--leaf);
  margin-right: 32px;
}

h1, h2, h3, p { margin-top: 0; }

.hero h1 {
  font-size: clamp(48px, 7vw, 92px);
  line-height: .9;
  margin-bottom: 22px;
  letter-spacing: -0.07em;
}

.gradient-text {
  background: linear-gradient(90deg, var(--leaf), var(--sky), var(--violet));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lead {
  font-size: clamp(19px, 2.2vw, 25px);
  line-height: 1.35;
  color: var(--ink-soft);
  max-width: 780px;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 28px 0 24px; }

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--ink-soft);
  font-weight: 750;
  font-size: 14px;
}

.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.72);
  border: 1px solid var(--line);
}

.hero-card {
  position: relative;
  padding: 22px;
  border-radius: 42px;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 204, 77, .34), transparent 18rem),
    rgba(255,255,255,.7);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.mascot-scene {
  position: relative;
  min-height: 430px;
  display: grid;
  place-items: end center;
}

.mascot-scene img {
  width: min(100%, 520px);
  filter: drop-shadow(0 18px 18px rgba(21, 51, 38, .12));
}

.float-note {
  position: absolute;
  background: white;
  border: 2px solid var(--ink);
  border-radius: 22px;
  padding: 12px 14px;
  box-shadow: 0 6px 0 var(--ink);
  font-weight: 900;
  font-size: 14px;
}
.float-note.one { top: 26px; left: 4px; transform: rotate(-5deg); }
.float-note.two { right: 0; bottom: 72px; transform: rotate(5deg); background: var(--mint); }

.section {
  padding: 82px 0;
}

.section.compact { padding: 54px 0; }

.section-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 32px;
}

.section-header.center {
  text-align: center;
  display: block;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

.kicker {
  color: var(--coral);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: .16em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

h2 {
  font-size: clamp(34px, 4.8vw, 64px);
  line-height: .98;
  letter-spacing: -0.055em;
  margin-bottom: 16px;
}

.section-header p, .muted {
  color: var(--ink-soft);
  line-height: 1.65;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.guarantee-grid {
  grid-template-columns: repeat(5, minmax(180px, 1fr));
}

.card {
  background: rgba(255,255,255,.78);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--small-shadow);
}

.card.lime { background: linear-gradient(180deg, #e7ffd5, #fff); }
.card.sky { background: linear-gradient(180deg, #ddf8ff, #fff); }
.card.sun { background: linear-gradient(180deg, #fff1bb, #fff); }
.card.coral { background: linear-gradient(180deg, #ffe4df, #fff); }

.icon-bubble {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: var(--cream);
  border: 2px solid var(--ink);
  box-shadow: 0 5px 0 var(--ink);
  font-size: 24px;
  margin-bottom: 18px;
}

.card h3 {
  font-size: 22px;
  margin-bottom: 10px;
  letter-spacing: -.03em;
}

.card p { color: var(--ink-soft); line-height: 1.6; margin-bottom: 0; }

.feature-list {
  display: grid;
  gap: 10px;
  padding-left: 20px;
  color: var(--ink-soft);
  line-height: 1.55;
}

.feature-list.compact-list {
  gap: 7px;
  font-size: 14px;
}

.how-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 28px;
  align-items: center;
}

.pillar-demo {
  background: linear-gradient(135deg, #10271e, #234a38);
  border-radius: 42px;
  padding: 34px;
  min-height: 560px;
  color: white;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.pillar-demo::before {
  content: "";
  position: absolute;
  inset: -80px;
  background:
    radial-gradient(circle at 12% 22%, rgba(255,204,77,.28), transparent 10rem),
    radial-gradient(circle at 82% 20%, rgba(85,203,233,.34), transparent 12rem),
    radial-gradient(circle at 70% 86%, rgba(183,242,109,.23), transparent 14rem);
}

.phone-guide {
  position: relative;
  margin: 18px auto 0;
  width: min(100%, 300px);
  height: 480px;
  border-radius: 42px;
  border: 8px solid rgba(255,255,255,.88);
  outline: 2px dashed rgba(255,255,255,.35);
  outline-offset: 14px;
  background: linear-gradient(180deg, rgba(255,255,255,.1), rgba(255,255,255,.04));
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px;
}

.guide-notch {
  width: 86px;
  height: 22px;
  border-radius: 0 0 18px 18px;
  background: rgba(255,255,255,.88);
  margin: -22px auto 0;
}

.guide-frame {
  border: 2px dashed rgba(255,255,255,.64);
  border-radius: 26px;
  flex: 1;
  margin: 28px 0;
  display: grid;
  place-items: center;
  text-align: center;
  color: rgba(255,255,255,.78);
  font-weight: 900;
}

.qr-card {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 14px;
  align-items: center;
  color: var(--ink);
  padding: 12px;
  border-radius: 18px;
  background: white;
}

.fake-qr {
  width: 76px;
  aspect-ratio: 1;
  border-radius: 12px;
  background:
    linear-gradient(90deg, var(--ink) 12px, transparent 12px) 0 0 / 24px 24px,
    linear-gradient(var(--ink) 12px, transparent 12px) 0 0 / 24px 24px,
    #fff;
  border: 8px solid white;
  box-shadow: inset 0 0 0 2px var(--ink);
}

.steps {
  display: grid;
  gap: 14px;
}

.page-steps {
  margin-top: 24px;
}

.step {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 18px;
  align-items: start;
  padding: 20px;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.72);
  border: 1px solid var(--line);
}

.step-number {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: var(--sun);
  border: 2px solid var(--ink);
  box-shadow: 0 5px 0 var(--ink);
  font-weight: 950;
  font-size: 20px;
}

.step h3 { margin-bottom: 8px; }
.step p { margin-bottom: 0; color: var(--ink-soft); line-height: 1.55; }

.timeline-preview {
  border-radius: 42px;
  padding: 28px;
  background: var(--ink);
  color: white;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.frame-strip {
  display: grid;
  grid-template-columns: repeat(7, minmax(120px, 1fr));
  gap: 12px;
  min-width: 920px;
  animation: slideFrames 22s linear infinite;
}

@keyframes slideFrames {
  from { transform: translateX(0); }
  to { transform: translateX(-280px); }
}

.photo-frame {
  height: 260px;
  border-radius: 28px;
  border: 3px solid rgba(255,255,255,.78);
  background:
    radial-gradient(circle at 50% 32%, rgba(255,255,255,.95) 0 18px, transparent 19px),
    radial-gradient(ellipse at 50% 58%, rgba(255,255,255,.82) 0 42px, transparent 43px),
    linear-gradient(180deg, var(--frame-top, #5fd4f4), var(--frame-bottom, #11271d));
  position: relative;
}

.photo-frame::after {
  content: attr(data-time);
  position: absolute;
  left: 12px;
  bottom: 12px;
  background: rgba(0,0,0,.38);
  color: white;
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 900;
}

.packages {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-items: stretch;
}

.package {
  position: relative;
  padding: 28px;
  border-radius: 32px;
  border: 2px solid var(--ink);
  background: white;
  box-shadow: 0 8px 0 var(--ink);
}

.package.featured {
  background: linear-gradient(180deg, var(--mint), white);
  transform: translateY(-12px);
}

.package .tag {
  display: inline-flex;
  border-radius: 999px;
  padding: 7px 10px;
  background: var(--coral);
  color: white;
  font-weight: 950;
  font-size: 12px;
  letter-spacing: .05em;
}

.package h3 { font-size: 28px; margin: 18px 0 8px; }
.package ul { padding-left: 20px; color: var(--ink-soft); line-height: 1.75; }
.price-note { color: var(--ink-soft); font-weight: 750; }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: center;
}

.tech-card {
  background: #10271e;
  color: white;
  border-radius: 32px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.code-list {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.code-line {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 13px;
}

.code-line span:last-child { color: #b7f26d; }

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.faq-grid.single-column {
  grid-template-columns: 1fr;
}

.faq-item {
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: rgba(255,255,255,.78);
  overflow: hidden;
}

.faq-item summary {
  cursor: pointer;
  padding: 18px 20px;
  font-weight: 900;
}

.faq-item p {
  padding: 0 20px 20px;
  color: var(--ink-soft);
  line-height: 1.6;
  margin: 0;
}

.cta-band {
  border-radius: 42px;
  padding: clamp(28px, 5vw, 58px);
  background:
    radial-gradient(circle at top left, rgba(255,255,255,.5), transparent 18rem),
    linear-gradient(135deg, var(--lime), var(--sky));
  border: 2px solid var(--ink);
  box-shadow: 0 10px 0 var(--ink);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
}

.site-footer {
  padding: 50px 0;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, .7fr);
  gap: 26px;
}

.footer-grid h4 { color: var(--ink); margin: 0 0 12px; }
.footer-grid a, .footer-grid span { display: block; margin: 8px 0; }

/* Attendee page */
.snap-shell {
  min-height: 100vh;
  display: grid;
  grid-template-rows: auto 1fr;
}

.snap-header {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,.78);
  backdrop-filter: blur(16px);
}

.snap-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.snap-header img { width: 196px; }

.event-pill {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--ink);
  color: white;
  font-weight: 850;
  font-size: 13px;
}

.event-brand-strip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.event-brand-strip img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  border-radius: 10px;
  background: white;
  border: 1px solid var(--line);
}

.snap-main {
  padding: 36px 0 70px;
}

.snap-grid {
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  gap: 26px;
  align-items: start;
}

.snap-grid-polished {
  grid-template-columns: minmax(300px, .92fr) minmax(0, 1.08fr);
}

.snap-steps-panel {
  border-top: 8px solid var(--event-brand);
}

.clear-steps .timer-step strong,
.snap-page .btn.primary {
  background: var(--event-brand);
}

.instructions-panel, .upload-panel, .dashboard-panel {
  border-radius: 32px;
  background: rgba(255,255,255,.84);
  border: 1px solid var(--line);
  box-shadow: var(--small-shadow);
  padding: 24px;
}

.instructions-panel {
  position: sticky;
  top: 104px;
}

.attendee-title {
  font-size: clamp(34px, 6vw, 62px);
  line-height: .95;
  letter-spacing: -.06em;
  margin-bottom: 14px;
}

.timer-steps {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.timer-step {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  align-items: start;
}

.timer-step strong {
  width: 44px;
  height: 44px;
  border-radius: 15px;
  background: var(--sun);
  border: 2px solid var(--ink);
  display: grid;
  place-items: center;
  box-shadow: 0 4px 0 var(--ink);
}

.align-card {
  margin-top: 24px;
  padding: 18px;
  border-radius: 24px;
  background: #10271e;
  color: white;
  overflow: hidden;
}

.align-phone {
  margin: 14px auto;
  width: 150px;
  height: 246px;
  border-radius: 26px;
  border: 6px solid white;
  outline: 2px dashed rgba(255,255,255,.55);
  outline-offset: 8px;
  position: relative;
}

.align-phone::before {
  content: "camera at top";
  position: absolute;
  left: 50%;
  top: 20px;
  transform: translateX(-50%);
  width: 92px;
  text-align: center;
  font-size: 11px;
  font-weight: 900;
  color: rgba(255,255,255,.75);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.field { display: grid; gap: 8px; }
.field.full { grid-column: 1 / -1; }

label { font-weight: 900; }

input, textarea, select {
  width: 100%;
  border: 2px solid rgba(21, 51, 38, .18);
  border-radius: 16px;
  padding: 13px 14px;
  background: white;
  color: var(--ink);
  outline: none;
}

input:focus, textarea:focus, select:focus {
  border-color: var(--leaf);
  box-shadow: 0 0 0 4px rgba(85, 214, 141, .18);
}

.help-text { color: var(--ink-soft); font-size: 13px; line-height: 1.5; }

.drop-zone {
  border: 2px dashed rgba(21,51,38,.28);
  border-radius: 24px;
  padding: 24px;
  background: #fbfff7;
  text-align: center;
  cursor: pointer;
  transition: border .15s ease, background .15s ease;
}

.drop-zone.dragover {
  border-color: var(--leaf);
  background: var(--mint);
}

.drop-zone[aria-disabled="true"] {
  opacity: .65;
  cursor: not-allowed;
}

.preview-wrap {
  margin-top: 14px;
  display: none;
}

.preview-wrap.active { display: block; }

.preview-image {
  width: 100%;
  max-height: 440px;
  object-fit: contain;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: var(--ink);
}

.checkbox-row {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 12px;
  align-items: start;
  padding: 14px;
  border-radius: 18px;
  background: var(--cream);
}

.checkbox-row input { width: 22px; height: 22px; margin-top: 2px; }

.checkbox-label {
  display: block;
  margin-bottom: 6px;
}

.consent-meta {
  display: block;
  margin-top: 8px;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.45;
}

.consent-meta a,
.privacy-copy a {
  color: var(--ink);
  font-weight: 900;
  text-decoration: underline;
}

.form-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 20px;
}

.status-box {
  display: none;
  margin-top: 18px;
  padding: 16px;
  border-radius: 18px;
  background: var(--mint);
  border: 1px solid rgba(21,51,38,.15);
  font-weight: 850;
}

.status-box.active { display: block; }
.status-box.error { background: #ffe2dc; }

.upload-state-panel {
  display: grid;
  gap: 8px;
  margin: 18px 0;
  padding: 16px;
  border-radius: 20px;
  background: #f5fff0;
  border: 1px solid rgba(21,51,38,.14);
}

.upload-state-panel strong {
  font-size: 18px;
}

.upload-state-panel span {
  color: var(--ink-soft);
  line-height: 1.45;
}

.upload-state-panel.error {
  background: #ffe2dc;
}

.upload-state-panel.success {
  background: var(--mint);
}

.upload-progress {
  height: 10px;
  border-radius: 999px;
  background: rgba(21,51,38,.12);
  overflow: hidden;
}

.upload-progress span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: var(--event-brand);
  transition: width .18s ease;
}

/* Organiser preview */
.dashboard-body {
  background:
    radial-gradient(circle at 0% 0%, rgba(183,242,109,.2), transparent 28rem),
    #f4faf1;
}

.admin-login-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
}

.admin-login-shell[hidden] {
  display: none;
}

.admin-login-panel {
  width: min(100%, 420px);
  display: grid;
  gap: 16px;
  padding: 26px;
  border-radius: 24px;
  background: white;
  border: 1px solid var(--line);
  box-shadow: var(--small-shadow);
}

.admin-login-panel img {
  width: 190px;
}

.admin-login-panel h1 {
  margin: 0;
  font-size: 34px;
}

.dashboard-layout[hidden] {
  display: none;
}

.dashboard-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 22px;
  padding: 24px 0 70px;
}

.sidebar {
  border-radius: 28px;
  background: var(--ink);
  color: white;
  padding: 20px;
  min-height: calc(100vh - 48px);
  position: sticky;
  top: 24px;
}

.sidebar img { width: 190px; margin-bottom: 22px; filter: brightness(0) invert(1); }

.sidebar a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  border-radius: 14px;
  color: rgba(255,255,255,.78);
  font-weight: 850;
}

.sidebar a.active, .sidebar a:hover { background: rgba(255,255,255,.1); color: white; }

.dashboard-main { min-width: 0; }

.dashboard-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 20px;
}

.dashboard-actions {
  justify-content: flex-end;
}

.compact-field {
  min-width: 160px;
  display: grid;
  gap: 6px;
}

.compact-field span {
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.compact-field select {
  min-height: 46px;
  padding: 8px 12px;
  border-radius: 999px;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 20px;
}

.metric-grid.expanded-metrics {
  grid-template-columns: repeat(3, 1fr);
}

.metric {
  padding: 18px;
  border-radius: 22px;
  background: white;
  border: 1px solid var(--line);
  box-shadow: var(--small-shadow);
}

.metric span { display: block; color: var(--ink-soft); font-weight: 850; font-size: 13px; }
.metric strong { display: block; font-size: 34px; letter-spacing: -.04em; margin-top: 4px; }

.dashboard-grid {
  display: grid;
  grid-template-columns: 1fr .72fr;
  gap: 18px;
  align-items: start;
}

.submission-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 18px;
}

.submission-card {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(180deg, var(--frame-top), var(--frame-bottom));
  border: 1px solid var(--line);
}

.submission-card::before {
  content: "";
  position: absolute;
  top: 22%;
  left: 50%;
  transform: translateX(-50%);
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: rgba(255,255,255,.9);
  box-shadow: 0 48px 0 22px rgba(255,255,255,.72);
}

.submission-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.submission-card.has-image::before {
  display: none;
}

.submission-card span {
  position: absolute;
  bottom: 8px;
  left: 8px;
  right: 8px;
  padding: 6px 8px;
  border-radius: 999px;
  background: rgba(0,0,0,.4);
  color: white;
  font-size: 11px;
  font-weight: 900;
}

.moderation-grid {
  grid-template-columns: repeat(3, minmax(180px, 1fr));
}

.moderation-card {
  min-height: 280px;
}

.submission-card.rich-card {
  aspect-ratio: auto;
  display: grid;
  overflow: hidden;
  background: white;
}

.submission-card.rich-card img {
  height: 230px;
  background: var(--ink);
}

.thumbnail-fallback {
  min-height: 230px;
  display: grid;
  place-items: center;
  padding: 18px;
  background: #10271e;
  color: white;
  text-align: center;
  font-weight: 900;
}

.submission-select {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 34px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.92);
  font-size: 12px;
  font-weight: 950;
}

.submission-select input {
  width: 16px;
  height: 16px;
  padding: 0;
}

.moderation-detail-panel {
  display: grid;
  gap: 10px;
  padding: 12px;
}

.submission-meta {
  display: grid;
  gap: 4px;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 750;
}

.moderation-header {
  align-items: start;
}

.moderation-bulk-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
  align-items: center;
}

.moderation-bulk-actions > span {
  color: var(--ink-soft);
  font-weight: 900;
}

.moderation-controls {
  position: absolute;
  top: 8px;
  left: 8px;
  right: 8px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
}

.moderation-controls.inline-controls {
  position: static;
  left: auto;
  right: auto;
  top: auto;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(0,0,0,.52);
  color: white;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.status-pill.approved { background: #1b6c52; }
.status-pill.rejected { background: #873427; }
.status-pill.pending { background: #6f5a15; }
.status-pill.hidden { background: #4b5563; }
.status-pill.flagged { background: #8c4a13; }

.export-settings {
  margin-top: 18px;
}

.empty-state {
  grid-column: 1 / -1;
  margin: 12px 0;
}

.dashboard-status {
  margin-top: 0;
  max-width: 360px;
}

.privacy-copy {
  max-width: 860px;
}

.processing-list {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.progress-row {
  display: grid;
  gap: 8px;
}

.progress-row div:first-child {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-weight: 850;
}

.progress-bar {
  height: 12px;
  border-radius: 999px;
  background: rgba(21,51,38,.1);
  overflow: hidden;
}

.progress-bar span {
  display: block;
  height: 100%;
  width: var(--value);
  border-radius: inherit;
  background: linear-gradient(90deg, var(--leaf), var(--sky));
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%) translateY(20px);
  opacity: 0;
  pointer-events: none;
  transition: .2s ease;
  border-radius: 999px;
  background: var(--ink);
  color: white;
  padding: 12px 18px;
  font-weight: 850;
  box-shadow: var(--small-shadow);
  z-index: 30;
}

.toast.active {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

@media (max-width: 980px) {
  .nav-links { display: none; }
  .mobile-menu-button { display: inline-flex; }
  .nav-links.open {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 86px;
    display: grid;
    padding: 18px;
    background: white;
    border: 1px solid var(--line);
    border-radius: 24px;
    box-shadow: var(--shadow);
  }
  .hero-grid, .how-grid, .split, .snap-grid, .dashboard-grid, .footer-grid { grid-template-columns: 1fr; }
  .value-grid, .packages, .guarantee-grid { grid-template-columns: 1fr; }
  .package.featured { transform: none; }
  .cta-band { grid-template-columns: 1fr; }
  .instructions-panel { position: static; }
  .dashboard-layout { grid-template-columns: 1fr; }
  .sidebar { min-height: auto; position: static; }
  .metric-grid { grid-template-columns: repeat(2, 1fr); }
  .metric-grid.expanded-metrics { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .container { width: min(100% - 28px, var(--max)); }
  .nav { height: 72px; }
  .logo-link img, .snap-header img { width: 166px; }
  .nav-actions .btn:not(.mobile-menu-button) { display: none; }
  .hero { padding-top: 42px; }
  .section { padding: 58px 0; }
  .hero-card { padding: 14px; border-radius: 30px; }
  .mascot-scene { min-height: 330px; }
  .float-note { font-size: 12px; padding: 9px 10px; }
  .form-grid, .metric-grid { grid-template-columns: 1fr; }
  .submission-grid { grid-template-columns: repeat(2, 1fr); }
  .moderation-grid { grid-template-columns: 1fr; }
  .metric-grid.expanded-metrics { grid-template-columns: 1fr; }
  .snap-header-inner { align-items: flex-start; flex-direction: column; }
  .event-brand-strip { width: 100%; justify-content: space-between; }
  .faq-grid { grid-template-columns: 1fr; }
}
