:root {
  color-scheme: light;
  --bg: #120f1d;
  --bg-soft: #1b1730;
  --panel: #fffaf2;
  --panel-2: #f5ebda;
  --text: #17121f;
  --text-invert: #fff7ed;
  --muted: #6d6176;
  --line: rgba(60, 42, 72, 0.16);
  --accent: #a855f7;
  --accent-2: #f59e0b;
  --accent-3: #14b8a6;
  --rose: #e11d48;
  --shadow: 0 24px 80px rgba(11, 8, 20, 0.24);
  --radius: 22px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at top left, rgba(168, 85, 247, 0.35), transparent 34rem),
    radial-gradient(circle at 80% 20%, rgba(245, 158, 11, 0.20), transparent 30rem),
    linear-gradient(180deg, #120f1d 0%, #211932 46%, #f6efe6 46.1%, #f6efe6 100%);
  color: var(--text-invert);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

button, select, textarea, input { font: inherit; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto auto;
  gap: 18px;
  align-items: center;
  padding: 14px clamp(16px, 4vw, 42px);
  border-bottom: 1px solid rgba(255, 250, 242, 0.12);
  background: rgba(18, 15, 29, 0.82);
  backdrop-filter: blur(18px);
}

.brand { display: inline-flex; align-items: center; gap: 11px; min-width: 0; }
.brand-mark {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  box-shadow: 0 10px 28px rgba(168, 85, 247, 0.35);
}
.brand strong, .brand small { display: block; }
.brand small { color: rgba(255, 247, 237, 0.68); font-size: 12px; }

.nav {
  display: flex;
  gap: 6px;
  padding: 4px;
  border: 1px solid rgba(255, 250, 242, 0.12);
  border-radius: 999px;
  background: rgba(255, 250, 242, 0.07);
}
.nav a {
  padding: 8px 12px;
  border-radius: 999px;
  color: rgba(255, 247, 237, 0.72);
  font-size: 14px;
}
.nav a:hover { background: rgba(255, 250, 242, 0.12); color: #fff; }

.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 11px 18px;
  cursor: pointer;
  font-weight: 800;
  transition: transform 0.16s ease, box-shadow 0.16s ease, background 0.16s ease, border-color 0.16s ease;
}
.button:hover { transform: translateY(-1px); }
.button:disabled { cursor: not-allowed; opacity: 0.55; transform: none; }
.button.primary {
  background: linear-gradient(135deg, var(--accent), #7c3aed);
  color: #fff;
  box-shadow: 0 14px 30px rgba(124, 58, 237, 0.28);
}
.button.secondary { border-color: rgba(31, 24, 43, 0.14); background: #fff; color: var(--text); }
.button.ghost { border-color: rgba(255, 250, 242, 0.14); background: rgba(255, 250, 242, 0.08); color: #fff; box-shadow: none; }
.button.small { min-height: 36px; padding: 7px 12px; font-size: 13px; }
.button.full { width: 100%; }

.hero, .section, .footer { width: min(var(--max), calc(100% - 32px)); margin: 0 auto; }
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(300px, 0.82fr);
  gap: 28px;
  align-items: center;
  min-height: 680px;
  padding: clamp(46px, 8vw, 92px) 0 54px;
}
.hero-copy { padding: 20px 0; }
.eyebrow {
  margin: 0 0 10px;
  color: #facc15;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
h1, h2, h3, p { overflow-wrap: anywhere; }
h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(46px, 7.7vw, 86px);
  line-height: 0.92;
  letter-spacing: -0.055em;
}
.hero-text {
  max-width: 720px;
  margin: 24px 0 0;
  color: rgba(255, 247, 237, 0.76);
  font-size: 20px;
}
.hero-actions, .result-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.metric-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.metric-row span {
  border: 1px solid rgba(255, 250, 242, 0.12);
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(255, 250, 242, 0.07);
  color: rgba(255, 247, 237, 0.74);
  font-size: 13px;
}
.metric-row strong { color: #fff; }

.hero-showcase {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 250, 242, 0.14);
  border-radius: 34px;
  padding: 24px;
  background:
    linear-gradient(145deg, rgba(255, 250, 242, 0.18), rgba(255, 250, 242, 0.06)),
    radial-gradient(circle at 50% 10%, rgba(245, 158, 11, 0.28), transparent 24rem);
  box-shadow: 0 30px 120px rgba(0, 0, 0, 0.34);
}
.hero-showcase p { margin: 18px 0 0; color: rgba(255, 247, 237, 0.72); font-size: 14px; }
.portrait-stack { position: relative; min-height: 480px; display: grid; place-items: center; }
.hero-portrait-card {
  position: absolute;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(255, 250, 242, 0.22);
  border-radius: 22px;
  background: #17121f;
  box-shadow: 0 26px 70px rgba(0,0,0,0.28);
}
.hero-portrait-card img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.hero-portrait-card figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: grid;
  gap: 2px;
  padding: 46px 16px 15px;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.74));
  color: #fff;
}
.hero-portrait-card b { font-size: 22px; line-height: 1.05; }
.hero-portrait-card small { color: rgba(255,255,255,0.78); font-size: 12px; }
.hero-portrait-main { z-index: 2; width: min(72%, 330px); aspect-ratio: 4 / 5; }
.hero-portrait-side { z-index: 1; width: min(42%, 172px); aspect-ratio: 4 / 5; opacity: 0.94; }
.hero-portrait-side figcaption { padding: 34px 11px 11px; font-size: 12px; font-weight: 900; }
.hero-portrait-side.top { top: 14px; right: 4px; transform: rotate(5deg); }
.hero-portrait-side.bottom { bottom: 18px; left: 0; transform: rotate(-6deg); }

.section { padding: 54px 0; color: var(--text); }
.section-heading { display: grid; max-width: 800px; gap: 8px; margin-bottom: 22px; }
.section-heading.compact { max-width: 720px; }
.section-heading h2 { margin: 0; font-size: clamp(30px, 4.4vw, 54px); line-height: 0.98; letter-spacing: -0.035em; }
.section-heading p:not(.eyebrow) { margin: 0; color: var(--muted); font-size: 17px; }
.section .eyebrow, .studio-panel .eyebrow, .result-panel .eyebrow, .payment-card .eyebrow { color: #8b5cf6; }

.studio-grid { display: grid; grid-template-columns: minmax(310px, 0.44fr) minmax(0, 0.56fr); gap: 18px; align-items: stretch; }
.studio-panel, .result-panel, .price-card, .style-card, .trust-grid article, .payment-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 250, 242, 0.92);
  color: var(--text);
  box-shadow: var(--shadow);
}
.studio-panel, .result-panel { padding: 20px; }
.studio-panel label:not(.checkbox-row) { display: block; margin: 15px 0 7px; font-size: 13px; font-weight: 900; }
select, textarea, input[type="email"] {
  width: 100%;
  border: 1px solid rgba(31, 24, 43, 0.16);
  border-radius: 14px;
  background: #fff;
  color: var(--text);
}
select { min-height: 42px; padding: 0 36px 0 12px; }
textarea, input[type="email"] { padding: 12px; }
textarea { resize: vertical; }
.field-note { margin: 8px 0 0; color: var(--muted); font-size: 13px; }

.upload-zone {
  position: relative;
  display: grid;
  min-height: 260px;
  place-items: center;
  border: 1.5px dashed rgba(124, 58, 237, 0.38);
  border-radius: 20px;
  background:
    radial-gradient(circle at top, rgba(168, 85, 247, 0.10), transparent 18rem),
    #fff;
  text-align: center;
}
.upload-zone.is-dragover { border-color: var(--accent); background: #faf5ff; }
.upload-placeholder { display: grid; gap: 8px; justify-items: center; padding: 22px; color: var(--muted); }
.upload-placeholder strong { color: var(--text); font-size: 20px; }
.upload-icon { display: grid; width: 52px; height: 52px; place-items: center; border-radius: 18px; background: #f3e8ff; color: #7c3aed; font-size: 28px; }
.image-preview { width: 100%; padding: 12px; }
.image-preview img { width: 100%; max-height: 360px; object-fit: cover; border-radius: 16px; }
.image-preview .button { margin-top: 10px; }
.checkbox-row { display: flex; gap: 10px; align-items: flex-start; margin: 16px 0; color: var(--muted); font-size: 13px; }
.checkbox-row input { flex: 0 0 auto; margin-top: 3px; }

.result-panel { display: flex; min-height: 660px; flex-direction: column; }
.result-head { display: flex; align-items: start; justify-content: space-between; gap: 12px; padding-bottom: 16px; border-bottom: 1px solid var(--line); }
.result-head h3 { margin: 0; font-size: 28px; line-height: 1.05; }
.price-badge { white-space: nowrap; border-radius: 999px; background: #fef3c7; color: #92400e; padding: 8px 10px; font-size: 13px; font-weight: 900; }
.result-canvas {
  position: relative;
  display: grid;
  min-height: 370px;
  place-items: center;
  overflow: hidden;
  margin-top: 16px;
  border-radius: 22px;
  background: linear-gradient(135deg, #ede9fe, #fff7ed);
  color: var(--muted);
  text-align: center;
}
.result-canvas.generated {
  grid-template-columns: 0.9fr 1.1fr;
  gap: 0;
  align-items: stretch;
  background: #17121f;
  color: #fff;
}
.result-canvas.empty { border: 1px dashed rgba(31, 24, 43, 0.16); }
.result-canvas.style-preview { display: block; background: #17121f; color: #fff; }
.result-canvas.style-preview > img { width: 100%; height: 100%; min-height: 370px; object-fit: cover; object-position: center top; filter: saturate(1.04) contrast(1.04); }
.result-canvas.style-preview::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0.02), rgba(0,0,0,0.70)); }
.style-preview-copy { position: absolute; left: 20px; right: 20px; bottom: 20px; z-index: 3; display: grid; gap: 6px; text-align: left; }
.style-preview-copy span { justify-self: start; border-radius: 999px; padding: 7px 10px; background: rgba(255,255,255,0.18); font-size: 12px; font-weight: 900; }
.style-preview-copy strong { font-size: clamp(28px, 4vw, 44px); line-height: 0.98; }
.style-preview-copy p { margin: 0; color: rgba(255,255,255,0.82); }
.result-orb { display: grid; width: 88px; height: 88px; place-items: center; border-radius: 50%; background: rgba(255,255,255,0.72); color: #7c3aed; font-size: 42px; }
.watermark { position: absolute; right: 16px; top: 14px; z-index: 4; border-radius: 999px; padding: 7px 10px; background: rgba(18, 15, 29, 0.48); color: rgba(255,255,255,0.78); font-size: 12px; font-weight: 800; }
.result-upload, .result-style { position: relative; min-height: 370px; padding: 18px; display: grid; align-content: end; }
.result-upload { background: rgba(255,255,255,0.16); }
.result-upload img, .result-style img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.result-upload img { opacity: 0.78; filter: saturate(0.85) contrast(1.02); }
.result-style img { opacity: 0.92; filter: saturate(1.04) contrast(1.04); }
.result-upload::after, .result-style::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0.04), rgba(0,0,0,0.64)); }
.result-upload span, .result-style > *:not(img) { position: relative; z-index: 2; }
.result-upload span, .result-style .category-chip { justify-self: start; border-radius: 999px; padding: 7px 10px; background: rgba(255,255,255,0.18); font-size: 12px; font-weight: 900; }
.result-style h4 { margin: 14px 0 8px; font-size: clamp(26px, 4vw, 44px); line-height: 0.95; letter-spacing: -0.04em; }
.result-style p { margin: 0; color: rgba(255,255,255,0.82); }
.result-meta { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; margin-top: 14px; }
.meta-item { border: 1px solid var(--line); border-radius: 16px; padding: 12px; background: #fff; }
.meta-item strong { display: block; margin-bottom: 4px; font-size: 12px; text-transform: uppercase; color: #7c3aed; }
.meta-item span { color: var(--muted); font-size: 14px; }

.tabs { display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 18px; }
.tab { border: 1px solid rgba(31, 24, 43, 0.12); border-radius: 999px; padding: 9px 14px; background: #fff; cursor: pointer; color: var(--muted); font-weight: 800; }
.tab.is-active { background: #17121f; color: #fff; border-color: #17121f; }
.style-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
.style-card { overflow: hidden; box-shadow: none; cursor: pointer; transition: transform 0.16s ease, box-shadow 0.16s ease, border-color 0.16s ease; }
.style-card:hover, .style-card.is-selected { transform: translateY(-2px); border-color: rgba(124, 58, 237, 0.45); box-shadow: var(--shadow); }
.style-art { position: relative; aspect-ratio: 4 / 5; overflow: hidden; background: #17121f; color: #fff; }
.style-art-link { display: block; color: inherit; text-decoration: none; }
.style-title-link { color: inherit; text-decoration: none; }
.style-title-link:hover { text-decoration: underline; }
.style-art img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.style-art span { position: absolute; left: 12px; bottom: 12px; border-radius: 999px; padding: 6px 9px; background: rgba(0,0,0,0.38); color: #fff; font-size: 12px; font-weight: 900; }
.style-body { display: grid; gap: 8px; padding: 14px; }
.style-body h3 { margin: 0; font-size: 18px; line-height: 1.1; }
.style-body p { margin: 0; color: var(--muted); font-size: 13px; }
.tags { display: flex; flex-wrap: wrap; gap: 6px; }
.tags span, .label { display: inline-flex; border-radius: 999px; padding: 5px 8px; background: #f3e8ff; color: #6d28d9; font-size: 11px; font-weight: 900; }
.tags span.warn { background: #fff7ed; color: #9a3412; }

.pricing-grid, .trust-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.price-card { padding: 20px; box-shadow: none; }
.price-card.featured { border-color: rgba(124, 58, 237, 0.38); box-shadow: var(--shadow); }
.price-card h3, .trust-grid h3 { margin: 12px 0 0; font-size: 22px; }
.amount { margin: 12px 0 8px; font-size: 42px; font-weight: 950; letter-spacing: -0.04em; }
.price-card p, .trust-grid p { margin: 0; color: var(--muted); }

.payment-card { display: grid; grid-template-columns: minmax(0, 1fr) minmax(300px, 430px); gap: 24px; align-items: center; padding: 24px; background: #17121f; color: #fff; }
.payment-card h2 { margin: 0; font-size: clamp(30px, 4vw, 48px); line-height: 1; }
.payment-card p { color: rgba(255,255,255,0.72); }
.result-payment-form { display: grid; gap: 10px; margin-top: 16px; border: 1px solid var(--line); border-radius: 18px; padding: 14px; background: #fff; }
.result-payment-form label { font-size: 13px; font-weight: 900; }
.result-payment-form .field-note { margin: 0; }
.result-panel.is-generating { border-color: rgba(20, 184, 166, 0.52); box-shadow: 0 24px 90px rgba(20, 184, 166, 0.22); }
.result-panel.is-complete { border-color: rgba(22, 163, 74, 0.52); box-shadow: 0 24px 90px rgba(22, 163, 74, 0.24); }
.result-panel.is-error { border-color: rgba(225, 29, 72, 0.50); }
.generation-notice {
  display: grid;
  gap: 4px;
  border: 1px solid rgba(31, 24, 43, 0.12);
  border-radius: 16px;
  padding: 14px 16px;
  background: #f8fafc;
  color: var(--text);
}
.generation-notice strong { font-size: 18px; line-height: 1.15; }
.generation-notice span { color: var(--muted); font-size: 14px; }
.generation-notice.is-running { border-color: rgba(20, 184, 166, 0.42); background: #ecfeff; }
.generation-notice.is-running strong { color: #0f766e; }
.generation-notice.is-complete { border-color: rgba(22, 163, 74, 0.44); background: #ecfdf5; }
.generation-notice.is-complete strong { color: #15803d; font-size: 21px; }
.generation-notice.is-error { border-color: rgba(225, 29, 72, 0.38); background: #fff1f2; }
.generation-notice.is-error strong { color: #be123c; }
.payment-notes { display: grid; gap: 6px; border-radius: 18px; padding: 16px; background: rgba(255,255,255,0.08); }
.payment-notes strong { font-size: 18px; }
.payment-notes span { color: rgba(255,255,255,0.70); }
.download-panel { display: grid; gap: 9px; margin-top: 2px; }
.download-panel.is-ready { border: 1px solid rgba(22, 163, 74, 0.28); border-radius: 16px; padding: 12px; background: #f0fdf4; }
.download-panel.is-ready .button { background: #16a34a; color: #fff; box-shadow: 0 14px 30px rgba(22, 163, 74, 0.24); }
.download-panel small { color: var(--muted); }

.trust-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.trust-grid article { padding: 18px; box-shadow: none; }
.footer { display: flex; flex-wrap: wrap; gap: 12px 20px; align-items: center; justify-content: space-between; padding: 30px 0 46px; color: #5b5362; border-top: 1px solid rgba(31, 24, 43, 0.12); }
.footer p { margin: 0; }
.footer-links { display: flex; flex-wrap: wrap; gap: 10px 16px; font-size: 14px; }
.footer-links a { color: #4f46e5; font-weight: 800; }

.legal-page { width: min(860px, calc(100% - 32px)); margin: 0 auto; padding: 72px 0 80px; color: var(--text); }
.legal-page h1 { margin: 8px 0 8px; color: var(--text-invert); }
.legal-page > .eyebrow, .legal-page > .legal-updated { color: rgba(255, 247, 237, 0.76); }
.legal-page section { margin-top: 18px; border: 1px solid var(--line); border-radius: 18px; padding: 20px; background: rgba(255, 250, 242, 0.94); }
.legal-page h2 { margin: 0 0 8px; font-size: 22px; }
.legal-page p { margin: 0; color: var(--muted); line-height: 1.7; }
.legal-page a { color: #4f46e5; font-weight: 900; }
.legal-list { margin: 0; padding-left: 20px; color: var(--muted); line-height: 1.8; }
.contact-card p:first-of-type { font-size: 22px; }

@media (max-width: 1040px) {
  .topbar { grid-template-columns: 1fr; }
  .nav { justify-self: start; overflow-x: auto; max-width: 100%; }
  .hero, .studio-grid, .payment-card { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .style-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .trust-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 720px) {
  body { background: linear-gradient(180deg, #120f1d 0%, #211932 38%, #f6efe6 38.1%, #f6efe6 100%); }
  .hero { padding-top: 38px; }
  h1 { font-size: 46px; }
  .hero-text { font-size: 17px; }
  .style-grid, .pricing-grid, .trust-grid, .result-meta { grid-template-columns: 1fr; }
  .result-canvas.generated { grid-template-columns: 1fr; }
  .result-upload, .result-style { min-height: 240px; }
  .topbar .button.ghost { justify-self: start; }
}

/* ── SEO style pages ── */

.breadcrumb { display: flex; gap: 8px; align-items: center; padding: 20px clamp(16px, 4vw, 42px) 0; max-width: 1180px; margin: 0 auto; color: rgba(255,247,237,0.7); font-size: 14px; }
.breadcrumb a { color: #facc15; }
.breadcrumb strong { color: #fff; }

.style-hero { display: grid; grid-template-columns: minmax(280px, 0.35fr) minmax(0, 0.65fr); gap: 32px; max-width: 1180px; margin: 28px auto; padding: 0 clamp(16px, 4vw, 42px); align-items: start; }
.style-hero-image { border-radius: 22px; overflow: hidden; box-shadow: 0 24px 80px rgba(0,0,0,0.5); }
.style-hero-image img { width: 100%; aspect-ratio: 4/5; object-fit: cover; object-position: center top; }
.style-hero-copy { color: var(--text-invert); padding-top: 8px; }
.style-hero-copy h1 { font-size: clamp(36px, 5.5vw, 64px); line-height: 0.95; letter-spacing: -0.045em; margin: 10px 0 16px; }
.style-lead { color: rgba(255,247,237,0.78); font-size: 17px; line-height: 1.6; max-width: 680px; }
.style-hero-actions { display: flex; flex-wrap: wrap; gap: 10px; margin: 22px 0 12px; }
.style-hero-copy .tags { margin: 12px 0; }

.style-section { max-width: 1180px; margin: 0 auto; padding: 40px clamp(16px, 4vw, 42px); color: var(--text); }
.style-section h2 { font-size: clamp(28px, 4vw, 46px); letter-spacing: -0.03em; margin: 0 0 20px; }
.style-prose { max-width: 780px; font-size: 16px; line-height: 1.7; color: var(--muted); }

.steps-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
.step-card { border: 1px solid var(--line); border-radius: 18px; padding: 18px; background: rgba(255,250,242,0.92); }
.step-card strong { display: block; font-size: 18px; margin-bottom: 6px; }
.step-card span { color: var(--muted); font-size: 14px; }

.faq-list { list-style: none; padding: 0; display: grid; gap: 12px; max-width: 800px; }
.faq-item { border: 1px solid var(--line); border-radius: 16px; padding: 16px 20px; background: rgba(255,250,242,0.92); }
.faq-item h3 { margin: 0 0 8px; font-size: 18px; }
.faq-item p { margin: 0; color: var(--muted); line-height: 1.6; }

.related-grid { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 12px; }
.related-card { display: grid; gap: 8px; text-decoration: none; color: var(--text); transition: transform 0.15s ease; }
.related-card:hover { transform: translateY(-2px); }
.related-art { aspect-ratio: 4/5; overflow: hidden; border-radius: 14px; background: #17121f; }
.related-art img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.related-card span { font-size: 13px; font-weight: 900; }

.cta-section { text-align: center; padding: 60px clamp(16px, 4vw, 42px); }
.cta-section p { color: var(--muted); font-size: 17px; margin: 12px 0 20px; }
.cta-section .button { font-size: 18px; padding: 14px 28px; }

@media (max-width: 860px) {
  .style-hero { grid-template-columns: 1fr; }
  .style-hero-image { max-width: 360px; }
  .steps-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .related-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 540px) {
  .steps-grid, .related-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
