:root {
  --navy: #201846;
  --coral: #cf786f;
  --ink: #17142f;
  --muted: #6c687a;
  --paper: #ffffff;
  --soft: #f5f1f3;
  --line: #e8e2e5;
  --blue-ink: #263a5e;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Avenir Next", Avenir, Montserrat, Arial, sans-serif;
  line-height: 1.5;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--navy);
  color: #fff;
}

.nav-shell {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 70px;
  padding: 0 28px;
  gap: 24px;
}

.nav-links {
  display: flex;
  gap: 26px;
  align-items: center;
  font-size: 17px;
  font-weight: 500;
  text-transform: lowercase;
}

.nav-links a:first-child,
.nav-links a:hover {
  color: var(--coral);
  font-weight: 800;
}

.mark {
  width: 96px;
}

.mark img {
  height: 42px;
  width: auto;
  margin: 0 auto;
  object-fit: contain;
}

.social {
  justify-self: end;
  font-size: 18px;
  font-weight: 800;
}

.wrap {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.hero {
  padding: clamp(58px, 8vw, 94px) 0 36px;
  text-align: center;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--coral);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 8px;
  color: var(--ink);
  font-size: clamp(48px, 8vw, 86px);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: 0;
}

.year {
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 24px;
  font-weight: 400;
}

.lead {
  max-width: 880px;
  margin: 0 auto;
  color: #383345;
  font-size: clamp(20px, 2.3vw, 27px);
  font-weight: 600;
  line-height: 1.23;
}

.hero-media {
  margin-top: 48px;
  border: 1px solid var(--line);
  background: var(--soft);
}

.hero-media.app-hero,
.hero-media.product-hero {
  display: grid;
  place-items: center;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
  background: #fff;
}

.hero-media.app-hero {
  padding: clamp(18px, 4vw, 38px);
}

.hero-media.product-hero {
  max-width: 900px;
}

.hero-media.website-hero {
  display: grid;
  place-items: center;
  max-width: 1040px;
  margin-left: auto;
  margin-right: auto;
  background: #fff;
}

.hero-media.identity-preview {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  padding: clamp(24px, 5vw, 52px);
}

.hero-media img {
  max-height: 640px;
  object-fit: contain;
}

.hero-media.app-hero img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 540px;
}

.hero-media.product-hero img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 500px;
}

.hero-media.website-hero img {
  width: 100%;
  height: auto;
  max-height: 720px;
  object-fit: contain;
}

.hero-media.identity-preview img {
  max-height: 360px;
}

.hero-comparison {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
  margin-top: 48px;
}

.logo-card {
  display: grid;
  align-content: center;
  gap: 16px;
  min-height: 260px;
  border: 1px solid var(--line);
  background: var(--soft);
  padding: clamp(20px, 4vw, 36px);
}

.logo-card img {
  width: auto;
  max-width: 100%;
  margin: 0 auto;
  object-fit: contain;
}

.logo-card.previous img {
  max-height: 115px;
}

.logo-card.current {
  max-width: 900px;
  margin: 0 auto;
  background: #fff;
}

.logo-card.current img {
  width: 100%;
  max-height: 250px;
}

.logo-card span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
}

.section {
  padding: clamp(56px, 7vw, 88px) 0;
}

.section.soft {
  background: var(--soft);
}

.snapshot {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--line);
}

.snapshot-main,
.snapshot-side {
  padding: clamp(28px, 5vw, 52px);
  background: #fff;
}

.snapshot-main h2 {
  max-width: 680px;
  margin-bottom: 18px;
  color: var(--navy);
  font-size: clamp(34px, 4.6vw, 60px);
  line-height: 0.98;
  letter-spacing: 0;
}

.snapshot-main p {
  max-width: 720px;
  color: #443f51;
  font-size: 19px;
}

.meta-grid {
  display: grid;
  gap: 18px;
}

.meta-item {
  border-top: 1px solid var(--line);
  padding-top: 14px;
}

.meta-item b {
  display: block;
  margin-bottom: 4px;
  color: var(--coral);
  font-size: 13px;
  text-transform: uppercase;
}

.meta-item span {
  color: var(--ink);
  font-size: 17px;
  font-weight: 650;
}

.takeaways {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.takeaway {
  min-height: 190px;
  padding: 24px;
  background: #fff;
}

.takeaway b {
  display: block;
  margin-bottom: 38px;
  color: var(--coral);
  font-size: 13px;
  text-transform: uppercase;
}

.takeaway p {
  margin: 0;
  color: var(--navy);
  font-size: 19px;
  font-weight: 750;
  line-height: 1.18;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(280px, 0.55fr);
  gap: 40px;
  align-items: end;
  margin-bottom: 30px;
}

h2 {
  margin-bottom: 0;
  color: var(--navy);
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1;
  letter-spacing: 0;
}

.section-note {
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 18px;
}

.feature {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.86fr);
  gap: clamp(24px, 4vw, 42px);
  align-items: center;
}

.feature.reverse {
  grid-template-columns: minmax(320px, 0.86fr) minmax(0, 1fr);
}

.feature.reverse .feature-media {
  order: 2;
}

.feature-media,
.wide-image,
.gallery-card {
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
}

.video-frame {
  aspect-ratio: 16 / 9;
  background: #191919;
}

.video-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.feature-media img,
.wide-image img {
  object-fit: contain;
}

.feature-copy h3 {
  margin-bottom: 14px;
  color: var(--navy);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.02;
}

.feature-copy p {
  color: #443f51;
  font-size: 19px;
}

.image-stack {
  display: grid;
  gap: 28px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.gallery-grid.two {
  grid-template-columns: repeat(2, 1fr);
}

.gallery-card img {
  height: 100%;
  object-fit: cover;
}

.process-gallery .gallery-card {
  display: grid;
  align-content: start;
}

.process-gallery .gallery-card img {
  width: 100%;
  height: auto;
  max-height: 560px;
  object-fit: contain;
}

.website-shot img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.website-gallery .gallery-card img {
  max-height: 520px;
}

.app-screen-gallery .gallery-card {
  padding-top: 34px;
  background: #fff;
}

.app-screen-gallery .gallery-card img {
  max-height: 500px;
}

.logo-exploration .gallery-card {
  display: grid;
  min-height: 260px;
  place-items: center;
  padding: 28px;
}

.logo-exploration .gallery-card img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 210px;
  object-fit: contain;
}

.caption {
  padding: 16px 18px 18px;
  color: var(--muted);
  font-size: 15px;
}

.caption b {
  display: block;
  margin-bottom: 4px;
  color: var(--navy);
  font-size: 17px;
}

.next {
  padding: 54px 0;
  background: var(--navy);
  color: #fff;
  text-align: center;
}

.next p {
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
}

.next a {
  color: #fff;
  font-size: clamp(30px, 5vw, 54px);
  font-weight: 800;
  line-height: 1;
}

@media (max-width: 860px) {
  .nav-shell {
    grid-template-columns: auto auto auto;
    justify-content: space-between;
    min-height: 66px;
    padding: 12px 18px;
    gap: 14px;
  }

  .social {
    justify-self: end;
  }

  .mark {
    width: 68px;
  }

  .mark img {
    height: 30px;
  }

  .snapshot,
  .section-head,
  .feature,
  .feature.reverse,
  .takeaways,
  .hero-comparison,
  .gallery-grid,
  .gallery-grid.two {
    grid-template-columns: 1fr;
  }

  .feature.reverse .feature-media {
    order: 0;
  }
}

@media (max-width: 520px) {
  .nav-links {
    gap: 14px;
    font-size: 15px;
  }

  .wrap {
    width: min(100% - 28px, 1120px);
  }

  .hero {
    padding-top: 48px;
  }

  .hero-media.app-hero,
  .hero-media.product-hero,
  .hero-media.website-hero {
    margin-top: 32px;
  }

  .hero-media.app-hero img,
  .hero-media.product-hero img,
  .hero-media.website-hero img {
    max-height: 360px;
  }
}
