:root {
  color-scheme: light;
  --bg: #f4f7fb;
  --surface: #ffffff;
  --surface-soft: #eef3f8;
  --text: #111827;
  --muted: #5f6f86;
  --border: #dfe6f0;
  --accent: #4f6df5;
  --accent-strong: #3148d4;
  --accent-soft: #e9efff;
  --teal: #0f9f8f;
  --teal-soft: #e7f8f5;
  --amber: #b7791f;
  --amber-soft: #fff6df;
  --rose: #d14b6b;
  --rose-soft: #fff0f4;
  --ink-soft: #243044;
  --shadow: 0 22px 60px rgba(32, 45, 68, 0.15);
  --shadow-soft: 0 14px 34px rgba(32, 45, 68, 0.1);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, #f8fbff 0, #f4f7fb 560px, #f7f9fc 920px),
    var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.65;
}

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

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

a:hover {
  color: var(--accent-strong);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(248, 251, 255, 0.9);
  border-bottom: 1px solid rgba(223, 230, 240, 0.86);
  backdrop-filter: blur(14px);
}

.nav {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.compact-nav {
  min-height: 64px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 760;
  font-size: 1.08rem;
}

.brand img {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  box-shadow: 0 8px 18px rgba(79, 109, 245, 0.18);
}

.nav-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.language-menu {
  position: relative;
  color: #41506a;
  font-size: 0.94rem;
}

.language-menu summary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  color: #273348;
  font-weight: 760;
  cursor: pointer;
  list-style: none;
  user-select: none;
}

.language-menu summary::-webkit-details-marker {
  display: none;
}

.language-menu summary::after {
  content: "";
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
}

.language-menu[open] summary {
  border-color: rgba(79, 109, 245, 0.48);
  box-shadow: 0 10px 24px rgba(31, 45, 71, 0.08);
}

.language-options {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 30;
  display: grid;
  min-width: 132px;
  padding: 6px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.language-options a {
  padding: 8px 10px;
  border-radius: 6px;
}

.language-options a:hover,
.language-options a[aria-current="true"] {
  background: var(--accent-soft);
  color: var(--accent-strong);
}

.compact-lang {
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 760;
}

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

.hero {
  position: relative;
  overflow: hidden;
  padding: 30px 0 18px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(79, 109, 245, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(79, 109, 245, 0.08) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(90deg, transparent 0, #000 28%, #000 100%);
  opacity: 0.58;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(360px, 0.68fr) minmax(520px, 1.32fr);
  align-items: center;
  gap: 38px;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent-strong);
  font-weight: 760;
  letter-spacing: 0;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.12;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  font-size: clamp(3rem, 5.4vw, 5.45rem);
  font-weight: 820;
}

.tagline {
  margin: 16px 0 0;
  max-width: 720px;
  color: #1d2939;
  font-size: clamp(1.7rem, 2.8vw, 2.45rem);
  line-height: 1.25;
  font-weight: 760;
}

.lead {
  max-width: 720px;
  margin: 18px 0 0;
  color: #53627a;
  font-size: 1.12rem;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 24px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface);
  color: #273348;
  font-weight: 720;
  white-space: nowrap;
}

.button.primary {
  border-color: var(--accent);
  background: var(--accent);
  color: #ffffff;
  box-shadow: 0 12px 28px rgba(79, 109, 245, 0.24);
}

.button.primary:hover {
  color: #ffffff;
  background: var(--accent-strong);
}

.button.secondary-text {
  min-height: auto;
  padding: 0;
  border: 0;
  background: transparent;
  color: #31415c;
  box-shadow: none;
}

.button.secondary-text::after {
  content: "";
  width: 7px;
  height: 7px;
  margin-left: 8px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}

.button.secondary-text:hover {
  background: transparent;
  color: var(--accent-strong);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin-top: 16px;
  color: #53627a;
  font-size: 0.92rem;
  font-weight: 680;
}

.hero-proof span {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding-right: 18px;
}

.hero-proof span + span {
  padding-left: 18px;
}

.hero-proof span + span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #9aa7bb;
  transform: translate(-50%, -50%);
}

.launch-stage {
  position: relative;
  z-index: 2;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(198, 207, 222, 0.9);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 26px 62px rgba(32, 45, 68, 0.18);
}

.launch-stage img {
  width: 100%;
  aspect-ratio: 2 / 1;
  object-fit: cover;
}

.launch-stage figcaption {
  display: none;
}

.context-stage {
  position: relative;
  min-height: 548px;
  margin: 0;
  padding: 36px 34px 72px;
  border: 1px solid rgba(64, 80, 111, 0.72);
  border-radius: 8px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    #101827;
  background-size: 36px 36px, 36px 36px, auto;
  box-shadow: 0 32px 70px rgba(18, 25, 39, 0.26);
}

.context-stage .caption {
  position: absolute;
  right: 34px;
  bottom: 22px;
  left: 34px;
  color: #c4cee0;
}

.stage-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  margin-bottom: 16px;
  padding: 0 12px;
  border: 1px solid rgba(142, 160, 255, 0.5);
  border-radius: 8px;
  background: rgba(142, 160, 255, 0.12);
  color: #dce3ff;
  font-size: 0.86rem;
  font-weight: 760;
}

.stage-main-shot {
  position: relative;
  z-index: 2;
  width: 88%;
  margin-left: auto;
  background: #ffffff;
}

.stage-main-shot img {
  width: 100%;
  aspect-ratio: 1.92 / 1;
  object-fit: cover;
  object-position: 50% 48%;
}

.stage-card {
  position: absolute;
  z-index: 4;
  overflow: hidden;
  border: 1px solid rgba(213, 221, 235, 0.92);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 20px 42px rgba(2, 8, 23, 0.27);
}

.stage-label {
  display: block;
  padding: 10px 12px;
  border-bottom: 1px solid #e6edf7;
  color: #31415c;
  font-size: 0.82rem;
  font-weight: 790;
  line-height: 1.2;
}

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

.stage-card-files {
  left: 24px;
  bottom: 86px;
  width: 42%;
  height: 180px;
}

.stage-card-files img {
  height: calc(100% - 39px);
  object-position: 78% 0%;
}

.stage-card-review {
  right: 24px;
  bottom: 92px;
  width: 34%;
  height: 150px;
}

.stage-card-review img {
  height: calc(100% - 39px);
  object-position: 50% 50%;
}

.stage-path {
  position: absolute;
  z-index: 3;
  height: 2px;
  background: #8ea0ff;
  box-shadow: 0 0 0 1px rgba(142, 160, 255, 0.18), 0 0 22px rgba(142, 160, 255, 0.52);
}

.stage-path::after {
  content: "";
  position: absolute;
  right: -5px;
  top: -4px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #8ea0ff;
}

.path-files {
  left: 27%;
  bottom: 284px;
  width: 28%;
  transform: rotate(-8deg);
}

.path-review {
  right: 27%;
  bottom: 246px;
  width: 22%;
  transform: rotate(7deg);
}

.product-wall {
  position: relative;
  min-height: 430px;
  margin: 0;
  padding: 30px 0 72px 18px;
}

.product-wall .caption {
  position: absolute;
  right: 24px;
  bottom: 0;
  left: 18px;
}

.browser-shell {
  overflow: hidden;
  border: 1px solid rgba(198, 207, 222, 0.9);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.window-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  height: 32px;
  padding: 0 13px;
  border-bottom: 1px solid var(--border);
  background: #fbfcff;
}

.window-bar span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #c8d1df;
}

.window-bar span:nth-child(1) {
  background: #ff7b7b;
}

.window-bar span:nth-child(2) {
  background: #f4c95d;
}

.window-bar span:nth-child(3) {
  background: #56c47a;
}

.hero-shot img {
  width: 100%;
  aspect-ratio: 1.95 / 1;
  object-fit: cover;
  object-position: 50% 52%;
}

.floating-shot {
  position: absolute;
  overflow: hidden;
  border: 1px solid rgba(198, 207, 222, 0.9);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.floating-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.chip-shot {
  left: 0;
  bottom: 42px;
  width: 38%;
  height: 160px;
}

.review-shot {
  right: 24px;
  bottom: 46px;
  width: 36%;
  height: 138px;
}

.visual-frame {
  overflow: hidden;
  border: 1px solid rgba(198, 207, 222, 0.9);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.visual-frame img {
  width: 100%;
  height: auto;
}

.caption {
  margin: 12px 2px 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.section {
  padding: 76px 0;
}

.section.alt {
  background: #ffffff;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-header {
  max-width: 760px;
  margin-bottom: 30px;
}

.section-header h2 {
  font-size: clamp(2rem, 3.5vw, 3.1rem);
}

.section-header p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 1.04rem;
}

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

.feature {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(204, 213, 228, 0.92);
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  padding: 26px;
  box-shadow: 0 12px 28px rgba(31, 45, 71, 0.06);
}

.feature::before {
  content: "";
  display: block;
  width: 34px;
  height: 4px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: var(--accent);
}

.feature:nth-child(2n)::before {
  background: var(--teal);
}

.feature:nth-child(3n)::before {
  background: var(--amber);
}

.feature h3 {
  font-size: 1.2rem;
}

.feature p {
  margin: 10px 0 0;
  color: var(--muted);
}

.contrast-section {
  padding: 78px 0;
  background: #101827;
  color: #e8edf7;
}

.contrast-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(440px, 1.22fr);
  gap: 46px;
  align-items: center;
}

.contrast-copy .eyebrow {
  color: #9aaaff;
}

.contrast-copy h2 {
  max-width: 720px;
  color: #ffffff;
  font-size: clamp(2.1rem, 3.7vw, 3.45rem);
}

.contrast-copy p {
  max-width: 660px;
  color: #bdc7d7;
}

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

.contrast-card {
  min-height: 270px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.contrast-card span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 790;
}

.before-card span {
  background: rgba(255, 123, 123, 0.14);
  color: #ffb8b8;
}

.after-card {
  border-color: rgba(142, 160, 255, 0.5);
  background: rgba(79, 109, 245, 0.14);
  box-shadow: inset 0 0 0 1px rgba(142, 160, 255, 0.16);
}

.after-card span {
  background: rgba(142, 160, 255, 0.18);
  color: #dce3ff;
}

.contrast-card h3 {
  margin-top: 22px;
  color: #ffffff;
  font-size: 1.48rem;
}

.contrast-card p {
  color: #bdc7d7;
}

.workflow-band {
  background: #111827;
  color: #e5e7eb;
}

.workflow-inner {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  padding: 0;
  background: rgba(255, 255, 255, 0.12);
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.workflow-step {
  min-height: 160px;
  padding: 28px;
  background: #111827;
}

.step-index {
  display: block;
  margin-bottom: 20px;
  color: #8ea0ff;
  font-size: 0.82rem;
  font-weight: 800;
}

.workflow-step strong {
  display: block;
  color: #ffffff;
  font-size: 1.25rem;
  line-height: 1.2;
}

.workflow-step p {
  margin: 10px 0 0;
  color: #bdc7d7;
}

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

.showcase.reverse {
  grid-template-columns: minmax(300px, 0.94fr) minmax(0, 1.06fr);
}

.showcase-text {
  padding: 8px 0;
}

.showcase-text h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

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

.checks {
  display: grid;
  gap: 10px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
  color: #334155;
}

.checks li {
  position: relative;
  padding-left: 24px;
}

.checks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent);
}

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

.trust-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.88fr) minmax(0, 1.12fr);
  gap: 38px;
  align-items: start;
}

.trust-points {
  display: grid;
  gap: 16px;
}

.trust-points article {
  border-left: 4px solid var(--teal);
  background: #ffffff;
  padding: 20px 22px;
  box-shadow: 0 12px 28px rgba(31, 45, 71, 0.05);
}

.trust-points article:nth-child(2) {
  border-left-color: var(--amber);
}

.trust-points article:nth-child(3) {
  border-left-color: var(--rose);
}

.trust-points h3 {
  font-size: 1.15rem;
}

.trust-points p {
  margin: 8px 0 0;
  color: var(--muted);
}

.store-shot-grid {
  counter-reset: storeShot;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.store-shot {
  counter-increment: storeShot;
  position: relative;
  margin: 0;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.store-shot:first-child {
  grid-column: 1 / -1;
}

.store-shot img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.store-shot figcaption {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px 16px;
  color: #334155;
  font-weight: 720;
}

.store-shot figcaption::before {
  content: counter(storeShot, decimal-leading-zero);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 32px;
  height: 28px;
  border-radius: 8px;
  background: var(--accent-soft);
  color: var(--accent-strong);
  font-size: 0.78rem;
  font-weight: 860;
}

.help-steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: 22px 0 36px;
}

.note {
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #edf3ff;
  padding: 20px;
  color: #273348;
}

.page-hero {
  position: relative;
  max-width: 760px;
  padding: 44px 0 24px;
}

.page-hero h1 {
  font-size: clamp(2rem, 3.6vw, 3.25rem);
  letter-spacing: 0;
}

.page-hero .lead {
  max-width: 680px;
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(0, 760px);
  gap: 18px;
  padding: 18px 0 64px;
}

.legal-layout.wide-layout {
  grid-template-columns: minmax(0, 980px);
}

.legal-section {
  border-top: 1px solid var(--border);
  padding-top: 26px;
}

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

.legal-section p,
.legal-section li {
  color: var(--muted);
}

.legal-section ul {
  padding-left: 1.2rem;
}

.permission-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 16px;
}

.permission-list article {
  border: 1px solid rgba(204, 213, 228, 0.92);
  border-radius: 8px;
  background: #ffffff;
  padding: 18px;
}

.permission-list h3 {
  font-size: 1rem;
  color: #1f2a44;
}

.permission-list p {
  margin: 8px 0 0;
}

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

.copy-card {
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #ffffff;
  padding: 24px;
  box-shadow: var(--shadow-soft);
}

.copy-card.span-2 {
  grid-column: 1 / -1;
}

.copy-card h2 {
  font-size: 1.25rem;
}

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

.store-shot-list {
  display: grid;
  gap: 14px;
}

.store-shot-list article {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #ffffff;
  padding: 12px;
}

.store-shot-list img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid var(--border);
}

.store-shot-list p {
  margin: 0;
  color: #334155;
  font-weight: 720;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 20px 0 68px;
}

.support-block {
  border: 1px solid rgba(204, 213, 228, 0.9);
  border-radius: 8px;
  background: #ffffff;
  padding: 22px;
  box-shadow: 0 10px 26px rgba(31, 45, 71, 0.045);
}

.support-block h2 {
  font-size: 1.2rem;
}

.support-block .step-index {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 760;
}

.support-contact-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  max-width: 920px;
  padding: 10px 0 30px;
}

.support-contact-list a {
  position: relative;
  display: grid;
  gap: 8px;
  min-height: 120px;
  padding: 22px;
  border: 1px solid rgba(190, 201, 220, 0.9);
  border-radius: 8px;
  background: #ffffff;
  color: var(--text);
  text-decoration: none;
  box-shadow: 0 14px 32px rgba(31, 45, 71, 0.06);
}

.support-contact-list a::after {
  content: "→";
  position: absolute;
  right: 20px;
  top: 20px;
  color: var(--accent);
  font-weight: 760;
}

.support-contact-list a:hover {
  border-color: rgba(82, 110, 236, 0.42);
  box-shadow: 0 18px 42px rgba(31, 45, 71, 0.09);
  transform: translateY(-1px);
}

.support-contact-list strong {
  font-size: 1.08rem;
}

.support-contact-list span {
  color: var(--muted);
  line-height: 1.58;
  max-width: 92%;
}

.support-block p,
.support-block li {
  color: var(--muted);
}

.compact-section {
  padding-top: 28px;
}

.containerless-callout {
  border-top: 1px solid var(--border);
  padding: 22px 0 0;
}

.containerless-callout h2 {
  font-size: clamp(1.45rem, 2.3vw, 1.9rem);
}

.success-panel {
  padding: 58px 0 74px;
}

.success-panel h1 {
  max-width: 760px;
  font-size: clamp(2.35rem, 5vw, 4.2rem);
}

.success-panel .lead {
  max-width: 760px;
}

.success-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding: 28px 0 22px;
}

.success-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 6px 0 22px;
}

.notice-page {
  min-height: calc(100vh - 146px);
  display: grid;
  place-items: center;
  padding: 54px 0;
}

.notice-panel {
  position: relative;
  width: min(640px, 100%);
  overflow: hidden;
  border: 1px solid rgba(190, 201, 220, 0.9);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  padding: 34px;
  box-shadow: var(--shadow-soft);
}

.notice-panel::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: var(--accent);
}

.notice-panel h1 {
  font-size: clamp(2rem, 4.4vw, 3.25rem);
}

.notice-panel .lead {
  margin-top: 14px;
}

.notice-list {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 16px;
  list-style: none;
  color: var(--muted);
  border: 1px solid rgba(204, 213, 228, 0.84);
  border-radius: 8px;
  background: #f8fbff;
}

.notice-list li {
  padding-left: 20px;
  position: relative;
}

.notice-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--accent);
}

.notice-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.notice-footnote {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.site-footer {
  border-top: 1px solid var(--border);
  background: #111827;
  color: #e5e7eb;
}

.footer-inner {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  padding: 30px 0;
  display: grid;
  grid-template-columns: minmax(220px, 0.45fr) minmax(0, 1fr);
  align-items: start;
  justify-content: space-between;
  gap: 24px;
}

.footer-brand {
  display: grid;
  gap: 6px;
  color: #e5e7eb;
}

.footer-brand a {
  color: #cbd5e1;
  font-size: 0.94rem;
}

.footer-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 16px;
  color: #cbd5e1;
  font-size: 0.94rem;
}

.footer-brand a:hover,
.footer-links a:hover {
  color: #ffffff;
}

@media (max-width: 900px) {
  .nav {
    align-items: center;
    padding: 16px 0;
  }

  .hero {
    padding-top: 38px;
  }

  .hero-grid,
  .contrast-grid,
  .showcase,
  .showcase.reverse,
  .feature-grid,
  .help-steps,
  .trust-grid,
  .store-shot-grid,
  .copy-grid,
  .permission-list,
  .workflow-inner,
  .split-grid,
  .success-steps,
  .support-grid,
  .support-contact-list {
    grid-template-columns: 1fr;
  }

  .launch-stage {
    max-height: 420px;
  }

  .context-stage {
    min-height: auto;
    padding: 18px;
  }

  .context-stage .caption {
    position: static;
    margin-top: 14px;
  }

  .stage-main-shot {
    width: 100%;
  }

  .stage-card {
    position: relative;
    inset: auto;
    width: 100%;
    height: auto;
    margin-top: 14px;
  }

  .stage-card img,
  .stage-card-files img,
  .stage-card-review img {
    height: auto;
  }

  .stage-path {
    display: none;
  }

  .before-after {
    grid-template-columns: 1fr;
  }

  .product-wall {
    min-height: auto;
    padding: 10px 0 0;
  }

  .product-wall .caption {
    position: static;
  }

  .floating-shot {
    position: relative;
    inset: auto;
    width: 100%;
    height: auto;
    margin-top: 14px;
  }

  .floating-shot img {
    height: auto;
  }

  .workflow-step {
    min-height: auto;
  }

  .showcase.reverse .showcase-text {
    order: -1;
  }

  .store-shot:first-child,
  .copy-card.span-2 {
    grid-column: auto;
  }

  .store-shot-list article {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .container,
  .nav,
  .footer-inner {
    width: min(100% - 28px, 1160px);
  }

  .nav {
    gap: 10px;
    padding: 10px 0;
  }

  .brand {
    min-width: 0;
  }

  .hero {
    padding: 24px 0 12px;
  }

  h1 {
    font-size: 2.55rem;
  }

  .tagline {
    font-size: 1.32rem;
  }

  .lead {
    font-size: 1rem;
    margin-top: 16px;
  }

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

  .button {
    width: 100%;
  }

  .button.secondary-text {
    width: auto;
  }

  .hero-proof {
    display: grid;
    gap: 4px;
  }

  .hero-proof span,
  .hero-proof span + span {
    min-height: 22px;
    padding: 0 0 0 14px;
  }

  .hero-proof span::before,
  .hero-proof span + span::before {
    content: "";
    position: absolute;
    left: 2px;
    top: 50%;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #9aa7bb;
    transform: translateY(-50%);
  }

  .section {
    padding: 48px 0;
  }

  .launch-stage {
    height: 116px;
  }

  .launch-stage img {
    height: 100%;
    min-height: 0;
    aspect-ratio: auto;
  }

  .launch-stage figcaption {
    display: none;
  }
}

/* Conversion-focused homepage refresh */
body {
  background:
    linear-gradient(180deg, #f8fbff 0, #eef8f6 420px, #ffffff 421px, #f4f7fb 100%),
    var(--bg);
}

.nav {
  width: min(1240px, calc(100% - 40px));
}

.nav-actions {
  gap: 14px;
}

.nav-link {
  color: #4b5b73;
  font-size: 0.94rem;
  font-weight: 720;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(79, 109, 245, 0.34);
  border-radius: 8px;
  background: #ffffff;
  color: var(--accent-strong);
  font-size: 0.94rem;
  font-weight: 780;
  box-shadow: 0 10px 24px rgba(31, 45, 71, 0.08);
}

.nav-cta:hover {
  border-color: var(--accent);
  background: var(--accent-soft);
}

.landing-hero {
  position: relative;
  overflow: hidden;
  padding: 38px 0 28px;
  background:
    linear-gradient(rgba(79, 109, 245, 0.075) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 159, 143, 0.065) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.82) 0%, rgba(239, 248, 246, 0.72) 100%);
  background-size: 54px 54px, 54px 54px, auto;
}

.hero-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(360px, 0.86fr) minmax(560px, 1.14fr);
  align-items: center;
  gap: 52px;
}

.landing-hero h1 {
  max-width: 740px;
  font-size: clamp(3.05rem, 5vw, 5rem);
}

.landing-hero .lead {
  max-width: 700px;
  color: #47566d;
  font-size: 1.14rem;
}

.button.secondary {
  border-color: rgba(198, 207, 222, 0.94);
  background: rgba(255, 255, 255, 0.92);
  color: #243044;
}

.button.secondary:hover {
  border-color: rgba(79, 109, 245, 0.46);
  background: var(--accent-soft);
}

.install-note {
  display: none;
  max-width: 620px;
  margin: 14px 0 0;
  color: #627188;
  font-size: 0.94rem;
}

.landing-hero .hero-proof {
  display: none;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
  max-width: 700px;
  color: #334155;
  font-size: 0.94rem;
}

.landing-hero .hero-proof span,
.landing-hero .hero-proof span + span {
  min-height: 36px;
  padding: 0 11px;
  border: 1px solid rgba(198, 207, 222, 0.92);
  border-left: 3px solid var(--teal);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 10px 24px rgba(31, 45, 71, 0.05);
}

.landing-hero .hero-proof span:nth-child(2) {
  border-left-color: var(--accent);
}

.landing-hero .hero-proof span:nth-child(3) {
  border-left-color: var(--amber);
}

.landing-hero .hero-proof span::before,
.landing-hero .hero-proof span + span::before {
  content: none;
}

.landing-hero .hero-proof strong {
  margin-right: 6px;
  color: #111827;
}

.hero-visual {
  position: relative;
  z-index: 2;
  min-height: 500px;
  margin: 0;
}

.hero-visual figcaption {
  display: none;
}

.hero-product-frame {
  min-height: auto;
}

.hero-product-frame img,
.hero-product-frame video {
  width: 100%;
  aspect-ratio: 80 / 39;
  object-fit: cover;
  border: 1px solid rgba(178, 190, 210, 0.95);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 28px 70px rgba(32, 45, 68, 0.18);
}

.demo-browser {
  overflow: hidden;
  border: 1px solid rgba(178, 190, 210, 0.95);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 28px 70px rgba(32, 45, 68, 0.18);
}

.demo-bar {
  display: grid;
  grid-template-columns: 11px 11px 11px minmax(0, 1fr);
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 0 16px;
  border-bottom: 1px solid var(--border);
  background: #f7fafc;
  color: #65758d;
  font-size: 0.82rem;
}

.demo-bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.demo-bar span:nth-child(1) {
  background: #ff7b7b;
}

.demo-bar span:nth-child(2) {
  background: #f4c95d;
}

.demo-bar span:nth-child(3) {
  background: #56c47a;
}

.demo-bar strong {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.demo-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(210px, 0.42fr);
  gap: 18px;
  padding: 20px;
}

.demo-chat {
  min-height: 336px;
  border: 1px solid #d9e2ef;
  border-radius: 8px;
  background: #ffffff;
  padding: 24px;
}

.demo-label {
  margin: 0 0 16px;
  color: var(--accent-strong);
  font-size: 0.82rem;
  font-weight: 780;
  text-transform: uppercase;
}

.demo-chat h2 {
  max-width: 520px;
  font-size: clamp(1.58rem, 2.2vw, 2.18rem);
}

.file-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.file-chip-row span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 13px;
  border: 1px solid var(--teal);
  border-radius: 8px;
  background: #f8fffd;
  color: #1f2a44;
  font-weight: 760;
}

.file-chip-row span:nth-child(2) {
  border-color: var(--accent);
  background: #fbfcff;
}

.file-chip-row span:nth-child(3) {
  border-color: var(--amber);
  background: #fffdf7;
}

.answer-draft {
  margin-top: 30px;
  border-left: 4px solid var(--accent);
  border-radius: 8px;
  background: #f4f7fb;
  padding: 18px 20px;
  color: #1f2a44;
}

.answer-draft p {
  margin: 8px 0 0;
  color: #334155;
  line-height: 1.45;
}

.demo-side {
  min-height: 336px;
  border-radius: 8px;
  background: #101827;
  color: #ffffff;
  padding: 26px 18px;
}

.side-title {
  font-size: 1.42rem;
  font-weight: 820;
}

.project-pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  margin-top: 18px;
  padding: 0 12px;
  border-radius: 8px;
  background: rgba(15, 159, 143, 0.28);
  color: #5eead4;
  font-size: 0.9rem;
  font-weight: 780;
}

.context-card {
  display: grid;
  gap: 10px;
  margin-top: 26px;
  border-radius: 8px;
  background: #ffffff;
  color: #111827;
  padding: 18px;
}

.context-card strong {
  margin-bottom: 4px;
  font-size: 1.1rem;
}

.context-card span {
  display: block;
  border: 1px solid #dfe6f0;
  border-radius: 8px;
  padding: 9px 10px;
  color: #344154;
  font-weight: 720;
}

.context-card button {
  min-height: 40px;
  margin-top: 6px;
  border: 0;
  border-radius: 8px;
  background: var(--accent);
  color: #ffffff;
  font: inherit;
  font-weight: 780;
}

.review-popover {
  position: absolute;
  right: 42px;
  bottom: 0;
  width: min(360px, 58%);
  border: 1px solid rgba(49, 72, 212, 0.28);
  border-radius: 8px;
  background: #ffffff;
  padding: 18px 20px;
  box-shadow: 0 24px 54px rgba(32, 45, 68, 0.2);
}

.review-popover span {
  color: var(--rose);
  font-size: 0.84rem;
  font-weight: 820;
}

.review-popover strong {
  display: block;
  margin-top: 4px;
  color: #111827;
  font-size: 1.05rem;
}

.review-popover p {
  margin: 7px 0 0;
  color: #5f6f86;
  font-size: 0.92rem;
  line-height: 1.45;
}

.ai-strip {
  border-top: 1px solid rgba(223, 230, 240, 0.88);
  border-bottom: 1px solid rgba(223, 230, 240, 0.88);
  background: #ffffff;
}

.ai-strip-inner {
  display: grid;
  grid-template-columns: minmax(220px, 0.36fr) minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  padding: 20px 0;
}

.ai-strip-inner > span {
  color: #5f6f86;
  font-weight: 760;
}

.ai-logo-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
}

.ai-logo-grid strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #f8fbff;
  color: #243044;
  font-size: 0.95rem;
}

.product-section {
  background:
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.showcase-stack {
  display: grid;
  gap: 24px;
}

.feature-showcase {
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(420px, 1.22fr);
  gap: 30px;
  align-items: center;
  border: 1px solid rgba(204, 213, 228, 0.92);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  padding: 24px;
  box-shadow: 0 16px 36px rgba(31, 45, 71, 0.07);
}

.feature-showcase.reverse .feature-copy {
  order: 2;
}

.feature-showcase.reverse .feature-media {
  order: 1;
}

.feature-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 30px;
  margin-bottom: 14px;
  padding: 0 10px;
  border-radius: 8px;
  background: var(--teal-soft);
  color: #087a70;
  font-size: 0.82rem;
  font-weight: 820;
}

.feature-kicker::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 0 4px rgba(15, 159, 143, 0.12);
}

.feature-showcase:nth-child(2) .feature-kicker::before {
  box-shadow: 0 0 0 4px rgba(79, 109, 245, 0.12);
}

.feature-showcase:nth-child(3) .feature-kicker::before {
  box-shadow: 0 0 0 4px rgba(183, 121, 31, 0.13);
}

.feature-showcase:nth-child(2) .feature-kicker {
  background: var(--accent-soft);
  color: var(--accent-strong);
}

.feature-showcase:nth-child(3) .feature-kicker {
  background: var(--amber-soft);
  color: var(--amber);
}

.feature-copy h3 {
  font-size: clamp(1.65rem, 2.7vw, 2.5rem);
}

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

.feature-media {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #ffffff;
}

.feature-media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.trust-diagram {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.trust-diagram article {
  min-height: 230px;
  border: 1px solid rgba(204, 213, 228, 0.96);
  border-top: 5px solid var(--teal);
  border-radius: 8px;
  background: #ffffff;
  padding: 22px;
  box-shadow: 0 12px 28px rgba(31, 45, 71, 0.05);
}

.trust-diagram article:nth-child(2) {
  border-top-color: var(--accent);
}

.trust-diagram article:nth-child(3) {
  border-top-color: var(--amber);
}

.trust-diagram span {
  display: block;
  margin-bottom: 16px;
  color: var(--accent-strong);
  font-size: 0.84rem;
  font-weight: 820;
  text-transform: uppercase;
}

.trust-diagram strong {
  display: block;
  color: #111827;
  font-size: 1.2rem;
  line-height: 1.25;
}

.trust-diagram p {
  margin: 12px 0 0;
  color: var(--muted);
}

.final-cta {
  background: #101827;
  color: #ffffff;
}

.install-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(79, 109, 245, 0.2), rgba(15, 159, 143, 0.16)),
    #111827;
  padding: 34px;
}

.install-panel .eyebrow {
  color: #9aaaff;
}

.install-panel h2 {
  color: #ffffff;
  font-size: clamp(2rem, 3.5vw, 3.1rem);
}

.install-panel p {
  max-width: 720px;
  color: #cbd5e1;
}

.install-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.install-actions .button.secondary {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

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

  .landing-hero {
    padding: 36px 0 28px;
  }

  .hero-shell,
  .feature-showcase,
  .trust-diagram,
  .install-panel,
  .ai-strip-inner {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: auto;
  }

  .hero-product-frame img,
  .hero-product-frame video {
    max-height: 520px;
  }

  .review-popover {
    position: static;
    width: auto;
    margin-top: 12px;
  }

  .feature-showcase.reverse .feature-copy,
  .feature-showcase.reverse .feature-media {
    order: initial;
  }

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

  .install-actions {
    justify-content: flex-start;
  }
}

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

  .landing-hero {
    padding: 28px 0 24px;
  }

  .landing-hero h1 {
    font-size: 2.38rem;
  }

  .landing-hero .lead {
    font-size: 1rem;
  }

  .install-note,
  .landing-hero .hero-proof {
    display: none;
  }

  .demo-grid {
    grid-template-columns: 1fr;
    padding: 14px;
  }

  .hero-product-frame img,
  .hero-product-frame video {
    min-height: 248px;
    object-position: 50% 50%;
  }

  .demo-chat,
  .demo-side {
    min-height: auto;
    padding: 18px;
  }

  .demo-chat h2 {
    font-size: 1.35rem;
  }

  .answer-draft {
    margin-top: 24px;
  }

  .file-chip-row {
    display: grid;
  }

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

  .feature-showcase {
    padding: 16px;
  }

  .trust-diagram article {
    min-height: auto;
  }

  .install-panel {
    padding: 24px;
  }
}

/* Conversion trust, plan, and mobile proof sections */
.scenario-section {
  background: #ffffff;
}

.scenario-grid,
.plan-grid,
.faq-grid {
  display: grid;
  gap: 18px;
}

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

.scenario-card,
.plan-card,
.faq-item {
  border: 1px solid rgba(204, 213, 228, 0.94);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(31, 45, 71, 0.055);
}

.scenario-card {
  display: grid;
  align-content: start;
  min-height: 260px;
  padding: 26px;
  border-top: 5px solid var(--teal);
}

.scenario-card:nth-child(2) {
  border-top-color: var(--accent);
}

.scenario-card:nth-child(3) {
  border-top-color: var(--amber);
}

.scenario-card span,
.plan-card span {
  color: var(--accent-strong);
  font-size: 0.82rem;
  font-weight: 840;
  text-transform: uppercase;
}

.scenario-card h3,
.plan-card h3 {
  margin-top: 14px;
  font-size: 1.34rem;
}

.scenario-card p,
.plan-card p,
.faq-item p {
  color: var(--muted);
}

.plan-section {
  background:
    linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

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

.plan-card {
  min-height: 360px;
  padding: 26px;
}

.highlighted-plan {
  border-color: rgba(79, 109, 245, 0.44);
  background:
    linear-gradient(180deg, #ffffff 0%, #f2f6ff 100%);
  box-shadow: 0 18px 42px rgba(79, 109, 245, 0.13);
}

.muted-plan {
  background: #111827;
  color: #ffffff;
}

.muted-plan span {
  color: #9aaaff;
}

.muted-plan h3 {
  color: #ffffff;
}

.muted-plan p {
  color: #cbd5e1;
}

.trust-faq-section {
  background: #ffffff;
  border-top: 1px solid var(--border);
}

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

.faq-item {
  padding: 0;
  overflow: hidden;
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 68px;
  padding: 20px 22px;
  color: #111827;
  font-weight: 820;
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--accent-soft);
  color: var(--accent-strong);
  font-size: 1.15rem;
  font-weight: 820;
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-item p {
  margin: 0;
  padding: 0 22px 22px;
}

.faq-item code {
  border: 1px solid var(--border);
  border-radius: 6px;
  background: #f8fbff;
  padding: 1px 5px;
  color: #243044;
  font-size: 0.92em;
}

@media (max-width: 980px) {
  .scenario-grid,
  .plan-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .scenario-card,
  .plan-card {
    min-height: auto;
  }
}

@media (max-width: 640px) {
  .hero-product-frame img {
    aspect-ratio: 4 / 3;
    min-height: 260px;
    object-fit: cover;
    object-position: 5% 50%;
  }

  .feature-media img,
  .store-shot img {
    aspect-ratio: 4 / 3;
    object-fit: cover;
  }

  .feature-showcase:nth-child(1) .feature-media img,
  .store-shot:nth-child(1) img {
    object-position: 54% 50%;
  }

  .feature-showcase:nth-child(2) .feature-media img,
  .store-shot:nth-child(3) img {
    object-position: 46% 50%;
  }

  .feature-showcase:nth-child(3) .feature-media img,
  .store-shot:nth-child(4) img {
    object-position: 60% 50%;
  }

  .faq-item summary {
    min-height: 58px;
    padding: 16px 18px;
  }

  .faq-item p {
    padding: 0 18px 18px;
  }
}

.hero-product-frame img,
.hero-product-frame video,
.feature-media img,
.store-shot img {
  height: auto;
}

@media (max-width: 640px) {
  .hero-product-frame img,
  .hero-product-frame video {
    height: 260px;
  }

  .feature-media img,
  .store-shot img {
    height: min(270px, 72vw);
  }
}
