:root {
  --purple: #a837c8;
  --purple-dark: #762693;
  --pink: #e650a1;
  --coral: #ef7b6b;
  --orange: #f5a22d;
  --yellow: #ffd84d;
  --ink: #332a38;
  --muted: #746b78;
  --line: #eee6ef;
  --soft-purple: #f8f0fb;
  --soft-pink: #fff4f8;
  --soft-orange: #fff8eb;
  --shadow: 0 18px 50px rgba(79, 39, 84, 0.09);
  --container: 1200px;
  --rounded-heading: "M PLUS Rounded 1c", "Hiragino Maru Gothic ProN", "Yu Gothic", "YuGothic", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink);
  background: #fff;
  font-family: "Hiragino Maru Gothic ProN", "Yu Gothic", "YuGothic", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-size: 16px;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}

html[lang="zh-Hant"] {
  --rounded-heading: "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", sans-serif;
}

html[lang="ko"] {
  --rounded-heading: "Noto Sans KR", "Apple SD Gothic Neo", "Malgun Gothic", sans-serif;
}

html[lang="en"] body {
  font-family: var(--rounded-heading);
}

html[lang="zh-Hant"] body {
  font-family: "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", sans-serif;
}

html[lang="ko"] body {
  font-family: "Noto Sans KR", "Apple SD Gothic Neo", "Malgun Gothic", sans-serif;
}

img,
svg {
  display: block;
}

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 100;
  padding: 8px 14px;
  color: #fff;
  background: var(--purple-dark);
  border-radius: 8px;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(109, 72, 117, 0.08);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 24px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--ink);
  font-size: 19px;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-decoration: none;
  white-space: nowrap;
}

.brand {
  font-family: var(--rounded-heading);
  font-weight: 700;
}

.brand-logo {
  width: 42px;
  height: auto;
  padding: 7px;
  background: linear-gradient(145deg, var(--purple), var(--pink) 52%, var(--orange));
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(159, 50, 180, 0.16);
}

.header-download {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 8px 22px;
  color: #fff;
  background: linear-gradient(110deg, var(--purple), var(--pink) 55%, var(--orange));
  border-radius: 999px;
  box-shadow: 0 8px 22px rgba(190, 64, 155, 0.24);
  font-family: var(--rounded-heading);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.header-download-mobile,
.mobile-break,
.locale-mobile-break {
  display: none;
}

.header-download:hover {
  box-shadow: 0 11px 26px rgba(190, 64, 155, 0.3);
  transform: translateY(-2px);
}

.header-actions {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 12px;
}

.language-switcher {
  position: relative;
  flex: 0 0 auto;
  font-family: var(--rounded-heading);
  font-size: 13px;
  font-weight: 700;
}

.language-switcher summary {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 7px 13px;
  gap: 8px;
  color: #665d69;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid #e9dfea;
  border-radius: 999px;
  cursor: pointer;
  list-style: none;
  line-height: 1.2;
  transition: color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

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

.language-switcher summary::marker {
  content: "";
}

.language-switcher summary:hover,
.language-switcher[open] summary {
  color: var(--purple);
  border-color: rgba(168, 55, 200, 0.32);
  box-shadow: 0 7px 18px rgba(90, 51, 97, 0.1);
}

.language-switcher summary:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 3px;
}

.language-switcher summary svg {
  width: 11px;
  height: 8px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  transition: transform 180ms ease;
}

.language-switcher[open] summary svg {
  transform: rotate(180deg);
}

.language-current-code {
  display: none;
}

.language-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 80;
  display: grid;
  width: 166px;
  padding: 7px;
  gap: 2px;
  background: #fff;
  border: 1px solid #e9dfea;
  border-radius: 15px;
  box-shadow: 0 18px 45px rgba(75, 39, 80, 0.16);
}

.language-menu a {
  display: flex;
  align-items: center;
  min-height: 40px;
  padding: 7px 11px;
  color: #6f6672;
  border-radius: 10px;
  text-decoration: none;
  transition: color 160ms ease, background-color 160ms ease;
}

.language-menu a:hover {
  color: var(--purple);
  background: #fbf4fd;
}

.language-menu a[aria-current="page"] {
  color: var(--purple-dark);
  background: #f6eafb;
}

.language-menu a:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 1px;
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 6% 16%, rgba(255, 216, 77, 0.24), transparent 24%),
    radial-gradient(circle at 92% 18%, rgba(226, 80, 161, 0.12), transparent 22%),
    linear-gradient(145deg, #fff 22%, #fdf8fe 62%, #fffaf0);
}

.hero::after {
  position: absolute;
  right: -110px;
  bottom: -220px;
  width: 520px;
  height: 520px;
  border: 80px solid rgba(245, 162, 45, 0.07);
  border-radius: 50%;
  content: "";
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(500px, 1.05fr);
  align-items: center;
  min-height: 760px;
  padding-block: 72px 84px;
  gap: clamp(36px, 6vw, 90px);
}

.hero-copy {
  padding-left: clamp(0px, 2vw, 24px);
}

.app-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 26px;
  color: var(--purple-dark);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.app-label img {
  width: 46px;
  height: auto;
  border-radius: 13px;
  box-shadow: 0 7px 18px rgba(159, 50, 180, 0.18);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 1.35;
}

h1 {
  margin-bottom: 27px;
  font-family: var(--rounded-heading);
  font-size: clamp(48px, 5.2vw, 76px);
  font-weight: 800;
  letter-spacing: -0.045em;
}

h1 span {
  color: transparent;
  background: linear-gradient(105deg, var(--purple) 4%, var(--pink) 48%, var(--orange) 92%);
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-lead {
  max-width: 530px;
  margin-bottom: 30px;
  color: #5e5362;
  font-size: clamp(17px, 1.55vw, 21px);
  font-weight: 600;
  line-height: 1.9;
}

.store-buttons {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-copy .store-buttons {
  justify-content: center;
}

.hero-copy .store-proof {
  display: flex;
  justify-content: center;
}

.store-buttons a {
  display: block;
  border-radius: 7px;
  transition: transform 180ms ease, filter 180ms ease;
}

.store-buttons a:hover {
  filter: brightness(1.08);
  transform: translateY(-2px);
}

.store-buttons a:focus-visible,
.header-download:focus-visible,
.brand:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 4px;
}

.store-buttons img {
  width: 162px;
  height: auto;
}

.store-proof {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin: 17px 0 0;
  padding: 6px 0;
  color: #6e5360;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.8;
  white-space: nowrap;
}

.hero-visual {
  position: relative;
  width: 100%;
  min-height: 640px;
}

.visual-blob {
  position: absolute;
  top: 10%;
  right: 1%;
  width: 86%;
  aspect-ratio: 1;
  background: linear-gradient(145deg, rgba(185, 55, 201, 0.13), rgba(246, 117, 100, 0.1) 55%, rgba(255, 209, 63, 0.18));
  border-radius: 43% 57% 62% 38% / 43% 42% 58% 57%;
  transform: rotate(12deg);
}

.phone-image {
  display: block;
  height: auto;
  object-fit: contain;
}

.phone-picture {
  display: contents;
}

.hero-phone {
  position: absolute;
  filter: drop-shadow(0 24px 20px rgba(51, 31, 55, 0.16));
}

.hero-phone-back {
  top: 40px;
  left: 1%;
  z-index: 1;
  width: min(52%, 270px);
  transform: rotate(-6deg);
}

.hero-phone-front {
  right: 1%;
  bottom: 0;
  z-index: 2;
  width: min(57%, 302px);
  transform: rotate(3deg);
}

.visual-spark {
  position: absolute;
  z-index: 4;
  color: var(--orange);
  line-height: 1;
}

.spark-one {
  top: 26%;
  right: -1%;
  font-size: 25px;
}

.spark-two {
  bottom: 13%;
  left: -1%;
  color: var(--pink);
  font-size: 17px;
}

.decor {
  position: absolute;
  z-index: 1;
}

.decor-ring {
  width: 40px;
  height: 40px;
  border: 8px solid var(--yellow);
  border-radius: 50%;
}

.decor-dot {
  width: 13px;
  height: 13px;
  background: var(--pink);
  border-radius: 50%;
}

.decor-star {
  color: var(--purple);
  font-size: 26px;
}

.decor-star-svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}

.hero-ring {
  top: 15%;
  left: 3%;
  opacity: 0.55;
}

.hero-dot {
  right: 3%;
  bottom: 21%;
  opacity: 0.55;
}

.hero-star {
  bottom: 15%;
  left: 4%;
  opacity: 0.35;
}

.section-space {
  padding-block: 128px;
}

.section-heading {
  max-width: 720px;
  margin: 0 auto 58px;
  text-align: center;
}

.section-kicker {
  margin-bottom: 10px;
  color: var(--purple);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.2em;
}

.section-heading h2 {
  margin-bottom: 16px;
  font-family: var(--rounded-heading);
  font-size: clamp(30px, 3vw, 44px);
  font-weight: 700;
  letter-spacing: -0.025em;
}

.section-heading > p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

.steps {
  background: #fff;
}

.step-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  gap: 24px;
  list-style: none;
}

.step-card {
  position: relative;
  overflow: hidden;
  min-width: 0;
  padding: 30px 28px 0;
  border: 1px solid rgba(133, 80, 138, 0.09);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.step-pink {
  background: linear-gradient(160deg, #fff 10%, var(--soft-pink));
}

.step-purple {
  background: linear-gradient(160deg, #fff 10%, var(--soft-purple));
}

.step-orange {
  background: linear-gradient(160deg, #fff 10%, var(--soft-orange));
}

.step-title-row {
  display: flex;
  align-items: center;
  gap: 13px;
}

.step-title-row h3 {
  margin-bottom: 0;
  font-family: var(--rounded-heading);
  font-size: clamp(18px, 1.5vw, 22px);
  font-weight: 700;
}

.step-number {
  flex: 0 0 auto;
  color: var(--pink);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.step-purple .step-number {
  color: var(--purple);
}

.step-orange .step-number {
  color: var(--orange);
}

.step-card > p {
  min-height: 58px;
  margin: 15px 0 25px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.step-phone-wrap {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  min-height: 430px;
}

.step-phone {
  width: min(76%, 238px);
  filter: drop-shadow(0 14px 16px rgba(53, 36, 57, 0.14));
}

.features {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #fdf9fe, #fff 80%);
}

.features::before {
  position: absolute;
  top: 90px;
  left: -190px;
  width: 420px;
  height: 420px;
  background: rgba(226, 80, 161, 0.045);
  border-radius: 50%;
  content: "";
}

.feature-ring {
  right: 7%;
  bottom: 16%;
  border-color: var(--pink);
  opacity: 0.3;
}

.feature-star {
  top: 16%;
  left: 6%;
  color: var(--orange);
  opacity: 0.45;
}

.feature-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.feature-card {
  padding: 42px 34px 38px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: 0 15px 45px rgba(90, 51, 97, 0.07);
  text-align: center;
}

.feature-icon {
  display: grid;
  width: 76px;
  height: 76px;
  margin: 0 auto 23px;
  place-items: center;
  border-radius: 22px;
}

.feature-icon svg {
  width: 55px;
  height: 55px;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.7;
}

.feature-icon .icon-fill {
  fill: currentColor;
  stroke: none;
}

.icon-percent {
  color: var(--pink);
  background: #fff0f6;
}

.icon-face {
  color: var(--purple);
  background: #f5ebfa;
}

.icon-share {
  color: #ee9621;
  background: #fff5df;
}

.feature-card h3 {
  margin-bottom: 11px;
  font-family: var(--rounded-heading);
  font-size: 22px;
  font-weight: 700;
}

.feature-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.privacy-section {
  padding: 16px 24px 0;
}

.privacy-card {
  display: flex;
  align-items: center;
  width: min(100%, 780px);
  margin-inline: auto;
  padding: 27px 32px;
  gap: 22px;
  background: #fbf8fc;
  border: 1px solid #eee5f0;
  border-radius: 20px;
}

.privacy-content {
  display: flex;
  flex: 1;
  align-items: center;
  min-width: 0;
  gap: 18px;
}

.privacy-copy {
  min-width: 0;
}

.privacy-icon {
  display: grid;
  flex: 0 0 auto;
  width: 54px;
  height: 54px;
  color: var(--purple);
  background: #f0e3f6;
  border-radius: 16px;
  place-items: center;
}

.privacy-icon svg {
  width: 32px;
  height: 32px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

.privacy-card h2 {
  margin-bottom: 4px;
  font-family: var(--rounded-heading);
  font-size: 20px;
  font-weight: 700;
}

.privacy-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.privacy-link {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  min-height: 40px;
  margin-left: auto;
  padding: 6px 0 6px 10px;
  color: #766e79;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.5;
  text-decoration: underline;
  text-decoration-color: rgba(118, 110, 121, 0.35);
  text-underline-offset: 3px;
  white-space: nowrap;
  transition: color 180ms ease, text-decoration-color 180ms ease;
}

.privacy-link:hover {
  color: var(--purple);
  text-decoration-color: currentColor;
}

.privacy-link:focus-visible,
.footer-nav a:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 3px;
}

.faq-section {
  padding-top: 96px;
}

.faq-heading {
  margin-bottom: 34px;
}

.faq-heading h2 {
  margin-bottom: 0;
}

.faq-list {
  display: grid;
  width: min(100%, 880px);
  margin: 0 auto;
  gap: 12px;
}

.faq-item {
  overflow: hidden;
  background: #fff;
  border: 1px solid #eee5f0;
  border-radius: 18px;
  box-shadow: 0 8px 22px rgba(87, 45, 91, 0.06);
}

.faq-item summary {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 21px 24px;
  color: var(--purple-dark);
  cursor: pointer;
  font-family: var(--rounded-heading);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.6;
  list-style: none;
}

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

.faq-item summary::after {
  flex: 0 0 auto;
  width: 9px;
  height: 9px;
  margin-left: auto;
  border-right: 2px solid var(--purple);
  border-bottom: 2px solid var(--purple);
  content: "";
  transform: rotate(45deg) translateY(-2px);
  transition: transform 180ms ease;
}

.faq-item[open] summary::after {
  transform: rotate(225deg) translateY(-2px);
}

.faq-item summary:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: -3px;
}

.faq-answer {
  padding: 0 24px 22px;
  color: var(--muted);
}

.faq-answer p {
  margin: 0;
  line-height: 1.9;
}

.download-section {
  padding-bottom: 112px;
}

.download-card {
  position: relative;
  overflow: hidden;
  padding: 70px 32px 76px;
  color: #fff;
  background: linear-gradient(120deg, #8332b2, #c63f9d 46%, #ef766b 73%, #f4a12b);
  border-radius: 36px;
  box-shadow: 0 24px 60px rgba(152, 54, 138, 0.22);
  text-align: center;
}

.download-card::before {
  position: absolute;
  inset: 1px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 35px;
  content: "";
  pointer-events: none;
}

.cta-app-icon {
  position: relative;
  z-index: 1;
  width: 76px;
  height: auto;
  margin: 0 auto 20px;
  border: 2px solid rgba(255, 255, 255, 0.65);
  border-radius: 22px;
  box-shadow: 0 10px 25px rgba(87, 24, 76, 0.2);
}

.cta-kicker,
.download-card h2,
.cta-copy,
.download-card .store-buttons {
  position: relative;
  z-index: 1;
}

.cta-kicker {
  margin-bottom: 10px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  opacity: 0.86;
}

.download-card h2 {
  margin-bottom: 13px;
  font-family: var(--rounded-heading);
  font-size: clamp(30px, 3.2vw, 46px);
  font-weight: 700;
  letter-spacing: -0.03em;
}

.cta-copy {
  margin-bottom: 28px;
  font-weight: 700;
  opacity: 0.92;
}

.cta-keep {
  white-space: nowrap;
}

.store-buttons-light {
  justify-content: center;
}

.store-buttons-light a {
  box-shadow: 0 8px 24px rgba(72, 22, 61, 0.2);
}

.cta-circle,
.cta-star {
  position: absolute;
  opacity: 0.28;
}

.cta-circle {
  border: 2px solid #fff;
  border-radius: 50%;
}

.cta-circle-one {
  top: 14%;
  left: 7%;
  width: 92px;
  height: 92px;
}

.cta-circle-two {
  right: 9%;
  bottom: -60px;
  width: 210px;
  height: 210px;
  border-width: 38px;
  opacity: 0.12;
}

.cta-star {
  color: #fff;
  line-height: 1;
}

.cta-star-one {
  top: 21%;
  right: 13%;
  font-size: 34px;
}

.cta-star-two {
  bottom: 19%;
  left: 13%;
  font-size: 20px;
}

.site-footer {
  padding: 36px 0 40px;
  border-top: 1px solid var(--line);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-brand-links {
  display: contents;
}

.footer-brand {
  font-size: 15px;
}

.footer-brand img {
  width: 34px;
  height: auto;
  padding: 6px;
  background: linear-gradient(145deg, var(--purple), var(--pink) 52%, var(--orange));
  border-radius: 10px;
}

.footer-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px;
}

.footer-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 4px 2px;
  color: #766e79;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: color 180ms ease;
}

.footer-nav a:hover {
  color: var(--pink);
}

.footer-nav-separator {
  color: #c7bdca;
  font-size: 12px;
}

.footer-inner > p {
  margin-bottom: 0;
  color: #8b828e;
  font-size: 12px;
}

@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(410px, 1.1fr);
    min-height: 700px;
    gap: 20px;
  }

  .hero-visual {
    min-height: 580px;
  }

  .hero-phone-back {
    width: min(50%, 235px);
  }

  .hero-phone-front {
    width: min(56%, 267px);
  }

  .step-card {
    padding-inline: 20px;
  }

  .step-phone {
    width: min(88%, 222px);
  }
}

@media (min-width: 769px) {
  .mobile-break {
    display: block;
  }

  .step-card {
    display: flex;
    flex-direction: column;
    padding-bottom: 20px;
  }

  .step-phone-wrap {
    margin-top: auto;
  }

  .section-heading > p:last-child,
  .step-card > p,
  .feature-card p,
  .privacy-card p {
    color: #6b6470;
  }
}

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

  .header-inner {
    min-height: 68px;
  }

  .brand {
    font-size: 17px;
  }

  .brand-logo {
    width: 38px;
  }

  .header-download {
    min-height: 40px;
    padding-inline: 16px;
    font-size: 12px;
  }

  .header-actions {
    gap: 6px;
  }

  .language-switcher summary {
    min-width: 44px;
    min-height: 40px;
    padding: 6px 8px;
    gap: 5px;
    font-size: 11px;
  }

  .language-current-full {
    display: none;
  }

  .language-current-code {
    display: inline;
  }

  .language-menu {
    width: 158px;
  }

  .header-download-desktop {
    display: none;
  }

  .header-download-mobile {
    display: inline;
  }

  .mobile-break {
    display: block;
  }

  .mobile-keep {
    white-space: nowrap;
  }

  .hero-grid {
    display: block;
    min-height: 0;
    padding-block: 58px 74px;
  }

  .hero-copy {
    padding-left: 0;
    text-align: center;
  }

  .app-label {
    margin-bottom: 20px;
  }

  h1 {
    margin-bottom: 22px;
    font-size: clamp(44px, 13vw, 58px);
  }

  .hero-lead {
    margin-inline: auto;
    font-size: 17px;
  }

  .store-buttons {
    justify-content: center;
  }

  .store-buttons img {
    width: 148px;
  }

  .store-proof {
    margin-top: 16px;
  }

  .hero-visual {
    width: min(100%, 520px);
    min-height: 600px;
    margin: 45px auto 0;
  }

  .hero-phone-back {
    top: 54px;
    left: 5%;
    width: min(50%, 250px);
  }

  .hero-phone-front {
    right: 4%;
    width: min(56%, 280px);
  }

  .section-space {
    padding-block: 92px;
  }

  .section-heading {
    margin-bottom: 42px;
  }

  .section-heading h2 {
    font-size: 32px;
  }

  .step-grid,
  .feature-grid {
    grid-template-columns: 1fr;
    width: min(100%, 440px);
    margin-inline: auto;
    gap: 24px;
  }

  .step-card {
    padding: 28px 25px 0;
  }

  .step-card > p {
    min-height: 0;
    margin-bottom: 24px;
  }

  .step-phone-wrap {
    min-height: 0;
  }

  .step-phone {
    width: min(74%, 240px);
  }

  .feature-card {
    padding: 36px 30px 33px;
  }

  .privacy-card {
    align-items: flex-start;
  }

  .privacy-content {
    display: block;
  }

  .privacy-link {
    min-height: 38px;
    margin: 6px 0 0;
    padding: 5px 0;
  }

  .download-section {
    padding-bottom: 88px;
  }

  .download-card {
    padding: 58px 24px 62px;
    border-radius: 28px;
  }

  .download-card::before {
    border-radius: 27px;
  }

  .footer-inner {
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }
}

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

  .header-inner {
    gap: 12px;
  }

  .brand {
    gap: 8px;
    font-size: 15px;
  }

  .brand-logo {
    width: 34px;
    border-radius: 10px;
  }

  .header-download {
    max-width: 142px;
    padding: 7px 13px;
    line-height: 1.25;
    text-align: center;
  }

  .hero-grid {
    padding-block: 47px 68px;
  }

  .app-label {
    gap: 10px;
    font-size: 12px;
  }

  .app-label img {
    width: 40px;
    border-radius: 12px;
  }

  h1 {
    font-size: clamp(42px, 13vw, 50px);
    line-height: 1.28;
  }

  .hero-lead {
    font-size: 15px;
    line-height: 1.85;
  }

  .store-buttons {
    flex-wrap: nowrap;
    gap: 8px;
  }

  .store-buttons a,
  .store-buttons img {
    width: 145px;
  }

  .store-proof {
    font-size: 11px;
  }

  .hero-visual {
    min-height: 480px;
    margin-top: 40px;
  }

  .visual-blob {
    top: 12%;
    right: 2%;
    width: 92%;
  }

  .hero-phone-back {
    top: 62px;
    left: 3%;
    width: 50%;
  }

  .hero-phone-front {
    right: 2%;
    width: 56%;
  }

  .section-space {
    padding-block: 78px;
  }

  .section-heading {
    margin-bottom: 35px;
  }

  .section-kicker {
    font-size: 11px;
  }

  .section-heading h2 {
    margin-bottom: 12px;
    font-size: 28px;
  }

  .section-heading > p:last-child {
    font-size: 14px;
  }

  .step-card {
    padding: 25px 21px 0;
    border-radius: 23px;
  }

  .step-title-row {
    gap: 10px;
  }

  .step-title-row h3 {
    font-size: 19px;
  }

  .step-card > p {
    font-size: 13px;
  }

  .step-phone {
    width: min(75%, 220px);
  }

  .features::before,
  .feature-ring,
  .feature-star {
    display: none;
  }

  .feature-card {
    padding: 32px 24px;
    border-radius: 22px;
  }

  .feature-icon {
    width: 68px;
    height: 68px;
    margin-bottom: 18px;
    border-radius: 20px;
  }

  .feature-icon svg {
    width: 49px;
    height: 49px;
  }

  .privacy-section {
    padding-inline: 14px;
  }

  .privacy-card {
    padding: 23px 20px;
    gap: 15px;
  }

  .privacy-icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
  }

  .privacy-icon svg {
    width: 27px;
    height: 27px;
  }

  .privacy-card h2 {
    font-size: 16px;
  }

  .privacy-card p {
    font-size: 12px;
    line-height: 1.7;
  }

  .download-card {
    padding: 48px 15px 54px;
  }

  .cta-app-icon {
    width: 68px;
    border-radius: 20px;
  }

  .download-card h2 {
    font-size: 28px;
  }

  .desktop-break {
    display: none;
  }

  .locale-mobile-break {
    display: block;
  }

  .download-card .store-buttons {
    gap: 7px;
  }

  .download-card .store-buttons a,
  .download-card .store-buttons img {
    width: 140px;
  }

  .cta-circle-one {
    left: -30px;
  }

  .cta-star-one {
    right: 7%;
  }
}

@media (max-width: 360px) {
  .store-proof {
    flex-direction: column;
    gap: 0;
    white-space: normal;
  }

  .store-proof-separator {
    display: none;
  }
}

@media (max-width: 768px) {
  .hero-grid {
    padding-bottom: 35px;
  }

  .hero-visual {
    margin-top: -21px;
  }

  .steps.section-space {
    padding-top: 35px;
    padding-bottom: 32px;
  }

  .features {
    background: #fdf9fe;
  }

  .features.section-space {
    padding-top: 32px;
    padding-bottom: 24px;
  }

  .privacy-section {
    padding-top: 0;
    padding-bottom: 40px;
    background: #fdf9fe;
    border-top: 0;
  }

  .faq-section {
    padding-top: 48px;
  }

  .faq-heading {
    margin-bottom: 26px;
  }

  .faq-item summary {
    padding: 18px 20px;
    gap: 14px;
    font-size: 16px;
  }

  .faq-answer {
    padding: 0 20px 20px;
  }

  .download-section.section-space {
    padding-top: 88px;
    padding-bottom: 48px;
  }

  .site-footer {
    padding: 24px 20px 22px;
  }

  .footer-inner {
    flex-direction: column;
    width: 100%;
    justify-content: center;
    gap: 12px;
    text-align: center;
  }

  .footer-brand-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
  }

  .footer-nav {
    display: grid;
    grid-template-columns: auto 20px auto;
    gap: 0;
  }

  .footer-brand,
  .footer-nav,
  .footer-inner > p {
    margin: 0;
  }

  .footer-nav-separator {
    justify-self: center;
  }

  .step-card {
    padding-bottom: 20px;
  }

  .feature-grid {
    grid-template-columns: 1fr;
    width: min(100%, 440px);
    margin-inline: auto;
    gap: 15px;
  }

  .feature-card {
    display: flex;
    align-items: center;
    min-height: 0;
    padding: 20px;
    gap: 16px;
    text-align: left;
  }

  .feature-icon {
    flex: 0 0 56px;
    width: 56px;
    height: 56px;
    margin: 0;
    border-radius: 18px;
  }

  .feature-icon svg {
    width: 40px;
    height: 40px;
  }

  .feature-content {
    min-width: 0;
  }

  .feature-keep {
    white-space: nowrap;
  }

  .feature-card h3 {
    margin-bottom: 5px;
  }
}

@media (max-width: 760px) {
  .download-section.section-space {
    padding-top: 52px;
  }
}

@media (max-width: 480px) {
  .download-section.section-space {
    padding-top: 38px;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
