:root {
  color-scheme: light;
  --accent: #ff5b37;
  --accent-soft: #fff1ed;
  --background: #ffffff;
  --band: #f5f6f8;
  --ink: #0a0d12;
  --muted: #667085;
  --line: #d9dee7;
  --surface: #ffffff;
  --shadow: 0 24px 80px rgb(10 13 18 / 13%);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--background);
  color: var(--ink);
  font-family:
    ui-sans-serif,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
}

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

a {
  color: inherit;
}

.siteHeader {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 18px clamp(20px, 5vw, 72px);
  background: rgb(255 255 255 / 94%);
  border-bottom: 1px solid var(--line);
}

.siteHeader.compact {
  border-bottom-color: transparent;
}

.brand img {
  width: 156px;
  height: auto;
}

.siteHeader nav,
.siteFooter nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 760;
}

.siteHeader a,
.siteFooter a {
  text-decoration: none;
}

.siteHeader nav a:hover,
.siteFooter nav a:hover {
  color: var(--accent);
}

.hero {
  min-height: min(760px, calc(100svh - 116px));
  display: flex;
  align-items: center;
  padding: clamp(44px, 7vw, 96px) clamp(20px, 5vw, 72px);
  background-image:
    linear-gradient(90deg, rgb(255 255 255 / 95%) 0%, rgb(255 255 255 / 84%) 38%, rgb(255 255 255 / 8%) 74%),
    url("/marketing/hero-wide.png");
  background-position: center;
  background-size: cover;
  border-bottom: 1px solid var(--line);
}

.heroCopy {
  max-width: 720px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--accent);
  font-size: 0.96rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.heroCopy h1 {
  margin: 0 0 24px;
  font-size: clamp(4.8rem, 14vw, 10rem);
  line-height: 0.86;
  letter-spacing: 0;
  font-weight: 900;
}

.heroCopy p:not(.eyebrow) {
  max-width: 650px;
  margin: 0;
  color: #333946;
  font-size: clamp(1.35rem, 3vw, 2.42rem);
  line-height: 1.08;
  font-weight: 650;
}

.heroActions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 38px;
}

.primaryAction,
.secondaryAction {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border-radius: 8px;
  font-weight: 840;
  text-decoration: none;
}

.primaryAction {
  color: #fff;
  background: var(--accent);
}

.secondaryAction {
  color: var(--ink);
  background: rgb(255 255 255 / 82%);
  border: 1px solid var(--line);
}

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

.jobs article {
  min-height: 280px;
  padding: clamp(28px, 4vw, 50px);
  background: var(--surface);
}

.jobs span {
  display: block;
  margin-bottom: 34px;
  color: var(--accent);
  font-weight: 900;
}

.jobs h2,
.sectionLead h2,
.principles h2,
.download h2,
.legalPage h1,
.legalPage h2 {
  margin: 0;
  letter-spacing: 0;
}

.jobs h2 {
  max-width: 330px;
  font-size: clamp(1.42rem, 2.5vw, 2.1rem);
  line-height: 1;
}

.jobs p {
  max-width: 340px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.45;
}

.showcase {
  padding: clamp(54px, 8vw, 112px) clamp(20px, 5vw, 72px);
  background: var(--band);
}

.sectionLead {
  max-width: 1040px;
  margin-bottom: 42px;
}

.sectionLead h2 {
  max-width: 820px;
  font-size: clamp(2.2rem, 5vw, 5rem);
  line-height: 0.96;
}

.sectionLead p {
  max-width: 650px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  line-height: 1.32;
}

.visualGrid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(260px, 0.68fr) minmax(260px, 0.68fr);
  gap: 18px;
}

.visualCard {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.visualCard img {
  width: 100%;
  height: 620px;
  object-fit: cover;
}

.visualCard.wide img {
  object-position: 50% 42%;
}

.visualCard figcaption {
  min-height: 116px;
  display: grid;
  gap: 8px;
  padding: 22px;
  border-top: 1px solid var(--line);
}

.visualCard strong {
  font-size: 1.12rem;
}

.visualCard span {
  color: var(--muted);
  line-height: 1.38;
}

.principles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
  border-block: 1px solid var(--line);
}

.principles > div {
  min-height: 300px;
  padding: clamp(32px, 6vw, 72px);
  background: var(--surface);
}

.principles h2,
.download h2 {
  max-width: 620px;
  font-size: clamp(2rem, 4vw, 4.15rem);
  line-height: 0.98;
}

.principles p,
.download p {
  max-width: 620px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  line-height: 1.42;
}

.download {
  padding: clamp(58px, 10vw, 128px) clamp(20px, 5vw, 72px);
  background: var(--ink);
  color: #fff;
}

.download p {
  color: #cbd5e1;
}

.storeButtons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.storeButtons span {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  padding: 0 20px;
  color: #fff;
  border: 1px solid rgb(255 255 255 / 24%);
  border-radius: 8px;
  font-weight: 840;
}

.siteFooter {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px clamp(20px, 5vw, 72px);
  border-top: 1px solid var(--line);
}

.siteFooter img {
  width: 38px;
  height: auto;
}

.siteFooter p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.legalPage {
  width: min(100% - 40px, 820px);
  margin: 0 auto;
  padding: clamp(42px, 8vw, 92px) 0;
}

.legalPage h1 {
  font-size: clamp(2.6rem, 8vw, 5.8rem);
  line-height: 0.94;
}

.updated {
  margin: 18px 0 48px;
  color: var(--muted);
  font-weight: 700;
}

.legalPage section {
  padding: 30px 0;
  border-top: 1px solid var(--line);
}

.legalPage h2 {
  font-size: clamp(1.35rem, 3vw, 2rem);
  line-height: 1.05;
}

.legalPage p {
  margin: 14px 0 0;
  color: #4f5663;
  font-size: 1.08rem;
  line-height: 1.58;
}

.supportPage > .primaryAction {
  margin-top: 26px;
}

@media (max-width: 980px) {
  .jobs,
  .principles,
  .visualGrid {
    grid-template-columns: 1fr;
  }

  .jobs article,
  .principles > div {
    min-height: auto;
  }

  .visualCard img {
    height: auto;
  }
}

@media (max-width: 760px) {
  .siteHeader {
    align-items: flex-start;
    flex-direction: column;
  }

  .siteHeader nav,
  .siteFooter nav {
    flex-wrap: wrap;
  }

  .hero {
    min-height: 74svh;
    align-items: flex-end;
    background-image:
      linear-gradient(0deg, rgb(255 255 255 / 96%) 0%, rgb(255 255 255 / 84%) 42%, rgb(255 255 255 / 22%) 100%),
      url("/marketing/hero-wide.png");
    background-position: 62% 50%;
  }

  .siteFooter {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .heroActions,
  .storeButtons {
    display: grid;
  }

  .primaryAction,
  .secondaryAction,
  .storeButtons span {
    width: 100%;
  }
}
