:root {
  --color-bg: #f7f8fb;
  --color-surface: #ffffff;
  --color-primary: #1f7aec;
  --color-primary-dark: #175ab3;
  --color-text: #142033;
  --color-muted: #576079;
  --color-accent: #f4f7ff;
  --color-border: #dbe2f1;
  --color-highlight: #fef2f2;
  --text-color: #1f2933;
  --muted-color: #52606d;
  --muted-text: #475569;
  --accent-color: #2563eb;
  --background-color: #ffffff;
  --layout-max-width: 1120px;
  --article-max-width: 800px;
  --app-gallery-slide-width: min(360px, 60vw);
  --app-gallery-frame-padding: clamp(1.5rem, 10vw, 6.5rem);
}

.skip-to-content {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  z-index: 200;
  padding: 0.75rem 1.5rem;
  background: var(--color-primary);
  color: #ffffff;
  font-weight: 600;
  border-radius: 0 0 0.5rem 0;
  text-decoration: none;
}

.skip-to-content:focus {
  position: fixed;
  left: 0;
  top: 0;
  width: auto;
  height: auto;
}

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

html {
  font-size: 16px;
}

:lang(ja) {
  font-family: 'Noto Sans JP', 'Noto Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

:lang(en) {
  font-family: 'Noto Sans', 'Noto Sans JP', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

body {
  margin: 0;
  font-family: 'Noto Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: var(--background-color);
  color: var(--color-text);
  line-height: 1.6;
}

a {
  color: var(--color-primary);
  text-decoration: none;
}

a:hover,
a:focus {
  text-decoration: underline;
}

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

main > section {
  padding: 4.5rem 1.5rem;
}

.top-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: rgba(255, 255, 255, 1.00);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 0.5rem clamp(1.5rem, 6vw, 4rem);
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.top-nav .logo {
  display: flex;
  align-items: center;
  padding-block: 0.125rem;
}

.top-nav .logo img {
  display: block;
  height: clamp(2rem, 4.5vw, 2.75rem);
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 3vw, 2rem);
  margin: 0;
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-muted);
  position: relative;
  padding-bottom: 0.2rem;
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a:focus {
  text-decoration: none;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--color-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.nav-links a:hover::after,
.nav-links a:focus::after {
  transform: scaleX(1);
}

.lang-menu {
  position: relative;
}

.lang-menu__toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.2rem;
  height: 2.2rem;
  border: 1px solid rgba(15, 23, 42, 0.2);
  border-radius: 999px;
  background: #ffffff;
  color: var(--color-muted);
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease, background-color 0.2s ease;
}

.lang-menu__toggle:hover,
.lang-menu__toggle:focus-visible,
.lang-menu.is-open .lang-menu__toggle {
  color: var(--color-primary);
  border-color: rgba(31, 122, 236, 0.45);
  background: rgba(31, 122, 236, 0.06);
}

.lang-menu__icon {
  width: 1.05rem;
  height: 1.05rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  shape-rendering: geometricPrecision;
}

.lang-menu__list {
  list-style: none;
  margin: 0;
  padding: 0.4rem;
  position: absolute;
  top: calc(100% + 0.55rem);
  right: 0;
  min-width: 9rem;
  display: none;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 0.8rem;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
}

.lang-menu.is-open .lang-menu__list {
  display: grid;
  gap: 0.15rem;
}

.lang-menu__option {
  display: block;
  width: 100%;
  border-radius: 0.5rem;
  padding: 0.4rem 0.6rem;
  font-size: 0.9rem;
  color: var(--color-muted);
  text-decoration: none;
}

.lang-menu__option::after {
  display: none !important;
}

.lang-menu__option:hover,
.lang-menu__option:focus-visible {
  background: rgba(31, 122, 236, 0.1);
  color: var(--color-primary);
  text-decoration: none;
}

.lang-menu__option.is-current {
  color: var(--color-text);
  font-weight: 600;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.3rem;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0.6rem;
  border: 1px solid rgba(15, 23, 42, 0.16);
  border-radius: 0.9rem;
  background: var(--color-surface);
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--color-text);
  border-radius: 1px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  padding-top: 6rem;
}

@media (max-width: 600px) {
  .hero {
    padding-top: 3rem;
  }
}

.message-banner,
.workflow {
  /* background: linear-gradient(135deg, rgba(246, 247, 251, 0.8), rgba(255, 255, 255, 0.98)); */
}

.message-banner {
  padding: clamp(3.5rem, 7vw, 5rem) 1.5rem;
}

.message-banner__inner {
  max-width: var(--layout-max-width);
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.message-banner__line {
  margin: 0;
  font-size: clamp(1.1rem, 1.2vw + 1rem, 1.5rem);
  line-height: 1.5;
  color: var(--color-muted);
}

.message-banner__line--primary {
  font-weight: 600;
  color: var(--color-text);
  font-size: clamp(1.65rem, 1.8vw + 1.1rem, 2.25rem);
}

.screen-carousel {
  padding: clamp(3rem, 6vw, 5.5rem) 1.5rem;
}

@media (max-width: 720px) {
  .screen-carousel {
    display: none;
  }
}

.screen-carousel__container {
  max-width: var(--layout-max-width);
  margin: 0 auto;
  display: grid;
  gap: clamp(1rem, 3vw, 1rem);
}

.screen-carousel__header {
  display: grid;
  gap: clamp(0.5rem, 1.5vw, 1rem);
  text-align: center;
  justify-items: center;
  margin: 0 auto;
  max-width: 52.8rem;
}

.screen-carousel__header h2 {
  font-size: clamp(1.8rem, 3vw + 0.5rem, 2.25rem);
  margin: 0;
  text-wrap: pretty;
}

.screen-carousel__component {
  display: grid;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.screen-carousel__viewport {
  position: relative;
  overflow: hidden;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  background-image: url('./images/gallery_background.png');
  background-repeat: repeat-x;
  background-size: auto 735px;
  background-position: top center;
}

.screen-carousel__track {
  display: flex;
  align-items: stretch;
  gap: 0;
  min-width: 100%;
}

.screen-carousel__stage {
  position: relative;
  display: grid;
  gap: 0;
  min-height: 735px;
  height: 735px;
  outline: none;
  touch-action: pan-y pinch-zoom;
  overscroll-behavior-inline: contain;
  flex: 0 0 100%;
  scroll-snap-align: center;
}

.screen-carousel__canvas {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  min-height: 735px;
  height: 735px;
  display: grid;
  place-items: center;
}

.screen-carousel__slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.screen-carousel__image {
  position: relative;
  max-width: 100%;
  width: auto;
  height: 735px;
  object-fit: contain;
  pointer-events: none;
  transition: transform 0.25s ease;
}

.screen-carousel__placeholder,
.screen-carousel__error {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  text-align: center;
  gap: 0.75rem;
  padding: 2rem;
  color: rgba(17, 24, 39, 0.68);
  font-weight: 500;
}

.screen-carousel__error {
  color: #ef4444;
}

.screen-carousel__error span {
  font-size: 1.5rem;
}

.screen-carousel__spinner {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  border: 3px solid rgba(37, 99, 235, 0.2);
  border-top-color: rgba(37, 99, 235, 0.8);
  animation: screen-carousel-spin 1s linear infinite;
}

@keyframes screen-carousel-spin {
  to {
    transform: rotate(360deg);
  }
}

.screen-carousel__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.screen-carousel__dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
}

.screen-carousel__nav {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.4);
  background: rgba(248, 250, 252, 0.85);
  color: rgba(15, 23, 42, 0.75);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.screen-carousel__nav:focus-visible {
  outline: 3px solid rgba(37, 99, 235, 0.4);
  outline-offset: 2px;
}

.screen-carousel__nav span[aria-hidden="true"] {
  line-height: 1;
}

.screen-carousel__nav:hover:not(:disabled) {
  background: rgba(37, 99, 235, 0.1);
  color: rgba(37, 99, 235, 0.95);
  border-color: rgba(37, 99, 235, 0.35);
}

.screen-carousel__nav:disabled {
  cursor: not-allowed;
  background: rgba(226, 232, 240, 0.6);
  border-color: rgba(203, 213, 225, 0.8);
  color: rgba(100, 116, 139, 0.6);
  box-shadow: none;
}

.screen-carousel__dot {
  width: 11px;
  height: 11px;
  border-radius: 999px;
  border: none;
  background: rgba(148, 163, 184, 0.5);
  cursor: pointer;
  padding: 0;
  transition: transform 0.2s ease, background 0.2s ease;
}

.screen-carousel__dot.is-active {
  background: rgba(37, 99, 235, 0.95);
  transform: scale(1.2);
}

.screen-carousel__dot:focus-visible {
  outline: 2px solid rgba(37, 99, 235, 0.9);
  outline-offset: 2px;
}

.screen-carousel__stage.is-dragging .screen-carousel__canvas {
  cursor: grabbing;
}

.screen-carousel__canvas[data-loading="true"] .screen-carousel__placeholder {
  display: grid;
}

.screen-carousel__canvas[data-loading="true"] .screen-carousel__image {
  opacity: 0;
}

.screen-carousel__canvas[data-error="true"] .screen-carousel__error {
  display: grid;
}

.screen-carousel__canvas[data-error="true"] .screen-carousel__image {
  display: none;
}

.screen-carousel__canvas[data-loading="true"] .screen-carousel__error,
.screen-carousel__canvas[data-error="true"] .screen-carousel__placeholder {
  display: none;
}

.screen-carousel__canvas[data-loading="false"] .screen-carousel__placeholder,
.screen-carousel__canvas[data-error="false"] .screen-carousel__error {
  display: none;
}

.screen-carousel__canvas[data-loading="false"][data-error="false"] .screen-carousel__image {
  opacity: 1;
}

.app-gallery {
  background: var(--color-surface);
  display: none;
}

.app-gallery__inner {
  max-width: var(--layout-max-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.app-gallery__header {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: clamp(0.5rem, 1.5vw, 1rem);
  max-width: 774px;
  margin: 0 auto;
}

.app-gallery__header h2 {
  font-size: clamp(1.8rem, 3vw + 0.5rem, 2.25rem);
  margin: 0;
  text-wrap: balance;
}

.app-gallery__header p {
  margin: 0;
}

.app-gallery__viewport {
  position: relative;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  scroll-padding-inline: var(--app-gallery-frame-padding);
}

.app-gallery__viewport::-webkit-scrollbar {
  display: none;
}

.app-gallery__track {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 0 var(--app-gallery-frame-padding) 0.5rem;
}

.app-gallery__slide {
  background: none;
  border-radius: 0;
  border: none;
  box-shadow: none;
  overflow: visible;
  scroll-snap-align: center;
  scroll-margin-inline: var(--app-gallery-frame-padding);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.45;
  transition: opacity 0.3s ease, transform 0.3s ease;
  flex: 0 0 var(--app-gallery-slide-width);
}

.app-gallery__slide img {
  width: 100%;
  height: auto;
}

.app-gallery__slide.is-active {
  opacity: 1;
  transform: none;
}

.app-gallery__pagination {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
}

.app-gallery__dot {
  width: 0.85rem;
  height: 0.85rem;
  border-radius: 50%;
  background: rgba(31, 122, 236, 0.25);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, transform 0.2s ease;
  outline: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.app-gallery__dot:hover,
.app-gallery__dot:focus-visible {
  background: rgba(31, 122, 236, 0.55);
  transform: scale(1.1);
}

.app-gallery__dot--active,
.app-gallery__dot[aria-pressed="true"] {
  background: var(--color-primary);
}

.app-gallery__dot:focus-visible {
  box-shadow: 0 0 0 3px rgba(31, 122, 236, 0.35);
}

@media (max-width: 720px) {
  .app-gallery {
    display: block;
  }

  .app-gallery__viewport {
    scroll-padding-inline: 1.25rem;
  }

  .app-gallery__track {
    gap: 1rem;
    padding: 0 1.25rem 0.5rem;
  }

  .app-gallery__slide {
    flex: 0 0 min(320px, 80vw);
    scroll-margin-inline: 1.25rem;
  }
}

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

  .app-gallery__slide {
    transition: none;
    transform: none !important;
  }
}

.hero-content {
  margin: 0 auto;
  max-width: 720px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 2.5rem;
}

.hero-text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero-text h1 {
  font-size: clamp(2.5rem, 4vw + 1rem, 3.5rem);
  line-height: 1.1;
  margin: 0;
  color: var(--color-text);
}

.hero-text p {
  color: var(--color-muted);
  font-size: 1.125rem;
  margin: 0;
}

.hero-image {
  display: flex;
  justify-content: center;
}

.hero-image img {
  width: auto;
  max-width: 100vw;
  height: auto;
  display: block;
}

.hero-download {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.75rem;
  max-width: 38rem;
  width: 100%;
  margin-top: 1.5rem;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: 1.5rem;
  padding: 2.25rem 2.5rem;
  box-shadow: 0 12px 30px rgba(15, 37, 78, 0.06);
}

.hero-download__copy {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  text-align: center;
}

.hero-download__line {
  margin: 0;
  font-size: 1.05rem;
  color: var(--color-muted);
}

.hero-download__line--primary {
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--color-text);
}

.hero-download__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.store-button {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.9rem 1.35rem;
  border-radius: 1rem;
  background-color: #0f172a;
  color: #ffffff;
  font-weight: 500;
  line-height: 1.2;
  min-width: 14rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.18);
}

.store-button:hover,
.store-button:focus {
  background-color: #111b33;
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.25);
  text-decoration: none;
}

.store-button:focus-visible {
  outline: 3px solid rgba(79, 70, 229, 0.5);
  outline-offset: 3px;
}

.store-button__icon {
  display: inline-flex;
  width: 1.9rem;
  height: 1.9rem;
  color: #ffffff;
}

.store-button__icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.store-button__label {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.25rem;
  color: inherit;
}

.store-button__eyebrow {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.78;
}

.store-button__title {
  font-size: 1.05rem;
  font-weight: 600;
}

.store-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.store-badges img {
  width: 180px;
}

.store-badge {
  display: inline-block;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.store-badge:hover,
.store-badge:focus {
  transform: translateY(-2px);
  opacity: 0.85;
}

.store-badge img {
  height: 44px;
  width: auto;
}

.intro-feature {
  background: var(--color-bg);
  padding: 4rem 0;
}

.intro-feature + .intro-feature {
  padding-top: 0;
}

.intro-feature__inner {
  max-width: var(--layout-max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 3.5rem;
  align-items: center;
  padding-inline: clamp(2rem, 5vw, 4.5rem);
}

.intro-feature__image {
  display: flex;
  justify-content: center;
}

.intro-feature__image img {
  width: 100%;
  max-width: 520px;
  height: auto;
}

@media (max-width: 1024px) {
  .intro-feature__inner {
    padding-inline: clamp(1.5rem, 5vw, 3rem);
  }
}

.intro-feature--image-left .intro-feature__inner {
  direction: rtl;
  text-align: left;
}

.intro-feature--image-left .intro-feature__inner > * {
  direction: ltr;
}

/* Ikesu story teaser — pure white background to stand out from the surrounding bg */
.intro-feature#ikesu-story {
  background: var(--color-surface);
}

.intro-feature__text h2 {
  font-size: 2.25rem;
  margin-bottom: 1rem;
}

.intro-feature__text p {
  margin-bottom: 1rem;
  color: var(--color-muted);
  font-size: 0.9rem;
}

.intro-feature__text .lead {
  font-weight: 600;
  color: var(--color-text);
}

.intro-feature__text .primary-button {
  margin-top: 1rem;
}

@media (max-width: 720px) {
  .intro-feature__inner {
    padding-inline: clamp(1.25rem, 6vw, 2rem);
  }
}

.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.75rem;
  border-radius: 999px;
  font-weight: 600;
  background: linear-gradient(135deg, var(--color-primary) 0%, #53a3ff 100%);
  color: #ffffff;
  box-shadow: 0 12px 30px rgba(31, 122, 236, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.primary-button:hover,
.primary-button:focus {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(31, 122, 236, 0.35);
  text-decoration: none;
}

.feature-showcase {
  background: var(--color-surface);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 3rem;
  align-items: center;
}

.feature-showcase > div {
  max-width: var(--layout-max-width);
  margin: 0 auto;
}

.feature-showcase__image,
.feature-showcase__content {
  padding: 1.5rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.75rem;
  font-weight: 700;
  /* color: var(--color-primary-dark); */
  color: var(--color-muted);
  margin-bottom: 1rem;
}

.blog-article .eyebrow {
  color: var(--muted-text);
  margin-bottom: 0;
}

.feature-showcase h2 {
  font-size: 2.25rem;
  margin-bottom: 1.5rem;
}

.feature-list {
  list-style: none;
  margin: 0 0 2rem;
  padding: 0;
  display: grid;
  gap: 1rem;
}

.feature-list li {
  padding: 1rem 1.25rem;
  border-radius: 1rem;
  background: var(--color-accent);
  color: var(--color-muted);
}

.workflow {
  text-align: center;
}

.workflow__intro {
  max-width: 640px;
  margin: 0 auto 3rem;
}

.workflow__intro h2 {
  font-size: 2.25rem;
  margin-bottom: 1rem;
}

.workflow__intro p {
  color: var(--color-muted);
}

.workflow__steps {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: var(--layout-max-width);
  margin: 0 auto 1.5rem;
}

.step {
  background: var(--color-surface);
  border-radius: 1.5rem;
  padding: 2rem 1.75rem;
  box-shadow: 0 18px 40px rgba(15, 37, 78, 0.08);
  text-align: left;
}

.step h3 {
  font-size: 1.05rem;
  margin-bottom: 0rem;
  margin-top: 0rem;
}

.step p {
  color: var(--color-muted);
  font-size: 0.8rem;
}

.testimonials {
  background: var(--color-bg);
}

.testimonials__header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3rem;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  max-width: var(--layout-max-width);
  margin: 0 auto;
}

.testimonial-card {
  background: var(--color-surface);
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 0 15px 35px rgba(17, 38, 87, 0.08);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.quote {
  font-size: 1.1rem;
  color: var(--color-text);
  font-weight: 500;
}

.author {
  color: var(--color-muted);
}

.reviews {
  background: var(--color-surface);
  padding: clamp(3.5rem, 7vw, 5rem) 1.5rem;
}

.reviews__container {
  max-width: var(--layout-max-width);
  margin: 0 auto;
  display: grid;
  gap: clamp(2rem, 5vw, 3rem);
}

.reviews__grid {
  display: grid;
  gap: clamp(1.25rem, 3vw, 1.75rem);
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.review {
  background: var(--color-accent);
  border-radius: 1.25rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.review__quote {
  font-weight: 600;
  color: var(--color-text);
  margin: 0;
}

.review__meta {
  font-weight: 700;
  color: #f59e0b;
  margin: 0;
  margin-top: auto;
}

.review__source {
  color: var(--color-muted);
  font-size: 0.9rem;
  margin: 0;
}

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

.feature-overview {
  background: var(--color-bg);
}

.feature-overview__container {
  max-width: var(--layout-max-width);
  margin: 0 auto;
}

.feature-overview__header {
  text-align: center;
  margin-bottom: 3rem;
}

.feature-overview__header h2 {
  font-size: 2.25rem;
}

.feature-overview__header p {
  color: var(--color-muted);
}

.feature-overview__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
}

.feature-overview__item {
  background: var(--color-surface);
  border-radius: 1.5rem;
  padding: 2rem 1.75rem;
  border: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: 0 12px 30px rgba(15, 37, 78, 0.06);
}

.feature-overview__item h3 {
  margin: 0;
  line-height: 1.3;
}

.feature-overview__icon {
  font-size: 2rem;
}

.feature-overview__item ul {
  padding-left: 1.25rem;
  margin: 0;
  color: var(--color-muted);
  font-size: 0.9rem;
  display: grid;
  gap: 0.5rem;
}

.cta {
  background: transparent;
  padding: clamp(4rem, 6vw, 5rem) 1.5rem;
}

.cta__inner {
  max-width: var(--layout-max-width);
  margin: 0 auto;
  background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
  border-radius: 1.75rem;
  padding: clamp(3rem, 6vw, 4rem);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
  gap: clamp(2.5rem, 5vw, 3.5rem);
  align-items: center;
  border: none;
  box-shadow: 0 24px 60px rgba(31, 122, 236, 0.28);
}

.cta__copy {
  display: grid;
  gap: 1.5rem;
}

.cta__copy h2 {
  color: #ffffff;
}

.cta__copy p {
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

.cta__copy .eyebrow {
  color: rgba(255, 255, 255, 0.7);
}

/* Inverted primary button for the dark CTA card */
.cta .primary-button {
  background: #ffffff;
  color: var(--color-primary-dark);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

.cta .primary-button:hover,
.cta .primary-button:focus {
  background: #f4f6fb;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.24);
}

.cta__actions {
  display: grid;
  gap: 1.25rem;
  align-content: start;
}

.cta__primary-action {
  justify-self: flex-start;
}

.cta__actions .store-badges {
  justify-content: flex-start;
  gap: 0.75rem;
}

.cta__actions .store-badges img {
  filter: none;
}

.cta__note {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.75);
}

.cta__visual {
  max-width: 420px;
  justify-self: center;
}

.cta__visual img {
  width: 100%;
  height: auto;
  display: block;
}

.use-cases {
  background: var(--color-bg);
  padding: clamp(3.5rem, 7vw, 5rem) 1.5rem;
}

.use-cases__inner {
  max-width: var(--layout-max-width);
  margin: 0 auto;
  display: grid;
  gap: clamp(2.5rem, 6vw, 2rem);
}

.use-cases__header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 0rem;
}

.use-cases__header h2 {
  font-size: 2.25rem;
  margin: 0;
}

.use-cases__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.5rem, 4vw, 2.25rem);
}

.use-cases__card {
  background-color: var(--color-surface);
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  position: relative;
  padding: 0;
  border-radius: 1.5rem;
  border: 1px solid var(--color-border);
  box-shadow: 0 12px 30px rgba(15, 37, 78, 0.05);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-align: left;
  min-height: 320px;
}

.use-cases__card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(255,255,255,0) 20%, rgba(255,255,255,0.85) 50%, rgba(255,255,255,1) 65%);
  z-index: 0;
}

.use-cases__card-content {
  position: relative;
  z-index: 1;
  margin-top: auto;
  padding: clamp(1.5rem, 3vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.use-cases__card h3 {
  font-size: 1.25rem;
  margin: 0;
  white-space: nowrap;
}

.use-cases__card p {
  margin: 0;
  color: var(--color-muted);
  font-size: 0.8rem;
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.use-cases__link {
  margin-top: 0.25rem;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--color-primary);
  text-decoration: none;
}

.use-cases__link:hover,
.use-cases__link:focus {
  text-decoration: underline;
}

.use-cases__actions {
  text-align: center;
}

.use-cases__more-link {
  font-weight: 600;
  color: var(--color-primary);
  text-decoration: none;
}

.use-cases__more-link:hover,
.use-cases__more-link:focus {
  text-decoration: underline;
}

.article-marquee {
  background: linear-gradient(120deg, rgba(37, 99, 235, 0.1) 0%, rgba(255, 255, 255, 0.65) 60%, #ffffff 100%);
  padding: clamp(3.5rem, 6vw, 5rem) 1.75rem;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.article-marquee__inner {
  margin: 0 auto;
  max-width: var(--layout-max-width);
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(2rem, 6vw, 3rem);
}

.article-marquee__content {
  display: grid;
  gap: 1.25rem;
}

.article-marquee__eyebrow {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-primary);
}

.article-marquee__title {
  margin: 0;
  font-size: clamp(2.4rem, 4vw + 1rem, 3.4rem);
  line-height: 1.1;
}

.article-marquee__summary {
  margin: 0;
  color: var(--color-muted);
  font-size: 1.125rem;
  max-width: 38ch;
}

.article-marquee__media {
  justify-self: end;
  max-width: 420px;
}

.article-card-collection {
  padding: clamp(3.5rem, 6vw, 5rem) 1.5rem;
  background: var(--color-bg);
}

.article-card-collection__header {
  max-width: 720px;
  margin: 0 auto 3rem;
  text-align: center;
  display: grid;
  gap: 1rem;
}

.article-card-collection__header h2 {
  margin: 0;
  font-size: clamp(2rem, 2vw + 1.5rem, 2.6rem);
}

.article-card-collection__header p {
  margin: 0;
  color: var(--color-muted);
  font-size: 1.05rem;
}

.article-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.75rem;
  max-width: var(--layout-max-width);
  margin: 0 auto;
}

.article-card {
  background: var(--color-surface);
  border-radius: 1.5rem;
  border: 1px solid var(--color-border);
  box-shadow: 0 18px 40px rgba(15, 37, 78, 0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.article-card__media img {
  width: 100%;
  height: auto;
}

.article-card__body {
  display: grid;
  gap: 1rem;
  padding: 1.75rem;
  flex: 1;
  background: #f7f8fb;
}

.article-card__body h3 {
  margin: 0;
  font-size: 1.45rem;
  line-height: 1.3;
}

.article-card__body p {
  margin: 0;
  color: var(--color-muted);
}

.article-card__button {
  margin-top: auto;
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.65rem 1.2rem;
  border-radius: 999px;
  font-weight: 600;
  background: rgba(37, 99, 235, 0.12);
  color: var(--color-primary);
  transition: background 0.2s ease, transform 0.2s ease;
}

.article-card__button::after {
  content: "\2192";
  font-size: 1rem;
}

.article-card__button:hover,
.article-card__button:focus {
  background: rgba(37, 99, 235, 0.2);
  text-decoration: none;
  transform: translateY(-1px);
}

.article-related-teaser {
  padding: clamp(3.5rem, 6vw, 5rem) 1.5rem 4rem;
  background: var(--color-surface);
  border-top: 1px solid rgba(15, 23, 42, 0.06);
}

.article-related-teaser__inner {
  max-width: var(--layout-max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 1fr);
  align-items: center;
  gap: clamp(2rem, 6vw, 3rem);
}

.article-related-teaser__copy {
  display: grid;
  gap: 1rem;
}

.article-related-teaser__eyebrow {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color-primary);
}

.article-related-teaser__copy h2 {
  margin: 0;
  font-size: clamp(2rem, 2vw + 1.5rem, 2.5rem);
}

.article-related-teaser__copy p {
  margin: 0;
  color: var(--color-muted);
  font-size: 1.05rem;
}

.article-related-teaser__button {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  font-weight: 600;
  background: linear-gradient(135deg, var(--color-primary) 0%, #53a3ff 100%);
  color: #ffffff;
  box-shadow: 0 16px 36px rgba(31, 122, 236, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.article-related-teaser__button::after {
  content: "\2192";
  font-size: 1rem;
}

.article-related-teaser__button:hover,
.article-related-teaser__button:focus {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(31, 122, 236, 0.35);
  text-decoration: none;
}

.article-related-teaser__media {
  justify-self: end;
  max-width: 420px;
}

.footer {
  background: #0c1626;
  color: rgba(255, 255, 255, 0.82);
  padding: 3.5rem 1.5rem 2rem;
}

.footer__container {
  max-width: var(--layout-max-width);
  margin: 0 auto 2.5rem;
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 3rem;
  align-items: start;
}

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

.footer-logo img {
  display: block;
  height: clamp(2rem, 4vw, 2.75rem);
  width: auto;
}

.footer__tagline {
  margin-top: 0.75rem;
  color: rgba(255, 255, 255, 0.65);
}

.footer__sitemap {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
}

.footer__heading {
  font-size: 1rem;
  margin-bottom: 0.75rem;
  color: rgba(255, 255, 255, 0.75);
}

.footer__sitemap ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.5rem;
}

.footer__sitemap a {
  color: rgba(255, 255, 255, 0.6);
}

.footer__sitemap a:hover,
.footer__sitemap a:focus {
  color: #ffffff;
}

.footer__copyright {
  text-align: center;
  margin: 0;
  color: rgba(255, 255, 255, 0.45);
}

/* Blog layout */
.blog-page {
  background-color: #ffffff;
  color: var(--text-color);
}

.breadcrumb {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: var(--muted-text);
  margin-bottom: 0;
}

.breadcrumb ol {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.2rem;
}

.breadcrumb li::after {
  content: "›";
  margin-left: 0.2rem;
  color: var(--color-border);
}

.breadcrumb li:last-child::after {
  display: none;
}

.breadcrumb a {
  color: var(--muted-text);
  text-decoration: none;
}

.breadcrumb a:hover {
  color: var(--color-primary);
  text-decoration: underline;
}

.breadcrumb [aria-current="page"] {
  color: var(--muted-text);
  font-weight: 600;
}

.blog-main {
  padding: clamp(4rem, 10vw, 7rem) clamp(2rem, 7vw, 5rem) clamp(5rem, 12vw, 8rem);
  display: flex;
  justify-content: center;
}

.blog-article {
  max-width: var(--article-max-width);
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: clamp(3rem, 6vw, 4.8rem);
}

.blog-article__header {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  text-align: left;
}

.blog-article__header h1 {
  font-size: clamp(2.1rem, 5vw, 3.4rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--text-color);
}

.blog-article__deck {
  font-size: 1.1rem;
  color: var(--muted-text);
  margin: 0;
}

.blog-key-points {
  padding: clamp(1rem, 2.8vw, 1.4rem) clamp(1.5rem, 4vw, 2.5rem);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(246, 247, 251, 0.7), rgba(255, 255, 255, 0.95));
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
}

.blog-article > .blog-key-points {
  margin-block: clamp(0.5rem, 1.5vw, 0.9rem);
}

.blog-key-points__title {
  font-size: 1.3rem;
  margin: 0 0 1rem;
  color: var(--text-color);
}

.blog-key-points__list {
  margin: 0;
  padding-left: 1.2rem;
  display: grid;
  gap: 0.9rem;
  color: var(--muted-text);
}

.blog-key-points__list li {
  font-weight: 500;
}

.blog-section {
  display: flex;
  flex-direction: column;
}

.blog-section > * + * {
  margin-top: clamp(1.2rem, 3vw, 2rem);
}

.blog-section h2 + p {
  margin-top: clamp(1rem, 2.5vw, 1.6rem);
}

.blog-section p + p {
  margin-top: clamp(0.95rem, 2.4vw, 1.45rem);
}

.blog-section h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.2rem);
  margin: 0;
  line-height: 1.18;
  color: var(--text-color);
}

.blog-section p {
  margin: 0;
  color: var(--muted-text);
}

.blog-section ul {
  color: var(--muted-text);
  margin: 0;
  padding: 1.75rem;
  padding-left: 3rem;
  list-style-position: outside;
}

.blog-section ol {
  color: var(--muted-text);
  margin: 0;
  padding: 1.75rem;
  list-style-position: outside;
}

.blog-section li {
  color: inherit;
  margin: 0;
  line-height: 1.65;
}

.blog-section li + li {
  margin-top: 0.4rem;
}

.blog-media {
  margin: clamp(1.3rem, 3vw, 2.5rem) 0 0;
  display: grid;
  gap: 0.9rem;
}

.blog-media img {
  max-width: 100%;
  width: 100%;
  border-radius: 0.5rem;
  box-shadow: none;
  margin-inline: auto;
}

.blog-media figcaption {
  font-size: 0.95rem;
  color: var(--muted-text);
}

.blog-media--inline {
  max-width: 420px;
  justify-self: center;
}

.blog-section--with-aside {
  display: grid;
  gap: 2rem;
  grid-template-columns: minmax(0, 1fr);
}

.blog-section__body {
  display: flex;
  flex-direction: column;
  gap: clamp(1.9rem, 3.6vw, 2.4rem);
}

.blog-callout {
  padding: 1.9rem;
  border-radius: 16px;
  background-color: rgba(246, 247, 251, 0.8);
  border: 1px solid rgba(15, 23, 42, 0.06);
  display: grid;
  gap: 1.1rem;
}

.blog-callout h3 {
  margin: 0;
  font-size: 1.1rem;
  color: var(--text-color);
}

.blog-callout ul {
  margin: 0;
  padding-left: 1.2rem;
  display: grid;
  gap: 0.6rem;
  color: var(--muted-text);
}

.release-notes {
  display: flex;
  flex-direction: column;
  gap: clamp(2.5rem, 5vw, 3.5rem);
}

.release-note {
  padding: clamp(2rem, 5vw, 2.75rem);
  border-radius: 22px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: linear-gradient(135deg, rgba(246, 247, 251, 0.8), rgba(255, 255, 255, 0.98));
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
  display: grid;
  gap: clamp(1.8rem, 3.2vw, 2.4rem);
}

.release-note__header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.5rem;
  align-items: center;
}

.release-note__heading {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.release-note__eyebrow {
  margin: 0;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(31, 122, 236, 0.8);
}

.release-note__title {
  margin: 0;
  font-size: clamp(1.9rem, 4vw, 2.4rem);
  line-height: 1.15;
  color: var(--text-color);
}

.release-note__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.release-note__meta-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.65rem 0.9rem;
  border-radius: 14px;
  background-color: rgba(37, 99, 235, 0.08);
  border: 1px solid rgba(37, 99, 235, 0.12);
}

.release-note__meta-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(17, 24, 39, 0.6);
}

.release-note__meta-value {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-color);
}

.release-note__content {
  display: grid;
  gap: clamp(1.8rem, 3.4vw, 2.6rem);
}

.release-note__section {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.release-note__section h3 {
  margin: 0;
  font-size: 1.25rem;
  color: var(--text-color);
}

.release-note__list {
  margin: 0;
  padding-left: 1.25rem;
  display: grid;
  gap: 0.75rem;
  color: var(--muted-text);
}

figure {
  margin: 0;
}

figcaption {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: var(--muted-color);
}

@media (max-width: 1080px) {
  .footer__container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1024px) {
  .feature-overview__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .workflow__steps,
  .testimonial-grid,
  .reviews__grid,
  .use-cases__grid,
  .article-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cta__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .cta__copy {
    justify-items: center;
  }

  .cta__primary-action {
    justify-self: center;
  }

  .cta__actions .store-badges {
    justify-content: center;
  }

  .cta__visual {
    order: -1;
  }
}

@media (min-width: 860px) {
  .blog-section--with-aside {
    grid-template-columns: minmax(0, 3fr) minmax(220px, 2fr);
    align-items: start;
  }

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

@media (max-width: 600px) {
  .release-note__meta {
    width: 100%;
  }

  .release-note__meta-item {
    width: 100%;
  }
}

@media (max-width: 760px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 0.75rem);
    right: clamp(0.75rem, 4vw, 2rem);
    flex-direction: column;
    align-items: flex-start;
    padding: 1.25rem;
    background-color: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.12);
    border-radius: 14px;
    box-shadow: 0 22px 45px rgba(15, 23, 42, 0.12);
    display: none;
    width: min(18rem, 50vw);
    max-width: 100%;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    width: 100%;
    padding: 0.25rem 0;
  }

  .lang-menu {
    width: 100%;
  }

  .lang-menu__toggle {
    width: 100%;
    border-radius: 0.7rem;
  }

  .lang-menu__list {
    position: static;
    margin-top: 0.5rem;
    width: 100%;
    min-width: 0;
    box-shadow: none;
    border-color: rgba(15, 23, 42, 0.1);
  }
}

@media (max-width: 720px) {
  main > section {
    padding: 3.5rem 1.25rem;
  }

  .app-gallery__track {
    grid-auto-columns: minmax(220px, 90vw);
    gap: 1rem;
  }

  .intro-feature__inner,
  .feature-showcase,
  .cta__inner {
    grid-template-columns: 1fr;
  }

  .intro-feature--image-left .intro-feature__inner {
    direction: ltr;
    display: flex;
    flex-direction: column;
    gap: 0rem;
    align-items: stretch;
  }

  .intro-feature--image-left .intro-feature__text {
    display: contents;
  }

  .intro-feature--image-left .intro-feature__text h2 {
    order: 1;
    text-align: center;
  }

  .intro-feature--image-left .intro-feature__image {
    order: 2;
  }

  .intro-feature--image-left .intro-feature__text p {
    order: 3;
    text-align: left;
  }

  .intro-feature--image-left .intro-feature__text .primary-button {
    order: 4;
    align-self: flex-start;
    margin-top: 1rem;
  }

  .feature-showcase__image {
    order: -1;
  }

  .cta__visual {
    display: none;
  }

  .blog-section--with-aside {
    grid-template-columns: minmax(0, 1fr);
  }

  .blog-key-points__list {
    gap: 0.7rem;
  }

  .top-nav {
    flex-wrap: wrap;
    padding: 1.25rem;
  }

  .nav-links {
    width: min(18rem, 50vw);
  }
}

@media (max-width: 768px) {
  .article-related-teaser__inner,
  .article-marquee__inner {
    grid-template-columns: minmax(0, 1fr);
    text-align: left;
  }

  .article-marquee__media,
  .article-related-teaser__media {
    justify-self: start;
    max-width: 320px;
  }
}

@media (max-width: 560px) {
  .workflow__steps,
  .testimonial-grid,
  .reviews__grid,
  .feature-overview__grid,
  .use-cases__grid,
  .article-card-grid {
    grid-template-columns: 1fr;
  }

  .step,
  .testimonial-card,
  .review,
  .feature-overview__item,
  .article-card {
    padding: 1.75rem 1.5rem;
  }

  .article-card {
    border-radius: 1.25rem;
  }

  .article-card__body {
    padding: 1.5rem;
  }

  .hero-text h1 {
    font-size: 2.4rem;
  }

  .use-cases__header h2,
  .feature-overview__header h2,
  .workflow__intro h2,
  .feature-showcase h2,
  .intro-feature__text h2 {
    font-size: 2rem;
  }

  .store-badges img {
    width: 160px;
  }
}

@media (max-width: 768px) {
  .screen-carousel__container {
    gap: 1.5rem;
  }

  .screen-carousel__stage {
    min-height: clamp(16rem, 60vw, 24rem);
  }
}

@media (max-width: 640px) {
  .screen-carousel {
    padding: 2.5rem 1rem 3rem;
  }

  .article-marquee__inner,
  .article-related-teaser__inner {
    text-align: center;
  }

  .article-marquee__content,
  .article-related-teaser__copy {
    justify-items: center;
  }

  .article-marquee__summary,
  .article-related-teaser__copy p {
    max-width: 48ch;
  }

  .article-card__button,
  .article-related-teaser__button {
    justify-self: center;
  }

  .article-marquee__media,
  .article-related-teaser__media {
    justify-self: center;
  }
}
