/* PropShop: a thoughtful home for independent creator commerce. */
:root {
  --ink: #232d28;
  --cyc: #f7f8f4;
  --panel: #fff;
  --slate: #183f30;
  --slate-2: #22553f;
  --manila: #f0f2e6;
  --manila-deep: #dfe5cb;
  --tape: #e1efaa;
  --signal: #b23b3b;
  --ok: #286e4b;
  --mute: #7d837c;
  --line: #e5e8df;
  --line-2: #f0f2ec;
  --green: #1a6246;
  --display: "DM Sans", sans-serif;
  --serif: "DM Serif Display", Georgia, serif;
  --body: "DM Sans", system-ui, sans-serif;
  --mono: var(--body);
  --rail: 232px;
  --r: 14px;
}
* {
  box-sizing: border-box;
}
html {
  color-scheme: light;
  scroll-behavior: smooth;
  scroll-padding-top: 24px;
}
body {
  margin: 0;
  background: var(--cyc);
  color: var(--ink);
  font: 14px/1.55 var(--body);
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
}
button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}
button,
a,
input,
textarea,
select {
  -webkit-tap-highlight-color: transparent;
}
h1,
h2,
h3,
p {
  margin: 0;
}
h1,
h2,
h3 {
  font-family: var(--display);
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: -0.04em;
}
h1 {
  font-size: 30px;
}
h2 {
  font-size: 23px;
}
h3 {
  font-size: 16px;
  letter-spacing: -0.025em;
}
button {
  cursor: pointer;
}
code,
.mono {
  font-family: var(--mono);
  font-variant-numeric: tabular-nums;
}
small {
  font-size: 12px;
}
.icon {
  display: inline-block;
  flex-shrink: 0;
  vertical-align: middle;
}
.muted {
  color: var(--mute);
}
.right {
  text-align: right;
}
[hidden] {
  display: none !important;
}
:focus-visible {
  outline: 3px solid #79a888;
  outline-offset: 4px;
}
.skip-link {
  position: fixed;
  left: 260px;
  top: -60px;
  background: var(--green);
  color: white;
  padding: 10px;
  z-index: 100;
}
.skip-link:focus {
  top: 10px;
}
.eyebrow {
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.15em;
  line-height: 1.5;
  color: var(--mute);
}
.row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}
.spacer {
  flex: 1;
}
.brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 27px;
  font-weight: 700;
  letter-spacing: -1.4px;
  text-decoration: none;
  color: var(--ink);
}
.brand-mark {
  position: relative;
  display: grid;
  place-items: center;
  font-size: 36px;
  line-height: 1;
  color: var(--green);
  font-weight: 650;
  width: 29px;
  height: 37px;
  padding-bottom: 9px;
}
.brand-mark span {
  position: absolute;
  font-size: 9px;
  top: 11px;
  right: 4px;
  color: var(--cyc);
  letter-spacing: -3px;
}
.brand-dot {
  font-size: 10px;
  letter-spacing: 0;
  align-self: flex-start;
  margin-top: 8px;
  margin-left: -3px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid #dfe4d9;
  background: #fff;
  border-radius: 8px;
  padding: 10px 16px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  min-height: 40px;
  transition:
    background 0.15s,
    transform 0.15s,
    box-shadow 0.15s;
}
.btn .icon {
  width: 16px;
  height: 16px;
}
.btn:hover {
  background: #f0f3e9;
  border-color: #cbd4c4;
}
.btn:active {
  transform: translateY(1px);
}
.btn.primary {
  background: var(--green);
  color: #fff;
  border-color: var(--green);
  box-shadow: 0 2px 2px #17472c0b;
}
.btn.primary:hover {
  background: #134d36;
}
.btn.light {
  background: #f4f8e9;
  border-color: #f4f8e9;
  color: #244834;
}
.btn.tape {
  background: var(--tape);
  color: #294431;
  border-color: transparent;
}
.btn.danger {
  color: var(--signal);
  border-color: #edcece;
}
.btn.sm {
  font-size: 11px;
  min-height: 32px;
  padding: 6px 11px;
}
.btn.large {
  padding: 14px 22px;
  min-height: 49px;
  font-size: 13px;
}
.btn[disabled],
button[disabled] {
  opacity: 0.5;
  cursor: not-allowed;
}
.icon-btn {
  display: inline-grid;
  place-items: center;
  border: 0;
  border-radius: 6px;
  background: transparent;
  padding: 7px;
  color: var(--mute);
  min-width: 34px;
  min-height: 34px;
}
.icon-btn:hover {
  background: var(--line-2);
  color: var(--green);
}
.text-link {
  display: inline-flex;
  gap: 7px;
  align-items: center;
  text-decoration: none;
  color: var(--green);
  font-weight: 600;
  font-size: 12px;
}
.text-link:hover {
  text-decoration: underline;
}
.text-link .icon {
  width: 15px;
  height: 15px;
}
/* Workspace shell */
.shell {
  display: grid;
  grid-template-columns: var(--rail) minmax(0, 1fr);
  min-height: 100vh;
}
.rail {
  background: #fcfcf9;
  border-right: 1px solid var(--line);
  padding: 28px 18px 16px;
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.rail > .brand {
  padding: 0 12px 28px;
}
.workspace {
  border: 1px solid var(--line);
  border-radius: 9px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 11px 9px;
  margin: 0 3px 24px;
  min-width: 0;
  background: #fff;
}
.workspace-avatar {
  background: #eaeedf;
  color: #657050;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 7px;
  font-weight: 600;
  flex-shrink: 0;
}
.workspace > div {
  min-width: 0;
}
.workspace b {
  font-size: 11px;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 137px;
}
.workspace small {
  display: block;
  color: var(--mute);
  font-size: 10px;
}
.nav-label {
  color: #92988c;
  font-size: 9px;
  letter-spacing: 0.12em;
  margin: 0 12px 10px;
  font-weight: 600;
}
.rail a.nav {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 11px 12px;
  border-radius: 7px;
  text-decoration: none;
  font-size: 12px;
  font-weight: 500;
  color: #747c73;
}
.rail a.nav .icon {
  width: 18px;
  height: 18px;
}
.rail a.nav:hover {
  background: #eff2e8;
  color: var(--ink);
}
.rail a.nav.active {
  background: #eaf0e2;
  color: #2e6040;
  font-weight: 650;
}
.nav-new {
  font-size: 9px;
  background: #e5eadb;
  border: 1px solid #dbe3d0;
  padding: 0 5px;
  border-radius: 4px;
  margin-left: auto;
  color: #5c7350;
}
.credit-widget {
  margin: 24px 4px 12px;
  padding: 13px;
  background: #f1f3e9;
  border: 1px solid #e7ebdd;
  border-radius: 9px;
}
.credit-widget > span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  color: #647356;
  font-weight: 550;
}
.credit-widget > span .icon {
  width: 14px;
  height: 14px;
}
.credit-widget strong {
  display: block;
  font-size: 22px;
  letter-spacing: -0.05em;
  margin: 6px 0 10px;
}
.credit-widget strong small {
  font-size: 10px;
  letter-spacing: 0;
  color: var(--mute);
  font-weight: 400;
}
.credit-widget a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 10px;
  text-decoration: none;
  border-top: 1px solid #dce3ce;
  padding-top: 10px;
  color: #526747;
  font-weight: 600;
}
.credit-widget a .icon {
  width: 13px;
  height: 13px;
}
.rail a.help-nav {
  font-size: 10px;
  padding: 10px 8px;
  gap: 8px;
}
.who {
  border-top: 1px solid var(--line);
  padding: 17px 4px 0;
  margin-top: 9px;
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}
.avatar {
  border-radius: 50%;
  background: #e7e4d8;
  color: #786d53;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  font-size: 12px;
}
.who > div {
  flex: 1;
  min-width: 0;
}
.who b {
  display: block;
  font-size: 11px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.who small {
  font-size: 9px;
  color: var(--mute);
}
.who .icon {
  width: 15px;
  height: 15px;
}
.workspace-main {
  min-width: 0;
  display: flex;
  flex-direction: column;
}
.workspace-header {
  height: 72px;
  border-bottom: 1px solid var(--line);
  padding: 0 38px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fbfcf8;
}
.breadcrumb {
  display: flex;
  gap: 12px;
  align-items: center;
  color: #9a9f94;
  font-size: 11px;
}
.breadcrumb .icon {
  width: 12px;
  height: 12px;
  color: #aab1a2;
}
.breadcrumb span {
  color: #56624f;
}
.environment-label {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #808a77;
  font-size: 10px;
}
.environment-label i,
.live-dot {
  background: #80a861;
  border-radius: 50%;
  width: 5px;
  height: 5px;
  display: inline-block;
}
.header-store {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 10px;
  text-decoration: none;
  border-left: 1px solid var(--line);
  padding-left: 18px;
  margin-left: 10px;
  color: #626f58;
}
.header-store .icon {
  width: 13px;
  height: 13px;
}
.main {
  padding: 32px 38px 50px;
  max-width: 1500px;
  width: 100%;
  margin: 0 auto;
  flex: 1;
  min-width: 0;
  outline: none;
}
.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-bottom: 10px;
}
.topbar .eyebrow {
  font-size: 9px;
  margin-bottom: 9px;
}
.topbar h1 {
  font-size: 27px;
  letter-spacing: -1px;
  line-height: 1.3;
}
.page-lede {
  font-size: 12px;
  color: var(--mute);
  margin-bottom: 28px;
}
.workspace-footer {
  margin: 0 38px;
  padding: 20px 0;
  border-top: 1px solid var(--line);
  font-size: 9px;
  color: #929b89;
  display: flex;
  justify-content: space-between;
  gap: 10px;
}
.workspace-footer .icon {
  width: 12px;
  height: 12px;
  margin-left: 4px;
}
.studio-banner {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  min-height: 284px;
  position: relative;
  background: #e9eedf;
  border: 1px solid #dfe5d3;
  border-radius: 13px;
  overflow: hidden;
  margin-bottom: 26px;
}
.studio-banner > div:first-child {
  padding: 28px 32px;
  z-index: 1;
}
.banner-eyebrow {
  font-size: 8px;
  letter-spacing: 0.17em;
  color: #6e7e59;
  font-weight: 650;
}
.studio-banner h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 36px;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: #314630;
  margin: 12px 0;
}
.studio-banner p {
  font-size: 11px;
  line-height: 1.7;
  color: #788369;
  margin-bottom: 18px;
}
.studio-banner .btn {
  font-size: 10px;
  padding: 9px 13px;
  min-height: 36px;
  border-color: #cbd7b8;
  background: #f8fbef;
}
.banner-foot {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 8px;
  color: #8a947f;
  margin-top: 13px;
}
.banner-foot .icon {
  width: 12px;
  height: 12px;
}
.banner-visual {
  position: relative;
  overflow: hidden;
}
.banner-visual > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 62%;
  filter: saturate(0.8);
}
.banner-visual:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #e9eedf, transparent 34%);
  z-index: 1;
}
.banner-visual-label {
  position: absolute;
  z-index: 2;
  left: 18%;
  top: 23px;
  padding: 7px 10px;
  border: 1px solid #ffffff8a;
  border-radius: 5px;
  background: #fcfdf4b8;
  backdrop-filter: blur(8px);
  color: #646b53;
  font-size: 9px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.banner-visual-label .icon {
  width: 11px;
  height: 11px;
}
.banner-play {
  position: absolute;
  left: 40%;
  top: 45%;
  z-index: 2;
  border: 1px solid #ffffff70;
  background: #ffffff28;
  backdrop-filter: blur(6px);
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
}
.banner-play .icon {
  fill: #fff;
  width: 16px;
  height: 16px;
}
.banner-mini {
  position: absolute;
  right: 22px;
  bottom: -12px;
  width: 110px;
  height: 190px;
  border: 5px solid #fffdf4;
  border-radius: 13px;
  transform: rotate(9deg);
  box-shadow: 0 10px 28px #38412d30;
  overflow: hidden;
  z-index: 2;
}
.banner-mini img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.banner-mini span {
  position: absolute;
  bottom: 17px;
  left: 7px;
  color: white;
  font-size: 14px;
  font-weight: 550;
  line-height: 1.2;
  letter-spacing: -0.03em;
  text-shadow: 0 1px 12px #0006;
}
.stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 30px;
}
.stat {
  background: #fff;
  border: 1px solid var(--line);
  padding: 17px 19px;
  border-radius: 10px;
  min-width: 0;
}
.stat-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 10px;
  font-weight: 500;
  color: #79816f;
  gap: 5px;
}
.stat-label .icon {
  width: 15px;
  height: 15px;
  color: #95a08b;
}
.stat .n {
  font-size: 27px;
  font-weight: 550;
  line-height: 1.2;
  letter-spacing: -0.045em;
  margin: 11px 0 7px;
  font-variant-numeric: tabular-nums;
}
.stat-caption {
  font-size: 9px;
  color: #98a18f;
}
.stat .l {
  font-size: 11px;
  color: var(--mute);
  margin-top: 6px;
}
.dashboard-columns {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 278px;
  gap: 25px;
}
.dashboard-section + .dashboard-section {
  margin-top: 27px;
}
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 17px;
}
.section-heading h2 {
  font-size: 19px;
}
.section-heading > .text-link {
  font-size: 10px;
}
.section-heading .eyebrow {
  display: block;
  font-size: 8px;
  margin-bottom: 5px;
}
.section-heading h3 {
  font-size: 13px;
}
.template-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.template-card {
  min-width: 0;
}
.template-image {
  aspect-ratio: 4/5;
  position: relative;
  overflow: hidden;
  border-radius: 9px;
  background: #dce1d2;
}
.template-image > img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: transform 0.5s;
  filter: saturate(0.8);
}
.template-image-0 > img {
  object-position: 45% 62%;
}
.template-image-1 > img {
  object-position: 50% 42%;
}
.template-image-2 > img {
  transform: scale(1.8);
  object-position: 30% 77%;
  filter: saturate(0.4);
}
.template-image:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 45%, #172e2066);
  pointer-events: none;
}
.template-format,
.template-duration {
  position: absolute;
  top: 10px;
  z-index: 1;
  background: #ffffffcf;
  backdrop-filter: blur(6px);
  border-radius: 4px;
  padding: 3px 5px;
  font-size: 8px;
  color: #4b5847;
}
.template-format {
  left: 9px;
  display: flex;
  align-items: center;
  gap: 4px;
}
.template-format .icon {
  width: 10px;
  height: 10px;
}
.template-duration {
  right: 9px;
}
.template-overlay-title {
  position: absolute;
  left: 12px;
  bottom: 48px;
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.05;
  color: #fff;
  letter-spacing: -0.025em;
  z-index: 1;
  text-shadow: 0 1px 8px #0003;
}
.template-use {
  position: absolute;
  bottom: 11px;
  left: 10px;
  right: 10px;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fffdf2e6;
  border: 1px solid #ffffffa1;
  border-radius: 5px;
  padding: 7px 8px;
  color: #4a5c40;
  font-size: 9px;
  font-weight: 550;
  text-decoration: none;
  transition: background 0.2s;
}
.template-use:hover {
  background: #fff;
}
.template-use .icon {
  width: 12px;
  height: 12px;
}
.template-card:hover .template-image > img {
  transform: scale(1.035);
}
.template-card:hover .template-image-2 > img {
  transform: scale(1.85);
}
.template-info {
  padding: 10px 1px;
}
.template-info h3 {
  font-size: 11px;
  letter-spacing: -0.015em;
}
.template-info > span {
  font-size: 9px;
  color: #8e9783;
}
.caption-note {
  font-size: 9px;
  color: #959e8e;
  margin: 5px 0 0;
}
.panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 11px;
  padding: 23px;
}
.panel + .panel {
  margin-top: 18px;
}
.panel h3 {
  margin-bottom: 17px;
}
.panel p {
  margin-bottom: 14px;
}
.panel p:last-child {
  margin-bottom: 0;
}
.launch-panel {
  padding: 18px;
}
.launch-panel .section-heading {
  margin-bottom: 5px;
}
.launch-panel h3 {
  margin: 0;
}
.progress-count {
  color: #7c8d68;
  font-size: 9px;
  background: #eff3e6;
  border-radius: 4px;
  padding: 2px 5px;
}
.launch-panel > p {
  font-size: 10px;
  color: #8e9784;
  margin: 0;
}
.progress-track {
  height: 4px;
  background: #eff2e9;
  border-radius: 8px;
  margin: 16px 0 18px;
  overflow: hidden;
}
.progress-track i {
  display: block;
  background: #719263;
  height: 100%;
  border-radius: 8px;
}
.launch-steps {
  display: grid;
  gap: 20px;
}
.launch-step {
  display: flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
}
.step-check {
  width: 22px;
  height: 22px;
  border: 1px solid #dbe2cf;
  display: grid;
  place-items: center;
  color: #9aa889;
  border-radius: 50%;
  font-size: 9px;
  flex-shrink: 0;
}
.step-check .icon {
  width: 12px;
  height: 12px;
}
.complete .step-check {
  background: #e8efe0;
  border-color: #e8efe0;
  color: #6f8b50;
}
.launch-step > div {
  flex: 1;
}
.launch-step b {
  display: block;
  font-size: 10px;
  font-weight: 550;
}
.launch-step small {
  display: block;
  font-size: 9px;
  color: #9aa38d;
  margin-top: 3px;
}
.launch-step > .icon {
  width: 12px;
  height: 12px;
  color: #b1b8a8;
}
.launch-step:hover b {
  color: var(--green);
}
.fulfillment-card {
  background: #edf1e4;
  border: 1px solid #e0e6d2;
  padding: 20px;
  border-radius: 10px;
  margin-top: 20px;
}
.fulfillment-icon {
  display: block;
  margin-bottom: 14px;
  color: #6b8555;
}
.fulfillment-icon > .icon {
  width: 23px;
  height: 23px;
}
.fulfillment-card > .pill {
  font-size: 8px;
  margin-bottom: 13px;
  background: #e2e9d4;
  color: #6b7d53;
}
.fulfillment-card h3 {
  font-size: 16px;
  line-height: 1.4;
  letter-spacing: -0.02em;
}
.fulfillment-card p {
  font-size: 10px;
  color: #889378;
  line-height: 1.8;
  margin: 10px 0 16px;
}
.fulfillment-card .text-link {
  font-size: 10px;
  color: #526e3f;
}
.creator-note {
  display: flex;
  gap: 10px;
  margin: 22px 12px;
  color: #93a183;
}
.creator-note > .icon {
  width: 17px;
  height: 17px;
}
.creator-note p {
  font-size: 9px;
  line-height: 1.8;
}
.project-empty {
  display: flex;
  align-items: center;
  gap: 15px;
  background: #fff;
  border: 1px dashed #dce3d1;
  border-radius: 10px;
  padding: 22px;
}
.project-empty > div {
  flex: 1;
}
.empty-icon {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 11px;
  background: #f0f3e9;
  color: #809469;
  flex-shrink: 0;
}
.project-empty h3 {
  font-size: 12px;
}
.project-empty p {
  font-size: 10px;
  color: #98a08f;
  margin-top: 4px;
}
.project-empty > .btn {
  font-size: 10px;
}
.studio-inspiration {
  margin: 28px 0 32px;
}
.studio-inspiration .template-grid {
  max-width: 950px;
}
.studio-inspiration .template-image {
  aspect-ratio: 1/1;
}
.studio-inspiration .template-overlay-title {
  font-size: 30px;
}
.studio-inspiration .template-info h3 {
  font-size: 14px;
}
.studio-inspiration .template-use {
  padding: 10px;
  font-size: 11px;
}
.studio-inspiration .template-overlay-title {
  bottom: 65px;
}
/* Forms, collections, editor, and tables */
.field {
  display: block;
  margin: 0 0 19px;
}
.field > span {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: #64715d;
  margin-bottom: 7px;
}
.field small {
  display: block;
  color: var(--mute);
  margin-top: 7px;
  font-size: 11px;
  line-height: 1.65;
}
.product-spec-preview {
  padding: 18px;
  margin: 0 0 20px;
  border: 1px solid var(--line);
  background: var(--cyc);
}
.product-spec-preview h3 {
  margin: 0 0 12px;
}
.product-spec-preview p {
  font-size: 12px;
  overflow-wrap: anywhere;
}
.product-spec-preview p:last-child {
  margin-bottom: 0;
}
.product-spec-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 18px;
  margin: 14px 0;
}
.product-spec-grid dt {
  font-size: 10px;
  color: var(--mute);
  margin-bottom: 3px;
}
.product-spec-grid dd {
  font-size: 12px;
  margin: 0;
  overflow-wrap: anywhere;
}
textarea.artwork-description {
  min-height: 82px;
}
input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"],
input[type="url"],
input[type="search"],
select,
textarea {
  width: 100%;
  padding: 11px 12px;
  border: 1px solid #dfe5d8;
  border-radius: 7px;
  background: #fff;
  font-size: 12px;
  min-height: 42px;
}
input:focus,
select:focus,
textarea:focus {
  border-color: #7b9970;
}
textarea {
  min-height: 130px;
  resize: vertical;
  line-height: 1.7;
}
input::placeholder,
textarea::placeholder {
  color: #a0a795;
}
input[type="file"] {
  width: 100%;
  padding: 18px 12px;
  border: 1px dashed #cdd7bf;
  border-radius: 8px;
  background: #f9fbf4;
  font-size: 11px;
  color: #869576;
}
input::file-selector-button {
  border: 1px solid #d5dfc7;
  border-radius: 5px;
  background: #eff4e5;
  color: #536c3f;
  padding: 6px 9px;
  margin-right: 10px;
  font-size: 10px;
  cursor: pointer;
}
input[type="color"] {
  width: 60px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: #fff;
}
input[type="range"] {
  width: 100%;
  accent-color: var(--green);
  margin: 10px 0;
}
.cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
  gap: 22px;
  align-items: start;
}
.checks {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.checks label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 6px 9px;
  font-size: 11px;
  background: var(--panel);
  cursor: pointer;
}
.checks input {
  accent-color: var(--green);
}
.empty {
  padding: 55px 24px;
  text-align: center;
  color: var(--mute);
  border: 1px dashed #d6e0c9;
  background: #fcfdf9;
  border-radius: 12px;
  font-size: 12px;
}
.empty b {
  display: block;
  color: var(--ink);
  font-size: 20px;
  letter-spacing: -0.03em;
  font-weight: 550;
  margin-bottom: 8px;
}
.beautiful-empty {
  margin-top: 25px;
  padding: 70px 20px;
}
.beautiful-empty .empty-icon {
  margin-bottom: 20px;
  width: 58px;
  height: 58px;
}
.beautiful-empty p {
  margin-bottom: 22px;
}
.collection-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 17px;
  margin-bottom: 22px;
}
.filter-tabs {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
}
.filter-tab {
  border: 0;
  background: none;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 11px;
  color: var(--mute);
}
.filter-tab.active {
  background: #e9efdf;
  color: #446339;
  font-weight: 600;
}
.filter-tab:hover {
  background: #edf1e6;
}
.search-field {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 210px;
  padding: 0 11px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 7px;
}
.search-field .icon {
  width: 15px;
  height: 15px;
  color: #a0ad94;
}
.search-field input {
  border: 0 !important;
  min-height: 36px;
  padding: 7px 0;
  font-size: 10px;
  background: transparent;
}
.tags {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 22px;
}
.tag {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  text-decoration: none;
  overflow: hidden;
  display: block;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.tag:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 20px -16px #264e3570;
}
.tag .img {
  aspect-ratio: 1.13;
  background: #edf0e5;
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.tag .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.tag .status {
  position: absolute;
  top: 12px;
  right: 12px;
}
.product-card-info {
  padding: 16px;
}
.tag h3 {
  margin: 5px 0 15px;
  font-size: 16px;
}
.tag .kind {
  font-size: 10px;
  color: #8a967e;
}
.tag .price {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--line-2);
  padding-top: 12px;
  font-size: 15px;
  font-weight: 550;
}
.tag .price small {
  font-weight: 400;
  font-size: 10px;
  color: var(--green);
}
.tag .price small .icon {
  width: 13px;
  height: 13px;
  margin-left: 4px;
}
.product-placeholder {
  color: #9aa88b;
  display: grid;
  justify-items: center;
  gap: 14px;
}
.product-placeholder > .icon {
  width: 35px;
  height: 35px;
}
.product-placeholder small {
  font-size: 11px;
}
.pill {
  display: inline-block;
  font-size: 9px;
  line-height: 1.35;
  font-weight: 550;
  padding: 4px 7px;
  border-radius: 5px;
  background: #f0f2eb;
  color: #6a7560;
  white-space: nowrap;
}
.pill.ok {
  background: #e4efe1;
  color: #528242;
}
.pill.warn {
  background: #f6efd8;
  color: #9b8238;
}
.pill.bad {
  background: #fae9e5;
  color: #a45946;
}
.pill.busy {
  background: #edf0e0;
  color: #768344;
}
.pill.busy:before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
  margin: 0 5px 1px 0;
  animation: pulse 1.5s infinite;
}
.note {
  background: #f0f3e5;
  border: 1px solid #e1e8ce;
  border-radius: 7px;
  padding: 11px 13px;
  font-size: 11px;
  color: #75825c;
}
.warn-box {
  background: #fbece8;
  color: #a85a44;
  border-radius: 7px;
  padding: 12px 14px;
  font-size: 12px;
}
.vid-list {
  display: grid;
  gap: 10px;
}
.vid-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 9px;
  padding: 12px;
  text-decoration: none;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) auto;
  gap: 13px;
  align-items: center;
  transition: border-color 0.2s;
}
.vid-card:hover {
  border-color: #a9bb95;
}
.vid-card .thumb {
  width: 48px;
  height: 57px;
  background: #eef2e4;
  border-radius: 5px;
  overflow: hidden;
  display: grid;
  place-items: center;
  color: #899775;
  font-size: 8px;
}
.vid-card .thumb img,
.vid-card .thumb video {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.vid-card h3 {
  font-size: 12px;
  margin-bottom: 4px;
}
.vid-card .muted {
  font-size: 9px !important;
}
.slate {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 15px;
}
.slate .bar {
  height: 4px;
  background: #d6e1c5;
}
.slate.done .bar {
  background: #73a25f;
}
.slate.bad .bar {
  background: var(--signal);
}
.slate.busy .bar {
  animation: pulse 1.5s infinite;
}
.slate .head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 17px 0;
}
.slate .head b {
  font-size: 13px;
}
.slate .head .dur {
  font-size: 11px;
  background: #f1f4e9;
  border: 1px solid #e0e7d3;
  border-radius: 5px;
  padding: 2px 6px;
  display: inline-flex;
  align-items: center;
  gap: 3px;
}
.slate .head .dur input {
  width: 43px;
  background: transparent;
  border: 0;
  padding: 2px;
  min-height: 25px;
  font-size: 11px;
  text-align: right;
}
.slate .body {
  padding: 12px 17px 17px;
}
.slate textarea {
  min-height: 108px;
}
.slate .dialogue {
  font-size: 11px;
  color: var(--mute);
  margin-top: 10px;
}
.ticket {
  background: #f0f3e7;
  border: 1px solid #dce5cd;
  border-radius: 9px;
  padding: 20px;
  font-size: 12px;
}
.ticket .big {
  font-size: 29px;
  letter-spacing: -0.04em;
  font-weight: 550;
}
.ticket dl {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 7px 14px;
  margin: 14px 0 0;
}
.ticket dt {
  color: #839071;
  font-size: 10px;
}
.ticket dd {
  margin: 0;
  text-align: right;
  font-size: 10px;
}
.ticket .rule {
  border-top: 1px dashed #c9d6b7;
  margin: 14px 0;
}
.player {
  background: #1a281d;
  border-radius: 12px;
  overflow: hidden;
  display: grid;
  place-items: center;
}
.player video {
  width: 100%;
  max-height: 76vh;
}
.deliver {
  display: grid;
  grid-template-columns: minmax(200px, 330px) minmax(0, 1fr);
  gap: 25px;
  align-items: start;
}
.tbl-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
}
table.list {
  width: 100%;
  border-collapse: collapse;
  font-size: 11px;
}
table.list th {
  text-align: left;
  font-size: 9px;
  font-weight: 550;
  letter-spacing: 0.01em;
  color: #859378;
  background: #f9fbf5;
  padding: 14px;
  border-bottom: 1px solid var(--line);
}
table.list td {
  padding: 16px 14px;
  border-bottom: 1px solid var(--line-2);
  vertical-align: top;
}
table.list tr:last-child td {
  border-bottom: 0;
}
.list .right {
  text-align: right;
}
.orders-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding: 15px 18px;
  background: #edf2e5;
  border: 1px solid #dfe7d3;
  border-radius: 9px;
  margin: 20px 0;
}
.orders-summary p {
  font-size: 11px;
  color: #778568;
}
.orders-summary strong {
  color: #48623a;
}
.fulfillment-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 24px;
  margin-top: 25px;
}
.fulfillment-steps {
  display: grid;
  gap: 0;
  margin: 20px 0 0;
}
.fulfillment-step {
  display: flex;
  gap: 14px;
  padding: 18px 0;
  border-top: 1px solid var(--line-2);
}
.fulfillment-step > .icon {
  color: #7f9666;
}
.fulfillment-step h3 {
  font-size: 13px;
  margin-bottom: 5px;
}
.fulfillment-step p {
  font-size: 11px;
  color: var(--mute);
}
.responsibility-list {
  margin: 15px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 13px;
}
.responsibility-list li {
  font-size: 12px;
  display: flex;
  gap: 9px;
  align-items: start;
}
.responsibility-list .icon {
  width: 15px;
  height: 15px;
  color: #7d975f;
}
.setup-list {
  padding-left: 19px;
  margin: 12px 0 0;
  color: var(--mute);
  font-size: 12px;
}
.setup-list li {
  margin: 9px 0;
}
.template-dialog {
  border: 1px solid var(--line);
  border-radius: 15px;
  padding: 30px;
  max-width: 490px;
  width: calc(100% - 30px);
  color: var(--ink);
  box-shadow: 0 30px 100px #10261740;
}
.template-dialog::backdrop {
  background: #1b2c2059;
  backdrop-filter: blur(4px);
}
.template-dialog h2 {
  font-size: 28px;
  margin-bottom: 13px;
}
.template-dialog p.muted {
  font-size: 12px;
  margin-bottom: 22px;
}
.template-brief {
  background: #f2f5eb;
  padding: 15px;
  font-size: 12px;
  border-radius: 8px;
  margin-bottom: 23px;
  color: #758465;
}
.dialog-footnote {
  display: block;
  margin-top: 12px;
  font-size: 10px;
  color: var(--mute);
}
/* Public site */
.landing {
  background: #f8f9f3;
}
.landing-header {
  max-width: 1350px;
  padding: 26px 55px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
}
.landing-nav {
  display: flex;
  gap: 28px;
}
.landing-nav a,
.login-link {
  font-size: 12px;
  font-weight: 500;
  text-decoration: none;
  color: #6d7863;
}
.landing-nav a:hover,
.login-link:hover {
  color: var(--green);
}
.login-link {
  margin-right: 12px;
}
.hero {
  max-width: 1250px;
  margin: auto;
  padding: 58px 55px 75px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 35px;
  align-items: center;
  min-height: 670px;
}
.hero-copy > .eyebrow {
  font-size: 9px;
  color: #7a8b67;
  display: flex;
  gap: 8px;
  align-items: center;
}
.hero h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(48px, 5.6vw, 78px);
  letter-spacing: -0.035em;
  line-height: 1.04;
  margin: 23px 0;
  color: #273c29;
}
.hero h1 em {
  font-style: italic;
  color: #72924e;
}
.hero .lede {
  max-width: 390px;
  font-size: 14px;
  line-height: 1.85;
  color: #7e8973;
  margin: 25px 0 29px;
}
.hero .text-link {
  font-size: 11px;
  margin-left: 8px;
  color: #5b6c4d;
}
.hero-fine {
  font-size: 10px;
  color: #929d85;
  margin-top: 19px;
}
.hero-visual {
  height: 485px;
  position: relative;
  isolation: isolate;
}
.hero-orbit {
  position: absolute;
  border-radius: 50%;
  inset: 10% -8% 0 0;
  background: #eaf0dd;
  z-index: -1;
}
.hero-orbit:before {
  content: "";
  position: absolute;
  border: 1px dashed #d3ddc1;
  inset: -18px;
  border-radius: 50%;
  transform: rotate(22deg);
}
.visual-note {
  position: absolute;
  top: 2px;
  left: 8px;
  transform: rotate(-8deg);
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.25;
  color: #859b68;
}
.hero-product {
  position: absolute;
  left: -6px;
  top: 116px;
  width: 203px;
  padding: 10px;
  background: #fffffa;
  border: 1px solid #e7e9df;
  transform: rotate(-10deg);
  border-radius: 11px;
  box-shadow: 0 15px 40px #39532d16;
  z-index: 2;
}
.mini-eyebrow {
  font-size: 7px;
  letter-spacing: 0.13em;
  color: #899776;
  padding: 3px 0 9px;
  display: block;
}
.hero-product > img {
  width: 100%;
  height: 184px;
  object-fit: cover;
  object-position: 50% 65%;
  border-radius: 6px;
}
.hero-product > div {
  padding: 9px 3px 3px;
}
.hero-product b {
  display: block;
  font-size: 10px;
  font-weight: 550;
}
.hero-product > div > span {
  font-size: 8px;
  color: #929d86;
}
.hero-phone {
  position: absolute;
  width: 229px;
  height: 412px;
  right: 10px;
  top: 26px;
  transform: rotate(7deg);
  border: 6px solid #fffdf4;
  border-radius: 23px;
  overflow: hidden;
  box-shadow: 0 24px 40px -15px #3246274d;
  background: #dbe4d1;
}
.hero-phone > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.85);
}
.hero-phone:after {
  content: "";
  position: absolute;
  inset: 50% 0 0;
  background: linear-gradient(transparent, #182e2770);
  pointer-events: none;
}
.phone-top {
  position: absolute;
  top: 12px;
  left: 11px;
  right: 11px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  color: #fff;
  font-size: 7px;
}
.phone-top > span:first-child {
  padding: 5px;
  background: #ffffff21;
  backdrop-filter: blur(5px);
  border: 1px solid #ffffff66;
  border-radius: 5px;
}
.phone-top .icon {
  width: 10px;
  height: 10px;
}
.phone-caption {
  position: absolute;
  bottom: 30px;
  left: 16px;
  right: 16px;
  z-index: 1;
  color: #fff;
}
.phone-caption > span {
  font-size: 7px;
  letter-spacing: 0.15em;
}
.phone-caption strong {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 36px;
  line-height: 1.03;
  display: block;
  letter-spacing: -0.03em;
  margin: 8px 0 14px;
}
.phone-caption > a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 5px;
  background: #ffffffde;
  color: #4d5d43;
  padding: 9px;
  font-size: 9px;
  text-decoration: none;
}
.phone-caption .icon {
  width: 12px;
  height: 12px;
}
.phone-progress {
  position: absolute;
  bottom: 12px;
  left: 16px;
  right: 16px;
  height: 2px;
  background: #ffffff60;
  z-index: 1;
}
.phone-progress > i {
  display: block;
  height: 100%;
  width: 35%;
  background: #fff;
}
.sale-note {
  position: absolute;
  bottom: 8px;
  left: 37px;
  z-index: 3;
  display: flex;
  gap: 10px;
  align-items: center;
  border: 1px solid #e0e8d6;
  background: #fffefa;
  border-radius: 9px;
  padding: 13px 15px;
  box-shadow: 0 12px 30px #334b2212;
  transform: rotate(-3deg);
}
.sale-note > .icon:first-child {
  width: 32px;
  height: 32px;
  padding: 7px;
  background: #edf3e3;
  color: #729457;
  border-radius: 6px;
}
.sale-note > .icon:last-child {
  width: 15px;
  height: 15px;
  color: #86a366;
  margin-left: 10px;
}
.sale-note strong {
  display: block;
  font-size: 11px;
  font-weight: 600;
}
.sale-note span {
  font-size: 9px;
  color: #8b987d;
}
.platform-strip {
  max-width: 1140px;
  margin: 5px auto 0;
  padding: 27px 0;
  border-top: 1px solid #e3e8d9;
  border-bottom: 1px solid #e3e8d9;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}
.platform-strip > span:first-child {
  font-size: 8px;
  letter-spacing: 0.15em;
  font-weight: 600;
  color: #859475;
}
.platform-strip > div {
  display: flex;
  gap: 45px;
  color: #687b54;
}
.platform-strip b {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.045em;
}
.platform-strip > span:last-child {
  font-size: 10px;
  color: #92a080;
}
.landing-section {
  max-width: 1250px;
  padding: 90px 55px;
  margin: auto;
}
.section-intro {
  text-align: center;
  max-width: 520px;
  margin: 0 auto 40px;
}
.section-intro h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 43px;
  color: #354a2d;
  margin: 13px 0;
}
.section-intro p {
  font-size: 12px;
  color: #8b987e;
  margin-top: 18px;
}
.how-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.how-card {
  padding: 24px 21px;
  background: #fffefa;
  border: 1px solid #e4e9db;
  border-radius: 10px;
}
.how-card > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 25px;
}
.how-card > div > span {
  font-size: 10px;
  color: #a2ae93;
}
.how-card .icon {
  color: #819b64;
  width: 20px;
  height: 20px;
}
.how-card h3 {
  font-size: 16px;
  letter-spacing: -0.03em;
}
.how-card p {
  font-size: 11px;
  color: #8b997b;
  line-height: 1.9;
  margin-top: 11px;
}
.inspiration-section {
  padding-top: 20px;
  padding-bottom: 85px;
}
.inspiration-section .section-heading {
  margin-bottom: 25px;
}
.inspiration-section h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 35px;
  color: #3a502e;
}
.inspiration-section .eyebrow {
  font-size: 9px;
  margin-bottom: 10px;
}
.inspiration-section .template-grid {
  gap: 25px;
}
.inspiration-section .template-image {
  aspect-ratio: 1.08;
}
.inspiration-section .template-overlay-title {
  font-size: 35px;
  bottom: 65px;
  left: 18px;
}
.inspiration-section .template-use {
  font-size: 11px;
  padding: 11px;
  left: 16px;
  right: 16px;
  bottom: 16px;
}
.inspiration-section .template-info {
  padding-top: 15px;
}
.inspiration-section .template-info h3 {
  font-size: 15px;
}
.inspiration-section .template-info > span {
  font-size: 11px;
}
.inspiration-section .template-format,
.inspiration-section .template-duration {
  font-size: 9px;
  padding: 5px 7px;
}
.inspiration-section .caption-note {
  margin-top: 15px;
}
.economy-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  max-width: 1140px;
  margin: 0 auto;
  padding: 65px 60px;
  border-radius: 15px;
  background: #ebf0df;
  border: 1px solid #e0e8d1;
  align-items: center;
}
.economy-section h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 50px;
  letter-spacing: -0.035em;
  line-height: 1.1;
  color: #344d2a;
  margin: 15px 0 20px;
}
.economy-section h2 em {
  color: #7c9662;
  font-style: italic;
}
.economy-section > div > p {
  font-size: 12px;
  color: #839471;
  line-height: 1.85;
  margin-bottom: 25px;
}
.economy-card {
  background: #fffefa;
  border: 1px solid #dfe7d4;
  border-radius: 11px;
  padding: 25px;
}
.economy-card .section-heading {
  margin-bottom: 25px;
}
.economy-card h3 {
  font-size: 15px;
}
.economy-card .pill {
  font-size: 8px;
}
.economy-card .field {
  margin-bottom: 5px;
}
.economy-price {
  font-size: 38px;
  font-weight: 550;
  letter-spacing: -0.04em;
}
.economy-card dl {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px 7px;
  font-size: 11px;
  margin: 20px 0;
  padding-bottom: 20px;
  border-bottom: 1px solid #e6ecdc;
}
.economy-card dt {
  color: #879575;
}
.economy-card dt small {
  font-size: 8px;
  display: block;
}
.economy-card dd {
  margin: 0;
  text-align: right;
  color: #5a7248;
}
.economy-keep {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  color: #5f7e48;
}
.economy-keep > strong {
  font-size: 25px;
  font-weight: 600;
  letter-spacing: -0.045em;
}
.economy-card > small {
  display: block;
  font-size: 9px;
  line-height: 1.8;
  color: #9da88e;
  margin-top: 17px;
}
.closing-cta {
  text-align: center;
  padding: 95px 25px 100px;
}
.closing-cta h2 {
  font-family: var(--serif);
  font-size: 50px;
  letter-spacing: -0.025em;
  font-weight: 400;
  margin: 16px 0 27px;
  color: #3a502e;
}
.landing-footer {
  max-width: 1140px;
  margin: auto;
  border-top: 1px solid #e3e8d9;
  padding: 26px 0 35px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
}
.landing-footer > .brand {
  font-size: 24px;
}
.landing-footer > span {
  font-size: 10px;
  color: #94a080;
}
.landing-footer > a:last-child {
  display: flex;
  align-items: center;
  gap: 7px;
  text-decoration: none;
  color: #6d8358;
  font-size: 10px;
}
.landing-footer .icon {
  width: 13px;
  height: 13px;
}
/* Account pages */
.auth-layout {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #fbfcf8;
}
.auth-story {
  background: #e9efdc;
  padding: 42px 60px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}
.auth-story:after {
  content: "";
  width: 500px;
  height: 500px;
  border: 1px solid #cfddba;
  border-radius: 50%;
  position: absolute;
  right: -320px;
  bottom: -140px;
  box-shadow:
    0 0 0 50px #dbe6c73b,
    0 0 0 100px #dae5c61f;
  pointer-events: none;
}
.auth-story > div {
  padding: 70px 0;
}
.auth-story .eyebrow {
  font-size: 9px;
  color: #8b9d74;
}
.auth-story h2 {
  font-family: var(--serif);
  font-size: 56px;
  font-weight: 400;
  letter-spacing: -0.025em;
  color: #3b542e;
  margin: 20px 0;
  line-height: 1.07;
}
.auth-story h2 em {
  color: #849f62;
}
.auth-story p {
  font-size: 13px;
  line-height: 1.9;
  color: #8b9b76;
  max-width: 295px;
}
.auth-story-foot {
  font-size: 10px;
  color: #8b9e72;
  display: flex;
  align-items: center;
  gap: 8px;
}
.auth-story-foot .icon {
  width: 14px;
  height: 14px;
}
.auth {
  width: 100%;
  max-width: 440px;
  margin: auto;
  padding: 55px 30px;
}
.auth-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #91a07e;
  font-size: 11px;
  margin-bottom: 50px;
}
.auth-back .icon {
  width: 15px;
  height: 15px;
  transform: rotate(180deg);
}
.auth .panel {
  border: 0;
  background: transparent;
  padding: 0;
}
.auth .eyebrow {
  font-size: 8px;
}
.auth h1 {
  font-size: 35px;
  margin: 14px 0 30px;
}
.auth .field {
  margin-bottom: 21px;
}
.auth .field > span {
  font-size: 11px;
}
.auth input {
  min-height: 46px;
}
.auth .btn {
  width: 100%;
  margin-top: 8px;
  height: 44px;
}
.auth-foot {
  font-size: 11px;
  margin-top: 22px !important;
}
.auth-foot a {
  color: var(--green);
  font-weight: 600;
  text-decoration: none;
}
.auth-note {
  font-size: 9px;
  color: #a0ac92;
  margin-top: 50px;
}
.auth h1 + .note {
  margin-bottom: 20px;
}
#toasts {
  position: fixed;
  right: 20px;
  bottom: 20px;
  display: grid;
  gap: 8px;
  z-index: 100;
  max-width: calc(100vw - 40px);
}
.toast {
  background: #234633;
  color: #f0f5e7;
  padding: 14px 18px;
  border-radius: 9px;
  font-size: 12px;
  box-shadow: 0 10px 30px #15382130;
  border: 1px solid #567049;
  animation: toast-in 0.2s ease-out;
}
.toast.bad {
  background: #734139;
  border-color: #8c5850;
}
@keyframes pulse {
  50% {
    opacity: 0.45;
  }
}
@keyframes toast-in {
  from {
    transform: translateY(7px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
/* Responsive composition */
@media (min-width: 1600px) {
  .main {
    padding-top: 40px;
  }
  .studio-banner {
    min-height: 320px;
  }
  .studio-banner h2 {
    font-size: 43px;
  }
  .studio-banner > div:first-child {
    padding: 33px 40px;
  }
  .dashboard-columns {
    grid-template-columns: minmax(0, 1fr) 310px;
  }
  .template-image {
    aspect-ratio: 1;
  }
  .template-overlay-title {
    font-size: 28px;
  }
}
@media (max-width: 1200px) {
  :root {
    --rail: 210px;
  }
  .main {
    padding: 27px;
  }
  .workspace-header {
    padding: 0 27px;
  }
  .rail {
    padding: 25px 12px 15px;
  }
  .rail > .brand {
    padding-left: 12px;
  }
  .dashboard-columns {
    grid-template-columns: minmax(0, 1fr) 247px;
    gap: 20px;
  }
  .template-grid {
    gap: 10px;
  }
  .template-overlay-title {
    font-size: 19px;
  }
  .topbar h1 {
    font-size: 24px;
  }
  .topbar > .row .btn {
    font-size: 10px;
    padding: 9px 12px;
  }
  .studio-banner h2 {
    font-size: 31px;
  }
  .studio-banner > div:first-child {
    padding: 25px;
  }
  .stat {
    padding: 15px;
  }
  .stat-caption {
    font-size: 8px;
  }
  .stats {
    gap: 10px;
  }
  .workspace-footer {
    margin: 0 27px;
  }
  .landing-header {
    padding: 23px 35px;
  }
  .hero {
    padding: 40px 45px 65px;
    gap: 20px;
  }
  .hero-phone {
    right: 0;
    width: 215px;
    height: 390px;
  }
  .hero-product {
    left: -5px;
    width: 180px;
  }
  .hero-product > img {
    height: 170px;
  }
  .platform-strip,
  .economy-section,
  .landing-footer {
    margin-left: 45px;
    margin-right: 45px;
  }
  .hero .btn.large {
    font-size: 11px;
    padding: 13px 16px;
  }
  .hero .text-link {
    font-size: 10px;
    margin-left: 0;
  }
  .platform-strip > div {
    gap: 25px;
  }
  .economy-section {
    gap: 40px;
    padding: 45px;
  }
  .template-info h3 {
    font-size: 10px;
  }
}
@media (max-width: 1000px) {
  :root {
    --rail: 190px;
  }
  .rail .brand {
    font-size: 24px;
  }
  .rail a.nav {
    font-size: 11px;
    padding: 10px;
    gap: 9px;
  }
  .rail .workspace {
    padding: 9px 7px;
  }
  .workspace b {
    max-width: 105px;
    font-size: 10px;
  }
  .main {
    padding: 25px 22px;
  }
  .workspace-header {
    padding: 0 22px;
    height: 62px;
  }
  .environment-label {
    display: none;
  }
  .dashboard-columns {
    grid-template-columns: 1fr;
  }
  .dashboard-aside {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .fulfillment-card {
    margin: 0;
  }
  .creator-note {
    display: none;
  }
  .dashboard-columns .template-image {
    aspect-ratio: 1.1;
  }
  .template-overlay-title {
    font-size: 24px;
  }
  .template-info h3 {
    font-size: 12px;
  }
  .topbar {
    align-items: start;
  }
  .topbar > .row {
    gap: 7px;
  }
  .topbar h1 {
    font-size: 23px;
  }
  .topbar > .row .btn {
    padding: 8px 10px;
    min-height: 36px;
  }
  .topbar > .row .btn .icon {
    width: 14px;
    height: 14px;
  }
  .topbar .eyebrow {
    font-size: 8px;
  }
  .stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .stat-caption {
    font-size: 9px;
  }
  .studio-banner {
    min-height: 270px;
    grid-template-columns: 1.15fr 1fr;
  }
  .studio-banner h2 {
    font-size: 30px;
  }
  .studio-banner p {
    font-size: 10px;
  }
  .banner-visual-label {
    font-size: 7px;
    left: 5%;
  }
  .banner-mini {
    width: 90px;
    height: 155px;
    right: 10px;
  }
  .banner-mini span {
    font-size: 12px;
  }
  .landing-nav {
    gap: 17px;
  }
  .landing-nav a {
    font-size: 10px;
  }
  .landing-header .btn {
    font-size: 10px;
    padding: 8px 11px;
    min-height: 35px;
  }
  .hero {
    padding: 40px 35px 60px;
    grid-template-columns: 1fr 1fr;
    min-height: 600px;
  }
  .hero h1 {
    font-size: 59px;
  }
  .hero .lede {
    font-size: 13px;
    max-width: 320px;
  }
  .hero-copy .row {
    align-items: start;
    gap: 15px;
    flex-direction: column;
  }
  .hero .text-link {
    margin-left: 2px;
  }
  .hero-visual {
    height: 440px;
  }
  .hero-phone {
    width: 181px;
    height: 345px;
    right: 0;
    top: 55px;
  }
  .hero-product {
    width: 153px;
    left: -12px;
    top: 150px;
  }
  .hero-product > img {
    height: 137px;
  }
  .hero-product b {
    font-size: 8px;
  }
  .hero-product > div > span {
    font-size: 7px;
  }
  .visual-note {
    font-size: 19px;
    left: 0;
    top: 10px;
  }
  .sale-note {
    left: 0;
    bottom: 0;
    padding: 10px;
    gap: 7px;
  }
  .sale-note strong {
    font-size: 9px;
  }
  .sale-note span {
    font-size: 8px;
  }
  .phone-caption strong {
    font-size: 30px;
  }
  .platform-strip {
    margin: 0 35px;
  }
  .platform-strip > span:last-child {
    display: none;
  }
  .landing-section {
    padding: 65px 35px;
  }
  .how-grid {
    gap: 14px;
  }
  .how-card {
    padding: 20px 16px;
  }
  .how-card h3 {
    font-size: 14px;
  }
  .how-card p {
    font-size: 10px;
  }
  .inspiration-section {
    padding-top: 5px;
  }
  .inspiration-section .template-grid {
    gap: 16px;
  }
  .inspiration-section .template-overlay-title {
    font-size: 27px;
  }
  .inspiration-section h2 {
    font-size: 28px;
  }
  .inspiration-section .template-info h3 {
    font-size: 13px;
  }
  .economy-section {
    margin: 0 35px;
    padding: 35px;
    gap: 30px;
  }
  .economy-section h2 {
    font-size: 44px;
  }
  .economy-card {
    padding: 20px;
  }
  .economy-card .section-heading {
    flex-wrap: wrap;
    gap: 7px;
  }
  .auth-story {
    padding: 40px;
  }
  .auth-story h2 {
    font-size: 48px;
  }
  .cols[style*="grid-template-columns:minmax(300px"] {
    grid-template-columns: 1fr !important;
  }
}
@media (max-width: 760px) {
  :root {
    --rail: 0px;
  }
  .shell {
    display: block;
  }
  .rail {
    position: static;
    height: auto;
    padding: 15px 18px 10px;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    gap: 5px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .rail > .brand {
    padding: 0;
    margin-right: auto;
    font-size: 25px;
    flex-basis: calc(100% - 70px);
    order: 0;
  }
  .workspace,
  .nav-label,
  .rail > .spacer,
  .credit-widget,
  .rail .who,
  .rail a.help-nav {
    display: none;
  }
  .rail a.nav {
    font-size: 10px;
    gap: 5px;
    padding: 8px 9px;
    order: 2;
    flex: none;
  }
  .rail a.nav .icon {
    width: 14px;
    height: 14px;
  }
  .nav-new {
    display: none;
  }
  .workspace-header {
    height: 48px;
    padding: 0 19px;
  }
  .breadcrumb {
    font-size: 9px;
    gap: 8px;
  }
  .header-store {
    font-size: 9px;
    padding-left: 0;
    border: 0;
    margin: 0;
  }
  .main {
    padding: 24px 20px 35px;
  }
  .topbar {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 12px;
  }
  .topbar h1 {
    font-size: 25px;
  }
  .topbar .row {
    width: 100%;
  }
  .topbar .row .btn {
    font-size: 11px;
  }
  .page-lede {
    font-size: 11px;
    margin-bottom: 20px;
    max-width: 400px;
  }
  .studio-banner {
    grid-template-columns: 1.2fr 1fr;
    min-height: 250px;
    margin-bottom: 20px;
  }
  .studio-banner > div:first-child {
    padding: 24px;
  }
  .studio-banner h2 {
    font-size: 31px;
  }
  .studio-banner p {
    font-size: 10px;
    max-width: 225px;
  }
  .banner-eyebrow {
    font-size: 7px;
  }
  .studio-banner .btn {
    font-size: 9px;
    padding: 8px 9px;
  }
  .banner-visual-label {
    font-size: 7px;
    left: 4%;
    top: 18px;
    padding: 5px;
    max-width: 130px;
  }
  .banner-foot {
    font-size: 7px;
  }
  .banner-mini {
    right: 7px;
    width: 88px;
    height: 155px;
    bottom: -15px;
  }
  .stats {
    margin-bottom: 25px;
  }
  .stat {
    padding: 16px;
  }
  .stat .n {
    font-size: 26px;
  }
  .stat-label {
    font-size: 10px;
  }
  .dashboard-columns {
    gap: 24px;
  }
  .dashboard-columns .template-image {
    aspect-ratio: 4/5;
  }
  .template-overlay-title {
    font-size: 21px;
  }
  .template-info h3 {
    font-size: 11px;
  }
  .template-use {
    font-size: 8px;
    padding: 6px;
    left: 7px;
    right: 7px;
    bottom: 8px;
  }
  .template-format,
  .template-duration {
    font-size: 7px;
    padding: 3px;
  }
  .template-format {
    left: 6px;
  }
  .template-duration {
    right: 6px;
  }
  .template-format .icon {
    display: none;
  }
  .template-overlay-title {
    bottom: 40px;
    left: 10px;
  }
  .dashboard-aside {
    grid-template-columns: 1fr 1fr;
    gap: 15px;
  }
  .launch-panel,
  .fulfillment-card {
    padding: 17px;
  }
  .launch-panel h3 {
    font-size: 12px;
  }
  .fulfillment-card h3 {
    font-size: 15px;
  }
  .section-heading h2 {
    font-size: 19px;
  }
  .workspace-footer {
    margin: 0 20px;
    font-size: 8px;
  }
  .collection-toolbar {
    gap: 10px;
    flex-wrap: wrap;
  }
  .search-field {
    width: 100%;
  }
  .filter-tab {
    font-size: 11px;
    padding: 7px 10px;
  }
  .tags {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 15px;
  }
  .tag h3 {
    font-size: 14px;
  }
  .tag .price {
    font-size: 13px;
    gap: 7px;
    flex-wrap: wrap;
  }
  .tag .price small {
    font-size: 9px;
  }
  .product-card-info {
    padding: 13px;
  }
  .panel {
    padding: 21px;
  }
  .fulfillment-grid {
    grid-template-columns: 1fr;
  }
  .studio-inspiration .template-overlay-title {
    font-size: 23px;
    bottom: 50px;
  }
  .studio-inspiration .template-use {
    font-size: 9px;
    padding: 8px;
  }
  .studio-inspiration .template-info h3 {
    font-size: 11px;
  }
  .studio-inspiration .section-heading > .muted {
    display: none;
  }
  .template-dialog {
    padding: 24px;
  }
  .project-empty {
    gap: 12px;
    padding: 17px;
    flex-wrap: wrap;
  }
  .project-empty .btn {
    margin-left: 56px;
  }
  .vid-card {
    gap: 10px;
  }
  .vid-card h3 {
    font-size: 11px;
  }
  .deliver {
    grid-template-columns: 1fr;
  }
  .deliver .player {
    max-width: 340px;
    margin: 0 auto;
    width: 100%;
  }
  .cols[style*="grid-template-columns:1fr auto"] {
    grid-template-columns: 1fr !important;
  }
  .landing-header {
    padding: 20px 24px;
  }
  .landing-header .brand {
    font-size: 26px;
  }
  .landing-nav {
    display: none;
  }
  .landing-header .login-link {
    font-size: 11px;
    margin-right: 0;
  }
  .hero {
    grid-template-columns: 1fr;
    padding: 42px 30px 40px;
    gap: 20px;
    text-align: center;
  }
  .hero-copy > .eyebrow {
    justify-content: center;
    font-size: 8px;
  }
  .hero h1 {
    font-size: 64px;
    line-height: 1.02;
  }
  .hero .lede {
    max-width: 360px;
    margin: 22px auto;
    font-size: 13px;
  }
  .hero-copy .row {
    align-items: center;
    flex-direction: row;
    justify-content: center;
    gap: 18px;
  }
  .hero .text-link {
    margin: 0;
  }
  .hero-fine {
    font-size: 9px;
  }
  .hero-visual {
    width: 365px;
    max-width: 100%;
    height: 410px;
    margin: 35px auto 0;
    text-align: left;
  }
  .hero-orbit {
    inset: 10% -1% 0 0;
  }
  .hero-phone {
    width: 190px;
    height: 350px;
    right: 5px;
    top: 25px;
  }
  .hero-product {
    width: 175px;
    left: 0;
    top: 116px;
  }
  .hero-product > img {
    height: 150px;
  }
  .hero-product b {
    font-size: 9px;
  }
  .visual-note {
    font-size: 20px;
    top: 0;
    left: 5px;
  }
  .sale-note {
    bottom: 0;
    left: 25px;
    padding: 12px;
  }
  .platform-strip {
    margin: 20px 25px 0;
    flex-direction: column;
    gap: 17px;
    padding: 25px 0;
  }
  .platform-strip > div {
    gap: 32px;
  }
  .platform-strip b {
    font-size: 17px;
  }
  .landing-section {
    padding: 60px 25px;
  }
  .section-intro h2 {
    font-size: 36px;
  }
  .section-intro p {
    font-size: 11px;
  }
  .how-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
  .how-card {
    padding: 22px;
  }
  .how-card p {
    font-size: 11px;
  }
  .how-card > div {
    margin-bottom: 19px;
  }
  .inspiration-section {
    padding-top: 10px;
  }
  .inspiration-section .section-heading {
    align-items: start;
    flex-direction: column;
    gap: 15px;
  }
  .inspiration-section h2 {
    font-size: 31px;
  }
  .inspiration-section .template-grid {
    gap: 11px;
  }
  .inspiration-section .template-image {
    aspect-ratio: 3/5;
  }
  .inspiration-section .template-overlay-title {
    font-size: 23px;
    bottom: 53px;
    left: 11px;
  }
  .inspiration-section .template-use {
    font-size: 8px;
    left: 7px;
    right: 7px;
    bottom: 11px;
    padding: 7px 5px;
  }
  .inspiration-section .template-use .icon {
    width: 10px;
    height: 10px;
  }
  .inspiration-section .template-info h3 {
    font-size: 11px;
  }
  .inspiration-section .template-info > span {
    font-size: 9px;
  }
  .inspiration-section .template-format,
  .inspiration-section .template-duration {
    font-size: 7px;
    padding: 3px;
  }
  .economy-section {
    grid-template-columns: 1fr;
    gap: 27px;
    margin: 0 25px;
    padding: 30px;
  }
  .economy-section h2 {
    font-size: 46px;
  }
  .economy-section > div > p {
    font-size: 12px;
  }
  .economy-card {
    padding: 23px;
  }
  .economy-card .section-heading {
    flex-wrap: nowrap;
  }
  .closing-cta {
    padding: 70px 20px;
  }
  .closing-cta h2 {
    font-size: 42px;
  }
  .landing-footer {
    margin: 0 25px;
    flex-wrap: wrap;
    padding: 25px 0;
    gap: 15px;
  }
  .landing-footer > span {
    order: 3;
    width: 100%;
    font-size: 9px;
  }
  .auth-layout {
    grid-template-columns: 1fr;
  }
  .auth-story {
    padding: 22px 26px;
  }
  .auth-story > div,
  .auth-story-foot {
    display: none;
  }
  .auth {
    padding: 30px 25px 50px;
    max-width: 430px;
  }
  .auth-back {
    margin-bottom: 34px;
  }
  .auth h1 {
    font-size: 32px;
  }
  .auth-note {
    margin-top: 30px;
  }
  .orders-summary {
    align-items: start;
    flex-direction: column;
    gap: 8px;
  }
}
@media (max-width: 430px) {
  .rail {
    padding: 14px 12px 8px;
    gap: 4px;
  }
  .rail > .brand {
    padding-left: 6px;
  }
  .rail a.nav {
    padding: 8px;
    font-size: 9px;
  }
  .rail a.nav .icon {
    width: 13px;
    height: 13px;
  }
  .main {
    padding: 23px 16px 35px;
  }
  .topbar h1 {
    font-size: 23px;
  }
  .studio-banner {
    min-height: 245px;
    grid-template-columns: 1.45fr 1fr;
  }
  .studio-banner > div:first-child {
    padding: 20px 0 20px 20px;
  }
  .studio-banner h2 {
    font-size: 28px;
    white-space: nowrap;
  }
  .studio-banner p {
    font-size: 9px;
    line-height: 1.7;
    max-width: 170px;
  }
  .banner-eyebrow {
    font-size: 6px;
  }
  .banner-visual-label {
    display: none;
  }
  .banner-mini {
    width: 75px;
    height: 135px;
    right: 4px;
  }
  .banner-mini span {
    font-size: 10px;
  }
  .banner-foot {
    font-size: 6px;
    white-space: nowrap;
  }
  .banner-play {
    width: 32px;
    height: 32px;
    left: 40%;
  }
  .banner-play .icon {
    width: 12px;
    height: 12px;
  }
  .stats {
    gap: 10px;
  }
  .stat {
    padding: 14px;
  }
  .stat-caption {
    font-size: 8px;
  }
  .dashboard-columns .template-grid {
    gap: 9px;
  }
  .template-overlay-title {
    font-size: 18px;
    left: 8px;
    bottom: 40px;
  }
  .template-info h3 {
    font-size: 10px;
  }
  .template-info > span {
    font-size: 8px;
  }
  .template-use {
    font-size: 7px;
    padding: 6px 4px;
    gap: 2px;
  }
  .template-use .icon {
    width: 10px;
    height: 10px;
  }
  .template-duration {
    right: 5px;
  }
  .template-format {
    left: 5px;
  }
  .dashboard-aside {
    grid-template-columns: 1fr;
  }
  .launch-steps {
    gap: 17px;
  }
  .launch-step b {
    font-size: 12px;
  }
  .launch-step small {
    font-size: 10px;
  }
  .fulfillment-card {
    padding: 22px;
  }
  .fulfillment-card h3 {
    font-size: 19px;
  }
  .fulfillment-card p {
    font-size: 11px;
  }
  .workspace-footer {
    flex-direction: column;
    gap: 5px;
  }
  .tag .price small .icon {
    display: none;
  }
  .tag h3 {
    font-size: 13px;
  }
  .tags {
    gap: 12px;
  }
  .product-card-info {
    padding: 12px;
  }
  .tag .kind {
    font-size: 9px;
  }
  .studio-inspiration .template-overlay-title {
    font-size: 18px;
    bottom: 47px;
  }
  .studio-inspiration .template-use {
    font-size: 7px;
    padding: 6px 4px;
  }
  .studio-inspiration .template-image {
    aspect-ratio: 3/4;
  }
  .studio-inspiration .template-info h3 {
    font-size: 10px;
  }
  .template-dialog h2 {
    font-size: 25px;
  }
  .landing-header {
    padding: 18px;
  }
  .landing-header .brand {
    font-size: 24px;
  }
  .landing-header .btn {
    font-size: 9px;
    padding: 8px;
  }
  .landing-header .btn .icon {
    width: 12px;
    height: 12px;
  }
  .landing-header .login-link {
    font-size: 10px;
  }
  .landing-header > .row {
    gap: 10px;
  }
  .hero {
    padding: 37px 22px 30px;
  }
  .hero h1 {
    font-size: 57px;
  }
  .hero-visual {
    width: 320px;
    height: 385px;
  }
  .hero-phone {
    width: 175px;
    height: 325px;
    right: 5px;
    top: 30px;
  }
  .hero-product {
    width: 157px;
    left: -2px;
    top: 125px;
  }
  .hero-product > img {
    height: 140px;
  }
  .hero-product b {
    font-size: 8px;
  }
  .hero-product > div > span {
    font-size: 7px;
  }
  .visual-note {
    font-size: 18px;
  }
  .sale-note {
    left: 10px;
    padding: 10px;
  }
  .sale-note > .icon:last-child {
    margin-left: 2px;
  }
  .phone-caption strong {
    font-size: 29px;
  }
  .hero .btn.large {
    font-size: 10px;
    padding: 13px;
  }
  .hero-copy .row {
    gap: 14px;
  }
  .hero .text-link {
    font-size: 9px;
  }
  .section-intro h2 {
    font-size: 32px;
  }
  .how-card {
    padding: 17px;
  }
  .how-card h3 {
    font-size: 13px;
  }
  .how-card p {
    font-size: 10px;
  }
  .inspiration-section .template-overlay-title {
    font-size: 19px;
    left: 8px;
    bottom: 53px;
  }
  .inspiration-section .template-use {
    font-size: 7px;
  }
  .inspiration-section .template-use .icon {
    display: none;
  }
  .inspiration-section .template-info h3 {
    font-size: 10px;
  }
  .inspiration-section .template-grid {
    gap: 9px;
  }
  .economy-section {
    padding: 24px;
  }
  .economy-card {
    padding: 19px;
  }
  .closing-cta h2 {
    font-size: 35px;
  }
  .panel {
    padding: 18px;
  }
  .checks label {
    font-size: 10px;
  }
  .ticket {
    padding: 17px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
  }
}
/* Constrain campaign media independently of its intrinsic portrait dimensions. */
.studio-banner {
  height: 310px;
  min-height: 0;
}
.banner-visual > img {
  position: absolute;
  inset: 0;
}
.landing {
  overflow: clip;
}
.fulfillment-grid > *,
.cols > * {
  min-width: 0;
}
.field small {
  overflow-wrap: anywhere;
}
.template-dialog .section-heading .icon-btn {
  font-size: 24px;
  line-height: 1;
}
.brand-mark {
  font-family: var(--body);
}
@media (min-width: 1600px) {
  .studio-banner {
    height: 330px;
  }
}
@media (max-width: 1000px) {
  .studio-banner {
    height: 285px;
  }
}
@media (max-width: 760px) {
  .studio-banner {
    height: 270px;
  }
}
@media (max-width: 430px) {
  .studio-banner {
    height: 250px;
  }
}
.price-breakdown {
  display: grid;
  gap: 8px;
  padding: 13px 15px;
  border: 1px solid #e0e8d4;
  background: #f4f7ed;
  border-radius: 8px;
  margin: 11px 0 7px;
}
.price-breakdown > span {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 11px;
}
.price-breakdown b {
  font-weight: 550;
  color: #657d50;
}
.price-breakdown .margin-result {
  border-top: 1px solid #dfe7d4;
  padding-top: 8px;
  color: #527341;
}
.price-breakdown .margin-result b {
  color: #34672f;
}
.mobile-signout {
  display: none;
}
@media (max-width: 760px) {
  .mobile-signout {
    display: inline-grid;
    min-width: 30px;
    min-height: 30px;
    padding: 5px;
  }
  .mobile-signout .icon {
    width: 14px;
    height: 14px;
  }
  .skip-link {
    left: 16px;
  }
  .workspace-header > .row {
    gap: 6px;
  }
}
@media (max-width: 600px) {
  .template-grid {
    display: flex;
    overflow-x: auto;
    padding-bottom: 9px;
    gap: 13px !important;
    scroll-snap-type: x proximity;
  }
  .template-card {
    flex: 0 0 175px;
    scroll-snap-align: start;
  }
  .template-image,
  .studio-inspiration .template-image,
  .dashboard-columns .template-image {
    aspect-ratio: 4/5;
  }
  .template-overlay-title,
  .studio-inspiration .template-overlay-title {
    font-size: 26px;
    bottom: 59px;
    left: 12px;
  }
  .template-use,
  .studio-inspiration .template-use {
    font-size: 10px;
    min-height: 36px;
    padding: 8px;
    left: 10px;
    right: 10px;
    bottom: 11px;
  }
  .template-use .icon {
    width: 13px;
    height: 13px;
  }
  .template-info h3,
  .studio-inspiration .template-info h3 {
    font-size: 12px;
  }
  .template-info > span {
    font-size: 10px;
  }
  .template-format,
  .template-duration {
    font-size: 8px;
    padding: 4px;
  }
  .inspiration-section .template-card {
    flex-basis: 240px;
  }
  .inspiration-section .template-image {
    aspect-ratio: 4/5;
  }
  .inspiration-section .template-overlay-title {
    font-size: 32px;
    bottom: 66px;
    left: 16px;
  }
  .inspiration-section .template-use {
    font-size: 11px;
    min-height: 39px;
    left: 13px;
    right: 13px;
    padding: 10px;
  }
  .inspiration-section .template-info h3 {
    font-size: 14px;
  }
  .inspiration-section .template-info > span {
    font-size: 11px;
  }
  .inspiration-section .template-format,
  .inspiration-section .template-duration {
    font-size: 9px;
    padding: 4px;
  }
}
/* Preserve legibility for supporting copy on the soft palette. */
:root {
  --mute: #697365;
}
.page-lede,
.caption-note,
.stat-caption,
.template-info > span,
.hero-fine,
.hero .lede,
.hero-copy > .eyebrow,
.landing-nav a,
.login-link,
.hero .text-link,
.hero-fine,
.hero-copy .eyebrow,
.platform-strip > span,
.section-intro p,
.how-card p,
.inspiration-section .caption-note,
.economy-section > div > p,
.economy-card > small,
.economy-card dt,
.landing-footer > span,
.auth-story p,
.auth-story-foot,
.auth-story .eyebrow,
.auth-note,
.auth-back,
.launch-panel > p,
.launch-step small,
.fulfillment-card p,
.creator-note,
.banner-foot,
.studio-banner p,
.banner-eyebrow,
.template-info > span,
.workspace-footer {
  color: #6c785e;
}
.field small,
.project-empty p {
  color: #6b765f;
}
.stat-label {
  color: #68765c;
}
.nav-label {
  color: #748068;
}
.workspace small,
.who small {
  color: #707b67;
}
.template-format,
.template-duration {
  color: #3f4f35;
}
.auth-story p {
  color: #687952;
}
.economy-card dd,
.economy-card > small {
  color: #6b7b59;
}
.dashboard-columns > div,
.dashboard-section,
.studio-banner > div {
  min-width: 0;
}
@media (max-width: 1000px) {
  .dashboard-columns {
    grid-template-columns: minmax(0, 1fr);
  }
}
@media (max-width: 430px) {
  .studio-banner {
    height: 300px;
    grid-template-columns: minmax(0, 1.45fr) minmax(0, 1fr);
  }
  .studio-banner h2 {
    white-space: normal;
    font-size: 27px;
  }
  .banner-foot {
    white-space: normal;
  }
}
.deliver > div {
  min-width: 0;
}
.deliver .btn {
  white-space: normal;
  text-align: center;
}
@media (max-width: 1000px) {
  .deliver {
    grid-template-columns: minmax(0, 1fr);
  }
  .deliver .player {
    max-width: 330px;
    margin: 0 auto;
    width: 100%;
  }
}
@media (max-width: 760px) {
  form[data-form="video-setup"] > .row:has(> .field) {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: start;
  }
}
