.simple-home {
  --simple-ink: #171816;
  --simple-muted: #686a65;
  --simple-paper: #f4f1eb;
  --simple-surface: #fffefb;
  --simple-soft: #eeebe4;
  --simple-line: #dcd7cd;
  --simple-accent: #1f5946;
  --simple-danger: #a43a21;
  min-width: 0;
  background: var(--simple-paper);
  color: var(--simple-ink);
}

.simple-home *,
.simple-home *::before,
.simple-home *::after {
  min-width: 0;
}

.simple-home main {
  display: block;
}

.simple-home .topbar {
  position: sticky;
  top: 0;
  left: auto;
  right: auto;
  z-index: 20;
  min-height: 68px;
  padding: 12px max(20px, calc((100vw - 1280px) / 2));
  border-bottom: 1px solid rgba(23, 24, 22, 0.09);
  background: rgba(255, 254, 251, 0.9);
  color: var(--simple-ink);
  backdrop-filter: blur(18px);
}

.simple-home .brand {
  gap: 10px;
  font-size: 0.98rem;
  letter-spacing: -0.02em;
}

.simple-home .brand-mark {
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 11px;
  background: var(--simple-ink);
  color: #fff;
  font-size: 0.65rem;
  letter-spacing: 0.02em;
}

.simple-home .topbar nav {
  display: flex;
  gap: 8px;
}

.simple-home .topbar nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 12px;
  color: var(--simple-ink);
  font-size: 0.88rem;
  font-weight: 750;
}

.simple-home .topbar .quiet-link:hover,
.simple-home .topbar .quiet-link:focus-visible {
  background: var(--simple-soft);
}

.simple-home .topbar .nav-cta {
  border: 1px solid var(--simple-ink);
  background: var(--simple-ink);
  color: #fff;
}

.simple-home .workspace-hero {
  padding: clamp(44px, 6vw, 82px) 20px clamp(56px, 8vw, 108px);
}

.simple-home .workspace-grid {
  width: min(1280px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(360px, 0.78fr) minmax(620px, 1.22fr);
  gap: clamp(42px, 6vw, 88px);
  align-items: start;
}

.simple-home .hero-intro {
  position: sticky;
  top: 118px;
  padding-top: clamp(8px, 2.5vw, 34px);
}

.simple-home .eyebrow {
  margin: 0 0 12px;
  color: var(--simple-accent);
  font-size: 0.73rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.simple-home .hero-intro h1 {
  max-width: 600px;
  margin: 0;
  color: var(--simple-ink);
  font-size: clamp(3.65rem, 5.4vw, 5.5rem);
  font-weight: 650;
  letter-spacing: -0.065em;
  line-height: 0.94;
  text-wrap: balance;
}

.simple-home .hero-lede {
  max-width: 530px;
  margin: 26px 0 0;
  color: var(--simple-muted);
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  line-height: 1.58;
}

.simple-home .button {
  min-height: 48px;
  border-radius: 13px;
  font-weight: 800;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.simple-home .button.primary {
  border-color: var(--simple-ink);
  background: var(--simple-ink);
  color: #fff;
  box-shadow: none;
}

.simple-home .button.primary:hover,
.simple-home .button.primary:focus-visible {
  background: #2a2c29;
  box-shadow: 0 10px 30px rgba(23, 24, 22, 0.16);
}

.simple-home .button.secondary {
  border-color: var(--simple-line);
  background: var(--simple-surface);
  color: var(--simple-ink);
}

.simple-home .hero-button {
  width: max-content;
  margin-top: 28px;
  padding-inline: 22px;
}

.simple-home .hero-assurance {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  margin: 15px 0 0;
  color: var(--simple-muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.simple-home .hero-assurance span {
  position: relative;
  padding-left: 14px;
}

.simple-home .hero-assurance span::before {
  content: "";
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--simple-accent);
}

.simple-home .example-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: clamp(34px, 5vw, 62px);
}

.simple-home .example-strip figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(23, 24, 22, 0.1);
  border-radius: 18px;
  background: var(--simple-soft);
  aspect-ratio: 0.72;
}

.simple-home .example-strip figure:nth-child(2) {
  transform: translateY(16px);
}

.simple-home .example-strip img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
}

.simple-home .example-strip figcaption {
  position: absolute;
  right: 8px;
  bottom: 8px;
  left: 8px;
  padding: 7px 9px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 9px;
  background: rgba(18, 20, 18, 0.7);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 750;
  text-align: center;
  backdrop-filter: blur(8px);
}

.simple-home .studio-card {
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(23, 24, 22, 0.12);
  border-radius: 28px;
  background: var(--simple-surface);
  box-shadow: 0 32px 90px rgba(35, 31, 24, 0.09);
}

.simple-home .studio-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 30px 22px;
}

.simple-home .studio-card-head .eyebrow {
  margin-bottom: 6px;
}

.simple-home .studio-card-head h2 {
  margin: 0;
  color: var(--simple-ink);
  font-size: clamp(1.8rem, 2.7vw, 2.55rem);
  font-weight: 650;
  letter-spacing: -0.045em;
  line-height: 1;
}

.simple-home .studio-card-head > span {
  flex: 0 0 auto;
  padding: 7px 10px;
  border: 1px solid var(--simple-line);
  border-radius: 999px;
  background: #f8f6f1;
  color: var(--simple-muted);
  font-size: 0.76rem;
  font-weight: 800;
}

.simple-home .mini-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0;
  padding: 0 30px 22px;
  list-style: none;
}

.simple-home .mini-steps li {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-right: 10px;
  color: var(--simple-muted);
  font-size: 0.8rem;
  font-weight: 750;
}

.simple-home .mini-steps li::after {
  content: "";
  height: 1px;
  flex: 1;
  background: var(--simple-line);
}

.simple-home .mini-steps li:last-child::after {
  display: none;
}

.simple-home .mini-steps strong,
.simple-home .flow-heading > span {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--simple-ink);
  color: #fff;
  font-size: 0.74rem;
  font-weight: 850;
}

.simple-home .model-form {
  width: auto;
  max-width: none;
  margin: 0;
  padding: 0 30px 30px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.simple-home .simple-flow {
  border: 1px solid var(--simple-line);
  border-radius: 20px;
  background: #fbfaf7;
}

.simple-home .flow-step {
  padding: 24px;
  border-bottom: 1px solid var(--simple-line);
}

.simple-home .flow-step:last-child {
  border-bottom: 0;
}

.simple-home .flow-heading {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 17px;
}

.simple-home .flow-heading h3,
.simple-home .flow-heading p {
  margin: 0;
}

.simple-home .flow-heading h3 {
  color: var(--simple-ink);
  font-size: 1.04rem;
  font-weight: 800;
  letter-spacing: -0.015em;
}

.simple-home .flow-heading p {
  margin-top: 3px;
  color: var(--simple-muted);
  font-size: 0.84rem;
  line-height: 1.45;
}

.simple-home .source-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.simple-home .source-card,
.simple-home .source-primary .source-card {
  min-height: 112px;
  display: grid;
  align-content: center;
  gap: 4px;
  padding: 16px;
  border: 1px solid var(--simple-line);
  border-radius: 15px;
  background: var(--simple-surface);
  color: var(--simple-ink);
  box-shadow: none;
  transform: none;
}

.simple-home .source-card:hover,
.simple-home .source-card:focus-within {
  border-color: var(--simple-ink);
  box-shadow: 0 10px 28px rgba(23, 24, 22, 0.07);
  transform: none;
}

.simple-home .source-card strong {
  color: var(--simple-ink);
  font-size: 0.92rem;
}

.simple-home .source-card small {
  color: var(--simple-muted);
  font-size: 0.75rem;
  font-weight: 650;
}

.simple-home .upload-symbol {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  margin-bottom: 5px;
  border-radius: 9px;
  background: var(--simple-ink);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
}

.simple-home .camera-symbol {
  background: var(--simple-soft);
  color: var(--simple-ink);
  font-size: 0.58rem;
}

.simple-home .source-more,
.simple-home .data-disclosure,
.simple-home .creator-customizer {
  margin-top: 12px;
  border: 1px solid var(--simple-line);
  border-radius: 13px;
  background: var(--simple-surface);
}

.simple-home .source-more > summary,
.simple-home .data-disclosure > summary,
.simple-home .creator-customizer > summary {
  min-height: 44px;
  padding: 11px 13px;
  color: var(--simple-muted);
  font-size: 0.8rem;
  font-weight: 750;
}

.simple-home .source-more[open] > summary,
.simple-home .data-disclosure[open] > summary,
.simple-home .creator-customizer[open] > summary {
  border-bottom-color: var(--simple-line);
}

.simple-home .source-secondary {
  padding: 12px;
}

.simple-home .source-secondary .source-card {
  min-height: 124px;
}

.simple-home .source-more .product-prompt {
  margin: 0;
  padding: 0 12px 12px;
}

.simple-home .source-card input:not([type="file"]),
.simple-home .product-prompt input {
  min-height: 42px;
  margin-top: 8px;
  border-color: var(--simple-line);
  border-radius: 10px;
  background: #fff;
}

.simple-home .file-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
}

.simple-home .file-list:empty {
  display: none;
}

.simple-home .file-list span {
  max-width: 100%;
  padding: 6px 9px;
  border-radius: 8px;
  background: var(--simple-soft);
  color: var(--simple-muted);
  font-size: 0.72rem;
  overflow-wrap: anywhere;
}

.simple-home .reference-inline {
  display: grid;
  grid-template-columns: 66px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  margin-top: 12px;
  padding: 10px;
  border: 1px solid var(--simple-line);
  border-radius: 14px;
  background: var(--simple-surface);
}

.simple-home .reference-inline:has(.source-preview.empty) {
  display: none;
}

.simple-home .source-preview {
  min-height: 0;
  width: 66px;
  height: 66px;
  aspect-ratio: 1;
  padding: 6px;
  border: 0;
  border-radius: 11px;
  background: var(--simple-soft);
  color: #8a8a84;
  font-size: 0.65rem;
}

.simple-home .reference-inline strong {
  display: block;
  color: var(--simple-ink);
  font-size: 0.82rem;
}

.simple-home #preview-state {
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: var(--simple-ink);
  font-size: 0.82rem;
  font-weight: 800;
}

.simple-home .reference-inline p {
  margin: 3px 0 0;
  color: var(--simple-muted);
  font-size: 0.75rem;
  line-height: 1.42;
}

.simple-home .style-choice-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.simple-home .style-choice {
  min-height: 72px;
  display: grid;
  align-content: center;
  gap: 2px;
  padding: 11px;
  border: 1px solid var(--simple-line);
  border-radius: 13px;
  background: var(--simple-surface);
  color: var(--simple-muted);
  box-shadow: none;
}

.simple-home .style-choice strong {
  color: var(--simple-ink);
  font-size: 0.85rem;
}

.simple-home .style-choice small {
  color: var(--simple-muted);
  font-size: 0.7rem;
  font-weight: 650;
}

.simple-home .style-choice:has(input:checked) {
  border-color: var(--simple-ink);
  background: var(--simple-ink);
  box-shadow: none;
}

.simple-home .style-choice:has(input:checked) strong,
.simple-home .style-choice:has(input:checked) small {
  color: #fff;
}

.simple-home .preview-consent {
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 10px;
  padding: 12px;
  border: 1px solid var(--simple-line);
  border-radius: 13px;
  background: var(--simple-surface);
  color: var(--simple-muted);
  font-size: 0.78rem;
  font-weight: 650;
  line-height: 1.45;
}

.simple-home .preview-consent input {
  width: 18px;
  min-height: 18px;
  accent-color: var(--simple-ink);
}

.simple-home .preview-consent.needs-attention {
  border-color: var(--simple-danger);
  background: #fff6f2;
  box-shadow: 0 0 0 3px rgba(164, 58, 33, 0.08);
}

.simple-home .create-step .form-actions {
  margin-top: 12px;
}

.simple-home .create-step .button {
  width: 100%;
  min-height: 54px;
}

.simple-home .form-status {
  margin: 10px 0 0;
  font-size: 0.8rem;
}

.simple-home .generation-progress {
  border-color: var(--simple-line);
  border-radius: 13px;
  background: var(--simple-surface);
}

.simple-home .progress-track {
  height: 9px;
  background: var(--simple-soft);
}

.simple-home .progress-track span {
  background: var(--simple-accent);
}

.simple-home .free-preview-output,
.simple-home .render-output {
  gap: 8px;
  margin-top: 14px;
}

.simple-home .free-preview-output img,
.simple-home .render-output img {
  border-radius: 13px;
}

.simple-home .preview-upsell {
  border-color: var(--simple-line);
  border-radius: 13px;
  background: #eef4f0;
}

.simple-home .preview-upsell a {
  color: var(--simple-accent);
}

.simple-home .data-disclosure p {
  padding: 12px 13px;
  color: var(--simple-muted);
  font-size: 0.76rem;
  line-height: 1.5;
}

.simple-home .upgrade-details {
  display: block;
  margin-top: 14px;
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 0;
}

.simple-home .creator-drawer {
  overflow: hidden;
  border: 1px solid var(--simple-line);
  border-radius: 17px;
  background: #f5f3ee;
}

.simple-home .creator-drawer > summary {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 18px;
  cursor: pointer;
  list-style: none;
}

.simple-home .creator-drawer > summary::-webkit-details-marker {
  display: none;
}

.simple-home .creator-drawer[open] > summary {
  border-bottom: 1px solid var(--simple-line);
}

.simple-home .creator-summary-copy {
  display: grid;
  gap: 2px;
}

.simple-home .creator-summary-copy strong {
  color: var(--simple-ink);
  font-size: 0.98rem;
}

.simple-home .creator-summary-copy small {
  color: var(--simple-muted);
  font-size: 0.75rem;
  font-weight: 650;
}

.simple-home .creator-label {
  color: var(--simple-accent);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.simple-home .summary-action {
  flex: 0 0 auto;
  padding: 7px 10px;
  border: 1px solid var(--simple-line);
  border-radius: 9px;
  background: var(--simple-surface);
  color: var(--simple-ink);
  font-size: 0.72rem;
  font-weight: 800;
}

.simple-home .creator-drawer[open] .summary-action {
  font-size: 0;
}

.simple-home .creator-drawer[open] .summary-action::after {
  content: "Hide";
  font-size: 0.72rem;
}

.simple-home .creator-plan-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 22px;
  margin: 0;
  padding: 22px;
  border-radius: 0;
  background: var(--simple-surface);
  color: var(--simple-ink);
  box-shadow: none;
}

.simple-home .creator-plan-copy h2 {
  max-width: 520px;
  margin: 0 0 12px;
  color: var(--simple-ink);
  font-size: clamp(2rem, 3.7vw, 3.2rem);
  font-weight: 650;
  letter-spacing: -0.05em;
  line-height: 1;
}

.simple-home .creator-plan-copy > p {
  color: var(--simple-muted);
  font-size: 0.88rem;
}

.simple-home .creator-plan-copy ul {
  gap: 7px;
  margin: 18px 0;
}

.simple-home .creator-plan-copy li {
  padding-left: 22px;
  color: var(--simple-ink);
  font-size: 0.84rem;
  font-weight: 700;
}

.simple-home .creator-plan-copy li::before {
  color: var(--simple-accent);
}

.simple-home .creator-terms {
  margin: 0;
  padding-top: 16px;
  border-top: 1px solid var(--simple-line);
}

.simple-home .creator-signup {
  width: 100%;
  max-width: none;
  padding: 18px;
  border: 1px solid var(--simple-line);
  border-radius: 15px;
  background: #f8f6f1;
  backdrop-filter: none;
}

.simple-home .creator-signup label {
  color: var(--simple-muted);
}

.simple-home .creator-signup input {
  border-color: var(--simple-line);
  background: var(--simple-surface);
  color: var(--simple-ink);
}

.simple-home .creator-signup .checks label {
  background: var(--simple-surface);
  color: var(--simple-muted);
}

.simple-home .creator-signup .checkout-note {
  color: var(--simple-muted);
}

.simple-home .creator-customizer {
  margin: 0 22px 22px;
  background: var(--simple-surface);
}

.simple-home .creator-customizer > p {
  color: var(--simple-muted);
}

.simple-home #form-status,
.simple-home #render-output {
  margin-right: 22px;
  margin-left: 22px;
}

.simple-home #render-output {
  margin-bottom: 22px;
}

.simple-home .simple-trust {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--simple-line);
  border-bottom: 1px solid var(--simple-line);
}

.simple-home .simple-trust p {
  margin: 0;
  padding: 26px clamp(18px, 3vw, 34px);
  border-right: 1px solid var(--simple-line);
  color: var(--simple-muted);
  font-size: 0.82rem;
  line-height: 1.5;
}

.simple-home .simple-trust p:last-child {
  border-right: 0;
}

.simple-home .simple-trust strong {
  display: block;
  margin-bottom: 5px;
  color: var(--simple-ink);
}

.simple-home .library {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(70px, 9vw, 120px) 0;
}

.simple-home .library-heading {
  max-width: 630px;
  margin-bottom: 28px;
}

.simple-home .library-heading h2 {
  margin: 0;
  color: var(--simple-ink);
  font-size: clamp(2.1rem, 4.5vw, 4rem);
  font-weight: 650;
  letter-spacing: -0.055em;
  line-height: 1;
  text-wrap: balance;
}

.simple-home .library-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.simple-home .library-drawer {
  overflow: hidden;
  align-self: start;
  border: 1px solid var(--simple-line);
  border-radius: 17px;
  background: var(--simple-surface);
}

.simple-home .library-drawer > summary {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  cursor: pointer;
  list-style: none;
}

.simple-home .library-drawer > summary::-webkit-details-marker {
  display: none;
}

.simple-home .library-drawer[open] > summary {
  border-bottom: 1px solid var(--simple-line);
}

.simple-home .library-drawer > summary > span:first-child {
  display: grid;
  gap: 3px;
}

.simple-home .library-drawer > summary strong {
  color: var(--simple-ink);
  font-size: 0.93rem;
}

.simple-home .library-drawer > summary small {
  color: var(--simple-muted);
  font-size: 0.74rem;
  font-weight: 650;
}

.simple-home .library-drawer > summary > span:last-child {
  flex: 0 0 auto;
  color: var(--simple-accent);
  font-size: 0.74rem;
  font-weight: 800;
}

.simple-home .library-content {
  padding: 18px;
}

.simple-home .gallery-toolbar {
  gap: 12px;
  margin: 0;
}

.simple-home .gallery-toolbar p {
  color: var(--simple-muted);
  font-size: 0.78rem;
}

.simple-home .gallery-toolbar button {
  border-color: var(--simple-line);
  background: #f8f6f1;
}

.simple-home .gallery-output {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.simple-home .account-panel {
  grid-template-columns: minmax(0, 1fr);
  gap: 12px;
}

.simple-home .account-login,
.simple-home .account-history-output {
  padding: 0;
  border: 0;
  background: transparent;
}

.simple-home .account-login input {
  border-color: var(--simple-line);
  background: #fff;
}

.simple-home .footer {
  padding: 30px max(20px, calc((100vw - 1120px) / 2));
  border-top: 1px solid var(--simple-line);
  background: var(--simple-surface);
  color: var(--simple-ink);
}

.simple-home .footer div {
  gap: 18px;
  color: var(--simple-muted);
  font-size: 0.82rem;
}

.simple-home a:focus-visible,
.simple-home button:focus-visible,
.simple-home input:focus-visible,
.simple-home select:focus-visible,
.simple-home textarea:focus-visible,
.simple-home summary:focus-visible {
  outline: 3px solid rgba(31, 89, 70, 0.3);
  outline-offset: 3px;
}

@media (min-width: 1100px) {
  .simple-home .creator-plan-card {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.82fr);
  }
}

@media (max-width: 1080px) {
  .simple-home .workspace-grid {
    grid-template-columns: minmax(0, 1fr);
    width: min(760px, 100%);
  }

  .simple-home .hero-intro {
    position: static;
    padding-top: 0;
  }

  .simple-home .hero-intro h1,
  .simple-home .hero-lede {
    max-width: 680px;
  }

  .simple-home .example-strip {
    max-width: 580px;
  }
}

@media (max-width: 700px) {
  html {
    scroll-padding-top: 66px;
  }

  .simple-home .topbar {
    min-height: 62px;
    padding: 10px 14px;
  }

  .simple-home .topbar nav a {
    min-height: 40px;
    padding: 0 12px;
  }

  .simple-home .workspace-hero {
    padding: 34px 14px 60px;
  }

  .simple-home .workspace-grid {
    gap: 38px;
  }

  .simple-home .hero-intro h1 {
    font-size: clamp(2.85rem, 13vw, 4rem);
    letter-spacing: -0.06em;
    line-height: 0.96;
  }

  .simple-home .hero-lede {
    margin-top: 18px;
    font-size: 0.98rem;
    line-height: 1.52;
  }

  .simple-home .hero-button {
    width: 100%;
    margin-top: 22px;
  }

  .simple-home .hero-assurance {
    justify-content: center;
    gap: 7px 12px;
    font-size: 0.72rem;
  }

  .simple-home .example-strip {
    margin-top: 28px;
    gap: 7px;
  }

  .simple-home .example-strip figure {
    border-radius: 13px;
    aspect-ratio: 0.82;
  }

  .simple-home .example-strip figure:nth-child(2) {
    transform: translateY(8px);
  }

  .simple-home .example-strip figcaption {
    right: 5px;
    bottom: 5px;
    left: 5px;
    padding: 5px 4px;
    border-radius: 7px;
    font-size: 0.62rem;
  }

  .simple-home .studio-card {
    border-radius: 22px;
  }

  .simple-home .studio-card-head {
    padding: 21px 18px 17px;
  }

  .simple-home .studio-card-head h2 {
    font-size: 1.8rem;
  }

  .simple-home .studio-card-head > span {
    padding: 6px 8px;
    font-size: 0.68rem;
  }

  .simple-home .mini-steps {
    padding: 0 18px 18px;
  }

  .simple-home .mini-steps li {
    gap: 6px;
    padding-right: 6px;
    font-size: 0.7rem;
  }

  .simple-home .mini-steps strong,
  .simple-home .flow-heading > span {
    width: 24px;
    height: 24px;
    font-size: 0.68rem;
  }

  .simple-home .model-form {
    padding: 0 12px 12px;
  }

  .simple-home .simple-flow {
    border-radius: 16px;
  }

  .simple-home .flow-step {
    padding: 18px 14px;
  }

  .simple-home .source-actions.source-primary {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .simple-home .source-primary .source-card {
    min-height: 108px;
    padding: 13px;
  }

  .simple-home .source-secondary {
    grid-template-columns: minmax(0, 1fr);
  }

  .simple-home .style-choice-list {
    gap: 6px;
  }

  .simple-home .style-choice {
    min-height: 62px;
    padding: 9px 6px;
    text-align: center;
  }

  .simple-home .style-choice strong {
    font-size: 0.76rem;
  }

  .simple-home .style-choice small {
    font-size: 0.62rem;
  }

  .simple-home .free-preview-output.is-split-previews {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .simple-home .creator-drawer > summary {
    min-height: 84px;
    padding: 14px;
  }

  .simple-home .creator-summary-copy small {
    max-width: 220px;
  }

  .simple-home .summary-action {
    padding: 6px 8px;
  }

  .simple-home .creator-plan-card {
    padding: 18px 14px;
  }

  .simple-home .creator-plan-copy h2 {
    font-size: 2.15rem;
  }

  .simple-home .creator-signup {
    padding: 14px;
  }

  .simple-home .creator-customizer {
    margin: 0 14px 14px;
  }

  .simple-home #form-status,
  .simple-home #render-output {
    margin-right: 14px;
    margin-left: 14px;
  }

  .simple-home .simple-trust {
    width: calc(100% - 28px);
    grid-template-columns: minmax(0, 1fr);
  }

  .simple-home .simple-trust p {
    padding: 18px 4px;
    border-right: 0;
    border-bottom: 1px solid var(--simple-line);
  }

  .simple-home .simple-trust p:last-child {
    border-bottom: 0;
  }

  .simple-home .library {
    width: calc(100% - 28px);
    padding: 64px 0;
  }

  .simple-home .library-heading h2 {
    font-size: 2.5rem;
  }

  .simple-home .library-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .simple-home .library-drawer > summary {
    min-height: 76px;
    padding: 14px;
  }

  .simple-home .library-content {
    padding: 14px;
  }

  .simple-home .footer {
    align-items: flex-start;
    flex-direction: column;
    padding: 26px 18px;
  }

  .simple-home .footer div {
    align-items: flex-start;
    flex-direction: row;
    flex-wrap: wrap;
  }
}

@media (max-width: 430px) {
  .simple-home .topbar .quiet-link {
    display: none;
  }

  .simple-home .hero-intro h1 {
    font-size: clamp(2.72rem, 13vw, 3.5rem);
  }

  .simple-home .hero-assurance {
    justify-content: flex-start;
  }

  .simple-home .source-card strong {
    font-size: 0.82rem;
  }

  .simple-home .source-card small {
    font-size: 0.67rem;
  }

  .simple-home .creator-summary-copy strong {
    font-size: 0.9rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .simple-home .example-strip figure:nth-child(2) {
    transform: none;
  }
}
