:root {
  --paper: #f5f1e9;
  --paper-2: #eee7dc;
  --paper-3: #fbf8f2;
  --ink: #151714;
  --muted: #666960;
  --muted-2: #878b82;
  --line: rgba(21, 23, 20, 0.12);
  --line-strong: rgba(21, 23, 20, 0.22);
  --white: #fffdf8;
  --ease: cubic-bezier(.22,.78,.2,1);
  --shadow: 0 30px 80px rgba(20, 20, 18, 0.08);
  --cool-paper: #eef1f4;
  --graphite: #181b20;
  --metal: #c2a267;
  --mist: #dfe6eb;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Instrument Sans", Arial, sans-serif;
  font-size: 18px;
  line-height: 1.58;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
button, input, textarea { font: inherit; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
img { display: block; max-width: 100%; }

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 14px;
  left: 14px;
  transform: translateY(-150%);
  background: var(--white);
  color: var(--ink);
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
}
.skip-link:focus { transform: translateY(0); }

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

.site-header {
  position: fixed;
  z-index: 60;
  inset: 0 0 auto 0;
  height: 88px;
  padding: 0 clamp(20px, 4vw, 54px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--white);
  transition: color .35s var(--ease), background .35s var(--ease), box-shadow .35s var(--ease);
}
.site-header.is-light {
  color: var(--ink);
  background: rgba(245, 241, 233, 0.82);
  backdrop-filter: blur(18px);
  box-shadow: 0 1px 0 rgba(21, 23, 20, 0.06);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.brand-mark {
  width: 18px;
  height: 18px;
  border: 1px solid currentColor;
  border-radius: 50%;
  position: relative;
  display: inline-block;
}
.brand-mark::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 26px;
  background: currentColor;
  left: 8px;
  top: -5px;
  transform: rotate(45deg);
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.header-actions a {
  font-size: 15px;
  opacity: .9;
}

.button {
  border: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 500;
  transition: transform .3s var(--ease), background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease), opacity .3s var(--ease);
}
.button:hover { transform: translateY(-1px); }
.button:focus-visible,
.text-link:focus-visible,
.text-link-button:focus-visible,
.film-stage:focus-visible,
.dropzone:focus-within,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid rgba(255,255,255,.88);
  outline-offset: 2px;
}
.site-header.is-light .button:focus-visible,
.modal .button:focus-visible,
input:focus-visible,
textarea:focus-visible,
.film-stage:focus-visible,
.text-link-button:focus-visible {
  outline-color: rgba(21, 23, 20, 0.88);
}
.button-small { min-height: 44px; padding-inline: 18px; font-size: 14px; }
.button-large { min-height: 58px; padding-inline: 28px; font-size: 16px; }
.button-primary {
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 12px 40px rgba(0,0,0,.12);
}
.site-header.is-light .button-primary {
  background: var(--ink);
  color: var(--white);
  box-shadow: none;
}
.button-secondary {
  background: rgba(255,255,255,.09);
  color: var(--white);
  border: 1px solid rgba(255,255,255,.34);
  backdrop-filter: blur(16px);
}
.site-header.is-light .button-nav,
.site-header.is-light .button-secondary {
  color: var(--ink);
  background: rgba(21,23,20,.03);
  border: 1px solid rgba(21,23,20,.12);
}
.button-nav {
  min-height: 44px;
  color: var(--white);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.18);
}
.button-dark { background: var(--ink); color: var(--white); }
.button-outline { background: transparent; color: var(--ink); border: 1px solid var(--line-strong); }
.button-outline:hover { border-color: var(--ink); }
.button.full { width: 100%; }
.text-link,
.text-link-button {
  background: transparent;
  border: 0;
  color: inherit;
  font-size: 15px;
  padding: 0;
  cursor: pointer;
  opacity: .85;
}
.text-link-button { text-decoration: underline; text-underline-offset: .16em; }

.hero-scroll { height: 300vh; background: #111315; position: relative; }
.hero-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
}
.hero-visual {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: #17191b;
}
.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: auto;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center center;
  will-change: transform;
  transform: translate3d(0,0,0);
  filter: contrast(1.02) saturate(.98);
  backface-visibility: hidden;
}
.hero-wash {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7,10,8,.58) 0%, rgba(7,10,8,.20) 48%, rgba(7,10,8,.18) 100%);
}
.hero-vignette {
  position: absolute;
  inset: 0;
  box-shadow: inset 0 -24vh 34vh rgba(8,10,8,.26), inset 0 0 20vw rgba(6,7,6,.14);
}
.hero-ui {
  position: relative;
  height: 100%;
  color: var(--white);
  padding-top: clamp(112px, 14vh, 150px);
  padding-bottom: clamp(34px, 6vh, 72px);
  z-index: 3;
}
.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 38px;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: .16em;
  opacity: .82;
}
.hero-kicker span { width: 24px; height: 1px; background: currentColor; }
.hero-copy-wrap {
  position: relative;
  width: min(820px, 74vw);
  height: min(48vh, 470px);
  display: flex;
  align-items: center;
}
.hero-copy {
  position: absolute;
  inset: auto 0;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
  pointer-events: none;
}
.hero-copy.is-active { opacity: 1; transform: translateY(0); pointer-events: auto; }
.eyebrow {
  margin: 0 0 18px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-weight: 600;
}
.eyebrow.dark { color: var(--muted); }
.hero-copy h1,
.hero-copy h2,
.section-heading h2,
.featured-plan h3,
.property-film-copy h3,
.final-cta h2,
.modal-head h2 {
  margin: 0;
  font-size: clamp(56px, 7vw, 108px);
  line-height: .96;
  letter-spacing: -.045em;
  font-weight: 600;
  max-width: 1000px;
  text-wrap: balance;
}
.hero-sub {
  max-width: 700px;
  margin: 24px 0 0;
  font-size: clamp(18px, 1.4vw, 22px);
  line-height: 1.6;
  color: rgba(255,255,255,.86);
}
.hero-bottom {
  position: absolute;
  left: 0;
  right: 0;
  bottom: clamp(32px, 6vh, 68px);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
}
.hero-cta-stack { display: flex; flex-direction: column; align-items: flex-start; gap: 16px; }
.hero-cta-row { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-proof-wrap { display: flex; flex-direction: column; gap: 14px; align-items: flex-end; max-width: 540px; }
.hero-trust-line { margin: 0; font-size: 15px; color: rgba(255,255,255,.86); text-align: right; }
.hero-proof {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
  font-size: 12px;
  letter-spacing: .04em;
  color: rgba(255,255,255,.75);
}
.hero-proof i { width: 4px; height: 4px; border-radius: 50%; background: currentColor; }
.scroll-meter {
  position: absolute;
  right: clamp(20px, 2vw, 28px);
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.scroll-meter-label { writing-mode: vertical-rl; transform: rotate(180deg); opacity: .72; }
.scroll-meter-track { width: 1px; height: 130px; background: rgba(255,255,255,.24); position: relative; overflow: hidden; }
.scroll-meter-track i { position: absolute; inset: 0; background: var(--white); transform-origin: top; transform: scaleY(0); }
.scroll-meter-count { opacity: .85; }


.pricing-section {
  position: relative;
  z-index: 1;
  margin-top: 0;
  padding: clamp(112px, 12vw, 158px) 24px clamp(104px, 10vw, 142px);
  background: var(--cool-paper);
  border-top: 1px solid rgba(24,27,32,.09);
  border-bottom: 1px solid rgba(24,27,32,.10);
  overflow: hidden;
}
.pricing-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: min(1040px, calc(100% - 48px));
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(24,27,32,.20), transparent);
}
.pricing-shell {
  width: min(1040px, 100%);
  margin: 0 auto;
}
.pricing-heading {
  max-width: 720px;
  margin: 0 auto 50px;
  text-align: center;
  opacity: 0;
  transform: translate3d(0, 34px, 0);
  transition: opacity .82s var(--ease), transform .92s var(--ease);
}
.pricing-heading.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.pricing-heading .eyebrow { color: #68717a; }
.pricing-heading h2 {
  margin: 0;
  font-size: clamp(42px, 5vw, 68px);
  line-height: .98;
  letter-spacing: -.043em;
  font-weight: 600;
  color: var(--graphite);
  text-wrap: balance;
}
.pricing-heading > p:last-of-type {
  max-width: 640px;
  margin: 20px auto 0;
  color: #626b74;
  font-size: 16px;
  line-height: 1.62;
}
.pricing-friction-note {
  margin: 24px auto 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  padding: 10px 16px;
  border: 1px solid rgba(24,27,32,.12);
  background: rgba(255,255,255,.58);
  color: #4f5861;
  font-size: 12px;
  letter-spacing: .02em;
}
.pricing-friction-note i {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: currentColor;
  opacity: .42;
}
.pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
}
.pricing-card {
  --card-accent: #cfd4d8;
  position: relative;
  min-height: 472px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(24,27,32,.12);
  border-radius: 8px;
  box-shadow: 0 14px 38px rgba(18,23,29,.08);
  overflow: hidden;
  opacity: 0;
  transform: translate3d(0, 96px, 0) scale(.965);
  transform-origin: center bottom;
  transition:
    opacity .78s var(--ease),
    transform 1.05s var(--ease),
    border-color .28s var(--ease),
    box-shadow .28s var(--ease);
}
.pricing-card:nth-child(2) { transition-delay: .12s; }
.pricing-card:nth-child(3) { transition-delay: .24s; }
.pricing-card.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}
.pricing-card > *:not(.pricing-card-number) { position: relative; z-index: 1; }
.pricing-card-number {
  position: absolute;
  right: 14px;
  bottom: -18px;
  font-size: 104px;
  line-height: 1;
  letter-spacing: -.08em;
  font-weight: 600;
  color: currentColor;
  opacity: .035;
  pointer-events: none;
}
.pricing-card-featured .pricing-card-number { opacity: .055; }
.pricing-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: var(--card-accent);
}
.pricing-card:hover {
  border-color: rgba(24,27,32,.24);
  box-shadow: 0 22px 52px rgba(18,23,29,.13);
}
.pricing-card-essential {
  --card-accent: #cfd4d8;
  background: #ffffff;
  color: #1c2025;
}
.pricing-card-featured {
  --card-accent: var(--metal);
  background: var(--graphite);
  color: #ffffff;
  border-color: var(--graphite);
  box-shadow: 0 24px 58px rgba(16,19,24,.24);
}
.pricing-card-agent {
  --card-accent: #8ea0ad;
  background: var(--mist);
  color: #1c2227;
}
.pricing-card-topline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(24,27,32,.13);
}
.pricing-card-featured .pricing-card-topline { border-color: rgba(255,255,255,.16); }
.pricing-card .plan-label { color: rgba(24,27,32,.52); }
.pricing-card-featured .plan-label { color: rgba(255,255,255,.58); }
.pricing-card h3 {
  margin: 8px 0 0;
  font-size: 25px;
  line-height: 1.04;
  letter-spacing: -.035em;
  font-weight: 600;
}
.compact-price {
  flex: 0 0 auto;
  font-size: 52px;
  line-height: .9;
  letter-spacing: -.062em;
  font-weight: 600;
}
.compact-price span {
  display: inline-block;
  margin: .18em .06em 0 0;
  vertical-align: top;
  font-size: .3em;
}
.pricing-card-summary {
  min-height: 76px;
  margin: 18px 0 20px;
  color: rgba(24,27,32,.64);
  font-size: 14px;
  line-height: 1.55;
}
.pricing-card-featured .pricing-card-summary { color: rgba(255,255,255,.70); }
.compact-feature-list {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  display: grid;
  gap: 9px;
}
.compact-feature-list li {
  position: relative;
  padding-left: 17px;
  font-size: 13px;
  line-height: 1.48;
}
.compact-feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .64em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--card-accent);
}
.pricing-card-action {
  margin-top: auto;
  display: grid;
  gap: 10px;
}
.pricing-card-action p {
  margin: 0;
  color: rgba(24,27,32,.58);
  font-size: 12px;
  line-height: 1.45;
}
.pricing-card-featured .pricing-card-action p { color: rgba(255,255,255,.64); }
.pricing-button {
  min-height: 50px;
  padding-inline: 14px;
  font-size: 13px;
}
.pricing-button-dark { background: #20252b; color: #ffffff; }
.pricing-button-light { background: #ffffff; color: var(--graphite); }
.pricing-card-agent .pricing-button-dark { background: #27323a; }

.trust-band { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 0 0 24px; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-item {
  padding: 34px 26px 40px 0;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 36px;
}
.trust-item:nth-child(2),
.trust-item:nth-child(3),
.trust-item:nth-child(4) { padding-left: 28px; }
.trust-item:last-child { border-right: 0; }
.trust-item span { font-size: 11px; color: var(--muted); letter-spacing: .14em; }
.trust-item p { margin: 0; font-size: clamp(24px, 2.1vw, 34px); line-height: 1.08; letter-spacing: -.03em; font-weight: 500; }
.legal-note { margin-top: 22px; color: var(--muted); font-size: 13px; }

.final-cta { padding: clamp(110px, 14vw, 190px) 0; }
.final-cta-inner {
  background: rgba(255,255,255,.42);
  border: 1px solid var(--line);
  padding: clamp(32px, 5vw, 56px);
  text-align: center;
  box-shadow: var(--shadow);
}
.final-cta h2 { font-size: clamp(56px, 7vw, 98px); }
.final-cta p:not(.eyebrow):not(.final-microcopy) {
  max-width: 680px;
  margin: 24px auto 34px;
  color: var(--muted);
}
.final-actions { display: flex; justify-content: center; gap: 18px; align-items: center; flex-wrap: wrap; }
.final-microcopy { margin: 18px 0 0; color: var(--muted); font-size: 14px; }

.site-footer {
  min-height: 126px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 24px;
  align-items: center;
  color: var(--muted);
  font-size: 13px;
  padding: 0 0 22px;
}
.footer-brand { color: var(--ink); }
.site-footer p { margin: 0; }

.modal {
  width: min(1180px, calc(100% - 28px));
  max-height: calc(100vh - 28px);
  border: 0;
  padding: 0;
  background: var(--paper-3);
  color: var(--ink);
  box-shadow: 0 40px 120px rgba(0,0,0,.28);
}
.modal::backdrop { background: rgba(12, 13, 12, 0.68); backdrop-filter: blur(8px); }
.modal-shell { padding: 34px; }
.sticky-head { position: sticky; top: 0; background: linear-gradient(180deg, rgba(251,248,242,.98) 72%, rgba(251,248,242,0)); backdrop-filter: blur(6px); padding-bottom: 22px; z-index: 2; }
.modal-head h2 { font-size: clamp(42px, 5vw, 66px); }
.modal-lead,
.modal-note { margin: 16px 0 0; max-width: 800px; color: var(--muted); }
.modal-note { font-size: 15px; }
.dialog-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.66);
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
  z-index: 5;
}

.examples-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 30px;
}
.example-card {
  background: rgba(255,255,255,.66);
  border: 1px solid var(--line);
  overflow: hidden;
}
.motion-shot {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #ddd6ca;
}
.motion-shot img {
  width: 115%;
  max-width: none;
  height: 100%;
  object-fit: cover;
  animation: pan-left 7s ease-in-out infinite alternate;
}
.motion-shot-reverse img { animation-name: pan-right; }
.motion-shot-mid img { animation-duration: 8s; }
.motion-shot-slow img { animation-duration: 10s; }
.motion-shot-zoom img { width: 110%; animation-name: pan-zoom; }
@keyframes pan-left {
  from { transform: translate3d(-3%,0,0) scale(1.02); }
  to { transform: translate3d(-12%,0,0) scale(1.05); }
}
@keyframes pan-right {
  from { transform: translate3d(-12%,0,0) scale(1.03); }
  to { transform: translate3d(-2%,0,0) scale(1.05); }
}
@keyframes pan-zoom {
  from { transform: translate3d(-4%,0,0) scale(1.01); }
  to { transform: translate3d(-10%,0,0) scale(1.07); }
}
.example-meta { padding: 16px 16px 18px; }
.example-meta span { display: block; font-size: 16px; font-weight: 600; margin-bottom: 7px; }
.example-meta p { margin: 0; color: var(--muted); font-size: 14px; }

.property-film-demo {
  margin-top: 36px;
  border-top: 1px solid var(--line);
  padding-top: 30px;
}
.property-film-copy h3 { font-size: clamp(32px, 4vw, 50px); max-width: 950px; }
.property-film-copy p:last-child { margin: 16px 0 0; color: var(--muted); }
.film-demo-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, .75fr);
  gap: 18px;
  margin-top: 24px;
}
.film-display-frame {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #d9d2c7;
}
.film-display-frame img { width: 100%; height: 100%; object-fit: cover; }
.film-display-overlay {
  position: absolute;
  inset: auto 18px 18px 18px;
  background: rgba(11, 12, 11, 0.58);
  color: var(--white);
  padding: 14px 16px;
  backdrop-filter: blur(10px);
}
.film-display-overlay span { display: block; font-size: 13px; font-weight: 600; margin-bottom: 6px; }
.film-display-overlay p { margin: 0; font-size: 14px; color: rgba(255,255,255,.82); }
.film-stages {
  display: grid;
  gap: 12px;
  align-content: start;
}
.film-stage {
  background: rgba(255,255,255,.7);
  border: 1px solid var(--line);
  display: grid;
  grid-template-columns: 54px 1fr;
  align-items: center;
  gap: 12px;
  text-align: left;
  padding: 16px;
  cursor: pointer;
  transition: transform .25s var(--ease), border-color .25s var(--ease), background .25s var(--ease);
}
.film-stage:hover { transform: translateY(-1px); }
.film-stage.is-active { background: var(--ink); color: var(--white); border-color: var(--ink); }
.film-stage strong { font-size: 12px; letter-spacing: .14em; }
.film-stage span { font-size: 16px; line-height: 1.3; }
.demo-action-row { margin-top: 24px; }

.upload-shell { padding-top: 40px; }
.upload-package-bar {
  margin: 28px 0;
  padding: 20px 22px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.56);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: start;
}
.upload-package-bar h3 { margin: 8px 0 0; font-size: 28px; line-height: 1.05; letter-spacing: -.03em; }
.package-sidecopy { text-align: right; }
.package-sidecopy span { display: block; font-size: 17px; font-weight: 600; }
.package-sidecopy p { margin: 8px 0 0; color: var(--muted); max-width: 320px; }
.upload-form { display: grid; gap: 18px; }
.field-row.two-up { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.upload-form label { display: grid; gap: 8px; }
.upload-form label span { font-size: 14px; font-weight: 500; }
.upload-form label span em { font-style: normal; color: var(--muted); font-weight: 400; }
.upload-form input:not([type="file"]):not([type="checkbox"]),
.upload-form textarea {
  width: 100%;
  border: 1px solid var(--line-strong);
  background: rgba(255,255,255,.72);
  padding: 14px 15px;
  outline: none;
  color: var(--ink);
  border-radius: 0;
}
.upload-form textarea { resize: vertical; }
.uploader-block {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.46);
  padding: 20px;
  display: grid;
  gap: 18px;
}
.uploader-copy {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
}
.uploader-copy h3 { margin: 6px 0 0; font-size: 26px; letter-spacing: -.03em; line-height: 1.08; }
.uploader-copy p { margin: 0; color: var(--muted); max-width: 360px; }
.dropzone {
  border: 1px dashed var(--line-strong);
  background: var(--paper-3);
  min-height: 220px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 26px;
  cursor: pointer;
  transition: border-color .25s var(--ease), background .25s var(--ease), transform .25s var(--ease);
}
.dropzone.dragover {
  border-color: var(--ink);
  background: rgba(255,255,255,.82);
  transform: translateY(-1px);
}
.dropzone input { display: none; }
.dropzone strong { display: block; font-size: 18px; }
.dropzone span,
.dropzone small { display: block; color: var(--muted); margin-top: 8px; }
.upload-support-row { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.file-list {
  display: grid;
  gap: 10px;
}
.file-item {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 10px;
  background: rgba(255,255,255,.78);
  border: 1px solid var(--line);
}
.file-thumb {
  width: 72px;
  height: 56px;
  object-fit: cover;
  background: #ddd4c7;
}
.file-meta { min-width: 0; }
.file-meta strong { display: block; font-size: 15px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.file-meta span { display: block; font-size: 13px; color: var(--muted); }
.remove-file {
  border: 1px solid var(--line-strong);
  background: transparent;
  color: var(--ink);
  min-height: 40px;
  padding: 0 14px;
  cursor: pointer;
}
.consent {
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 12px;
  color: var(--muted);
}
.consent input { margin-top: 4px; }
.form-actions { display: grid; gap: 12px; align-items: start; }
.form-status { margin: 0; color: var(--muted); font-size: 14px; }
.form-status code { font-size: 13px; }

.toast {
  position: fixed;
  z-index: 120;
  left: 50%;
  bottom: 24px;
  transform: translate(-50%, 20px);
  background: var(--ink);
  color: var(--white);
  padding: 14px 18px;
  border-radius: 999px;
  font-size: 14px;
  opacity: 0;
  pointer-events: none;
  transition: .4s var(--ease);
}
.toast.is-visible { opacity: 1; transform: translate(-50%, 0); }

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1100px) {
  .pricing-editorial,
  .film-demo-grid { grid-template-columns: 1fr; }
  .featured-plan { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(2), .trust-item:nth-child(4) { border-right: 0; }
}

@media (max-width: 900px) {
  .pricing-row-body { grid-template-columns: 1fr; }
  body { font-size: 17px; }
  .site-header { height: 76px; }
  .header-actions a,
  .button-nav { display: none; }
  .hero-scroll { height: 270vh; }
  .hero-sticky { min-height: 640px; }
  .hero-image { min-width: 175%; height: 100%; left: 0; }
  .hero-ui { padding-top: 96px; }
  .hero-copy-wrap { width: min(100%, 700px); height: 52vh; }
  .hero-copy h1, .hero-copy h2 { font-size: clamp(46px, 10vw, 76px); }
  .hero-sub { font-size: 17px; }
  .scroll-meter { display: none; }
  .hero-bottom { position: relative; left: auto; right: auto; bottom: auto; flex-direction: column; align-items: flex-start; gap: 18px; margin-top: 18px; }
  .hero-proof-wrap { align-items: flex-start; }
  .hero-trust-line, .hero-proof { text-align: left; justify-content: flex-start; }
  .section-heading { grid-template-columns: 1fr; gap: 20px; }
  .examples-grid { grid-template-columns: 1fr 1fr; }
  .upload-package-bar, .uploader-copy, .field-row.two-up, .site-footer { grid-template-columns: 1fr; }
  .package-sidecopy { text-align: left; }
}

@media (max-width: 640px) {
  .section-shell { width: min(100% - 30px, 1280px); }
  .site-header { padding-inline: 16px; }
  .brand { font-size: 11px; gap: 9px; }
  .brand-mark { width: 15px; height: 15px; }
  .brand-mark::after { left: 7px; height: 22px; }
  .button-small { min-height: 40px; padding-inline: 14px; }
  .hero-scroll { height: 245vh; }
  .hero-image { min-width: 210%; height: 100%; left: 0; }
  .hero-kicker { font-size: 9px; margin-bottom: 28px; }
  .hero-copy-wrap { height: 48vh; }
  .hero-copy h1, .hero-copy h2,
  .section-heading h2,
  .featured-plan h3,
  .property-film-copy h3,
  .final-cta h2,
  .modal-head h2 { font-size: clamp(38px, 12vw, 62px); }
  .hero-sub { font-size: 16px; }
  .hero-cta-row { width: 100%; flex-direction: column; }
  .hero-cta-row .button { width: 100%; }
  .hero-proof { font-size: 11px; }
  .pricing-section { padding-top: 96px; }
  .featured-plan,
  .support-plan,
  .final-cta-inner,
  .modal-shell { padding: 22px; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-item, .trust-item:nth-child(2), .trust-item:nth-child(3), .trust-item:nth-child(4) {
    padding: 26px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .trust-item:last-child { border-bottom: 0; }
  .examples-grid { grid-template-columns: 1fr; }
  .example-card, .support-plan, .featured-plan, .final-cta-inner { box-shadow: none; }
  .modal { width: min(100% - 16px, 1180px); max-height: calc(100vh - 16px); }
  .dialog-close { top: 12px; right: 12px; }
  .upload-support-row { flex-direction: column; }
  .file-item { grid-template-columns: 56px 1fr; }
  .remove-file { grid-column: 2; justify-self: start; }
  .final-actions { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  .pricing-heading,
  .pricing-card {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .hero-image { transform: translate3d(0,0,0) scale(1.01) !important; }
}

@media (max-width: 980px) {
  .pricing-shell { width: min(560px, 100%); }
  .pricing-cards { grid-template-columns: 1fr; gap: 26px; }
  .pricing-card { min-height: auto; }
  .pricing-card-summary { min-height: 0; }
}

@media (max-width: 560px) {
  .pricing-section { padding-inline: 15px; }
  .pricing-card { padding: 24px 21px; }
  .pricing-card h3 { font-size: 23px; }
  .compact-price { font-size: 50px; }
  .pricing-heading > p:last-child { font-size: 16px; }
}
