:root {
  --bg: #f7f8f4;
  --surface: #ffffff;
  --surface-strong: #101512;
  --text: #141a17;
  --muted: #657067;
  --light: #8c968f;
  --line: rgba(20, 26, 23, 0.12);
  --accent: #2f7d5b;
  --accent-dark: #235f46;
  --accent-soft: #e6f3ed;
  --warm: #f0c36d;
  --danger: #c24141;
  --shadow: 0 24px 70px rgba(30, 41, 33, 0.13);
  --radius: 20px;
  --radius-sm: 12px;
  --header-h: 74px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

section[id] {
  scroll-margin-top: calc(var(--header-h) + 12px);
}

body {
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

img { max-width: 100%; display: block; }
button, input, textarea { font: inherit; }
button { cursor: pointer; }
a { color: inherit; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5vw;
  background: rgba(247, 248, 244, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  font-family: "Plus Jakarta Sans", Inter, sans-serif;
  font-weight: 800;
  letter-spacing: -0.03em;
  font-size: 1.04rem;
}

.brand-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: var(--accent);
}

.brand-mark svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.brand-mark rect { fill: var(--accent-soft); }

.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--muted);
}

.main-nav a {
  text-decoration: none;
  transition: color 0.18s ease;
}

.main-nav a:hover { color: var(--text); }

.nav-cta,
.primary-action,
.secondary-action,
.generate-button {
  border: 0;
  border-radius: 999px;
  min-height: 46px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  font-weight: 800;
  font-size: 0.93rem;
  transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.nav-cta,
.primary-action,
.generate-button {
  background: var(--accent);
  color: #fff;
}

.nav-cta {
  min-height: 38px;
  padding: 0 16px;
  font-size: 0.86rem;
}

.primary-action:hover,
.generate-button:hover,
.nav-cta:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
}

.secondary-action {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line);
}

.secondary-action:hover {
  border-color: rgba(20, 26, 23, 0.28);
  transform: translateY(-1px);
}

.small {
  min-height: 40px;
  padding: 0 16px;
  font-size: 0.86rem;
}

.text-button {
  border: 0;
  background: transparent;
  color: var(--accent);
  font-size: 0.88rem;
  font-weight: 800;
  padding: 0;
}

.hero {
  min-height: calc(100svh - var(--header-h));
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(420px, 1.12fr);
  align-items: center;
  gap: 6vw;
  padding: 54px 5vw 74px;
  overflow: hidden;
}

.hero-copy {
  max-width: 650px;
  animation: rise-in 0.7s ease both;
}

.hero h1,
.section-copy h2,
.generator-intro h2,
.result-head h2,
#loading-text {
  font-family: "Plus Jakarta Sans", Inter, sans-serif;
  letter-spacing: -0.05em;
  line-height: 0.96;
}

.hero h1 {
  font-size: clamp(3rem, 7vw, 6.6rem);
  max-width: 770px;
}

.hero-copy p {
  margin-top: 24px;
  max-width: 560px;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.7vw, 1.24rem);
}

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

.hero-media {
  min-height: 600px;
  position: relative;
  animation: fade-in 0.8s ease 0.15s both;
}

.hero-shot {
  position: absolute;
  overflow: hidden;
  border-radius: 28px;
  box-shadow: var(--shadow);
  background: var(--surface);
}

.hero-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-shot span {
  position: absolute;
  left: 18px;
  bottom: 18px;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 13px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--text);
  font-size: 0.8rem;
  font-weight: 800;
}

.hero-shot-before {
  left: 0;
  top: 55px;
  width: 47%;
  height: 330px;
  transform: rotate(-4deg);
}

.hero-shot-after {
  right: 0;
  top: 0;
  width: 68%;
  height: 520px;
  transform: rotate(2deg);
}

.generator-band {
  padding: 84px 5vw;
  background: var(--surface-strong);
  color: #fff;
}

.generator-stage {
  max-width: 1180px;
  margin: 0 auto;
}

.generator-stage.hidden { display: none; }

.generator-intro,
.result-head {
  max-width: 700px;
  margin-bottom: 32px;
}

.generator-intro {
  max-width: none;
}

.generator-intro h2,
.generator-intro p {
  max-width: 700px;
}

.generator-intro h2,
.result-head h2,
#loading-text {
  font-size: clamp(2.1rem, 4vw, 4.2rem);
}

.generator-intro p,
.result-head p,
.processing-copy p {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 1rem;
}

.mode-switch {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 26px;
  border: 2px solid rgba(255, 255, 255, 0.9);
}

.mode-option {
  min-height: 62px;
  border: 0;
  border-right: 2px solid rgba(255, 255, 255, 0.9);
  background: transparent;
  color: rgba(255, 255, 255, 0.78);
  font-family: "Plus Jakarta Sans", Inter, sans-serif;
  font-size: clamp(1.1rem, 2vw, 1.6rem);
  font-weight: 800;
  letter-spacing: 0;
  transition: background 0.18s ease, color 0.18s ease;
}

.mode-option:last-child {
  border-right: 0;
}

.mode-option.active,
.mode-option:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.generator-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 24px;
}

.upload-panel,
.brief-panel,
.processing-card {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
}

.upload-panel {
  min-height: 486px;
  display: grid;
  place-items: center;
  padding: 28px;
  transition: border-color 0.18s ease, background 0.18s ease;
}

.upload-panel.dragover {
  border-color: var(--warm);
  background: rgba(240, 195, 109, 0.12);
}

.upload-empty {
  max-width: 320px;
  text-align: center;
}

.upload-icon {
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  margin: 0 auto 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--warm);
}

.upload-icon svg {
  width: 32px;
  height: 32px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.upload-empty h3 {
  font-size: 1.35rem;
  margin-bottom: 8px;
}

.upload-empty p {
  color: rgba(255, 255, 255, 0.62);
  margin-bottom: 22px;
}

.upload-selected {
  display: none;
  width: 100%;
  gap: 18px;
  align-items: center;
}

.upload-panel.has-file {
  align-content: start;
  place-items: stretch;
}

.upload-panel.has-file .upload-empty { display: none; }
.upload-panel.has-file .upload-selected { display: flex; }

.upload-selected img {
  width: 150px;
  height: 150px;
  border-radius: 18px;
  object-fit: cover;
  background: #fff;
}

.upload-selected strong {
  display: block;
  margin: 4px 0 10px;
  word-break: break-word;
}

.brief-panel {
  padding: 28px;
}

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

.full-field { grid-column: 1 / -1; }

.field-label {
  display: block;
  margin-bottom: 7px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  padding: 13px 14px;
  outline: none;
  transition: border-color 0.18s ease, background 0.18s ease;
}

textarea { resize: vertical; min-height: 104px; }
input::placeholder, textarea::placeholder { color: rgba(255, 255, 255, 0.36); }
input:focus, textarea:focus { border-color: var(--warm); background: rgba(255, 255, 255, 0.1); }

.style-chooser {
  border: 0;
  margin-top: 22px;
}

.style-chooser legend {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.84rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.style-option {
  display: block;
  position: relative;
  padding: 16px 16px 16px 48px;
  margin-bottom: 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  transition: border-color 0.18s ease, background 0.18s ease;
}

.style-option input {
  position: absolute;
  left: 16px;
  top: 18px;
  width: 18px;
  height: 18px;
  accent-color: var(--warm);
}

.style-option span {
  display: block;
  font-weight: 800;
  margin-bottom: 2px;
}

.style-option small {
  display: block;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.84rem;
}

.style-option.active {
  border-color: rgba(240, 195, 109, 0.88);
  background: rgba(240, 195, 109, 0.11);
}

.generate-button {
  width: 100%;
  margin-top: 16px;
  min-height: 54px;
  border-radius: 16px;
  background: var(--warm);
  color: #15130e;
}

.generate-button:hover {
  background: #ffd783;
  color: #15130e;
}

.generate-button:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
}

.render-note {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.82rem;
  margin-top: 10px;
  text-align: center;
}

.processing-card {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 32px;
  align-items: center;
  padding: 28px;
}

.processing-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 18px;
}

.progress-track {
  height: 10px;
  margin-top: 28px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.14);
}

.progress-bar {
  width: 0%;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--warm), #fff2c6);
  transition: width 0.35s ease;
}

.result-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.result-grid.video-mode {
  grid-template-columns: minmax(0, 1fr);
  justify-items: center;
}

.result-item {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 20px;
  overflow: hidden;
}

.result-item img,
.result-item video {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  background: #fff;
  -webkit-user-drag: none;
  user-select: none;
  -webkit-touch-callout: none;
}

.result-grid.video-mode .result-item video {
  aspect-ratio: 16 / 9;
  max-height: min(54vh, 520px);
  object-fit: contain;
  background: #050705;
}

.result-grid.video-mode .result-item {
  width: min(100%, 920px);
}

.result-item figcaption {
  padding: 14px 16px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  font-weight: 700;
}

.result-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.result-actions .secondary-action {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.2);
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.proof-strip div {
  min-height: 128px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 22px 5vw;
  border-right: 1px solid var(--line);
}

.proof-strip div:last-child { border-right: 0; }

.proof-strip strong {
  font-family: "Plus Jakarta Sans", Inter, sans-serif;
  font-size: 1.6rem;
  line-height: 1;
}

.proof-strip span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.examples,
.styles,
.how-it-works,
.reviews,
.pricing,
.faq {
  padding: 92px 5vw;
}

.section-copy {
  max-width: 720px;
  margin-bottom: 34px;
}

.section-copy h2 {
  font-size: clamp(2.2rem, 4.6vw, 4.8rem);
}

.section-copy p {
  margin-top: 14px;
  color: var(--muted);
  font-size: 1.04rem;
  max-width: 620px;
}

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

.example-card {
  min-height: 320px;
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  background: #ddd;
}

.example-card.large {
  grid-row: span 2;
  min-height: 656px;
}

.example-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.example-card:hover img { transform: scale(1.04); }

.example-card div {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 16px;
  border-radius: 16px;
  color: #fff;
  background: rgba(15, 20, 17, 0.72);
  backdrop-filter: blur(12px);
}

.example-card span {
  display: block;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}

.example-card strong {
  font-size: 1.05rem;
}

.styles {
  background: #fff;
}

.style-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.style-list div {
  min-height: 220px;
  padding: 24px;
  background: #fff;
}

.style-list strong {
  display: block;
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.style-list span {
  color: var(--muted);
  font-size: 0.94rem;
}

.steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.steps li {
  padding-top: 20px;
  border-top: 2px solid var(--text);
}

.steps span {
  color: var(--accent);
  font-weight: 800;
  font-size: 0.86rem;
}

.steps strong {
  display: block;
  margin: 12px 0 8px;
  font-size: 1.15rem;
}

.steps p {
  color: var(--muted);
}

.reviews {
  background: var(--surface-strong);
  color: #fff;
}

.reviews .section-copy p {
  color: rgba(255, 255, 255, 0.66);
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.review-card {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.review-stars {
  color: var(--warm);
  letter-spacing: 0.12em;
  font-size: 0.86rem;
  margin-bottom: 18px;
}

.review-card blockquote {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.98rem;
  line-height: 1.65;
}

.review-card figcaption {
  margin-top: 24px;
}

.review-card figcaption strong,
.review-card figcaption span {
  display: block;
}

.review-card figcaption strong {
  font-size: 0.95rem;
}

.review-card figcaption span {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.86rem;
}

.pricing {
  background: #fff;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.price-card {
  min-height: 430px;
  display: flex;
  flex-direction: column;
  padding: 28px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: #fff;
}

.price-card.featured {
  background: var(--surface-strong);
  color: #fff;
  border-color: var(--surface-strong);
  box-shadow: var(--shadow);
}

.price-card h3 {
  font-size: 1.1rem;
  margin-bottom: 14px;
}

.price {
  font-family: "Plus Jakarta Sans", Inter, sans-serif;
  font-size: clamp(2.3rem, 4vw, 3.9rem);
  line-height: 1;
  letter-spacing: -0.05em;
  margin-bottom: 14px;
}

.price span {
  font-family: Inter, sans-serif;
  font-size: 0.98rem;
  letter-spacing: 0;
  color: var(--muted);
}

.price-card.featured .price span,
.price-card.featured p,
.price-card.featured li {
  color: rgba(255, 255, 255, 0.68);
}

.price-card p {
  color: var(--muted);
  margin-bottom: 22px;
}

.price-card ul {
  list-style: none;
  display: grid;
  gap: 11px;
  margin-bottom: 26px;
}

.price-card li {
  color: var(--muted);
  font-weight: 700;
}

.price-card li::before {
  content: "";
  width: 8px;
  height: 8px;
  display: inline-block;
  margin-right: 10px;
  border-radius: 999px;
  background: var(--accent);
}

.price-card.featured li::before {
  background: var(--warm);
}

.price-card button,
.price-card a {
  width: 100%;
  margin-top: auto;
}

.price-card.featured .primary-action {
  background: var(--warm);
  color: #15130e;
}

.price-card.featured .primary-action:hover {
  background: #ffd783;
}

.faq {
  background: #fff;
}

.faq details {
  max-width: 840px;
  border-top: 1px solid var(--line);
}

.faq details:last-child { border-bottom: 1px solid var(--line); }

.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 0;
  font-weight: 800;
  display: flex;
  justify-content: space-between;
  gap: 18px;
}

.faq summary::-webkit-details-marker { display: none; }

.faq summary::after {
  content: "+";
  color: var(--accent);
}

.faq details[open] summary::after { content: "-"; }

.faq p {
  color: var(--muted);
  padding: 0 0 22px;
  max-width: 740px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 30px 5vw;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.site-footer a {
  text-decoration: none;
  font-weight: 700;
}

.policy-page {
  padding: 84px 5vw 96px;
}

.policy-hero {
  max-width: 880px;
  margin-bottom: 34px;
}

.policy-hero h1 {
  font-family: "Plus Jakarta Sans", Inter, sans-serif;
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
}

.policy-hero p {
  margin-top: 14px;
  color: var(--muted);
  font-weight: 700;
}

.policy-content {
  max-width: 860px;
  padding: 34px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--line);
}

.policy-content h2 {
  margin: 28px 0 9px;
  font-size: 1.1rem;
}

.policy-content h2:first-child {
  margin-top: 0;
}

.policy-content p {
  color: var(--muted);
  margin-bottom: 10px;
}

.policy-content a:not(.secondary-action) {
  color: var(--accent);
  font-weight: 700;
}

.policy-content .secondary-action {
  margin-top: 22px;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(16, 21, 18, 0.58);
}

.modal-overlay.active { display: flex; }

.modal-card {
  width: min(440px, 100%);
  position: relative;
  padding: 28px;
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--shadow);
}

.modal-card h3 {
  font-family: "Plus Jakarta Sans", Inter, sans-serif;
  font-size: 1.5rem;
  letter-spacing: -0.04em;
  margin-bottom: 10px;
}

.modal-card p {
  color: var(--muted);
  margin-bottom: 18px;
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 999px;
  background: rgba(20, 26, 23, 0.08);
  color: var(--text);
  font-size: 1.25rem;
}

.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 18px;
  z-index: 80;
  width: min(760px, calc(100% - 28px));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow);
  transform: translateX(-50%);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.cookie-banner.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(12px);
}

.cookie-banner p {
  color: var(--muted);
  font-size: 0.86rem;
}

.cookie-banner div {
  display: flex;
  align-items: center;
  gap: 10px;
}

.small-accept {
  min-height: 36px;
  border: 0;
  border-radius: 999px;
  padding: 0 14px;
  background: var(--accent);
  color: #fff;
  font-weight: 800;
}

@keyframes rise-in {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 980px) {
  .main-nav a { display: none; }
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 44px;
  }
  .hero-media {
    min-height: 480px;
  }
  .generator-layout,
  .processing-card {
    grid-template-columns: 1fr;
  }
  .proof-strip,
  .style-list,
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }
  .example-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .example-card.large {
    grid-row: auto;
    grid-column: 1 / -1;
    min-height: 420px;
  }
}

@media (max-width: 640px) {
  :root { --header-h: 66px; }
  .site-header { padding: 0 16px; }
  .brand { font-size: 0.94rem; }
  .nav-cta { min-height: 36px; padding: 0 13px; }
  .hero { padding: 34px 16px 54px; gap: 28px; }
  .hero h1 { font-size: clamp(2.65rem, 15vw, 4rem); }
  .hero-actions { align-items: stretch; }
  .hero-actions > * { width: 100%; }
  .hero-media { min-height: 360px; }
  .hero-shot-before { width: 54%; height: 210px; top: 70px; }
  .hero-shot-after { width: 74%; height: 310px; }
  .generator-band,
  .examples,
  .styles,
  .how-it-works,
  .reviews,
  .pricing,
  .faq {
    padding: 58px 16px;
  }
  .field-grid,
  .proof-strip,
  .style-list,
  .steps,
  .review-grid,
  .pricing-grid,
  .example-grid,
  .result-grid {
    grid-template-columns: 1fr;
  }
  .result-grid.video-mode .result-item video {
    max-height: 42vh;
  }
  .upload-panel { min-height: 360px; }
  .upload-selected {
    flex-direction: column;
    align-items: flex-start;
  }
  .upload-selected img {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
  }
  .brief-panel,
  .processing-card {
    padding: 18px;
  }
  .proof-strip div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .example-card,
  .example-card.large {
    min-height: 330px;
  }
  .site-footer,
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
  }
}
