:root {
  --ink: #20372e;
  --ink-strong: #17251f;
  --muted: #6f7873;
  --muted-light: #9aa19d;
  --paper: #f6f3ed;
  --paper-deep: #ebe6dc;
  --surface: #ffffff;
  --surface-soft: #f0ede7;
  --accent: #e85d35;
  --accent-dark: #c84625;
  --accent-soft: #f7d9cd;
  --green-soft: #dbe8df;
  --yellow: #f5c84b;
  --line: rgba(32, 55, 46, 0.12);
  --shadow: 0 24px 70px rgba(34, 43, 39, 0.12);
  --radius-xs: 10px;
  --radius-sm: 15px;
  --radius-md: 22px;
  --radius-lg: 30px;
  --font: "Avenir Next", Avenir, "Segoe UI", Helvetica, Arial, sans-serif;
  color: var(--ink);
  font-family: var(--font);
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--paper);
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  background: var(--paper);
  color: var(--ink);
}

button,
input {
  color: inherit;
  font: inherit;
}

button,
a,
label[for],
input[type="file"] {
  -webkit-tap-highlight-color: transparent;
}

button {
  border: 0;
}

button:not(:disabled),
a,
label:has(input[type="file"]) {
  cursor: pointer;
}

button:focus-visible,
a:focus-visible,
input:focus-visible {
  outline: 3px solid rgba(232, 93, 53, 0.28);
  outline-offset: 3px;
}

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

h1,
h2,
h3,
p {
  margin: 0;
}

svg {
  display: block;
}

.icon {
  flex: 0 0 auto;
}

.flow-page {
  min-height: 100vh;
  overflow: hidden;
}

.flow-header {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1240px, calc(100% - 64px));
  height: 92px;
  margin: 0 auto;
}

.flow-header-side {
  display: flex;
  align-items: center;
  gap: 16px;
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  padding: 0;
  background: none;
}

.wordmark-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 11px;
  background: var(--ink);
  color: var(--paper);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.08em;
}

.wordmark-name {
  color: var(--ink);
  font-size: 21px;
  font-weight: 750;
  letter-spacing: -0.04em;
}

.wordmark-name span {
  color: var(--accent);
}

.wordmark--compact .wordmark-mark {
  width: 38px;
  height: 38px;
}

.step-count {
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
}

.icon-button {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.65);
  transition: background 160ms ease, transform 160ms ease;
}

.icon-button:hover {
  background: var(--surface);
  transform: translateY(-1px);
}

.icon-button--small {
  width: 34px;
  height: 34px;
  color: var(--muted);
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 21px;
  border-radius: 999px;
  background: transparent;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease, opacity 160ms ease;
}

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

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

.button--primary:hover:not(:disabled) {
  background: var(--ink-strong);
}

.button--quiet {
  background: var(--surface-soft);
  color: var(--ink);
}

.button--quiet:hover:not(:disabled) {
  background: var(--paper-deep);
}

.button--small {
  min-height: 42px;
  padding: 0 18px;
}

.button--compact {
  min-height: 36px;
  gap: 7px;
  padding: 0 14px;
  font-size: 13px;
}

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

.eyebrow {
  color: var(--muted);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.welcome-page {
  background: var(--paper);
}

.welcome-main {
  display: grid;
  width: min(1180px, calc(100% - 64px));
  min-height: calc(100vh - 92px);
  margin: 0 auto;
  grid-template-columns: minmax(360px, 0.88fr) minmax(460px, 1.12fr);
  align-items: center;
  gap: 72px;
  padding: 40px 0 110px;
}

.welcome-copy {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}

.welcome-copy h1 {
  max-width: 650px;
  margin-top: 20px;
  color: var(--ink-strong);
  font-size: clamp(55px, 5.7vw, 86px);
  font-weight: 640;
  letter-spacing: -0.068em;
  line-height: 0.94;
}

.welcome-copy p {
  margin-top: 28px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.45;
}

.welcome-copy .button {
  min-height: 54px;
  margin-top: 38px;
  padding: 0 25px;
}

.trust-line {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 17px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
}

.trust-line .icon {
  color: var(--ink);
}

.welcome-visual {
  display: grid;
  min-height: 590px;
  place-items: center;
  border-radius: 42px;
  background: var(--ink);
  overflow: hidden;
  transform: rotate(1.3deg);
}

.device-card {
  position: relative;
  width: min(430px, 78%);
  overflow: visible;
  border-radius: 24px;
  background: var(--surface);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.3);
  transform: rotate(-1.3deg);
}

.device-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 21px 24px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.device-card-top span span {
  color: var(--accent);
}

.device-card-top i {
  width: 26px;
  height: 2px;
  background: var(--ink);
  box-shadow: 0 7px 0 var(--ink);
}

.device-card-hero {
  display: grid;
  min-height: 300px;
  padding: 35px;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  background: #f4d99c;
}

.device-card-hero > div {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 16px;
}

.device-card-hero small {
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.device-card-hero strong {
  color: var(--ink-strong);
  font-size: 31px;
  font-weight: 680;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.device-card-hero .fries-artwork {
  width: 230px;
  max-width: 140%;
  margin-left: -25px;
}

.device-card-menu {
  display: grid;
  padding: 24px;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.device-card-menu span {
  height: 52px;
  border-radius: 8px;
  background: var(--surface-soft);
}

.floating-ready {
  position: absolute;
  right: -32px;
  bottom: 41px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 13px 17px;
  border-radius: 999px;
  background: var(--surface);
  box-shadow: 0 14px 34px rgba(24, 38, 32, 0.18);
  font-size: 11px;
  font-weight: 700;
}

.floating-ready .icon {
  display: grid;
  padding: 2px;
  border-radius: 50%;
  background: var(--green-soft);
}

.flow-main {
  width: min(1040px, calc(100% - 48px));
  margin: 0 auto;
  padding: 9vh 0 110px;
}

.flow-main.narrow {
  width: min(610px, calc(100% - 48px));
}

.flow-main.centered {
  display: flex;
  min-height: calc(100vh - 92px);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding-top: 0;
}

.flow-title {
  margin-bottom: 44px;
}

.flow-title h1,
.compact-title {
  color: var(--ink-strong);
  font-size: clamp(38px, 4.2vw, 56px);
  font-weight: 620;
  letter-spacing: -0.06em;
  line-height: 1;
}

.choice-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.choice-row,
.business-match,
.upload-row {
  display: grid;
  width: 100%;
  min-height: 84px;
  align-items: center;
  padding: 16px 20px;
  grid-template-columns: auto 1fr auto;
  gap: 17px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.74);
  text-align: left;
  transition: background 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.choice-row:hover,
.business-match:hover,
.upload-row:hover {
  background: var(--surface);
  box-shadow: 0 10px 32px rgba(40, 48, 44, 0.06);
  transform: translateY(-1px);
}

.choice-row > span:nth-child(2) {
  font-size: 16px;
  font-weight: 680;
}

.choice-row > .icon:last-child,
.upload-row > .icon:last-child {
  color: var(--muted-light);
}

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

.simple-form {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.simple-form label {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.simple-form label > span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 680;
}

.simple-form input {
  width: 100%;
  height: 60px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  outline: 0;
  background: rgba(255, 255, 255, 0.82);
  font-size: 17px;
  font-weight: 610;
  transition: border 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.simple-form input:focus {
  border-color: rgba(32, 55, 46, 0.2);
  background: var(--surface);
  box-shadow: 0 0 0 4px rgba(32, 55, 46, 0.06);
}

.form-submit {
  align-self: flex-start;
  margin-top: 12px;
}

.search-pulse {
  position: relative;
  display: grid;
  width: 72px;
  height: 72px;
  margin-bottom: 28px;
  place-items: center;
  border-radius: 50%;
  background: var(--surface);
}

.search-pulse::after {
  position: absolute;
  inset: -1px;
  border: 2px solid var(--accent);
  border-radius: inherit;
  content: "";
  animation: pulse 1.5s ease-out infinite;
}

.muted {
  margin-top: 13px;
  color: var(--muted);
}

.business-match {
  min-height: 118px;
  padding: 18px;
}

.match-art {
  display: grid;
  width: 78px;
  height: 78px;
  place-items: center;
  border-radius: 19px;
  background: #f4d99c;
  color: var(--ink);
}

.match-art .fries-icon {
  width: 46px;
}

.match-copy {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}

.match-copy strong {
  margin-bottom: 5px;
  font-size: 18px;
}

.match-copy span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.match-check {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  background: var(--green-soft);
}

.text-button {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0;
  background: none;
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
}

.business-match + .text-button {
  margin-top: 22px;
}

.text-button:hover {
  color: var(--ink);
}

.text-button--arrow {
  color: var(--ink);
}

.text-button.is-approved {
  color: var(--ink);
}

.setup-main {
  width: min(860px, calc(100% - 48px));
}

.theme-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.theme-card {
  padding: 10px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.62);
  text-align: left;
  transition: background 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.theme-card:hover,
.theme-card.is-selected {
  background: var(--surface);
  box-shadow: 0 12px 34px rgba(40, 48, 44, 0.07);
  transform: translateY(-2px);
}

.theme-card.is-selected {
  box-shadow: 0 0 0 2px var(--ink), 0 12px 34px rgba(40, 48, 44, 0.07);
}

.theme-preview {
  position: relative;
  display: block;
  height: 154px;
  border-radius: 15px;
  overflow: hidden;
}

.theme-preview::before {
  position: absolute;
  top: 18px;
  left: 18px;
  width: 39%;
  height: 10px;
  border-radius: 999px;
  background: currentColor;
  content: "";
}

.theme-preview span {
  position: absolute;
  display: block;
  border-radius: 9px;
}

.theme-preview span:nth-child(1) {
  top: 43px;
  left: 18px;
  width: 48%;
  height: 42px;
  background: currentColor;
}

.theme-preview span:nth-child(2) {
  right: 18px;
  bottom: 18px;
  width: 37%;
  height: 75px;
  background: rgba(255, 255, 255, 0.62);
}

.theme-preview span:nth-child(3) {
  bottom: 18px;
  left: 18px;
  width: 38%;
  height: 9px;
  background: rgba(255, 255, 255, 0.72);
}

.theme-preview--warm {
  background: #f4d99c;
  color: #20372e;
}

.theme-preview--fresh {
  background: #cfe4d8;
  color: #164f48;
}

.theme-preview--bold {
  background: #f5c84b;
  color: #171717;
}

.theme-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 17px 7px 8px;
}

.theme-card-footer strong {
  font-size: 14px;
}

.swatches {
  display: flex;
}

.swatches i {
  width: 17px;
  height: 17px;
  margin-left: -4px;
  border: 2px solid var(--surface);
  border-radius: 50%;
  background: var(--swatch);
}

.setup-actions {
  display: grid;
  margin-top: 22px;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 16px;
}

.upload-row {
  min-height: 72px;
  padding: 12px 15px;
}

.upload-row input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.upload-row .choice-icon {
  width: 42px;
  height: 42px;
}

.upload-row > span:nth-child(3) {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.upload-row strong {
  font-size: 13px;
}

.upload-row small {
  color: var(--muted);
  font-size: 11px;
}

.generation-page {
  background: var(--ink);
  color: var(--surface);
}

.generation-page .wordmark-mark {
  background: var(--surface);
  color: var(--ink);
}

.generation-page .wordmark-name {
  color: var(--surface);
}

.generation-main {
  display: flex;
  width: min(560px, calc(100% - 48px));
  min-height: calc(100vh - 92px);
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  margin: 0 auto;
  padding-bottom: 90px;
}

.generation-heading {
  display: flex;
  align-items: center;
  gap: 18px;
}

.generation-heading h1 {
  max-width: 440px;
  font-size: clamp(35px, 4vw, 51px);
  font-weight: 590;
  letter-spacing: -0.055em;
  line-height: 1.04;
}

.spark-mark {
  display: grid;
  width: 58px;
  height: 58px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 19px;
  background: rgba(255, 255, 255, 0.1);
  color: #f4d99c;
}

.generation-list {
  width: 100%;
  margin: 50px 0 36px;
}

.generation-item {
  display: grid;
  min-height: 50px;
  align-items: center;
  grid-template-columns: 34px 1fr;
  color: rgba(255, 255, 255, 0.35);
  font-size: 14px;
  font-weight: 620;
  transition: color 200ms ease;
}

.generation-item.is-active,
.generation-item.is-done {
  color: var(--surface);
}

.generation-status {
  display: grid;
  width: 21px;
  height: 21px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.19);
  border-radius: 50%;
}

.generation-item.is-done .generation-status {
  border-color: var(--green-soft);
  background: var(--green-soft);
  color: var(--ink);
}

.generation-status i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
}

.generation-item.is-active .generation-status {
  border-color: var(--accent);
  animation: pulseDark 1.2s ease-out infinite;
}

.generation-note {
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
}

.generation-main .button--primary {
  background: var(--surface);
  color: var(--ink);
}

.workspace {
  display: grid;
  min-height: 100vh;
  grid-template-columns: 250px 1fr;
  background: #f8f7f3;
}

.sidebar {
  position: sticky;
  top: 0;
  display: flex;
  height: 100vh;
  justify-content: space-between;
  flex-direction: column;
  padding: 30px 22px 23px;
  background: var(--surface);
}

.sidebar .wordmark {
  margin: 0 11px;
}

.workspace-nav {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-top: 46px;
}

.workspace-nav button {
  display: flex;
  width: 100%;
  height: 45px;
  align-items: center;
  gap: 13px;
  padding: 0 13px;
  border-radius: 13px;
  background: transparent;
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
  text-align: left;
  transition: background 150ms ease, color 150ms ease;
}

.workspace-nav button:hover,
.workspace-nav button.is-active {
  background: var(--surface-soft);
  color: var(--ink);
}

.profile-button {
  display: grid;
  width: 100%;
  min-width: 0;
  align-items: center;
  padding: 11px 9px;
  grid-template-columns: 36px 1fr;
  gap: 11px;
  border-radius: 14px;
  background: transparent;
  text-align: left;
}

.profile-avatar {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 12px;
  background: var(--ink);
  color: var(--surface);
  font-size: 13px;
  font-weight: 750;
}

.profile-button > span:nth-child(2) {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

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

.profile-button small {
  overflow: hidden;
  color: var(--muted);
  font-size: 10px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.workspace-body {
  min-width: 0;
}

.workspace-header {
  display: flex;
  width: min(1080px, calc(100% - 80px));
  min-height: 110px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin: 0 auto;
}

.workspace-header > div:first-child {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 5px;
}

.workspace-header h1 {
  color: var(--ink-strong);
  font-size: 27px;
  font-weight: 670;
  letter-spacing: -0.045em;
}

.workspace-kicker {
  color: var(--muted);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.header-actions {
  display: flex;
  gap: 8px;
}

.workspace-main {
  width: min(1080px, calc(100% - 80px));
  margin: 0 auto;
  padding: 10px 0 90px;
}

.overview-layout,
.content-column {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.ready-panel {
  display: flex;
  min-height: 268px;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  padding: 46px 54px;
  border-radius: var(--radius-lg);
  background: var(--ink);
  color: var(--surface);
}

.ready-copy {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}

.ready-copy .eyebrow {
  color: rgba(255, 255, 255, 0.52);
}

.ready-copy h2 {
  margin-top: 14px;
  font-size: clamp(30px, 3vw, 44px);
  font-weight: 590;
  letter-spacing: -0.055em;
}

.ready-copy p {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
}

.ready-actions {
  display: flex;
  gap: 8px;
  margin-top: 30px;
}

.ready-panel .button--primary {
  background: var(--surface);
  color: var(--ink);
}

.ready-panel .button--quiet {
  background: rgba(255, 255, 255, 0.1);
  color: var(--surface);
}

.ready-panel .button--quiet:hover {
  background: rgba(255, 255, 255, 0.15);
}

.completion {
  display: grid;
  width: 142px;
  height: 142px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: conic-gradient(#f4d99c var(--progress), rgba(255, 255, 255, 0.1) 0);
}

.completion::before {
  width: 116px;
  height: 116px;
  border-radius: 50%;
  background: var(--ink);
  content: "";
}

.completion > div {
  position: absolute;
  display: flex;
  align-items: center;
  flex-direction: column;
}

.completion strong {
  font-size: 28px;
  font-weight: 650;
  letter-spacing: -0.05em;
}

.completion span {
  color: rgba(255, 255, 255, 0.52);
  font-size: 10px;
}

.section-block {
  padding: 30px 34px;
  border-radius: var(--radius-md);
  background: var(--surface);
}

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

.section-heading h2 {
  margin-top: 5px;
  font-size: 20px;
  font-weight: 680;
  letter-spacing: -0.035em;
}

.attention-list {
  display: flex;
  flex-direction: column;
}

.attention-list button {
  display: grid;
  min-height: 63px;
  align-items: center;
  padding: 0;
  grid-template-columns: 12px 1fr auto 20px;
  gap: 13px;
  border-radius: 10px;
  background: transparent;
  text-align: left;
}

.attention-list button:hover {
  background: #faf9f6;
}

.attention-list button > span:nth-child(2) {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.attention-list strong {
  font-size: 13px;
}

.attention-list small,
.source-label {
  color: var(--muted);
  font-size: 11px;
}

.source-label {
  padding: 5px 8px;
  border-radius: 999px;
  background: var(--surface-soft);
}

.attention-list .icon {
  color: var(--muted-light);
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
}

.status-dot--gevonden {
  background: #7e9487;
}

.status-dot--voorgesteld {
  background: #d69b42;
}

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

.summary-tile {
  display: grid;
  min-height: 106px;
  align-items: center;
  padding: 20px;
  grid-template-columns: 42px 1fr auto;
  gap: 14px;
  border-radius: var(--radius-md);
  background: var(--surface);
  text-align: left;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.summary-tile:hover {
  box-shadow: 0 12px 30px rgba(31, 42, 36, 0.06);
  transform: translateY(-2px);
}

.summary-tile > span:nth-child(2) {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

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

.summary-tile strong {
  font-size: 13px;
  font-weight: 680;
}

.summary-tile > .icon {
  color: var(--muted-light);
}

.tile-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 13px;
  background: var(--surface-soft);
}

.section-intro p,
.section-toolbar p {
  color: var(--muted);
  font-size: 14px;
}

.review-list {
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--surface);
}

.review-row {
  display: grid;
  min-height: 94px;
  align-items: center;
  padding: 17px 23px;
  grid-template-columns: 27px 1fr auto;
  gap: 14px;
}

.review-row + .review-row {
  box-shadow: inset 0 1px var(--line);
}

.review-state {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.review-state i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.review-row.is-confirmed .review-state {
  border-color: var(--green-soft);
  background: var(--green-soft);
}

.review-row label {
  display: grid;
  min-width: 0;
  grid-template-columns: minmax(150px, 0.65fr) 1fr;
  align-items: center;
  gap: 20px;
}

.review-meta {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 4px;
}

.review-meta strong {
  font-size: 13px;
}

.review-meta small {
  overflow: hidden;
  color: var(--muted);
  font-size: 10px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.review-row input {
  width: 100%;
  height: 44px;
  padding: 0 13px;
  border: 0;
  border-radius: 10px;
  outline: 0;
  background: var(--surface-soft);
  font-size: 13px;
  font-weight: 620;
}

.review-row input:focus {
  box-shadow: 0 0 0 2px rgba(32, 55, 46, 0.15);
}

.review-row input[readonly] {
  background: transparent;
}

.confirmed-label {
  color: #587364;
  font-size: 11px;
  font-weight: 700;
}

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

.profile-identity {
  display: grid;
  min-height: 120px;
  align-items: center;
  padding: 22px 26px;
  grid-template-columns: 70px 1fr;
  gap: 20px;
  border-radius: var(--radius-md);
  background: var(--surface);
}

.identity-mark {
  display: grid;
  width: 70px;
  height: 70px;
  place-items: center;
  border-radius: 18px;
  background: #f4d99c;
}

.identity-mark .fries-icon {
  width: 40px;
}

.profile-identity h2 {
  font-size: 19px;
  letter-spacing: -0.035em;
}

.profile-identity p {
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
}

.field-groups {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.field-group {
  padding: 29px;
  border-radius: var(--radius-md);
  background: var(--surface);
}

.field-group dl {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 23px 0 0;
}

.field-group dl > div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.field-group dt,
.field-group dd {
  margin: 0;
  font-size: 12px;
}

.field-group dt {
  color: var(--muted);
}

.field-group dd {
  font-weight: 650;
  text-align: right;
}

.section-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.section-toolbar > div {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 5px;
}

.menu-editor {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.menu-category {
  padding: 27px 29px 11px;
  border-radius: var(--radius-md);
  background: var(--surface);
}

.menu-category h2 {
  margin-bottom: 12px;
  font-size: 16px;
  letter-spacing: -0.03em;
}

.menu-editor-row {
  display: grid;
  min-height: 66px;
  align-items: center;
  grid-template-columns: 1fr auto;
  gap: 16px;
}

.menu-editor-row + .menu-editor-row {
  box-shadow: inset 0 1px var(--line);
}

.menu-editor-row > span:first-child {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.menu-editor-row strong,
.menu-price {
  font-size: 13px;
  font-weight: 670;
}

.menu-editor-row small {
  color: var(--muted);
  font-size: 10px;
}

.website-section {
  display: flex;
  align-items: stretch;
  flex-direction: column;
  gap: 18px;
}

.website-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.website-controls > div:first-child {
  display: flex;
  align-items: center;
  gap: 15px;
}

.theme-pills,
.device-switch {
  display: inline-flex;
  padding: 4px;
  border-radius: 999px;
  background: var(--surface-soft);
}

.theme-pills button {
  height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font-size: 11px;
  font-weight: 680;
}

.theme-pills button.is-active,
.device-switch button.is-active {
  background: var(--surface);
  color: var(--ink);
  box-shadow: 0 2px 8px rgba(36, 44, 40, 0.07);
}

.device-switch button {
  display: grid;
  width: 37px;
  height: 34px;
  place-items: center;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
}

.site-frame {
  width: 100%;
  overflow: hidden;
  border-radius: 18px;
  background: #dcdedb;
  box-shadow: 0 18px 45px rgba(31, 42, 36, 0.1);
  transition: width 220ms ease;
}

.site-frame--mobile {
  width: 390px;
  max-width: 100%;
  align-self: center;
}

.browser-bar {
  display: flex;
  height: 42px;
  align-items: center;
  gap: 6px;
  padding: 0 14px;
  background: #e8e8e5;
}

.browser-bar i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #c2c4c1;
}

.browser-bar span {
  margin-left: 9px;
  color: #7b817e;
  font-size: 9px;
}

.site-frame-scroll {
  height: 640px;
  overflow-y: auto;
  background: var(--surface);
}

.site-frame--desktop .restaurant-site {
  min-width: 780px;
  transform-origin: top left;
}

.site-frame--mobile .restaurant-header nav {
  display: none;
}

.site-frame--mobile .restaurant-header,
.site-frame--mobile .restaurant-hero,
.site-frame--mobile .restaurant-info {
  padding-right: 24px;
  padding-left: 24px;
}

.site-frame--mobile .restaurant-hero {
  min-height: 620px;
  grid-template-columns: 1fr;
}

.site-frame--mobile .restaurant-hero-copy {
  padding-top: 40px;
}

.site-frame--mobile .restaurant-hero h1 {
  font-size: 54px;
}

.site-frame--mobile .restaurant-hero-art {
  align-self: end;
}

.site-frame--mobile .restaurant-menu {
  padding: 70px 24px;
}

.site-frame--mobile .restaurant-menu-grid {
  grid-template-columns: 1fr;
}

.site-frame--mobile .restaurant-info {
  grid-template-columns: 1fr;
}

.site-frame--mobile .restaurant-footer {
  align-items: flex-start;
  flex-direction: column;
  gap: 14px;
  padding: 40px 24px;
}

.website-footer-actions {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
}

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

.post-card {
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--surface);
}

.post-art {
  position: relative;
  display: grid;
  min-height: 300px;
  place-items: center;
  overflow: hidden;
  background: #f4d99c;
  color: var(--ink);
}

.post-art--2 {
  background: #d6e7db;
  color: #164f48;
}

.post-art--3 {
  background: #20372e;
  color: #f4d99c;
}

.post-art--4 {
  background: #e9ded0;
  color: #a54a31;
}

.post-art--5 {
  background: #f1c94f;
  color: #171717;
}

.post-art > svg {
  width: 54%;
  max-height: 210px;
}

.post-art .fries-icon {
  width: 96px;
}

.post-brand {
  position: absolute;
  right: 18px;
  bottom: 16px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.post-copy {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  padding: 22px;
}

.post-copy p {
  min-height: 66px;
  margin: 10px 0 16px;
  color: var(--ink-strong);
  font-size: 13px;
  line-height: 1.55;
}

.restaurant-site {
  --site-ink: #20372e;
  --site-bg: #fbfaf6;
  --site-feature: #f4d99c;
  --site-accent: #e85d35;
  min-height: 100%;
  background: var(--site-bg);
  color: var(--site-ink);
}

.restaurant-site.theme-fresh {
  --site-ink: #164f48;
  --site-bg: #fbfcf9;
  --site-feature: #cfe4d8;
  --site-accent: #ed6a45;
}

.restaurant-site.theme-bold {
  --site-ink: #171717;
  --site-bg: #f8f4e8;
  --site-feature: #f5c84b;
  --site-accent: #e55232;
}

.restaurant-header {
  display: grid;
  min-height: 84px;
  align-items: center;
  padding: 0 5vw;
  grid-template-columns: 1fr auto 1fr;
  gap: 30px;
  background: var(--site-bg);
}

.restaurant-logo {
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.05em;
}

.restaurant-logo span {
  color: var(--site-accent);
}

.restaurant-header nav {
  display: flex;
  gap: 24px;
}

.restaurant-header nav a {
  font-size: 10px;
  font-weight: 700;
}

.restaurant-order {
  justify-self: end;
  padding: 12px 17px;
  border-radius: 999px;
  background: var(--site-ink);
  color: var(--site-bg);
  font-size: 10px;
  font-weight: 750;
}

.restaurant-hero {
  display: grid;
  min-height: 570px;
  padding: 3vw 6vw;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 20px;
  background: var(--site-feature);
}

.restaurant-hero-copy {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}

.restaurant-hero-copy > span,
.restaurant-section-title > span,
.restaurant-info span {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.restaurant-hero h1 {
  max-width: 580px;
  margin: 18px 0;
  font-size: clamp(58px, 7.5vw, 104px);
  font-weight: 650;
  letter-spacing: -0.072em;
  line-height: 0.89;
}

.restaurant-hero p {
  font-size: 15px;
}

.restaurant-hero-copy > a,
.restaurant-info > a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
  padding: 14px 18px;
  border-radius: 999px;
  background: var(--site-ink);
  color: var(--site-bg);
  font-size: 10px;
  font-weight: 750;
}

.restaurant-hero-art {
  display: grid;
  place-items: center;
}

.restaurant-hero-art .fries-artwork {
  width: min(470px, 100%);
  color: var(--site-ink);
}

.fries-sticks {
  fill: #e8b629;
}

.fries-box {
  fill: var(--site-accent);
}

.fries-box-mark {
  fill: var(--site-feature);
}

.restaurant-menu {
  padding: 95px 7vw 105px;
}

.restaurant-section-title {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 45px;
}

.restaurant-section-title h2 {
  font-size: 44px;
  font-weight: 620;
  letter-spacing: -0.06em;
}

.restaurant-menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 50px;
}

.restaurant-menu-grid > div {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  box-shadow: inset 0 -1px rgba(32, 55, 46, 0.15);
}

.restaurant-menu-grid > div > span {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.restaurant-menu-grid strong,
.restaurant-menu-grid b {
  font-size: 13px;
}

.restaurant-menu-grid small {
  color: color-mix(in srgb, var(--site-ink), transparent 43%);
  font-size: 9px;
}

.restaurant-info {
  display: grid;
  min-height: 260px;
  align-items: end;
  padding: 55px 7vw;
  grid-template-columns: 1fr 1.2fr auto;
  gap: 50px;
  background: var(--site-ink);
  color: var(--site-bg);
}

.restaurant-info > div {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}

.restaurant-info h2 {
  max-width: 360px;
  margin-top: 11px;
  font-size: 25px;
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.restaurant-info p {
  margin-top: 6px;
  color: color-mix(in srgb, var(--site-bg), transparent 35%);
  font-size: 11px;
}

.restaurant-info > a {
  margin: 0;
  background: var(--site-bg);
  color: var(--site-ink);
}

.restaurant-footer {
  display: flex;
  min-height: 100px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 0 7vw;
  background: var(--site-bg);
  font-size: 9px;
}

.restaurant-site.is-standalone .restaurant-header {
  min-height: 92px;
}

.preview-shell {
  min-height: 100vh;
  background: #e9e9e6;
}

.preview-toolbar {
  position: sticky;
  z-index: 20;
  top: 0;
  display: grid;
  min-height: 70px;
  align-items: center;
  padding: 0 24px;
  grid-template-columns: 1fr auto 1fr;
  gap: 20px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 1px rgba(32, 55, 46, 0.08);
  backdrop-filter: blur(16px);
}

.preview-toolbar > .button:last-child {
  justify-self: end;
}

.preview-address {
  color: var(--muted);
  font-size: 11px;
}

.public-site-wrap {
  width: min(1440px, 100%);
  margin: 0 auto;
  background: var(--surface);
  box-shadow: 0 30px 80px rgba(35, 43, 39, 0.12);
}

.published-main {
  display: flex;
  min-height: calc(100vh - 92px);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 0 24px 92px;
  text-align: center;
}

.success-mark {
  display: grid;
  width: 70px;
  height: 70px;
  margin-bottom: 27px;
  place-items: center;
  border-radius: 23px;
  background: var(--green-soft);
}

.success-mark--small {
  width: 52px;
  height: 52px;
  margin-bottom: 20px;
  border-radius: 17px;
}

.published-main h1 {
  margin: 11px 0 17px;
  font-size: clamp(42px, 5vw, 66px);
  font-weight: 620;
  letter-spacing: -0.065em;
}

.published-url {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--muted);
  font-size: 13px;
}

.published-actions {
  display: flex;
  gap: 9px;
  margin-top: 36px;
}

.modal-backdrop {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: grid;
  padding: 20px;
  place-items: center;
  background: rgba(22, 31, 27, 0.5);
  backdrop-filter: blur(8px);
  animation: fadeIn 150ms ease;
}

.modal {
  position: relative;
  display: flex;
  width: min(430px, 100%);
  align-items: center;
  flex-direction: column;
  padding: 40px;
  border-radius: 28px;
  background: var(--surface);
  box-shadow: var(--shadow);
  text-align: center;
  animation: modalIn 180ms ease;
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--surface-soft);
}

.modal h2 {
  font-size: 27px;
  font-weight: 650;
  letter-spacing: -0.05em;
}

.publish-checks {
  display: flex;
  width: 100%;
  align-items: flex-start;
  flex-direction: column;
  gap: 11px;
  margin-top: 27px;
  padding: 21px 23px;
  border-radius: 16px;
  background: var(--surface-soft);
}

.publish-checks span {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 650;
}

.publish-checks .icon {
  color: #55705f;
}

.modal-url {
  margin: 21px 0;
  color: var(--muted);
  font-size: 11px;
}

.modal-primary {
  width: 100%;
}

.button-loader {
  width: 15px;
  height: 15px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 700ms linear infinite;
}

.toast {
  position: fixed;
  z-index: 200;
  right: 24px;
  bottom: 24px;
  padding: 12px 17px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--surface);
  box-shadow: 0 12px 34px rgba(23, 37, 31, 0.22);
  font-size: 11px;
  font-weight: 700;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.mobile-nav {
  display: none;
}

.fries-icon {
  width: 56px;
  height: auto;
}

@keyframes pulse {
  0% {
    opacity: 0.8;
    transform: scale(0.85);
  }
  100% {
    opacity: 0;
    transform: scale(1.55);
  }
}

@keyframes pulseDark {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(232, 93, 53, 0.25);
  }
  50% {
    box-shadow: 0 0 0 5px rgba(232, 93, 53, 0);
  }
}

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

@keyframes fadeIn {
  from {
    opacity: 0;
  }
}

@keyframes modalIn {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.98);
  }
}

@media (max-width: 980px) {
  .welcome-main {
    grid-template-columns: 1fr 0.9fr;
    gap: 35px;
  }

  .welcome-visual {
    min-height: 520px;
  }

  .device-card {
    width: 84%;
  }

  .device-card-hero {
    grid-template-columns: 1fr;
  }

  .device-card-hero .fries-artwork {
    position: absolute;
    right: -20px;
    bottom: 55px;
    width: 205px;
  }

  .workspace {
    grid-template-columns: 210px 1fr;
  }

  .workspace-header,
  .workspace-main {
    width: calc(100% - 48px);
  }

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

  .summary-tile {
    min-height: 86px;
  }

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

@media (max-width: 760px) {
  .flow-header {
    width: calc(100% - 36px);
    height: 76px;
  }

  .welcome-main {
    display: flex;
    width: calc(100% - 36px);
    min-height: calc(100vh - 76px);
    align-items: flex-start;
    flex-direction: column;
    gap: 50px;
    padding: 55px 0 70px;
  }

  .welcome-copy h1 {
    margin-top: 15px;
    font-size: clamp(49px, 15vw, 68px);
  }

  .welcome-copy p {
    margin-top: 23px;
    font-size: 17px;
  }

  .welcome-copy .button {
    margin-top: 30px;
  }

  .welcome-visual {
    width: 100%;
    min-height: 440px;
    border-radius: 28px;
    transform: none;
  }

  .device-card {
    width: 82%;
    transform: none;
  }

  .device-card-hero {
    min-height: 250px;
    padding: 27px;
  }

  .floating-ready {
    right: -16px;
  }

  .flow-main {
    width: calc(100% - 36px);
    padding-top: 10vh;
  }

  .flow-main.narrow,
  .setup-main {
    width: calc(100% - 36px);
  }

  .flow-title {
    margin-bottom: 32px;
  }

  .flow-title h1,
  .compact-title {
    font-size: 40px;
  }

  .choice-row {
    min-height: 76px;
  }

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

  .theme-card {
    display: grid;
    grid-template-columns: 130px 1fr;
    gap: 5px;
  }

  .theme-preview {
    height: 104px;
  }

  .theme-card-footer {
    padding: 13px 14px;
  }

  .setup-actions {
    display: flex;
    align-items: stretch;
    flex-direction: column;
  }

  .setup-actions .button {
    align-self: flex-start;
  }

  .generation-main {
    width: calc(100% - 44px);
    padding-bottom: 60px;
  }

  .generation-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .generation-heading h1 {
    font-size: 38px;
  }

  .workspace {
    display: block;
    padding-bottom: 76px;
  }

  .sidebar {
    display: none;
  }

  .workspace-header {
    width: calc(100% - 36px);
    min-height: 92px;
    align-items: flex-end;
    padding-bottom: 12px;
  }

  .workspace-header h1 {
    font-size: 23px;
  }

  .header-actions .button--quiet {
    display: none;
  }

  .header-actions .button--primary {
    min-height: 38px;
    padding: 0 15px;
    font-size: 12px;
  }

  .workspace-main {
    width: calc(100% - 28px);
    padding-top: 4px;
  }

  .ready-panel {
    min-height: 340px;
    align-items: flex-start;
    flex-direction: column;
    gap: 34px;
    padding: 33px 29px;
  }

  .ready-copy h2 {
    font-size: 34px;
  }

  .ready-actions {
    flex-wrap: wrap;
  }

  .completion {
    width: 105px;
    height: 105px;
  }

  .completion::before {
    width: 85px;
    height: 85px;
  }

  .completion strong {
    font-size: 21px;
  }

  .section-block {
    padding: 25px 21px;
  }

  .attention-list button {
    grid-template-columns: 10px 1fr 18px;
  }

  .source-label {
    display: none;
  }

  .review-row {
    align-items: flex-start;
    padding: 20px;
    grid-template-columns: 24px 1fr;
  }

  .review-row label {
    grid-template-columns: 1fr;
    gap: 11px;
  }

  .review-row .button,
  .confirmed-label {
    grid-column: 2;
    justify-self: start;
  }

  .profile-identity {
    grid-template-columns: 58px 1fr;
  }

  .identity-mark {
    width: 58px;
    height: 58px;
  }

  .field-groups {
    grid-template-columns: 1fr;
  }

  .field-group {
    padding: 24px;
  }

  .menu-category {
    padding: 24px 20px 9px;
  }

  .website-controls {
    align-items: flex-end;
  }

  .website-controls > div:first-child {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .theme-pills button {
    padding: 0 10px;
  }

  .site-frame-scroll {
    height: 610px;
  }

  .website-footer-actions {
    justify-content: stretch;
  }

  .website-footer-actions .button {
    flex: 1;
    padding: 0 13px;
  }

  .post-art {
    min-height: 260px;
  }

  .mobile-nav {
    position: fixed;
    z-index: 30;
    right: 10px;
    bottom: 10px;
    left: 10px;
    display: grid;
    height: 64px;
    padding: 5px;
    grid-template-columns: repeat(4, 1fr);
    border-radius: 19px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 15px 45px rgba(31, 42, 36, 0.17);
    backdrop-filter: blur(18px);
  }

  .mobile-nav button {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 3px;
    border-radius: 14px;
    background: transparent;
    color: var(--muted);
  }

  .mobile-nav button.is-active {
    background: var(--surface-soft);
    color: var(--ink);
  }

  .mobile-nav span {
    font-size: 8px;
    font-weight: 700;
  }

  .preview-toolbar {
    min-height: 62px;
    padding: 0 12px;
    grid-template-columns: auto 1fr auto;
  }

  .preview-address {
    overflow: hidden;
    text-align: center;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .restaurant-header {
    min-height: 72px;
    padding: 0 20px;
    grid-template-columns: 1fr auto;
  }

  .restaurant-header nav {
    display: none;
  }

  .restaurant-hero {
    min-height: 650px;
    padding: 48px 24px 25px;
    grid-template-columns: 1fr;
  }

  .restaurant-hero h1 {
    font-size: 58px;
  }

  .restaurant-hero-art {
    align-self: end;
  }

  .restaurant-menu {
    padding: 70px 24px;
  }

  .restaurant-section-title h2 {
    font-size: 38px;
  }

  .restaurant-menu-grid {
    grid-template-columns: 1fr;
  }

  .restaurant-info {
    min-height: 430px;
    padding: 48px 24px;
    grid-template-columns: 1fr;
    align-items: start;
    gap: 35px;
  }

  .restaurant-footer {
    min-height: 170px;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    padding: 35px 24px;
  }

  .published-main h1 {
    font-size: 47px;
  }

  .published-actions {
    width: 100%;
    align-items: stretch;
    flex-direction: column;
  }

  .modal {
    padding: 35px 24px 25px;
  }

  .toast {
    right: 14px;
    bottom: 84px;
  }
}

@media (max-width: 390px) {
  .wordmark-name {
    display: none;
  }

  .theme-card {
    grid-template-columns: 110px 1fr;
  }

  .header-actions .button--primary .icon {
    display: none;
  }

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

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

}

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