.apps-page {
  --apps-green: #123d31;
  --apps-green-deep: #0b2c25;
  --apps-olive: #688331;
  --apps-olive-dark: #536d26;
  --apps-gold: #d39a45;
  --apps-cream: #f5f0e8;
  --apps-paper: #fffdf9;
  --apps-soft: #f7f3eb;
  --apps-ink: #1d2421;
  --apps-muted: #626a65;
  --apps-line: #ddd8ce;
  color: var(--apps-ink);
  background: var(--apps-paper);
}

.apps-page *,
.apps-page *::before,
.apps-page *::after {
  box-sizing: border-box;
  letter-spacing: 0;
}

.apps-page a,
.apps-page button {
  touch-action: manipulation;
}

.apps-page a:focus-visible,
.apps-page button:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
  box-shadow: 0 0 0 5px var(--apps-green-deep);
}

.apps-hero {
  position: relative;
  min-height: 560px;
  isolation: isolate;
  overflow: hidden;
  background: var(--apps-cream);
}

.apps-hero__media {
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.apps-hero::before {
  position: absolute;
  z-index: 1;
  top: 0;
  bottom: 0;
  left: 0;
  width: 52%;
  border-radius: 0 50% 50% 0 / 0 58% 58% 0;
  background: var(--apps-cream);
  content: "";
}

.apps-hero__inner {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 560px;
  align-items: center;
}

.apps-hero__copy {
  width: 47%;
  max-width: 620px;
  padding: 44px 0;
}

.apps-eyebrow {
  margin: 0 0 10px;
  color: var(--apps-olive-dark);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.45;
  text-transform: uppercase;
}

.apps-hero__eyebrow {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  gap: 9px;
  margin-bottom: 22px;
  padding: 8px 15px;
  border: 1px solid rgba(83, 109, 38, 0.58);
  border-radius: 999px;
  background: rgba(255, 253, 249, 0.72);
}

.apps-hero__copy h1 {
  max-width: 610px;
  margin: 0 0 22px;
  color: var(--apps-green);
  font: 700 54px/1.08 var(--sans);
  overflow-wrap: anywhere;
}

.apps-hero__copy > p:not(.apps-eyebrow) {
  max-width: 570px;
  margin: 0;
  color: #444b47;
  font-size: 17px;
  line-height: 1.65;
}

.apps-hero__actions,
.apps-scene__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 26px;
}

.apps-btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.3;
  text-align: center;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.apps-btn--primary {
  color: #fff;
  background: var(--apps-olive);
}

.apps-btn--primary:hover {
  color: #fff;
  background: var(--apps-olive-dark);
  box-shadow: 0 8px 20px rgba(83, 109, 38, 0.2);
}

.apps-btn--secondary {
  color: var(--apps-green);
  border-color: var(--apps-olive);
  background: rgba(255, 253, 249, 0.72);
}

.apps-btn--secondary:hover {
  color: #fff;
  background: var(--apps-green);
  border-color: var(--apps-green);
}

.apps-btn--gold {
  width: 100%;
  color: #fff;
  background: var(--apps-gold);
}

.apps-btn--gold:hover {
  color: #fff;
  background: #b97d29;
}

.apps-quick-nav {
  border-top: 1px solid var(--apps-line);
  border-bottom: 1px solid var(--apps-line);
  background: rgba(255, 253, 249, 0.98);
}

.apps-quick-nav__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.apps-quick-nav a {
  display: flex;
  min-width: 0;
  min-height: 72px;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-right: 1px solid var(--apps-line);
  color: #343a36;
  transition: color 180ms ease, background-color 180ms ease;
}

.apps-quick-nav a:last-child {
  border-right: 0;
}

.apps-quick-nav a:hover {
  color: var(--apps-green);
  background: var(--apps-cream);
}

.apps-quick-nav span {
  display: grid;
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--apps-olive);
  font-size: 11px;
  font-weight: 800;
}

.apps-quick-nav strong {
  min-width: 0;
  font-size: 13px;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.apps-section {
  padding: 88px 0;
}

.apps-heading {
  max-width: 870px;
  margin: 0 auto;
  text-align: center;
}

.apps-heading--compact {
  max-width: 800px;
}

.apps-heading h2 {
  margin: 0;
  color: var(--apps-ink);
  font: 700 46px/1.13 var(--sans);
  overflow-wrap: anywhere;
}

.apps-heading > p:last-child {
  max-width: 780px;
  margin: 0 auto;
  color: var(--apps-muted);
  font-size: 16px;
  line-height: 1.7;
}

.apps-heading__rule {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 18px auto 16px;
  color: var(--apps-olive);
}

.apps-heading__rule::before,
.apps-heading__rule::after {
  width: 88px;
  height: 1px;
  background: var(--apps-line);
  content: "";
}

.apps-heading__rule i {
  font-size: 12px;
}

.apps-intro {
  background: var(--apps-paper);
}

.apps-scene {
  scroll-margin-top: calc(var(--header-height) + 12px);
  border-top: 1px solid rgba(18, 61, 49, 0.07);
  background: var(--apps-paper);
}

.apps-scene--soft {
  background: var(--apps-soft);
}

.apps-scene__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: 64px;
}

.apps-scene--reverse .apps-scene__media {
  order: 2;
}

.apps-scene--reverse .apps-scene__copy {
  order: 1;
}

.apps-scene__media {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(18, 61, 49, 0.14);
  border-radius: 8px;
  aspect-ratio: 11 / 10;
  background: var(--apps-cream);
  box-shadow: 0 18px 42px rgba(21, 43, 35, 0.1);
}

.apps-scene__media::after {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
  left: 0;
  height: 42%;
  background: linear-gradient(180deg, rgba(8, 39, 31, 0), rgba(8, 39, 31, 0.78));
  content: "";
}

.apps-scene__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.apps-scene__media--hotel img {
  object-position: center 56%;
}

.apps-scene__media--dining img {
  object-position: center 52%;
}

.apps-scene__media--commercial img {
  object-position: center 54%;
}

.apps-scene__number {
  position: absolute;
  z-index: 2;
  top: 20px;
  left: 20px;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 3px solid rgba(255, 255, 255, 0.78);
  border-radius: 50%;
  color: #fff;
  background: var(--apps-olive);
  font-size: 12px;
  font-weight: 800;
}

.apps-scene__media figcaption {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 22px;
  left: 24px;
  display: flex;
  flex-direction: column;
  color: #fff;
}

.apps-scene__media figcaption span {
  margin-bottom: 4px;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.4;
  text-transform: uppercase;
}

.apps-scene__media figcaption strong {
  font: 700 30px/1.15 var(--sans);
  overflow-wrap: anywhere;
}

.apps-scene__copy {
  min-width: 0;
}

.apps-scene__copy h2 {
  margin: 0 0 16px;
  color: var(--apps-ink);
  font: 700 46px/1.08 var(--sans);
  overflow-wrap: anywhere;
}

.apps-scene__description {
  margin: 0;
  color: var(--apps-muted);
  font-size: 16px;
  line-height: 1.68;
}

.apps-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0;
  padding: 0;
  list-style: none;
}

.apps-tags li {
  padding: 7px 11px;
  border: 1px solid var(--apps-line);
  border-radius: 999px;
  color: #4d534f;
  background: #f7f5ef;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.3;
}

.apps-features {
  border-top: 1px solid var(--apps-line);
}

.apps-features article {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  min-height: 78px;
  padding: 13px 0;
  border-bottom: 1px solid var(--apps-line);
}

.apps-feature__badge {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(83, 109, 38, 0.52);
  border-radius: 50%;
  color: var(--apps-olive-dark);
  background: #fffdf8;
  font-size: 9px;
  font-weight: 800;
}

.apps-features h3 {
  margin: 0 0 3px;
  color: var(--apps-ink);
  font-size: 15px;
  line-height: 1.35;
}

.apps-features p {
  margin: 0;
  color: var(--apps-muted);
  font-size: 13px;
  line-height: 1.52;
}

.apps-moq {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 16px;
  padding: 12px 14px;
  border-left: 3px solid var(--apps-gold);
  background: #fbf5e8;
  color: #6f6555;
  font-size: 12px;
  line-height: 1.45;
}

.apps-moq strong {
  flex: 0 0 auto;
  color: #80602b;
}

.apps-text-link {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  gap: 10px;
  padding: 10px 4px;
  color: var(--apps-green);
  font-size: 13px;
  font-weight: 800;
}

.apps-text-link:hover {
  color: var(--apps-gold);
}

.apps-capabilities {
  background: #f0ece3;
}

.apps-capability-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 38px;
}

.apps-capability-grid article {
  min-width: 0;
  padding: 28px 22px;
  border: 1px solid var(--apps-line);
  border-radius: 8px;
  background: #fff;
  text-align: center;
}

.apps-capability-grid article > i {
  display: grid;
  width: 50px;
  height: 50px;
  margin: 0 auto 16px;
  place-items: center;
  border: 1px solid rgba(83, 109, 38, 0.25);
  border-radius: 50%;
  color: var(--apps-olive);
  background: #f5f7eb;
  font-size: 20px;
}

.apps-capability-grid h3 {
  margin: 0 0 8px;
  color: var(--apps-green);
  font-size: 17px;
  line-height: 1.35;
}

.apps-capability-grid p {
  margin: 0;
  color: var(--apps-muted);
  font-size: 13px;
  line-height: 1.58;
}

.apps-process {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin: 26px 0 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--apps-line);
  border-radius: 8px;
  background: #fff;
  list-style: none;
}

.apps-process li {
  display: flex;
  min-width: 0;
  min-height: 72px;
  align-items: center;
  gap: 11px;
  padding: 15px 16px;
  border-right: 1px solid var(--apps-line);
}

.apps-process li:last-child {
  border-right: 0;
}

.apps-process span {
  color: var(--apps-gold);
  font-size: 11px;
  font-weight: 900;
}

.apps-process strong {
  min-width: 0;
  color: #404741;
  font-size: 12px;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.apps-resources {
  background: var(--apps-paper);
}

.apps-resource-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-top: 38px;
}

.apps-resource-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--apps-line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(21, 43, 35, 0.06);
}

.apps-resource-card__cover {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--apps-green);
}

.apps-resource-card__cover::after {
  position: absolute;
  inset: 0;
  background: rgba(8, 39, 31, 0.58);
  content: "";
}

.apps-resource-card__cover > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 240ms ease;
}

.apps-resource-card:hover .apps-resource-card__cover > img {
  transform: scale(1.025);
}

.apps-resource-card__cover > div {
  position: absolute;
  z-index: 1;
  inset: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #fff;
}

.apps-resource-card__cover small {
  font-size: 9px;
  font-weight: 800;
}

.apps-resource-card__cover span {
  margin-top: auto;
  color: #dce6d5;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.apps-resource-card__cover strong {
  margin-top: 6px;
  font: 700 25px/1.12 var(--sans);
  overflow-wrap: anywhere;
}

.apps-resource-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  padding: 20px;
}

.apps-resource-card__body h3 {
  margin: 0 0 7px;
  color: var(--apps-green);
  font-size: 17px;
  line-height: 1.35;
}

.apps-resource-card__body p {
  margin: 0 0 16px;
  color: var(--apps-muted);
  font-size: 13px;
  line-height: 1.56;
}

.apps-resource-card__body a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  color: var(--apps-green);
  font-size: 13px;
  font-weight: 800;
}

.apps-resource-card__body a:hover {
  color: var(--apps-gold);
}

.apps-project {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 82px 0;
  background: #e9dfcf;
}

.apps-project::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: rgba(246, 240, 231, 0.82);
  content: "";
}

.apps-project__media {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.apps-project__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(390px, 0.78fr);
  align-items: center;
  gap: 64px;
}

.apps-project__copy h2 {
  max-width: 650px;
  margin: 0 0 16px;
  color: var(--apps-green);
  font: 700 48px/1.08 var(--sans);
  overflow-wrap: anywhere;
}

.apps-project__copy > p:not(.apps-eyebrow) {
  max-width: 670px;
  margin: 0;
  color: #525a55;
  font-size: 16px;
  line-height: 1.7;
}

.apps-project__copy > ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
  margin: 24px 0;
  padding: 0;
  list-style: none;
}

.apps-project__copy > ul li {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #34443a;
  font-size: 13px;
  font-weight: 700;
}

.apps-project__copy > ul i {
  color: var(--apps-olive);
}

.apps-project__contact {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
}

.apps-project__contact a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 9px;
  color: var(--apps-green);
  font-size: 14px;
  font-weight: 800;
}

.apps-project__panel {
  min-width: 0;
  padding: 30px;
  border: 1px solid rgba(18, 61, 49, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 46px rgba(21, 43, 35, 0.12);
}

.apps-project__panel h3 {
  margin: 0;
  color: var(--apps-green);
  font: 700 30px/1.15 var(--sans);
  overflow-wrap: anywhere;
}

.apps-project__panel ol {
  margin: 22px 0;
  padding: 0;
  list-style: none;
}

.apps-project__panel li {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  align-items: center;
  gap: 11px;
  min-height: 50px;
  border-bottom: 1px solid var(--apps-line);
  color: #505852;
  font-size: 13px;
}

.apps-project__panel li:last-child {
  border-bottom: 0;
}

.apps-project__panel li span {
  color: var(--apps-gold);
  font-size: 11px;
  font-weight: 900;
}

@media (max-width: 1100px) {
  .apps-hero,
  .apps-hero__inner {
    min-height: 530px;
  }

  .apps-hero__media {
    width: 66%;
  }

  .apps-hero::before {
    width: 62%;
  }

  .apps-hero__copy {
    width: 57%;
  }

  .apps-hero__copy h1 {
    font-size: 46px;
  }

  .apps-section {
    padding: 76px 0;
  }

  .apps-scene__grid,
  .apps-project__grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 36px;
  }

  .apps-scene--reverse .apps-scene__media,
  .apps-scene--reverse .apps-scene__copy {
    order: initial;
  }

  .apps-scene__media {
    aspect-ratio: 16 / 10;
  }

  .apps-capability-grid,
  .apps-resource-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .apps-process {
    grid-template-columns: minmax(0, 1fr);
  }

  .apps-process li {
    min-height: 58px;
    border-right: 0;
    border-bottom: 1px solid var(--apps-line);
  }

  .apps-process li:last-child {
    border-bottom: 0;
  }

  .apps-project__copy {
    max-width: 760px;
  }
}

@media (max-width: 760px) {
  .apps-hero,
  .apps-hero__inner {
    min-height: 470px;
  }

  .apps-hero__media {
    left: 0;
    width: 100%;
    object-position: right center;
  }

  .apps-hero::before {
    width: 100%;
    border-radius: 0;
    background: rgba(245, 240, 232, 0.88);
  }

  .apps-hero__copy {
    width: 100%;
    max-width: 600px;
    padding: 30px 0;
  }

  .apps-hero__eyebrow {
    min-height: 34px;
    margin-bottom: 15px;
    padding: 6px 11px;
  }

  .apps-hero__copy h1 {
    max-width: 600px;
    margin-bottom: 14px;
    font-size: 38px;
  }

  .apps-hero__copy > p:not(.apps-eyebrow) {
    font-size: 16px;
    line-height: 1.55;
  }

  .apps-hero__actions {
    margin-top: 18px;
  }

  .apps-quick-nav__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .apps-quick-nav a:nth-child(2n) {
    border-right: 0;
  }

  .apps-quick-nav a:nth-child(-n + 2) {
    border-bottom: 1px solid var(--apps-line);
  }

  .apps-quick-nav a {
    min-height: 68px;
    gap: 9px;
    padding: 11px 10px;
  }

  .apps-quick-nav span {
    width: 29px;
    height: 29px;
    flex-basis: 29px;
    font-size: 10px;
  }

  .apps-quick-nav strong {
    font-size: 12px;
  }

  .apps-section {
    padding: 64px 0;
  }

  .apps-heading h2,
  .apps-scene__copy h2 {
    font-size: 36px;
  }

  .apps-heading > p:last-child,
  .apps-scene__description {
    font-size: 16px;
  }

  .apps-scene__media {
    aspect-ratio: 4 / 3;
  }

  .apps-scene__media figcaption {
    right: 18px;
    bottom: 18px;
    left: 18px;
  }

  .apps-scene__media figcaption strong {
    font-size: 25px;
  }

  .apps-scene__number {
    top: 14px;
    left: 14px;
    width: 40px;
    height: 40px;
  }

  .apps-moq {
    align-items: flex-start;
    flex-direction: column;
    gap: 3px;
  }

  .apps-scene__actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 8px;
  }

  .apps-scene__actions .apps-btn,
  .apps-scene__actions .apps-text-link {
    width: 100%;
    justify-content: center;
  }

  .apps-capability-grid,
  .apps-resource-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .apps-project {
    padding: 64px 0;
  }

  .apps-project__copy h2 {
    font-size: 38px;
  }

  .apps-project__copy > ul {
    grid-template-columns: minmax(0, 1fr);
  }

  .apps-project__contact {
    flex-direction: column;
    gap: 2px;
  }

  .apps-project__panel {
    padding: 24px 20px;
  }

  .apps-project__panel h3 {
    font-size: 27px;
  }
}

@media (max-width: 440px) {
  .apps-hero__copy h1 {
    font-size: 34px;
  }

  .apps-hero__actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 8px;
  }

  .apps-hero__actions .apps-btn {
    width: 100%;
  }

  .apps-heading h2,
  .apps-scene__copy h2 {
    font-size: 33px;
  }

  .apps-tags li {
    font-size: 11px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .apps-page *,
  .apps-page *::before,
  .apps-page *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .apps-resource-card:hover .apps-resource-card__cover > img {
    transform: none;
  }
}
