:root {
  --primary: #007c83;
  --primary-dark: #004e55;
  --primary-soft: #dff7f5;
  --navy: #10233f;
  --coral: #ff5a3d;
  --coral-dark: #d9432b;
  --coral-soft: #fff1ed;
  --whatsapp: #18b66a;
  --gold: #ffc857;
  --purple: #8a5cf6;
  --bg: #f8faf7;
  --warm: #fff8f1;
  --surface: #ffffff;
  --mint: #f0fbf9;
  --border: #d9e7e4;
  --border-strong: #afcac6;
  --muted: #5d6a78;
  --soft: #7a8794;
  --shadow: 0 16px 48px rgba(16, 35, 63, 0.1);
  --shadow-soft: 0 10px 28px rgba(16, 35, 63, 0.08);
  --font-display: "Space Grotesk", sans-serif;
  --font-body: "Inter", sans-serif;
  --font-bn: "Hind Siliguri", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(90deg, rgba(0, 124, 131, 0.035) 1px, transparent 1px),
    linear-gradient(rgba(0, 124, 131, 0.035) 1px, transparent 1px),
    var(--bg);
  background-size: 28px 28px;
  color: var(--navy);
  font-family: var(--font-body);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

button,
input {
  font: inherit;
}

a {
  color: inherit;
}

:focus-visible {
  outline: 3px solid rgba(255, 90, 61, 0.6);
  outline-offset: 3px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: 245px auto;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  min-height: 72px;
  padding: 10px clamp(18px, 4vw, 42px);
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
}

.brand img {
  width: 230px;
}

.header-actions,
.hero-actions,
.preview-actions,
.cta-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.icon-link {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.icon-link img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 14px;
  color: var(--navy);
  background: var(--surface);
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.button:hover:not(:disabled) {
  transform: translateY(-1px);
  box-shadow: var(--shadow-soft);
}

.button:disabled {
  cursor: wait;
  opacity: 0.65;
}

.button img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.button-teal {
  color: #fff;
  background: linear-gradient(180deg, #07989d, var(--primary));
}

.button-coral {
  color: #fff;
  background: linear-gradient(180deg, #ff6b51, var(--coral));
}

.button-coral:hover:not(:disabled) {
  background: var(--coral-dark);
}

.button-outline {
  color: var(--primary);
  border-color: var(--border-strong);
  background: rgba(255, 255, 255, 0.84);
}

.button-whatsapp {
  color: #fff;
  background: var(--whatsapp);
}

.section-shell {
  width: min(100% - 40px, 1240px);
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(420px, 1.12fr);
  align-items: center;
  gap: 48px;
  padding: 54px 0 40px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--primary);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--navy);
  font-family: var(--font-display);
  letter-spacing: 0;
}

.hero h1 {
  font-size: clamp(48px, 6vw, 76px);
  line-height: 1.02;
}

.hero h1 span {
  color: var(--primary);
}

.lede {
  max-width: 530px;
  margin: 18px 0 22px;
  color: #3c4c5f;
  font-size: 18px;
}

.trust-chips,
.micro-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.trust-chips span,
.micro-trust span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--navy);
  font-size: 13px;
  font-weight: 700;
}

.trust-chips span {
  padding: 9px 12px;
}

.trust-chips img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.hero-actions {
  margin: 26px 0;
}

.hero-actions .button {
  width: min(100%, 220px);
}

.micro-trust {
  gap: 16px 22px;
}

.micro-trust span {
  border: 0;
  background: transparent;
  color: var(--muted);
  min-height: 32px;
  font-size: 12px;
}

.micro-trust img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.hero-visual {
  min-width: 0;
}

.hero-board {
  width: 100%;
  border-radius: 24px;
  filter: drop-shadow(0 24px 34px rgba(16, 35, 63, 0.12));
}

.angle-strip,
.thumb-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.angle-strip {
  margin-top: 14px;
}

.angle-strip button,
.thumb-row button {
  min-width: 0;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--surface);
  cursor: pointer;
}

.angle-strip button {
  padding: 6px 8px 8px;
}

.angle-strip button.active,
.thumb-row button.active {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0, 124, 131, 0.12);
}

.angle-strip img,
.thumb-row img {
  width: 100%;
  height: 70px;
  object-fit: contain;
}

.angle-strip span {
  display: block;
  color: var(--primary);
  font-size: 12px;
  font-weight: 800;
  text-align: center;
}

.builder-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.94fr);
  gap: 18px;
  padding: 20px 0 42px;
}

.builder-card,
.preview-card,
.process,
.worlds,
.pricing,
.trust-strip,
.final-cta {
  border: 1px solid var(--border);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-soft);
}

.builder-card,
.preview-card {
  padding: 22px;
}

.preview-card {
  position: sticky;
  top: 92px;
  align-self: start;
}

.section-title {
  margin-bottom: 22px;
  text-align: center;
}

.section-title.compact {
  margin-bottom: 16px;
  text-align: left;
}

.section-title h2,
.preview-head h2 {
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.08;
}

.step {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 16px;
  align-items: center;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: linear-gradient(180deg, #fff, rgba(240, 251, 249, 0.45));
}

.step + .step {
  margin-top: 10px;
}

.step-label {
  display: flex;
  align-items: center;
  gap: 10px;
}

.step-label span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  color: #fff;
  background: var(--primary);
  font-family: var(--font-display);
  font-weight: 800;
}

.step-label strong,
.step-label small {
  display: block;
}

.step-label strong {
  font-size: 13px;
}

.step-label small {
  color: var(--soft);
  font-size: 11px;
}

.choice-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.choice {
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--muted);
  background: #fff;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}

.choice.active {
  color: #fff;
  border-color: var(--primary);
  background: var(--primary);
}

.custom-quantity {
  display: grid;
  grid-template-columns: auto minmax(62px, 86px) 34px;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 0 5px 0 12px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #fff;
  transition: background 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.custom-quantity:focus-within {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0, 124, 131, 0.12);
}

.custom-quantity.is-active {
  border-color: var(--primary);
  background: var(--primary);
  box-shadow: 0 0 0 3px rgba(0, 124, 131, 0.14);
}

.custom-quantity.has-draft:not(.is-active) {
  border-color: var(--primary);
}

.custom-quantity span {
  color: var(--primary);
  font-size: 12px;
  font-weight: 800;
}

.custom-quantity.is-active span {
  color: #fff;
}

.custom-quantity input {
  width: 100%;
  min-height: 28px;
  border: 0;
  border-left: 1px solid var(--border);
  padding: 0 0 0 8px;
  color: var(--navy);
  background: transparent;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  outline: 0;
}

.custom-quantity.is-active input {
  color: #fff;
  border-left-color: rgba(255, 255, 255, 0.34);
}

.custom-quantity input::placeholder {
  color: var(--muted);
}

.custom-quantity.is-active input::placeholder {
  color: rgba(255, 255, 255, 0.72);
}

.custom-quantity-confirm {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 8px;
  background: rgba(0, 124, 131, 0.1);
  cursor: pointer;
}

.custom-quantity-confirm img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.custom-quantity.is-active .custom-quantity-confirm {
  background: rgba(255, 255, 255, 0.18);
}

.swatches {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  align-items: center;
}

.swatch {
  position: relative;
  width: 31px;
  height: 31px;
  border: 2px solid #fff;
  border-radius: 50%;
  background: var(--swatch);
  box-shadow: 0 0 0 1px var(--border), inset 0 0 0 1px rgba(16, 35, 63, 0.08);
  cursor: pointer;
}

.swatch.active {
  box-shadow: 0 0 0 3px rgba(0, 124, 131, 0.22), 0 0 0 1px var(--primary);
}

.swatch-original {
  width: auto;
  min-width: 94px;
  padding: 0 13px 0 36px;
  border-radius: 999px;
  background:
    linear-gradient(45deg, rgba(0, 124, 131, 0.14) 25%, transparent 25% 75%, rgba(0, 124, 131, 0.14) 75%),
    linear-gradient(45deg, rgba(0, 124, 131, 0.14) 25%, transparent 25% 75%, rgba(0, 124, 131, 0.14) 75%),
    #fff;
  background-position: 0 0, 6px 6px, 0 0;
  background-size: 12px 12px, 12px 12px, auto;
}

.swatch-original::before {
  content: "";
  position: absolute;
  left: 9px;
  top: 50%;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  transform: translateY(-50%);
  border: 1px solid rgba(16, 35, 63, 0.18);
  background:
    linear-gradient(45deg, #e9f7f5 25%, transparent 25% 75%, #e9f7f5 75%),
    linear-gradient(45deg, #e9f7f5 25%, transparent 25% 75%, #e9f7f5 75%),
    #fff;
  background-position: 0 0, 4px 4px, 0 0;
  background-size: 8px 8px, 8px 8px, auto;
}

.swatch span {
  position: absolute;
  width: 1px;
  height: 1px;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  overflow: hidden;
}

.swatch.swatch-original span {
  position: static;
  display: block;
  width: auto;
  height: auto;
  clip: auto;
  clip-path: none;
  overflow: visible;
  font-size: 0.73rem;
  font-weight: 800;
  line-height: 27px;
  color: var(--navy);
}

.upload-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.upload-box {
  position: relative;
  min-height: 96px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 5px;
  border: 1px dashed var(--border-strong);
  border-radius: 12px;
  background: linear-gradient(180deg, #fff 0%, #f8fffd 100%);
  text-align: center;
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.upload-box:hover,
.upload-box:focus-within {
  transform: translateY(-1px);
  border-color: var(--primary);
  box-shadow: 0 14px 28px rgba(16, 35, 63, 0.08);
}

.upload-box input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  font-size: 0;
}

.upload-box img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.upload-box strong {
  color: var(--primary);
  font-size: 13px;
  font-weight: 800;
}

.upload-box small {
  color: var(--soft);
  font-size: 10px;
}

.upload-status,
.error-message {
  min-height: 20px;
  margin: 8px 2px 0;
  color: var(--muted);
  font-size: 12px;
}

.error-message {
  color: #bb2b1f;
  font-weight: 700;
}

.generate {
  width: 100%;
  min-height: 64px;
  flex-direction: column;
  margin-top: 14px;
}

.generate small {
  color: rgba(255, 255, 255, 0.88);
  font-size: 11px;
}

.preview-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: start;
  margin-bottom: 14px;
}

#preview-status {
  padding: 8px 12px;
  border-radius: 10px;
  color: var(--primary);
  background: var(--primary-soft);
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.canvas-frame {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  background:
    radial-gradient(circle at 50% 86%, rgba(16, 35, 63, 0.14), transparent 30%),
    linear-gradient(180deg, #ffffff, #f4fbfa);
}

#preview-canvas {
  width: 100%;
  aspect-ratio: 1.315 / 1;
  display: block;
}

.loading {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  gap: 10px;
  text-align: center;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.82);
}

.loading[hidden] {
  display: none;
}

.loader {
  width: 54px;
  height: 54px;
  margin: 0 auto;
  border: 5px solid var(--primary-soft);
  border-top-color: var(--coral);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.thumb-row {
  margin: 14px 0;
}

.thumb-row button {
  padding: 5px;
}

.preview-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 14px;
}

.summary-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 18px;
  margin: 0;
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: 14px;
}

.summary-list div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 2px;
  border-bottom: 1px solid rgba(217, 231, 228, 0.75);
}

.summary-list dt {
  color: var(--primary);
  font-size: 12px;
  font-weight: 800;
  flex: 0 0 auto;
}

.summary-list dd {
  margin: 0;
  color: var(--navy);
  font-size: 12px;
  font-weight: 700;
  text-align: right;
  min-width: 0;
}

.disclaimer {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 12px 0 0;
  padding: 10px 12px;
  border: 1px solid #bfe8df;
  border-radius: 12px;
  color: #357166;
  background: var(--mint);
  font-size: 12px;
}

.disclaimer img {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
}

.handoff-modal {
  width: min(92vw, 470px);
  padding: 0;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: var(--navy);
}

.handoff-modal::backdrop {
  background: rgba(16, 35, 63, 0.48);
  backdrop-filter: blur(5px);
}

.handoff-panel {
  position: relative;
  padding: 24px;
  border: 1px solid var(--border-strong);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(16, 35, 63, 0.24);
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: #fff;
  color: var(--muted);
  font: inherit;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}

.handoff-panel h2 {
  max-width: 330px;
  margin: 5px 0 8px;
  font-size: clamp(1.55rem, 4vw, 2.05rem);
  line-height: 1.03;
}

.handoff-copy,
.handoff-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.handoff-actions {
  display: grid;
  gap: 10px;
  margin: 18px 0 12px;
}

.handoff-option {
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: center;
  gap: 12px;
  min-height: 74px;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #f8fffd;
  color: var(--navy);
  text-decoration: none;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.handoff-option:hover,
.handoff-option:focus-visible {
  transform: translateY(-1px);
  border-color: var(--primary);
  box-shadow: 0 12px 28px rgba(16, 35, 63, 0.12);
}

.handoff-option img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.handoff-option span {
  display: grid;
  gap: 3px;
}

.handoff-option strong {
  font-size: 1rem;
}

.handoff-option small {
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.25;
}

.handoff-option.whatsapp {
  background: rgba(24, 182, 106, 0.08);
}

.handoff-option.messenger {
  background: rgba(0, 124, 255, 0.07);
}

.process,
.worlds {
  padding: 28px;
  margin-bottom: 24px;
}

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

.process-grid article {
  position: relative;
  text-align: center;
}

.process-grid img {
  width: 76px;
  height: 76px;
  object-fit: contain;
  margin: 0 auto 8px;
}

.process-grid h3,
.world-grid h3 {
  font-size: 18px;
}

.process-grid p,
.world-grid p {
  margin: 4px auto 0;
  color: var(--muted);
  font-size: 13px;
}

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

.world-grid article {
  padding: 10px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: #fff;
  text-align: center;
}

.world-grid img {
  width: 100%;
  aspect-ratio: 1.45 / 1;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 10px;
}

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

.price-card {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 14px;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--border-strong);
  border-radius: 18px;
}

.price-card.mint {
  background: var(--mint);
}

.price-card.coral {
  background: var(--coral-soft);
}

.price-card.purple {
  background: #fbf7ff;
  border-color: rgba(138, 92, 246, 0.32);
}

.price-card img {
  width: 82px;
  height: 82px;
  object-fit: contain;
}

.price-card h3 {
  font-size: 20px;
}

.price-card strong {
  color: var(--coral);
  font-family: var(--font-display);
  font-size: 34px;
  line-height: 1;
}

.price-card span {
  display: block;
  color: var(--navy);
}

.price-card ul {
  grid-column: 2;
  margin: 0;
  padding-left: 18px;
  color: var(--navy);
  font-size: 13px;
}

.pricing-note {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--primary-dark);
  font-family: var(--font-bn);
  font-weight: 700;
  text-align: center;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  padding: 16px;
  margin-bottom: 24px;
  background: var(--mint);
}

.trust-strip article {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 10px;
  align-items: center;
  padding: 8px 14px;
  border-right: 1px solid var(--border-strong);
}

.trust-strip article:last-child {
  border-right: 0;
}

.trust-strip img {
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip strong {
  color: var(--primary-dark);
  font-size: 13px;
}

.trust-strip span {
  color: var(--muted);
  font-size: 12px;
}

.final-cta {
  display: grid;
  grid-template-columns: 250px 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 18px 28px;
  margin-bottom: 28px;
}

.final-cta > img {
  width: 240px;
  max-height: 150px;
  object-fit: contain;
}

.final-cta h2 {
  font-size: clamp(28px, 3.4vw, 46px);
}

.final-cta p:last-child {
  margin: 8px 0 0;
  color: var(--muted);
}

.cta-actions {
  display: grid;
  min-width: 280px;
}

.site-footer {
  width: min(100% - 40px, 1240px);
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 0.9fr 0.8fr;
  gap: 26px;
  margin: 0 auto 26px;
  padding: 22px 0 0;
  border-top: 1px solid var(--border);
}

.footer-logo {
  width: 250px;
  margin-bottom: 8px;
}

.site-footer p,
.site-footer a {
  display: block;
  margin: 5px 0;
  color: var(--muted);
  font-size: 13px;
  text-decoration: none;
}

.site-footer strong {
  color: var(--navy);
}

.socials {
  display: flex;
  gap: 9px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.socials img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.mobile-sticky {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 60;
  display: none;
  align-items: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 16px;
  border-radius: 999px;
  color: #fff;
  background: var(--whatsapp);
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 14px 34px rgba(24, 182, 106, 0.35);
}

.mobile-sticky img {
  width: 28px;
  height: 28px;
}

@media (max-width: 1120px) {
  .site-header {
    grid-template-columns: 220px auto;
  }

  .header-actions {
    justify-content: end;
  }

  .hero,
  .builder-grid,
  .final-cta,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .preview-card {
    position: static;
  }

  .world-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .trust-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust-strip article {
    border-right: 0;
  }
}

@media (max-width: 760px) {
  .section-shell,
  .site-footer {
    width: min(100% - 24px, 1240px);
  }

  .site-header {
    grid-template-columns: 1fr;
    padding: 10px 14px;
    justify-content: stretch;
  }

  .brand img {
    width: min(100%, 260px);
  }

  .header-actions {
    display: grid;
    grid-template-columns: 48px 1fr;
    width: 100%;
  }

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

  .hero h1 {
    font-size: 44px;
  }

  .angle-strip,
  .process-grid,
  .pricing,
  .trust-strip {
    grid-template-columns: 1fr 1fr;
  }

  .builder-card,
  .preview-card,
  .process,
  .worlds {
    padding: 14px;
  }

  .step,
  .upload-grid,
  .summary-list,
  .preview-actions,
  .price-card {
    grid-template-columns: 1fr;
  }

  .step-label {
    align-items: flex-start;
  }

  .world-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .price-card ul {
    grid-column: 1;
  }

  .trust-strip article {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .trust-strip img {
    margin: 0 auto;
  }

  .final-cta {
    text-align: center;
  }

  .final-cta > img {
    margin: 0 auto;
  }

  .cta-actions {
    min-width: 0;
  }

  .mobile-sticky {
    display: none;
  }

  .mobile-sticky.is-visible {
    display: flex;
  }

  body {
    padding-bottom: 76px;
  }
}

@media (max-width: 460px) {
  .hero h1 {
    font-size: 38px;
  }

  .angle-strip,
  .process-grid,
  .world-grid,
  .pricing,
  .trust-strip {
    grid-template-columns: 1fr;
  }

  .thumb-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .angle-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .angle-strip img,
  .thumb-row img {
    height: 86px;
  }

  .summary-list div {
    display: grid;
  }

  .summary-list dd {
    text-align: left;
  }
}
