:root {
  color-scheme: light;
  --bg: #f0fdf4;
  --bg-strong: #dcfce7;
  --surface: #ffffff;
  --surface-warm: #f7fff9;
  --ink: #102317;
  --muted: #5f7165;
  --line: #bde7ca;
  --primary: #16a34a;
  --primary-dark: #047857;
  --primary-soft: #dcfce7;
  --accent: #0f766e;
  --accent-dark: #115e59;
  --danger: #d93025;
  --warning: #166534;
  --shadow: 0 24px 80px rgba(16, 99, 52, 0.12);
  --shadow-soft: 0 12px 40px rgba(16, 99, 52, 0.1);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --container: min(1120px, calc(100% - 32px));
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-size: 16px;
  line-height: 1.6;
}

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

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

button {
  cursor: pointer;
}

img,
canvas {
  max-width: 100%;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 30;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  transition: top 0.2s ease;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.section-pad {
  width: var(--container);
  margin: 0 auto;
  padding: 64px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(189, 231, 202, 0.9);
  background: rgba(240, 253, 244, 0.9);
  backdrop-filter: blur(18px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: var(--container);
  min-height: 72px;
  margin: 0 auto;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.brand-mark {
  position: relative;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 14px;
  color: var(--primary-dark);
  background: var(--primary);
  box-shadow: 0 12px 24px rgba(22, 163, 74, 0.22);
  font-size: 0.72rem;
  font-weight: 900;
  overflow: hidden;
}

.brand-mark::before {
  position: absolute;
  inset: 8px 9px 7px;
  border-radius: 7px 7px 5px 5px;
  background: #fff;
  content: "";
}

.brand-mark::after {
  position: absolute;
  right: 9px;
  bottom: 7px;
  left: 9px;
  height: 3px;
  border-radius: 999px;
  background: var(--primary-soft);
  content: "";
}

.brand-mark span {
  position: relative;
  z-index: 1;
  letter-spacing: -0.05em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-weight: 700;
  font-size: 0.94rem;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--primary-dark);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  color: #fff;
  background: var(--ink);
  font-weight: 800;
  box-shadow: var(--shadow-soft);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  align-items: center;
  gap: 46px;
  min-height: calc(100svh - 72px);
  padding-top: 54px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--primary-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  line-height: 1.05;
  letter-spacing: -0.055em;
}

h1 {
  max-width: 780px;
  margin-bottom: 20px;
  font-size: clamp(2.65rem, 7vw, 5.6rem);
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 4.5vw, 3.6rem);
}

h3 {
  margin-bottom: 10px;
  font-size: clamp(1.35rem, 3vw, 1.9rem);
}

h4 {
  margin-bottom: 10px;
  font-size: 1.05rem;
}

.hero-text {
  max-width: 660px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.18rem);
}

.hero-actions,
.form-actions,
.poster-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  border: 0;
  border-radius: 999px;
  font-weight: 900;
  line-height: 1;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    background 0.18s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button.primary {
  color: #fff;
  background: var(--primary);
  box-shadow: 0 14px 32px rgba(22, 163, 74, 0.26);
}

.button.primary:hover,
.button.primary:focus-visible {
  box-shadow: 0 18px 42px rgba(22, 163, 74, 0.34);
}

.button.secondary {
  color: #fff;
  background: var(--accent);
  box-shadow: 0 14px 28px rgba(15, 118, 110, 0.22);
}

.button.ghost {
  color: var(--primary-dark);
  background: #fff;
  box-shadow: inset 0 0 0 1px var(--line);
}

.button.ghost.dark {
  color: var(--ink);
}

.button.soft {
  color: var(--primary-dark);
  background: var(--primary-soft);
  box-shadow: inset 0 0 0 1px rgba(22, 163, 74, 0.18);
}

.button.small {
  min-height: 40px;
  padding: 0 14px;
  font-size: 0.9rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 640px;
  margin: 36px 0 0;
  gap: 12px;
}

.hero-stats div {
  padding: 16px;
  border: 1px solid rgba(189, 231, 202, 0.9);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.7);
}

.hero-stats dt {
  font-size: 1.3rem;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.hero-stats dd {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.hero-card {
  position: relative;
}

.hero-card::before,
.hero-card::after {
  position: absolute;
  content: "";
  border-radius: 999px;
  filter: blur(4px);
}

.hero-card::before {
  right: 20px;
  top: -24px;
  width: 96px;
  height: 96px;
  background: rgba(22, 163, 74, 0.18);
}

.hero-card::after {
  left: 10px;
  bottom: -28px;
  width: 128px;
  height: 128px;
  background: rgba(15, 118, 110, 0.16);
}

.receipt-card {
  position: relative;
  z-index: 1;
  max-width: 430px;
  margin-left: auto;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 34px;
  background: #fff;
  box-shadow: var(--shadow);
}

.receipt-card::before {
  display: block;
  width: 58px;
  height: 8px;
  margin: 0 auto 22px;
  border-radius: 999px;
  background: var(--primary);
  content: "";
}

.receipt-top,
.receipt-row,
.receipt-highlight {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.receipt-top {
  display: block;
  padding-bottom: 18px;
  border-bottom: 1px dashed var(--line);
}

.receipt-top span,
.receipt-row span,
.receipt-highlight span {
  color: var(--muted);
}

.receipt-top strong {
  display: block;
  margin-top: 6px;
  font-size: 1.65rem;
  line-height: 1.1;
  letter-spacing: -0.05em;
}

.receipt-row {
  padding: 16px 0;
  border-bottom: 1px dashed var(--line);
}

.receipt-highlight {
  margin: 20px 0;
  padding: 18px;
  border-radius: var(--radius-md);
  color: #fff;
  background: var(--ink);
}

.receipt-highlight span {
  color: rgba(255, 255, 255, 0.72);
}

.receipt-highlight strong {
  font-size: 1.8rem;
}

.receipt-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.app-heading {
  max-width: 860px;
}

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

.feature-card,
.panel,
.premium-card,
.seo-card,
.launch-box,
.pro-proof-grid article,
.faq details {
  border: 1px solid rgba(189, 231, 202, 0.9);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-soft);
}

.feature-card {
  padding: 22px;
  border-radius: var(--radius-md);
}

.feature-icon {
  display: inline-grid;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  place-items: center;
  border-radius: 16px;
  color: var(--primary-dark);
  background: var(--primary-soft);
  font-weight: 900;
}

.feature-card h3 {
  font-size: 1.28rem;
}

.feature-card p,
.panel p,
.poster-tips li,
.saved-products p,
.premium-copy p,
.seo-card p,
.launch-box p,
.pro-proof-grid p,
.faq p,
.site-footer p {
  color: var(--muted);
}

.workspace {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
  align-items: start;
  gap: 18px;
}

.panel {
  border-radius: var(--radius-lg);
  padding: 24px;
}

.panel-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}

.panel-header.compact {
  align-items: center;
}

.panel-header h3 {
  margin-bottom: 0;
}

.header-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.inline-select {
  width: auto;
  min-width: 170px;
  min-height: 40px;
  border-radius: 999px;
  background: #fff;
  font-size: 0.9rem;
  font-weight: 850;
}

.panel-kicker {
  margin: 0 0 6px;
  color: var(--accent-dark);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

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

.field {
  display: grid;
  gap: 7px;
}

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

label {
  font-weight: 850;
  letter-spacing: -0.02em;
}

label span {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  min-height: 50px;
  border: 1px solid #bde7ca;
  border-radius: 16px;
  outline: 0;
  color: var(--ink);
  background: #fff;
  transition:
    border 0.16s ease,
    box-shadow 0.16s ease,
    background 0.16s ease;
}

input,
select {
  padding: 0 14px;
}

textarea {
  min-height: 90px;
  padding: 14px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(22, 163, 74, 0.9);
  box-shadow: 0 0 0 4px rgba(22, 163, 74, 0.14);
}

.input-prefix {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  min-height: 50px;
  border: 1px solid #bde7ca;
  border-radius: 16px;
  background: #fff;
  overflow: hidden;
  transition:
    border 0.16s ease,
    box-shadow 0.16s ease;
}

.input-prefix:focus-within {
  border-color: rgba(22, 163, 74, 0.9);
  box-shadow: 0 0 0 4px rgba(22, 163, 74, 0.14);
}

.input-prefix span {
  display: grid;
  height: 100%;
  min-width: 48px;
  place-items: center;
  color: var(--muted);
  background: #f0fdf4;
  font-weight: 900;
}

.input-prefix input {
  min-height: 48px;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.input-prefix input:focus {
  box-shadow: none;
}

.input-prefix.suffix {
  grid-template-columns: 1fr auto;
}

.input-prefix.suffix span {
  border-left: 1px solid #bde7ca;
}

.price-hero {
  padding: 24px;
  border-radius: 24px;
  color: #fff;
  background: #0f3d24;
}

.price-hero span,
.price-hero small {
  display: block;
  color: rgba(255, 255, 255, 0.72);
}

.price-hero strong {
  display: block;
  margin: 8px 0 6px;
  font-size: clamp(2.1rem, 5vw, 3.2rem);
  line-height: 1;
  letter-spacing: -0.06em;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  color: var(--muted);
  background: #e6f7ed;
  font-size: 0.83rem;
  font-weight: 900;
  white-space: nowrap;
}

.status-pill.safe {
  color: var(--accent-dark);
  background: rgba(15, 118, 110, 0.12);
}

.status-pill.danger {
  color: var(--danger);
  background: rgba(217, 48, 37, 0.1);
}

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

.metric-card {
  padding: 16px;
  border: 1px solid #bde7ca;
  border-radius: 18px;
  background: var(--surface-warm);
}

.metric-card.wide {
  grid-column: 1 / -1;
}

.metric-card span {
  display: block;
  color: var(--muted);
  font-size: 0.88rem;
}

.metric-card strong {
  display: block;
  margin-top: 4px;
  font-size: clamp(1.2rem, 3vw, 1.55rem);
  letter-spacing: -0.04em;
}

.warning-box {
  margin-top: 14px;
  padding: 14px;
  border: 1px solid #bde7ca;
  border-radius: 18px;
  color: var(--warning);
  background: #ecfdf5;
  font-weight: 800;
}

.warning-box.safe {
  color: var(--accent-dark);
  border-color: rgba(15, 118, 110, 0.18);
  background: rgba(15, 118, 110, 0.08);
}

.warning-box.danger {
  color: var(--danger);
  border-color: rgba(217, 48, 37, 0.2);
  background: rgba(217, 48, 37, 0.08);
}

.formula-note {
  margin-top: 14px;
  color: var(--muted);
}

.formula-note summary {
  cursor: pointer;
  color: var(--ink);
  font-weight: 900;
}

.formula-note p {
  margin: 8px 0 0;
}

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

.copy-box {
  min-height: 250px;
  margin: 0;
  padding: 18px;
  border: 1px dashed #9fd8b1;
  border-radius: 20px;
  color: var(--ink);
  background: #f7fff9;
  font: 700 0.95rem/1.65 ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  overflow: auto;
  white-space: pre-wrap;
}

.poster-panel {
  margin-top: 18px;
}

.poster-layout {
  display: grid;
  grid-template-columns: minmax(260px, 420px) minmax(0, 1fr);
  align-items: center;
  gap: 24px;
}

.poster-preview {
  padding: 14px;
  border-radius: 28px;
  background: var(--primary-soft);
}

#posterCanvas {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 18px 50px rgba(22, 35, 46, 0.18);
}

.poster-tips {
  padding: 18px;
  border-radius: 22px;
  background: var(--surface-warm);
}

.poster-tips ul,
.price-card ul {
  padding-left: 20px;
  margin: 14px 0 0;
}

.catalog-tools {
  display: grid;
  gap: 14px;
}

.catalog-tools p {
  margin: 0;
}

.catalog-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.saved-products {
  padding-top: 28px;
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.6fr);
  align-items: end;
  max-width: none;
  gap: 24px;
}

.split-heading p:last-child {
  margin-bottom: 18px;
}

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

.saved-card {
  display: grid;
  gap: 14px;
  padding: 18px;
  border: 1px solid rgba(189, 231, 202, 0.9);
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.saved-card h3 {
  margin: 0;
  font-size: 1.15rem;
}

.saved-card p {
  margin: 0;
  color: var(--muted);
}

.saved-card-actions {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
}

.empty-state {
  grid-column: 1 / -1;
  padding: 24px;
  border: 1px dashed #9fd8b1;
  border-radius: 24px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.72);
  text-align: center;
}

.reports {
  padding-top: 28px;
}

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

.report-card {
  padding: 20px;
  border: 1px solid rgba(189, 231, 202, 0.9);
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.report-card.highlight {
  color: #fff;
  background: #0f3d24;
}

.report-card span {
  display: block;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 800;
}

.report-card.highlight span {
  color: rgba(255, 255, 255, 0.72);
}

.report-card strong {
  display: block;
  margin-top: 6px;
  font-size: clamp(1.35rem, 3vw, 2rem);
  line-height: 1.1;
  letter-spacing: -0.045em;
}

.report-table-wrap {
  margin-top: 14px;
  border: 1px solid rgba(189, 231, 202, 0.9);
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--shadow-soft);
  overflow-x: auto;
}

.report-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
}

.report-table th,
.report-table td {
  padding: 15px 16px;
  border-bottom: 1px solid #d9f4e2;
  text-align: left;
  vertical-align: top;
}

.report-table th {
  color: var(--muted);
  background: #f0fdf4;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.report-table tr:last-child td {
  border-bottom: 0;
}

.report-product {
  display: grid;
  gap: 2px;
  font-weight: 900;
}

.report-product small {
  color: var(--muted);
  font-weight: 700;
}

.profit-text {
  color: var(--accent-dark);
  font-weight: 900;
}

.loss-text {
  color: var(--danger);
  font-weight: 900;
}

.seo-hub {
  padding-top: 28px;
}

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

.seo-card,
.pro-proof-grid article {
  padding: 22px;
  border-radius: var(--radius-md);
}

.seo-card h3,
.pro-proof-grid h3 {
  font-size: 1.24rem;
}

.launch-box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  margin-top: 16px;
  padding: 24px;
  border-radius: var(--radius-lg);
  color: #fff;
  background: #0f3d24;
}

.launch-box h3 {
  margin-bottom: 10px;
  font-size: clamp(1.45rem, 3vw, 2.2rem);
}

.launch-box .eyebrow,
.launch-box p {
  color: rgba(255, 255, 255, 0.78);
}

.launch-box p:last-child {
  margin-bottom: 0;
}

.premium-card {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 24px;
  padding: 28px;
  border-radius: 34px;
  background: #fff;
}

.premium-copy {
  align-self: center;
}

.premium-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.payment-note {
  margin: 14px 0 0;
  font-weight: 850;
}

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

.price-card {
  position: relative;
  padding: 22px;
  border: 1px solid #bde7ca;
  border-radius: 24px;
  background: #fff;
}

.pro-plan {
  color: #fff;
  background: #0f3d24;
}

.price-card h3 {
  margin: 0 0 12px;
  font-size: 1.4rem;
}

.plan-price {
  margin-bottom: 14px;
  color: inherit;
  font-size: 2rem;
  font-weight: 950;
  letter-spacing: -0.06em;
}

.plan-note {
  margin: -8px 0 14px;
  color: inherit;
  font-size: 0.9rem;
  font-weight: 850;
}

.pro-plan .plan-price,
.pro-plan .plan-note,
.pro-plan li {
  color: rgba(255, 255, 255, 0.86);
}

.pro-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 16px;
}

.popular-badge {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  color: #102317;
  background: #bbf7d0;
  font-size: 0.78rem;
  font-weight: 900;
}

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

.faq details {
  padding: 18px;
  border-radius: 22px;
}

.faq summary {
  cursor: pointer;
  font-weight: 900;
}

.faq p {
  margin: 10px 0 0;
}

.site-footer {
  width: var(--container);
  margin: 0 auto;
  padding: 24px 0 46px;
  border-top: 1px solid rgba(189, 231, 202, 0.9);
}

.site-footer p {
  margin: 0;
}

.toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 40;
  max-width: min(360px, calc(100vw - 36px));
  padding: 14px 16px;
  border-radius: 16px;
  color: #fff;
  background: var(--ink);
  box-shadow: var(--shadow-soft);
  font-weight: 850;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .hero,
  .workspace,
  .premium-card,
  .poster-layout,
  .split-heading {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .receipt-card {
    margin: 0;
  }

  .feature-grid,
  .report-grid,
  .saved-list,
  .seo-grid,
  .pro-proof-grid,
  .faq-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  :root {
    --container: min(100% - 24px, 1120px);
  }

  .section-pad {
    padding: 44px 0;
  }

  .site-header {
    position: static;
  }

  .nav {
    min-height: auto;
    padding: 14px 0;
  }

  .nav-links {
    display: none;
  }

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

  .hero {
    padding-top: 34px;
    gap: 30px;
  }

  .hero-stats,
  .feature-grid,
  .calculator-form,
  .generator-grid,
  .report-grid,
  .saved-list,
  .seo-grid,
  .pro-proof-grid,
  .pricing-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .panel,
  .premium-card {
    padding: 18px;
    border-radius: 24px;
  }

  .panel-header,
  .poster-header {
    flex-direction: column;
    align-items: stretch;
  }

  .header-actions,
  .catalog-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .inline-select {
    width: 100%;
  }

  .result-grid {
    grid-template-columns: 1fr;
  }

  .form-actions,
  .hero-actions,
  .premium-actions,
  .catalog-actions,
  .poster-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .launch-box {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .copy-box {
    min-height: 210px;
    font-size: 0.88rem;
  }

  .toast {
    right: 12px;
    bottom: 12px;
  }
}

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