:root {
  color-scheme: dark;
  --bg: #090908;
  --panel: #11110f;
  --panel-soft: #181713;
  --text: #f6f2e8;
  --muted: #b6afa0;
  --line: rgba(246, 242, 232, 0.14);
  --gold: #f0a23a;
  --coral: #ff5c3d;
  --cyan: #54d6d8;
  --green: #a4d65e;
  --ink: #090908;
  --max: 1180px;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.38);
  --shadow-soft: 0 18px 46px rgba(0, 0, 0, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  background:
    linear-gradient(rgba(246, 242, 232, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(246, 242, 232, 0.028) 1px, transparent 1px),
    radial-gradient(circle at 15% 0%, rgba(240, 162, 58, 0.11), transparent 34rem),
    linear-gradient(180deg, #060606 0%, var(--bg) 42%, #0f0f0d 100%);
  background-size: 44px 44px, 44px 44px, auto, auto;
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image: linear-gradient(120deg, rgba(255, 255, 255, 0.045), transparent 24%, transparent 76%, rgba(240, 162, 58, 0.055));
  opacity: 0.5;
}

::selection {
  background: rgba(240, 162, 58, 0.9);
  color: #0b0a08;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  min-height: 76px;
  padding: 16px clamp(18px, 4vw, 56px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  background: rgba(9, 9, 8, 0.72);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
  transition: min-height 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled {
  min-height: 68px;
  background: rgba(8, 8, 7, 0.9);
  box-shadow: 0 12px 38px rgba(0, 0, 0, 0.28);
}

.brand,
.nav,
.hero-actions,
.direct-contact,
.footer {
  display: flex;
  align-items: center;
}

.brand {
  gap: 11px;
  font-weight: 950;
  letter-spacing: 0;
  font-size: 1.3rem;
  white-space: nowrap;
}

.brand-logo {
  width: 42px;
  height: 42px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: none;
  mix-blend-mode: screen;
}

.nav {
  gap: clamp(12px, 2vw, 28px);
  color: var(--text);
  font-size: 1.04rem;
  font-weight: 750;
}

.nav a {
  position: relative;
  padding: 8px 0;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav a:hover,
.footer a:hover,
.direct-contact a:hover {
  color: var(--gold);
}

.header-cta,
.btn {
  border-radius: 8px;
  font-weight: 800;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.header-cta {
  padding: 10px 16px;
  background: var(--text);
  color: var(--ink);
  box-shadow: 0 10px 28px rgba(246, 242, 232, 0.1);
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border: 1px solid transparent;
  overflow: hidden;
}

.btn:hover,
.header-cta:hover {
  transform: translateY(-2px);
}

.btn.primary {
  background: var(--gold);
  color: var(--ink);
  box-shadow: 0 15px 34px rgba(240, 162, 58, 0.22);
}

.btn.ghost {
  border-color: rgba(246, 242, 232, 0.28);
  color: var(--text);
  background: rgba(246, 242, 232, 0.045);
  backdrop-filter: blur(12px);
}

.hero {
  position: relative;
  min-height: 94vh;
  display: grid;
  align-items: end;
  padding: 150px clamp(18px, 6vw, 72px) 42px;
  overflow: hidden;
  isolation: isolate;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 38%;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(0deg, #090908 0%, transparent 100%);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 108%;
  object-fit: cover;
  object-position: center right;
  transform: translateY(3%);
  filter: none;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(6, 6, 6, 0.78) 0%, rgba(6, 6, 6, 0.4) 30%, rgba(6, 6, 6, 0.02) 62%, rgba(6, 6, 6, 0.04) 100%),
    linear-gradient(0deg, rgba(6, 6, 6, 0.34) 0%, rgba(6, 6, 6, 0) 52%, rgba(6, 6, 6, 0.18) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(660px, 100%);
}

.eyebrow,
.section-kicker,
.role,
.deal-box span {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.eyebrow::before,
.section-kicker::before {
  content: "";
  width: 32px;
  height: 2px;
  background: currentColor;
  opacity: 0.75;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 680px;
  margin-bottom: 22px;
  font-size: clamp(2.85rem, 6.4vw, 6.05rem);
  line-height: 0.92;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4.4vw, 4.25rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.14rem;
}

.hero-copy {
  max-width: 590px;
  color: #ddd5c7;
  font-size: clamp(1.04rem, 1.55vw, 1.22rem);
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin: 30px 0 34px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(760px, 100%);
  margin: 0;
  border: 1px solid rgba(246, 242, 232, 0.18);
  background: rgba(246, 242, 232, 0.12);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(16px);
}

.hero-stats div {
  padding: 18px;
  background: rgba(12, 12, 10, 0.68);
  transition: background 180ms ease, transform 180ms ease;
}

.hero-stats div:hover {
  background: rgba(240, 162, 58, 0.12);
  transform: translateY(-2px);
}

.hero-stats dt {
  font-size: clamp(1.6rem, 4vw, 2.8rem);
  font-weight: 900;
  line-height: 1;
}

.hero-stats dd {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.section {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(68px, 10vw, 120px) 0;
  position: relative;
}

.split,
.cases-header,
.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(30px, 6vw, 78px);
  align-items: start;
}

.lead-stack {
  color: var(--muted);
  font-size: 1.12rem;
}

.qualification {
  padding: 18px 20px;
  background: rgba(240, 162, 58, 0.1);
  border: 1px solid rgba(240, 162, 58, 0.34);
  border-radius: 8px;
  color: var(--text);
  font-weight: 800;
}

.feature-grid {
  margin-top: 54px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.feature-grid article {
  position: relative;
  overflow: hidden;
  min-height: 248px;
  padding: 28px;
  background:
    radial-gradient(circle at 16% 0%, rgba(240, 162, 58, 0.18), transparent 36%),
    linear-gradient(180deg, rgba(246, 242, 232, 0.055), rgba(246, 242, 232, 0.018)),
    #11110f;
  border: 1px solid rgba(246, 242, 232, 0.16);
  border-radius: 8px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
}

.feature-grid article::before,
.feature-grid article::after,
.feature-grid article i {
  display: none !important;
  content: none !important;
}

.feature-grid article:last-child {
  border-right: 1px solid rgba(246, 242, 232, 0.16);
}

.feature-grid span {
  display: inline-flex;
  min-width: 40px;
  min-height: 30px;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
  background: rgba(84, 214, 216, 0.1);
  border: 1px solid rgba(84, 214, 216, 0.26);
  border-radius: 8px;
  color: var(--cyan);
  font-weight: 900;
}

.feature-grid article h3 {
  font-size: 1.24rem;
}

.feature-grid p,
.cases-header p,
.founder p,
.plan-panel p,
.contact-copy p {
  color: var(--muted);
}

.timeline p {
  color: #6f6253;
}

.founder-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.founder {
  display: grid;
  grid-template-columns: 42% 1fr;
  gap: 24px;
  min-height: 460px;
  padding: 18px;
  background: var(--panel-soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  align-items: end;
}

.founder img {
  width: 100%;
  height: 100%;
  min-height: 410px;
  object-fit: cover;
  border-radius: 7px;
}

.founder .role,
.feature-grid article:nth-child(2) span {
  color: var(--green);
}

.profile-link {
  display: inline-flex;
  width: fit-content;
  min-height: 40px;
  align-items: center;
  margin-top: 8px;
  padding: 9px 14px;
  background: rgba(84, 214, 216, 0.12);
  border: 1px solid rgba(84, 214, 216, 0.35);
  border-radius: 8px;
  color: var(--text);
  font-weight: 900;
}

.profile-link:hover {
  border-color: var(--gold);
}

.app-showcase {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  align-items: start;
}

.app-showcase img {
  width: 100%;
  height: clamp(420px, 45vw, 560px);
  object-fit: cover;
  object-position: top center;
  background: #161410;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.app-showcase .app-shot-full {
  object-fit: contain;
  background: #f7f7f8;
  padding: 0;
}

.projects {
  padding-top: 26px;
}

.projects-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.62fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: end;
}

.projects-header p {
  color: var(--muted);
  font-size: 1.08rem;
}

.project-columns {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: 18px;
  margin-top: 36px;
}

.project-group {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.project-group > span {
  grid-column: 1 / -1;
  padding: 18px 22px;
  background: #f4efe5;
  color: #12100c;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.76rem;
}

.project-group article {
  position: relative;
  overflow: hidden;
  min-height: 190px;
  padding: 24px;
  background: var(--panel);
}

.project-group h3 {
  margin-bottom: 12px;
  font-size: clamp(1.25rem, 2vw, 1.65rem);
}

.project-group p {
  margin-bottom: 0;
  color: var(--muted);
}

.project-group.live {
  grid-template-columns: 1fr;
}

.project-group.live > span {
  background: var(--gold);
}

.project-group.live article {
  background:
    linear-gradient(135deg, rgba(84, 214, 216, 0.1), transparent 58%),
    var(--panel-soft);
}

.section-cta {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.process {
  width: 100%;
  max-width: none;
  padding-inline: max(18px, calc((100vw - var(--max)) / 2));
  background: #f4efe5;
  color: #12100c;
}

.process .section-kicker,
.timeline span {
  color: #9d471d;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 36px;
  background: rgba(18, 16, 12, 0.18);
  border: 1px solid rgba(18, 16, 12, 0.18);
}

.timeline article {
  min-height: 250px;
  padding: 30px;
  background: #fffaf0;
}

.timeline span {
  display: block;
  margin-bottom: 44px;
  font-weight: 900;
  text-transform: uppercase;
}

.stack {
  padding-top: clamp(58px, 8vw, 94px);
}

.stack-header {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.72fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: end;
}

.stack-header p {
  color: var(--muted);
  font-size: 1.08rem;
}

.stack-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(120px, 1fr));
  justify-content: center;
  gap: 12px;
  margin-top: 34px;
  padding: clamp(20px, 3vw, 30px);
  background:
    linear-gradient(135deg, rgba(84, 214, 216, 0.08), transparent 42%),
    var(--panel);
  border: 1px solid rgba(246, 242, 232, 0.16);
  border-radius: 8px;
}

@media (max-width: 1180px) {
  .stack-grid {
    grid-template-columns: repeat(4, minmax(120px, 1fr));
  }
}

.stack-grid span {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  background: rgba(246, 242, 232, 0.07);
  border: 1px solid rgba(246, 242, 232, 0.12);
  border-radius: 8px;
  color: var(--text);
  font-weight: 850;
  text-align: center;
  line-height: 1.25;
}

.stack-grid span:nth-child(3n + 1) {
  border-color: rgba(240, 162, 58, 0.34);
}

.stack-grid span:nth-child(3n + 2) {
  border-color: rgba(84, 214, 216, 0.28);
}

.plan-panel {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 34px;
  padding: clamp(24px, 5vw, 54px);
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.plan-panel > * {
  position: relative;
  z-index: 1;
}

.deal-box {
  position: relative;
  overflow: hidden;
  display: flex;
  min-height: 360px;
  flex-direction: column;
  justify-content: center;
  padding: 28px;
  background: #f4efe5;
  color: #11100c;
  border-radius: 8px;
}

.split-badge {
  display: inline-grid;
  gap: 4px;
  width: fit-content;
  margin-bottom: 18px;
  padding: 14px 18px;
  background: #11100c;
  color: #f4efe5;
  border-radius: 8px;
}

.split-badge strong {
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  line-height: 1;
  white-space: nowrap;
}

.split-badge small {
  color: #cfc6b5;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.deal-list {
  display: grid;
  gap: 8px;
  margin: 0 0 22px;
  padding-left: 18px;
  color: #443b2e;
  font-weight: 700;
}

.deal-box p {
  color: #574b3d;
}

.plan-panel,
.plan-panel *,
.deal-box,
.deal-box * {
  animation: none !important;
}

.plan-panel:hover,
.deal-box:hover {
  transform: none;
  box-shadow: none;
}

.logo-strip {
  display: grid;
  grid-template-columns: repeat(7, minmax(80px, 1fr));
  gap: 1px;
  margin: 34px 0 16px;
  background: var(--line);
  border: 1px solid var(--line);
}

.logo-strip img {
  width: 100%;
  height: 96px;
  object-fit: contain;
  padding: 18px;
  background: #0d0d0c;
}

.tvn-logo {
  width: 100%;
  height: 96px;
  display: grid;
  place-items: center;
  background: #0d0d0c;
  color: #fff;
  font-size: 2rem;
  font-weight: 950;
  letter-spacing: 0;
}

.photo-mosaic {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 230px;
  gap: 14px;
}

.photo-mosaic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.photo-mosaic img:nth-child(1) {
  grid-column: span 2;
  grid-row: span 2;
  object-position: center;
}

.photo-mosaic img:nth-child(2),
.photo-mosaic img:nth-child(3) {
  grid-row: span 2;
}

.photo-mosaic img:nth-child(6),
.photo-mosaic img:nth-child(9) {
  grid-column: span 2;
}

.photo-mosaic img:nth-child(9) {
  object-position: center 28%;
}

.contact {
  align-items: center;
  grid-template-columns: minmax(0, 0.82fr) minmax(520px, 1.18fr);
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 4vw, 34px);
  background: var(--panel-soft);
  border: 1px solid var(--line);
  border-radius: 8px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-weight: 700;
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(246, 242, 232, 0.18);
  border-radius: 8px;
  padding: 14px 15px;
  background: #0c0c0b;
  color: var(--text);
  font: inherit;
}

input:focus,
textarea:focus {
  outline: 2px solid rgba(240, 162, 58, 0.62);
  outline-offset: 2px;
}

.direct-contact {
  display: grid;
  gap: 10px;
  color: var(--muted);
  font-size: 0.92rem;
}

.contact-row {
  display: grid;
  grid-template-columns: 118px 150px minmax(270px, 1fr);
  gap: 18px;
  align-items: center;
  padding: 10px 0;
  border-top: 1px solid rgba(246, 242, 232, 0.1);
}

.contact-row a {
  overflow-wrap: anywhere;
}

.linkedin-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.linkedin-icon {
  width: 22px;
  height: 22px;
  display: inline-grid;
  place-items: center;
  background: #0a66c2;
  color: #fff;
  border-radius: 5px;
  font-size: 0.72rem;
  font-weight: 950;
  line-height: 1;
}

.footer {
  position: relative;
  justify-content: center;
  gap: 18px;
  padding: 28px clamp(18px, 4vw, 56px);
  color: var(--muted);
  border-top: 1px solid var(--line);
  text-align: center;
}

.footer p {
  margin: 0;
  max-width: 760px;
}

.footer span {
  color: var(--coral);
}

.footer a {
  position: absolute;
  right: clamp(18px, 4vw, 56px);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 640ms ease, transform 640ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.feature-grid article,
.founder,
.app-showcase img,
.project-group article,
.timeline article,
.plan-panel,
.deal-box,
.logo-strip img,
.photo-mosaic img,
.contact-form {
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease, filter 220ms ease;
}

.feature-grid article:hover,
.founder:hover,
.project-group article:hover,
.timeline article:hover,
.contact-form:hover {
  transform: translateY(-5px);
  border-color: rgba(240, 162, 58, 0.34);
  box-shadow: var(--shadow-soft);
}

.app-showcase img:hover,
.photo-mosaic img:hover {
  transform: translateY(-5px) scale(1.015);
  filter: saturate(1.08) contrast(1.04);
  box-shadow: var(--shadow);
}

.logo-strip img:hover {
  filter: brightness(1.15);
}

.plan-panel,
.contact-form,
.founder,
.project-group,
.logo-strip,
.hero-stats {
  border-color: rgba(246, 242, 232, 0.18);
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 980px) {
  .nav {
    display: none;
  }

  .hero {
    min-height: 860px;
  }

  .split,
  .cases-header,
  .projects-header,
  .stack-header,
  .contact,
  .project-columns,
  .plan-panel {
    grid-template-columns: 1fr;
  }

  .feature-grid,
  .founder-grid,
  .timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-grid article:nth-child(2) {
    border-right: 0;
  }

  .founder {
    grid-template-columns: 1fr;
  }

  .founder img {
    min-height: 330px;
  }

  .app-showcase {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .logo-strip {
    grid-template-columns: repeat(4, minmax(80px, 1fr));
  }

  .photo-mosaic {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .deal-box {
    min-height: 0;
  }
}

@media (max-width: 640px) {
  .site-header {
    min-height: 66px;
    padding: 10px 12px;
    gap: 12px;
  }

  .brand {
    gap: 8px;
    font-size: 1rem;
    min-width: 0;
  }

  .brand-logo {
    width: 38px;
    height: 38px;
  }

  .brand span:last-child {
    max-width: none;
    white-space: nowrap;
    line-height: 1;
  }

  .header-cta {
    padding: 10px 14px;
    font-size: 0.98rem;
  }

  .hero {
    min-height: 790px;
    padding: 120px 18px 28px;
  }

  .hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 68% 38%;
    transform: none;
  }

  .hero-overlay {
    background:
      linear-gradient(0deg, rgba(6, 6, 6, 0.82) 0%, rgba(6, 6, 6, 0.22) 52%, rgba(6, 6, 6, 0.52) 100%),
      linear-gradient(90deg, rgba(6, 6, 6, 0.72), rgba(6, 6, 6, 0.08));
  }

  h1 {
    font-size: clamp(3rem, 15vw, 4.3rem);
  }

  h2 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .section {
    width: min(100% - 28px, var(--max));
    padding: 62px 0;
  }

  .hero-stats,
  .feature-grid,
  .founder-grid,
  .timeline,
  .app-showcase,
  .project-group,
  .logo-strip,
  .photo-mosaic {
    grid-template-columns: 1fr;
  }

  .feature-grid article {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .feature-grid article:last-child {
    border-bottom: 0;
  }

  .founder {
    min-height: 0;
    padding: 14px;
  }

  .founder img {
    min-height: 0;
    height: auto;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    object-position: center top;
  }

  .app-showcase {
    gap: 18px;
  }

  .app-showcase img {
    width: 100%;
    height: auto;
    max-height: none;
    object-fit: contain;
  }

  .app-showcase .app-shot-full {
    background: #f7f7f8;
  }

  .stack-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 16px;
  }

  .stack-grid span {
    min-height: 58px;
    padding: 10px;
    font-size: 0.94rem;
  }

  .photo-mosaic {
    grid-auto-rows: 260px;
  }

  .photo-mosaic img:nth-child(1),
  .photo-mosaic img:nth-child(2),
  .photo-mosaic img:nth-child(3),
  .photo-mosaic img:nth-child(6),
  .photo-mosaic img:nth-child(9) {
    grid-row: span 1;
    grid-column: span 1;
  }

  .footer {
    flex-direction: column;
    align-items: center;
  }

  .footer a {
    position: static;
  }

  .contact-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}
