.cinematic-home {
  --cine-void: var(--sr-void);
  --cine-panel: var(--sr-panel);
  --cine-slate: var(--sr-slate);
  --cine-signal: var(--sr-signal);
  --cine-mist: var(--sr-mist);
  --cine-snow: var(--sr-snow);
  position: relative;
  min-width: 0;
  overflow: clip;
  background: var(--cine-void);
  color: var(--cine-mist);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.cinematic-home *,
.cinematic-home *::before,
.cinematic-home *::after {
  box-sizing: border-box;
}

.cinematic-home a:focus-visible,
.cinematic-home summary:focus-visible {
  outline: 2px solid var(--cine-signal);
  outline-offset: 4px;
}

.cine-skip-link {
  position: fixed;
  z-index: 200;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  background: var(--cine-snow);
  color: var(--cine-void);
  font-size: 13px;
  font-weight: 800;
  transform: translateY(-160%);
}

.cine-skip-link:focus {
  transform: translateY(0);
}

.cine-header {
  position: fixed;
  z-index: 80;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid rgba(233, 236, 239, 0.1);
  background: rgba(20, 24, 29, 0.88);
  backdrop-filter: blur(20px) saturate(135%);
}

.cine-header__inner {
  display: flex;
  width: min(1500px, calc(100% - 48px));
  min-height: 74px;
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.cine-header__brand-link {
  flex: 0 0 auto;
}

/* Dark cinematic ground: the lap-joint's ink half flips to snow. The light
   info pages opt back out below — they share the .cinematic-home root. */
.cinematic-home .brand-symbol {
  color: var(--cine-snow);
}

.cine-info-page--light .brand-symbol {
  color: var(--cine-void);
}

.cinematic-home .brand-type strong {
  color: var(--cine-snow);
}

.cinematic-home .brand-type small {
  color: var(--cine-signal);
}

.cine-header__nav,
.cine-header__actions,
.cine-locale-nav,
.cine-header__talk,
.cine-header__login {
  display: flex;
  align-items: center;
}

.cine-header__nav {
  margin-left: auto;
  gap: clamp(18px, 2.1vw, 34px);
}

.cine-header__nav a,
.cine-header__login {
  color: var(--cine-mist);
  font-size: 12px;
  font-weight: 750;
  transition: color 160ms ease;
}

.cine-header__nav a:hover,
.cine-header__login:hover {
  color: var(--cine-signal);
}

.cine-header__nav a.is-current,
.cine-mobile-menu nav a.is-current {
  color: var(--cine-signal);
}

.cine-header__nav a.is-current {
  box-shadow: inset 0 -2px 0 var(--cine-signal);
}

.cine-header__actions {
  gap: 16px;
}

.cine-locale-nav {
  gap: 2px;
  padding: 3px;
  border: 1px solid rgba(233, 236, 239, 0.15);
  border-radius: 999px;
}

.cine-locale-nav a {
  padding: 5px 7px;
  border-radius: 999px;
  color: rgba(233, 236, 239, 0.65);
  font-size: 9px;
  font-weight: 900;
}

.cine-locale-nav a.active {
  background: var(--cine-signal);
  color: var(--cine-void);
}

.cine-header__talk {
  min-height: 38px;
  gap: 8px;
  padding: 0 15px;
  background: var(--cine-signal);
  color: var(--cine-void);
  font-size: 11px;
  font-weight: 900;
}

.cine-mobile-menu {
  position: relative;
  display: none;
}

.cine-mobile-menu summary {
  display: grid;
  width: 42px;
  height: 42px;
  cursor: pointer;
  list-style: none;
  place-items: center;
  border: 1px solid rgba(233, 236, 239, 0.16);
}

.cine-mobile-menu summary::-webkit-details-marker {
  display: none;
}

.cine-mobile-menu nav {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  display: grid;
  width: min(280px, calc(100vw - 32px));
  padding: 10px;
  border: 1px solid rgba(233, 236, 239, 0.15);
  background: rgba(20, 24, 29, 0.98);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.4);
}

.cine-mobile-menu nav a {
  padding: 14px;
  border-bottom: 1px solid rgba(233, 236, 239, 0.08);
  color: var(--cine-mist);
  font-size: 13px;
  font-weight: 750;
}

.cine-mobile-menu__locales {
  display: flex;
  gap: 8px;
  padding: 12px 8px 4px;
}

.cine-mobile-menu__locales a {
  display: grid;
  width: 34px;
  height: 34px;
  padding: 0;
  place-items: center;
  border: 1px solid rgba(233, 236, 239, 0.14);
  font-size: 9px;
}

.cine-mobile-menu__locales a.active {
  border-color: var(--cine-signal);
  color: var(--cine-signal);
}

.cinematic-film {
  position: fixed;
  z-index: 0;
  inset: 0;
  overflow: hidden;
  background: var(--cine-void);
  opacity: 0;
  pointer-events: none;
  transition: opacity 360ms ease;
}

.cinematic-film--visible {
  opacity: 1;
}

.cinematic-film__frame,
.cinematic-film__fallback,
.cinematic-film__scrim,
.cinematic-film__grain {
  position: absolute;
  inset: -2%;
  width: 104%;
  height: 104%;
}

.cinematic-film__frame {
  z-index: 2;
  object-fit: cover;
  object-position: center;
}

.cinematic-film__frame--current {
  animation: cine-frame-in 360ms ease both;
}

.cinematic-film__frame--outgoing {
  z-index: 3;
  animation: cine-frame-out 420ms ease both;
}

@keyframes cine-frame-in {
  from { opacity: 0.01; }
  to { opacity: 1; }
}

@keyframes cine-frame-out {
  from { opacity: 1; }
  to { opacity: 0; }
}

.cinematic-film__fallback {
  z-index: 1;
  background:
    radial-gradient(circle at 72% 36%, rgba(25, 211, 197, 0.12), transparent 28%),
    linear-gradient(135deg, #14181d, #1e242b);
}

.cinematic-film--s08 .cinematic-film__fallback {
  background:
    linear-gradient(90deg, rgba(20, 24, 29, 0.94) 0 42%, rgba(20, 24, 29, 0.2) 70%),
    radial-gradient(circle at 78% 38%, rgba(208, 161, 105, 0.3), transparent 30%),
    linear-gradient(140deg, #232a30, #43525a);
}

.cinematic-film--s11 .cinematic-film__fallback {
  background:
    linear-gradient(90deg, rgba(20, 24, 29, 0.95), rgba(20, 24, 29, 0.1) 72%),
    radial-gradient(ellipse at 72% 80%, rgba(25, 211, 197, 0.2), transparent 24%),
    linear-gradient(180deg, #27333c, #14181d 70%);
}

.cinematic-film__scrim {
  z-index: 4;
  background:
    linear-gradient(90deg, rgba(20, 24, 29, 0.82) 0%, rgba(20, 24, 29, 0.3) 48%, rgba(20, 24, 29, 0.5) 100%),
    linear-gradient(180deg, rgba(20, 24, 29, 0.45), transparent 30%, rgba(20, 24, 29, 0.48));
  transition: background 280ms ease;
}

.cinematic-film--scrim-deep .cinematic-film__scrim {
  background:
    linear-gradient(90deg, rgba(20, 24, 29, 0.92), rgba(20, 24, 29, 0.42) 58%, rgba(20, 24, 29, 0.62)),
    linear-gradient(180deg, rgba(20, 24, 29, 0.65), transparent 34%, rgba(20, 24, 29, 0.66));
}

.cinematic-film--scrim-light .cinematic-film__scrim {
  background: linear-gradient(90deg, rgba(251, 252, 253, 0.03), transparent 55%, rgba(20, 24, 29, 0.18));
}

.cinematic-film--scrim-warm .cinematic-film__scrim {
  background:
    linear-gradient(90deg, rgba(20, 24, 29, 0.66), rgba(20, 24, 29, 0.12) 70%),
    linear-gradient(180deg, rgba(20, 24, 29, 0.4), transparent 34%, rgba(20, 24, 29, 0.45));
}

.cinematic-film__grain {
  z-index: 5;
  opacity: 0.13;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(251, 252, 253, 0.25) 0 0.6px, transparent 0.8px),
    radial-gradient(circle at 70% 65%, rgba(251, 252, 253, 0.18) 0 0.5px, transparent 0.8px);
  background-size: 7px 7px, 5px 5px;
  mix-blend-mode: soft-light;
}

.cinematic-home main {
  position: relative;
  z-index: 2;
}

.cine-fold,
.cine-film-section,
.cine-flat-section {
  scroll-margin-top: 74px;
}

.cine-fold {
  position: relative;
  min-height: auto;
  overflow: hidden;
  padding: 154px max(28px, calc((100vw - 1500px) / 2)) 110px;
  background: var(--cine-void);
}

.cine-fold__grid {
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(233, 236, 239, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(233, 236, 239, 0.09) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black, transparent 78%);
}

.cine-fold__grid::after {
  position: absolute;
  top: 10%;
  right: 8%;
  width: 35vw;
  height: 35vw;
  border: 1px solid rgba(25, 211, 197, 0.28);
  border-radius: 50%;
  box-shadow: 0 0 0 8vw rgba(25, 211, 197, 0.025), 0 0 0 16vw rgba(25, 211, 197, 0.018);
  content: "";
}

.cine-fold__content {
  position: relative;
  z-index: 2;
  max-width: 1080px;
}

.cine-eyebrow,
.cine-kicker {
  margin: 0;
  color: var(--cine-signal);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.18em;
  line-height: 1.5;
  text-transform: uppercase;
}

.cine-fold h1 {
  max-width: 1100px;
  margin: 26px 0 30px;
  color: var(--cine-snow);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(66px, 9vw, 142px);
  font-weight: 400;
  letter-spacing: -0.075em;
  line-height: 0.84;
}

.cine-fold h1 span {
  display: block;
  color: var(--cine-mist);
}

.cine-fold__body {
  max-width: 750px;
  margin: 0;
  color: rgba(233, 236, 239, 0.82);
  font-size: clamp(17px, 1.5vw, 22px);
  line-height: 1.66;
}

.cine-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.cine-button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 20px;
  border: 1px solid transparent;
  font-family: inherit;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

button.cine-button {
  appearance: none;
}

.cine-button:hover {
  transform: translateY(-2px);
}

.cine-button--signal {
  background: var(--cine-signal);
  color: var(--cine-void);
}

.cine-button--signal:hover {
  background: #40e0d3;
}

.cine-button--line {
  border-color: rgba(233, 236, 239, 0.3);
  background: rgba(20, 24, 29, 0.35);
  color: var(--cine-snow);
}

.cine-button--dark {
  background: var(--cine-void);
  color: var(--cine-snow);
}

.cine-button--line-dark {
  border-color: rgba(20, 24, 29, 0.3);
  color: var(--cine-void);
}

.cine-promise-list {
  position: relative;
  z-index: 2;
  display: grid;
  max-width: 1140px;
  margin-top: clamp(58px, 7vh, 96px);
  border-top: 1px solid rgba(233, 236, 239, 0.14);
}

.cine-promise-list article {
  display: grid;
  min-height: 84px;
  align-items: center;
  gap: 22px;
  grid-template-columns: 38px 1fr;
  border-bottom: 1px solid rgba(233, 236, 239, 0.11);
}

.cine-promise-list article > span {
  color: var(--cine-signal);
  font-family: Georgia, serif;
  font-size: 14px;
}

.cine-promise-list h2,
.cine-promise-list p {
  margin: 0;
}

.cine-promise-list h2 {
  color: var(--cine-snow);
  font-size: clamp(16px, 1.5vw, 21px);
  letter-spacing: -0.025em;
}

.cine-promise-list p {
  margin-top: 5px;
  color: rgba(233, 236, 239, 0.62);
  font-size: 13px;
  line-height: 1.45;
}

.cine-film-section {
  position: relative;
  min-height: var(--runway-desktop);
  background: transparent;
}

.cine-film-section::before,
.cine-film-section::after {
  position: absolute;
  z-index: 1;
  right: 0;
  left: 0;
  height: clamp(120px, 20vh, 280px);
  pointer-events: none;
  content: "";
}

.cine-film-section::before {
  top: 0;
  background: linear-gradient(180deg, rgba(20, 24, 29, 0.72), transparent);
}

.cine-film-section::after {
  bottom: 0;
  background: linear-gradient(0deg, rgba(20, 24, 29, 0.72), transparent);
}

.cine-film-stage {
  position: sticky;
  z-index: 3;
  top: 0;
  display: grid;
  min-height: 100svh;
  align-items: center;
  overflow: clip;
  padding: 110px max(28px, calc((100vw - 1500px) / 2)) 70px;
}

.cine-section-marker {
  position: absolute;
  top: 112px;
  right: max(28px, calc((100vw - 1500px) / 2));
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(233, 236, 239, 0.7);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.cine-section-marker i {
  width: 42px;
  height: 1px;
  background: var(--cine-signal);
}

.cine-copy-panel {
  position: relative;
  width: min(680px, 52vw);
  padding: clamp(30px, 4vw, 58px);
}

.cine-copy-panel--left {
  justify-self: start;
}

.cine-copy-panel--right {
  justify-self: end;
}

.cine-copy-panel--dark {
  border: 1px solid rgba(233, 236, 239, 0.13);
  background: rgba(20, 24, 29, 0.76);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(12px);
  color: var(--cine-mist);
}

.cine-copy-panel--paper {
  border: 1px solid rgba(20, 24, 29, 0.14);
  background: rgba(251, 252, 253, 0.9);
  box-shadow: 0 28px 90px rgba(20, 24, 29, 0.2);
  backdrop-filter: blur(12px);
  color: var(--cine-void);
}

.cine-copy-panel h2,
.cine-proof h2,
.cine-process h2,
.cine-ownership h2,
.cine-pricing h2,
.cine-close__content h2 {
  margin: 18px 0 24px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 5vw, 76px);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.cine-copy-panel > p:not(.cine-kicker, .cine-turn),
.cine-proof__copy > p,
.cine-process__intro > p,
.cine-ownership__statement > p,
.cine-pricing p {
  margin: 0 0 18px;
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.7;
}

.cine-copy-panel--dark > p:not(.cine-kicker, .cine-turn) {
  color: rgba(233, 236, 239, 0.8);
}

.cine-turn {
  margin: 26px 0 0;
  padding-top: 23px;
  border-top: 1px solid rgba(233, 236, 239, 0.16);
  font-size: 15px;
  font-weight: 780;
  line-height: 1.6;
}

.cine-copy-panel--paper .cine-turn {
  border-color: rgba(20, 24, 29, 0.16);
}

.cine-maturity {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  padding: 7px 10px;
  border: 1px solid rgba(25, 211, 197, 0.45);
  color: var(--cine-signal);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.cine-copy-panel--paper .cine-maturity {
  border-color: rgba(20, 24, 29, 0.18);
  color: #076c64;
}

.cine-maturity > span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
}

.cine-check-list {
  display: grid;
  gap: 0;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.cine-check-list li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  padding: 12px 0;
  border-top: 1px solid rgba(20, 24, 29, 0.11);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
}

.cine-check-list svg,
.cine-outcome-grid svg {
  flex: 0 0 auto;
  margin-top: 2px;
  color: #08776e;
}

.cine-outcome-grid {
  display: grid;
  margin-top: 28px;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid rgba(20, 24, 29, 0.12);
  border-left: 1px solid rgba(20, 24, 29, 0.12);
}

.cine-outcome-grid span {
  display: flex;
  min-height: 72px;
  align-items: flex-start;
  gap: 9px;
  padding: 15px;
  border-right: 1px solid rgba(20, 24, 29, 0.12);
  border-bottom: 1px solid rgba(20, 24, 29, 0.12);
  font-size: 12px;
  font-weight: 740;
  line-height: 1.4;
}

.cine-film-section--system {
  padding: 0 max(28px, calc((100vw - 1500px) / 2));
}

.cine-system-flow {
  position: relative;
  z-index: 3;
  width: min(760px, 57vw);
  padding: 90px 0 110px;
}

.cine-copy-panel--system-intro {
  position: relative;
  z-index: 2;
  top: auto;
  width: 100%;
  margin-bottom: clamp(180px, 28vh, 340px);
  background: rgba(20, 24, 29, 0.94);
}

.cine-capability-rail {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(150px, 20vh, 250px);
  padding-bottom: 20vh;
}

.cine-capability {
  position: relative;
  display: grid;
  min-height: 250px;
  align-items: stretch;
  grid-template-columns: 74px 1fr;
  border: 1px solid rgba(233, 236, 239, 0.15);
  background: rgba(30, 36, 43, 0.96);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(14px);
}

.cine-capability > div {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 14px;
  padding-top: 30px;
  border-right: 1px solid rgba(233, 236, 239, 0.12);
}

.cine-capability > div span {
  color: var(--cine-signal);
  font-family: Georgia, serif;
  font-size: 18px;
}

.cine-capability > div i {
  width: 1px;
  flex: 1;
  background: linear-gradient(var(--cine-signal), transparent);
}

.cine-capability section {
  padding: clamp(28px, 4vw, 52px);
}

.cine-capability h3,
.cine-pricing__options h3,
.cine-proof__empty h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(29px, 3vw, 48px);
  font-weight: 400;
  letter-spacing: -0.045em;
}

.cine-capability p {
  margin: 18px 0 0;
  color: rgba(233, 236, 239, 0.72);
  font-size: 15px;
  line-height: 1.7;
}

.cine-flat-section {
  position: relative;
  z-index: 4;
}

.cine-proof {
  display: grid;
  min-height: 118svh;
  align-items: center;
  gap: clamp(50px, 7vw, 110px);
  padding: 150px max(28px, calc((100vw - 1500px) / 2));
  grid-template-columns: 0.68fr 1.32fr;
  background: var(--cine-void);
}

.cine-proof__copy {
  max-width: 580px;
}

.cine-proof__copy > p {
  color: rgba(233, 236, 239, 0.72);
}

.cine-proof__placeholder {
  position: relative;
  min-height: 610px;
  overflow: hidden;
  border: 1px solid rgba(233, 236, 239, 0.18);
  background: var(--cine-panel);
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.36);
}

.cine-proof__placeholder::before {
  position: absolute;
  inset: 48px 0 0;
  opacity: 0.14;
  background-image:
    linear-gradient(rgba(233, 236, 239, 0.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(233, 236, 239, 0.16) 1px, transparent 1px);
  background-size: 48px 48px;
  content: "";
}

.cine-proof__chrome {
  position: relative;
  z-index: 2;
  display: flex;
  height: 49px;
  align-items: center;
  gap: 7px;
  padding: 0 15px;
  border-bottom: 1px solid rgba(233, 236, 239, 0.12);
  background: #191e24;
}

.cine-proof__chrome span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cine-slate);
}

.cine-proof__chrome i {
  margin-left: auto;
  color: rgba(233, 236, 239, 0.52);
  font-size: 8px;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.13em;
}

.cine-proof__empty {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 560px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 60px;
  text-align: center;
}

.cine-proof__empty > svg {
  margin-bottom: 27px;
  color: var(--cine-signal);
}

.cine-proof__empty h3 {
  max-width: 590px;
  color: var(--cine-snow);
}

.cine-proof__empty p {
  max-width: 600px;
  margin: 20px 0 30px;
  color: rgba(233, 236, 239, 0.62);
  font-size: 14px;
  line-height: 1.65;
}

.cine-proof__empty > div {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.cine-proof__empty > div span {
  padding: 8px 11px;
  border: 1px solid rgba(233, 236, 239, 0.15);
  color: var(--cine-mist);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cine-ownership {
  display: grid;
  min-height: 100svh;
  align-items: center;
  gap: clamp(60px, 8vw, 130px);
  padding: 150px max(28px, calc((100vw - 1500px) / 2));
  grid-template-columns: 1fr 0.9fr;
  background: var(--cine-void);
}

.cine-ownership__statement {
  max-width: 700px;
}

.cine-ownership__statement > p:not(.cine-kicker, .cine-turn) {
  color: rgba(233, 236, 239, 0.72);
}

.cine-text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 28px;
  padding-bottom: 7px;
  border-bottom: 1px solid var(--cine-signal);
  color: var(--cine-snow);
  font-size: 12px;
  font-weight: 900;
}

.cine-ownership__card {
  padding: clamp(30px, 4.5vw, 60px);
  border: 1px solid rgba(25, 211, 197, 0.36);
  background:
    linear-gradient(135deg, rgba(25, 211, 197, 0.08), transparent 50%),
    var(--cine-panel);
}

.cine-ownership__card > div {
  display: flex;
  align-items: center;
  gap: 13px;
  padding-bottom: 25px;
  border-bottom: 1px solid rgba(233, 236, 239, 0.13);
  color: var(--cine-signal);
}

.cine-ownership__card > div span {
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.cine-ownership__card ul {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.cine-ownership__card li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(233, 236, 239, 0.1);
  color: var(--cine-mist);
  font-size: 13px;
  font-weight: 720;
}

.cine-ownership__card li svg {
  flex: 0 0 auto;
  color: var(--cine-signal);
}

.cine-process {
  display: grid;
  gap: clamp(40px, 5vw, 72px);
  padding: 150px max(28px, calc((100vw - 1500px) / 2));
  background:
    linear-gradient(180deg, rgba(25, 211, 197, 0.05), transparent 28%),
    var(--cine-void);
}

.cine-process__intro {
  max-width: 920px;
}

.cine-process__intro > p:not(.cine-kicker) {
  max-width: 820px;
  color: rgba(233, 236, 239, 0.72);
}

.cine-process__steps {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(233, 236, 239, 0.14);
  border-left: 1px solid rgba(233, 236, 239, 0.14);
}

.cine-process__steps li {
  display: grid;
  gap: 22px;
  min-height: 240px;
  padding: clamp(24px, 3vw, 40px);
  border-right: 1px solid rgba(233, 236, 239, 0.14);
  border-bottom: 1px solid rgba(233, 236, 239, 0.14);
}

.cine-process__steps span {
  color: var(--cine-signal);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 15px;
}

.cine-process__steps h3 {
  margin: 0 0 12px;
  color: var(--cine-snow);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(24px, 2.4vw, 34px);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1.15;
}

.cine-process__steps p {
  margin: 0;
  color: rgba(233, 236, 239, 0.7);
  font-size: 14px;
  line-height: 1.65;
}

.cine-process__close {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 36px;
  flex-wrap: wrap;
}

.cine-process__note {
  max-width: 720px;
  margin: 0;
  color: rgba(233, 236, 239, 0.68);
  font-size: 15px;
  line-height: 1.65;
}

.cine-pricing {
  display: grid;
  min-height: 110svh;
  align-content: center;
  padding: 150px max(28px, calc((100vw - 1500px) / 2));
  background: var(--cine-snow);
  color: var(--cine-void);
}

.cine-pricing .cine-section-marker {
  color: rgba(20, 24, 29, 0.7);
}

.cine-pricing__heading {
  max-width: 980px;
}

.cine-pricing__suite {
  max-width: 920px;
  margin: 22px 0 0;
  color: rgba(20, 24, 29, 0.74);
  font-size: 17px;
  line-height: 1.65;
}

.cine-pricing__options {
  display: grid;
  margin-top: 62px;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid rgba(20, 24, 29, 0.18);
  border-left: 1px solid rgba(20, 24, 29, 0.18);
}

.cine-pricing__options--paths {
  grid-template-columns: 1fr 1fr 1fr;
}

.cine-pricing__options article {
  min-height: 310px;
  padding: clamp(28px, 4vw, 48px);
  border-right: 1px solid rgba(20, 24, 29, 0.18);
  border-bottom: 1px solid rgba(20, 24, 29, 0.18);
}

.cine-pricing__options article > span {
  display: block;
  margin-bottom: 42px;
  color: #08776e;
  font-family: Georgia, serif;
  font-size: 16px;
}

.cine-pricing__options p {
  max-width: 570px;
  margin-top: 20px;
  color: rgba(20, 24, 29, 0.72);
}

.cine-pricing__notes {
  display: grid;
  gap: 12px;
  max-width: 1100px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  color: rgba(20, 24, 29, 0.62);
  font-size: 13px;
  line-height: 1.6;
}

.cine-pricing__notes li {
  position: relative;
  padding-left: 16px;
}

.cine-pricing__notes li::before {
  content: "";
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #08776e;
}

.cine-pricing__close {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 50px;
  padding-top: 46px;
}

.cine-pricing__close > p {
  max-width: 720px;
  margin: 0;
}

.cine-pricing__close .cine-cta-row {
  flex: 0 0 auto;
  margin: 0;
}

.cine-film-section--close {
  background: linear-gradient(90deg, rgba(20, 24, 29, 0.5), transparent);
}

.cine-close__content {
  max-width: 1040px;
}

.cine-close__content h2 {
  max-width: 1000px;
  color: var(--cine-snow);
  font-size: clamp(56px, 8vw, 124px);
  line-height: 0.92;
}

.cine-footer {
  position: relative;
  z-index: 6;
  display: grid;
  min-height: 330px;
  align-items: start;
  gap: 50px;
  padding: 80px max(28px, calc((100vw - 1500px) / 2)) 32px;
  grid-template-columns: 1fr auto;
  background: #101317;
}

.cine-footer > div > p {
  max-width: 470px;
  margin: 24px 0 0;
  color: rgba(233, 236, 239, 0.56);
  font-size: 13px;
  line-height: 1.6;
}

.cine-footer nav {
  display: grid;
  gap: 13px;
  text-align: right;
}

.cine-footer nav a {
  color: var(--cine-mist);
  font-size: 12px;
  font-weight: 760;
}

.cine-footer nav a:hover {
  color: var(--cine-signal);
}

.cine-footer > span {
  grid-column: 1 / -1;
  align-self: end;
  padding-top: 22px;
  border-top: 1px solid rgba(233, 236, 239, 0.1);
  color: rgba(233, 236, 239, 0.42);
  font-size: 10px;
  letter-spacing: 0.08em;
}

@media (max-width: 1100px) {
  .cine-header__nav,
  .cine-header__login,
  .cine-locale-nav {
    display: none;
  }

  .cine-mobile-menu {
    display: block;
  }

  .cine-copy-panel {
    width: min(680px, 66vw);
  }

  .cine-system-flow {
    width: min(720px, 70vw);
  }

  .cine-proof,
  .cine-ownership {
    gap: 50px;
    grid-template-columns: 1fr;
  }

  .cine-proof__copy,
  .cine-ownership__statement {
    max-width: 760px;
  }

  .cine-proof__placeholder {
    min-height: 520px;
  }

  .cine-proof__empty {
    min-height: 470px;
  }
}

@media (max-width: 767px) {
  .cine-header__inner {
    width: calc(100% - 28px);
    min-height: 64px;
  }

  .cinematic-home .brand-symbol {
    width: 34px;
    height: 34px;
  }

  .cinematic-home .brand-type strong {
    font-size: 15px;
  }

  .cine-header__talk {
    display: none;
  }

  .cine-film-section {
    min-height: var(--runway-mobile);
  }

  .cinematic-film__frame {
    object-position: center;
  }

  .cinematic-film__scrim,
  .cinematic-film--scrim-deep .cinematic-film__scrim,
  .cinematic-film--scrim-light .cinematic-film__scrim,
  .cinematic-film--scrim-warm .cinematic-film__scrim {
    background:
      linear-gradient(180deg, rgba(20, 24, 29, 0.72), rgba(20, 24, 29, 0.24) 48%, rgba(20, 24, 29, 0.78)),
      linear-gradient(90deg, rgba(20, 24, 29, 0.34), rgba(20, 24, 29, 0.12));
  }

  .cine-fold {
    min-height: auto;
    padding: 128px 20px 96px;
  }

  .cine-fold__grid {
    background-size: 42px 42px;
  }

  .cine-fold__grid::after {
    top: 8%;
    right: -45%;
    width: 100vw;
    height: 100vw;
  }

  .cine-fold h1 {
    margin-top: 20px;
    font-size: clamp(55px, 17vw, 78px);
    line-height: 0.88;
  }

  .cine-fold__body {
    font-size: 16px;
    line-height: 1.6;
  }

  .cine-cta-row {
    align-items: stretch;
    flex-direction: column;
  }

  .cine-button {
    width: 100%;
  }

  .cine-promise-list {
    margin-top: 70px;
  }

  .cine-promise-list article {
    min-height: 104px;
    gap: 12px;
    grid-template-columns: 28px 1fr;
  }

  .cine-promise-list h2 {
    font-size: 15px;
  }

  .cine-promise-list p {
    font-size: 12px;
  }

  .cine-film-stage {
    position: relative;
    top: auto;
    min-height: var(--runway-mobile);
    align-items: center;
    overflow: visible;
    padding: 96px 18px;
  }

  .cine-section-marker {
    top: 88px;
    right: 20px;
  }

  .cine-copy-panel,
  .cine-system-flow {
    width: 100%;
  }

  .cine-copy-panel {
    position: relative;
    top: auto;
    max-height: none;
    margin-block: 0;
    overflow: visible;
    padding: 27px 23px;
    overscroll-behavior: auto;
  }

  .cine-copy-panel h2,
  .cine-proof h2,
  .cine-process h2,
  .cine-ownership h2,
  .cine-pricing h2 {
    margin: 14px 0 19px;
    font-size: clamp(38px, 11vw, 54px);
  }

  .cine-copy-panel > p:not(.cine-kicker, .cine-turn),
  .cine-proof__copy > p,
  .cine-process__intro > p,
  .cine-ownership__statement > p,
  .cine-pricing p {
    font-size: 14px;
    line-height: 1.62;
  }

  .cine-process {
    padding-top: 120px;
    padding-bottom: 100px;
  }

  .cine-process__steps {
    grid-template-columns: 1fr;
  }

  .cine-process__steps li {
    min-height: 0;
  }

  .cine-process__close {
    align-items: stretch;
    flex-direction: column;
  }

  .cine-outcome-grid {
    grid-template-columns: 1fr;
  }

  .cine-outcome-grid span {
    min-height: 52px;
  }

  .cine-film-section--system {
    padding: 0 18px;
  }

  .cine-system-flow {
    padding: 86px 0 72px;
  }

  .cine-copy-panel--system-intro {
    position: relative;
    top: auto;
    margin-bottom: 40px;
  }

  .cine-capability-rail {
    gap: 32px;
    padding-bottom: 56px;
  }

  .cine-capability {
    min-height: 220px;
    grid-template-columns: 50px 1fr;
  }

  .cine-capability > div {
    padding-top: 23px;
  }

  .cine-capability section {
    padding: 28px 22px;
  }

  .cine-capability h3,
  .cine-pricing__options h3,
  .cine-proof__empty h3 {
    font-size: 30px;
  }

  .cine-capability p {
    font-size: 13px;
  }

  .cine-flat-section {
    padding-right: 20px;
    padding-left: 20px;
  }

  .cine-proof,
  .cine-process,
  .cine-ownership {
    min-height: auto;
    padding-top: 130px;
    padding-bottom: 110px;
  }

  .cine-proof__placeholder {
    min-height: 460px;
  }

  .cine-proof__empty {
    min-height: 410px;
    padding: 32px 22px;
  }

  .cine-proof__chrome i {
    max-width: 190px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .cine-ownership__card {
    padding: 28px 22px;
  }

  .cine-ownership__card li {
    align-items: flex-start;
  }

  .cine-pricing {
    min-height: auto;
    padding-top: 130px;
    padding-bottom: 110px;
  }

  .cine-pricing__options,
  .cine-pricing__options--paths {
    margin-top: 36px;
    grid-template-columns: 1fr;
  }

  .cine-pricing__options article {
    min-height: auto;
  }

  .cine-pricing__notes {
    margin-top: 20px;
  }

  .cine-pricing__close {
    align-items: stretch;
    flex-direction: column;
    gap: 22px;
  }

  .cine-close__content h2 {
    font-size: clamp(52px, 15vw, 76px);
  }

  .cine-footer {
    padding: 70px 20px 28px;
    grid-template-columns: 1fr;
  }

  .cine-footer nav {
    text-align: left;
  }

  .cine-footer > span {
    grid-column: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cinematic-film__frame--current,
  .cinematic-film__frame--outgoing {
    animation: none;
  }

  .cinematic-film,
  .cinematic-film__scrim {
    transition: none;
  }
}

/* Design showcase: cinematic chrome + existing light catalog cards */
.demo-page--catalog {
  background: var(--paper);
  color: var(--ink);
  overflow: visible;
}

.demo-page--catalog .demo-page__main {
  /* Clear fixed cine-header (min-height 74px) plus breathing room */
  padding-top: calc(74px + 36px);
  padding-bottom: 110px;
}

.demo-page--catalog .site-footer {
  position: relative;
  z-index: 1;
}

/* Footer sits on paper; restore readable brand type under cinematic-home rules */
.demo-page--catalog .site-footer .brand-type strong {
  color: var(--ink);
}

.demo-page--catalog .site-footer .brand-type small {
  color: var(--copper-dark);
}

/* Design demo viewer: ShopReady chrome around a same-origin framed site */
.demo-page--viewer {
  background: var(--paper);
  color: var(--ink);
  overflow-x: hidden;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
}

.demo-page--viewer .site-footer {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

.demo-page--viewer .site-footer .brand-type strong {
  color: var(--ink);
}

.demo-page--viewer .site-footer .brand-type small {
  color: var(--copper-dark);
}

.demo-viewer {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  min-width: 0;
  /* Clear fixed cine-header */
  padding-top: 74px;
  width: 100%;
}

.demo-viewer__chrome {
  display: grid;
  gap: 12px;
  padding: 18px max(20px, calc((100vw - 1280px) / 2)) 16px;
  border-bottom: 1px solid rgba(28, 25, 23, 0.1);
  background: rgba(250, 248, 244, 0.96);
}

.demo-viewer__back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--copper-dark, #7a4a2b);
  text-decoration: none;
}

.demo-viewer__back:hover,
.demo-viewer__back:focus-visible {
  text-decoration: underline;
  outline: none;
}

.demo-viewer__identity {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.demo-viewer__trade {
  margin: 0;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(28, 25, 23, 0.62);
}

.demo-viewer__title {
  margin: 0;
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  line-height: 1.15;
  color: var(--ink);
}

.demo-viewer__summary {
  margin: 0;
  max-width: 72ch;
  color: rgba(28, 25, 23, 0.78);
  font-size: 0.98rem;
  line-height: 1.45;
}

.demo-viewer__stage {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  min-height: 0;
  min-width: 0;
  padding: 0;
  background: #e8e4dc;
}

.demo-viewer__frame-label {
  margin: 0;
  padding: 10px max(20px, calc((100vw - 1280px) / 2));
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(28, 25, 23, 0.62);
  border-bottom: 1px solid rgba(28, 25, 23, 0.08);
  background: rgba(250, 248, 244, 0.72);
}

.demo-viewer__frame-shell {
  flex: 1 1 auto;
  min-width: 0;
  width: 100%;
  /* Keep the framed site tall enough to use without horizontal page overflow */
  min-height: min(78svh, 920px);
  height: calc(100svh - 74px - 168px);
  max-height: none;
  background: #fff;
  border: 0;
  overflow: hidden;
}

.demo-viewer__frame {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  border: 0;
  background: #fff;
}

@media (max-width: 720px) {
  .demo-viewer__chrome {
    padding: 14px 16px 12px;
    gap: 10px;
  }

  .demo-viewer__summary {
    font-size: 0.92rem;
  }

  .demo-viewer__frame-shell {
    height: calc(100svh - 74px - 196px);
    min-height: min(70svh, 720px);
  }
}

.cine-info-page {
  min-height: 100svh;
  padding: 0 max(24px, calc((100vw - 1180px) / 2)) 100px;
}

.cine-info-page__header {
  display: flex;
  min-height: 84px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid rgba(233, 236, 239, 0.12);
}

.cine-info-page__header > a:last-child {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--cine-mist);
  font-size: 12px;
  font-weight: 800;
}

.cine-info-page main {
  max-width: 940px;
  padding-top: clamp(90px, 14vw, 170px);
}

.cine-info-page h1 {
  margin: 20px 0 28px;
  color: var(--cine-snow);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(58px, 8vw, 110px);
  font-weight: 400;
  letter-spacing: -0.065em;
  line-height: 0.92;
}

.cine-info-page main > p:not(.cine-kicker) {
  max-width: 760px;
  margin: 0;
  color: rgba(233, 236, 239, 0.72);
  font-size: clamp(16px, 1.5vw, 20px);
  line-height: 1.7;
}

.cine-info-page__icon {
  display: grid;
  width: 58px;
  height: 58px;
  margin-bottom: 30px;
  place-items: center;
  border: 1px solid rgba(25, 211, 197, 0.4);
  color: var(--cine-signal);
}

.cine-info-page--light {
  background: var(--cine-snow);
  color: var(--cine-void);
}

.cine-info-page--light .brand-type strong,
.cine-info-page--light h1 {
  color: var(--cine-void);
}

.cine-info-page--light .brand-type small,
.cine-info-page--light .cine-kicker {
  color: #08776e;
}

.cine-info-page--light .cine-info-page__header {
  border-color: rgba(20, 24, 29, 0.14);
}

.cine-info-page--light .cine-info-page__header > a:last-child,
.cine-info-page--light main > p:not(.cine-kicker) {
  color: rgba(20, 24, 29, 0.7);
}

.cine-info-page__options {
  display: grid;
  margin: 70px 0 38px;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid rgba(20, 24, 29, 0.17);
  border-left: 1px solid rgba(20, 24, 29, 0.17);
}

.cine-info-page:not(.cine-info-page--light) .cine-info-page__options {
  border-top-color: rgba(233, 236, 239, 0.14);
  border-left-color: rgba(233, 236, 239, 0.14);
}

.cine-info-page__options--three {
  grid-template-columns: 1fr 1fr 1fr;
}

.cine-info-page__options.cine-info-page__options--three article {
  padding: clamp(26px, 2.5vw, 36px);
}

.cine-info-page__options.cine-info-page__options--three h2 {
  font-size: clamp(28px, 2.5vw, 38px);
}

.cine-info-page__options--process {
  grid-template-columns: 1fr;
}

.cine-info-page__options article {
  padding: clamp(28px, 4vw, 54px);
  border-right: 1px solid rgba(20, 24, 29, 0.17);
  border-bottom: 1px solid rgba(20, 24, 29, 0.17);
}

.cine-info-page:not(.cine-info-page--light) .cine-info-page__options article {
  border-right-color: rgba(233, 236, 239, 0.14);
  border-bottom-color: rgba(233, 236, 239, 0.14);
}

.cine-info-page__options article > span {
  color: #08776e;
  font-family: Georgia, serif;
}

.cine-info-page:not(.cine-info-page--light) .cine-info-page__options article > span {
  color: var(--cine-signal);
}

.cine-info-page__options h2 {
  margin: 38px 0 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 400;
  letter-spacing: -0.045em;
}

.cine-info-page:not(.cine-info-page--light) .cine-info-page__options h2 {
  color: var(--cine-snow);
}

.cine-info-page__options p {
  color: rgba(20, 24, 29, 0.7);
  font-size: 14px;
  line-height: 1.65;
}

.cine-info-page:not(.cine-info-page--light) .cine-info-page__options p {
  color: rgba(233, 236, 239, 0.72);
}

.cine-info-page__options article > div {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 28px;
  color: #08776e;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.cine-info-page__card-icon {
  display: grid;
  width: 44px;
  height: 44px;
  margin-top: 28px;
  place-items: center;
  border: 1px solid rgba(8, 119, 110, 0.35);
  color: #08776e;
}

.cine-info-page__panel {
  margin: 48px 0;
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid rgba(233, 236, 239, 0.16);
  background: rgba(30, 36, 43, 0.72);
}

.cine-info-page__panel--signal {
  border-color: rgba(25, 211, 197, 0.35);
}

.cine-info-page__panel--light {
  border-color: rgba(20, 24, 29, 0.14);
  background: #fff;
}

.cine-info-page__panel-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  color: var(--cine-signal);
}

.cine-info-page__panel--light .cine-info-page__panel-head {
  color: #08776e;
}

.cine-info-page__panel h2 {
  margin: 0;
  color: var(--cine-snow);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 400;
  letter-spacing: -0.04em;
}

.cine-info-page__panel--light h2 {
  color: var(--cine-void);
}

.cine-info-page__panel > p {
  max-width: 820px;
  margin: 0 0 18px;
  color: rgba(233, 236, 239, 0.72);
  font-size: 15px;
  line-height: 1.7;
}

.cine-info-page__panel--light > p {
  color: rgba(20, 24, 29, 0.72);
}

.cine-info-page__panel a {
  color: var(--cine-signal);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cine-info-page__panel--light a {
  color: #08776e;
}

.cine-info-page__checklist,
.cine-info-page__groundwork {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.cine-info-page__groundwork {
  margin: 20px 0 8px;
}

.cine-info-page__checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgba(233, 236, 239, 0.82);
  font-size: 14px;
  line-height: 1.55;
}

.cine-info-page__checklist li svg {
  flex: 0 0 auto;
  margin-top: 2px;
  color: var(--cine-signal);
}

.cine-info-page__checklist--dark li {
  color: rgba(20, 24, 29, 0.78);
}

.cine-info-page__checklist--dark li svg {
  color: #08776e;
}

.cine-info-page__facts {
  display: grid;
  gap: 0;
  margin: 24px 0;
  border-top: 1px solid rgba(20, 24, 29, 0.12);
}

.cine-info-page__facts > div {
  display: grid;
  gap: 6px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(20, 24, 29, 0.12);
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
}

.cine-info-page__facts dt {
  color: rgba(20, 24, 29, 0.58);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.cine-info-page__facts dd {
  margin: 0;
  color: var(--cine-void);
  font-size: 15px;
  font-weight: 700;
}

.cine-info-page__fine {
  max-width: 860px;
  margin: 24px 0 0;
  color: rgba(233, 236, 239, 0.58);
  font-size: 13px;
  line-height: 1.65;
}

.cine-info-page--light .cine-info-page__fine,
.cine-info-page__panel--light .cine-info-page__fine {
  color: rgba(20, 24, 29, 0.58);
}

.cine-info-page main > .cine-cta-row {
  margin-top: 36px;
}

.cine-cta-row--secondary {
  margin-top: 22px;
  gap: 22px;
  flex-wrap: wrap;
}

.cine-text-link--dark {
  color: var(--cine-void);
  border-bottom-color: #08776e;
}

.cine-info-page--light .cine-button--line-dark {
  border-color: rgba(20, 24, 29, 0.28);
  color: var(--cine-void);
}

.cine-external-source {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cine-external-source:focus-visible {
  outline: 2px solid #08776e;
  outline-offset: 3px;
}

.cine-inquiry-preview__banner {
  margin: 0 0 22px !important;
  padding: 14px 16px;
  border: 1px solid rgba(25, 211, 197, 0.35);
  background: rgba(25, 211, 197, 0.08);
  color: rgba(233, 236, 239, 0.88) !important;
  font-size: 14px !important;
  line-height: 1.6 !important;
}

.cine-inquiry-preview__form {
  display: grid;
  gap: 18px;
}

.cine-inquiry-preview__grid {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr 1fr;
}

.cine-inquiry-preview__grid label {
  display: grid;
  gap: 8px;
  color: rgba(233, 236, 239, 0.82);
  font-size: 13px;
  font-weight: 700;
}

.cine-inquiry-preview__full {
  grid-column: 1 / -1;
}

.cine-inquiry-preview__grid input,
.cine-inquiry-preview__grid select,
.cine-inquiry-preview__grid textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid rgba(233, 236, 239, 0.22);
  border-radius: 0;
  background: rgba(20, 24, 29, 0.55);
  color: var(--cine-snow);
  font: inherit;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.45;
}

.cine-inquiry-preview__grid textarea {
  resize: vertical;
  min-height: 88px;
}

.cine-inquiry-preview__grid input::placeholder,
.cine-inquiry-preview__grid textarea::placeholder {
  color: rgba(233, 236, 239, 0.42);
}

.cine-inquiry-preview__grid input:focus-visible,
.cine-inquiry-preview__grid select:focus-visible,
.cine-inquiry-preview__grid textarea:focus-visible,
.cine-inquiry-preview__actions button:focus-visible {
  outline: 2px solid var(--cine-signal);
  outline-offset: 3px;
}

.cine-inquiry-preview__fieldset {
  margin: 0;
  padding: 14px 16px;
  border: 1px solid rgba(233, 236, 239, 0.18);
}

.cine-inquiry-preview__fieldset legend {
  padding: 0 6px;
  color: rgba(233, 236, 239, 0.82);
  font-size: 13px;
  font-weight: 800;
}

.cine-inquiry-preview__radio {
  display: flex !important;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
  font-weight: 600 !important;
}

.cine-inquiry-preview__radio input {
  width: auto;
  margin: 0;
}

.cine-inquiry-preview__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.cine-inquiry-preview__actions .cine-button:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
}

.cine-inquiry-preview__result {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(233, 236, 239, 0.16);
}

.cine-inquiry-preview__result-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.cine-inquiry-preview__result h3 {
  margin: 0;
  color: var(--cine-snow);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 400;
  letter-spacing: -0.03em;
}

.cine-inquiry-preview__result pre {
  margin: 0 0 18px;
  padding: 18px;
  overflow: auto;
  border: 1px solid rgba(25, 211, 197, 0.28);
  background: rgba(12, 15, 18, 0.72);
  color: rgba(233, 236, 239, 0.9);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 13px;
  line-height: 1.55;
  white-space: pre-wrap;
}

.cine-inquiry-preview__status {
  margin: 16px 0 0;
  color: var(--cine-signal);
  font-size: 13px;
  font-weight: 700;
}

.cine-inquiry-preview .cine-text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: 0;
  border-bottom: 1px solid var(--cine-signal);
  color: var(--cine-mist);
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  padding: 0 0 2px;
}

@media (max-width: 1100px) {
  .cine-pricing__options--paths,
  .cine-info-page__options--three {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 900px) {
  .cine-process__steps {
    grid-template-columns: 1fr 1fr;
  }

  .cine-info-page__facts > div {
    grid-template-columns: 1fr;
  }

  .cine-inquiry-preview__grid {
    grid-template-columns: 1fr;
  }

  .cine-pricing__options--paths,
  .cine-info-page__options--three {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .cine-info-page__header .brand-type {
    display: none;
  }

  .cine-info-page__options,
  .cine-info-page__options--three,
  .cine-process__steps {
    grid-template-columns: 1fr;
  }

  .cine-pricing__close {
    flex-direction: column;
    align-items: stretch;
  }
}

/* �� Homepage features bridge �� */
.cine-features-bridge {
  display: grid;
  gap: clamp(32px, 4vw, 48px);
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: start;
}

.cine-features-bridge__intro h2 {
  margin: 16px 0 18px;
  color: var(--cine-snow);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 1.02;
}

.cine-features-bridge__intro p {
  max-width: 36rem;
  margin: 0 0 24px;
  color: rgba(233, 236, 239, 0.72);
  font-size: 16px;
  line-height: 1.7;
}

.cine-features-bridge__grid {
  display: grid;
  gap: 0;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid rgba(233, 236, 239, 0.14);
  border-left: 1px solid rgba(233, 236, 239, 0.14);
}

.cine-features-bridge__grid article {
  padding: clamp(22px, 2.4vw, 32px);
  border-right: 1px solid rgba(233, 236, 239, 0.14);
  border-bottom: 1px solid rgba(233, 236, 239, 0.14);
  background: rgba(30, 36, 43, 0.45);
}

.cine-features-bridge__grid span {
  color: var(--cine-signal);
  font-family: Georgia, serif;
  font-size: 18px;
}

.cine-features-bridge__grid h3 {
  margin: 14px 0 10px;
  color: var(--cine-snow);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.cine-features-bridge__grid p {
  margin: 0;
  color: rgba(233, 236, 239, 0.68);
  font-size: 14px;
  line-height: 1.55;
}

@media (max-width: 980px) {
  .cine-features-bridge {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .cine-features-bridge__grid {
    grid-template-columns: 1fr;
  }
}

/* —— Features brochure page —— */
.feat-page {
  min-height: 100svh;
  background:
    radial-gradient(1200px 600px at 10% -10%, rgba(25, 211, 197, 0.08), transparent 55%),
    radial-gradient(900px 500px at 90% 0%, rgba(233, 236, 239, 0.04), transparent 50%),
    var(--cine-void);
  color: var(--cine-mist);
}

.feat-page__main {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
  padding: 120px 0 80px;
}

.feat-page--brochure .feat-page__main {
  width: min(1180px, calc(100% - 48px));
}

.bro-page {
  display: grid;
  gap: clamp(56px, 8vw, 96px);
  min-width: 0;
  max-width: 100%;
  overflow-x: clip;
}

.bro-section {
  min-width: 0;
  max-width: 100%;
}

.bro-hero {
  display: grid;
  gap: clamp(28px, 4vw, 48px);
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: center;
}

.bro-hero__copy .cine-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.bro-hero h1 {
  margin: 16px 0 18px;
  color: var(--cine-snow);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(36px, 5.2vw, 64px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1.02;
}

.bro-hero__body {
  margin: 0 0 24px;
  max-width: 36rem;
  color: rgba(233, 236, 239, 0.76);
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.65;
}

.bro-cta-row {
  flex-wrap: wrap;
}

.bro-hero__visual {
  display: grid;
  gap: 18px;
  min-width: 0;
}

.bro-hero__composition {
  position: relative;
  min-height: 240px;
}

.bro-hero__panel {
  border: 1px solid rgba(233, 236, 239, 0.14);
  background: #12161b;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.bro-hero__panel--main {
  width: 92%;
  overflow: hidden;
}

.bro-hero__chrome {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 12px;
  border-bottom: 1px solid rgba(233, 236, 239, 0.1);
  background: rgba(255, 255, 255, 0.03);
}

.bro-hero__chrome span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(233, 236, 239, 0.28);
}

.bro-hero__chrome em {
  margin-left: 8px;
  color: rgba(233, 236, 239, 0.45);
  font-size: 11px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.bro-hero__panel-body {
  display: grid;
  min-height: 168px;
  grid-template-columns: 52px minmax(0, 1fr);
}

.bro-hero__rail {
  display: grid;
  gap: 8px;
  align-content: start;
  padding: 14px 10px;
  border-right: 1px solid rgba(233, 236, 239, 0.08);
  background: rgba(25, 211, 197, 0.05);
}

.bro-hero__rail b {
  display: block;
  height: 8px;
  border-radius: 2px;
  background: rgba(25, 211, 197, 0.3);
}

.bro-hero__main {
  display: grid;
  gap: 12px;
  padding: 14px;
}

.bro-hero__title-bar {
  height: 12px;
  width: 40%;
  border-radius: 2px;
  background: rgba(233, 236, 239, 0.22);
}

.bro-hero__cards {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.bro-hero__cards > div {
  display: grid;
  align-content: end;
  gap: 4px;
  height: 64px;
  padding: 9px;
  border: 1px solid rgba(25, 211, 197, 0.2);
  border-radius: 3px;
  background: rgba(25, 211, 197, 0.07);
}

/* Product-led Features brochure: real, deterministic Works captures. */
.pbro-shot {
  min-width: 0;
  margin: 0;
}

.pbro-shot__open {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--cine-ink) 16%, transparent);
  border-radius: 18px;
  background: #f7f8f9;
  color: inherit;
  box-shadow: 0 24px 70px rgba(9, 18, 32, 0.18);
  cursor: zoom-in;
  text-align: left;
}

.pbro-shot__open:focus-visible {
  outline: 3px solid var(--cine-signal);
  outline-offset: 4px;
}

.pbro-shot__chrome {
  display: flex;
  align-items: center;
  gap: 6px;
  min-height: 34px;
  padding: 0 12px;
  border-bottom: 1px solid rgba(9, 18, 32, 0.1);
  background: #fff;
}

.pbro-shot__chrome i {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: rgba(9, 18, 32, 0.2);
}

.pbro-shot__chrome b {
  margin-left: 5px;
  overflow: hidden;
  color: rgba(9, 18, 32, 0.62);
  font: 650 10px/1.2 var(--font-mono, monospace);
  letter-spacing: 0.08em;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.pbro-shot__open img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: top left;
}

.pbro-shot--phone .pbro-shot__open {
  border-radius: 28px;
}

.pbro-shot--phone .pbro-shot__open img {
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: top center;
}

.pbro-shot__expand {
  position: absolute;
  right: 10px;
  bottom: 10px;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 999px;
  background: rgba(9, 18, 32, 0.82);
  color: #fff;
  backdrop-filter: blur(10px);
}

.pbro-shot figcaption {
  display: grid;
  gap: 3px;
  padding: 12px 4px 0;
  color: color-mix(in srgb, var(--cine-ink) 72%, transparent);
  font-size: 0.85rem;
  line-height: 1.45;
}

.pbro-shot figcaption span,
.pbro-lightbox__head span {
  color: var(--cine-signal);
  font: 700 0.68rem/1.2 var(--font-mono, monospace);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pbro-hero__composition {
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(0, 1fr) minmax(132px, 160px);
  align-items: start;
  min-width: 0;
  padding: 0;
}

.pbro-hero__composition > .pbro-shot--desktop {
  width: 100%;
  grid-column: 1 / -1;
}

.pbro-hero__composition > .pbro-shot--phone {
  width: 100%;
  max-width: 190px;
  grid-column: 2;
  justify-self: end;
}

.pbro-hero__proof {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  grid-column: 1;
  align-content: start;
  align-self: start;
  max-width: 100%;
}

.pbro-hero__proof span {
  padding: 7px 10px;
  border: 1px solid color-mix(in srgb, var(--cine-signal) 35%, transparent);
  border-radius: 999px;
  background: color-mix(in srgb, var(--cine-paper) 92%, transparent);
  color: var(--cine-ink);
  box-shadow: 0 8px 24px rgba(9, 18, 32, 0.1);
  font-size: 0.72rem;
  font-weight: 720;
  backdrop-filter: blur(12px);
}

.pbro-usecase-visual {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-self: center;
  align-items: start;
  min-width: 0;
}

.pbro-usecase-visual > .pbro-shot + .pbro-shot {
  width: auto;
  margin: 0;
}

.pbro-usecase-visual--field > .pbro-shot:first-child,
.pbro-usecase-visual--ledger > .pbro-shot:first-child {
  width: 100%;
  max-width: 190px;
  margin: 0;
  justify-self: center;
}

.pbro-usecase-visual--pipeline {
  grid-template-columns: 1fr;
}

.pbro-usecase-visual--field > .pbro-shot + .pbro-shot,
.pbro-usecase-visual--ledger > .pbro-shot + .pbro-shot {
  width: 100%;
  margin: 0;
}

.pbro-growth-gallery {
  display: grid;
  grid-template-columns: minmax(0, 640px);
  gap: 18px;
  margin-top: 28px;
  padding: 6px 4px 18px;
}

.pbro-growth-gallery .pbro-shot__open {
  box-shadow: 0 15px 42px rgba(9, 18, 32, 0.13);
}

.pbro-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  padding: clamp(14px, 3vw, 44px);
  overflow-y: auto;
  place-items: center;
  background: rgba(5, 10, 18, 0.82);
  backdrop-filter: blur(14px);
}

.pbro-lightbox__panel {
  width: min(1380px, 100%);
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 38px 120px rgba(0, 0, 0, 0.45);
}

.pbro-lightbox__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 3px 3px 12px;
}

.pbro-lightbox__head h2 {
  margin: 3px 0 0;
  color: #091220;
  font-size: clamp(1.15rem, 2vw, 1.75rem);
}

.pbro-lightbox__head button {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(9, 18, 32, 0.16);
  border-radius: 999px;
  background: #fff;
  color: #091220;
  cursor: pointer;
}

.pbro-lightbox__panel > img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 76vh;
  border: 1px solid rgba(9, 18, 32, 0.12);
  border-radius: 12px;
  object-fit: contain;
  object-position: top center;
}

.pbro-lightbox__panel > p {
  margin: 12px 4px 2px;
  color: rgba(9, 18, 32, 0.72);
}

@media (max-width: 980px) {
  .pbro-hero__composition {
    grid-template-columns: minmax(0, 1fr) minmax(140px, 180px);
  }

}

@media (max-width: 760px) {
  .pbro-hero__composition {
    grid-template-columns: 1fr;
  }

  .pbro-hero__composition > .pbro-shot--phone {
    width: min(68%, 230px);
    max-width: none;
    grid-column: 1;
    justify-self: center;
  }

  .pbro-hero__proof {
    grid-column: 1;
  }

  .pbro-hero__proof span:nth-child(3) {
    display: none;
  }

  .pbro-usecase-visual > .pbro-shot + .pbro-shot {
    width: 100%;
    margin: 0;
  }

  .pbro-usecase-visual--field > .pbro-shot:first-child,
  .pbro-usecase-visual--ledger > .pbro-shot:first-child {
    width: min(68%, 230px);
    max-width: none;
    margin: 0;
    justify-self: center;
  }

  .pbro-usecase-visual {
    grid-template-columns: 1fr;
  }

  .pbro-lightbox {
    padding: 8px;
  }

  .pbro-lightbox__panel {
    padding: 9px;
    border-radius: 14px;
  }
}

.bro-hero__cards small,
.bro-hero__cards strong {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.bro-hero__cards small {
  color: var(--cine-signal);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.bro-hero__cards strong {
  color: rgba(233, 236, 239, 0.76);
  font-size: 10px;
}

.bro-hero__panel--phone {
  position: absolute;
  right: 0;
  bottom: -8px;
  width: min(118px, 32%);
  padding: 10px 8px 12px;
  border-radius: 16px;
  background: #0e1216;
}

.bro-hero__phone-notch {
  width: 36%;
  height: 6px;
  margin: 0 auto 10px;
  border-radius: 999px;
  background: rgba(233, 236, 239, 0.18);
}

.bro-hero__phone-rows {
  display: grid;
  gap: 8px;
}

.bro-hero__phone-rows > div {
  display: grid;
  align-content: center;
  gap: 2px;
  height: 28px;
  padding: 4px 6px;
  border-radius: 4px;
  background: rgba(25, 211, 197, 0.1);
  border: 1px solid rgba(25, 211, 197, 0.18);
}

.bro-hero__phone-rows > div:nth-child(2) {
  background: rgba(25, 211, 197, 0.2);
}

.bro-hero__phone-rows small,
.bro-hero__phone-rows strong {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.bro-hero__phone-rows small {
  color: rgba(233, 236, 239, 0.45);
  font-size: 6px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.bro-hero__phone-rows strong {
  color: rgba(233, 236, 239, 0.78);
  font-size: 8px;
}

/* Journey strip — contained horizontal scroll only (no page overflow) */
.bro-journey {
  display: flex;
  flex-wrap: nowrap;
  gap: 0;
  margin: 0;
  max-width: 100%;
  padding: 14px 10px;
  list-style: none;
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-x: contain;
  border: 1px solid rgba(233, 236, 239, 0.12);
  background: rgba(30, 36, 43, 0.55);
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scroll-behavior: smooth;
}

.bro-journey__step {
  position: relative;
  display: grid;
  flex: 1 0 auto;
  min-width: 72px;
  justify-items: center;
  gap: 6px;
  padding: 0 6px;
  text-align: center;
}

.bro-journey__verb {
  color: var(--cine-signal);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.bro-journey__node {
  display: grid;
  place-items: center;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid rgba(25, 211, 197, 0.65);
  background: rgba(25, 211, 197, 0.15);
}

.bro-journey__node i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--cine-signal);
}

.bro-journey__label {
  color: rgba(233, 236, 239, 0.82);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.bro-journey__connector {
  position: absolute;
  top: 28px;
  left: calc(50% + 12px);
  width: calc(100% - 24px);
  height: 2px;
  background: linear-gradient(90deg, rgba(25, 211, 197, 0.55), rgba(25, 211, 197, 0.15));
}

/* Sections */
.bro-section__head {
  max-width: 40rem;
  margin-bottom: clamp(22px, 3vw, 32px);
}

.bro-section__head .cine-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.bro-section__head h2 {
  margin: 12px 0 12px;
  color: var(--cine-snow);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 3.6vw, 42px);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.bro-section__head p {
  margin: 0;
  color: rgba(233, 236, 239, 0.68);
  font-size: 15px;
  line-height: 1.6;
}

/* Use cases */
.bro-usecases {
  display: grid;
  gap: clamp(28px, 4vw, 44px);
}

.bro-usecase {
  display: grid;
  gap: clamp(20px, 3vw, 36px);
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  align-items: center;
  padding: clamp(20px, 2.5vw, 28px);
  border: 1px solid rgba(233, 236, 239, 0.12);
  background: rgba(30, 36, 43, 0.45);
}

.bro-usecase:nth-child(even) {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.bro-usecase:nth-child(even) .bro-usecase__copy {
  order: 2;
}

.bro-usecase:nth-child(even) .bro-device {
  order: 1;
}

.bro-usecase__kicker {
  margin: 0 0 8px;
  color: var(--cine-signal);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.bro-usecase h3 {
  margin: 0 0 16px;
  color: var(--cine-snow);
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 750;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.bro-usecase__facts {
  display: grid;
  gap: 12px;
  margin: 0 0 16px;
}

.bro-usecase__facts dt {
  margin: 0 0 4px;
  color: rgba(233, 236, 239, 0.45);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.bro-usecase__facts dd {
  margin: 0;
  color: rgba(233, 236, 239, 0.78);
  font-size: 14px;
  line-height: 1.55;
}

.bro-usecase__proof p {
  margin: 0 0 8px;
  color: var(--cine-signal);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.bro-usecase__proof ul {
  margin: 0;
  padding-left: 1.1rem;
  color: rgba(233, 236, 239, 0.74);
  font-size: 13px;
  line-height: 1.5;
}

.bro-usecase__proof li + li {
  margin-top: 6px;
}

/* Device miniatures */
.bro-device {
  margin: 0;
  min-width: 0;
}

.bro-device figcaption {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 8px;
  color: rgba(233, 236, 239, 0.48);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.bro-device figcaption i {
  font-style: normal;
  color: #ffc45c;
}

.bro-device__frame {
  overflow: hidden;
  border: 1px solid rgba(233, 236, 239, 0.14);
  background: #12161b;
}

.bro-device--phone .bro-device__frame {
  width: min(220px, 100%);
  margin-inline: auto;
  border-radius: 18px;
}

.bro-device__chrome {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 12px;
  border-bottom: 1px solid rgba(233, 236, 239, 0.1);
  background: rgba(255, 255, 255, 0.03);
}

.bro-device__chrome span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(233, 236, 239, 0.28);
}

.bro-device__chrome em {
  margin-left: 8px;
  color: rgba(233, 236, 239, 0.45);
  font-size: 11px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.bro-device__body {
  min-height: 160px;
  padding: 14px;
}

.bro-mini--pipeline {
  display: grid;
  gap: 14px;
}

.bro-mini__cols {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.bro-mini__col {
  display: grid;
  gap: 8px;
  padding: 10px;
  border: 1px solid rgba(233, 236, 239, 0.1);
  background: rgba(255, 255, 255, 0.02);
}

.bro-mini__col b {
  color: rgba(233, 236, 239, 0.55);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.bro-mini__col u {
  display: block;
  height: 28px;
  border-radius: 3px;
  background: rgba(25, 211, 197, 0.1);
  border: 1px solid rgba(25, 211, 197, 0.18);
  text-decoration: none;
}

.bro-mini__timeline {
  display: grid;
  gap: 6px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.bro-mini__timeline span {
  height: 8px;
  border-radius: 999px;
  background: rgba(25, 211, 197, 0.22);
}

.bro-mini__timeline span:nth-child(2) {
  background: rgba(25, 211, 197, 0.45);
}

.bro-mini--field {
  display: grid;
  gap: 10px;
}

.bro-mini__day-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4px;
}

.bro-mini__day-head b {
  display: block;
  width: 42%;
  height: 10px;
  border-radius: 2px;
  background: rgba(233, 236, 239, 0.22);
}

.bro-mini__day-head i {
  display: block;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(25, 211, 197, 0.28);
}

.bro-mini__day-card {
  display: grid;
  gap: 6px;
  grid-template-columns: 40px minmax(0, 1fr);
  padding: 10px;
  border: 1px solid rgba(233, 236, 239, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.02);
}

.bro-mini__day-card.is-active {
  border-color: rgba(25, 211, 197, 0.4);
  background: rgba(25, 211, 197, 0.08);
}

.bro-mini__day-card span {
  color: var(--cine-signal);
  font-size: 10px;
  font-weight: 800;
}

.bro-mini__day-card b,
.bro-mini__day-card u {
  display: block;
  height: 8px;
  border-radius: 2px;
  background: rgba(233, 236, 239, 0.16);
  text-decoration: none;
  grid-column: 2;
}

.bro-mini__day-card u {
  width: 70%;
  background: rgba(233, 236, 239, 0.1);
}

.bro-mini--ledger {
  display: grid;
  gap: 12px;
}

.bro-mini__split {
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr 1fr;
}

.bro-mini__panel {
  display: grid;
  gap: 8px;
  padding: 12px;
  border: 1px solid rgba(233, 236, 239, 0.1);
  background: rgba(255, 255, 255, 0.02);
}

.bro-mini__panel--signal {
  border-color: rgba(25, 211, 197, 0.28);
  background: rgba(25, 211, 197, 0.06);
}

.bro-mini__panel b {
  color: rgba(233, 236, 239, 0.7);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.bro-mini__panel u {
  display: block;
  height: 8px;
  border-radius: 2px;
  background: rgba(233, 236, 239, 0.12);
  text-decoration: none;
}

.bro-mini__bar {
  height: 8px;
  border-radius: 999px;
  background: rgba(233, 236, 239, 0.08);
  overflow: hidden;
}

.bro-mini__bar i {
  display: block;
  height: 100%;
  background: var(--cine-signal);
}

.bro-mini__records {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.bro-mini__records span {
  height: 36px;
  border-radius: 3px;
  border: 1px solid rgba(233, 236, 239, 0.1);
  background: rgba(233, 236, 239, 0.05);
}

/* Growth track */
.bro-growth__track {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid rgba(233, 236, 239, 0.12);
  background: rgba(30, 36, 43, 0.4);
}

.bro-growth__stage {
  position: relative;
  display: grid;
  gap: 12px;
  padding: clamp(18px, 2.2vw, 26px);
  border-right: 1px solid rgba(233, 236, 239, 0.1);
}

.bro-growth__stage:last-child {
  border-right: 0;
}

.bro-growth__num {
  color: var(--cine-signal);
  font-family: Georgia, serif;
  font-size: 22px;
}

.bro-growth__stage h3 {
  margin: 0 0 8px;
  color: var(--cine-snow);
  font-size: 17px;
  font-weight: 750;
  letter-spacing: -0.02em;
}

.bro-growth__stage p {
  margin: 0;
  color: rgba(233, 236, 239, 0.68);
  font-size: 13px;
  line-height: 1.55;
}

.bro-growth__arrow {
  display: none;
}

/* Roles */
.bro-roles {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.bro-role {
  min-width: 0;
  padding: clamp(16px, 2vw, 22px);
  border: 1px solid rgba(233, 236, 239, 0.12);
  background: rgba(30, 36, 43, 0.5);
}

.bro-role__icon {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  margin-bottom: 14px;
  border: 1px solid rgba(25, 211, 197, 0.35);
  border-radius: 10px;
  background: rgba(25, 211, 197, 0.1);
  color: var(--cine-signal);
}

.bro-role h3 {
  margin: 0 0 6px;
  color: var(--cine-snow);
  font-size: 16px;
  font-weight: 750;
}

.bro-role__value {
  margin: 0 0 10px;
  color: var(--cine-signal);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
}

.bro-role__body {
  margin: 0;
  color: rgba(233, 236, 239, 0.66);
  font-size: 13px;
  line-height: 1.55;
}

/* Caveats */
.bro-caveats {
  padding: clamp(16px, 2vw, 22px);
  border: 1px solid rgba(233, 236, 239, 0.1);
  border-left: 3px solid rgba(255, 196, 92, 0.55);
  background: rgba(30, 36, 43, 0.35);
}

.bro-caveats__head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  color: #ffc45c;
}

.bro-caveats__head h2 {
  margin: 0;
  color: rgba(233, 236, 239, 0.88);
  font-size: 14px;
  font-weight: 750;
  letter-spacing: 0.02em;
}

.bro-caveats ul {
  margin: 0;
  padding-left: 1.1rem;
  color: rgba(233, 236, 239, 0.62);
  font-size: 13px;
  line-height: 1.55;
}

.bro-caveats li + li {
  margin-top: 6px;
}

/* Optional compact coverage */
.bro-coverage__details {
  border: 1px solid rgba(233, 236, 239, 0.12);
  background: rgba(20, 24, 29, 0.55);
}

.bro-coverage__details > summary {
  position: relative;
  display: grid;
  gap: 8px;
  padding: clamp(16px, 2vw, 22px);
  padding-right: 3rem;
  cursor: pointer;
  list-style: none;
}

.bro-coverage__details > summary::-webkit-details-marker {
  display: none;
}

.bro-coverage__details > summary::after {
  content: "";
  position: absolute;
  top: clamp(18px, 2.2vw, 24px);
  right: clamp(16px, 2vw, 22px);
  width: 0.55rem;
  height: 0.55rem;
  border-right: 2px solid rgba(233, 236, 239, 0.55);
  border-bottom: 2px solid rgba(233, 236, 239, 0.55);
  transform: rotate(45deg);
  transition: transform 0.15s ease;
}

.bro-coverage__details[open] > summary::after {
  top: clamp(22px, 2.4vw, 28px);
  transform: rotate(225deg);
}

.bro-coverage__details > summary:focus-visible {
  outline: 2px solid var(--cine-signal);
  outline-offset: -2px;
}

.bro-coverage__kicker {
  color: var(--cine-signal);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.bro-coverage__title {
  color: var(--cine-snow);
  font-size: 18px;
  font-weight: 750;
  letter-spacing: -0.02em;
}

.bro-coverage__summary {
  color: rgba(233, 236, 239, 0.62);
  font-size: 13px;
  line-height: 1.5;
}

.bro-coverage__body {
  display: grid;
  gap: 8px;
  padding: 0 clamp(16px, 2vw, 22px) clamp(16px, 2vw, 22px);
  border-top: 1px solid rgba(233, 236, 239, 0.08);
}

.bro-coverage__group {
  border: 1px solid rgba(233, 236, 239, 0.08);
  background: rgba(30, 36, 43, 0.4);
}

.bro-coverage__group > summary {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
  padding: 12px 14px;
  cursor: pointer;
  list-style: none;
  color: var(--cine-snow);
  font-size: 14px;
}

.bro-coverage__group > summary::-webkit-details-marker {
  display: none;
}

.bro-coverage__group > summary:focus-visible {
  outline: 2px solid var(--cine-signal);
  outline-offset: -2px;
}

.bro-coverage__group > summary span {
  color: rgba(233, 236, 239, 0.45);
  font-size: 12px;
  font-weight: 700;
}

.bro-coverage__group-summary {
  margin: 0;
  padding: 0 14px 10px;
  color: rgba(233, 236, 239, 0.6);
  font-size: 13px;
  line-height: 1.5;
}

.bro-coverage__list {
  margin: 0;
  padding: 0 14px 14px;
  list-style: none;
  display: grid;
  gap: 8px;
}

.bro-coverage__list li {
  display: grid;
  gap: 2px;
  padding: 10px 12px;
  border: 1px solid rgba(233, 236, 239, 0.08);
  background: rgba(12, 15, 18, 0.4);
  scroll-margin-top: 96px;
}

.bro-coverage__outcome {
  color: rgba(233, 236, 239, 0.88);
  font-size: 13px;
  font-weight: 650;
  line-height: 1.35;
}

.bro-coverage__menu {
  color: rgba(233, 236, 239, 0.45);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

/* Close */
.bro-close {
  max-width: 640px;
  padding: clamp(24px, 3.5vw, 36px);
  border: 1px solid rgba(25, 211, 197, 0.28);
  background: rgba(30, 36, 43, 0.55);
}

.bro-close h2 {
  margin: 12px 0 12px;
  color: var(--cine-snow);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 3.2vw, 40px);
  font-weight: 400;
  letter-spacing: -0.035em;
}

.bro-close > p:not(.cine-kicker) {
  margin: 0 0 20px;
  color: rgba(233, 236, 239, 0.72);
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 980px) {
  .bro-hero {
    grid-template-columns: 1fr;
  }

  .bro-usecase,
  .bro-usecase:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .bro-usecase:nth-child(even) .bro-usecase__copy,
  .bro-usecase:nth-child(even) .bro-device {
    order: initial;
  }

  .bro-growth__track {
    grid-template-columns: 1fr;
  }

  .bro-growth__stage {
    border-right: 0;
    border-bottom: 1px solid rgba(233, 236, 239, 0.1);
  }

  .bro-growth__stage:last-child {
    border-bottom: 0;
  }

  .bro-roles {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  .feat-page__main {
    width: min(100% - 32px, 1180px);
    padding-top: 104px;
  }

  .bro-roles {
    grid-template-columns: 1fr;
  }

  .bro-hero h1 {
    font-size: clamp(32px, 9vw, 44px);
  }

  .bro-journey__step {
    min-width: 64px;
  }

  .bro-hero__panel--phone {
    width: min(104px, 34%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .bro-journey {
    scroll-behavior: auto;
  }

  .bro-coverage__details > summary::after,
  .bro-coverage__details[open] > summary::after {
    transition: none;
  }
}
