:root {
  --paper: #f4f1e8;
  --ink: #11120f;
  --signal: #d9ff45;
  --blue: #4357ff;
  --coral: #ff7051;
  --surface: #fffefa;
  --muted: #62665f;
  --line: rgba(17, 18, 15, 0.16);
  --soft-line: rgba(17, 18, 15, 0.09);
  --shadow: 0 28px 70px rgba(22, 23, 18, 0.13);
  --font-body: var(--font-geist-sans, -apple-system), BlinkMacSystemFont, "Apple SD Gothic Neo", "Noto Sans KR", Arial, sans-serif;
  --font-mono: var(--font-geist-mono, "SFMono-Regular"), Consolas, monospace;
}

[hidden] {
  display: none !important;
}

.shotmerce-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

body.admin-bar .site-header {
  top: 32px;
}

.desktop-nav .shotmerce-menu {
  display: flex;
  align-items: center;
  gap: 32px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-menu-toggle,
.mobile-nav {
  display: none;
}

.content-shell {
  width: min(100% - 48px, 960px);
  min-height: 60vh;
  margin: 0 auto;
  padding: 96px 0;
}

.content-card {
  padding: clamp(28px, 6vw, 64px);
  border: 1px solid var(--line);
  background: var(--surface);
}

.content-card h1 {
  margin-top: 0;
  font-size: clamp(2.6rem, 7vw, 5rem);
  line-height: 0.95;
  letter-spacing: -0.065em;
}

@media (max-width: 782px) {
  body.admin-bar .site-header {
    top: 46px;
  }
}


* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

button,
input,
select {
  font: inherit;
}

button,
a,
label,
summary,
select {
  -webkit-tap-highlight-color: transparent;
}

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

button {
  color: inherit;
}

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

::selection {
  background: var(--signal);
  color: var(--ink);
}

:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 12px 16px;
  background: var(--ink);
  color: white;
  transform: translateY(-180%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  height: 72px;
  border-bottom: 1px solid var(--line);
  background: color-mix(in srgb, var(--paper) 91%, transparent);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: min(100% - 48px, 1320px);
  height: 100%;
  margin: 0 auto;
}

.wordmark {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 10px;
  width: max-content;
  font-size: 20px;
  font-weight: 820;
  letter-spacing: -0.045em;
}

.wordmark-mark {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--signal);
  font-size: 15px;
  letter-spacing: -0.08em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 13px;
  font-weight: 650;
}

.desktop-nav a,
.footer-main nav a {
  position: relative;
}

.desktop-nav a::after,
.footer-main nav a::after {
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.desktop-nav a:hover::after,
.footer-main nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-self: end;
  gap: 12px;
  min-height: 42px;
  padding: 0 17px;
  border: 1.5px solid var(--ink);
  border-radius: 100px;
  background: var(--signal);
  font-size: 13px;
  font-weight: 760;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.header-cta:hover,
.button:hover {
  transform: translateY(-2px);
  box-shadow: 4px 4px 0 var(--ink);
}

.hero-section {
  position: relative;
  overflow: hidden;
  padding: 94px 0 98px;
}

.hero-section::before {
  position: absolute;
  top: -220px;
  left: -190px;
  width: 520px;
  height: 520px;
  border: 1px solid var(--line);
  border-radius: 50%;
  content: "";
}

.hero-section::after {
  position: absolute;
  right: 15%;
  bottom: -52px;
  width: 104px;
  height: 104px;
  background-image: radial-gradient(var(--ink) 1.3px, transparent 1.3px);
  background-size: 10px 10px;
  content: "";
  opacity: 0.38;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(520px, 1.14fr);
  gap: 72px;
  align-items: center;
  width: min(100% - 48px, 1320px);
  margin: 0 auto;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 24px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 720;
  letter-spacing: 0.12em;
}

.eyebrow > span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--coral);
}

.eyebrow.light {
  color: rgba(255, 255, 255, 0.72);
}

.eyebrow.light > span {
  background: var(--signal);
}

.hero-copy h1 {
  margin: 0;
  font-size: clamp(3.4rem, 5.45vw, 5.55rem);
  font-weight: 840;
  line-height: 0.93;
  letter-spacing: -0.075em;
}

.hero-copy h1 span,
.section-intro h2 em,
.waitlist-inner h2 em {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  font-style: italic;
  letter-spacing: -0.06em;
}

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

.hero-subtitle {
  max-width: 590px;
  margin: 29px 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  line-height: 1.56;
  letter-spacing: -0.022em;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 27px;
  margin-top: 36px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  min-height: 56px;
  padding: 0 24px;
  border: 1.5px solid var(--ink);
  border-radius: 3px;
  font-weight: 760;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button-primary {
  background: var(--ink);
  color: white;
}

.button-primary:hover {
  box-shadow: 5px 5px 0 var(--signal);
}

.button-signal {
  background: var(--signal);
  color: var(--ink);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 44px;
  border-bottom: 1px solid var(--ink);
  font-size: 14px;
  font-weight: 720;
}

.proof-list {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin: 34px 0 0;
  padding: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 620;
  list-style: none;
}

.proof-list li {
  display: flex;
  align-items: center;
  gap: 7px;
}

.proof-list li span {
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  border-radius: 50%;
  background: var(--signal);
  color: var(--ink);
  font-size: 10px;
}

.studio-wrap {
  position: relative;
  max-width: 660px;
  justify-self: end;
  width: 100%;
}

.studio-card {
  position: relative;
  z-index: 2;
  min-height: 605px;
  padding: 23px;
  border: 1.5px solid var(--ink);
  border-radius: 10px;
  background: var(--surface);
  box-shadow: 14px 14px 0 var(--ink), var(--shadow);
}

.flash-card {
  position: absolute;
  z-index: 3;
  display: grid;
  width: 66px;
  height: 66px;
  place-items: center;
  border: 1.5px solid var(--ink);
  border-radius: 50%;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 800;
}

.flash-card-blue {
  top: -35px;
  right: 34px;
  background: var(--blue);
  color: white;
  transform: rotate(9deg);
}

.flash-card-coral {
  right: -29px;
  bottom: 80px;
  background: var(--coral);
  transform: rotate(-8deg);
}

.studio-topbar {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  min-height: 61px;
  padding: 3px 2px 18px;
  border-bottom: 1px solid var(--line);
}

.studio-kicker,
.result-heading p {
  margin: 0 0 3px;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 760;
  letter-spacing: 0.13em;
}

.studio-topbar h2 {
  margin: 0;
  font-size: 20px;
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.live-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 100px;
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.09em;
}

.live-pill i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #46b56c;
  box-shadow: 0 0 0 3px rgba(70, 181, 108, 0.16);
}

.live-pill.ai-enabled {
  border-color: var(--blue);
  background: #f0f1ff;
  color: var(--blue);
}

.live-pill.ai-enabled i {
  background: var(--blue);
  box-shadow: 0 0 0 3px rgba(67, 87, 255, 0.16);
}

.upload-state {
  padding: 20px 0 0;
}

.dropzone {
  display: flex;
  min-height: 286px;
  align-items: center;
  justify-content: center;
  padding: 30px;
  border: 1.5px dashed rgba(17, 18, 15, 0.36);
  border-radius: 6px;
  background-color: #f8f7f2;
  background-image: linear-gradient(rgba(17, 18, 15, 0.032) 1px, transparent 1px), linear-gradient(90deg, rgba(17, 18, 15, 0.032) 1px, transparent 1px);
  background-size: 22px 22px;
  cursor: pointer;
  flex-direction: column;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.dropzone:hover,
.dropzone.is-dragging,
.dropzone:has(+ .sr-only-file:focus-visible) {
  border-color: var(--blue);
  background-color: #f1f2ff;
  transform: translateY(-2px);
}

.upload-icon {
  display: grid;
  width: 54px;
  height: 54px;
  margin-bottom: 17px;
  place-items: center;
  border: 1.5px solid var(--ink);
  border-radius: 50%;
  background: var(--signal);
  font-size: 25px;
  font-weight: 300;
}

.dropzone strong {
  font-size: 16px;
  letter-spacing: -0.02em;
}

.dropzone > span:not(.upload-icon) {
  margin-top: 2px;
  color: var(--muted);
  font-size: 13px;
}

.dropzone small {
  margin-top: 13px;
  color: #878a84;
  font-family: var(--font-mono);
  font-size: 9px;
}

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

.sr-only-file:focus + * {
  outline: 3px solid var(--blue);
}

.form-error {
  margin: 10px 0 0;
  color: #b22222;
  font-size: 12px;
  font-weight: 650;
}

.generation-error {
  padding: 10px 12px;
  border: 1px solid rgba(178, 34, 34, 0.28);
  border-radius: 4px;
  background: rgba(178, 34, 34, 0.06);
  text-align: center;
}

.or-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 16px 0;
  color: #92948f;
  font-family: var(--font-mono);
  font-size: 9px;
  text-transform: uppercase;
}

.or-divider::before,
.or-divider::after {
  height: 1px;
  background: var(--line);
  content: "";
  flex: 1;
}

.sample-button {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 13px;
  align-items: center;
  width: 100%;
  min-height: 72px;
  padding: 8px 16px 8px 8px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: white;
  text-align: left;
  cursor: pointer;
  transition: border-color 180ms ease, transform 180ms ease;
}

.sample-button:hover {
  border-color: var(--ink);
  transform: translateX(2px);
}

.sample-thumb {
  display: grid;
  height: 54px;
  overflow: hidden;
  place-items: center;
  border-radius: 3px;
  background: #eee8dc;
}

.sample-button > span:nth-child(2) {
  display: flex;
  flex-direction: column;
}

.sample-button strong {
  font-size: 12px;
}

.sample-button small {
  color: var(--muted);
  font-size: 10px;
}

.privacy-note,
.demo-disclosure {
  margin: 13px 0 0;
  color: #797c76;
  font-size: 10px;
  text-align: center;
}

.privacy-note span {
  margin-right: 4px;
  color: var(--blue);
}

.ready-state {
  padding: 20px 0 0;
}

.uploaded-file {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 9px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: #f8f7f2;
}

.uploaded-preview {
  display: grid;
  height: 88px;
  overflow: hidden;
  place-items: center;
  border-radius: 3px;
  background: white;
}

.uploaded-preview img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.uploaded-meta {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.uploaded-meta span {
  color: var(--blue);
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.uploaded-meta strong {
  max-width: 245px;
  margin-top: 4px;
  overflow: hidden;
  font-size: 13px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.uploaded-meta small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 10px;
}

.uploaded-file > button,
.result-heading > button {
  min-height: 38px;
  padding: 0 10px;
  border: 0;
  border-bottom: 1px solid var(--ink);
  background: transparent;
  font-size: 11px;
  font-weight: 730;
  cursor: pointer;
}

.pack-fieldset {
  margin: 20px 0 0;
  padding: 0;
  border: 0;
}

.pack-fieldset legend {
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: 760;
}

.pack-options {
  display: grid;
  gap: 8px;
}

.pack-option {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 11px;
  align-items: center;
  min-height: 65px;
  padding: 10px 13px;
  border: 1px solid var(--line);
  border-radius: 4px;
  cursor: pointer;
  transition: border-color 160ms ease, background 160ms ease;
}

.pack-option.selected {
  border-color: var(--blue);
  background: #f0f1ff;
  box-shadow: inset 3px 0 0 var(--blue);
}

.pack-option:has(input:focus-visible) {
  outline: 3px solid var(--blue);
  outline-offset: 3px;
}

.pack-option input {
  position: absolute;
  opacity: 0;
}

.radio-mark {
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  border: 1px solid #8c8f89;
  border-radius: 50%;
}

.selected .radio-mark::after {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--blue);
  content: "";
}

.pack-option > span:nth-child(3) {
  display: flex;
  flex-direction: column;
}

.pack-option strong {
  font-size: 12px;
}

.pack-option small {
  color: var(--muted);
  font-size: 10px;
}

.pack-option em {
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 9px;
  font-style: normal;
}

.studio-button {
  width: 100%;
  margin-top: 18px;
}

.processing-state {
  display: flex;
  min-height: 510px;
  align-items: center;
  justify-content: center;
  padding: 35px 0 20px;
  flex-direction: column;
}

.processing-visual {
  position: relative;
  display: grid;
  width: 210px;
  height: 250px;
  overflow: hidden;
  place-items: center;
  border: 1px solid var(--line);
  background-color: #f3f1e9;
  background-image: linear-gradient(rgba(17, 18, 15, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(17, 18, 15, 0.04) 1px, transparent 1px);
  background-size: 18px 18px;
}

.processing-visual img {
  width: 86%;
  height: 86%;
  object-fit: contain;
}

.scan-line {
  position: absolute;
  right: 0;
  left: 0;
  height: 2px;
  background: var(--blue);
  box-shadow: 0 0 15px var(--blue);
  animation: scan 1.5s linear infinite alternate;
}

@keyframes scan {
  from { top: 8%; }
  to { top: 92%; }
}

.processing-count {
  margin: 20px 0 0;
  color: var(--blue);
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 800;
}

.processing-state h3 {
  margin: 5px 0 0;
  font-size: 23px;
  letter-spacing: -0.045em;
}

.processing-state > p:not(.processing-count) {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 11px;
}

.progress-track {
  width: min(100%, 330px);
  height: 5px;
  margin-top: 24px;
  overflow: hidden;
  background: #e4e2dc;
}

.progress-track span {
  display: block;
  height: 100%;
  background: var(--blue);
  transition: width 180ms linear;
}

.progress-track span.is-indeterminate {
  width: 36% !important;
  animation: shotmerce-ai-progress 1.4s ease-in-out infinite;
}

@keyframes shotmerce-ai-progress {
  from { transform: translateX(-120%); }
  to { transform: translateX(335%); }
}

.complete-state {
  padding-top: 19px;
}

.result-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.result-heading > div {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 8px;
  align-items: center;
}

.result-heading p {
  align-self: end;
  margin: 0;
  color: #278a4b;
}

.result-heading h3 {
  grid-column: 2;
  margin: 0;
  font-size: 23px;
  letter-spacing: -0.045em;
}

.status-dot {
  grid-row: 1 / 3;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #46b56c;
  box-shadow: 0 0 0 4px rgba(70, 181, 108, 0.15);
}

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

.result-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: white;
}

.result-visual {
  position: relative;
  display: grid;
  height: 135px;
  overflow: hidden;
  place-items: center;
}

.result-visual img {
  position: relative;
  z-index: 1;
  width: 76%;
  height: 76%;
  object-fit: contain;
}

.studio-wrap.is-ai-generated .result-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.studio-wrap.is-ai-generated .banner-copy {
  display: none;
}

.result-card footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 30px;
  padding: 0 9px;
  border-top: 1px solid var(--soft-line);
  background: white;
  font-size: 9px;
  font-weight: 710;
}

.result-card footer em {
  color: var(--muted);
  font-family: var(--font-mono);
  font-style: normal;
}

.scene-white .result-visual {
  background: #fff;
}

.scene-studio .result-visual {
  background: radial-gradient(circle at 50% 85%, #cdc5b5 0 13%, transparent 14%), linear-gradient(145deg, #efe9dd, #d8ccbb);
}

.scene-social .result-visual {
  background: linear-gradient(130deg, #d9ff45 0 48%, #4357ff 49% 100%);
}

.scene-banner .result-visual {
  grid-template-columns: 1fr 1fr;
  padding: 12px;
  background: #ff7051;
}

.scene-banner .result-visual img,
.scene-banner .product-bottle {
  justify-self: end;
}

.banner-copy {
  position: absolute;
  left: 13px;
  color: var(--ink);
  font-size: 16px;
  font-weight: 880;
  line-height: 0.9;
  letter-spacing: -0.07em;
}

.result-disclosure {
  min-height: 16px;
  margin-top: 10px;
}

.channel-rail {
  display: grid;
  grid-template-columns: 0.75fr 2.25fr;
  align-items: center;
  min-height: 118px;
  padding: 0 max(24px, calc((100vw - 1320px) / 2));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.channel-rail > p {
  margin: 0;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.channel-rail > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.channel-rail span {
  font-size: clamp(1rem, 1.8vw, 1.45rem);
  font-weight: 790;
  letter-spacing: -0.045em;
}

.channel-rail i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--line);
}

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

.comparison-section {
  padding: 128px 0;
  background: var(--ink);
  color: white;
}

.comparison-section .section-shell {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 90px;
  align-items: center;
}

.section-intro h2,
.section-heading-row h2 {
  margin: 0;
  font-size: clamp(2.7rem, 4.8vw, 4.6rem);
  line-height: 0.98;
  letter-spacing: -0.065em;
}

.comparison-intro > p:last-child,
.section-heading-row > p,
.faq-intro > p {
  max-width: 460px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.59);
  font-size: 17px;
  line-height: 1.65;
  letter-spacing: -0.02em;
}

.comparison-table {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 7px;
  overflow: hidden;
}

.comparison-column {
  background: rgba(255, 255, 255, 0.035);
}

.comparison-column + .comparison-column {
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.comparison-column > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 67px;
  padding: 0 19px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.comparison-column > div:last-child {
  border-bottom: 0;
}

.comparison-column .comparison-head {
  min-height: 75px;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.comparison-head b {
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  font-family: var(--font-body);
}

.comparison-column > div > span {
  font-size: 13px;
  font-weight: 680;
}

.comparison-column > div > small {
  color: rgba(255, 255, 255, 0.45);
  font-size: 11px;
}

.comparison-column.shotmerce {
  background: var(--signal);
  color: var(--ink);
}

.comparison-column.shotmerce > div {
  border-bottom-color: rgba(17, 18, 15, 0.14);
}

.comparison-column.shotmerce > div > small {
  color: rgba(17, 18, 15, 0.64);
}

.comparison-column.shotmerce .comparison-head b {
  background: var(--ink);
  color: var(--signal);
}

.outputs-section,
.features-section {
  padding: 128px 0;
}

.outputs-section {
  background: var(--paper);
}

.section-heading-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 50px;
  margin-bottom: 56px;
}

.section-heading-row > p {
  max-width: 385px;
  margin: 0 0 7px;
  color: var(--muted);
}

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

.contact-card {
  overflow: hidden;
  border: 1px solid var(--line);
  background: white;
}

.contact-top,
.contact-card footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 38px;
  padding: 0 12px;
  background: white;
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 700;
}

.contact-top {
  border-bottom: 1px solid var(--line);
}

.contact-top em {
  color: var(--muted);
  font-style: normal;
}

.contact-visual {
  position: relative;
  display: grid;
  height: 350px;
  overflow: hidden;
  place-items: center;
}

.contact-card footer {
  height: 56px;
  border-top: 1px solid var(--line);
  font-family: var(--font-body);
}

.contact-card footer strong {
  font-size: 12px;
}

.contact-card footer span {
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 8px;
  text-transform: uppercase;
}

.contact-white .contact-visual {
  background-color: #f9f9f5;
  background-image: linear-gradient(rgba(17, 18, 15, 0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(17, 18, 15, 0.025) 1px, transparent 1px);
  background-size: 26px 26px;
}

.contact-studio .contact-visual {
  background: radial-gradient(ellipse at 50% 83%, rgba(0, 0, 0, 0.23), transparent 28%), linear-gradient(145deg, #eee9dc, #cdc3b2);
}

.contact-lifestyle .contact-visual {
  background: linear-gradient(165deg, #b5c79e 0 51%, #ddc7a5 51% 100%);
}

.contact-detail .contact-visual {
  place-items: end center;
  background: var(--blue);
}

.contact-detail .product-bottle {
  margin-bottom: -19px;
  transform: scale(2.28);
}

.contact-story .contact-visual {
  place-items: end center;
  background: var(--coral);
}

.contact-story .product-bottle {
  margin: 0 0 16px 110px;
  transform: rotate(9deg) scale(0.9);
}

.contact-banner .contact-visual {
  grid-template-columns: 1.1fr 0.9fr;
  padding: 30px;
  background: var(--signal);
}

.contact-banner .product-bottle {
  grid-column: 2;
}

.campaign-copy {
  position: absolute;
  top: 50%;
  left: 25px;
  display: flex;
  align-items: flex-start;
  transform: translateY(-50%);
  flex-direction: column;
}

.campaign-copy small {
  font-family: var(--font-mono);
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.campaign-copy strong {
  margin-top: 10px;
  font-size: 28px;
  line-height: 0.93;
  letter-spacing: -0.07em;
}

.campaign-copy > span {
  margin-top: 22px;
  padding: 8px 11px;
  background: var(--ink);
  color: white;
  font-family: var(--font-mono);
  font-size: 7px;
  font-weight: 700;
}

.story-copy {
  position: absolute;
  top: 28px;
  left: 25px;
  color: var(--ink);
  font-size: 47px;
  font-weight: 900;
  line-height: 0.78;
  letter-spacing: -0.09em;
}

.leaf {
  position: absolute;
  display: block;
  width: 80px;
  height: 150px;
  border-radius: 100% 0 100% 0;
  background: #476544;
  transform: rotate(31deg);
}

.leaf-one {
  top: -46px;
  right: 13px;
}

.leaf-two {
  bottom: -60px;
  left: 8px;
  transform: rotate(210deg);
}

.concept-note {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 11px;
  text-align: right;
}

.product-bottle {
  position: relative;
  z-index: 2;
  display: flex;
  width: 112px;
  height: 210px;
  align-items: center;
  filter: drop-shadow(0 18px 14px rgba(22, 19, 14, 0.22));
  flex-direction: column;
}

.bottle-cap {
  position: relative;
  z-index: 2;
  width: 68px;
  height: 39px;
  border: 1px solid #1c1a18;
  border-radius: 8px 8px 3px 3px;
  background: repeating-linear-gradient(90deg, #24211e 0 3px, #3c3731 3px 5px);
}

.bottle-body {
  display: flex;
  width: 112px;
  height: 172px;
  align-items: center;
  margin-top: -4px;
  padding: 25px 10px 14px;
  border: 1px solid rgba(17, 18, 15, 0.45);
  border-radius: 18px 18px 24px 24px;
  background: linear-gradient(90deg, #e8dfd1, #fffaf0 42%, #d5c8b7);
  box-shadow: inset 8px 0 14px rgba(90, 64, 40, 0.1), inset -8px 0 13px rgba(90, 64, 40, 0.14);
  color: #25231f;
  flex-direction: column;
}

.bottle-brand {
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.17em;
}

.bottle-line {
  width: 18px;
  height: 2px;
  margin: 12px 0;
  background: var(--coral);
}

.bottle-name {
  font-family: Georgia, serif;
  font-size: 16px;
  font-style: italic;
  line-height: 0.95;
  text-align: center;
}

.bottle-meta {
  margin-top: auto;
  font-family: var(--font-mono);
  font-size: 5px;
  letter-spacing: 0.09em;
}

.product-bottle.compact {
  width: 64px;
  height: 118px;
  transform: scale(0.78);
}

.product-bottle.compact .bottle-cap {
  width: 40px;
  height: 23px;
}

.product-bottle.compact .bottle-body {
  width: 64px;
  height: 98px;
  padding: 14px 5px 7px;
  border-radius: 10px 10px 14px 14px;
}

.product-bottle.compact .bottle-brand {
  font-size: 4px;
}

.product-bottle.compact .bottle-line {
  width: 11px;
  height: 1px;
  margin: 6px 0;
}

.product-bottle.compact .bottle-name {
  font-size: 9px;
}

.product-bottle.compact .bottle-meta {
  font-size: 3px;
}

.workflow-section {
  padding: 128px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.section-intro.centered {
  text-align: center;
}

.section-intro.centered .eyebrow {
  justify-content: center;
}

.workflow-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 60px 0 0;
  padding: 0;
  list-style: none;
}

.workflow-grid li {
  position: relative;
  min-height: 420px;
  padding: 22px;
  border: 1px solid var(--line);
  background: var(--paper);
}

.step-number {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 800;
}

.step-art {
  position: relative;
  display: grid;
  height: 220px;
  margin: 20px 0 24px;
  overflow: hidden;
  place-items: center;
  border: 1px solid var(--line);
  background: white;
}

.step-upload::before {
  position: absolute;
  width: 110px;
  height: 140px;
  border: 1px solid var(--ink);
  background: #e7e4db;
  content: "";
  transform: rotate(-7deg);
}

.step-upload span {
  position: relative;
  z-index: 1;
  display: grid;
  width: 110px;
  height: 140px;
  place-items: end start;
  padding: 10px;
  border: 1px solid var(--ink);
  background: var(--coral);
  font-family: var(--font-mono);
  font-size: 8px;
  font-weight: 800;
  transform: rotate(4deg);
}

.step-upload i {
  position: absolute;
  right: 29px;
  bottom: 23px;
  z-index: 2;
  display: grid;
  width: 47px;
  height: 47px;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
  background: var(--signal);
  font-size: 23px;
  font-style: normal;
}

.step-packs {
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-packs i {
  display: grid;
  width: 94px;
  height: 94px;
  place-items: center;
  border: 1px solid var(--ink);
  background: var(--signal);
  font-family: var(--font-mono);
  font-size: 9px;
  font-style: normal;
  font-weight: 800;
}

.step-packs i:nth-child(2) {
  width: 78px;
  height: 110px;
  margin-left: -13px;
  background: var(--blue);
  color: white;
  transform: translateY(9px) rotate(5deg);
}

.step-packs i:nth-child(3) {
  width: 65px;
  height: 126px;
  margin-left: -12px;
  background: var(--coral);
  transform: translateY(-5px) rotate(10deg);
}

.step-export span {
  font-size: 90px;
  font-weight: 850;
  letter-spacing: -0.08em;
}

.step-export i {
  position: absolute;
  right: calc(50% - 60px);
  bottom: 29px;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 50%;
  background: var(--blue);
  color: white;
  font-size: 20px;
  font-style: normal;
}

.workflow-grid h3 {
  margin: 0;
  font-size: 22px;
  letter-spacing: -0.045em;
}

.workflow-grid p {
  max-width: 330px;
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.features-section {
  background: var(--paper);
}

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

.feature-card {
  position: relative;
  min-height: 380px;
  padding: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: white;
}

.feature-card h3 {
  position: absolute;
  right: 22px;
  bottom: 59px;
  left: 22px;
  margin: 0;
  font-size: 22px;
  letter-spacing: -0.045em;
}

.feature-card > p {
  position: absolute;
  right: 22px;
  bottom: 20px;
  left: 22px;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.feature-status {
  display: inline-flex;
  min-height: 25px;
  align-items: center;
  padding: 0 8px;
  border: 1px solid var(--line);
  border-radius: 100px;
  background: white;
  font-family: var(--font-mono);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.07em;
}

.feature-status.inverted {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.1);
  color: white;
}

.feature-lock,
.feature-presets {
  grid-column: span 6;
}

.feature-batch,
.feature-brand,
.feature-copy {
  grid-column: span 4;
}

.feature-lock-art {
  position: relative;
  display: grid;
  width: 190px;
  height: 220px;
  margin: 4px auto 0;
  place-items: center;
}

.feature-lock-art .corner {
  position: absolute;
  width: 26px;
  height: 26px;
  border-color: var(--blue);
  border-style: solid;
}

.feature-lock-art .tl { top: 20px; left: 20px; border-width: 2px 0 0 2px; }
.feature-lock-art .tr { top: 20px; right: 20px; border-width: 2px 2px 0 0; }
.feature-lock-art .bl { bottom: 20px; left: 20px; border-width: 0 0 2px 2px; }
.feature-lock-art .br { right: 20px; bottom: 20px; border-width: 0 2px 2px 0; }

.preset-stack {
  display: flex;
  width: 100%;
  height: 220px;
  align-items: center;
  justify-content: center;
}

.preset-stack i {
  display: grid;
  width: 145px;
  height: 145px;
  place-items: center;
  border: 1px solid var(--ink);
  background: var(--signal);
  font-family: var(--font-mono);
  font-size: 9px;
  font-style: normal;
  font-weight: 800;
}

.preset-stack i:nth-child(2) {
  width: 120px;
  height: 165px;
  margin-left: -42px;
  background: var(--blue);
  color: white;
  transform: rotate(6deg);
}

.preset-stack i:nth-child(3) {
  width: 100px;
  height: 185px;
  margin-left: -36px;
  background: var(--coral);
  transform: rotate(12deg);
}

.feature-batch {
  background: var(--ink);
  color: white;
}

.feature-batch > p {
  color: rgba(255, 255, 255, 0.58);
}

.batch-art {
  display: flex;
  height: 220px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.batch-art span {
  width: 72%;
  margin-top: -1px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  font-family: var(--font-mono);
  font-size: 8px;
}

.batch-art i {
  display: grid;
  width: 56px;
  height: 56px;
  margin-top: -5px;
  place-items: center;
  border-radius: 50%;
  background: var(--signal);
  color: var(--ink);
  font-family: var(--font-mono);
  font-size: 9px;
  font-style: normal;
  font-weight: 800;
  transform: translateX(70px);
}

.brand-art {
  position: relative;
  display: flex;
  height: 220px;
  align-items: center;
  justify-content: center;
}

.brand-art span {
  display: grid;
  width: 110px;
  height: 110px;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--signal);
  font-size: 50px;
  font-weight: 800;
}

.brand-art i {
  position: absolute;
  bottom: 24px;
  width: 34px;
  height: 34px;
  border: 4px solid white;
  border-radius: 50%;
}

.brand-art i:nth-of-type(1) { left: calc(50% - 58px); background: var(--signal); }
.brand-art i:nth-of-type(2) { left: calc(50% - 17px); background: var(--blue); }
.brand-art i:nth-of-type(3) { left: calc(50% + 24px); background: var(--coral); }

.feature-copy {
  background: #e8e4da;
}

.copy-art {
  display: flex;
  width: 88%;
  min-height: 160px;
  margin: 28px auto 0;
  padding: 23px;
  border: 1px solid var(--ink);
  background: white;
  box-shadow: 7px 7px 0 var(--blue);
  flex-direction: column;
}

.copy-art b {
  font-size: 13px;
}

.copy-art span {
  margin-top: 13px;
  color: var(--muted);
  font-size: 10px;
}

.copy-art i {
  margin-top: auto;
  color: var(--blue);
  font-family: var(--font-mono);
  font-size: 7px;
  font-style: normal;
}

.faq-section {
  padding: 128px 0;
  background: var(--surface);
}

.faq-shell {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 110px;
}

.faq-intro {
  position: sticky;
  top: 120px;
  align-self: start;
}

.faq-intro > p {
  color: var(--muted);
}

.faq-intro > a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 26px;
  border-bottom: 1px solid var(--ink);
  font-size: 13px;
  font-weight: 720;
}

.faq-list {
  border-top: 1px solid var(--ink);
}

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

.faq-list summary {
  display: flex;
  min-height: 88px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  cursor: pointer;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.025em;
  list-style: none;
}

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

.faq-list summary span {
  font-size: 23px;
  font-weight: 300;
  transition: transform 180ms ease;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 680px;
  margin: -6px 50px 28px 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.waitlist-section {
  position: relative;
  overflow: hidden;
  padding: 124px 24px;
  background: var(--blue);
  color: white;
}

.waitlist-section::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 8px;
  background: var(--signal);
  content: "";
}

.waitlist-inner {
  position: relative;
  z-index: 2;
  width: min(100%, 880px);
  margin: 0 auto;
  text-align: center;
}

.waitlist-inner .eyebrow {
  justify-content: center;
}

.waitlist-inner h2 {
  margin: 0;
  font-size: clamp(3rem, 6vw, 5.7rem);
  line-height: 0.95;
  letter-spacing: -0.07em;
}

.waitlist-inner > p:not(.eyebrow):not(.waitlist-fineprint):not(.waitlist-error) {
  max-width: 610px;
  margin: 28px auto 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 17px;
}

.waitlist-form {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr auto;
  gap: 8px;
  margin-top: 42px;
  padding: 8px;
  background: white;
  box-shadow: 10px 10px 0 var(--ink);
  text-align: left;
}

.waitlist-form label {
  display: flex;
  min-width: 0;
  padding: 8px 12px;
  border-right: 1px solid var(--line);
  flex-direction: column;
}

.waitlist-form label > span {
  margin-bottom: 2px;
  color: #797c75;
  font-family: var(--font-mono);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.waitlist-form input,
.waitlist-form select {
  min-width: 0;
  height: 32px;
  padding: 0;
  border: 0;
  outline: 0;
  background: white;
  color: var(--ink);
  font-size: 12px;
  font-weight: 650;
}

.waitlist-form .button {
  min-height: 64px;
  padding: 0 18px;
  white-space: nowrap;
}

.waitlist-form .waitlist-consent {
  display: flex;
  grid-column: 1 / -1;
  align-items: flex-start;
  gap: 9px;
  padding: 5px 7px 2px;
  border: 0;
  flex-direction: row;
}

.waitlist-form .waitlist-consent input {
  width: 17px;
  min-width: 17px;
  height: 17px;
  margin: 1px 0 0;
  accent-color: var(--blue);
}

.waitlist-form .waitlist-consent > span {
  margin: 0;
  color: #4f534c;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 560;
  line-height: 1.45;
  letter-spacing: 0;
  text-transform: none;
}

.waitlist-consent a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.waitlist-fineprint {
  margin: 21px 0 0;
  color: rgba(255, 255, 255, 0.55);
  font-family: var(--font-mono);
  font-size: 9px;
}

.waitlist-error {
  margin: 16px 0 0;
  color: #ffddd6;
  font-size: 12px;
  font-weight: 680;
}

.success-card {
  display: flex;
  width: min(100%, 560px);
  align-items: center;
  gap: 18px;
  margin: 42px auto 0;
  padding: 20px;
  background: white;
  color: var(--ink);
  box-shadow: 10px 10px 0 var(--signal);
  text-align: left;
}

.success-card > span {
  display: grid;
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  place-items: center;
  border-radius: 50%;
  background: var(--signal);
  font-weight: 900;
}

.success-card strong {
  font-size: 18px;
}

.success-card p {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.waitlist-shape {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.24);
}

.shape-one {
  top: 80px;
  left: -80px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
}

.shape-two {
  right: -30px;
  bottom: -85px;
  width: 300px;
  height: 220px;
  transform: rotate(22deg);
}

.site-footer {
  padding: 72px max(24px, calc((100vw - 1320px) / 2)) 26px;
  background: var(--ink);
  color: white;
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: start;
  padding-bottom: 65px;
}

.footer-wordmark .wordmark-mark {
  background: var(--signal);
  color: var(--ink);
}

.footer-main > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-family: Georgia, serif;
  font-size: 20px;
  font-style: italic;
  line-height: 1.35;
}

.footer-main nav {
  display: grid;
  grid-template-columns: repeat(2, max-content);
  justify-content: end;
  gap: 14px 40px;
  font-size: 12px;
  font-weight: 650;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.42);
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: 0.04em;
}

@media (max-width: 1100px) {
  .hero-grid {
    grid-template-columns: minmax(0, 0.82fr) minmax(470px, 1.18fr);
    gap: 40px;
  }

  .hero-copy h1 {
    font-size: clamp(3rem, 5.5vw, 4.6rem);
  }

  .comparison-section .section-shell {
    gap: 55px;
  }

  .contact-visual {
    height: 300px;
  }

  .waitlist-form {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .waitlist-form .button {
    grid-column: 1 / -1;
  }
}

@media (max-width: 900px) {
  .header-inner {
    grid-template-columns: 1fr auto auto;
    gap: 10px;
  }

  .desktop-nav {
    display: none;
  }

  .mobile-menu-toggle {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    gap: 8px;
    padding: 0 13px;
    border: 1px solid var(--ink);
    border-radius: 100px;
    background: transparent;
    font-size: 11px;
    font-weight: 760;
    cursor: pointer;
  }

  .mobile-menu-toggle i,
  .mobile-menu-toggle i::before,
  .mobile-menu-toggle i::after {
    display: block;
    width: 14px;
    height: 1px;
    background: currentColor;
    content: "";
    transition: transform 180ms ease;
  }

  .mobile-menu-toggle i {
    position: relative;
  }

  .mobile-menu-toggle i::before {
    position: absolute;
    top: -4px;
  }

  .mobile-menu-toggle i::after {
    position: absolute;
    top: 4px;
  }

  .mobile-menu-toggle[aria-expanded="true"] i {
    background: transparent;
  }

  .mobile-menu-toggle[aria-expanded="true"] i::before {
    top: 0;
    transform: rotate(45deg);
  }

  .mobile-menu-toggle[aria-expanded="true"] i::after {
    top: 0;
    transform: rotate(-45deg);
  }

  .mobile-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: grid;
    padding: 14px 24px 20px;
    border-bottom: 1px solid var(--line);
    background: var(--paper);
    box-shadow: 0 18px 34px rgba(17, 18, 15, 0.12);
  }

  .mobile-nav a {
    min-height: 48px;
    padding: 13px 0;
    border-bottom: 1px solid var(--line);
    font-size: 15px;
    font-weight: 720;
  }

  .mobile-nav a:last-child {
    border-bottom: 0;
  }

  .hero-section {
    padding-top: 70px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 70px;
  }

  .hero-copy {
    max-width: 700px;
  }

  .hero-copy h1 {
    font-size: clamp(3.5rem, 10vw, 5.5rem);
  }

  .studio-wrap {
    justify-self: center;
  }

  .channel-rail {
    grid-template-columns: 1fr;
    gap: 20px;
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .comparison-section .section-shell,
  .faq-shell {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .comparison-table {
    max-width: 720px;
  }

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

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

  .workflow-grid li {
    display: grid;
    grid-template-columns: 60px 1fr;
    min-height: 260px;
    column-gap: 20px;
    align-items: end;
  }

  .step-number {
    align-self: start;
  }

  .step-art {
    grid-column: 2;
    grid-row: 1 / 4;
    width: 55%;
    min-width: 280px;
    margin: 0 0 0 auto;
  }

  .workflow-grid h3,
  .workflow-grid p {
    grid-column: 1 / 2;
  }

  .feature-lock,
  .feature-presets,
  .feature-batch,
  .feature-brand {
    grid-column: span 6;
  }

  .feature-copy {
    grid-column: span 12;
  }

  .faq-intro {
    position: static;
  }
}

@media (max-width: 640px) {
  .site-header {
    height: 60px;
  }

  .header-inner,
  .hero-grid,
  .section-shell {
    width: min(100% - 40px, 1320px);
  }

  .wordmark {
    font-size: 18px;
  }

  .wordmark-mark {
    width: 27px;
    height: 27px;
    font-size: 13px;
  }

  .header-cta {
    min-height: 38px;
    padding: 0 13px;
    font-size: 11px;
  }

  .header-cta span {
    display: none;
  }

  .mobile-menu-toggle {
    width: 38px;
    min-height: 38px;
    justify-content: center;
    padding: 0;
  }

  .mobile-menu-toggle > span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
  }

  .hero-section {
    padding: 56px 0 76px;
  }

  .hero-copy h1 {
    font-size: clamp(3rem, 15vw, 4.4rem);
  }

  .hero-subtitle {
    margin-top: 24px;
    font-size: 16px;
  }

  .hero-actions {
    align-items: stretch;
    gap: 17px;
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .text-link {
    align-self: flex-start;
  }

  .proof-list {
    display: grid;
    gap: 10px;
  }

  .studio-card {
    min-height: 590px;
    padding: 17px;
    box-shadow: 8px 8px 0 var(--ink);
  }

  .flash-card {
    width: 53px;
    height: 53px;
  }

  .flash-card-blue {
    top: -29px;
    right: 19px;
  }

  .flash-card-coral {
    right: -13px;
  }

  .dropzone {
    min-height: 255px;
  }

  .uploaded-file {
    grid-template-columns: 72px 1fr auto;
  }

  .uploaded-preview {
    height: 72px;
  }

  .uploaded-meta strong {
    max-width: 120px;
  }

  .result-visual {
    height: 112px;
  }

  .channel-rail {
    padding-right: 20px;
    padding-left: 20px;
  }

  .channel-rail > div {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 12px 16px;
  }

  .channel-rail i {
    display: none;
  }

  .channel-rail span {
    padding: 6px 10px;
    border: 1px solid var(--line);
    font-size: 14px;
  }

  .comparison-section,
  .outputs-section,
  .workflow-section,
  .features-section,
  .faq-section {
    padding: 88px 0;
  }

  .section-intro h2,
  .section-heading-row h2 {
    font-size: clamp(2.75rem, 13vw, 4rem);
  }

  .comparison-table {
    grid-template-columns: 1fr;
  }

  .comparison-column + .comparison-column {
    border-top: 8px solid var(--ink);
    border-left: 0;
  }

  .comparison-column > div {
    min-height: 57px;
    padding: 0 14px;
  }

  .section-heading-row {
    align-items: flex-start;
    margin-bottom: 38px;
    flex-direction: column;
  }

  .contact-sheet {
    grid-template-columns: 1fr;
  }

  .contact-visual {
    height: 330px;
  }

  .concept-note {
    text-align: left;
  }

  .workflow-grid li {
    display: block;
    min-height: 420px;
  }

  .step-art {
    width: 100%;
    min-width: 0;
    height: 240px;
    margin: 18px 0 24px;
  }

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

  .feature-lock,
  .feature-presets,
  .feature-batch,
  .feature-brand,
  .feature-copy {
    grid-column: 1;
  }

  .faq-list summary {
    min-height: 78px;
    font-size: 15px;
  }

  .waitlist-section {
    padding: 92px 20px;
  }

  .waitlist-inner h2 {
    font-size: clamp(3rem, 14vw, 4.7rem);
  }

  .waitlist-form {
    grid-template-columns: 1fr;
    margin-top: 34px;
  }

  .waitlist-form label {
    min-height: 62px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .waitlist-form .button {
    grid-column: auto;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-main nav {
    justify-content: start;
  }

  .footer-bottom {
    align-items: flex-start;
    gap: 8px;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
