:root {
  --ink: #25262b;
  --muted: #55575c;
  --soft: #eeeeee;
  --lime: #c3ff00;
  --lime-text: #a9e000;
  --lime-pale: #f8ffe4;
  --dark: #24252a;
  --content: 1160px;
  --wide: 1420px;
  --ease-out: cubic-bezier(.22, 1, .36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: #fff;
  font-family: Pretendard, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  word-break: keep-all;
}

a { color: inherit; text-decoration: none; }
button { font: inherit; }
img { display: block; max-width: 100%; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.mobile-only { display: none; }

.content-shell {
  width: min(var(--content), calc(100% - 48px));
  margin: 0 auto;
}

.wide-shell { width: min(var(--wide), calc(100% - 48px)); }

/* Header */
/* iOS 홈화면 앱(PWA)은 viewport-fit=cover 라 콘텐츠가 상태바 아래로 파고든다.
   여백이 없으면 로고가 시계·배터리와 겹친다(2026-08-31 대표 제보).
   env() 는 안드로이드·PC 에서 0 이라 기존 화면은 그대로다. */
.site-header {
  box-sizing: content-box;
  padding-top: env(safe-area-inset-top, 0px);
  position: relative;
  z-index: 50;
  height: 64px;
  color: #fff;
  background: #050505;
}

.header-inner {
  width: 100%;
  height: 100%;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.wordmark {
  display: inline-flex;
  align-items: center;
  color: #fff;
  font-family: "Pretendard Variable", Pretendard, sans-serif;
  font-size: 34px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -.02em;
}

.wordmark span { color: var(--lime); }

.desktop-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 15px;
  font-weight: 500;
}

.desktop-nav > a:not(.header-cta) { transition: color .2s ease, opacity .2s ease; }
.desktop-nav > a:not(.header-cta):hover { opacity: .74; }
.desktop-nav .is-current,
.desktop-nav [aria-current="page"],
.mobile-menu .is-current,
.mobile-menu [aria-current="page"] { color: var(--lime); }
.desktop-nav > a:not(.header-cta):active,
.mobile-menu a:not(.mobile-start):active { color: var(--lime); }
.nav-tools { display: inline-flex; align-items: center; gap: 8px; }
.nav-tools span {
  width: 7px;
  height: 7px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
}

.header-cta {
  min-width: 88px;
  height: 36px;
  padding: 0 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #25262b;
  background: var(--lime);
  border-radius: 999px;
  font-weight: 700;
}

.menu-button,
.mobile-menu { display: none; }

/* Shared section type */
.landing-section { padding: 126px 24px 140px; }
.section-heading { max-width: 1040px; margin: 0 auto; text-align: center; }
.section-heading h2 {
  margin: 0;
  font-size: 58px;
  line-height: 1.2;
  letter-spacing: .01em;
  font-weight: 700;
}

.section-heading > p {
  margin: 26px 0 0;
  color: #45474c;
  font-size: 28px;
  line-height: 38px;
  letter-spacing: 0;
}

.primary-button,
.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  font-weight: 800;
  transition: transform .2s ease, filter .2s ease;
}

.primary-button:hover,
.cta-button:hover { transform: scale(1.02); filter: brightness(1.05); }
.primary-button:active,
.cta-button:active { transform: scale(.98); }

/* Intro */
.ml-hero {
  min-height: 900px;
  padding: 104px 0 76px;
  overflow: hidden;
  background: #eeeeee;
  text-align: center;
}

.ml-hero-copy {
  width: min(900px, calc(100% - 40px));
  margin: 0 auto;
}

.ml-hero h1 {
  margin: 0;
  font-size: 58px;
  line-height: 1.24;
  letter-spacing: .01em;
  font-weight: 700;
}

.profile-marquee {
  width: 100%;
  margin-top: 82px;
  overflow: hidden;
}

.profile-track {
  width: max-content;
  display: flex;
  animation: profile-marquee 52s linear infinite;
  will-change: transform;
}

.profile-marquee:hover .profile-track { animation-play-state: paused; }
.profile-sequence { display: flex; gap: 28px; padding-right: 28px; }
.profile-card {
  width: 242px;
  height: 440px;
  flex: 0 0 auto;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, .06);
  border-radius: 24px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, .08);
}

.profile-card a { display: block; width: 100%; height: 100%; }
.profile-card img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.hero-cta {
  min-width: 250px;
  height: 72px;
  margin-top: 70px;
  padding: 0 34px;
  color: #17181b;
  background: var(--lime);
  border-radius: 999px;
  font-size: 24px;
}

@keyframes profile-marquee { to { transform: translateX(-50%); } }

/* Easy: match the alternating final design */
.easy-section { background: #fff; }
.easy-list { width: min(1024px, 100%); margin: 94px auto 0; }
.split-feature {
  min-height: 490px;
  display: grid;
  grid-template-columns: 479px minmax(0, 1fr);
  align-items: center;
  gap: 80px;
}

.split-feature + .split-feature { margin-top: 102px; }
.split-feature.copy-first { grid-template-columns: minmax(0, 1fr) 479px; }
.feature-media {
  width: 479px;
  overflow: hidden;
  background: #ececec;
  border-radius: 24px;
}

.square-media { aspect-ratio: 1; }
.feature-copy h3,
.strong-copy h3 {
  margin: 0;
  font-size: 42px;
  line-height: 50px;
  letter-spacing: 0;
  font-weight: 700;
}

.feature-copy p,
.strong-copy p {
  margin: 26px 0 0;
  color: #3e4045;
  font-size: 28px;
  line-height: 38px;
  letter-spacing: 0;
}

.feature-copy p strong,
.strong-copy p strong { color: var(--ink); font-weight: 750; }
.feature-copy small {
  display: block;
  margin-top: 24px;
  color: #4f5156;
  font-size: 15px;
  line-height: 1.5;
}

/* Powerful */
.strong-section { background: var(--soft); }
.strong-list { width: min(1160px, 100%); margin: 92px auto 0; }
.strong-card {
  min-height: 490px;
  padding: 58px 70px;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(400px, 1.08fr);
  align-items: center;
  gap: 66px;
  overflow: hidden;
  background: #fff;
  border-radius: 28px;
}

.strong-card + .strong-card { margin-top: 64px; }
.strong-media { width: 100%; aspect-ratio: 1.32; }

/* Lottie media */
.lottie-stage { position: relative; width: 100%; height: 100%; }
.lottie-stage svg { display: block; width: 100% !important; height: 100% !important; }
.lottie-stage::before {
  content: "";
  position: absolute;
  top: calc(50% - 15px);
  left: calc(50% - 15px);
  z-index: 0;
  width: 30px;
  height: 30px;
  border: 2px solid rgba(0, 0, 0, .08);
  border-top-color: rgba(0, 0, 0, .3);
  border-radius: 50%;
  opacity: 0;
  animation: loading-spin .9s linear infinite;
}

.lottie-stage.is-loading::before { opacity: 1; }
.lottie-stage.is-ready::before { display: none; }
@keyframes loading-spin { to { transform: rotate(360deg); } }

.visual-stage { margin-right: auto; margin-left: auto; overflow: hidden; }
.blocks-section,
.stats-section { background: #fff; }
.blocks-visual {
  width: min(1320px, 100%);
  aspect-ratio: 1627.23 / 774;
  margin-top: 74px;
}
.blocks-mobile-showcase { display: none; }

.language-section,
.accounts-section { background: var(--soft); }
.language-visual {
  width: min(760px, 100%);
  aspect-ratio: 825.33 / 746.67;
  margin-top: 64px;
}

.stats-visual {
  width: min(1320px, 100%);
  aspect-ratio: 1499.22 / 642.38;
  margin-top: 74px;
}

.stats-mobile-carousel { display: none; }

.accounts-visual {
  width: min(820px, 100%);
  aspect-ratio: 776.03 / 418.34;
  margin-top: 62px;
}

/* Summary */
.summary-section {
  padding-top: 104px;
  padding-bottom: 112px;
  background: var(--lime-pale);
}

.summary-arrow {
  width: 48px;
  height: 30px;
  margin: 0 auto 62px;
  display: block;
  color: var(--lime);
  overflow: visible;
}

.summary-list {
  width: min(1060px, 100%);
  margin: 74px auto 0;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 34px;
}

.summary-item { min-width: 0; text-align: center; }
.summary-item img { width: 132px; height: 132px; margin: 0 auto; object-fit: contain; }
.summary-item strong { margin-top: 16px; display: block; font-size: 23px; line-height: 1.25; font-weight: 750; }
.summary-item span { margin-top: 8px; display: block; color: #55575b; font-size: 15px; line-height: 1.35; }

/* Comparison */
.compare-section { padding-top: 126px; padding-bottom: 132px; color: #fff; background: var(--dark); }
.compare-shell { width: min(1160px, calc(100% - 48px)); }
.compare-section .section-heading { max-width: 1100px; }
.compare-section .section-heading h2 { color: #fff; font-size: 58px; }
.compare-section .section-heading h2 em { color: var(--lime); font-style: normal; }
.compare-emoji { width: 74px; height: 74px; display: inline-block; object-fit: contain; vertical-align: -.22em; }
.comparison-scroll {
  width: 100%;
  margin: 84px auto 0;
  overflow-x: auto;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 16px;
  outline: none;
  -webkit-overflow-scrolling: touch;
}

.comparison-scroll:focus-visible { box-shadow: 0 0 0 3px rgba(195, 255, 0, .45); }
.comparison-table-frame {
  position: relative;
  width: 100%;
  min-width: 880px;
}

.comparison-table {
  width: 100%;
  border-spacing: 0;
  color: #fff;
  background: #343537;
  table-layout: fixed;
}

.comparison-table th,
.comparison-table td {
  height: 62px;
  padding: 13px 24px;
  border-right: 1px solid rgba(255, 255, 255, .16);
  border-bottom: 1px solid rgba(255, 255, 255, .16);
  text-align: center;
  font-size: 17px;
  line-height: 1.35;
}

.comparison-table thead th {
  height: 70px;
  border-bottom: 0;
  font-size: 18px;
  font-weight: 750;
}
.comparison-table tbody tr:first-child > * {
  border-top: 2px solid rgba(255, 255, 255, .42);
}
.comparison-table th:first-child { width: 33%; text-align: left; font-weight: 700; }
.comparison-table thead th:first-child { text-align: center; }
.comparison-table td:nth-child(2) { color: #848589; }
.comparison-table tr:last-child > * { border-bottom: 0; }
.comparison-table tr > *:last-child { border-right: 0; }
.comparison-table .moneying-column {
  color: var(--lime);
}

.comparison-table .moneying-column strong { font-weight: 750; }
.moneying-column-outline {
  position: absolute;
  z-index: 2;
  top: 4px;
  right: 4px;
  bottom: 4px;
  width: calc(33.5% - 4px);
  border: 2px solid rgba(195, 255, 0, .9);
  border-radius: 0 12px 12px 0;
  pointer-events: none;
  animation: moneying-border 3.8s ease-in-out infinite;
}

@keyframes moneying-border {
  0%, 58%, 100% {
    border-color: rgba(195, 255, 0, .32);
  }
  18%, 40% {
    border-color: rgba(195, 255, 0, 1);
  }
}

.mobile-scroll-hint { display: none; }

/* Bottom CTA and footer */
.bottom-cta {
  height: 192px;
  padding: 0 24px;
  display: flex;
  align-items: center;
  color: #24262b;
  background: linear-gradient(105deg, #bdff00 0%, #cfff17 48%, #e7ed5b 100%);
}

.bottom-cta-inner {
  width: min(1160px, 100%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.bottom-cta h2 { margin: 0; font-size: 35px; line-height: 42px; letter-spacing: 0; font-weight: 700; }
.bottom-cta p { margin: 10px 0 0; color: #24262b; font-size: 24px; line-height: 29px; font-weight: 400; }
.cta-button {
  min-width: 240px;
  height: 70px;
  padding: 0 32px;
  flex: 0 0 auto;
  color: #fff;
  background: #24262b;
  border-radius: 999px;
  font-size: 31px;
  font-weight: 700;
  letter-spacing: -.02em;
}

.site-footer {
  height: 209px;
  padding: 52px 0 42px;
  color: #fff;
  background: var(--ink);
  font-size: 13px;
  line-height: 1.65;
}
.footer-inner {
  width: min(1760px, calc(100% - 64px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 280px minmax(500px, 1fr) minmax(320px, auto);
  gap: 42px;
  align-items: start;
}

.footer-brand .wordmark { font-size: 44px; }
.footer-info { font-size: 13px; }
.footer-info p { margin: 0; }
.footer-info a { text-decoration: underline; text-underline-offset: 3px; }
.footer-info .copyright { margin-top: 13px; }
.footer-right { display: flex; flex-direction: column; align-items: flex-end; gap: 20px; }
.footer-social,
.footer-links { display: flex; justify-content: flex-end; flex-wrap: wrap; gap: 10px 17px; }
.footer-links { font-size: 13px; }
.footer-social { align-items: center; gap: 13px; }
.footer-social a { color: #fff; line-height: 1; }
.footer-social svg { width: 20px; height: 20px; }
.blog-icon {
  min-width: 29px;
  height: 19px;
  padding: 0 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  background: #fff;
  border-radius: 4px;
  font-size: 8px;
  font-weight: 900;
  text-transform: lowercase;
}

/* Restrained one-shot reveal */
.js .reveal,
.js .reveal-item,
.js .stagger-item,
.js .feature-copy,
.js .reveal-media,
.js .hero-enter {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .72s var(--ease-out), transform .72s var(--ease-out);
}

.js .is-visible,
.js .reveal-group.is-visible .reveal-item,
.js .stagger-group.is-visible .stagger-item,
.js [data-feature-row].is-visible .feature-copy,
.js [data-feature-row].is-visible .reveal-media { opacity: 1; transform: none; }
.js .reveal-group.is-visible .reveal-item:nth-child(2) { transition-delay: .1s; }
.js .reveal-group.is-visible .reveal-item:nth-child(3) { transition-delay: .2s; }
.js [data-feature-row].is-visible .reveal-media { transition-delay: .14s; }
.js .stagger-group.is-visible .stagger-item:nth-child(2) { transition-delay: .08s; }
.js .stagger-group.is-visible .stagger-item:nth-child(3) { transition-delay: .16s; }
.js .stagger-group.is-visible .stagger-item:nth-child(4) { transition-delay: .24s; }
.js .stagger-group.is-visible .stagger-item:nth-child(5) { transition-delay: .32s; }

/* The track is already moving horizontally; a parent Y reveal makes it look like it bumps. */
.js .profile-marquee.hero-enter {
  transform: none;
  transition: opacity .5s var(--ease-out);
}

@media (max-width: 1120px) {
  .desktop-nav { gap: 19px; font-size: 13px; }
  .split-feature { gap: 58px; }
  .strong-card { padding: 48px 52px; gap: 40px; }
  .feature-copy h3,
  .strong-copy h3 { font-size: clamp(32px, 3.75vw, 42px); line-height: 1.25; }
  .feature-copy p,
  .strong-copy p { font-size: clamp(19px, 2.35vw, 28px); line-height: 1.5; }
}

@media (max-width: 820px) {
  .desktop-nav a:nth-child(3),
  .desktop-nav a:nth-child(5),
  .desktop-nav a:nth-child(6) { display: none; }
  .split-feature,
  .split-feature.copy-first { grid-template-columns: 330px minmax(0, 1fr); gap: 42px; }
  .feature-media { width: 330px; }
  .strong-card { grid-template-columns: minmax(0, .9fr) minmax(330px, 1.1fr); }
}

/* Mobile is deliberately rearranged, not a scaled desktop canvas. */
@media (max-width: 760px) {
  .content-shell,
  .wide-shell,
  .compare-shell { width: min(calc(100% - 36px), 540px); }

  .site-header { height: 64px; }
  .header-inner { padding: 0 16px; }
  .wordmark { font-size: 25px; }
  .desktop-nav { display: none; }
  .menu-button {
    width: 48px;
    height: 48px;
    padding: 12px 11px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    color: #fff;
    background: transparent;
    border: 0;
  }

  .menu-button span:not(.sr-only) {
    width: 23px;
    height: 2px;
    display: block;
    background: currentColor;
    border-radius: 2px;
    transition: transform .2s ease, opacity .2s ease;
  }

  .menu-button[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-button[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-button[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .mobile-menu {
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    padding: 22px 20px 28px;
    display: grid;
    gap: 2px;
    color: #fff;
    background: #050505;
    border-top: 1px solid #232323;
    box-shadow: 0 14px 30px rgba(0, 0, 0, .22);
  }

  .mobile-menu[hidden] { display: none; }
  .mobile-menu a { padding: 13px 5px; font-size: 15px; font-weight: 500; }
  .mobile-menu .mobile-start { margin-top: 8px; padding: 13px 18px; color: #25262b; background: var(--lime); border-radius: 999px; text-align: center; }

  .landing-section { padding: 86px 18px 94px; }
  .mobile-only { display: block; }
  .section-heading { max-width: 430px; }
  .section-heading h2 { font-size: clamp(29px, 8vw, 38px); line-height: 1.2; }
  .section-heading > p { margin-top: 18px; font-size: 16px; line-height: 1.55; }

  .ml-hero { min-height: 710px; padding: 76px 0 64px; }
  .ml-hero h1 { font-size: clamp(34px, 9.4vw, 44px); line-height: 1.25; }
  .profile-marquee { margin-top: 58px; }
  .profile-sequence { gap: 14px; padding-right: 14px; }
  .profile-card { width: 176px; height: 320px; border-radius: 19px; }
  .profile-track { animation-duration: 42s; }
  .hero-cta { min-width: 170px; height: 50px; margin-top: 42px; padding: 0 24px; font-size: 16px; }

  .easy-list { margin-top: 58px; }
  .split-feature,
  .split-feature.copy-first {
    min-height: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 26px;
  }

  .split-feature + .split-feature { margin-top: 78px; }
  .easy-section .feature-copy { display: contents; }
  .easy-section .feature-copy h3 {
    order: 1;
    width: 100%;
    text-align: center;
  }
  .easy-section .feature-media { order: 2; }
  .easy-section .feature-copy p {
    order: 3;
    width: 100%;
    margin-top: 0;
    text-align: center;
  }
  .easy-section .feature-copy small {
    order: 4;
    width: 100%;
    margin-top: -12px;
    text-align: center;
  }
  .feature-media { width: 100%; border-radius: 20px; }
  .feature-copy { width: 100%; }
  .feature-copy h3,
  .strong-copy h3 { font-size: 30px; line-height: 1.28; }
  .feature-copy p,
  .strong-copy p { margin-top: 16px; font-size: 17px; line-height: 1.58; }
  .feature-copy small { margin-top: 14px; font-size: 13px; }

  .strong-list { margin-top: 54px; }
  .strong-card {
    min-height: 0;
    padding: 30px 24px 22px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 26px;
    border-radius: 22px;
  }

  .strong-card + .strong-card { margin-top: 22px; }
  .strong-media { width: 100%; aspect-ratio: 1.32; }

  .visual-stage { width: 100%; overflow: hidden; }
  .blocks-section .wide-shell,
  .stats-section .wide-shell { width: 100%; }
  .blocks-section .section-heading,
  .stats-section .section-heading { padding-right: 18px; padding-left: 18px; }
  .blocks-visual { display: none; }
  .blocks-mobile-showcase {
    --blocks-card-width: min(78vw, 336px);
    width: calc(100% + 36px);
    margin: 48px -18px 0;
    display: block;
    overflow: hidden;
  }
  .blocks-mobile-track {
    width: 100%;
    padding: 0 max(18px, calc((100% - var(--blocks-card-width)) / 2));
    display: flex;
    gap: 14px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: max(18px, calc((100% - var(--blocks-card-width)) / 2));
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }
  .blocks-mobile-track::-webkit-scrollbar { display: none; }
  .blocks-mobile-card {
    flex: 0 0 var(--blocks-card-width);
    scroll-snap-align: center;
    scroll-snap-stop: always;
  }
  .blocks-mobile-card img { width: 100%; height: auto; }
  .blocks-mobile-pagination {
    margin-top: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
  }
  .blocks-mobile-pagination button {
    width: 8px;
    height: 8px;
    padding: 0;
    border: 0;
    background: #c7c8cb;
    border-radius: 999px;
    transition: transform .2s ease, background-color .2s ease;
  }
  .blocks-mobile-pagination button[aria-current="true"] { background: var(--lime); transform: scale(1.35); }
  .blocks-mobile-hint {
    margin: 11px 0 0;
    color: #77797e;
    font-size: 12px;
    text-align: center;
  }
  .stats-visual { display: none; }
  .stats-mobile-carousel {
    width: calc(100% + 36px);
    margin: 46px 0 0 -18px;
    display: block;
    overflow: hidden;
  }
  .stats-mobile-track {
    width: 100%;
    padding: 0 18px;
    display: flex;
    gap: 14px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 18px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }
  .stats-mobile-track::-webkit-scrollbar { display: none; }
  .stats-mobile-card {
    flex: 0 0 min(84vw, 344px);
    overflow: visible;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    scroll-snap-align: center;
  }
  .stats-mobile-card img { width: 100%; height: auto; }
  .stats-mobile-pagination {
    margin-top: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
  }
  .stats-mobile-pagination button {
    width: 7px;
    height: 7px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: #c7c8cb;
    transition: width .2s ease, background-color .2s ease;
  }
  .stats-mobile-pagination button[aria-current="true"] {
    width: 22px;
    background: #25262b;
  }
  .stats-mobile-hint { margin: 10px 0 0; color: #77797e; font-size: 12px; text-align: center; }
  .language-visual { width: min(100%, 390px); margin-top: 44px; }
  .accounts-visual { width: 100%; margin-top: 44px; }

  .summary-section { padding-top: 74px; padding-bottom: 82px; }
  .summary-arrow { width: 32px; height: 22px; margin-bottom: 42px; }
  .summary-list {
    margin-top: 48px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px 16px;
    overflow: visible;
    padding: 0;
    text-align: center;
  }

  .summary-item { min-width: 0; }
  .summary-item:last-child {
    width: 128px;
    grid-column: 1 / -1;
    justify-self: center;
  }
  .summary-item img { width: 94px; height: 94px; }
  .summary-item strong { margin-top: 10px; font-size: 17px; }
  .summary-item span { margin-top: 5px; font-size: 12px; }

  .compare-section { padding-top: 86px; padding-bottom: 92px; }
  .compare-section .section-heading h2 { font-size: clamp(29px, 8vw, 38px); line-height: 1.2; }
  .compare-emoji { width: 46px; height: 46px; vertical-align: -.25em; }
  .comparison-scroll { margin-top: 50px; overflow-x: hidden; border-radius: 12px; }
  .comparison-table-frame { min-width: 0; }
  .comparison-table th,
  .comparison-table td { height: 58px; padding: 10px 5px; font-size: 11.5px; line-height: 1.34; }
  .comparison-table thead th { height: 62px; padding: 10px 4px; font-size: 13px; }
  .comparison-table th:first-child {
    width: 32%;
    position: static;
    background: #343537;
    box-shadow: none;
  }
  .comparison-table th:nth-child(2),
  .comparison-table td:nth-child(2) { width: 20%; }
  .comparison-table .moneying-column { width: 48%; }

  .moneying-column-outline { width: calc(48% - 4px); border-radius: 0 8px 8px 0; }

  .bottom-cta { height: 279px; padding: 0 18px; }
  .bottom-cta-inner { flex-direction: column; align-items: flex-start; gap: 32px; text-align: left; }
  .bottom-cta h2 { font-size: 28px; line-height: 1.28; }
  .bottom-cta p { margin-top: 10px; font-size: 14px; line-height: 1.5; }
  .cta-button { width: auto; min-width: 152px; height: 48px; margin: 0 auto; padding: 0 23px; font-size: 15px; }

  .site-footer { height: auto; min-height: 0; padding: 40px 0 44px; }
  .footer-inner { width: calc(100% - 36px); grid-template-columns: 1fr; gap: 26px; }
  .footer-brand .wordmark { font-size: 24px; }
  .footer-info { font-size: 12px; }
  .footer-links { font-size: 12px; }
  .footer-right { align-items: flex-start; }
  .footer-social, .footer-links { justify-content: flex-start; }
}

@media (max-width: 374px) {
  .ml-hero h1 { font-size: 34px; }
  .profile-card { width: 164px; height: 298px; }
  .section-heading h2 { font-size: 29px; }
  .feature-copy h3,
  .strong-copy h3 { font-size: 28px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .profile-track { animation: none; transform: none; }
  .profile-marquee { overflow-x: auto; }
  .js .reveal,
  .js .reveal-item,
  .js .stagger-item,
  .js .feature-copy,
  .js .reveal-media,
  .js .hero-enter { opacity: 1; transform: none; transition: none; }
  .moneying-column-outline { animation: none; }
  .blocks-mobile-track { scroll-behavior: auto; }
}
