:root {
  --bg: #f8efe4;
  --panel: rgba(255, 255, 255, 0.9);
  --line: rgba(28, 20, 15, 0.08);
  --text: #1d1510;
  --muted: #69584d;
  --accent: #ea580c;
  --accent-2: #f59e0b;
  --teal: #0f766e;
  --shadow: 0 30px 80px rgba(84, 49, 24, 0.16);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Manrope", "Avenir Next", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 12%, rgba(234, 88, 12, 0.16), transparent 18%),
    radial-gradient(circle at 88% 20%, rgba(15, 118, 110, 0.12), transparent 16%),
    linear-gradient(180deg, #fffaf5 0%, var(--bg) 100%);
}

img {
  display: block;
  max-width: 100%;
}

.shot-body {
  overflow: hidden;
}

.shot {
  display: grid;
  gap: 24px;
  width: 100vw;
  height: 100vh;
  padding: 42px;
}

.scene-widescreen {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
}

.scene-widescreen.reverse {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
}

.scene-small-promo {
  grid-template-columns: 1.1fr 0.9fr;
  padding: 22px 24px;
}

.scene-marquee {
  grid-template-columns: 1.05fr 0.95fr;
  padding: 48px 58px;
}

.copy-panel,
.visual-panel,
.result-mock,
.privacy-card {
  position: relative;
}

.copy-panel {
  align-self: center;
  z-index: 1;
}

.copy-panel.compact {
  align-self: center;
}

.copy-panel.wide {
  padding-right: 10px;
}

.pill,
.eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(234, 88, 12, 0.18);
  color: #c2410c;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow {
  background: rgba(234, 88, 12, 0.12);
}

h1,
h2 {
  margin: 16px 0 0;
  font-family: "Fraunces", Georgia, serif;
  letter-spacing: -0.035em;
  line-height: 0.95;
}

.scene-widescreen h1,
.privacy-scene h1 {
  font-size: 74px;
}

.scene-small-promo h1 {
  font-size: 42px;
}

.scene-marquee h1 {
  font-size: 76px;
}

h2 {
  font-size: 28px;
}

p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 21px;
  line-height: 1.5;
}

.compact p {
  font-size: 18px;
}

.bullet-row,
.action-group,
.chip-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.bullet-row span,
.action-group span,
.chip-stack span,
.flow-node {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(28, 20, 15, 0.07);
  color: var(--text);
  font-size: 15px;
  font-weight: 800;
}

.action-group span.filled {
  background: linear-gradient(135deg, var(--accent) 0%, #fb923c 100%);
  border-color: transparent;
  color: white;
}

.browser-mock,
.result-mock,
.privacy-card,
.marquee-card.large,
.mini-browser,
.phone-screen {
  border: 1px solid var(--line);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.browser-mock.tall {
  height: 716px;
}

.browser-top {
  display: flex;
  gap: 8px;
  padding: 18px 20px 0;
}

.browser-top span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(29, 21, 16, 0.15);
}

.status-toast {
  position: absolute;
  top: 74px;
  left: 28px;
  width: 280px;
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--line);
  box-shadow: 0 18px 48px rgba(29, 21, 16, 0.12);
}

.status-toast strong {
  display: block;
  font-size: 22px;
}

.status-toast p {
  margin-top: 10px;
  font-size: 15px;
  line-height: 1.55;
}

.progress {
  height: 12px;
  margin-top: 14px;
  border-radius: 999px;
  background: rgba(29, 21, 16, 0.08);
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
}

.status-toast small {
  display: inline-block;
  margin-top: 8px;
  font-size: 13px;
  font-weight: 800;
  color: #c2410c;
}

.article-surface {
  height: 100%;
  padding: 22px 22px 22px 340px;
}

.hero-strip {
  height: 132px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(234, 88, 12, 0.9), rgba(245, 158, 11, 0.72));
}

.article-grid {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.line,
.media-card,
.preview-block,
.preview-head,
.mobile-image,
.mini-page,
.marquee-page {
  border-radius: 18px;
}

.line,
.preview-block,
.preview-head {
  background: linear-gradient(90deg, rgba(29, 21, 16, 0.08), rgba(29, 21, 16, 0.04));
}

.line.long {
  height: 44px;
}

.line.medium {
  height: 74px;
}

.line.short {
  width: 62%;
  height: 34px;
}

.media-card {
  height: 132px;
  background: linear-gradient(135deg, rgba(15, 118, 110, 0.78), rgba(125, 211, 252, 0.56));
}

.media-card.alt {
  background: linear-gradient(135deg, rgba(234, 88, 12, 0.72), rgba(252, 211, 77, 0.7));
}

.result-mock {
  display: flex;
  flex-direction: column;
  height: 716px;
  padding: 24px;
}

.result-mock header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.preview-stage {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 18px;
}

.preview-canvas {
  position: relative;
  width: min(100%, 500px);
  height: 510px;
  padding: 18px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(247, 243, 235, 0.94), rgba(255, 255, 255, 0.84));
  border: 1px solid var(--line);
}

.preview-canvas.overlay::before {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 18px;
  background: rgba(29, 21, 16, 0.28);
}

.preview-page {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 16px;
  border-radius: 18px;
  background: white;
}

.preview-head {
  height: 72px;
}

.preview-block.large {
  height: 130px;
  margin-top: 14px;
}

.preview-block.medium {
  height: 94px;
  margin-top: 14px;
}

.preview-block.small {
  height: 72px;
  margin-top: 14px;
}

.preview-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.crop-box {
  position: absolute;
  left: 58px;
  top: 110px;
  width: 380px;
  height: 250px;
  border: 3px solid #e11d48;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 999px rgba(29, 21, 16, 0.24);
}

.crop-note {
  position: absolute;
  left: 50%;
  top: 34px;
  transform: translateX(-50%);
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(17, 24, 39, 0.9);
  color: white;
  font-size: 13px;
  font-weight: 800;
}

.phone-shell {
  position: relative;
  width: 320px;
  margin: 28px auto 0;
  padding: 16px;
  border-radius: 42px;
  background: linear-gradient(180deg, #16110e 0%, #33251c 100%);
  box-shadow: 0 30px 80px rgba(29, 21, 16, 0.34);
}

.phone-notch {
  position: absolute;
  left: 50%;
  top: 16px;
  transform: translateX(-50%);
  width: 120px;
  height: 22px;
  border-radius: 999px;
  background: #1d1510;
  z-index: 2;
}

.phone-screen {
  min-height: 650px;
  padding: 28px 18px 18px;
  border-radius: 32px;
}

.mobile-header strong {
  display: block;
  margin-top: 10px;
  font-size: 24px;
}

.mobile-crop-preview {
  position: relative;
  margin-top: 16px;
  padding: 12px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(247, 243, 235, 0.96), rgba(255, 255, 255, 0.84));
  border: 1px solid var(--line);
}

.mobile-image {
  height: 240px;
  background: linear-gradient(180deg, rgba(29, 21, 16, 0.08), rgba(29, 21, 16, 0.04));
}

.mobile-crop-box {
  position: absolute;
  left: 32px;
  top: 44px;
  width: 180px;
  height: 118px;
  border: 3px solid #e11d48;
  border-radius: 18px;
  box-shadow: 0 0 0 999px rgba(29, 21, 16, 0.18);
}

.mobile-controls {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.mobile-controls label {
  display: grid;
  gap: 6px;
  font-size: 14px;
  font-weight: 800;
}

.mobile-controls input[type="range"] {
  width: 100%;
  accent-color: var(--accent);
}

.privacy-card {
  padding: 28px;
  margin-top: 80px;
}

.privacy-icon {
  display: inline-flex;
  padding: 16px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 20px 36px rgba(234, 88, 12, 0.16);
}

.privacy-icon img,
.mini-visual img,
.marquee-card.floating img {
  width: 84px;
  height: 84px;
  border-radius: 24px;
}

.flow-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 24px;
}

.flow-node.active {
  background: linear-gradient(135deg, var(--accent) 0%, #fb923c 100%);
  color: white;
  border-color: transparent;
}

.flow-arrow {
  flex: 1;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(234, 88, 12, 0.7), rgba(15, 118, 110, 0.4));
}

.privacy-list {
  display: grid;
  gap: 12px;
  margin: 26px 0 0;
  padding-left: 22px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.5;
}

.compact .copy-panel {
  align-self: center;
}

.mini-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.mini-browser {
  width: 162px;
  padding: 12px;
}

.mini-strip {
  height: 22px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(234, 88, 12, 0.86), rgba(245, 158, 11, 0.62));
}

.mini-page {
  height: 110px;
  margin-top: 12px;
  background: linear-gradient(180deg, rgba(29, 21, 16, 0.08), rgba(29, 21, 16, 0.03));
}

.marquee-visual {
  position: relative;
  align-self: center;
  min-height: 420px;
}

.marquee-card.large {
  width: 560px;
  padding: 22px;
}

.marquee-strip {
  height: 74px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(15, 118, 110, 0.82), rgba(96, 165, 250, 0.54));
}

.marquee-page {
  height: 246px;
  margin-top: 18px;
  background: linear-gradient(180deg, rgba(29, 21, 16, 0.08), rgba(29, 21, 16, 0.03));
}

.marquee-card.floating {
  position: absolute;
  right: -20px;
  bottom: -20px;
  display: grid;
  justify-items: start;
  gap: 16px;
  padding: 20px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 24px 60px rgba(29, 21, 16, 0.18);
}

.chip-stack {
  margin-top: 0;
}

.scene-marquee p {
  max-width: 620px;
}
