/* Design system: cinematic trade photography, transparent utility header,
   compact dark conversion panel, 8px rhythm, and restrained green accents. */
*, *::before, *::after { box-sizing: border-box; }

:root {
  --paper: #f1f0e9;
  --paper-light: #faf9f3;
  --ink: #111713;
  --muted: #5f6962;
  --green: #0d6b49;
  --lime: #dfff60;
  --line: rgba(17, 23, 19, .16);
  --white-line: rgba(255, 255, 255, .26);
  --display: "Avenir Next Condensed", "Arial Narrow", Avenir, sans-serif;
  --serif: "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  --sans: Avenir, "Helvetica Neue", Helvetica, sans-serif;
  --mono: "SFMono-Regular", Consolas, monospace;
}

html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: var(--sans); }
body, a { color: inherit; }
img { display: block; max-width: 100%; }
a { text-underline-offset: .22em; }
button, summary, a { -webkit-tap-highlight-color: transparent; }

.kicker {
  margin: 0 0 1.1rem;
  font: 800 .68rem/1.3 var(--mono);
  letter-spacing: .14em;
  text-transform: uppercase;
}

.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  overflow: hidden;
  color: #fff;
  background: #17251e;
  isolation: isolate;
}

.hero__image,
.hero__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__image { z-index: -3; object-fit: cover; object-position: 66% center; transform: scale(1.015); }
.hero__shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(6, 15, 10, .55) 0%, rgba(6, 15, 10, .3) 48%, rgba(6, 15, 10, .16) 78%),
    linear-gradient(0deg, rgba(5, 12, 8, .38), transparent 52%);
}
.hero__provenance,
.final-cta__provenance {
  position: absolute;
  z-index: 1;
  right: max(1rem, calc((100vw - 88rem) / 2));
  top: 6.8rem;
  margin: 0;
  color: rgba(255, 255, 255, .72);
  font: 700 .58rem/1.2 var(--mono);
  letter-spacing: .08em;
  text-transform: uppercase;
}

.nav {
  align-self: start;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100% - 2rem, 74rem);
  min-height: 5.25rem;
  margin: 0 auto;
  padding: .7rem 0;
  border: 0;
  background: transparent;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  color: #fff;
  font-size: .9rem;
  font-weight: 850;
  letter-spacing: .12em;
  text-decoration: none;
  text-transform: uppercase;
}

.brand__mark {
  display: grid;
  width: 3rem;
  height: 3rem;
  place-items: center;
  color: var(--ink);
  background: var(--lime);
  border-radius: 50%;
  font: 900 1rem/1 var(--display);
}

.nav__links { display: flex; align-items: center; gap: clamp(.9rem, 2vw, 2rem); }
.nav__links > a { font-size: .72rem; font-weight: 800; text-decoration: none; text-transform: uppercase; }
.nav__cta { padding: .8rem 1rem; color: var(--ink); background: rgba(255, 255, 255, .96); white-space: nowrap; }

.hero__grid {
  align-self: center;
  display: grid;
  width: min(100% - 2rem, 68rem);
  grid-template-columns: minmax(0, 27rem) minmax(22rem, 25rem);
  justify-content: center;
  align-items: center;
  gap: clamp(3rem, 7vw, 7rem);
  margin: 0 auto;
  padding: 7rem 0 3rem;
}

.hero__content {
  width: auto;
  margin: 0;
  padding: 0;
  text-align: center;
}

.hero__content .kicker { color: var(--lime); }
.hero h1 {
  max-width: 12ch;
  margin: 0;
  font: 700 clamp(3.35rem, 4.7vw, 4.85rem)/.98 var(--serif);
  letter-spacing: -.04em;
  text-transform: none;
  text-wrap: balance;
}

.hero__subtitle {
  max-width: 43rem;
  margin: clamp(1.4rem, 3vw, 2.2rem) auto 0;
  color: rgba(255, 255, 255, .84);
  font-size: clamp(1rem, 1.65vw, 1.28rem);
  line-height: 1.55;
  text-wrap: pretty;
}

.hero__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: .7rem; margin-top: 1.3rem; }
.button {
  display: inline-flex;
  min-height: 3.25rem;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  padding: .85rem 1.2rem;
  border: 1px solid transparent;
  font-size: .72rem;
  font-weight: 850;
  letter-spacing: .035em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}
.button:hover { transform: translateY(-2px); }
.button--light { color: var(--ink); background: #fff; }
.button--light:hover { background: var(--lime); }
.button--glass { color: #fff; border-color: var(--white-line); background: rgba(4, 12, 7, .2); }
.button--glass:hover { background: rgba(4, 12, 7, .48); }
.button--dark { color: #fff; background: var(--ink); }
.button--dark:hover { color: var(--ink); background: var(--lime); }

.hero__panel {
  width: 100%;
  padding: clamp(1.5rem, 3vw, 2.25rem);
  color: #fff;
  background: rgba(4, 12, 7, .2);
  border: 1px solid var(--white-line);
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.hero__panel > .kicker { margin-bottom: .4rem; color: var(--lime); text-align: center; }
.hero__panel h2 { margin: 0; font: 900 clamp(1.6rem, 2.6vw, 2.1rem)/.95 var(--display); letter-spacing: -.04em; text-align: center; text-transform: uppercase; }
.hero__video { position: relative; display: grid; place-items: center; gap: .8rem; aspect-ratio: 16 / 9; margin: 1rem 0 1.15rem; padding: 1.25rem; text-align: center; background: rgba(0, 0, 0, .35); border: 1px solid var(--white-line); }
.hero__video-play { display: grid; width: 3.4rem; height: 3.4rem; place-items: center; padding-left: .2rem; color: var(--ink); background: var(--lime); border-radius: 50%; font-size: 1.1rem; }
.hero__video-note { margin: 0; color: rgba(255, 255, 255, .66); font-size: .68rem; line-height: 1.5; }
.hero__watch-step { margin: 0 0 .5rem; color: rgba(255, 255, 255, .58); font-size: .61rem; font-weight: 800; letter-spacing: .06em; text-align: center; text-transform: uppercase; }
.hero__panel-action { display: flex; min-height: 3rem; align-items: center; justify-content: space-between; padding: .7rem .85rem; color: var(--ink); background: var(--lime); font-size: .66rem; font-weight: 850; letter-spacing: .06em; text-decoration: none; text-transform: uppercase; }
.hero__proof { display: flex; justify-content: center; gap: .7rem; margin-top: 1rem; }
.hero__proof span { display: grid; grid-template-columns: auto minmax(0, 1fr); align-items: center; gap: .5rem; padding: .6rem .75rem; background: rgba(7, 13, 9, .32); border: 1px solid rgba(255, 255, 255, .24); }
.hero__proof strong { font: 800 1rem/1 var(--serif); }
.hero__proof small { max-width: 7rem; color: rgba(255, 255, 255, .66); font-size: .56rem; line-height: 1.3; text-transform: uppercase; }

.gallery-chat { position: fixed; right: 1rem; bottom: 1rem; z-index: 20; width: min(15.5rem, calc(100vw - 2rem)); padding: .85rem; color: var(--ink); background: #fff; border-radius: .55rem; box-shadow: 0 18px 60px rgba(0, 0, 0, .25); }
.gallery-chat > div { display: grid; grid-template-columns: auto 1fr; align-items: center; gap: .6rem; }
.gallery-chat > div > span { display: grid; width: 2.1rem; height: 2.1rem; place-items: center; color: var(--ink); background: var(--lime); border-radius: 50%; font-weight: 900; }
.gallery-chat > div p { display: grid; gap: .05rem; margin: 0; }
.gallery-chat > div strong { font-size: .72rem; }
.gallery-chat > div small { color: var(--muted); font-size: .55rem; }
.gallery-chat > p { margin: .75rem 0; padding: .65rem; color: #4e5951; background: #f2f5f2; font-size: .66rem; line-height: 1.45; }
.gallery-chat > a { display: flex; min-height: 2.75rem; align-items: center; justify-content: space-between; padding: .65rem .75rem; color: var(--ink); background: var(--lime); font-size: .65rem; font-weight: 850; letter-spacing: .05em; text-decoration: none; text-transform: uppercase; }

.section { width: min(100% - 2rem, 88rem); margin-inline: auto; padding-block: clamp(5rem, 10vw, 9rem); }
.section-heading { max-width: 55rem; }
.section-heading .kicker, .pricing .kicker, .proof .kicker { color: var(--green); }
.section-heading h2,
.proof h2,
.pricing h2,
.final-cta h2 {
  margin: 0;
  font: 900 clamp(3.2rem, 7.3vw, 7rem)/.84 var(--display);
  letter-spacing: -.055em;
  text-transform: uppercase;
  text-wrap: balance;
}
.section-heading > p:last-child,
.section-heading--row > p,
.pricing__copy > p:last-child {
  max-width: 38rem;
  color: var(--muted);
  font-size: .98rem;
  line-height: 1.65;
}
.section-heading--row { display: grid; max-width: none; grid-template-columns: minmax(0, 1.45fr) minmax(16rem, .55fr); gap: clamp(2rem, 7vw, 8rem); align-items: end; }
.section-heading--row > p { margin: 0 0 .4rem; }

.module-grid { display: grid; grid-template-columns: repeat(2, 1fr); margin-top: clamp(3rem, 7vw, 6rem); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.module {
  min-height: 20rem;
  padding: clamp(1.5rem, 4vw, 3rem);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, .22);
}
.module--wide { grid-column: span 2; min-height: 26rem; background: var(--paper-light); }
.module--dark { grid-column: span 2; color: #fff; background: var(--ink); }
.module__number { display: block; color: var(--green); font: 800 .67rem/1 var(--mono); letter-spacing: .1em; text-transform: uppercase; }
.module--dark .module__number { color: var(--lime); }
.module h3 { max-width: 12ch; margin: clamp(4rem, 9vw, 8rem) 0 1rem; font: 900 clamp(2.4rem, 5vw, 5.2rem)/.86 var(--display); letter-spacing: -.045em; text-transform: uppercase; }
.module:not(.module--wide) h3 { margin-top: 5rem; font-size: clamp(2rem, 3.8vw, 3.8rem); }
.module p { max-width: 34rem; margin: 0; color: var(--muted); font-size: .9rem; line-height: 1.65; }
.module--dark p { color: rgba(255, 255, 255, .68); }

.demos { width: 100%; padding-inline: max(1rem, calc((100vw - 88rem) / 2)); background: var(--ink); }
.demos .section-heading { color: #fff; }
.demos .kicker { color: var(--lime); }
.demos .section-heading--row > p { color: rgba(255, 255, 255, .58); }
.demo-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1px; margin-top: clamp(3rem, 7vw, 6rem); background: rgba(255, 255, 255, .18); border: 1px solid rgba(255, 255, 255, .18); }
.demo-card { display: grid; min-width: 0; color: #fff; background: #172019; text-decoration: none; }
.demo-card__media { position: relative; aspect-ratio: 16 / 9; overflow: hidden; background: var(--surface); }
.demo-card__media::after { position: absolute; inset: 0; content: ""; background: linear-gradient(0deg, rgba(6, 13, 9, .55), transparent 52%); }
.demo-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 420ms cubic-bezier(.2, .7, .2, 1); }
.demo-card:hover img { transform: scale(1.035); }
.demo-card__number {
  position: absolute;
  z-index: 1;
  top: 1rem;
  left: 1rem;
  display: grid;
  width: 2.6rem;
  height: 2.6rem;
  place-items: center;
  color: var(--ink);
  background: var(--accent);
  font: 850 .65rem/1 var(--mono);
}
.image-disclosure {
  position: absolute;
  z-index: 1;
  right: .8rem;
  bottom: .8rem;
  padding: .45rem .55rem;
  color: rgba(255, 255, 255, .88);
  border: 1px solid rgba(255, 255, 255, .24);
  background: rgba(5, 12, 8, .62);
  font: 700 .54rem/1.2 var(--mono);
  letter-spacing: .07em;
  text-transform: uppercase;
}
.demo-card__body { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: .9rem 1.25rem; align-items: end; min-height: 15rem; padding: clamp(1.25rem, 3vw, 2.2rem); }
.demo-card__trade { grid-column: 1 / -1; align-self: start; color: rgba(255, 255, 255, .56); font: 800 .64rem/1.3 var(--mono); letter-spacing: .1em; text-transform: uppercase; }
.demo-card strong { grid-column: 1 / -1; max-width: 13ch; font: 900 clamp(1.8rem, 3.6vw, 3.5rem)/.88 var(--display); letter-spacing: -.04em; text-transform: uppercase; }
.demo-card__description { max-width: 35rem; color: rgba(255, 255, 255, .56); font-size: .76rem; line-height: 1.5; }
.demo-card__link { color: var(--lime); font-size: .68rem; font-weight: 850; text-transform: uppercase; }

.steps { padding: 0; margin: clamp(3rem, 7vw, 6rem) 0 0; list-style: none; border-top: 1px solid var(--line); }
.steps li { display: grid; grid-template-columns: 5rem 1fr; gap: clamp(1rem, 5vw, 5rem); padding: clamp(2rem, 5vw, 4rem) 0; border-bottom: 1px solid var(--line); }
.steps li > span { padding-top: .45rem; color: var(--green); font: 850 .7rem/1 var(--mono); }
.steps h3 { margin: 0; font: 900 clamp(2rem, 4.2vw, 4rem)/.9 var(--display); letter-spacing: -.04em; text-transform: uppercase; }
.steps p { max-width: 45rem; margin: 1rem 0 0; color: var(--muted); font-size: .93rem; line-height: 1.65; }

.proof { display: grid; width: 100%; grid-template-columns: minmax(0, 1.08fr) minmax(22rem, .92fr); padding: 0; background: var(--paper-light); }
.proof__image { position: relative; min-height: 47rem; }
.proof__image img { width: 100%; height: 100%; object-fit: cover; }
.proof__copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(3rem, 7vw, 7rem); }
.proof__copy > p:not(.kicker) { margin: 2rem 0; color: var(--muted); line-height: 1.7; }
.proof ul { padding: 0; margin: 0; list-style: none; border-top: 1px solid var(--line); }
.proof li { padding: 1rem 0; border-bottom: 1px solid var(--line); font-size: .78rem; font-weight: 800; text-transform: uppercase; }

.pricing { display: grid; grid-template-columns: 1fr minmax(24rem, .85fr); gap: clamp(3rem, 9vw, 10rem); align-items: center; }
.pricing__copy .button { margin-top: 1.2rem; }
.price-card { padding: clamp(1.5rem, 4vw, 3rem); border: 1px solid var(--line); background: var(--paper-light); box-shadow: 1rem 1rem 0 rgba(13, 107, 73, .16); }
.price-card__line { display: grid; grid-template-columns: 1fr auto; gap: .5rem 1rem; align-items: baseline; padding: 1.4rem 0; border-bottom: 1px solid var(--line); }
.price-card__line > span { font: 800 .66rem/1 var(--mono); letter-spacing: .1em; text-transform: uppercase; }
.price-card__line strong { font: 900 clamp(3rem, 5.5vw, 5.5rem)/.8 var(--display); letter-spacing: -.045em; }
.price-card__line small { grid-column: 2; color: var(--muted); font-size: .65rem; text-align: right; text-transform: uppercase; }
.price-card > p { margin: 1.5rem 0; color: var(--muted); font-size: .78rem; line-height: 1.6; }

.faq { border-top: 1px solid var(--line); }
.faq__list { max-width: 62rem; margin: clamp(3rem, 7vw, 6rem) 0 0 auto; }
.faq details { border-top: 1px solid var(--line); }
.faq details:last-child { border-bottom: 1px solid var(--line); }
.faq summary { position: relative; padding: 1.5rem 3rem 1.5rem 0; cursor: pointer; font: 850 clamp(1.1rem, 2vw, 1.45rem)/1.25 var(--sans); list-style: none; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { position: absolute; top: 1.45rem; right: .2rem; content: "+"; color: var(--green); font: 500 1.5rem/1 var(--sans); }
.faq details[open] summary::after { content: "−"; }
.faq details p { max-width: 45rem; margin: 0; padding: 0 3rem 1.6rem 0; color: var(--muted); line-height: 1.65; }

.final-cta { position: relative; display: grid; min-height: 42rem; place-items: center; overflow: hidden; color: #fff; background: #17251e; isolation: isolate; }
.final-cta > img, .final-cta__shade { position: absolute; z-index: -2; inset: 0; width: 100%; height: 100%; }
.final-cta > img { object-fit: cover; }
.final-cta__shade { z-index: -1; background: rgba(6, 15, 10, .68); }
.final-cta__content { width: min(100% - 2rem, 70rem); text-align: center; }
.final-cta__provenance { top: auto; bottom: 1.2rem; }
.final-cta .kicker { color: var(--lime); }
.final-cta h2 { max-width: 11ch; margin-inline: auto; }
.final-cta__subtitle { max-width: 42rem; margin: 1.6rem auto 0; color: rgba(255, 255, 255, .78); font-size: clamp(.95rem, 1.5vw, 1.15rem); line-height: 1.6; text-wrap: pretty; }
.final-cta .button { margin-top: 1.3rem; }

.footer { display: grid; grid-template-columns: 1fr minmax(18rem, 2fr) 1fr; gap: 2rem; align-items: center; padding: 2.5rem max(1rem, calc((100vw - 88rem) / 2)); color: rgba(255, 255, 255, .64); background: var(--ink); font-size: .7rem; line-height: 1.55; }
.footer .brand { justify-self: start; }
.footer p { margin: 0; text-align: center; }
.footer > a:last-child { justify-self: end; color: #fff; font-weight: 800; text-decoration: none; text-transform: uppercase; }

:focus-visible { outline: 3px solid var(--lime); outline-offset: 4px; }
.button--light:focus-visible, .button--dark:focus-visible, .demo-card:focus-visible, .faq summary:focus-visible { outline-color: #17a36e; }

@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .nav { background: rgba(10, 20, 14, .92); }
  .button--glass { background: rgba(4, 12, 7, .72); }
}

@media (max-width: 1500px) {
  .gallery-chat { display: none; }
}

@media (max-width: 880px) {
  .nav__links > a:not(.nav__cta) { display: none; }
  .hero { min-height: auto; }
  .hero__grid { grid-template-columns: minmax(0, 1fr); width: min(100% - 2rem, 40rem); gap: 2rem; padding: 7rem 0 3rem; }
  .hero h1 { max-width: 11ch; }
  .hero__panel { width: min(100%, 32rem); }
  .section-heading--row, .proof, .pricing { grid-template-columns: 1fr; }
  .proof__image { min-height: 32rem; }
  .pricing { gap: 3rem; }
  .price-card { max-width: 42rem; }
  .footer { grid-template-columns: 1fr; text-align: left; }
  .footer p { text-align: left; }
  .footer > a:last-child { justify-self: start; }
}

@media (max-width: 680px) {
  .nav .brand > span:last-child { display: none; }
  .nav { min-height: 4.35rem; margin-top: .55rem; }
  .nav__links { gap: .8rem; }
  .hero__image { object-position: 62% center; }
  .hero h1 { font-size: clamp(3rem, 15vw, 4.8rem); }
  .hero__content { padding-bottom: 0; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__grid { padding-top: 6.2rem; }
  .module-grid { grid-template-columns: 1fr; }
  .module, .module--wide { grid-column: auto; min-height: 18rem; }
  .module h3, .module:not(.module--wide) h3 { margin-top: 4rem; }
  .demo-grid { grid-template-columns: 1fr; }
  .demo-card__body { min-height: 11.5rem; }
  .steps li { grid-template-columns: 3rem 1fr; }
  .proof__image { min-height: 25rem; }
  .proof__copy { padding: 4rem 1rem; }
  .pricing { width: 100%; padding-inline: 1rem; }
  .price-card { box-shadow: .55rem .55rem 0 rgba(13, 107, 73, .16); }
}

@media (max-width: 430px) {
  .brand > span:last-child { display: none; }
  .nav__links { gap: .6rem; }
  .nav__links > a { font-size: .61rem; }
  .hero__subtitle { font-size: .95rem; }
  .demo-card__body { grid-template-columns: 1fr; }
  .demo-card__description { display: none; }
  .demo-card__link { margin-top: .5rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}
