/* Artho editorial clara: superfícies minerais iluminadas + verde da marca. */
:root {
  --content-max: 1312px;
  --clay: #bc8871;
  --clay-deep: #8b5b49;
  --sage: #9cafaa;
  --blue: #9aabb6;
  --rose: #bd99a2;
  --cream: #eee6d8;
  --stone: #c9ccc6;
  --card-paper: #e9e6de;
  --yellow: #d4b876;
  --line-dark: rgba(23, 24, 21, 0.18);
  --line-light: rgba(255, 254, 250, 0.24);
  --line-ui: rgba(23, 24, 21, 0.12);
  --ink-muted: rgba(23, 24, 21, 0.58);
  --sage-pale: #e4eeea;
  --shadow-soft: 0 0 0 1px rgba(0, 0, 0, 0.08), 0 2px 4px rgba(0, 0, 0, 0.06), 0 28px 60px -38px rgba(0, 0, 0, 0.42);
  --radius-card: 12px;
  --radius-inner: 8px;
  --header-bg: var(--white);
  --header-fg: var(--ink);
  --header-line: rgba(23, 24, 21, 0.18);
  --scrollbar-thumb: rgba(23, 24, 21, 0.3);
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--ink);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.35;
}

.art-scrollbar {
  position: fixed;
  z-index: 120;
  top: 8px;
  right: 0;
  bottom: 8px;
  width: 18px;
  padding: 0 8px;
  cursor: ns-resize;
  touch-action: none;
}

.art-scrollbar__track {
  position: relative;
  width: 2px;
  height: 100%;
}

.art-scrollbar__thumb {
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  min-height: 48px;
  background: var(--scrollbar-thumb);
  transform: translateY(0);
  will-change: transform;
}

@media (min-width: 821px) {
  html {
    scrollbar-width: none;
  }

  html::-webkit-scrollbar {
    display: none;
  }
}

@media (max-width: 820px) {
  .art-scrollbar {
    display: none;
  }
}

a,
button {
  color: inherit;
  font: inherit;
  cursor: pointer;
}

a {
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

p,
li,
small {
  text-wrap: pretty;
}

h1,
h2,
h3 {
  margin: 0;
  text-wrap: balance;
}

em {
  font-family: var(--font-serif);
  font-weight: 400;
}

:focus-visible {
  outline: 3px solid var(--white);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 12px 16px;
  background: var(--ink);
  color: var(--white);
  transform: translateY(-160%);
  transition: transform 160ms ease-out;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 54px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
  padding:
    6px
    max(var(--gutter), calc((100vw - var(--content-max)) / 2));
  color: var(--header-fg);
  border-bottom: 1px solid var(--header-line);
  background: var(--header-bg);
  backdrop-filter: none;
  mix-blend-mode: normal;
  transition-property: background-color, color, border-color;
  transition-duration: 180ms;
  transition-timing-function: cubic-bezier(0.2, 0, 0, 1);
}

.site-header.has-open-menu {
  background: var(--white);
  color: var(--ink);
  border-bottom-color: rgba(23, 24, 21, 0.14);
}

.header-brand {
  min-height: 42px;
  width: max-content;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  line-height: 1.05;
}

.header-brand img {
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  border-radius: var(--radius-inner);
  outline: 1px solid rgba(0, 0, 0, 0.1);
  outline-offset: -1px;
}

.header-brand__name {
  font-size: 0.95rem;
  font-weight: 650;
  letter-spacing: 0.04em;
  line-height: 1;
  transform: translateY(1px);
}

.brand {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: max-content;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.brand img {
  width: 30px;
  height: 30px;
  border-radius: 7px;
  outline: 1px solid rgba(255, 255, 255, 0.1);
  outline-offset: -1px;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(26px, 4vw, 58px);
  font-size: 0.76rem;
  font-weight: 450;
}

.site-nav a,
.site-nav button,
.header-actions a {
  position: relative;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
}

.site-nav button {
  border: 0;
  padding: 0;
  background: transparent;
}

.resources-trigger {
  gap: 0;
}

.mobile-resources-trigger {
  display: none;
  min-height: 40px;
  border: 0;
  padding: 0;
  background: transparent;
  color: inherit;
}

.site-nav a::after,
.header-login::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 6px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms cubic-bezier(0.2, 0, 0, 1);
}

.site-nav a:hover::after,
.header-login:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
  font-size: 0.76rem;
  font-weight: 450;
}

.header-cta {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.06), 0 2px 5px rgba(0, 0, 0, 0.1);
  mix-blend-mode: normal;
  transition-property: scale, background-color, box-shadow;
  transition-duration: 150ms;
  transition-timing-function: ease-out;
}

.header-cta:hover {
  background: #45675f;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.08), 0 4px 10px rgba(0, 0, 0, 0.14);
}

.header-cta:active,
.art-button:active {
  scale: 0.96;
}

.art-panel {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
  padding:
    clamp(90px, 8vw, 124px)
    max(var(--gutter), calc((100vw - var(--content-max)) / 2))
    clamp(54px, 6vw, 92px);
}

.art-panel::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  pointer-events: none;
  opacity: 0.16;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.5) 0 0.5px, transparent 0.8px),
    radial-gradient(circle at 70% 60%, rgba(0, 0, 0, 0.4) 0 0.4px, transparent 0.7px);
  background-size: 7px 7px, 9px 9px;
  mix-blend-mode: soft-light;
}

.art-panel--clay { background: var(--clay); }
.art-panel--sage { background: var(--sage); }
.art-panel--ink { background: var(--ink); color: var(--white); }
.art-panel--white { background: var(--white); color: var(--ink); }
.art-panel--paper { background: var(--paper); color: var(--ink); }
.art-panel--blue { background: var(--blue); }
.art-panel--rose { background: var(--rose); }
.art-panel--stone { background: var(--stone); }
.art-panel--cream { background: var(--cream); }

.eyebrow,
.hero-kicker,
.pricing-kicker {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green);
}

.hero {
  min-height: max(800px, 100svh);
  padding-top: clamp(100px, 10vw, 138px);
  display: grid;
  grid-template-columns: minmax(360px, 480px) minmax(560px, 760px);
  grid-template-rows: minmax(0, 1fr) auto;
  justify-content: center;
  column-gap: clamp(42px, 4vw, 72px);
  align-items: center;
}

.hero-copy-stack {
  grid-column: 1;
  grid-row: 1;
  align-self: center;
  min-width: 0;
}

.hero-kicker {
  margin-bottom: 12px;
}

.hero-title {
  position: relative;
  z-index: 2;
  font-family: var(--font-condensed);
  font-size: clamp(4.7rem, 6.2vw, 7.2rem);
  font-weight: 600;
  letter-spacing: -0.065em;
  line-height: 0.79;
  text-transform: uppercase;
}

.hero-title span {
  display: block;
}

.hero-title span:nth-child(2) {
  padding-left: 0;
}

.hero-title em {
  display: inline-block;
  font-style: normal;
  transform: none;
  font-size: 0.88em;
  letter-spacing: -0.06em;
  text-transform: none;
}

.hero-copy {
  max-width: 540px;
  margin: clamp(30px, 4vw, 58px) 0 0;
  font-size: var(--fs-section-copy);
  line-height: var(--lh-section-copy);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 26px;
}

.art-button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding-left: 20px;
  padding-right: 18px;
  border-radius: var(--radius-inner);
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: var(--shadow-soft);
  transition-property: scale, background-color, color;
  transition-duration: 150ms;
  transition-timing-function: ease-out;
}

.art-button--green {
  background: var(--green);
  color: var(--white);
}

.art-button--green:hover {
  background: #45675f;
}

.art-button--clay {
  background: var(--clay);
  color: var(--white);
}

.art-button--clay:hover {
  background: var(--clay-deep);
  color: var(--white);
}

.underlined-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid currentColor;
  font-size: 0.86rem;
  font-weight: 680;
}

.waitlist-form {
  scroll-margin-top: 92px;
  margin-top: 22px;
  padding: 18px;
  border: 1px solid rgba(23, 24, 21, 0.14);
  border-radius: 14px;
  background: rgba(255, 254, 250, 0.78);
  box-shadow: var(--shadow-soft);
}

.waitlist-form__heading {
  display: grid;
  gap: 4px;
  margin-bottom: 14px;
}

.waitlist-form__heading strong {
  font-size: 0.92rem;
}

.waitlist-form__heading span,
.waitlist-form__privacy {
  color: rgba(23, 24, 21, 0.68);
  font-size: 0.75rem;
  line-height: 1.45;
}

.waitlist-form__fields {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr auto;
  gap: 8px;
  align-items: end;
}

.waitlist-form label {
  display: grid;
  gap: 6px;
  font-size: 0.68rem;
  font-weight: 650;
}

.waitlist-form label small {
  color: rgba(23, 24, 21, 0.54);
  font-weight: 500;
}

.waitlist-form input {
  width: 100%;
  min-height: 44px;
  padding: 0 12px;
  border: 1px solid rgba(23, 24, 21, 0.2);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
}

.waitlist-form input:focus-visible {
  outline: 3px solid rgba(21, 79, 52, 0.22);
  outline-offset: 1px;
  border-color: var(--green);
}

.waitlist-form button {
  min-height: 44px;
  padding: 0 14px;
  border: 0;
  border-radius: 8px;
  background: var(--green);
  color: var(--white);
  font: inherit;
  font-size: 0.74rem;
  font-weight: 700;
  white-space: nowrap;
  cursor: pointer;
}

.waitlist-form button:disabled {
  cursor: wait;
  opacity: 0.62;
}

.waitlist-form__privacy {
  margin: 10px 0 0;
}

.waitlist-form__status {
  min-height: 1.35em;
  margin: 8px 0 0;
  color: var(--green);
  font-size: 0.76rem;
  font-weight: 650;
}

.waitlist-form__status.is-error {
  color: var(--clay-deep);
}

.hero-dashboard {
  grid-column: 2;
  grid-row: 1;
  position: relative;
  min-width: 0;
  width: min(100%, 850px);
  min-height: 610px;
  align-self: center;
  justify-self: end;
}

.hero-dashboard__plate {
  position: absolute;
  inset: 64px 12px 34px 58px;
  border-radius: 26px;
  background: var(--sage-pale);
  box-shadow: 28px 28px 0 var(--shadow-green);
}

.hero-dashboard__window {
  position: absolute;
  z-index: 2;
  inset: 82px 0 58px 22px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 158px minmax(0, 1fr);
  border: 1px solid var(--line-ui);
  border-radius: 22px;
  background: var(--white);
  box-shadow: 0 34px 64px -34px rgba(23, 24, 21, 0.34);
}

.hero-dashboard__main {
  position: relative;
  min-width: 0;
  display: flex;
  flex-direction: column;
  background: #fbfaf6;
}

.hero-dashboard__main::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 42px 0 0;
  background: var(--white);
  border-top: 1px solid var(--line-ui);
  border-left: 1px solid var(--line-ui);
  border-radius: 12px 0 0;
  pointer-events: none;
}

.hero-dashboard__main > * {
  position: relative;
  z-index: 1;
}

.hero-dashboard__topbar {
  height: 42px;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 13px;
}

.hero-dashboard__topbar strong {
  font-size: 0.64rem;
}

.hero-dashboard__topbar svg {
  width: 13px;
  height: 13px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.hero-dashboard__sidebar {
  min-width: 0;
  padding: 9px 8px;
  display: flex;
  flex-direction: column;
  background: #fbfaf6;
}

.hero-dashboard__studio {
  min-width: 0;
  min-height: 29px;
  display: grid;
  grid-template-columns: 25px minmax(0, 1fr) auto auto auto;
  align-items: center;
  gap: 5px;
}

.hero-dashboard__logo {
  width: 25px;
  height: 25px;
  display: block;
  border-radius: 7px;
  object-fit: cover;
}

.hero-dashboard__studio strong {
  min-width: 0;
  overflow: hidden;
  font-size: 0.56rem;
  font-weight: 720;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hero-dashboard__studio-switch {
  color: #999b95;
  font-size: 0.42rem;
  line-height: 0.58;
  text-align: center;
}

.hero-dashboard__studio-tool,
.hero-dashboard__notification {
  display: grid;
  place-items: center;
}

.hero-dashboard__studio-tool svg,
.hero-dashboard__notification svg {
  width: 12px;
  height: 12px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.hero-dashboard__notification {
  position: relative;
}

.hero-dashboard__notification b {
  position: absolute;
  top: -5px;
  right: -5px;
  width: 11px;
  height: 11px;
  display: grid;
  place-items: center;
  border: 1px solid #fbfaf6;
  border-radius: 50%;
  background: #e94e58;
  color: var(--white);
  font-size: 0.34rem;
  line-height: 1;
}

.hero-dashboard__search {
  min-height: 26px;
  margin-top: 8px;
  padding: 0 7px;
  display: flex;
  align-items: center;
  gap: 5px;
  border: 1px solid var(--line-ui);
  border-radius: 7px;
  color: #8f918b;
  background: var(--white);
  font-size: 0.47rem;
}

.hero-dashboard__search svg {
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 1.8;
}

.hero-dashboard__search span {
  min-width: 0;
  flex: 1;
}

.hero-dashboard__search kbd {
  padding: 0;
  border: 0;
  background: transparent;
  color: #aaa9a3;
  font-family: inherit;
  font-size: 0.37rem;
}

.hero-dashboard__menu {
  min-height: 0;
  margin-top: 5px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 0;
  color: var(--ink-muted);
  font-size: 0.46rem;
}

.hero-dashboard__menu > span {
  min-height: 20px;
  padding: 3px 6px;
  display: flex;
  align-items: center;
  gap: 6px;
  border-radius: 5px;
  white-space: nowrap;
}

.hero-dashboard__menu svg {
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.65;
}

.hero-dashboard__menu > i {
  width: 100%;
  height: 1px;
  margin: 3px 0;
  display: block;
  background: var(--line-ui);
}

.hero-dashboard__menu .is-active {
  background: #e6e5e1;
  color: var(--ink);
  font-weight: 700;
}

.hero-dashboard__content {
  min-width: 0;
  min-height: 0;
  flex: 1;
  overflow: hidden;
  padding: 10px 12px 9px;
  background: transparent;
}

.hero-dashboard__welcome {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
}

.hero-dashboard__welcome > strong {
  font-size: 0.88rem;
}

.hero-dashboard__project-search {
  width: min(58%, 278px);
  min-height: 27px;
  padding: 0 9px;
  display: flex;
  align-items: center;
  gap: 6px;
  border: 1px solid var(--line-ui);
  border-radius: 999px;
  background: var(--white);
  color: #8f918b;
  font-size: 0.46rem;
}

.hero-dashboard__project-search svg {
  width: 11px;
  height: 11px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 1.8;
}

.hero-dashboard__quick-actions {
  margin-top: 8px;
  display: flex;
  justify-content: center;
  gap: 4px;
  white-space: nowrap;
}

.hero-dashboard__quick-actions span {
  min-width: 0;
  padding: 5px 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  border: 1px solid var(--line-ui);
  border-radius: 5px;
  background: var(--white);
  font-size: 0.39rem;
  font-weight: 620;
}

.hero-dashboard__quick-actions svg {
  width: 9px;
  height: 9px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.hero-dashboard__cards {
  min-height: 0;
  height: calc(100% - 83px);
  margin-top: 9px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 7px;
}

.hero-dashboard__card {
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  padding: 9px 9px 7px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line-ui);
  border-radius: 9px;
  background: var(--white);
  box-shadow: 0 6px 14px -12px rgba(23, 24, 21, 0.38);
}

.hero-dashboard__card header {
  min-height: 20px;
  margin-bottom: 2px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hero-dashboard__card header > span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.hero-dashboard__card header svg {
  width: 11px;
  height: 11px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.hero-dashboard__card header strong {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.53rem;
}

.hero-dashboard__card-icon {
  flex: 0 0 11px;
}

.hero-dashboard__card header small,
.hero-dashboard__event small,
.hero-dashboard__card time,
.hero-dashboard__card p small {
  color: var(--ink-muted);
  font-size: 0.37rem;
  font-weight: 500;
}

.hero-dashboard__card h4 {
  margin: 3px 0 1px;
  font-size: 0.52rem;
}

.hero-dashboard__event,
.hero-dashboard__card p {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hero-dashboard__event {
  gap: 5px;
  padding: 5px 0;
  border-top: 1px solid var(--line-ui);
}

.hero-dashboard__event i {
  width: 5px;
  height: 5px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--green);
}

.hero-dashboard__event > span,
.hero-dashboard__card p > span {
  min-width: 0;
  display: flex;
  flex: 1;
  flex-direction: column;
}

.hero-dashboard__event strong,
.hero-dashboard__card p {
  font-size: 0.43rem;
}

.hero-dashboard__event time,
.hero-dashboard__card p time {
  text-align: right;
}

.hero-dashboard__card p {
  gap: 5px;
  margin: 0;
  padding: 5px 0;
  border-top: 1px solid var(--line-ui);
}

.hero-dashboard__card p i {
  width: 9px;
  height: 9px;
  flex: 0 0 auto;
  border: 1px solid #a6a7a1;
  border-radius: 50%;
}

.hero-dashboard__card--tasks p:first-of-type {
  border-top: 0;
}

.hero-dashboard__card--finance > p > strong {
  color: var(--green);
}

.hero-dashboard__card--finance > p {
  padding-left: 9px;
}

.hero-dashboard__total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 2px;
  padding: 5px 0;
  border-top: 1px solid var(--line-ui);
  font-size: 0.43rem;
}

.hero-dashboard__total strong {
  color: var(--green);
  white-space: nowrap;
}

.hero-dashboard__card footer {
  margin-top: auto;
  padding-top: 6px;
  border-top: 1px solid var(--line-ui);
  color: var(--ink-muted);
  font-size: 0.39rem;
  text-align: center;
}

.hero-dashboard__float {
  position: absolute;
  z-index: 4;
  width: 184px;
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line-ui);
  border-radius: 13px;
  background: var(--white);
  box-shadow: 10px 10px 0 var(--shadow-green);
}

.hero-dashboard__float small {
  font-size: 0.45rem;
  font-weight: 750;
  letter-spacing: 0.09em;
}

.hero-dashboard__float strong {
  margin-top: 4px;
  font-size: 0.74rem;
}

.hero-dashboard__float span {
  margin-top: 3px;
  color: var(--ink-muted);
  font-size: 0.53rem;
}

.hero-dashboard__float--event {
  top: 28px;
  left: -32px;
}

.hero-dashboard__float--attention {
  top: 210px;
  right: -34px;
}

.hero-dashboard__float--finance {
  right: -18px;
  bottom: 14px;
}

.hero-footnote,
.backstage-footnote,
.mobile-footnote,
.pricing-footnote {
  padding-top: var(--space-3);
  border-top: 1px solid var(--line-dark);
  font-size: var(--fs-footnote);
  font-weight: var(--fw-semi);
  letter-spacing: var(--ls-eyebrow);
}

.hero-footnote {
  grid-column: 1 / -1;
  grid-row: 2;
  align-self: end;
  margin-top: 56px;
}

.project-story__intro h2,
.production-header h2,
.client-header h2 {
  margin-top: 14px;
  font-family: var(--font-condensed);
  font-size: var(--fs-section-display);
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 0.84;
  text-transform: uppercase;
}

.project-story__intro h2 em,
.production-header h2 em,
.client-header h2 em {
  font-style: normal;
  font-size: 0.72em;
  letter-spacing: -0.045em;
  text-transform: none;
}

.project-story {
  min-height: 120svh;
}

.project-story__intro {
  display: grid;
  grid-template-columns: 1.25fr 0.45fr;
  align-items: end;
  gap: 40px;
}

.project-story__intro h2 {
  grid-column: 1;
}

.project-story__intro h2 {
  margin-top: 0;
}

.project-benefits {
  grid-column: 2;
  grid-row: 1;
  margin: 0 0 0 auto;
  padding: 0;
  max-width: 390px;
  display: grid;
  gap: 10px;
  list-style: none;
  color: var(--ink);
  font-size: var(--fs-section-copy);
  line-height: var(--lh-section-copy);
}

.project-benefits li {
  position: relative;
  padding-left: 17px;
  text-wrap: pretty;
}

.project-benefits li::before {
  content: "";
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--ink);
}

.project-story__intro h2 em {
  color: var(--ink);
}

.workspace-collage {
  position: relative;
  max-width: 1160px;
  margin: clamp(70px, 9vw, 130px) auto 0;
}

.workspace-window {
  position: relative;
  z-index: 2;
  overflow: hidden;
  background: #f4f4f0;
  color: var(--ink);
  border-radius: var(--radius-card);
  box-shadow:
    28px 32px 0 var(--ink),
    0 0 0 1px rgba(0, 0, 0, 0.1),
    0 44px 100px -44px rgba(0, 0, 0, 0.36);
  transform: none;
}

.workspace-topbar {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 24px;
  background: var(--white);
  border-bottom: 1px solid rgba(17, 19, 16, 0.1);
}

.workspace-topbar > div:first-child {
  display: grid;
  gap: 4px;
}

.workspace-topbar small,
.workspace-card small,
.board-heading small,
.board-column article small {
  font-size: 0.56rem;
  font-weight: 600;
  letter-spacing: 0.11em;
}

.workspace-topbar strong {
  font-size: 1.25rem;
}

.workspace-tags {
  display: flex;
  gap: 7px;
}

.workspace-tags span {
  padding: 7px 10px;
  border-radius: 999px;
  background: #ecece7;
  font-size: 0.62rem;
}

.workspace-progress {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  padding: 17px 24px;
  background: #e9ebe6;
}

.workspace-progress span {
  position: relative;
  text-align: center;
  font-size: 0.58rem;
}

.workspace-progress span::before {
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  margin: 0 auto 6px;
  border-radius: 50%;
  background: #d5d6d1;
  box-shadow: 0 0 0 3px #e9ebe6, 0 0 0 4px rgba(17, 19, 16, 0.12);
}

.workspace-progress span.done::before { background: var(--green); }
.workspace-progress span.active::before { background: var(--ink); }

.workspace-grid {
  display: grid;
  grid-template-columns: 0.7fr 1.2fr 0.8fr;
  grid-template-rows: repeat(2, minmax(150px, auto));
  gap: 12px;
  padding: 16px;
}

.workspace-card {
  padding: 18px;
  background: var(--white);
  border-radius: var(--radius-inner);
  box-shadow: 0 0 0 1px rgba(17, 19, 16, 0.08), 0 2px 5px rgba(0, 0, 0, 0.04);
}

.workspace-card > strong,
.workspace-card > span,
.workspace-card > b {
  display: block;
}

.workspace-card > strong {
  margin-top: 12px;
  font-size: 0.88rem;
}

.workspace-card > span {
  margin-top: 4px;
  color: #777b75;
  font-size: 0.68rem;
}

.workspace-card > b {
  margin-top: 14px;
  color: #3e7061;
  font-size: 0.7rem;
}

.workspace-card--client { grid-row: 1 / -1; }
.workspace-card--activity { grid-column: 3; grid-row: 1 / -1; }

.avatar {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin: 18px 0 8px;
  border-radius: 50%;
  background: #d9e4df;
  color: #41695d;
  font-size: 0.8rem;
  font-weight: 600;
}

.workspace-card--tasks p,
.workspace-card--activity p {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin: 11px 0 0;
  font-size: 0.66rem;
}

.workspace-card--tasks i {
  width: 14px;
  height: 14px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid #c8cbc5;
  border-radius: 3px;
  color: var(--white);
  background: var(--green);
  font-size: 0.55rem;
  font-style: normal;
}

.workspace-card--tasks p:not(:first-of-type) i { background: transparent; }

.workspace-card--activity i {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  margin-top: 3px;
  border-radius: 50%;
  background: var(--green);
}

.workspace-card--activity p span {
  display: grid;
  gap: 2px;
}

/* Project page mockup — mirrors the information architecture of the Artho app. */
.project-mock {
  min-height: 780px;
  padding: 0 0 18px;
  background: #f7f7f5;
  color: #30312e;
}

.project-mock__header {
  min-height: 132px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
  padding: 28px 30px 18px;
  background: #fcfcfb;
}

.project-mock__identity {
  display: grid;
  gap: 5px;
}

.project-mock__identity small {
  color: #8a8d87;
  font-size: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.project-mock__identity strong {
  font-size: 1.45rem;
  line-height: 1;
  letter-spacing: -0.035em;
}

.project-mock__identity span {
  margin-top: 5px;
  font-size: 0.58rem;
  font-weight: 650;
}

.project-mock__actions {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #60635e;
  font-size: 0.58rem;
  font-weight: 600;
}

.project-mock__actions > span {
  min-height: 32px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 12px;
  border-radius: 999px;
  box-shadow: 0 0 0 1px rgba(23, 24, 21, 0.12);
  background: #fff;
}

.project-mock__owner {
  border: 1px dashed rgba(23, 24, 21, 0.18);
  box-shadow: none !important;
}

.project-mock__status i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #e6a12d;
}

.project-mock__actions b {
  padding: 6px 3px;
  letter-spacing: 0.08em;
}

.project-mock__workflow {
  padding: 0 22px 18px;
  background: #fcfcfb;
}

.workflow-phases {
  display: grid;
  grid-template-columns: 2fr 2fr 3fr;
  gap: 6px;
}

.workflow-phases strong {
  min-height: 24px;
  display: grid;
  place-items: center;
  padding: 4px 10px;
  overflow: hidden;
  border-radius: var(--radius-inner);
  background: #151613;
  color: #fff;
  font-size: 0.56rem;
  white-space: nowrap;
}

.workflow-items {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 6px;
  margin-top: 11px;
}

.workflow-item {
  min-width: 0;
  display: grid;
  gap: 6px;
}

.workflow-item > span {
  overflow: hidden;
  padding: 0 4px;
  font-size: 0.56rem;
  font-weight: 600;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.workflow-item > div {
  position: relative;
  height: 42px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: var(--radius-inner);
  background: #ededeb;
}

.workflow-item > div i {
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--progress, 0%);
  background: #6f9a67;
}

.workflow-item.is-complete > div i { width: 100%; }

.workflow-item > div b {
  position: relative;
  z-index: 1;
  color: #646762;
  font-size: 0.62rem;
}

.workflow-item.is-complete > div b,
.workflow-item.is-progress > div b {
  color: #fff;
}

.workflow-item > small {
  min-height: 10px;
  color: #777a75;
  font-size: 0.47rem;
  text-align: center;
}

.project-mock__dashboard {
  display: grid;
  grid-template-columns: 0.72fr 1.65fr 0.8fr;
  align-items: start;
  gap: 12px;
  padding: 14px 18px 0;
}

.project-mock__left,
.project-mock__main,
.project-mock__right {
  display: grid;
  align-content: start;
  gap: 12px;
}

.project-mock-card {
  min-width: 0;
  padding: 16px;
  border-radius: var(--radius-card);
  background: #fff;
  box-shadow: 0 0 0 1px rgba(23, 24, 21, 0.09), 0 3px 7px rgba(23, 24, 21, 0.045);
}

.project-mock-card__heading,
.project-empty {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.project-mock-card__heading > strong,
.project-empty > strong,
.project-components > strong {
  font-size: 0.72rem;
}

.project-mock-card__heading > span,
.project-empty > span {
  color: #656861;
  font-size: 0.54rem;
  font-weight: 600;
  white-space: nowrap;
}

.project-client {
  min-height: 146px;
}

.project-client__person {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
}

.project-client__person > i {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #d7e9ed;
  color: #3f7e87;
  font-size: 0.64rem;
  font-style: normal;
  font-weight: 650;
}

.project-client__person > div {
  min-width: 0;
  display: grid;
  gap: 3px;
}

.project-client__person strong {
  overflow: hidden;
  font-size: 0.67rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.project-client__person span {
  overflow: hidden;
  color: #858983;
  font-size: 0.48rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.project-client > p {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 18px 0 0;
  color: #4f524d;
  font-size: 0.56rem;
  font-weight: 600;
}

.project-icon {
  font-size: 0.82rem;
}

.project-tags > div:last-child {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 14px;
}

.project-tags > div:last-child span {
  padding: 5px 8px;
  border-radius: var(--radius-inner);
  background: #f2f2f0;
  color: #6e716c;
  font-size: 0.5rem;
}

.project-event {
  min-height: 108px;
}

.project-event__row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
  margin-top: 19px;
}

.project-event__row > i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #438a93;
}

.project-event__row > div {
  min-width: 0;
  display: grid;
  gap: 4px;
}

.project-event__row strong {
  font-size: 0.64rem;
}

.project-event__row span,
.project-event__row > b {
  color: #7b7e79;
  font-size: 0.5rem;
}

.project-finance dl {
  display: grid;
  gap: 7px;
  margin: 17px 0 0;
}

.project-finance dl div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: 0.56rem;
}

.project-finance dt { color: #878a84; }
.project-finance dd { margin: 0; font-weight: 600; text-align: right; }

.project-tasks {
  padding-bottom: 12px;
}

.project-task__head,
.project-task__row {
  display: grid;
  grid-template-columns: 20px 1.6fr 1.1fr 0.95fr 0.75fr;
  align-items: center;
  gap: 7px;
}

.project-task__head {
  margin-top: 16px;
  padding: 8px 7px;
  border-bottom: 1px solid rgba(23, 24, 21, 0.08);
  color: #81847f;
  font-size: 0.46rem;
  font-weight: 600;
}

.project-task__row {
  min-height: 42px;
  padding: 7px;
  font-size: 0.48rem;
}

.project-task__row > i {
  width: 13px;
  height: 13px;
  border-radius: 4px;
  background: #f2f2f0;
  box-shadow: 0 0 0 1px rgba(23, 24, 21, 0.08);
}

.project-task__row > strong {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.project-task__row > span { color: #696c67; }

.project-task__row > b {
  justify-self: start;
  padding: 4px 7px;
  border-radius: 999px;
  background: #fff4dd;
  color: #9a762e;
  font-size: 0.46rem;
}

.project-empty {
  min-height: 58px;
}

.project-components {
  padding-bottom: 12px;
}

.project-components > small {
  display: block;
  margin-top: 13px;
  color: #999c96;
  font-size: 0.43rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.project-components ul {
  display: grid;
  gap: 1px;
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
}

.project-components li {
  min-height: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #4d504b;
  font-size: 0.53rem;
}

.project-components li i {
  width: 13px;
  height: 13px;
  border: 1px solid #696c67;
  border-radius: 4px;
  opacity: 0.72;
}

.project-activity > div:last-child {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin-top: 14px;
}

.project-activity > div:last-child > i {
  width: 23px;
  height: 23px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: var(--radius-inner);
  background: #f0f1ee;
  font-size: 0.54rem;
  font-style: normal;
}

.project-activity p {
  display: grid;
  gap: 3px;
  margin: 0;
}

.project-activity p strong { font-size: 0.53rem; }
.project-activity p span { color: #868983; font-size: 0.47rem; }

.workspace-note {
  position: absolute;
  z-index: 4;
  right: -52px;
  bottom: -50px;
  width: 210px;
  padding: 22px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 10px;
  background: var(--green);
  color: var(--white);
  border-radius: var(--radius-card);
  font-family: var(--font-condensed);
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 0.9;
  letter-spacing: -0.04em;
  transform: none;
  box-shadow: 14px 16px 0 var(--ink);
}

.workspace-note__arrow {
  flex: 0 0 auto;
  transform: translateY(-1px);
}

.production {
  min-height: auto;
  padding-top: clamp(84px, 6vw, 108px);
  padding-bottom: clamp(96px, 7vw, 124px);
}

.production-header {
  display: grid;
  grid-template-columns: 1.2fr 0.48fr;
  align-items: end;
  gap: 50px;
}

.production-header__copy {
  max-width: 420px;
  margin: 0 0 0 auto;
  display: grid;
  gap: 22px;
}

.production-header__copy p {
  margin: 0;
  font-size: var(--fs-section-copy);
  line-height: var(--lh-section-copy);
  text-wrap: pretty;
}

.production-board {
  --production-art-offset-x: 28px;
  --production-art-offset-y: 30px;
  position: relative;
  width: min(1040px, 88vw);
  margin: clamp(44px, 5vw, 72px) auto 0;
  padding: 18px;
  background: var(--white);
  border-radius: var(--radius-card);
  box-shadow: 28px -26px 0 var(--shadow-green), 0 44px 90px -44px rgba(0,0,0,0.48);
  transform: rotate(-1.5deg);
}

.production-board::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(rgba(23, 24, 21, 0.08), rgba(23, 24, 21, 0.08)),
    url("assets/feature-delivery-painting.avif") center / cover;
  clip-path: polygon(
    0 0,
    var(--production-art-offset-x) 0,
    var(--production-art-offset-x) calc(100% - var(--production-art-offset-y)),
    100% calc(100% - var(--production-art-offset-y)),
    100% 100%,
    0 100%
  );
  pointer-events: none;
  transform: translate(
    calc(-1 * var(--production-art-offset-x)),
    var(--production-art-offset-y)
  );
}

.workflow-demo-cursor {
  position: absolute;
  z-index: 80;
  top: 0;
  left: 0;
  width: 28px;
  height: 34px;
  pointer-events: none;
  opacity: 0;
  filter: blur(4px) drop-shadow(0 3px 4px rgba(23, 24, 21, 0.24));
  transform: translate3d(var(--demo-cursor-x, 0), var(--demo-cursor-y, 0), 0);
  transition-property: transform, opacity, filter;
  transition-duration: 620ms, 180ms, 180ms;
  transition-timing-function: cubic-bezier(0.2, 0, 0, 1), ease-out, ease-out;
  will-change: transform, opacity;
}

.workflow-demo-cursor.is-visible {
  opacity: 1;
  filter: blur(0) drop-shadow(0 3px 4px rgba(23, 24, 21, 0.24));
}

.workflow-demo-cursor.is-positioning {
  transition-duration: 0ms, 180ms, 180ms;
}

.workflow-demo-cursor svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
  transform: rotate(1.5deg) scale(1);
  transform-origin: 3px 3px;
  transition-property: transform;
  transition-duration: 150ms;
  transition-timing-function: ease-out;
}

.workflow-demo-cursor path {
  fill: var(--ink);
  stroke: var(--white);
  stroke-width: 2.2px;
  stroke-linejoin: round;
}

.workflow-demo-cursor::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: -7px;
  left: -7px;
  width: 24px;
  height: 24px;
  border: 1px solid rgba(23, 24, 21, 0.32);
  border-radius: 50%;
  opacity: 0;
  scale: 0.25;
  transition-property: opacity, scale;
  transition-duration: 150ms;
  transition-timing-function: ease-out;
}

.workflow-demo-cursor.is-clicking svg {
  transform: rotate(1.5deg) scale(0.96);
}

.workflow-demo-cursor.is-clicking::after {
  opacity: 1;
  scale: 1;
}

@media (max-width: 820px), (prefers-reduced-motion: reduce) {
  .workflow-demo-cursor {
    display: none;
  }
}

.board-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 8px 8px 18px;
  border-bottom: 1px solid var(--line-dark);
}

.board-heading > div {
  display: grid;
  gap: 5px;
}

.board-heading strong {
  font-size: 1.45rem;
}

.board-heading > span {
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  font-variant-numeric: tabular-nums;
}

.board-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  min-height: 370px;
}

.board-column {
  padding: 18px 12px 10px;
}

.board-column + .board-column {
  border-left: 1px solid var(--line-dark);
}

.column-title {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 3px 10px;
  font-size: 0.7rem;
}

.column-title span {
  margin-left: auto;
  color: #777b75;
  font-variant-numeric: tabular-nums;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.dot--yellow { background: var(--yellow); }
.dot--pink { background: var(--rose); }
.dot--green { background: var(--green); }

.board-column article {
  min-height: 118px;
  margin-top: 10px;
  padding: 15px;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: var(--radius-inner);
  box-shadow: var(--shadow-soft);
  transition-property: transform, box-shadow;
  transition-duration: 180ms;
  transition-timing-function: ease-out;
}

.board-column article:hover {
  transform: translateY(-4px) rotate(0.5deg);
  box-shadow: 0 0 0 1px rgba(0,0,0,0.1), 0 14px 28px -18px rgba(0,0,0,0.4);
}

.board-column article strong {
  margin-top: 10px;
  font-size: 0.9rem;
}

.board-column article span {
  width: max-content;
  margin-top: auto;
  padding: 5px 7px;
  background: #f1eee5;
  font-size: 0.58rem;
}

.workflow-overview {
  width: min(1160px, 91vw);
  padding: 16px;
  overflow: visible;
}

.workflow-board-toolbar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
  padding: 4px 5px 15px;
  border-bottom: 1px solid var(--line-dark);
}

.workflow-board-toolbar > div:first-child {
  display: grid;
  gap: 4px;
}

.workflow-board-toolbar small {
  font-size: 0.48rem;
  font-weight: 650;
  letter-spacing: 0.1em;
}

.workflow-board-toolbar strong {
  font-size: 1.15rem;
  letter-spacing: -0.025em;
}

.workflow-board-toolbar > b {
  justify-self: end;
  color: #6f726c;
  font-size: 0.58rem;
  font-variant-numeric: tabular-nums;
}

.workflow-view-tabs {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 4px;
  border-radius: var(--radius-card);
  background: #e9e8e3;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.045);
}

.workflow-view-tabs span {
  min-height: 28px;
  display: grid;
  place-items: center;
  padding: 0 10px;
  border-radius: var(--radius-inner);
  color: #747771;
  font-size: 0.55rem;
  font-weight: 600;
}

.workflow-view-tabs .is-active {
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.06), 0 2px 5px rgba(0, 0, 0, 0.06);
}

.workflow-board-scroll {
  min-width: 0;
}

.workflow-lane {
  display: grid;
  grid-template-columns: 178px minmax(0, 1fr);
  gap: 12px;
  padding: 17px 0 16px;
}

.workflow-lane + .workflow-lane {
  border-top: 1px solid var(--line-dark);
}

.workflow-lane__people > header {
  min-height: 68px;
  display: grid;
  align-content: center;
  gap: 3px;
  padding: 0 8px;
}

.workflow-lane__people > header small {
  color: #8b8e88;
  font-size: 0.43rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.workflow-lane__people > header strong {
  font-size: 0.95rem;
}

.workflow-lane__people > header span {
  color: #747771;
  font-size: 0.5rem;
}

.workflow-lane__people > div {
  min-height: 58px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-content: center;
  column-gap: 7px;
  padding: 7px 8px;
}

.workflow-lane__people > div i {
  width: 7px;
  height: 7px;
  grid-row: 1 / 3;
  align-self: center;
  border-radius: 50%;
  background: #e6a12d;
}

.workflow-lane__people > div strong {
  overflow: hidden;
  font-size: 0.6rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.workflow-lane__people > div span {
  margin-top: 3px;
  color: #777a74;
  font-size: 0.46rem;
  font-variant-numeric: tabular-nums;
}

.workflow-matrix {
  min-width: 0;
}

.workflow-matrix__phases,
.workflow-matrix__steps,
.workflow-matrix__row {
  display: grid;
  grid-template-columns: repeat(var(--columns), minmax(0, 1fr));
  gap: 4px;
}

.workflow-matrix__phases b {
  min-height: 23px;
  display: grid;
  grid-column: span var(--span);
  place-items: center;
  padding: 3px 6px;
  overflow: hidden;
  border-radius: var(--radius-inner);
  background: var(--ink);
  color: var(--white);
  font-size: 0.49rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.workflow-matrix__steps {
  min-height: 45px;
  align-items: center;
}

.workflow-matrix__steps span {
  overflow: hidden;
  color: #565954;
  font-size: 0.45rem;
  font-weight: 600;
  line-height: 1.1;
  text-align: center;
  text-overflow: ellipsis;
}

.workflow-matrix__row {
  min-height: 58px;
  align-items: stretch;
}

.workflow-matrix__row > span,
.workflow-cell {
  position: relative;
  min-width: 0;
  min-height: 50px;
  display: grid;
  place-items: center;
  align-self: center;
  overflow: hidden;
  border-radius: var(--radius-inner);
  background: #e9e9e6;
  color: #676a64;
  font-size: 0.5rem;
  font-weight: 650;
  font-variant-numeric: tabular-nums;
  text-align: center;
}

.workflow-cell-anchor {
  position: relative;
  z-index: 12;
  min-width: 0;
  min-height: 50px;
  align-self: center;
}

.workflow-cell {
  width: 100%;
  height: 50px;
  grid-template-columns: minmax(0, 1fr);
  padding: 0 10px;
  border: 0;
  font-family: inherit;
  cursor: pointer;
  transition-property: scale, box-shadow;
  transition-duration: 150ms;
  transition-timing-function: ease-out;
}

.workflow-cell:hover {
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.22), 0 5px 12px rgba(23, 24, 21, 0.12);
}

.workflow-cell:active {
  scale: 0.96;
}

.workflow-matrix__row .is-done {
  background: #6f9a67;
  color: var(--white);
}

.workflow-matrix__row .is-progress::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--progress);
  background: #6f9a67;
}

.workflow-matrix__row .is-progress b {
  position: relative;
  z-index: 1;
  color: var(--white);
  font-size: inherit;
}

.workflow-cell.is-progress .workflow-cell__label {
  position: relative;
  z-index: 1;
  color: var(--white);
}

.workflow-matrix__row .is-pending {
  align-content: center;
  gap: 2px;
}

.workflow-matrix__row .is-pending b {
  font-size: inherit;
}

.workflow-matrix__row .is-pending small {
  color: #777a74;
  font-size: 0.42rem;
  font-weight: 500;
}

.workflow-matrix__row .is-empty {
  background: #e9e9e6;
}

.workflow-matrix__row .is-not-started {
  background: #e1e2df;
  color: #656862;
}

.workflow-matrix__row .is-started {
  background: #438a93;
  color: var(--white);
}

.workflow-matrix__row .is-paused {
  background: #d26f3d;
  color: var(--white);
}

.workflow-popover {
  position: absolute;
  z-index: 30;
  padding: 5px;
  border-radius: var(--radius-card);
  background: #fff;
  color: #323430;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  filter: blur(4px);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.07),
    0 14px 30px -12px rgba(0, 0, 0, 0.28),
    0 24px 60px -26px rgba(0, 0, 0, 0.34);
  transition-property: opacity, transform, filter, visibility;
  transition-duration: 200ms;
  transition-timing-function: cubic-bezier(0.2, 0, 0, 1);
}

.workflow-popover.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  filter: blur(0);
}

.workflow-status-popover {
  right: calc(100% + 9px);
  bottom: calc(100% + 9px);
  width: 184px;
  transform: translateY(8px) scale(0.98);
  transform-origin: bottom right;
}

.workflow-status-popover.is-open {
  transform: translateY(0) scale(1);
}

.workflow-status-popover > button {
  width: 100%;
  min-height: 40px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 9px;
  padding: 0 9px;
  border: 0;
  border-radius: var(--radius-inner);
  background: transparent;
  color: #3c3f3a;
  font-family: inherit;
  font-size: 0.66rem;
  text-align: left;
  cursor: pointer;
  transition-property: background-color, scale;
  transition-duration: 150ms;
  transition-timing-function: ease-out;
}

.workflow-status-popover > button:hover,
.workflow-status-popover > button.is-selected {
  background: #f0f0ee;
}

.workflow-status-popover > button:active {
  scale: 0.96;
}

.workflow-status-popover > button > b {
  opacity: 0;
  font-size: 0.65rem;
}

.workflow-status-popover > button.is-selected > b {
  opacity: 1;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.status-dot--idle { background: #70736d; }
.status-dot--started { background: #438a93; }
.status-dot--paused { background: #d26f3d; }
.status-dot--done { background: #6f9a67; }

.workflow-subtasks-popover {
  top: calc(100% + 9px);
  left: 100%;
  width: 278px;
  padding: 0;
  transform: translate(-10%, -8px) scale(0.98);
  transform-origin: top left;
}

.workflow-subtasks-popover.is-open {
  transform: translate(-10%, 0) scale(1);
}

.workflow-subtasks-popover > header {
  padding: 14px 15px 11px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.workflow-subtasks-popover > header > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.workflow-subtasks-popover > header strong {
  font-size: 0.77rem;
}

.workflow-subtasks-popover > header span {
  color: #6f726c;
  font-size: 0.58rem;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}

.workflow-subtask-list {
  padding: 5px;
}

.workflow-subtask-list > button {
  width: 100%;
  min-height: 40px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 10px;
  padding: 5px 9px;
  border: 0;
  border-radius: var(--radius-inner);
  background: transparent;
  color: #555852;
  font-family: inherit;
  font-size: 0.61rem;
  line-height: 1.22;
  text-align: left;
  cursor: pointer;
  transition-property: background-color, scale;
  transition-duration: 150ms;
  transition-timing-function: ease-out;
}

.workflow-subtask-list > button:hover {
  background: #f1f1ef;
}

.workflow-subtask-list > button:active {
  scale: 0.96;
}

.workflow-subtask-list > button > i {
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  border-radius: 5px;
  background: #fff;
  color: transparent;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.18);
  font-size: 0.65rem;
  font-style: normal;
}

.workflow-subtask-list > button.is-checked > i {
  background: var(--ink);
  color: var(--white);
  box-shadow: none;
}

.workflow-subtask-list > button.is-checked > span {
  color: #71746e;
  text-decoration: line-through;
  text-decoration-thickness: 1px;
}

.workflow-subtask-add {
  min-height: 42px;
  display: flex;
  align-items: center;
  padding: 0 15px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  color: #797c76;
  font-size: 0.62rem;
}

.production-aside {
  display: grid;
  grid-template-columns: 0.6fr 1fr;
  align-items: end;
  gap: 30px;
  margin-top: clamp(70px, 10vw, 140px);
  padding-top: 18px;
  border-top: 1px solid var(--line-dark);
}

.production-aside span {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
}

.production-aside strong {
  font-family: var(--font-condensed);
  font-size: clamp(3.4rem, 7vw, 7.5rem);
  line-height: 0.8;
  letter-spacing: -0.055em;
  text-align: right;
}

.client {
  min-height: 130svh;
}

.client-header {
  max-width: 1080px;
}

.client-header-copy {
  max-width: 620px;
  margin: 30px 0 0;
  font-size: var(--fs-section-copy);
  line-height: var(--lh-section-copy);
  text-wrap: pretty;
}

.client-grid {
  display: grid;
  grid-template-columns: minmax(270px, 0.7fr) minmax(420px, 1.3fr);
  gap: 20px;
  margin-top: clamp(64px, 8vw, 110px);
}

.client-copy,
.client-mini {
  padding: clamp(26px, 3vw, 46px);
  background: var(--cream);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-soft);
}

.client-copy {
  min-height: 530px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.client-copy > span,
.client-mini > span {
  margin-bottom: auto;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.12em;
}

.client-copy h3,
.client-mini h3 {
  margin-top: 24px;
  font-size: clamp(2rem, 3.2vw, 3.8rem);
  font-weight: 620;
  line-height: 0.96;
  letter-spacing: -0.045em;
}

.client-copy p {
  max-width: 440px;
  margin: 28px 0 0;
  font-size: 1.05rem;
}

.proposal-art {
  position: relative;
  min-height: 530px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--ink);
  border-radius: var(--radius-card);
}

.proposal-shadow,
.proposal-page {
  position: absolute;
  width: min(360px, 68%);
  min-height: 440px;
  border-radius: var(--radius-inner);
}

.proposal-shadow {
  background: #6d776d;
  transform: translate(58px, 14px) rotate(10deg);
}

.proposal-page {
  z-index: 2;
  padding: 27px;
  background: var(--white);
  box-shadow: 0 30px 55px -22px rgba(0,0,0,0.8);
  transform: translate(-12px, 12px) rotate(-5deg);
}

.proposal-page > small {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.11em;
}

.proposal-page h3 {
  margin: 26px 0 18px;
  font-family: var(--font-serif);
  font-size: clamp(2.1rem, 3vw, 3rem);
  font-weight: 400;
  line-height: 0.9;
}

.proposal-photo {
  position: relative;
  height: 190px;
  overflow: hidden;
  border-radius: var(--radius-inner);
  background:
    linear-gradient(145deg, transparent 0 37%, #657e71 37% 62%, transparent 62%),
    #d3ae92;
  outline: 1px solid rgba(0, 0, 0, 0.1);
  outline-offset: -1px;
}

.proposal-photo span {
  position: absolute;
  top: 32%;
  left: 48%;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #efc4aa;
}

.proposal-page p {
  margin: 15px 0;
  color: #686c66;
  font-size: 0.65rem;
}

.proposal-page b {
  display: block;
  padding: 12px;
  background: var(--ink);
  color: var(--white);
  font-size: 0.68rem;
  text-align: center;
}

.proposal-label {
  position: absolute;
  z-index: 4;
  right: 22px;
  bottom: 24px;
  width: 112px;
  height: 112px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--clay);
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-align: center;
  transform: rotate(12deg);
}

.client-mini {
  min-height: 350px;
  display: flex;
  flex-direction: column;
}

.client-mini--booking { background: var(--sage); }
.client-mini--portal { background: var(--clay); }

.calendar-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 7px;
  margin-top: auto;
  padding-top: 26px;
  border-top: 1px solid var(--line-dark);
}

.calendar-strip i {
  min-height: 54px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.3);
  border-radius: var(--radius-inner);
  font-style: normal;
  font-variant-numeric: tabular-nums;
}

.calendar-strip i.selected {
  background: var(--ink);
  color: var(--white);
}

.portal-status {
  margin-top: auto;
  padding: 18px;
  display: grid;
  grid-template-columns: 46px 1fr;
  background: var(--ink);
  color: var(--white);
  border-radius: var(--radius-inner);
}

.portal-status i {
  grid-row: 1 / 3;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  font-style: normal;
}

.portal-status b { font-size: 0.85rem; }
.portal-status small { color: rgba(255,255,255,0.58); }

/* Feature bento: contratos, agenda, financeiro e entrega. */
.client-header {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.45fr);
  align-items: end;
  gap: clamp(32px, 6vw, 96px);
}

.client-header-copy {
  max-width: 390px;
  margin: 0 0 0 auto;
  font-size: var(--fs-section-copy);
}

.feature-bento {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(14px, 1.5vw, 22px);
  margin-top: clamp(64px, 8vw, 110px);
}

.feature-card {
  position: relative;
  min-width: 0;
  min-height: 500px;
  overflow: hidden;
  padding: clamp(22px, 2.6vw, 38px);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-soft);
}

.feature-card--contract { grid-column: span 7; background: var(--white); }
.feature-card--schedule { grid-column: span 5; background: var(--white); }
.feature-card--finance { grid-column: span 5; background: var(--white); }
.feature-card--delivery { grid-column: span 7; background: var(--white); color: var(--ink); }

/* Experimento: pintura contínua com um véu claro e gradual sob o título. */
.feature-card--contract,
.feature-card--delivery {
  isolation: isolate;
}

.feature-card--contract::before,
.feature-card--delivery::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.feature-card--contract::before {
  background-image:
    linear-gradient(
      180deg,
      rgba(255, 254, 250, 0.82) 0%,
      rgba(255, 254, 250, 0.7) 20%,
      rgba(246, 242, 234, 0.42) 43%,
      rgba(246, 242, 234, 0.2) 68%,
      rgba(246, 242, 234, 0.14) 100%
    ),
    url("assets/feature-contract-painting.avif");
}

.feature-card--delivery::before {
  background-image:
    linear-gradient(
      180deg,
      rgba(255, 254, 250, 0.84) 0%,
      rgba(255, 254, 250, 0.72) 20%,
      rgba(232, 240, 237, 0.44) 43%,
      rgba(232, 240, 237, 0.22) 68%,
      rgba(232, 240, 237, 0.16) 100%
    ),
    url("assets/feature-delivery-painting.avif");
  background-position: 52% center;
}

.feature-card__header { position: relative; z-index: 3; }

.feature-card__header > span,
.pricing-card header p,
.pricing-card header span {
  font-size: var(--fs-label);
  font-weight: var(--fw-semi);
  letter-spacing: var(--ls-eyebrow);
}

.feature-card__header h3 {
  max-width: 660px;
  margin: 18px 0 0;
  font-size: clamp(2.05rem, 3.25vw, 3.75rem);
  font-weight: 620;
  line-height: 0.94;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.contract-mock,
.schedule-mock,
.finance-mock,
.gallery-mock {
  position: relative;
  z-index: 2;
  margin-top: clamp(28px, 4vw, 52px);
  border-radius: var(--radius-card);
  outline: 1px solid rgba(0, 0, 0, 0.1);
  outline-offset: -1px;
}

.contract-mock {
  width: min(610px, 94%);
  margin-left: auto;
  margin-right: auto;
  padding: clamp(20px, 2.2vw, 30px);
  background: var(--white);
  color: var(--ink);
  box-shadow: 18px 20px 0 var(--shadow-green);
  transform: none;
}

.contract-mock__top,
.contract-file,
.contract-signature,
.contract-complete { display: flex; align-items: center; }

.contract-mock__top {
  justify-content: space-between;
  font-size: 0.62rem;
  font-weight: 650;
  letter-spacing: 0.1em;
}

.contract-mock h4 {
  max-width: 420px;
  margin: 25px 0 6px;
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  line-height: 1;
  letter-spacing: -0.035em;
}

.contract-mock > p { margin: 0; color: rgba(23, 24, 21, 0.58); font-size: 0.78rem; }

.contract-file {
  gap: 13px;
  margin-top: 24px;
  padding: 13px;
  border: 1px solid rgba(23, 24, 21, 0.12);
  border-radius: var(--radius-inner);
}

.contract-file > i {
  width: 42px;
  height: 48px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 6px;
  background: var(--clay);
  color: var(--white);
  font-size: 0.62rem;
  font-style: normal;
  font-weight: 700;
}

.contract-file div { min-width: 0; display: grid; gap: 2px; }
.contract-file strong { overflow: hidden; font-size: 0.78rem; text-overflow: ellipsis; white-space: nowrap; }
.contract-file span { color: rgba(23, 24, 21, 0.52); font-size: 0.66rem; }
.contract-file > b { margin-left: auto; font-size: 0.69rem; white-space: nowrap; }

.contract-signature {
  min-height: 86px;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto 1fr;
  margin-top: 12px;
  padding: 14px 16px;
  border: 1px solid rgba(23, 24, 21, 0.12);
  border-radius: var(--radius-inner);
}

.contract-signature small { grid-column: 1 / -1; font-size: 0.56rem; font-weight: 650; letter-spacing: 0.1em; }
.contract-signature strong { align-self: end; font-family: Georgia, serif; font-size: clamp(1.35rem, 2.6vw, 2rem); font-style: italic; font-weight: 400; }
.contract-signature > i { align-self: end; color: var(--green); font-style: normal; font-weight: 700; }

.contract-complete {
  gap: 10px;
  margin-top: 12px;
  padding: 11px 14px;
  border-radius: var(--radius-inner);
  background: rgba(82, 121, 111, 0.12);
}

.contract-complete > i {
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  font-size: 0.72rem;
  font-style: normal;
}

.contract-complete span { display: grid; gap: 1px; }
.contract-complete strong { font-size: 0.72rem; }
.contract-complete small { color: rgba(23, 24, 21, 0.52); font-size: 0.61rem; }

.schedule-mock {
  display: grid;
  grid-template-columns: minmax(120px, 0.68fr) minmax(190px, 1.32fr);
  gap: 12px;
  padding: 14px;
  background: rgba(255, 254, 250, 0.9);
  color: var(--ink);
  box-shadow: 14px 16px 0 var(--shadow-green);
}

.schedule-profile,
.schedule-details,
.schedule-calendar { border: 1px solid rgba(23, 24, 21, 0.1); border-radius: var(--radius-inner); }

.schedule-profile { display: flex; align-items: center; gap: 9px; padding: 12px; }
.schedule-profile > i { width: 34px; height: 34px; display: grid; flex: 0 0 auto; place-items: center; border-radius: 50%; background: var(--green); color: var(--white); font-size: 0.65rem; font-style: normal; }
.schedule-profile div, .schedule-details { display: grid; gap: 2px; }
.schedule-profile strong, .schedule-details strong { font-size: 0.75rem; }
.schedule-profile span, .schedule-details span { color: rgba(23, 24, 21, 0.55); font-size: 0.62rem; }
.schedule-details { grid-column: 1; padding: 13px; }
.schedule-calendar { grid-column: 2; grid-row: 1 / 3; padding: 14px; }
.schedule-calendar__top { display: flex; justify-content: space-between; align-items: center; font-size: 0.72rem; }
.schedule-calendar__top span { color: rgba(23, 24, 21, 0.42); }
.schedule-week, .schedule-days { display: grid; grid-template-columns: repeat(7, 1fr); text-align: center; }
.schedule-week { margin: 14px 0 8px; color: rgba(23, 24, 21, 0.46); font-size: 0.52rem; font-weight: 650; }
.schedule-days { row-gap: 4px; font-size: 0.58rem; font-variant-numeric: tabular-nums; }
.schedule-days span { min-height: 24px; display: grid; place-items: center; }
.schedule-days .is-selected { border-radius: 50%; background: var(--ink); color: var(--white); }
.schedule-days .is-outside { color: rgba(23, 24, 21, 0.25); }
.schedule-times { display: flex; gap: 5px; margin-top: 12px; }
.schedule-times span { flex: 1; padding: 6px 3px; border: 1px solid rgba(23, 24, 21, 0.14); border-radius: 999px; font-size: 0.53rem; text-align: center; }

.finance-mock {
  padding: 14px;
  background: rgba(255, 254, 250, 0.94);
  color: var(--ink);
  box-shadow: 14px 16px 0 var(--shadow-green);
}

.finance-mock__nav { display: flex; justify-content: space-between; gap: 15px; padding: 9px 11px; overflow: hidden; border-radius: var(--radius-inner); background: rgba(23, 24, 21, 0.06); font-size: 0.6rem; white-space: nowrap; }
.finance-mock__nav span { color: rgba(23, 24, 21, 0.48); }
.finance-mock__nav b { color: var(--ink); }

.finance-balance { display: grid; gap: 3px; margin-top: 10px; padding: 15px; border: 1px solid rgba(23, 24, 21, 0.1); border-radius: var(--radius-inner); }
.finance-balance small, .finance-stats small, .finance-payment small { color: rgba(23, 24, 21, 0.55); font-size: 0.53rem; font-weight: 650; letter-spacing: 0.08em; }
.finance-balance > strong { color: var(--green); font-size: clamp(1.4rem, 2.8vw, 2.4rem); letter-spacing: -0.04em; font-variant-numeric: tabular-nums; }
.finance-balance > span { color: rgba(23, 24, 21, 0.56); font-size: 0.63rem; }

.finance-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 7px; margin-top: 7px; }
.finance-stats > div { min-width: 0; display: grid; gap: 5px; padding: 11px; border: 1px solid rgba(23, 24, 21, 0.1); border-radius: var(--radius-inner); }
.finance-stats strong { overflow: hidden; font-size: 0.68rem; text-overflow: ellipsis; white-space: nowrap; font-variant-numeric: tabular-nums; }

.finance-payment { display: flex; justify-content: space-between; gap: 16px; margin-top: 7px; padding: 12px; border: 1px solid rgba(23, 24, 21, 0.1); border-radius: var(--radius-inner); }
.finance-payment > div { display: grid; gap: 3px; }
.finance-payment > div:last-child { text-align: right; }
.finance-payment strong { font-size: 0.72rem; }
.finance-payment span { color: rgba(23, 24, 21, 0.55); font-size: 0.58rem; }
.finance-payment > div:last-child span { color: var(--clay-deep); font-weight: 650; }

.gallery-mock {
  min-height: 300px;
  padding: 12px;
  background: var(--white);
  color: var(--ink);
  box-shadow: 14px 16px 0 var(--shadow-green);
}

.gallery-mock__top { display: flex; justify-content: space-between; gap: 16px; padding: 4px 4px 12px; font-size: 0.67rem; }
.gallery-grid-mock { height: 242px; display: grid; grid-template-columns: 1.15fr 0.9fr 1.05fr; grid-template-rows: 1fr 0.85fr; gap: 3px; overflow: hidden; border-radius: var(--radius-inner); }

.gallery-shot {
  position: relative;
  min-width: 0;
  min-height: 0;
  background-repeat: no-repeat;
  background-size: cover;
  outline: 1px solid rgba(0, 0, 0, 0.1);
  outline-offset: -1px;
}

.gallery-shot--1 {
  background-image: url("assets/gallery-wedding-05.webp");
  background-position: center 76%;
}

.gallery-shot--2 {
  grid-row: span 2;
  background-image: url("assets/gallery-wedding-03.webp");
  background-position: center 54%;
}

.gallery-shot--3 {
  background-image: url("assets/gallery-wedding-04.webp");
  background-position: center 42%;
}

.gallery-shot--4 {
  background-image: url("assets/gallery-wedding-01.webp");
  background-position: center 88%;
}

.gallery-shot--5 {
  background-image: url("assets/gallery-wedding-02.webp");
  background-position: center 86%;
}

.gallery-shot b { position: absolute; right: 9px; bottom: 8px; color: var(--white); font-size: 1rem; text-shadow: 0 1px 7px rgba(0, 0, 0, 0.52); }

.gallery-download {
  position: absolute;
  z-index: 4;
  right: 24px;
  bottom: 22px;
  width: min(245px, 44%);
  padding: 15px;
  border-radius: var(--radius-card);
  background: var(--white);
  color: var(--ink);
  box-shadow: 8px 8px 0 rgba(23, 24, 21, 0.16);
  outline: 1px solid rgba(0, 0, 0, 0.1);
  outline-offset: -1px;
}

.gallery-download > div:first-child { display: flex; justify-content: space-between; margin-bottom: 14px; font-size: 0.76rem; }
.gallery-download > small { display: block; margin: 11px 0 6px; color: rgba(23, 24, 21, 0.5); font-size: 0.52rem; font-weight: 650; letter-spacing: 0.06em; text-transform: uppercase; }
.gallery-download p { display: flex; align-items: center; gap: 7px; margin: 6px 0; font-size: 0.62rem; }
.gallery-download p i { width: 11px; height: 11px; border: 1px solid rgba(23, 24, 21, 0.3); border-radius: 50%; }
.gallery-download p i.is-selected { border: 3px solid var(--white); background: var(--ink); box-shadow: 0 0 0 1px var(--ink); }
.gallery-quality { display: flex; gap: 6px; }
.gallery-quality span { flex: 1; padding: 6px; border: 1px solid rgba(23, 24, 21, 0.12); border-radius: 999px; font-size: 0.55rem; text-align: center; }
.gallery-quality span.is-selected { background: rgba(82, 121, 111, 0.14); border-color: rgba(82, 121, 111, 0.35); }
.gallery-download__button { width: 100%; min-height: 36px; display: grid; place-items: center; margin-top: 12px; border-radius: 6px; background: var(--ink); color: var(--white); font-size: 0.62rem; font-weight: 650; }

/* Bastidor operacional: discussões, equipamentos e parceiros. */
.backstage {
  min-height: auto;
  overflow: visible;
  padding-bottom: clamp(72px, 8vw, 122px);
}

.backstage-header {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.45fr);
  align-items: end;
  gap: clamp(32px, 6vw, 96px);
}

.backstage-header h2 {
  margin: 0;
  font-family: var(--font-condensed);
  font-size: clamp(4rem, 6.8vw, 7.4rem);
  font-weight: 600;
  letter-spacing: -0.065em;
  line-height: 0.84;
  text-transform: uppercase;
}

.backstage-header h2 em {
  display: inline-block;
  color: var(--ink);
  font-style: normal;
  font-size: 0.8em;
  letter-spacing: -0.05em;
  transform: none;
}

.backstage-header > p {
  max-width: 390px;
  margin: 0 0 0 auto;
  font-size: var(--fs-section-copy);
  line-height: var(--lh-section-copy);
}

.backstage-story {
  display: grid;
  grid-template-columns: minmax(190px, 0.34fr) minmax(0, 1fr);
  align-items: start;
  gap: clamp(48px, 7vw, 112px);
  margin-top: clamp(52px, 6vw, 84px);
}

.backstage-story__rail {
  position: sticky;
  top: clamp(96px, 12vh, 138px);
  align-self: start;
}

.backstage-story__rail nav {
  display: grid;
  border-top: 1px solid var(--line-dark);
}

.backstage-story__rail a {
  min-height: 64px;
  display: grid;
  grid-template-columns: 28px 1fr auto;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--line-dark);
  color: rgba(23, 24, 21, 0.42);
  font-size: 0.78rem;
  font-weight: 580;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition-property: color;
  transition-duration: 180ms;
  transition-timing-function: ease-out;
}

.backstage-story__rail a > span {
  color: rgba(23, 24, 21, 0.34);
  font-variant-numeric: tabular-nums;
  font-size: 0.62rem;
}

.backstage-story__rail a > i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.65;
}

.backstage-story__rail a:hover,
.backstage-story__rail a:focus-visible,
.backstage-story__rail a.is-active {
  color: var(--ink);
}

.backstage-story__rail a.is-active > i {
  opacity: 1;
  background: var(--green);
}

.backstage-grid {
  min-width: 0;
  display: grid;
  gap: clamp(48px, 5vw, 72px);
}

.backstage-step {
  min-width: 0;
  scroll-margin-top: 94px;
}

.backstage-card {
  position: relative;
  isolation: isolate;
  min-width: 0;
  min-height: 650px;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(220px, 0.78fr) minmax(0, 1.22fr);
  gap: 12px;
  padding: 12px;
  border-radius: 18px;
  background: #20211f;
  color: var(--white);
  box-shadow: var(--shadow-soft);
}

.backstage-card--discussion {
  min-height: 610px;
}

.backstage-card--equipment {
  min-height: 610px;
}

.backstage-card__visual {
  position: relative;
  isolation: isolate;
  min-width: 0;
  min-height: 100%;
  overflow: hidden;
  border-radius: var(--radius-card);
  background: var(--card-paper);
  color: var(--ink);
  outline: 1px solid rgba(255, 255, 255, 0.1);
  outline-offset: -1px;
}

.backstage-card__visual::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.backstage-card--discussion .backstage-card__visual::before {
  background-image:
    linear-gradient(rgba(255, 254, 250, 0.2), rgba(246, 242, 234, 0.3)),
    url("assets/backstage-forms-painting.jpg");
}

.backstage-card--equipment .backstage-card__visual::before {
  background-image:
    linear-gradient(rgba(255, 254, 250, 0.16), rgba(232, 240, 237, 0.28)),
    url("assets/backstage-equipment-painting.avif");
}

.backstage-card--partners {
  min-height: 610px;
}

.backstage-card--partners .backstage-card__visual::before {
  background-image:
    linear-gradient(rgba(255, 254, 250, 0.14), rgba(246, 242, 234, 0.24)),
    url("assets/backstage-partners-painting.avif");
}

.backstage-card__summary {
  position: relative;
  z-index: 2;
  min-width: 0;
  display: grid;
  align-content: space-between;
  gap: 36px;
  padding: clamp(24px, 3vw, 38px);
}

.backstage-card__summary > span {
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.76rem;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.06em;
}

.backstage-card__summary > div {
  display: grid;
  gap: 18px;
}

.backstage-card__summary strong {
  max-width: 290px;
  font-size: clamp(1.65rem, 2.2vw, 2.6rem);
  font-weight: 540;
  letter-spacing: -0.045em;
  line-height: 1;
  text-wrap: balance;
}

.backstage-card__summary p {
  max-width: 310px;
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: clamp(0.92rem, 1.2vw, 1.08rem);
  line-height: 1.5;
  text-wrap: pretty;
}

.backstage-card__summary > small {
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.1em;
}

.discussion-panel,
.equipment-mock,
.supplier-panel {
  outline: 1px solid rgba(0, 0, 0, 0.1);
  outline-offset: -1px;
}

.discussion-demo {
  position: relative;
  z-index: 2;
  width: min(620px, calc(100% - 48px));
  height: 562px;
  max-height: calc(100% - 48px);
  min-height: 540px;
  margin: 24px auto;
}

.discussion-panel {
  width: 100%;
  height: 100%;
  min-height: 540px;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  overflow: hidden;
  border-radius: var(--radius-card);
  background: var(--white);
  box-shadow: 14px 16px 0 var(--shadow-green), var(--shadow-soft);
}

.discussion-panel__header {
  min-height: 82px;
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr) 28px;
  align-items: center;
  gap: 12px;
  padding: 15px 18px;
  border-bottom: 1px solid rgba(23, 24, 21, 0.11);
  background: rgba(250, 250, 248, 0.94);
}

.discussion-panel__icon {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: rgba(23, 24, 21, 0.65);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7px;
}

.discussion-panel__header > div {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: baseline;
  gap: 1px 8px;
}

.discussion-panel__header strong {
  grid-column: 1 / -1;
  font-size: 1rem;
}

.discussion-panel__header small {
  color: rgba(23, 24, 21, 0.55);
  font-size: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.discussion-panel__header span {
  overflow: hidden;
  color: rgba(23, 24, 21, 0.78);
  font-size: 0.62rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.discussion-panel__header > b {
  color: rgba(23, 24, 21, 0.62);
  font-size: 1.1rem;
  font-weight: 350;
  text-align: center;
}

.discussion-panel__body {
  min-height: 0;
  overflow: hidden;
  padding: 16px 18px 12px;
}

.discussion-count {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.discussion-count > i {
  height: 1px;
  background: rgba(23, 24, 21, 0.18);
}

.discussion-count strong {
  padding: 4px 9px;
  border-radius: 999px;
  background: rgba(79, 147, 94, 0.1);
  color: #3d8c50;
  font-size: 0.62rem;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}

.discussion-thread-list {
  display: grid;
  gap: 10px;
  transform: translateY(0);
  transition-property: transform;
  transition-duration: 320ms;
  transition-timing-function: cubic-bezier(0.2, 0, 0, 1);
}

.discussion-thread-list.is-shifted { transform: translateY(-58px); }

.discussion-thread {
  min-width: 0;
  overflow: hidden;
  border-radius: 12px;
  background: var(--white);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.1),
    0 7px 18px -14px rgba(0, 0, 0, 0.45);
}

.discussion-thread__open {
  overflow: hidden;
  max-height: 150px;
  opacity: 1;
  transition-property: max-height, opacity, transform;
  transition-duration: 220ms, 150ms, 220ms;
  transition-timing-function: cubic-bezier(0.2, 0, 0, 1), ease-out, cubic-bezier(0.2, 0, 0, 1);
}

.discussion-thread header {
  min-height: 43px;
  display: grid;
  grid-template-columns: 26px auto 1fr auto;
  align-items: center;
  gap: 8px;
  padding: 9px 12px 4px;
}

.discussion-avatar {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  font-size: 0.48rem;
  font-style: normal;
  font-weight: 700;
}

.discussion-avatar--marina { background: #8a776b; }
.discussion-avatar--caio { background: #587f78; }
.discussion-avatar--you { background: var(--ink); }

.discussion-thread header strong { font-size: 0.7rem; }

.discussion-thread header small {
  color: rgba(23, 24, 21, 0.55);
  font-size: 0.58rem;
}

.discussion-thread header b {
  color: rgba(23, 24, 21, 0.48);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
}

.discussion-thread p {
  min-height: 36px;
  margin: 0;
  padding: 4px 12px 10px 46px;
  font-size: 0.68rem;
  line-height: 1.38;
  text-wrap: pretty;
}

.discussion-thread footer {
  min-height: 36px;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px;
  border-top: 1px solid rgba(23, 24, 21, 0.1);
}

.discussion-thread button {
  min-height: 32px;
  padding: 0 8px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-size: 0.62rem;
  font-weight: 600;
  cursor: pointer;
  transition-property: background-color, scale;
  transition-duration: 150ms;
  transition-timing-function: ease-out;
}

.discussion-thread button:hover,
.discussion-thread button:focus-visible {
  background: rgba(23, 24, 21, 0.06);
}

.discussion-thread button:active { scale: 0.96; }

.discussion-thread__resolved {
  max-height: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 8px;
  overflow: hidden;
  padding: 0 12px;
  opacity: 0;
  color: #3d8c50;
  transform: translateY(8px);
  transition-property: max-height, padding, opacity, transform;
  transition-duration: 220ms, 220ms, 180ms, 220ms;
  transition-timing-function: cubic-bezier(0.2, 0, 0, 1);
}

.discussion-thread__resolved span {
  width: 19px;
  height: 19px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(79, 147, 94, 0.12);
  font-size: 0.62rem;
}

.discussion-thread__resolved strong { font-size: 0.65rem; }
.discussion-thread__resolved small { color: rgba(23, 24, 21, 0.48); font-size: 0.56rem; }

.discussion-thread.is-resolved .discussion-thread__open {
  max-height: 0;
  opacity: 0;
  transform: translateY(-8px);
}

.discussion-thread.is-resolved .discussion-thread__resolved {
  max-height: 52px;
  padding-block: 11px;
  opacity: 1;
  transform: translateY(0);
}

.discussion-thread--new {
  max-height: 0;
  opacity: 0;
  filter: blur(4px);
  transform: translateY(12px);
  transition-property: max-height, opacity, filter, transform;
  transition-duration: 320ms;
  transition-timing-function: cubic-bezier(0.2, 0, 0, 1);
}

.discussion-thread--new.is-visible {
  max-height: 150px;
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}

.discussion-thread--new.is-sending { opacity: 0.65; }

.discussion-thread--new.is-exiting {
  max-height: 0;
  opacity: 0;
  filter: blur(4px);
  transform: translateY(-12px);
}

.discussion-composer {
  min-height: 54px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 34px 34px;
  align-items: center;
  gap: 3px;
  padding: 9px 14px;
  border-top: 1px solid rgba(23, 24, 21, 0.11);
  background: rgba(250, 250, 248, 0.96);
}

.discussion-composer label { min-width: 0; }

.discussion-composer .sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.discussion-composer input {
  width: 100%;
  min-height: 34px;
  padding: 0 10px;
  border: 1px solid transparent;
  border-radius: 9px;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-size: 0.68rem;
  transition-property: border-color, background-color, box-shadow;
  transition-duration: 180ms;
  transition-timing-function: ease-out;
}

.discussion-composer input::placeholder { color: rgba(23, 24, 21, 0.4); }

.discussion-composer.is-active input,
.discussion-composer input:focus {
  border-color: rgba(82, 121, 111, 0.28);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(82, 121, 111, 0.08);
}

.discussion-composer button {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 9px;
  background: transparent;
  color: rgba(23, 24, 21, 0.48);
  font: inherit;
  font-size: 1rem;
  cursor: pointer;
  transition-property: background-color, color, scale;
  transition-duration: 150ms;
  transition-timing-function: ease-out;
}

.discussion-composer button:hover,
.discussion-composer button:focus-visible { background: rgba(23, 24, 21, 0.06); }
.discussion-composer button:active { scale: 0.96; }

.discussion-composer__attach svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8px;
}

.discussion-composer__send.is-ready {
  background: var(--green);
  color: var(--white);
}

.discussion-demo-cursor {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  width: 23px;
  height: 28px;
  pointer-events: none;
  opacity: 0;
  filter: blur(4px) drop-shadow(0 2px 3px rgba(23, 24, 21, 0.24));
  transform: translate3d(var(--discussion-cursor-x, 0), var(--discussion-cursor-y, 0), 0);
  transition-property: transform, opacity, filter;
  transition-duration: 580ms, 180ms, 180ms;
  transition-timing-function: cubic-bezier(0.2, 0, 0, 1), ease-out, ease-out;
  will-change: transform, opacity;
}

.discussion-demo-cursor svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
  fill: var(--white);
  stroke: var(--ink);
  stroke-linejoin: round;
  stroke-width: 2px;
  transform: scale(1);
  transform-origin: 3px 3px;
  transition-property: transform;
  transition-duration: 150ms;
  transition-timing-function: ease-out;
}

.discussion-demo-cursor.is-visible {
  opacity: 1;
  filter: blur(0) drop-shadow(0 2px 3px rgba(23, 24, 21, 0.24));
}

.discussion-demo-cursor.is-positioning { transition-duration: 0ms, 180ms, 180ms; }
.discussion-demo-cursor.is-clicking svg { transform: scale(0.96); }

@media (max-width: 820px), (prefers-reduced-motion: reduce) {
  .discussion-demo-cursor { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .discussion-thread__open,
  .discussion-thread__resolved,
  .discussion-thread--new,
  .discussion-thread-list,
  .discussion-composer input,
  .discussion-composer button,
  .discussion-thread button {
    transition-duration: 0ms;
  }
}

.backstage-float {
  position: absolute;
  z-index: 6;
  display: grid;
  gap: 3px;
  padding: 15px 17px;
  border-radius: var(--radius-inner);
  background: var(--white);
  color: var(--ink);
  box-shadow: 9px 10px 0 var(--shadow-green), var(--shadow-soft);
  transform: none;
}

.backstage-float small {
  font-size: 0.53rem;
  font-weight: 650;
  letter-spacing: 0.1em;
}

.backstage-float strong { font-size: 0.9rem; line-height: 1.05; }
.backstage-float span { color: rgba(23, 24, 21, 0.56); font-size: 0.62rem; }
.backstage-float span i { color: var(--green); font-style: normal; }

.equipment-mock {
  position: relative;
  z-index: 2;
  width: min(650px, 132%);
  margin: 70px 0 0 34px;
  overflow: hidden;
  border-radius: var(--radius-card);
  background: var(--white);
  box-shadow: 16px 18px 0 var(--shadow-green);
  transform: none;
}

.equipment-mock__top {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(23, 24, 21, 0.1);
}

.equipment-mock__top > div { display: grid; gap: 3px; }
.equipment-mock__top small { color: rgba(23, 24, 21, 0.5); font-size: 0.52rem; font-weight: 650; letter-spacing: 0.08em; }
.equipment-mock__top strong { font-size: 1rem; }
.equipment-mock__top > span { font-size: 0.58rem; font-weight: 650; letter-spacing: 0.08em; }

.equipment-mock__body {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(150px, 0.75fr);
}

.equipment-list { padding: 8px 16px 15px; }

.equipment-list > div {
  min-height: 66px;
  display: grid;
  grid-template-columns: 34px 1fr auto;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid rgba(23, 24, 21, 0.09);
}

.equipment-list > div > i {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(82, 121, 111, 0.14);
  color: var(--green);
  font-size: 0.52rem;
  font-style: normal;
  font-weight: 700;
}

.equipment-list span { min-width: 0; display: grid; gap: 2px; }
.equipment-list strong { overflow: hidden; font-size: 0.72rem; text-overflow: ellipsis; white-space: nowrap; }
.equipment-list small { color: rgba(23, 24, 21, 0.48); font-size: 0.57rem; }
.equipment-list > div > b { color: var(--green); font-size: 0.58rem; font-weight: 650; }

.equipment-checklist {
  padding: 20px 16px;
  border-left: 1px solid rgba(23, 24, 21, 0.1);
  background: rgba(82, 121, 111, 0.08);
}

.equipment-checklist > small { font-size: 0.5rem; font-weight: 700; letter-spacing: 0.08em; }
.equipment-checklist p { display: flex; align-items: center; gap: 7px; margin: 15px 0; font-size: 0.62rem; }
.equipment-checklist p i { width: 18px; height: 18px; display: grid; flex: 0 0 auto; place-items: center; border-radius: 50%; background: var(--green); color: var(--white); font-size: 0.55rem; font-style: normal; }

.backstage-float--kit {
  right: 24px;
  bottom: 24px;
  box-shadow: 9px 10px 0 var(--shadow-green), var(--shadow-soft);
  transform: none;
}

.partner-stage {
  position: relative;
  min-height: 586px;
  margin: 0;
}

.supplier-panel {
  position: absolute;
  z-index: 2;
  top: 44px;
  left: 3%;
  width: min(720px, 72%);
  min-height: 510px;
  display: grid;
  gap: 10px;
  padding: 11px;
  border-radius: var(--radius-card);
  background: #f3f4f4;
  box-shadow:
    0 18px 38px -26px rgba(23, 24, 21, 0.28),
    0 4px 10px -7px rgba(23, 24, 21, 0.14);
  transform: none;
}

.freelancer-admin-card {
  padding: 15px 17px;
  border: 1px solid rgba(23, 24, 21, 0.11);
  border-radius: var(--radius-inner);
  background: var(--white);
  box-shadow: 0 4px 12px rgba(23, 24, 21, 0.035);
}

.freelancer-admin-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.freelancer-admin-title strong { font-size: 0.78rem; }
.freelancer-admin-title span { color: rgba(23, 24, 21, 0.62); font-size: 0.55rem; }

.freelancer-profile {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-top: 11px;
}

.freelancer-profile > i {
  width: 42px;
  height: 42px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: rgba(82, 121, 111, 0.14);
  color: var(--green);
  font-size: 0.65rem;
  font-style: normal;
  font-weight: 700;
}

.freelancer-profile > div { display: grid; gap: 3px; }
.freelancer-profile strong { font-size: 0.9rem; }
.freelancer-profile span { color: rgba(23, 24, 21, 0.7); font-size: 0.62rem; }

.freelancer-contact { display: flex; flex-wrap: wrap; gap: 9px 20px; margin: 12px 0; }
.freelancer-contact span { font-size: 0.58rem; }
.freelancer-contact i { color: rgba(23, 24, 21, 0.58); font-style: normal; }
.freelancer-portal-status { padding-top: 10px; border-top: 1px solid rgba(23, 24, 21, 0.08); font-size: 0.58rem; text-align: center; }
.freelancer-portal-status i { color: var(--green); font-style: normal; }

.freelancer-admin-card--projects { padding-bottom: 11px; }

.freelancer-admin-project {
  min-height: 54px;
  display: grid;
  grid-template-columns: 32px 1fr auto;
  align-items: center;
  gap: 9px;
  border-bottom: 1px solid rgba(23, 24, 21, 0.07);
}

.freelancer-admin-project > i {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 6px;
  background: #408896;
  color: var(--white);
  font-size: 0.55rem;
  font-style: normal;
}

.freelancer-admin-project > span { min-width: 0; display: grid; gap: 1px; }
.freelancer-admin-project strong { overflow: hidden; font-size: 0.65rem; text-overflow: ellipsis; white-space: nowrap; }
.freelancer-admin-project small { color: rgba(23, 24, 21, 0.52); font-size: 0.5rem; }
.freelancer-admin-project u { font-size: 0.49rem; text-underline-offset: 2px; }
.freelancer-admin-project > b { font-size: 1rem; font-weight: 400; }
.freelancer-admin-more { margin-top: 9px; font-size: 0.54rem; text-align: center; }

.freelancer-admin-total { display: flex; justify-content: space-between; margin: 12px 0 10px; padding: 9px 11px; border: 1px solid rgba(23, 24, 21, 0.08); border-radius: 8px; font-size: 0.61rem; }
.freelancer-admin-card--finance > small { color: rgba(23, 24, 21, 0.5); font-size: 0.48rem; font-weight: 700; letter-spacing: 0.08em; }
.freelancer-admin-payment { display: grid; grid-template-columns: 22px 1fr auto; align-items: center; gap: 8px; margin-top: 7px; padding: 8px 10px; border: 1px solid rgba(23, 24, 21, 0.08); border-radius: 8px; }
.freelancer-admin-payment > i { width: 20px; height: 20px; display: grid; place-items: center; border-radius: 4px; background: var(--ink); color: var(--white); font-size: 0.5rem; font-style: normal; }
.freelancer-admin-payment > span { display: grid; gap: 1px; }
.freelancer-admin-payment strong,
.freelancer-admin-payment > b { font-size: 0.56rem; }
.freelancer-admin-payment small { color: rgba(23, 24, 21, 0.5); font-size: 0.47rem; }

.iphone-mock {
  position: absolute;
  z-index: 3;
  top: 110px;
  right: -5%;
  width: min(320px, 56%);
  aspect-ratio: 433 / 882;
  filter: drop-shadow(14px 18px 0 var(--shadow-green)) drop-shadow(0 18px 30px rgba(23, 24, 21, 0.18));
}

.iphone-mock__screen {
  position: absolute;
  z-index: 0;
  top: 2.183%;
  left: 4.908%;
  width: 89.954%;
  height: 95.635%;
  overflow: hidden;
  border-radius: 14.313% / 6.609%;
  background: #f8f9fa;
}

.iphone-mock > svg {
  position: absolute;
  z-index: 1;
  inset: 0;
  width: 100%;
  height: 100%;
  transform: translateZ(0);
}

.portal-ui {
  height: 100%;
  overflow: hidden;
  padding: 42px 14px 18px;
  background: #f4f1ea;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}

.portal-ui__brand {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px;
  border-radius: 12px;
  background: var(--white);
  box-shadow: 0 8px 24px rgba(23, 24, 21, 0.06);
}

.portal-ui__brand > img {
  width: 34px;
  height: 34px;
  display: block;
  flex: 0 0 auto;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.08);
}

.portal-ui__brand > span,
.portal-ui__hello {
  display: grid;
}

.portal-ui__brand strong { font-size: 0.68rem; }
.portal-ui__brand small { margin-top: 2px; color: rgba(23, 24, 21, 0.5); font-size: 0.48rem; }

.portal-ui__hello {
  gap: 5px;
  padding: 18px 2px 16px;
}

.portal-ui__hello > strong {
  font-size: 1.1rem;
  letter-spacing: -0.035em;
}

.portal-ui__hello > span {
  color: rgba(23, 24, 21, 0.58);
  font-size: 0.54rem;
}

.portal-ui__hello > b {
  width: fit-content;
  margin-top: 7px;
  padding: 6px 8px;
  border-radius: 6px;
  background: var(--white);
  font-size: 0.48rem;
  font-weight: 560;
  box-shadow: inset 0 0 0 1px rgba(23, 24, 21, 0.12);
}

.portal-event {
  background: var(--white);
  box-shadow: 0 10px 28px rgba(23, 24, 21, 0.06), inset 0 0 0 1px rgba(0, 0, 0, 0.1);
}

.portal-event--open {
  padding: 11px;
  border-radius: 12px;
}

.portal-event--open > header {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) auto;
  align-items: start;
  gap: 8px;
  padding-bottom: 9px;
  border-bottom: 1px solid rgba(23, 24, 21, 0.08);
}

.portal-event--open > header > i,
.portal-event--closed > i {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--ink);
  color: var(--white);
  font-size: 0.45rem;
  font-style: normal;
  font-weight: 700;
}

.portal-event header > span,
.portal-event--closed > span {
  min-width: 0;
  display: grid;
  gap: 2px;
}

.portal-event header strong,
.portal-event--closed strong {
  overflow: hidden;
  font-size: 0.57rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.portal-event header small,
.portal-event--closed small {
  color: rgba(23, 24, 21, 0.5);
  font-size: 0.44rem;
  line-height: 1.35;
}

.portal-event header > em,
.portal-event--closed > em {
  padding: 4px 6px;
  border-radius: 999px;
  background: rgba(82, 121, 111, 0.1);
  color: var(--green);
  font-size: 0.4rem;
  font-style: normal;
  white-space: nowrap;
}

.portal-event__details {
  display: grid;
  gap: 7px;
  padding: 10px 0;
}

.portal-event__details p {
  display: grid;
  grid-template-columns: 14px 1fr;
  gap: 5px;
  margin: 0;
}

.portal-event__details p > i {
  color: var(--green);
  font-size: 0.58rem;
  font-style: normal;
}

.portal-event__details p > span {
  display: grid;
  gap: 1px;
}

.portal-event__details small,
.portal-event__notes > small {
  color: rgba(23, 24, 21, 0.46);
  font-size: 0.39rem;
  font-weight: 650;
  letter-spacing: 0.06em;
}

.portal-event__details strong,
.portal-event__details u {
  font-size: 0.5rem;
  font-weight: 540;
}

.portal-event__details u { margin-top: 1px; }

.portal-event__notes {
  display: grid;
  gap: 4px;
  padding: 8px;
  border-radius: 8px;
  background: rgba(82, 121, 111, 0.08);
}

.portal-event__notes > strong { font-size: 0.52rem; }
.portal-event__notes > span { color: rgba(23, 24, 21, 0.58); font-size: 0.44rem; line-height: 1.38; }

.portal-event--closed {
  min-height: 58px;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) auto;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  padding: 10px;
  border-radius: 12px;
}

.portal-event--closed > i {
  background: rgba(82, 121, 111, 0.1);
  color: var(--green);
}

.portal-ui__footnote {
  display: block;
  margin-top: 16px;
  color: rgba(23, 24, 21, 0.34);
  font-size: 0.46rem;
  text-align: center;
}

.backstage-float--calendar {
  right: 2%;
  bottom: 3%;
  min-width: 210px;
  box-shadow: 9px 10px 0 var(--shadow-green), var(--shadow-soft);
  transform: none;
}

.backstage-footnote {
  margin: clamp(58px, 7vw, 96px) 0 0;
}

.mobile.art-panel {
  position: relative;
  min-height: 0;
  padding-top: clamp(20px, 2.5vw, 36px);
  padding-bottom: clamp(20px, 2.5vw, 36px);
  background-image: linear-gradient(to right, rgba(20, 22, 20, 0.78) 0%, rgba(20, 22, 20, 0.5) 50%, rgba(20, 22, 20, 0.75) 100%), url("assets/mobile-bg-ref.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.mobile {
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(320px, 0.8fr) minmax(420px, 1.2fr);
  grid-template-rows: 1fr;
  align-items: center;
  gap: clamp(24px, 3vw, 48px);
}

.mobile[hidden] {
  display: none;
}

.mobile-copy {
  position: relative;
  z-index: 4;
  max-width: 650px;
}

.mobile-copy h2 {
  margin: 0;
  font-family: var(--font-condensed);
  font-size: var(--fs-section-display);
  font-weight: 600;
  letter-spacing: -0.065em;
  line-height: 0.79;
  text-transform: uppercase;
  text-wrap: balance;
}

.mobile-copy h2 em {
  display: inline-block;
  color: var(--white);
  font-style: normal;
  font-size: 0.8em;
  letter-spacing: -0.045em;
  transform: none;
}

.mobile-downloads {
  min-height: 52px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
}

.store-badge {
  width: 174px;
  height: 52px;
  padding: 6px 12px 6px 10px;
  display: flex;
  align-items: center;
  gap: 9px;
  flex: 0 0 auto;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 8px;
  background: #050505;
  color: #fff;
}

.store-badge__icon {
  width: 29px;
  height: 32px;
  flex: 0 0 auto;
}

.store-badge__icon--apple { width: 30px; }

.store-badge__copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
  white-space: nowrap;
}

.store-badge__copy small {
  margin-bottom: 3px;
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  text-transform: none;
}

.store-badge__copy strong {
  font-size: 1.08rem;
  font-weight: 500;
  letter-spacing: -0.025em;
}

.mobile-stage {
  position: relative;
  z-index: 2;
  min-height: 320px;
  max-height: 380px;
  display: grid;
  place-items: center;
}

.phone-shell {
  position: relative;
  z-index: 3;
  width: min(340px, 42vw);
  height: 640px;
  padding: 10px;
  border-radius: 44px;
  background: #0b0c0a;
  box-shadow: 18px 20px 0 var(--shadow-green);
  transform: rotate(-3deg) translateY(35px);
}

.phone-shell::before {
  content: "";
  position: absolute;
  z-index: 5;
  top: 19px;
  left: 50%;
  width: 92px;
  height: 22px;
  border-radius: 999px;
  background: #0b0c0a;
  transform: translateX(-50%);
}

.phone-screen {
  position: relative;
  height: 100%;
  overflow: hidden;
  border-radius: 36px;
  background: var(--paper);
  color: var(--ink);
  outline: 1px solid rgba(255, 255, 255, 0.1);
  outline-offset: -1px;
}

.phone-status {
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1px 20px 0;
  font-variant-numeric: tabular-nums;
}

.phone-status__time {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.phone-home {
  position: relative;
  height: calc(100% - 40px);
  padding: 21px 18px 86px;
}

.phone-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.phone-header div {
  display: grid;
  gap: 3px;
}

.phone-header small,
.phone-attention > small,
.mobile-float small {
  font-size: 0.5rem;
  font-weight: 650;
  letter-spacing: 0.1em;
}

.phone-header strong { font-size: 1.02rem; letter-spacing: -0.025em; }

.phone-header > i {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  font-size: 0.67rem;
  font-style: normal;
}

.phone-attention {
  margin-top: 20px;
  padding: 16px;
  border-radius: var(--radius-card);
  background: var(--white);
  box-shadow: 9px 10px 0 var(--shadow-green);
  outline: 1px solid rgba(0, 0, 0, 0.1);
  outline-offset: -1px;
}

.phone-attention > strong {
  display: block;
  margin: 5px 0 12px;
  font-size: 0.9rem;
}

.phone-attention p {
  display: grid;
  grid-template-columns: 7px 1fr auto;
  align-items: center;
  gap: 7px;
  margin: 0;
  padding: 8px 0;
  border-top: 1px solid rgba(23, 24, 21, 0.09);
  font-size: 0.62rem;
}

.phone-attention p > i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--clay);
}

.phone-attention p > b { color: rgba(23, 24, 21, 0.48); font-size: 0.54rem; }

.phone-section-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 26px 0 9px;
  font-size: 0.61rem;
}

.phone-section-title strong { font-size: 0.77rem; }
.phone-section-title span { color: rgba(23, 24, 21, 0.48); }

.phone-project {
  margin-top: 8px;
  padding: 11px;
  border-radius: var(--radius-inner);
  background: rgba(255, 254, 250, 0.72);
  outline: 1px solid rgba(0, 0, 0, 0.08);
  outline-offset: -1px;
}

.phone-project > div {
  display: grid;
  grid-template-columns: 30px 1fr auto;
  align-items: center;
  gap: 8px;
}

.phone-project > div > i {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 7px;
  background: rgba(82, 121, 111, 0.14);
  color: var(--green);
  font-size: 0.55rem;
  font-style: normal;
  font-weight: 700;
}

.phone-project > div > span { display: grid; gap: 1px; }
.phone-project > div strong { font-size: 0.64rem; }
.phone-project > div small { color: rgba(23, 24, 21, 0.48); font-size: 0.53rem; }
.phone-project > div > b { color: var(--green); font-size: 0.58rem; font-variant-numeric: tabular-nums; }

.phone-project > span {
  position: relative;
  height: 4px;
  display: block;
  margin-top: 9px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(23, 24, 21, 0.08);
}

.phone-project > span > i {
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--progress);
  border-radius: inherit;
  background: var(--green);
}

.phone-nav {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  min-height: 66px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: center;
  padding: 7px 12px 10px;
  border-top: 1px solid rgba(23, 24, 21, 0.1);
  background: rgba(246, 242, 234, 0.94);
}

.phone-nav span {
  min-width: 0;
  display: grid;
  place-items: center;
  gap: 2px;
  color: rgba(23, 24, 21, 0.48);
  font-size: 0.82rem;
}

.phone-nav small { font-size: 0.46rem; }

.phone-nav .is-active {
  width: 38px;
  height: 38px;
  justify-self: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  font-size: 1.1rem;
}

/* Dashboard mobile — replica a hierarquia do app real dentro do mockup. */
.phone-status .phone-system-icons {
  display: flex;
  align-items: center;
  gap: 5px;
  height: 18px;
}

.phone-cellular,
.phone-wifi {
  display: block;
  flex: 0 0 auto;
  color: var(--ink);
}

.phone-cellular {
  width: 14px;
  height: 10px;
  fill: currentColor;
}

.phone-wifi {
  width: 15px;
  height: 12px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
}

.phone-wifi circle { fill: currentColor; stroke: none; }

.phone-battery {
  position: relative;
  width: 25px;
  height: 13px;
  display: grid;
  place-items: center;
  border: 1.4px solid var(--ink);
  border-radius: 4px;
  background: var(--ink);
  color: var(--paper);
}

.phone-battery::after {
  content: "";
  position: absolute;
  top: 3px;
  right: -3px;
  width: 2px;
  height: 5px;
  border-radius: 0 2px 2px 0;
  background: var(--ink);
}

.phone-battery b {
  font-size: 0.46rem;
  font-weight: 750;
  line-height: 1;
  letter-spacing: -0.02em;
}

.phone-dashboard {
  overflow: hidden;
  padding: 14px 14px 74px;
}

.phone-toolbar,
.phone-studio,
.phone-tools,
.phone-dashboard-card header,
.phone-dashboard-card header strong,
.phone-finance-total {
  display: flex;
  align-items: center;
}

.phone-toolbar,
.phone-dashboard-card header,
.phone-finance-total { justify-content: space-between; }

.phone-studio { gap: 7px; min-width: 0; }

.phone-studio > img {
  width: 31px;
  height: 31px;
  display: block;
  flex: 0 0 auto;
  border-radius: 9px;
  object-fit: cover;
  outline: 1px solid rgba(0, 0, 0, 0.1);
  outline-offset: -1px;
}

.phone-studio strong {
  overflow: hidden;
  font-size: 0.74rem;
  letter-spacing: -0.02em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.phone-studio > span {
  color: rgba(23, 24, 21, 0.42);
  font-size: 0.62rem;
  font-weight: 700;
  line-height: 0.48;
}

.phone-tools { gap: 7px; }

.phone-tool {
  position: relative;
  width: 25px;
  height: 25px;
  display: block;
  flex: 0 0 auto;
  color: var(--ink);
  font-style: normal;
}

.phone-tool--eye::before {
  content: "";
  position: absolute;
  inset: 6px 2px;
  border: 2px solid currentColor;
  border-radius: 50% / 65%;
}

.phone-tool--eye::after {
  content: "";
  position: absolute;
  top: 10px;
  left: 10px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
}

.phone-tool--search::before {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 13px;
  height: 13px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.phone-tool--search::after {
  content: "";
  position: absolute;
  right: 3px;
  bottom: 4px;
  width: 8px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transform: rotate(45deg);
}

.phone-tool--bell::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 6px;
  width: 12px;
  height: 14px;
  border: 2px solid currentColor;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  border-bottom: 0;
}

.phone-tool--bell::after {
  content: "";
  position: absolute;
  left: 5px;
  bottom: 5px;
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  box-shadow: 7px 3px 0 -2px currentColor;
}

.phone-tool--bell b {
  position: absolute;
  z-index: 2;
  top: -5px;
  right: -5px;
  width: 15px;
  height: 15px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #e64e59;
  color: #fff;
  font-size: 0.48rem;
  font-style: normal;
  line-height: 1;
}

.phone-greeting {
  margin: 22px 0 13px;
  font-size: 1.24rem;
  line-height: 1;
  letter-spacing: -0.045em;
}

.phone-quick-actions {
  display: flex;
  gap: 7px;
  margin-right: -14px;
  overflow: hidden;
}

.phone-quick-actions > span {
  min-width: 115px;
  min-height: 39px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 0 11px;
  border-radius: 999px;
  background: rgba(255, 254, 250, 0.72);
  color: var(--ink);
  box-shadow: inset 0 0 0 1px rgba(23, 24, 21, 0.16);
  font-size: 0.66rem;
  font-weight: 650;
  white-space: nowrap;
}

.phone-action-icon {
  position: relative;
  width: 18px;
  height: 18px;
  display: block;
  flex: 0 0 auto;
  border: 1.7px solid currentColor;
  font-style: normal;
}

.phone-action-icon--check { border-radius: 50%; }
.phone-action-icon--check::after { content: "✓"; position: absolute; inset: -2px 0 0; display: grid; place-items: center; font-size: 0.62rem; font-weight: 800; }
.phone-action-icon--note { border-radius: 3px; }
.phone-action-icon--note::after { content: ""; position: absolute; inset: 4px 3px; background: repeating-linear-gradient(to bottom, currentColor 0 1px, transparent 1px 4px); }
.phone-action-icon--video { width: 20px; height: 14px; margin-right: 1px; border-radius: 3px; }
.phone-action-icon--video::after { content: ""; position: absolute; top: 3px; right: -6px; border: 4px solid transparent; border-right: 0; border-left-color: currentColor; }

.phone-dashboard-card {
  margin-top: 11px;
  padding: 11px 12px;
  border-radius: 12px;
  background: rgba(255, 254, 250, 0.9);
  box-shadow: 0 1px 3px rgba(23, 24, 21, 0.08), inset 0 0 0 1px rgba(23, 24, 21, 0.12);
}

.phone-dashboard-card header { min-height: 20px; }
.phone-dashboard-card header strong { gap: 7px; font-size: 0.72rem; letter-spacing: -0.015em; }
.phone-dashboard-card header > span { color: rgba(23, 24, 21, 0.48); font-size: 0.49rem; }

.phone-card-icon {
  position: relative;
  width: 16px;
  height: 16px;
  display: block;
  flex: 0 0 auto;
  border: 1.5px solid currentColor;
  font-style: normal;
}

.phone-card-icon--calendar { border-radius: 3px; }
.phone-card-icon--calendar::before { content: ""; position: absolute; top: 3px; left: 0; right: 0; border-top: 1.5px solid currentColor; }
.phone-card-icon--calendar::after { content: ""; position: absolute; top: -3px; left: 3px; width: 7px; height: 4px; border-right: 1.5px solid currentColor; border-left: 1.5px solid currentColor; }
.phone-card-icon--task { border-radius: 50%; }
.phone-card-icon--task::after { content: "✓"; position: absolute; inset: -2px 0 0; display: grid; place-items: center; font-size: 0.55rem; font-weight: 800; }
.phone-card-icon--finance { height: 12px; margin-top: 1px; border-radius: 3px; }
.phone-card-icon--finance::after { content: "••"; position: absolute; inset: -5px 0 0; display: grid; place-items: center; font-size: 0.55rem; letter-spacing: 1px; }

.phone-agenda-row {
  display: grid;
  grid-template-columns: 7px 1fr auto;
  align-items: center;
  gap: 7px;
  padding-top: 8px;
}

.phone-agenda-row > i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
}

.phone-agenda-row > span,
.phone-finance-row > span { display: grid; gap: 1px; min-width: 0; }
.phone-agenda-row strong,
.phone-finance-row strong { overflow: hidden; font-size: 0.58rem; text-overflow: ellipsis; white-space: nowrap; }
.phone-agenda-row small,
.phone-finance-row small { color: rgba(23, 24, 21, 0.5); font-size: 0.48rem; }
.phone-agenda-row > b { color: rgba(23, 24, 21, 0.58); font-size: 0.48rem; font-weight: 550; line-height: 1.2; text-align: right; }

.phone-dashboard-card--tasks { padding-bottom: 8px; }

.phone-task-row {
  display: grid;
  grid-template-columns: 13px 1fr auto;
  align-items: center;
  gap: 7px;
  padding: 6px 0;
  border-top: 1px solid rgba(23, 24, 21, 0.08);
  font-size: 0.56rem;
}

.phone-task-row:first-of-type { margin-top: 5px; }

.phone-task-row > i {
  width: 12px;
  height: 12px;
  border: 1.4px solid rgba(23, 24, 21, 0.5);
  border-radius: 50%;
}

.phone-task-row > b { color: rgba(23, 24, 21, 0.48); font-size: 0.47rem; font-weight: 550; }

.phone-dashboard-card--finance { padding-bottom: 9px; }

.phone-help {
  width: 14px;
  height: 14px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(23, 24, 21, 0.3);
  border-radius: 50%;
}

.phone-finance-total {
  margin: 8px 0 3px;
  font-size: 0.59rem;
}

.phone-finance-total strong { color: #3e9b5d; font-size: 0.72rem; font-variant-numeric: tabular-nums; }

.phone-finance-row {
  display: grid;
  grid-template-columns: 15px minmax(0, 1fr) auto;
  align-items: center;
  gap: 6px;
  padding-top: 7px;
}

.phone-finance-row > i { color: #3e9b5d; font-size: 0.9rem; font-style: normal; font-weight: 450; }
.phone-finance-row > b { color: #3e9b5d; font-size: 0.53rem; font-variant-numeric: tabular-nums; white-space: nowrap; }

.phone-nav--real {
  right: 9px;
  bottom: 9px;
  left: 9px;
  min-height: 58px;
  padding: 5px 6px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 254, 250, 0.96);
  box-shadow: 0 7px 22px rgba(23, 24, 21, 0.12), inset 0 0 0 1px rgba(23, 24, 21, 0.05);
  backdrop-filter: blur(8px);
}

.phone-nav--real span {
  height: 48px;
  align-content: center;
  border-radius: 999px;
  color: rgba(23, 24, 21, 0.76);
  font-size: inherit;
}

.phone-nav--real small { display: block; font-size: 0.45rem; }

.phone-nav--real .is-active {
  width: auto;
  height: 48px;
  justify-self: stretch;
  border-radius: 999px;
  background: rgba(23, 24, 21, 0.08);
  color: var(--ink);
  font-size: inherit;
}

.phone-nav-icon {
  position: relative;
  width: 17px;
  height: 17px;
  display: block;
  font-style: normal;
}

.phone-nav-icon--home { border: 1.4px solid currentColor; border-radius: 3px; }
.phone-nav-icon--home::before,
.phone-nav-icon--home::after { content: ""; position: absolute; background: currentColor; }
.phone-nav-icon--home::before { top: 7px; left: -1px; width: 17px; height: 1.4px; }
.phone-nav-icon--home::after { top: -1px; left: 7px; width: 1.4px; height: 17px; }
.phone-nav-icon--projects { border: 1.5px solid currentColor; border-radius: 3px 3px 5px 5px; }
.phone-nav-icon--projects::before { content: ""; position: absolute; top: -4px; left: 4px; width: 7px; height: 4px; border: 1.5px solid currentColor; border-bottom: 0; border-radius: 3px 3px 0 0; }
.phone-nav-icon--tasks { background: repeating-linear-gradient(to bottom, currentColor 0 1.5px, transparent 1.5px 5px); }
.phone-nav-icon--tasks::before { content: "✓"; position: absolute; left: -6px; top: -4px; font-size: 0.58rem; line-height: 5px; white-space: pre; }
.phone-nav-icon--agenda { border: 1.5px solid currentColor; border-radius: 3px; }
.phone-nav-icon--agenda::before { content: ""; position: absolute; top: 4px; left: 0; right: 0; border-top: 1.5px solid currentColor; }
.phone-nav-icon--more { background: repeating-linear-gradient(to bottom, currentColor 0 1.5px, transparent 1.5px 6px); }

/* Controles do app: SVGs com a mesma grade e o mesmo centro óptico. */
.phone-tools { gap: 2px; }

.phone-tool {
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  color: rgba(23, 24, 21, 0.92);
}

.phone-tool::before,
.phone-tool::after,
.phone-nav-icon::before,
.phone-nav-icon::after { content: none; }

.phone-tool svg,
.phone-action-icon svg,
.phone-nav-icon svg {
  width: 100%;
  height: 100%;
  display: block;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.phone-tool svg { width: 20px; height: 20px; }

.phone-tool--bell b {
  top: -1px;
  right: -1px;
  width: 14px;
  height: 14px;
  font-size: 0.44rem;
  box-shadow: 0 0 0 2px var(--paper);
}

.phone-quick-actions {
  gap: 7px;
  margin-right: -14px;
}

.phone-quick-actions > span {
  min-width: 113px;
  min-height: 39px;
  gap: 7px;
  padding: 0 13px 0 11px;
  border-radius: 11px;
  background: rgba(255, 254, 250, 0.82);
  box-shadow:
    inset 0 0 0 1px rgba(23, 24, 21, 0.13),
    0 1px 2px rgba(23, 24, 21, 0.05);
  font-size: 0.63rem;
}

.phone-action-icon {
  width: 18px;
  height: 18px;
  border: 0;
  border-radius: 0;
}

.phone-action-icon::before,
.phone-action-icon::after { content: none; }

.phone-nav--real {
  right: 9px;
  bottom: 9px;
  left: 9px;
  min-height: 58px;
  padding: 4px;
  border-radius: 22px;
  background: rgba(255, 254, 250, 0.97);
  box-shadow:
    0 0 0 1px rgba(23, 24, 21, 0.05),
    0 6px 18px rgba(23, 24, 21, 0.1);
}

.phone-nav--real span,
.phone-nav--real .is-active {
  width: auto;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  justify-self: stretch;
  flex-direction: column;
  gap: 3px;
  border-radius: 18px;
  font-size: inherit;
  line-height: 1;
}

.phone-nav--real span { color: rgba(23, 24, 21, 0.58); }

.phone-nav--real .is-active {
  background: rgba(23, 24, 21, 0.08);
  color: var(--ink);
}

.phone-nav-icon {
  width: 18px;
  height: 18px;
  border: 0;
  border-radius: 0;
  background: none;
}

.phone-nav--real small {
  display: block;
  font-size: 0.42rem;
  font-weight: 530;
  line-height: 1;
}

.mobile-float {
  position: absolute;
  z-index: 4;
  width: min(250px, 34vw);
  display: grid;
  gap: 5px;
  padding: 18px;
  border-radius: var(--radius-card);
  background: var(--card-paper);
  color: var(--ink);
  outline: 1px solid rgba(0, 0, 0, 0.1);
  outline-offset: -1px;
}

.mobile-float strong { font-size: 0.92rem; line-height: 1.05; }
.mobile-float span { color: rgba(23, 24, 21, 0.55); font-size: 0.65rem; }

.mobile-float--agenda {
  top: 10%;
  left: 0;
  box-shadow: 12px 13px 0 var(--shadow-green);
  transform: rotate(-4deg);
}

.mobile-float--finance {
  right: 0;
  bottom: 10%;
  box-shadow: 12px 13px 0 var(--shadow-green);
  transform: rotate(4deg);
}

.mobile-footnote {
  grid-column: 1 / -1;
  margin: 0;
  border-top-color: var(--line-light);
  color: rgba(255, 254, 250, 0.62);
}

/* ==========================================================================
   TESTIMONIALS SECTION (Granola 1:1 inspired sharp outlined cards)
   ========================================================================== */
.testimonials.art-panel,
.testimonials {
  min-height: 0 !important;
  padding-top: clamp(56px, 6.5vw, 96px);
  padding-bottom: clamp(56px, 6.5vw, 96px);
  background: #20211f;
  color: var(--white);
  overflow: hidden;
}

.testimonials-heading {
  position: relative;
  z-index: 2;
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.testimonials-kicker {
  display: none;
}

.testimonials-heading h2 {
  margin: 0;
  font-family: var(--font-condensed);
  font-size: var(--fs-section-display);
  font-weight: 600;
  line-height: 0.88;
  letter-spacing: -0.065em;
  text-transform: uppercase;
  color: var(--white);
}

.testimonials-heading h2 em {
  font-style: normal;
  font-weight: 400;
  color: rgba(255, 254, 250, 0.65);
}

.testimonials-stage {
  position: relative;
  z-index: 2;
  width: 100%;
  margin-top: clamp(20px, 2.5vw, 36px);
}

.testimonials-carousel {
  display: flex;
  gap: clamp(20px, 3vw, 36px);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding-left: max(var(--gutter), calc((100vw - var(--content-max)) / 2));
  scroll-padding-right: max(var(--gutter), calc((100vw - var(--content-max)) / 2));
  padding-left: max(var(--gutter), calc((100vw - var(--content-max)) / 2));
  padding-right: max(var(--gutter), calc((100vw - var(--content-max)) / 2));
  padding-top: 4px;
  padding-bottom: 12px;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  cursor: grab;
  user-select: none;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.testimonials-carousel::-webkit-scrollbar {
  display: none;
}

.testimonials-carousel.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
}

.testimonials-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}

.testimonials-nav {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
  cursor: pointer;
  transition: background-color 180ms ease, border-color 180ms ease, opacity 180ms ease, transform 140ms ease;
}

.testimonials-nav:hover:not(:disabled) {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.6);
}

.testimonials-nav:active:not(:disabled) {
  transform: scale(0.94);
}

.testimonials-nav:disabled {
  opacity: 0.25;
  cursor: default;
}

.testimonial-card {
  flex: 0 0 clamp(480px, 52vw, 660px);
  scroll-snap-align: start;
  scroll-margin-left: max(var(--gutter), calc((100vw - var(--content-max)) / 2));
  min-height: 300px;
  padding: clamp(28px, 3.5vw, 44px);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: clamp(20px, 3vw, 36px);
  align-items: space-between;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 0;
  background: transparent;
  color: var(--white);
  box-shadow: none;
  transition: border-color 200ms ease;
}

.testimonial-card:hover {
  border-color: rgba(255, 255, 255, 0.6);
}

.testimonial-card__content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.testimonial-card__quote {
  margin: 0;
  font-family: var(--font-main);
  font-size: clamp(1.25rem, 1.8vw, 1.65rem);
  font-style: normal;
  font-weight: 400;
  line-height: 1.32;
  letter-spacing: -0.02em;
  color: rgba(255, 254, 250, 0.95);
}

.testimonial-card__quote::before {
  content: "“";
  font-family: Georgia, serif;
  font-size: 1.15em;
  margin-right: 2px;
}

.testimonial-card__quote::after {
  content: "”";
  font-family: Georgia, serif;
  font-size: 1.15em;
  margin-left: 2px;
}

.testimonial-card__author {
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin-top: 24px;
}

.testimonial-card__author strong {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--white);
}

.testimonial-card__author span {
  font-size: 0.78rem;
  color: rgba(255, 254, 250, 0.65);
}

.testimonial-card__avatar {
  width: clamp(130px, 14vw, 185px);
  aspect-ratio: 4 / 5;
  flex: 0 0 auto;
  border-radius: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  align-self: flex-start;
}

.testimonial-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) contrast(1.08);
}

.testimonials-footnote {
  max-width: 980px;
  margin: clamp(24px, 3vw, 40px) auto 0;
  text-align: center;
  color: rgba(255, 254, 250, 0.5);
}

.pricing {
  min-height: 100svh;
  padding-top: clamp(64px, 7vw, 104px);
  padding-bottom: clamp(64px, 7vw, 104px);
  background: var(--paper);
}

.pricing-heading {
  position: relative;
  z-index: 2;
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.pricing-kicker { margin-bottom: 24px; }

.pricing-heading h2 {
  margin: 0;
  font-family: var(--font-condensed);
  font-size: var(--fs-section-display);
  font-weight: 600;
  line-height: 0.88;
  letter-spacing: -0.065em;
  text-transform: uppercase;
}

.pricing-heading h2 em {
  font-style: normal;
  font-weight: 400;
  color: var(--ink);
}

.pricing-heading > p:not(.pricing-kicker) {
  max-width: 650px;
  margin: 28px auto 0;
  font-size: var(--fs-section-copy);
  line-height: var(--lh-section-copy);
}

.billing-toggle {
  display: inline-flex;
  align-items: stretch;
  gap: 4px;
  margin-top: 30px;
  padding: 4px;
  border: 1px solid rgba(23, 24, 21, 0.14);
  border-radius: 16px;
  background: rgba(255, 254, 250, 0.28);
}

.billing-toggle__option {
  min-height: 46px;
  padding: 0 18px;
  border: 0;
  border-radius: 12px;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-weight: 550;
  cursor: pointer;
  transition: background-color 180ms ease, color 180ms ease, transform 140ms ease;
}

.billing-toggle__option span {
  display: inline-block;
  margin-left: 6px;
  font-size: 0.72rem;
  color: var(--green);
}

.billing-toggle__option.is-active {
  background: var(--white);
  box-shadow: 0 1px 0 rgba(23, 24, 21, 0.08), 0 5px 16px rgba(23, 24, 21, 0.08);
}

.billing-toggle__option:active { transform: scale(0.97); }

.billing-toggle__option:focus-visible {
  outline-color: var(--ink);
  outline-offset: 2px;
}

.pricing-stage {
  position: relative;
  z-index: 2;
  width: min(1180px, 100%);
  min-height: 520px;
  margin: clamp(20px, 3.5vw, 36px) auto 0;
  display: grid;
  place-items: center;
}

.pricing-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: clamp(14px, 2vw, 26px);
  width: min(1060px, calc(100% - 8vw));
}

.pricing-card {
  position: relative;
  min-height: 410px;
  padding: clamp(22px, 2.6vw, 32px);
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(23, 24, 21, 0.12);
  border-radius: 18px;
  background: rgba(255, 254, 250, 0.95);
  box-shadow: 8px 9px 0 rgba(23, 24, 21, 0.2);
}

.pricing-card--featured {
  color: var(--white);
  background: var(--ink);
  box-shadow: 10px 12px 0 var(--shadow-green);
}

.pricing-card__badge {
  position: absolute;
  top: -14px;
  left: 22px;
  padding: 8px 12px;
  border-radius: 9px;
  background: var(--green);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.pricing-card header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding-bottom: 18px;
  border-bottom: 1px solid currentColor;
}

.pricing-card header p,
.pricing-card header span {
  margin: 0;
}

.pricing-card header span { opacity: 1; }

.pricing-card h3 {
  margin: 28px 0 12px;
  font-size: clamp(1.55rem, 2.2vw, 2rem);
  line-height: 1;
  letter-spacing: -0.045em;
}

.pricing-card__copy {
  max-width: 29ch;
  margin: 0;
  opacity: 0.72;
}

.pricing-card__highlights {
  margin: 24px 0 28px;
  padding: 0;
  display: grid;
  gap: 10px;
  list-style: none;
}

.pricing-card__highlights li {
  display: grid;
  grid-template-columns: 20px 1fr;
  align-items: center;
  gap: 9px;
  font-size: 0.84rem;
  line-height: 1.35;
  opacity: 0.78;
}

.pricing-card__highlights li span {
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--green);
  background: rgba(82, 121, 111, 0.12);
  font-size: 0.68rem;
  font-weight: 700;
}

.pricing-card--featured .pricing-card__highlights li span {
  color: var(--green-soft);
  background: rgba(184, 213, 204, 0.13);
}

.pricing-card__price {
  display: flex;
  align-items: baseline;
  gap: 5px;
  margin: auto 0 22px;
  padding-top: 20px;
  white-space: nowrap;
}

.pricing-card__price > span {
  font-size: 1rem;
  font-weight: 600;
}

.pricing-card__price strong {
  font-size: clamp(3.2rem, 5vw, 4.9rem);
  line-height: 0.78;
  letter-spacing: -0.065em;
  font-variant-numeric: tabular-nums;
}

.pricing-card__price small { opacity: 0.62; }

.pricing-card > a {
  min-height: 50px;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid currentColor;
  border-radius: var(--radius-inner);
  color: inherit;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 180ms ease, color 180ms ease, transform 140ms ease;
}

.pricing-card:not(.pricing-card--featured) > a:hover {
  color: var(--white);
  background: var(--ink);
}

.pricing-card--featured > a {
  border-color: var(--white);
  color: var(--ink);
  background: var(--white);
}

.pricing-card > a:active { transform: scale(0.96); }

.pricing-card:not(.pricing-card--featured) > a:focus-visible {
  outline-color: var(--ink);
}

.pricing-card--featured > a:focus-visible {
  outline-color: var(--yellow);
}

.pricing-footnote {
  position: relative;
  z-index: 2;
  margin: 38px 0 0;
}

.site-footer {
  min-height: 330px;
  display: grid;
  grid-template-columns: minmax(220px, 0.75fr) minmax(520px, 1.5fr);
  align-items: start;
  gap: 48px;
  padding:
    40px
    max(var(--gutter), calc((100vw - var(--content-max)) / 2));
  background: var(--ink);
  color: var(--white);
}

.footer-intro {
  display: grid;
  align-content: start;
  gap: 20px;
}

.footer-brand { width: max-content; }

.site-footer p {
  margin: 0;
  color: rgba(255,254,250,0.66);
  font-size: 0.85rem;
}

.site-footer .footer-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(130px, 1fr));
  gap: 28px;
}

.footer-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-group strong {
  margin-bottom: 10px;
  color: rgba(255, 254, 250, 0.48);
  font-size: 0.65rem;
  font-weight: 650;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-group a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  color: rgba(255, 254, 250, 0.86);
  font-size: 0.78rem;
  text-wrap: pretty;
  transition-property: color;
  transition-duration: 160ms;
}

.footer-group a:hover,
.footer-group a:focus-visible {
  color: var(--white);
}

.site-footer > span {
  grid-column: 1 / -1;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.16);
  color: rgba(255,255,255,0.48);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
}

.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  filter: blur(4px);
  transition-property: opacity, transform, filter;
  transition-duration: 560ms;
  transition-timing-function: cubic-bezier(0.2, 0, 0, 1);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.js .hero .reveal:nth-of-type(1) { transition-delay: 0ms; }
.js .hero .hero-title { transition-delay: 80ms; }
.js .hero .hero-copy { transition-delay: 160ms; }
.js .hero .hero-actions { transition-delay: 240ms; }
.js .hero .hero-dashboard { transition-delay: 180ms; }
.js .hero-dashboard .hero-dashboard__float {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 420ms ease-out, transform 420ms cubic-bezier(0.2, 0, 0, 1);
}
.js .hero-dashboard.is-visible .hero-dashboard__float {
  opacity: 1;
  transform: translateY(0);
}
.js .hero-dashboard.is-visible .hero-dashboard__float--event { transition-delay: 360ms; }
.js .hero-dashboard.is-visible .hero-dashboard__float--attention { transition-delay: 450ms; }
.js .hero-dashboard.is-visible .hero-dashboard__float--finance { transition-delay: 540ms; }
.js .backstage-grid .reveal:nth-child(1) { transition-delay: 0ms; }
.js .backstage-grid .reveal:nth-child(2) { transition-delay: 90ms; }
.js .backstage-grid .reveal:nth-child(3) { transition-delay: 140ms; }

@media (max-width: 1050px) {
  .hero {
    grid-template-columns: minmax(310px, 400px) minmax(470px, 620px);
    column-gap: 30px;
  }

  .hero-title {
    font-size: clamp(4.1rem, 7.8vw, 6rem);
  }

  .hero-dashboard {
    min-height: 560px;
  }

  .hero-dashboard__window {
    grid-template-columns: 132px minmax(0, 1fr);
  }

  .hero-dashboard__sidebar {
    padding-inline: 7px;
  }

  .hero-dashboard__menu {
    font-size: 0.43rem;
  }

  .hero-dashboard__float--attention {
    display: none;
  }

  .project-story__intro {
    grid-template-columns: 1fr 0.38fr;
  }

  .workspace-note {
    right: -16px;
  }

  .client-grid {
    grid-template-columns: 0.8fr 1.2fr;
  }
}

@media (max-width: 820px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .site-nav { display: none; }

  .mobile-resources-trigger { display: inline-flex; align-items: center; }

  .header-login { display: none !important; }

  .header-actions {
    gap: 22px;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    padding-top: 106px;
  }

  .hero-copy-stack,
  .hero-kicker,
  .hero-title,
  .hero-copy,
  .hero-actions,
  .waitlist-form,
  .hero-dashboard,
  .hero-footnote {
    grid-column: 1;
    grid-row: auto;
  }

  .hero-title {
    font-size: clamp(4rem, 14vw, 7.2rem);
  }

  .hero-title span:nth-child(2) { padding-left: 0; }

  .hero-dashboard {
    width: 100%;
    max-width: 780px;
    min-height: 570px;
    margin: 44px auto 0;
    justify-self: center;
  }

  .hero-dashboard__float--attention {
    display: flex;
  }

  .project-story__intro,
  .production-header {
    grid-template-columns: 1fr;
  }

  .project-benefits {
    grid-column: 1;
    grid-row: auto;
    margin: 18px 0 0;
  }

  .workspace-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .workspace-card--client,
  .workspace-card--activity {
    grid-column: auto;
    grid-row: auto;
  }

  .workspace-card--activity { grid-column: 1 / -1; }

  .project-mock {
    min-height: 700px;
  }

  .project-mock__dashboard {
    grid-template-columns: 0.72fr 1.65fr;
  }

  .project-mock__right {
    display: none;
  }

  .production-header__copy {
    margin: 20px 0 0;
  }

  .production-board {
    width: calc(100% - 22px);
  }

  .workflow-board-toolbar {
    grid-template-columns: 1fr auto;
  }

  .workflow-board-toolbar > b {
    display: none;
  }

  .workflow-lane {
    grid-template-columns: 140px minmax(0, 1fr);
    gap: 8px;
  }

  .workflow-matrix__phases,
  .workflow-matrix__steps,
  .workflow-matrix__row {
    gap: 3px;
  }

  .workflow-matrix__steps span {
    font-size: 0.4rem;
  }

  .client-grid {
    grid-template-columns: 1fr;
  }

  .client-copy {
    min-height: 410px;
  }

  .proposal-art {
    min-height: 560px;
  }

  .client-header {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .client-header-copy {
    max-width: 520px;
    margin: 0;
  }

  .feature-card--contract,
  .feature-card--schedule,
  .feature-card--finance,
  .feature-card--delivery {
    grid-column: 1 / -1;
  }

  .feature-card {
    min-height: 480px;
  }

  .schedule-mock {
    grid-template-columns: minmax(150px, 0.7fr) minmax(260px, 1.3fr);
  }

  .backstage-header {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .backstage-header > p {
    max-width: 520px;
    margin: 0;
  }

  .backstage-story {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .backstage-story__rail {
    position: sticky;
    z-index: 18;
    top: 64px;
    margin-inline: calc(var(--gutter) * -1);
    padding: 0 var(--gutter);
    background: rgba(255, 254, 250, 0.94);
    backdrop-filter: blur(14px);
    box-shadow: 0 1px 0 rgba(23, 24, 21, 0.12);
  }

  .backstage-story__rail nav {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-top: 0;
  }

  .backstage-story__rail a {
    min-height: 56px;
    grid-template-columns: 1fr auto;
    gap: 8px;
    padding-inline: 8px;
    border-bottom: 0;
    font-size: 0.68rem;
    text-align: center;
  }

  .backstage-story__rail a > span { display: none; }

  .backstage-step { scroll-margin-top: 132px; }

  .backstage-card--discussion,
  .backstage-card--equipment,
  .backstage-card--partners {
    grid-column: 1 / -1;
  }

  .backstage-card--discussion,
  .backstage-card--equipment,
  .backstage-card--partners { min-height: 630px; }

  .equipment-mock {
    width: min(680px, 94%);
    margin-right: auto;
    margin-left: auto;
  }

  .discussion-demo {
    width: min(680px, calc(100% - 36px));
    margin-inline: auto;
  }

  .supplier-panel {
    left: 2%;
    width: 70%;
  }

  .iphone-mock {
    top: 92px;
    right: -1%;
    width: 44%;
  }

  .mobile {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    gap: 48px;
  }

  .mobile-copy {
    max-width: 720px;
  }

  .mobile-copy h2 {
    font-size: clamp(4.6rem, 14vw, 8rem);
  }

  .mobile-stage {
    min-height: 520px;
  }

  .mobile-backdrop {
    width: min(75vw, 520px);
  }

  .phone-shell {
    width: min(290px, 54vw);
    height: 520px;
  }

  .mobile-float {
    width: min(240px, 38vw);
  }

  .mobile-footnote {
    grid-column: 1;
  }

  .pricing-stage {
    min-height: 0;
    padding: 58px 0;
  }

  .pricing-grid {
    width: min(540px, calc(100% - 12vw));
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .pricing-card,
  .pricing-card--featured {
    min-height: 390px;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  :root {
    --gutter: 16px;
    --mega-menu-top: 64px;
  }

  .site-header {
    min-height: 64px;
    padding: 8px var(--gutter);
    mix-blend-mode: normal;
    background: var(--header-bg);
    color: var(--header-fg);
  }

  .header-brand img {
    width: 26px;
    height: 26px;
  }

  .header-brand__name { font-size: 0.82rem; }

  .header-actions {
    gap: 12px;
    font-size: 0.72rem;
  }

  .art-panel {
    min-height: auto;
    padding-top: 112px;
    padding-bottom: 64px;
  }

  .hero {
    min-height: 100svh;
    padding-top: 116px;
  }

  .hero-kicker { max-width: 60%; }

  .hero-title {
    margin-top: 12px;
    font-size: clamp(3.6rem, 18vw, 5.4rem);
    line-height: 0.8;
  }

  .hero-title span:nth-child(2),
  .hero-title span:nth-child(3) { padding-left: 0; }

  .hero-copy {
    margin-top: 34px;
    font-size: var(--fs-section-copy);
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 10px;
  }

  .art-button { width: 100%; }
  .underlined-link { width: max-content; }

  .waitlist-form__fields {
    grid-template-columns: 1fr;
  }

  .waitlist-form button {
    width: 100%;
  }

  .hero-dashboard {
    min-height: 470px;
    margin-top: 38px;
  }

  .hero-dashboard__plate {
    inset: 44px 10px 30px 18px;
    box-shadow: 14px 14px 0 var(--shadow-green);
  }

  .hero-dashboard__window {
    inset: 58px 0 48px;
    grid-template-columns: 1fr;
    border-radius: 17px;
  }

  .hero-dashboard__topbar {
    height: 42px;
    padding-inline: 14px;
  }

  .hero-dashboard__sidebar {
    display: none;
  }

  .hero-dashboard__main::before {
    display: none;
  }

  .hero-dashboard__content {
    padding: 10px;
  }

  .hero-dashboard__quick-actions {
    overflow: hidden;
  }

  .hero-dashboard__quick-actions span {
    min-width: max-content;
  }

  .hero-dashboard__cards {
    height: calc(100% - 82px);
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-dashboard__card--finance {
    display: none;
  }

  .hero-dashboard__float {
    width: 156px;
    padding: 11px 12px;
  }

  .hero-dashboard__float--event {
    top: 18px;
    left: 8px;
  }

  .hero-dashboard__float--attention {
    display: none;
  }

  .hero-dashboard__float--finance {
    right: 4px;
    bottom: 12px;
  }

  .hero-footnote {
    margin-top: 12px;
    line-height: 1.5;
  }

  .project-story__intro h2,
  .production-header h2,
  .client-header h2 {
    font-size: clamp(3.3rem, 15vw, 5rem);
    line-height: 0.86;
  }

  .project-story { min-height: auto; }

  .workspace-collage {
    width: 116%;
    margin-left: -8%;
  }

  .workspace-topbar {
    min-height: 72px;
    padding: 13px;
  }

  .workspace-tags span:not(:first-child) { display: none; }

  .workspace-progress { padding: 13px 7px; }
  .workspace-progress span { font-size: 0.48rem; }

  .workspace-grid {
    grid-template-columns: 1fr 1fr;
    gap: 7px;
    padding: 8px;
  }

  .workspace-card { padding: 12px; }
  .workspace-card--client { display: none; }

  .project-mock {
    min-height: 640px;
  }

  .project-mock__header {
    min-height: 104px;
    padding: 20px 18px 12px;
  }

  .project-mock__identity strong {
    font-size: 1.08rem;
  }

  .project-mock__owner,
  .project-mock__actions > b {
    display: none !important;
  }

  .project-mock__actions > span {
    min-height: 28px;
    padding: 0 9px;
    font-size: 0.5rem;
  }

  .project-mock__workflow {
    padding: 0 10px 12px;
  }

  .workflow-phases {
    grid-template-columns: 1fr 1fr;
  }

  .workflow-phases strong:last-child {
    display: none;
  }

  .workflow-items {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 4px;
  }

  .workflow-item:nth-child(n + 5) {
    display: none;
  }

  .workflow-item > div {
    height: 35px;
  }

  .project-mock__dashboard {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 9px;
  }

  .project-mock__left,
  .project-mock__right {
    display: none;
  }

  .project-mock__main {
    gap: 8px;
  }

  .project-mock-card {
    padding: 12px;
  }

  .project-event,
  .project-finance {
    min-height: 96px;
  }

  .project-task__head,
  .project-task__row {
    grid-template-columns: 18px 1.6fr 1fr 0.8fr;
  }

  .project-task__head span:last-child,
  .project-task__row > b {
    display: none;
  }

  .workspace-note {
    right: 0;
    bottom: -72px;
    width: 160px;
    padding: 15px;
    gap: 8px;
    font-size: 1.3rem;
  }

  .production { padding-top: 112px; }

  .production-board {
    --production-art-offset-x: 12px;
    --production-art-offset-y: 14px;
    width: calc(100% - 12px);
    margin-top: 58px;
    padding: 10px;
    box-shadow: 12px -12px 0 var(--shadow-green);
  }

  .workflow-overview {
    overflow: hidden;
  }

  .workflow-board-toolbar {
    grid-template-columns: 1fr;
    min-height: 58px;
    padding: 3px 3px 11px;
  }

  .workflow-view-tabs {
    display: none;
  }

  .workflow-board-scroll {
    margin-right: -10px;
    padding-right: 10px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scrollbar-width: none;
  }

  .workflow-board-scroll::-webkit-scrollbar {
    display: none;
  }

  .workflow-lane {
    min-width: 720px;
    grid-template-columns: 112px minmax(0, 1fr);
    gap: 7px;
    padding: 12px 0;
  }

  .workflow-lane__people > header {
    min-height: 63px;
    padding-left: 4px;
  }

  .workflow-lane__people > div {
    padding-left: 4px;
  }

  .workflow-matrix__steps {
    min-height: 40px;
  }

  .workflow-matrix__row,
  .workflow-lane__people > div {
    min-height: 54px;
  }

  .workflow-matrix__row > span,
  .workflow-cell-anchor,
  .workflow-cell {
    min-height: 46px;
  }

  .workflow-cell {
    height: 46px;
  }

  .workflow-status-popover {
    width: 172px;
  }

  .workflow-subtasks-popover {
    width: 240px;
  }

  .board-heading strong { font-size: 1rem; }
  .board-heading > span { display: none; }

  .board-columns {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .board-column + .board-column {
    border-top: 1px solid var(--line-dark);
    border-left: 0;
  }

  .board-column article {
    min-height: 104px;
  }

  .board-column article + article { display: none; }

  .production-aside {
    grid-template-columns: 1fr;
  }

  .production-aside strong {
    font-size: clamp(3.8rem, 16vw, 5rem);
    text-align: left;
  }

  .client-copy { min-height: 400px; }

  .proposal-art { min-height: 480px; }
  .proposal-shadow,
  .proposal-page { width: 78%; }
  .proposal-page { min-height: 390px; padding: 20px; }
  .proposal-photo { height: 150px; }
  .proposal-label { right: 9px; bottom: 14px; width: 92px; height: 92px; }

  .client-mini { min-height: 310px; }

  .feature-bento {
    gap: 12px;
    margin-top: 48px;
  }

  .feature-card {
    min-height: 0;
    padding: 20px;
  }

  .feature-card__header h3 {
    font-size: clamp(2.1rem, 11vw, 3.2rem);
  }

  .backstage {
    padding-top: 100px;
  }

  .backstage-header h2 {
    font-size: clamp(2.9rem, 12vw, 4rem);
    line-height: 0.86;
  }

  .backstage-grid {
    gap: 42px;
    margin-top: 0;
  }

  .backstage-card {
    grid-template-columns: 1fr;
    gap: 10px;
    min-height: 0;
    padding: 10px;
    border-radius: 18px;
  }

  .backstage-card--discussion,
  .backstage-card--equipment,
  .backstage-card--partners { min-height: 0; }

  .backstage-card__summary {
    min-height: 300px;
    gap: 30px;
    padding: 26px 24px;
  }

  .backstage-card__summary strong {
    max-width: 280px;
    font-size: clamp(1.7rem, 8vw, 2.35rem);
  }

  .backstage-card__summary p {
    max-width: 290px;
    font-size: 0.92rem;
  }

  .backstage-card--discussion .backstage-card__visual { min-height: 600px; }
  .backstage-card--equipment .backstage-card__visual { min-height: 720px; }
  .backstage-card--partners .backstage-card__visual { min-height: 720px; }

  .equipment-mock {
    width: calc(100% - 10px);
    margin-top: 34px;
    margin-right: auto;
    margin-left: auto;
    box-shadow: 10px 12px 0 var(--shadow-green);
  }

  .discussion-demo {
    width: calc(100% - 20px);
    height: 580px;
    max-height: none;
    min-height: 580px;
    margin: 10px auto;
  }

  .discussion-panel { min-height: 580px; }

  .backstage-float--kit {
    right: 14px;
    bottom: 18px;
  }

  .equipment-mock__body { grid-template-columns: 1fr; }
  .equipment-checklist {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 10px;
    padding: 15px;
    border-top: 1px solid rgba(23, 24, 21, 0.1);
    border-left: 0;
  }
  .equipment-checklist > small { grid-column: 1 / -1; }
  .equipment-checklist p { margin: 10px 0 0; }

  .partner-stage {
    min-height: 700px;
    margin: 0;
  }

  .supplier-panel {
    position: absolute;
    top: 32px;
    left: 18px;
    width: calc(100% - 36px);
    min-height: 510px;
    padding: 9px;
    transform: none;
  }

  .freelancer-admin-card { padding: 13px; }
  .freelancer-contact { gap: 7px 12px; }

  .iphone-mock {
    top: 188px;
    right: -7%;
    width: 72%;
  }

  .backstage-float--calendar {
    right: auto;
    bottom: 18px;
    left: 18px;
    min-width: 172px;
  }

  .backstage-footnote { line-height: 1.5; }

  .contract-mock,
  .schedule-mock,
  .finance-mock,
  .gallery-mock {
    margin-top: 32px;
  }

  .contract-mock {
    width: calc(100% - 10px);
    padding: 16px;
    box-shadow: 10px 12px 0 var(--shadow-green);
  }

  .contract-file > b { display: none; }

  .schedule-mock {
    grid-template-columns: 1fr;
  }

  .schedule-details,
  .schedule-calendar {
    grid-column: 1;
    grid-row: auto;
  }

  .finance-mock__nav span { display: none; }

  .finance-stats {
    grid-template-columns: 1fr;
  }

  .finance-stats > div {
    grid-template-columns: 1fr auto;
    align-items: center;
  }

  .gallery-mock {
    min-height: 350px;
  }

  .gallery-grid-mock {
    height: 290px;
    grid-template-columns: 1fr 1fr;
  }

  .gallery-shot--2 { grid-row: auto; }
  .gallery-shot--5 { display: block; }

  .gallery-download {
    right: 18px;
    bottom: 18px;
    width: min(220px, 72%);
    padding: 13px;
  }

  .mobile {
    gap: 32px;
  }

  .mobile-copy h2 {
    margin-top: 14px;
    font-size: clamp(3.6rem, 17vw, 5.2rem);
    line-height: 0.82;
  }

  .mobile-copy > h2 + p {
    margin-top: 32px;
    font-size: var(--fs-section-copy);
  }

  .mobile-stage {
    width: calc(100% + 12px);
    min-height: 460px;
    margin-left: -6px;
  }

  .mobile-backdrop {
    width: 100vw;
  }

  .phone-shell {
    width: 240px;
    height: 470px;
    padding: 8px;
    border-radius: 36px;
    box-shadow: 14px 15px 0 var(--shadow-green);
  }

  .phone-shell::before {
    top: 15px;
    width: 76px;
    height: 19px;
  }

  .phone-screen {
    border-radius: 31px;
  }

  .phone-home {
    padding: 17px 13px 72px;
  }

  .phone-attention {
    margin-top: 14px;
    padding: 12px;
    box-shadow: 7px 8px 0 var(--shadow-green);
  }

  .phone-attention p {
    padding: 6px 0;
  }

  .phone-section-title {
    margin-top: 19px;
  }

  .phone-project {
    padding: 9px;
  }

  .phone-nav {
    min-height: 58px;
  }

  .phone-nav small {
    display: none;
  }

  .phone-dashboard {
    padding: 12px 10px 64px;
  }

  .phone-tools { gap: 1px; }
  .phone-tool { width: 26px; height: 26px; transform: none; }
  .phone-tool svg { width: 18px; height: 18px; }
  .phone-studio { gap: 5px; }
  .phone-studio > i { width: 28px; height: 28px; }
  .phone-studio strong { max-width: 82px; font-size: 0.64rem; }

  .phone-greeting {
    margin: 15px 0 10px;
    font-size: 1.05rem;
  }

  .phone-quick-actions { gap: 5px; margin-right: -10px; }
  .phone-quick-actions > span { min-width: 99px; min-height: 34px; gap: 5px; padding: 0 9px 0 8px; border-radius: 9px; font-size: 0.55rem; }
  .phone-action-icon { width: 16px; height: 16px; transform: none; }

  .phone-dashboard-card {
    margin-top: 7px;
    padding: 8px 9px;
    border-radius: 10px;
  }

  .phone-dashboard-card header { min-height: 17px; }
  .phone-dashboard-card header strong { gap: 5px; font-size: 0.64rem; }
  .phone-card-icon { transform: scale(0.82); }
  .phone-agenda-row { gap: 5px; padding-top: 6px; }
  .phone-agenda-row strong,
  .phone-finance-row strong { font-size: 0.52rem; }
  .phone-agenda-row small,
  .phone-finance-row small { font-size: 0.43rem; }
  .phone-task-row { gap: 5px; padding: 4px 0; font-size: 0.51rem; }
  .phone-finance-total { margin: 5px 0 1px; }
  .phone-finance-row { gap: 4px; padding-top: 5px; }
  .phone-finance-row:last-child { display: none; }

  .phone-nav--real {
    right: 7px;
    bottom: 7px;
    left: 7px;
    min-height: 54px;
    padding: 4px;
    border-radius: 20px;
  }

  .phone-nav--real span,
  .phone-nav--real .is-active { height: 46px; border-radius: 16px; }

  .phone-nav-icon { width: 17px; height: 17px; }

  .phone-nav--real small {
    display: block;
    font-size: 0.38rem;
  }

  .mobile-float {
    width: 176px;
    gap: 3px;
    padding: 13px;
  }

  .mobile-float strong { font-size: 0.75rem; }
  .mobile-float span { font-size: 0.56rem; }

  .mobile-float--agenda {
    top: 15%;
    left: -9px;
    box-shadow: 8px 9px 0 var(--shadow-green);
  }

  .mobile-float--finance {
    right: -8px;
    bottom: 11%;
    box-shadow: 8px 9px 0 var(--shadow-green);
  }

  .mobile-footnote {
    line-height: 1.5;
  }

  .testimonials {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .testimonial-card {
    flex: 0 0 clamp(290px, 86vw, 520px);
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 24px 20px;
  }

  .testimonial-card__avatar {
    width: 100%;
    max-width: 140px;
    aspect-ratio: 1;
    align-self: flex-start;
  }

  .pricing {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .pricing-heading h2 {
    font-size: clamp(3rem, 14.7vw, 4.6rem);
    line-height: 0.9;
  }

  .pricing-heading > p:not(.pricing-kicker) {
    margin-top: 22px;
    font-size: var(--fs-section-copy);
  }

  .billing-toggle {
    width: 100%;
    margin-top: 24px;
  }

  .billing-toggle__option {
    flex: 1;
    padding: 0 10px;
  }

  .billing-toggle__option span {
    display: block;
    margin: 0;
    font-size: 0.62rem;
  }

  .pricing-stage {
    margin-top: 20px;
    padding: 24px 0 36px;
  }

  .pricing-grid {
    width: calc(100% - 18px);
    gap: 18px;
  }

  .pricing-card,
  .pricing-card--featured {
    min-height: 360px;
    padding: 24px 20px;
  }

  .pricing-card__price strong { font-size: clamp(3.6rem, 18vw, 5rem); }
  .pricing-footnote { line-height: 1.5; }

  .site-footer {
    min-height: 520px;
    grid-template-columns: 1fr;
    align-items: start;
    gap: 30px;
  }

  .site-footer .footer-links {
    grid-template-columns: repeat(2, minmax(120px, 1fr));
    gap: 24px 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .js .reveal {
    opacity: 1;
    transform: none;
    filter: none;
  }
}
