:root {
  --bg: #f7faff;
  --surface: rgba(255, 255, 255, 0.76);
  --surface-strong: #ffffff;
  --text: #14213d;
  --text-soft: #5f6f91;
  --primary: #4f46e5;
  --primary-strong: #4338ca;
  --primary-soft: #eef2ff;
  --secondary: #06b6d4;
  --secondary-soft: #ecfeff;
  --border: rgba(146, 174, 255, 0.22);
  --shadow: 0 24px 80px rgba(72, 94, 168, 0.14);
  --shadow-soft: 0 20px 48px rgba(100, 122, 183, 0.1);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: 1200px;
  --breathe-duration: 8s;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'PingFang SC', 'Helvetica Neue', sans-serif;
  background:
    radial-gradient(circle at top left, rgba(120, 170, 255, 0.18), transparent 28%),
    radial-gradient(circle at 80% 10%, rgba(79, 70, 229, 0.13), transparent 24%),
    linear-gradient(180deg, #f6f9ff 0%, #f9fbff 38%, #ffffff 100%);
  background-size: 100% 100%, 100% 100%, 100% 100%;
  color: var(--text);
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.page-shell { overflow: hidden; position: relative; isolation: isolate; }
.page-shell::before,
.page-shell::after {
  content: '';
  position: fixed;
  inset: auto;
  border-radius: 999px;
  filter: blur(60px);
  pointer-events: none;
  z-index: -1;
  opacity: .55;
}
.page-shell::before {
  width: 32vw;
  height: 32vw;
  min-width: 260px;
  min-height: 260px;
  top: 6vh;
  left: -10vw;
  background: radial-gradient(circle, rgba(79, 70, 229, 0.22), rgba(79, 70, 229, 0));
  animation: breathe-drift calc(var(--breathe-duration) * 1.7) ease-in-out infinite;
}
.page-shell::after {
  width: 38vw;
  height: 38vw;
  min-width: 320px;
  min-height: 320px;
  right: -12vw;
  bottom: 8vh;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.18), rgba(6, 182, 212, 0));
  animation: breathe-drift-reverse calc(var(--breathe-duration) * 2.1) ease-in-out infinite;
}
.hero, .section, .footer { width: min(calc(100% - 70px), var(--container)); margin: 0 auto; }
.hero { padding: 28px 0 52px; min-height: 100vh; display: flex; flex-direction: column; }
.topbar {
  display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 40px;
  padding: 10px 14px; border: 1px solid rgba(255,255,255,0.55); border-radius: 999px; background: rgba(255,255,255,0.52); backdrop-filter: blur(18px); box-shadow: 0 10px 30px rgba(107, 130, 186, 0.08);
  animation: breathe-card var(--breathe-duration) ease-in-out infinite;
}
.brand-mark { display:flex; align-items:center; gap:12px; font-weight:700; white-space: nowrap; }
.brand-mark__dot { width:12px; height:12px; border-radius:50%; background: linear-gradient(135deg, var(--primary), var(--secondary)); box-shadow: 0 0 0 8px rgba(79,70,229,0.08); }
.topbar__links { display:flex; align-items:center; gap: 20px; color: #4f5f7f; font-size: 14px; }
.topbar__links a:hover { color: var(--primary); }
.topbar__cta { padding: 10px 18px; background: rgba(79,70,229,0.08); color: var(--primary); border-radius: 999px; font-weight: 600; white-space: nowrap; }
.hero__grid { display:grid; grid-template-columns: 1.02fr .98fr; gap: 32px; align-items:center; flex:1; }
.eyebrow, .section-heading__eyebrow, .showcase-copy__eyebrow { display:inline-flex; align-items:center; padding: 8px 14px; border-radius: 999px; background: rgba(79,70,229,0.08); color: var(--primary); font-size: 13px; font-weight: 700; letter-spacing: .04em; }
.hero__headline-row { display: flex; justify-content: space-between; align-items: center; gap: 20px; }
.hero h1 { margin: 18px 0 14px; font-size: clamp(34px, 3.7vw, 56px); line-height: 1.06; letter-spacing: -0.04em; flex: 1; }
.hero-logo-card {
  margin: 0; flex: 0 0 154px; justify-self: end; align-self: center; width: 154px; padding: 12px; border-radius: 26px;
  background: linear-gradient(180deg, rgba(255,255,255,.94), rgba(243,247,255,.88)); border: 1px solid rgba(173, 190, 255, 0.42);
  box-shadow: 0 22px 46px rgba(86, 103, 173, 0.16), inset 0 1px 0 rgba(255,255,255,.72);
  animation: breathe-card calc(var(--breathe-duration) * 1.2) ease-in-out infinite;
}
.hero-logo-card img {
  width: 100%; aspect-ratio: 1 / 1; object-fit: contain; border-radius: 22px;
  background: linear-gradient(180deg, #ffffff, #f5f8ff); padding: 12px;
  box-shadow: inset 0 0 0 1px rgba(201, 212, 255, 0.62);
}
.hero__lead { margin: 0; max-width: 640px; font-size: clamp(17px, 1.9vw, 20px); line-height: 1.78; color: var(--text-soft); }
.hero__tagline { margin: 16px 0 0; font-size: 14px; font-weight: 700; color: var(--primary); }
.hero__highlights { display:flex; flex-wrap:wrap; gap: 10px; margin: 24px 0; }
.hero__highlights span { padding: 9px 14px; border-radius: 999px; background: rgba(255,255,255,0.66); border:1px solid rgba(157, 181, 255, 0.34); color:#334155; font-weight:600; font-size: 14px; }
.hero__actions { display:flex; gap: 12px; margin-bottom: 20px; }
.button { display:inline-flex; justify-content:center; align-items:center; min-height: 50px; padding: 0 20px; border-radius: 16px; font-weight:700; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; position: relative; overflow: hidden; }
.button::after { content: ''; position: absolute; inset: 0; background: linear-gradient(120deg, transparent 20%, rgba(255,255,255,.3), transparent 80%); transform: translateX(-120%); transition: transform .6s ease; }
.button:hover { transform: translateY(-1px); }
.button:hover::after { transform: translateX(120%); }
.button--primary { background: linear-gradient(135deg, var(--primary), #6d5ef7 55%, #7c86ff); color:#fff; box-shadow: 0 14px 30px rgba(79,70,229,0.24); background-size: 180% 180%; animation: breathe-button calc(var(--breathe-duration) * 1.15) ease-in-out infinite; }
.button--ghost { background: rgba(255,255,255,0.7); border: 1px solid rgba(159,177,255,0.32); color: var(--text); animation: breathe-card calc(var(--breathe-duration) * 1.25) ease-in-out infinite; }
.hero-stats { display:grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; margin-bottom: 16px; }
.hero-stats article, .value-panel article {
  padding: 16px 16px 14px; background: rgba(255,255,255,0.66); border:1px solid rgba(179,196,255,0.28); border-radius: 20px; box-shadow: 0 16px 34px rgba(105,123,180,0.08);
  animation: breathe-card calc(var(--breathe-duration) * 1.3) ease-in-out infinite;
}
.hero-stats strong, .value-panel strong { display:block; margin-bottom: 6px; font-size: 16px; }
.hero-stats span, .value-panel p { color: var(--text-soft); line-height:1.58; font-size: 14px; }
.scan-strip { display:grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 14px; }
.scan-strip--merged { grid-template-columns: minmax(0, 1fr); }
.scan-card {
  position: relative; display:flex; align-items:center; justify-content:space-between; gap: 14px; padding: 16px; border-radius: 24px;
  background: rgba(255,255,255,0.82); border:1px solid rgba(179, 196, 255, 0.34); box-shadow: 0 18px 40px rgba(111, 138, 201, 0.12); backdrop-filter: blur(18px);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  animation: breathe-card calc(var(--breathe-duration) * 1.4) ease-in-out infinite;
}
.scan-card:hover { transform: translateY(-2px); box-shadow: 0 22px 44px rgba(111, 138, 201, 0.16); border-color: rgba(109, 127, 255, 0.4); }
.scan-card strong, .scan-card h3 { display:block; font-size: 16px; margin-bottom: 4px; }
.scan-card span, .scan-card p { color: var(--text-soft); line-height: 1.52; margin: 0; font-size: 13px; }
.scan-card--duo { align-items: center; gap: 16px; }
.scan-card__duo-copy { display: flex; flex-direction: column; justify-content: center; min-width: 0; }
.scan-card__duo-copy strong { font-size: 17px; margin-bottom: 6px; }
.scan-card__duo-codes { display: flex; align-items: center; gap: 8px; margin-left: 0; }
.scan-code-block {
  display: flex; flex-direction: column; align-items: center; gap: 4px; min-width: 86px;
}
.scan-code-block img { width: 92px; height: 92px; }
.scan-code-block em { font-style: normal; font-size: 12px; color: #6f7c97; }
.scan-card img { width: 92px; height: 92px; border-radius: 16px; background: #fff; padding: 8px; box-shadow: inset 0 0 0 1px rgba(206,213,255,.6); }
.hero__compliance, .scan-panel__note { margin-top: 18px; color:#7b88a8; font-size:14px; line-height:1.75; }
.hero__visual { position: relative; min-height: 760px; display:flex; align-items:center; justify-content:center; perspective: 1600px; }
.visual-orb { position:absolute; border-radius:50%; filter: blur(30px); opacity: .7; animation: breathe-glow calc(var(--breathe-duration) * 1.05) ease-in-out infinite; }
.visual-orb--one { width: 260px; height:260px; background: rgba(114,132,255,.24); top: 80px; right: 20px; }
.visual-orb--two { width: 320px; height:320px; background: rgba(6,182,212,.17); bottom: 40px; left: 0; }
.visual-grid {
  position:absolute; inset: 70px 20px 40px; border-radius: 28px; border: 1px solid rgba(163, 184, 255, 0.18);
  background-image: linear-gradient(rgba(107,114,255,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(107,114,255,.08) 1px, transparent 1px);
  background-size: 26px 26px; mask-image: radial-gradient(circle at center, rgba(0,0,0,1), transparent 82%);
  animation: breathe-grid calc(var(--breathe-duration) * 1.6) ease-in-out infinite;
}
.hero-showcase, .gallery-showcase {
  position: relative; z-index: 3; width: 100%; display: grid; gap: 18px;
}
.showcase-copy, .gallery-showcase__copy {
  position: relative; z-index: 4; max-width: 480px; padding: 0 12px;
}
.showcase-copy__title, .gallery-showcase__copy h3 {
  margin: 10px 0 6px; font-size: clamp(22px, 2.3vw, 30px); line-height: 1.14; letter-spacing: -0.03em;
}
.showcase-copy__desc, .gallery-showcase__copy p {
  margin: 0; color: var(--text-soft); line-height: 1.62; font-size: 14px;
}
.phone-stage, .gallery-stage {
  position: relative; display: grid; grid-template-columns: 56px minmax(0, 1fr) 56px; gap: 0; align-items: center; justify-items: center;
}
.phone-shell, .gallery-device-shell {
  position: relative; padding: 14px; border-radius: 38px; background: rgba(255,255,255,0.48); border: 1px solid rgba(255,255,255,.72);
  box-shadow: var(--shadow); backdrop-filter: blur(18px); overflow: hidden; display: flex; justify-content: center; justify-self: center; width: fit-content; max-width: 100%; margin: 0 auto;
}
.phone-shell::before, .gallery-device-shell::before {
  content: ''; position: absolute; inset: 10px; border-radius: 30px; pointer-events: none;
  background: linear-gradient(180deg, rgba(255,255,255,.22), rgba(255,255,255,0));
}
.phone-screen-track, .gallery-track { position: relative; min-height: 632px; width: 432px; max-width: 432px; margin: 0 auto; overflow: visible; }
.phone-screen-track::after, .gallery-track::after {
  content: ''; position: absolute; inset: auto 12% 8px; height: 16px; border-radius: 999px;
  background: radial-gradient(circle, rgba(79,70,229,.16), rgba(79,70,229,0)); filter: blur(14px);
}
.phone-slide, .gallery-slide {
  position: absolute; top: 0; left: 50%; width: min(512px, 100%); display: flex; justify-content: center; align-items: flex-start; opacity: 0; pointer-events: none;
  transform: translateX(-50%) scale(.86) translateY(26px); transition: transform .65s cubic-bezier(.22,1,.36,1), opacity .5s ease;
}
.phone-slide img, .gallery-slide img, .story-phone img {
  display: block; width: 100%; height: auto; max-height: none; margin: 0 auto; border-radius: 26px; object-fit: contain; object-position: center top;
  background: #fff; box-shadow: 0 26px 70px rgba(72, 94, 168, 0.18);
}
.phone-slide.is-active, .gallery-slide.is-active { opacity: 1; pointer-events: auto; transform: translateX(-68%) scale(1) translateY(0); z-index: 3; }
.phone-slide.is-prev, .gallery-slide.is-prev { opacity: .42; transform: translateX(calc(-50% - 130px)) scale(.82) rotate(-8deg); z-index: 2; }
.phone-slide.is-next, .gallery-slide.is-next { opacity: .42; transform: translateX(calc(-50% + 130px)) scale(.82) rotate(8deg); z-index: 2; }
.showcase-nav {
  width: 48px; height: 48px; border: 0; border-radius: 999px; background: rgba(255,255,255,.8); color: var(--primary); font-size: 30px; line-height: 1; cursor: pointer;
  box-shadow: 0 14px 28px rgba(79,70,229,.14); backdrop-filter: blur(16px); transition: transform .2s ease, box-shadow .2s ease;
}
.showcase-nav:hover { transform: translateY(-2px); box-shadow: 0 18px 32px rgba(79,70,229,.18); }
.showcase-dots { display:flex; gap: 10px; align-items:center; justify-content:center; flex-wrap: wrap; }
.showcase-meta {
  display: flex; align-items: center; justify-content: center; gap: 14px; color: #6f7c97; font-size: 13px;
}
.showcase-hint {
  display: inline-flex; align-items: center; gap: 6px; padding: 8px 12px; border-radius: 999px;
  background: rgba(255,255,255,.62); border: 1px solid rgba(179,196,255,0.28);
}
.showcase-hint::before { content: '↔'; color: var(--primary); font-weight: 700; }
.showcase-count { font-variant-numeric: tabular-nums; color: var(--primary); font-weight: 700; }
.showcase-dot {
  width: 10px; height: 10px; border-radius: 999px; border: 0; padding: 0; cursor: pointer; background: rgba(79,70,229,.18); transition: all .25s ease;
}
.showcase-dot.is-active { width: 30px; background: linear-gradient(135deg, var(--primary), var(--secondary)); }
.section { padding: 54px 0; }
.section--value { padding-top: 16px; }
.section-heading { margin-bottom: 28px; }
.section-heading--center { text-align:center; max-width: 820px; margin: 0 auto 32px; }
.section-heading h2, .story-card__copy h2 { margin: 14px 0 8px; font-size: clamp(28px, 3.5vw, 46px); line-height:1.12; letter-spacing:-0.03em; }
.section-heading p, .story-card__copy p { margin: 0; color: var(--text-soft); line-height:1.68; font-size: 15px; }
.value-panel { display:grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; margin-top: 26px; }
.feature-grid, .scene-list { display:grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 18px; }
.feature-card, .scene-card, .story-card {
  background: rgba(255,255,255,0.78); border:1px solid rgba(180,196,255,0.28); border-radius: var(--radius-lg); box-shadow: var(--shadow-soft); backdrop-filter: blur(14px);
}
.feature-card, .scene-card { padding: 24px; position: relative; overflow: hidden; }
.feature-card__index {
  display:inline-flex; margin-bottom: 14px; padding: 8px 12px; border-radius: 999px; background: linear-gradient(135deg, rgba(79,70,229,.1), rgba(6,182,212,.1)); color: var(--primary); font-size: 13px; font-weight: 800; letter-spacing: .08em;
}
.feature-card h3, .scene-card h3 { margin: 0 0 8px; font-size: 18px; }
.feature-card p, .scene-card p { margin: 0; color: var(--text-soft); line-height:1.62; font-size: 14px; }
.section--story { padding-top: 12px; }
.story-card { display:grid; grid-template-columns: 1fr .92fr; gap: 28px; padding: 30px; align-items:center; overflow:hidden; }
.story-points { margin: 22px 0 0; padding: 0; list-style:none; display:grid; gap: 12px; }
.story-points li { position: relative; padding-left: 22px; color: var(--text-soft); line-height: 1.8; }
.story-points li::before { content: ''; position:absolute; left:0; top: 12px; width: 10px; height: 10px; border-radius:50%; background: linear-gradient(135deg, var(--primary), var(--secondary)); }
.story-card__visual { position: relative; min-height: 500px; }
.story-phone {
  position:absolute; width: min(280px, 38vw); padding: 10px; border-radius: 30px; background: rgba(255,255,255,0.7); border:1px solid rgba(255,255,255,0.82); box-shadow: var(--shadow);
}
.story-phone--one { left: 8px; top: 20px; transform: rotate(-8deg); }
.story-phone--two { right: 0; bottom: 0; transform: rotate(8deg); }
.gallery-showcase {
  grid-template-columns: minmax(260px, 360px) minmax(0, 1fr); gap: 28px; align-items: center;
}
.gallery-stage .gallery-device-shell { width: fit-content; }
.gallery-track { min-height: 660px; }
.section--scan { padding-bottom: 70px; }
.scan-panel { display:grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
.scan-card--full { padding: 26px; min-height: 240px; }
.scan-card--full img { width: 156px; height: 156px; }
.footer { display:flex; align-items:flex-end; justify-content:space-between; gap: 24px; padding: 0 0 28px; color: #66748f; font-size: 13px; }
.footer strong { color: var(--text); font-size: 16px; }
.footer p { margin: 8px 0 0; font-size: 13px; line-height: 1.7; }
.footer__meta { display:flex; flex-wrap:wrap; gap: 10px 18px; justify-content:flex-end; font-size: 12px; }
.footer-note {
  width: min(calc(100% - 40px), var(--container)); margin: 0 auto 48px; padding: 22px 24px;
  border-radius: 22px; background: rgba(255,255,255,0.7); border: 1px solid rgba(180,196,255,0.28);
  box-shadow: 0 16px 34px rgba(105,123,180,0.08); color: #6a7691;
}
.footer-note p { margin: 0; line-height: 1.85; font-size: 13px; }
.footer-note strong { color: var(--text); }
.mobile-cta {
  position: fixed; left: 50%; bottom: 18px; transform: translateX(-50%);
  display: none; min-width: min(90vw, 360px); justify-content: center; align-items: center;
  min-height: 54px; padding: 0 22px; border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), #6d5ef7); color: #fff; font-weight: 800;
  box-shadow: 0 18px 34px rgba(79,70,229,0.28); z-index: 20;
}
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-visible { opacity:1; transform: translateY(0); }
@keyframes breathe-drift {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); opacity: .48; }
  50% { transform: translate3d(26px, 18px, 0) scale(1.08); opacity: .72; }
}
@keyframes breathe-drift-reverse {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); opacity: .42; }
  50% { transform: translate3d(-28px, -16px, 0) scale(1.12); opacity: .68; }
}
@keyframes breathe-glow {
  0%, 100% { transform: scale(1); opacity: .58; }
  50% { transform: scale(1.08); opacity: .82; }
}
@keyframes breathe-grid {
  0%, 100% { transform: scale(1) translateY(0); opacity: .74; }
  50% { transform: scale(1.018) translateY(-8px); opacity: .98; }
}
@keyframes breathe-card {
  0%, 100% { box-shadow: 0 16px 34px rgba(105,123,180,0.08); }
  50% { box-shadow: 0 22px 42px rgba(105,123,180,0.14); }
}
@keyframes breathe-button {
  0%, 100% { background-position: 0% 50%; box-shadow: 0 14px 30px rgba(79,70,229,0.24); }
  50% { background-position: 100% 50%; box-shadow: 0 18px 36px rgba(79,70,229,0.32); }
}
@media (prefers-reduced-motion: reduce) {
  .page-shell::before, .page-shell::after, .visual-orb, .visual-grid, .topbar, .hero-stats article, .value-panel article, .scan-card, .button--primary, .button--ghost, .reveal, .phone-slide, .gallery-slide {
    animation: none !important; transition: none !important;
  }
  .button::after { display: none; }
}
@media (max-width: 1100px) {
  .hero__grid, .story-card, .gallery-showcase, .scan-panel { grid-template-columns: 1fr; }
  .hero__headline-row { grid-template-columns: minmax(0, 1fr) 148px; }
  .hero__visual { min-height: 680px; }
  .feature-grid, .scene-list, .value-panel { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .story-card__visual { min-height: 430px; margin-top: 10px; }
  .showcase-copy, .gallery-showcase__copy { max-width: none; padding: 0; }
}
@media (max-width: 760px) {
  .hero, .section, .footer { width: min(calc(100% - 64px), var(--container)); }
  .hero { padding-top: 16px; min-height: auto; }
  .topbar { margin-bottom: 24px; padding: 10px 12px; }
  .topbar__links, .topbar__cta { display:none; }
  .brand-mark__text { font-size: 14px; }
  .hero h1 { margin-top: 14px; font-size: clamp(24px, 8.2vw, 34px); line-height: 1.1; }
  .hero__headline-row { display: flex; justify-content: space-between; align-items: center; gap: 10px; }
  .hero-logo-card { justify-self: auto; align-self: center; flex: 0 0 75px; width: 75px; padding: 8px; border-radius: 18px; }
  .hero__lead { font-size: 15px; line-height: 1.74; }
  .hero__tagline { font-size: 14px; line-height: 1.6; }
  .hero__highlights { gap: 8px; margin: 18px 0; }
  .hero__highlights span { padding: 7px 11px; font-size: 12px; }
  .hero__actions { flex-direction: column; }
  .button { width: 100%; }
  .hero-stats, .value-panel, .feature-grid, .scene-list, .scan-panel { grid-template-columns: 1fr; }
  .hero__visual { min-height: auto; margin-top: 12px; }
  .visual-grid { inset: 72px 0 20px; }
  .showcase-copy__title, .gallery-showcase__copy h3 { font-size: 20px; }
  .phone-stage, .gallery-stage { grid-template-columns: 1fr; gap: 12px; }
  .showcase-nav { display: none; }
  .showcase-meta { justify-content: space-between; padding: 0 4px; }
  .showcase-hint { font-size: 12px; padding: 7px 10px; }
  .phone-shell, .gallery-device-shell { padding: 10px 10px 14px; border-radius: 28px; justify-self: center; width: fit-content; max-width: 100%; }
  .phone-screen-track { min-height: 470px; width: 214px; max-width: 214px; margin: 0 auto; }
  .gallery-track { min-height: 488px; width: 214px; max-width: 214px; margin: 0 auto; }
  .phone-slide, .gallery-slide { width: 214px; left: 50%; }
  .phone-slide img, .gallery-slide img { border-radius: 18px; object-fit: contain; object-position: center top; }
  .phone-slide.is-prev, .gallery-slide.is-prev { transform: translateX(calc(-50% - 62px)) scale(.75) rotate(-6deg); opacity: .18; }
  .phone-slide.is-next, .gallery-slide.is-next { transform: translateX(calc(-50% + 62px)) scale(.75) rotate(6deg); opacity: .18; }
  .scan-card--mini { padding: 13px; }
  .scan-card--duo { flex-direction: column; align-items: flex-start; gap: 12px; }
  .scan-card__duo-codes { margin-left: 0; gap: 10px; justify-content: flex-start; }
  .scan-card--mini img { width: 68px; height: 68px; }
  .scan-card--full { min-height: auto; }
  .story-card { padding: 20px; }
  .story-card__visual { min-height: 340px; margin-top: 10px; }
  .story-phone { width: min(210px, 60vw); }
  .footer { flex-direction: column; align-items: flex-start; padding-bottom: 18px; font-size: 12px; }
  .footer__meta { justify-content: flex-start; font-size: 11px; gap: 8px 14px; }
  .footer-note { width: min(calc(100% - 28px), var(--container)); margin-bottom: 100px; padding: 18px; }
  .mobile-cta { display: inline-flex; min-height: 50px; bottom: 14px; }
}
