@font-face {
  font-family: "Inter";
  src: url("../fonts/inter-400.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("../fonts/inter-500.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("../fonts/inter-600.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("../fonts/inter-700.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Merriweather";
  src: url("../fonts/merriweather-400.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Merriweather";
  src: url("../fonts/merriweather-700.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --color-primary: #2f6bff;
  --color-primary-deep: #173d9a;
  --color-primary-soft: #eef4ff;
  --color-ink: #121a31;
  --color-ink-soft: #4d5878;
  --color-line: #e4e9f3;
  --color-white: #ffffff;
  --color-panel: #f7f9fc;
  --color-panel-strong: #eef3fb;
  --color-surface: #091120;
  --color-success: #25b26c;
  --shadow-soft: 0 16px 36px rgba(18, 26, 49, 0.06);
  --shadow-strong: 0 28px 64px rgba(17, 34, 82, 0.12);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --container-width: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Inter", sans-serif;
  color: var(--color-ink);
  background: #ffffff;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

main {
  overflow: hidden;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

p,
li {
  font-size: 1rem;
  line-height: 1.75;
}

h1,
h2,
h3,
h4,
.heading-serif {
  margin: 0;
  font-family: "Merriweather", serif;
  font-weight: 700;
  letter-spacing: -0.04em;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

.section-shell {
  padding: 112px 0;
}

.section-shell--tight {
  padding: 88px 0;
}

.section-head {
  max-width: 700px;
  margin-bottom: 42px;
}

.section-head h2 {
  font-size: clamp(2rem, 3.8vw, 3.3rem);
  line-height: 1.08;
}

.section-head p {
  margin: 18px 0 0;
  color: var(--color-ink-soft);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.icon-mask {
  display: inline-block;
  width: 20px;
  height: 20px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.icon-mask--apple {
  background-image: url("../icons/apple.svg");
}

.icon-mask--googleplay {
  background-image: url("../icons/googleplay.svg");
}

.store-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 150px;
  padding: 10px 15px 10px 14px;
  border-radius: 16px;
  background: #0f1012;
  color: #ffffff;
  box-shadow: 0 8px 14px rgba(24, 24, 26, 0.08);
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

a.store-badge:hover,
a.store-badge:focus-visible {
  background: #18191c;
  box-shadow: 0 12px 18px rgba(24, 24, 26, 0.14);
  transform: translateY(-1px);
}

a.store-badge:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.72);
  outline-offset: 2px;
}

.store-badge__icon {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  filter: brightness(0) invert(1);
}

.store-badge__icon.icon-mask--googleplay {
  filter: none;
}

.store-badge__text {
  display: grid;
  gap: 1px;
}

.store-badge__eyebrow {
  font-size: 0.56rem;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.78;
}

.store-badge__title {
  font-size: 1rem;
  line-height: 1.05;
  font-weight: 700;
}

.button,
.button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease,
    background-color 0.2s ease;
}

.button {
  background: var(--color-primary);
  color: var(--color-white);
  box-shadow: 0 18px 30px rgba(47, 107, 255, 0.22);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.85);
  border-color: var(--color-line);
  color: var(--color-ink);
}

.button:hover,
.button:focus-visible,
.button-secondary:hover,
.button-secondary:focus-visible,
.social-link:hover,
.social-link:focus-visible,
.site-nav__link:hover,
.site-nav__link:focus-visible,
.site-footer__link:hover,
.site-footer__link:focus-visible {
  transform: translateY(-1px);
}

.card {
  background: #ffffff;
  border: 1px solid rgba(18, 26, 49, 0.06);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 24px rgba(18, 26, 49, 0.04);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(248, 249, 252, 0.96);
  border-bottom: 1px solid rgba(18, 26, 49, 0.06);
  backdrop-filter: blur(10px);
}

.site-header__inner {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 24px;
  min-height: 88px;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: 188px;
  max-width: 100%;
  height: auto;
}

.site-nav {
  justify-self: center;
}

.site-nav__list {
  display: flex;
  align-items: center;
  gap: 14px;
}

.site-nav__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  color: var(--color-ink-soft);
  font-weight: 600;
  transition:
    background-color 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

.site-nav__link.is-current {
  background: var(--color-primary-soft);
  color: var(--color-primary-deep);
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 16px;
  border: 1px solid rgba(18, 26, 49, 0.08);
  border-radius: 999px;
  color: var(--color-ink);
  font-weight: 700;
  background: #ffffff;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(18, 26, 49, 0.08);
  border-radius: 14px;
  background: #ffffff;
}

.nav-toggle span {
  position: relative;
  width: 20px;
  height: 2px;
  background: var(--color-ink);
  border-radius: 999px;
  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 20px;
  height: 2px;
  background: var(--color-ink);
  border-radius: 999px;
  transition: transform 0.2s ease;
}

.nav-toggle span::before {
  top: -6px;
}

.nav-toggle span::after {
  top: 6px;
}

.nav-toggle[aria-expanded="true"] span {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] span::before {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span::after {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  padding: 68px 0 76px;
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  align-items: center;
  gap: 42px;
}

.hero__content h1 {
  max-width: 640px;
  font-size: clamp(2.7rem, 6vw, 5.2rem);
  line-height: 0.97;
}

.hero__content p {
  max-width: 620px;
  margin: 24px 0 0;
  color: var(--color-ink-soft);
  font-size: 1.08rem;
}

.hero__stores {
  margin-top: 22px;
}

.hero-stage {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-height: 0;
  padding: 0;
}

.hero-browser {
  width: 100%;
  max-width: none;
  padding: 14px;
  border: 1px solid rgba(18, 26, 49, 0.08);
  border-radius: 30px;
  background: linear-gradient(180deg, #ffffff 0%, #f7f9fd 100%);
  box-shadow: 0 18px 40px rgba(18, 26, 49, 0.08);
}

.hero-browser__image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 18px;
  background: #ffffff;
  object-fit: contain;
  object-position: center top;
}

.services-grid,
.principles-grid,
.contact-grid,
.footer-grid {
  display: grid;
  gap: 18px;
}

.services-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.service-card {
  padding: 28px;
}

.service-card.card,
.partner-card.card {
  box-shadow: none;
}

.service-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(47, 107, 255, 0.16), rgba(47, 107, 255, 0.06));
  color: var(--color-primary-deep);
  font-size: 1.2rem;
  font-weight: 800;
}

.service-card h3 {
  margin-top: 22px;
  font-size: 1.38rem;
}

.service-card p {
  margin: 12px 0 0;
  color: var(--color-ink-soft);
}

.service-card a {
  display: block;
  width: fit-content;
  margin-top: 12px;
  font-weight: 700;
  color: var(--color-primary-deep);
}

.service-card a + a {
  margin-top: 8px;
}

.platform-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 28px;
  align-items: center;
}

.platform-panel__copy {
  padding: 46px;
}

.platform-panel__copy--plain {
  padding: 0;
}

.platform-panel__copy h2 {
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.1;
}

.platform-panel__copy p {
  margin: 18px 0 0;
  color: var(--color-ink-soft);
}

.bullet-list {
  display: grid;
  gap: 14px;
  margin-top: 26px;
}

.bullet-list li {
  position: relative;
  padding-left: 30px;
  color: var(--color-ink-soft);
}

.bullet-list li::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--color-primary);
  box-shadow: 0 0 0 4px rgba(47, 107, 255, 0.1);
}

.platform-panel__visual {
  overflow: hidden;
}

.dashboard-card {
  overflow: hidden;
  padding: 12px;
  background: linear-gradient(180deg, #ffffff 0%, #f8faff 100%);
}

.dashboard-card img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 18px;
  background: #f7f9fd;
  object-fit: contain;
  object-position: center top;
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: 24px;
  align-items: stretch;
}

.story-image {
  overflow: hidden;
}

.story-image img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.story-copy {
  padding: 40px;
}

.story-copy--plain {
  padding: 0;
}

.story-copy h2 {
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.08;
}

.story-copy p {
  margin: 18px 0 0;
  color: var(--color-ink-soft);
}

.story-copy .button-row {
  margin-top: 28px;
}

.experience-showcase {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  align-content: start;
}

.experience-screen {
  overflow: hidden;
  min-height: 248px;
}

.experience-screen img {
  width: 100%;
  height: 100%;
  border-radius: 18px;
}

.experience-screen--wide {
  grid-column: 1 / -1;
  min-height: 290px;
  padding: 18px;
  background: linear-gradient(180deg, #ffffff 0%, #f7f9fd 100%);
}

.experience-screen--wide img {
  background: #ffffff;
  object-fit: contain;
  object-position: center center;
}

.experience-screen--secondary {
  min-height: 332px;
}

.experience-screen--web {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: linear-gradient(180deg, #ffffff 0%, #f7f9fd 100%);
}

.experience-screen--web img {
  background: #ffffff;
  object-fit: contain;
  object-position: center center;
}

.partners-section {
  background: transparent;
}

.partner-card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 120px;
  padding: 20px;
}

.partner-card img {
  width: 100%;
  max-width: 164px;
  max-height: 58px;
  object-fit: contain;
}

.partner-card--priority img {
  max-width: 176px;
  max-height: 74px;
}

.award-section {
  padding-top: 24px;
}

.award-spotlight {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 26px;
  padding: 30px;
  background:
    radial-gradient(circle at top right, rgba(47, 107, 255, 0.08), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
}

.award-spotlight__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  padding: 10px 4px;
}

.award-spotlight__eyebrow {
  width: fit-content;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(47, 107, 255, 0.1);
  color: var(--color-primary-deep);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 36px;
  text-transform: uppercase;
}

.award-spotlight__copy h2 {
  font-size: clamp(2rem, 3.6vw, 3.3rem);
  line-height: 1.05;
}

.award-spotlight__copy p {
  max-width: 500px;
  color: var(--color-ink-soft);
}

.award-spotlight__media {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: 18px;
  align-items: stretch;
}

.award-visual {
  overflow: hidden;
  padding: 12px;
  background: #ffffff;
}

.award-visual img {
  width: 100%;
  height: 100%;
  border-radius: 18px;
}

.award-visual--tall img {
  min-height: 100%;
  object-fit: cover;
  object-position: center;
}

.award-visual--wide img {
  object-fit: cover;
  object-position: center;
}

.cta-card {
  position: relative;
  overflow: hidden;
  padding: 54px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, #173d9a 0%, #2f6bff 100%);
  color: var(--color-white);
  box-shadow: var(--shadow-strong);
}

.cta-card::before,
.cta-card::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}

.cta-card::before {
  top: -90px;
  right: -50px;
  width: 220px;
  height: 220px;
}

.cta-card::after {
  bottom: -80px;
  left: -60px;
  width: 200px;
  height: 200px;
}

.cta-card > * {
  position: relative;
  z-index: 1;
}

.cta-card h2 {
  max-width: 640px;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.02;
}

.cta-card p {
  max-width: 600px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.9);
}

.cta-card .button-row {
  margin-top: 28px;
}

.cta-card .button {
  background: var(--color-white);
  color: var(--color-primary-deep);
  box-shadow: none;
}

.cta-card .button-secondary {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.35);
  color: var(--color-white);
}

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

.subpage-hero {
  padding: 78px 0 54px;
}

.subpage-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 28px;
  align-items: center;
}

.subpage-hero__copy h1 {
  font-size: clamp(2.5rem, 5vw, 4.4rem);
  line-height: 0.98;
}

.subpage-hero__copy p {
  margin: 22px 0 0;
  color: var(--color-ink-soft);
}

.subpage-hero__media {
  overflow: hidden;
}

.subpage-hero__media img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

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

.capability-card {
  padding: 30px;
}

.capability-card h3 {
  font-size: 1.32rem;
}

.capability-card p {
  margin: 12px 0 0;
  color: var(--color-ink-soft);
}

.principles-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.principle-card {
  padding: 30px;
}

.principle-card h3 {
  font-size: 1.28rem;
}

.principle-card p {
  margin: 12px 0 0;
  color: var(--color-ink-soft);
}

.contact-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.contact-card {
  padding: 28px;
}

.contact-card h3 {
  font-size: 1.2rem;
}

.contact-card p,
.contact-card a {
  margin-top: 10px;
  color: var(--color-ink-soft);
}

.contact-card a {
  display: inline-flex;
  font-weight: 700;
  color: var(--color-primary-deep);
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(18, 26, 49, 0.08);
  border-radius: 14px;
  background: #ffffff;
}

.social-link__icon {
  width: 22px;
  height: 22px;
}

.contact-helper {
  padding: 36px;
}

.contact-helper h2 {
  font-size: clamp(1.9rem, 3.2vw, 2.8rem);
  line-height: 1.1;
}

.contact-helper p {
  margin: 18px 0 0;
  color: var(--color-ink-soft);
}

.cta-banner {
  padding: 88px 0 112px;
}

.legal-page {
  padding: 52px 0 100px;
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
  gap: 28px;
}

.legal-layout__intro,
.legal-layout__content {
  padding: 34px;
}

.legal-layout__intro {
  align-self: start;
  position: sticky;
  top: 116px;
}

.legal-layout__intro h1 {
  font-size: clamp(2rem, 3.6vw, 3.3rem);
  line-height: 1.05;
}

.legal-layout__intro p {
  margin: 18px 0 0;
  color: var(--color-ink-soft);
}

.legal-section + .legal-section {
  margin-top: 34px;
  padding-top: 34px;
  border-top: 1px solid rgba(223, 231, 251, 0.85);
}

.legal-section h2 {
  font-size: 1.55rem;
}

.legal-section p {
  margin: 14px 0 0;
  color: var(--color-ink-soft);
}

.legal-list {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.legal-list li {
  position: relative;
  padding-left: 24px;
  color: var(--color-ink-soft);
}

.legal-list li::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-primary);
}

.site-footer {
  padding: 36px 0 48px;
  border-top: 1px solid rgba(18, 26, 49, 0.06);
  background: #fbfcfe;
}

.site-footer__top {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) repeat(3, minmax(0, 0.8fr));
  gap: 24px;
  padding-bottom: 26px;
}

.site-footer__brand img {
  width: 186px;
  max-width: 100%;
  height: auto;
}

.site-footer__copy {
  max-width: 340px;
  margin: 16px 0 0;
  color: var(--color-ink-soft);
}

.site-footer__title {
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-primary-deep);
}

.site-footer__nav {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.site-footer__link {
  color: var(--color-ink-soft);
  font-weight: 600;
}

.site-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 24px;
  border-top: 1px solid rgba(223, 231, 251, 0.85);
}

.site-footer__bottom p {
  margin: 0;
  color: var(--color-ink-soft);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.55s ease,
    transform 0.55s ease;
}

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

.legal-page [data-reveal] {
  opacity: 1;
  transform: none;
  transition: none;
}

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

  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (max-width: 1120px) {
  .site-header__inner {
    grid-template-columns: auto 1fr auto;
  }

  .site-nav {
    position: fixed;
    top: 88px;
    right: 20px;
    left: 20px;
    display: none;
    padding: 18px;
    border: 1px solid rgba(223, 231, 251, 0.92);
    border-radius: 24px;
    background: #ffffff;
    box-shadow: var(--shadow-soft);
  }

  .site-nav.is-open {
    display: block;
  }

  .site-nav__list {
    flex-direction: column;
    align-items: stretch;
  }

  .site-nav__link {
    justify-content: flex-start;
  }

  .site-header__actions .header-pill {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .hero__grid,
  .platform-panel,
  .award-spotlight,
  .story-grid,
  .subpage-hero__grid,
  .legal-layout,
  .site-footer__top {
    grid-template-columns: 1fr;
  }

  .legal-layout__intro {
    position: static;
  }

  .hero-stage {
    justify-content: center;
  }

  .services-grid,
  .partners-grid,
  .contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .award-spotlight__media {
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  }
}

@media (max-width: 820px) {
  .hero {
    padding-top: 52px;
  }

  .services-grid,
  .principles-grid,
  .capability-grid,
  .experience-showcase {
    grid-template-columns: 1fr;
  }

  .experience-screen--wide {
    grid-column: auto;
    min-height: 240px;
  }

  .cta-card,
  .platform-panel__copy,
  .award-spotlight,
  .story-copy,
  .legal-layout__intro,
  .legal-layout__content,
  .contact-helper {
    padding: 30px;
  }

  .platform-panel__copy--plain,
  .story-copy--plain {
    padding: 0;
  }

  .award-spotlight__media {
    grid-template-columns: 1fr;
  }

  .award-visual--tall img {
    max-height: 420px;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(var(--container-width), calc(100% - 28px));
  }

  .site-header__inner {
    gap: 14px;
    min-height: 76px;
  }

  .brand img {
    width: 156px;
    max-width: 100%;
    height: auto;
  }

  .button,
  .button-secondary {
    width: 100%;
  }

  .store-badges {
    flex-direction: column;
  }

  .cta-card .button-row {
    flex-direction: column;
  }

  .hero-stage {
    justify-content: center;
  }

  .hero-browser {
    padding: 10px;
    border-radius: 24px;
  }

  .hero-browser__image {
    border-radius: 14px;
  }

  .services-grid,
  .partners-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

  .award-section {
    padding-top: 12px;
  }

  .subpage-hero {
    padding-top: 54px;
  }

  .subpage-hero__media img,
  .story-image img {
    min-height: 320px;
  }

  .partner-card {
    min-height: 110px;
  }

  .site-footer__bottom {
    align-items: flex-start;
  }
}
