:root {
  --purple-900: #39206f;
  --purple-700: #6744ed;
  --purple-600: #7b5cff;
  --purple-500: #8d72ff;
  --purple-200: #ddd4ff;
  --purple-100: #eee9ff;
  --purple-50: #f8f6ff;
  --ink: #211e28;
  --muted: #696574;
  --line: #ebe7f3;
  --surface: #ffffff;
  --shadow: 0 22px 60px rgba(67, 45, 112, 0.1);
  --shell: min(1180px, calc(100% - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: Pretendard, "Noto Sans KR", "Apple SD Gothic Neo", Inter, system-ui, -apple-system, sans-serif;
  word-break: keep-all;
  -webkit-font-smoothing: antialiased;
}
button, input, textarea, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.section-shell { width: var(--shell); margin-inline: auto; }
.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 1000;
  padding: 10px 14px;
  color: #fff;
  background: var(--purple-700);
  border-radius: 9px;
  transform: translateY(-160%);
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: 76px;
  border-bottom: 1px solid rgba(235, 231, 243, 0.8);
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(18px);
  transition: box-shadow .25s ease, height .25s ease;
}
.site-header.scrolled { height: 68px; box-shadow: 0 10px 30px rgba(44, 31, 75, .07); }
.header-inner {
  width: var(--shell);
  height: 100%;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand { display: inline-flex; align-items: center; gap: 10px; font-size: 25px; font-weight: 900; letter-spacing: -1.3px; }
.brand img { width: 42px; height: 42px; object-fit: cover; border-radius: 12px; box-shadow: 0 7px 18px rgba(123, 92, 255, .18); }
.site-nav { display: flex; align-items: center; gap: 34px; }
.site-nav a { position: relative; padding: 25px 0 22px; font-size: 14px; font-weight: 750; color: #47434f; }
.site-nav a::after {
  content: "";
  position: absolute;
  right: 50%; bottom: 13px; left: 50%;
  height: 2px;
  border-radius: 2px;
  background: var(--purple-600);
  transition: right .2s ease, left .2s ease;
}
.site-nav a:hover, .site-nav a.active { color: var(--purple-700); }
.site-nav a.active::after { right: 0; left: 0; }
.nav-cta {
  padding: 11px 18px;
  border: 0;
  border-radius: 10px;
  color: #fff;
  background: linear-gradient(135deg, #6944ee, #8d60ff);
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 9px 20px rgba(105, 68, 238, .2);
}
.menu-button { display: none; width: 42px; height: 42px; border: 0; border-radius: 10px; background: var(--purple-50); cursor: pointer; }
.menu-button span { display: block; width: 20px; height: 2px; margin: 4px auto; border-radius: 2px; background: var(--purple-900); }

.hero {
  position: relative;
  min-height: 700px;
  padding-top: 76px;
  overflow: hidden;
  background:
    radial-gradient(circle at 72% 35%, rgba(191, 167, 255, .35), transparent 31%),
    linear-gradient(115deg, #fbfaff 0%, #f1ecff 52%, #f9f7ff 100%);
}
.hero::before {
  content: "";
  position: absolute;
  width: 480px; height: 480px;
  right: 2%; top: 140px;
  border-radius: 50%;
  border: 1px solid rgba(143, 112, 255, .12);
}
.hero-orb { position: absolute; border-radius: 50%; pointer-events: none; }
.hero-orb-one { width: 18px; height: 18px; top: 150px; left: 8%; background: rgba(255,255,255,.88); }
.hero-orb-two { width: 22px; height: 22px; right: 5%; bottom: 100px; background: #cbbcff; }
.hero-grid { position: relative; z-index: 2; min-height: 624px; display: grid; grid-template-columns: .92fr 1.08fr; align-items: center; gap: 36px; }
.hero-copy { padding: 54px 0 70px; }
.eyebrow, .section-kicker { color: var(--purple-700); font-size: 13px; font-weight: 850; letter-spacing: .02em; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; margin: 0 0 24px; padding: 8px 12px; border: 1px solid var(--purple-200); border-radius: 999px; background: rgba(255,255,255,.72); }
.eyebrow span, .launch-note span { width: 7px; height: 7px; border-radius: 50%; background: var(--purple-600); box-shadow: 0 0 0 4px rgba(123,92,255,.12); }
.hero h1 { margin: 0; font-size: clamp(45px, 5vw, 72px); line-height: 1.13; letter-spacing: -.06em; }
.hero h1 strong { display: inline-block; color: transparent; background: linear-gradient(100deg, #6941e9, #9e69ff); background-clip: text; -webkit-background-clip: text; }
.hero-description { margin: 28px 0 34px; color: var(--muted); font-size: 18px; line-height: 1.8; }
.store-actions { display: flex; gap: 12px; }
.store-button {
  min-width: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 13px 20px;
  border: 1px solid #ddd8e8;
  border-radius: 13px;
  color: var(--ink);
  background: #fff;
  cursor: pointer;
  text-align: left;
  font-size: 17px;
  font-weight: 850;
  box-shadow: 0 10px 24px rgba(55,42,87,.06);
  transition: transform .2s ease, box-shadow .2s ease;
}
.store-button:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(55,42,87,.11); }
.store-button small { display: block; margin-bottom: 1px; font-size: 10px; font-weight: 650; opacity: .7; }
.store-button-primary { color: #fff; border-color: transparent; background: linear-gradient(135deg, #6744ed, #915cff); }
.store-symbol { font-size: 25px; line-height: 1; }
.store-symbol.apple { font-size: 20px; }
.launch-note { display: flex; align-items: center; gap: 9px; margin: 18px 0 0 4px; color: #777180; font-size: 12px; }

.phone-stage { position: relative; height: 600px; align-self: end; }
.stage-glow { position: absolute; width: 480px; height: 430px; left: 50%; bottom: 35px; transform: translateX(-50%); border-radius: 50%; background: rgba(255,255,255,.53); filter: blur(2px); }
.phone { position: absolute; padding: 8px; border: 3px solid #222029; border-radius: 42px; background: #16151b; box-shadow: 0 35px 60px rgba(42,27,76,.23), inset 0 0 0 1px #77717d; }
.phone-main { width: 270px; height: 550px; left: 13%; bottom: -48px; transform: rotate(-1.5deg); z-index: 2; }
.phone-side { width: 250px; height: 510px; right: 4%; bottom: -58px; transform: rotate(6deg); z-index: 3; }
.phone-notch { position: absolute; z-index: 4; width: 88px; height: 20px; top: 8px; left: 50%; transform: translateX(-50%); border-radius: 0 0 13px 13px; background: #15141a; }
.phone-screen { position: relative; height: 100%; overflow: hidden; border-radius: 32px; background: #fff; padding: 13px 12px 54px; }
.mock-status { display: flex; justify-content: space-between; padding: 1px 6px 13px; font-size: 7px; font-weight: 800; }
.mock-brand, .profile-title { display: flex; align-items: center; justify-content: space-between; padding: 7px 2px 11px; font-size: 10px; }
.mock-brand > div { display: flex; align-items: center; gap: 5px; }
.mock-brand img { width: 18px; height: 18px; object-fit: cover; border-radius: 5px; }
.mock-search { display: flex; justify-content: space-between; padding: 10px 11px; border: 1px solid #ece9f3; border-radius: 10px; color: #aaa5b2; font-size: 7px; }
.mock-categories { display: grid; grid-template-columns: repeat(4,1fr); gap: 4px; margin: 16px 0 20px; }
.mock-categories div { text-align: center; }
.mock-categories small { display: block; margin-top: 5px; font-size: 6px; font-weight: 750; }
.cat { width: 34px; height: 34px; display: grid; place-items: center; margin: auto; border-radius: 12px; font-size: 14px; }
.cat.violet { color: #7354f3; background: #f0ebff; }
.cat.mint { color: #24a681; background: #e7f8f2; }
.cat.orange { color: #ef7d3f; background: #fff0e7; }
.cat.pink { color: #ed6f9c; background: #ffedf4; }
.mock-section-title { display: flex; justify-content: space-between; margin-bottom: 9px; font-size: 10px; }
.mock-products { display: grid; grid-template-columns: repeat(3,1fr); gap: 6px; }
.mock-products article small, .mock-products article b, .mock-products article em { display: block; }
.mock-products article small { margin-top: 5px; color: #96909e; font-size: 5px; }
.mock-products article b { margin-top: 2px; overflow: hidden; font-size: 7px; white-space: nowrap; }
.mock-products article em { margin-top: 4px; color: #ef5b95; font-size: 6px; font-style: normal; }
.product-image { position: relative; height: 74px; border-radius: 8px; overflow: hidden; }
.product-image::after { content: ""; position: absolute; width: 36px; height: 80px; right: -10px; top: -18px; transform: rotate(35deg); background: rgba(255,255,255,.33); }
.product-image span { position: absolute; z-index: 2; left: 5px; bottom: 5px; padding: 2px 4px; border-radius: 4px; color: #fff; background: #8a62fa; font-size: 5px; font-weight: 800; }
.product-one { background: linear-gradient(145deg,#ece0c4,#ad8b64); }
.product-two { background: linear-gradient(145deg,#ffdfe9,#e06d92); }
.product-three { background: linear-gradient(145deg,#e5e1ff,#786be0); }
.mock-keywords { margin-top: 23px; font-size: 8px; }
.mock-keywords > div { display: flex; gap: 4px; margin-top: 8px; }
.mock-keywords span { padding: 5px 7px; color: #7255d7; border-radius: 99px; background: #f1edff; font-size: 5px; }
.mock-bottom { position: absolute; inset: auto 0 0; height: 48px; display: flex; align-items: center; justify-content: space-around; border-top: 1px solid #f0edf5; background: #fff; font-size: 12px; }
.mock-bottom b { color: #7354f3; }
.mock-bottom small { display: block; margin-top: 2px; font-size: 5px; font-weight: 650; }
.profile-screen { padding-inline: 14px; }
.profile-title { margin-top: 2px; font-size: 13px; }
.profile-user { display: grid; grid-template-columns: 42px 1fr auto; align-items: center; gap: 9px; padding: 16px 2px; }
.avatar { width: 42px; height: 42px; display: grid; place-items: center; color: #7253f2; border-radius: 14px; background: #f0ebff; font-size: 19px; }
.profile-user b, .profile-user small { display: block; }
.profile-user b { font-size: 9px; }
.profile-user small { margin-top: 3px; color: #8e8996; font-size: 6px; }
.profile-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; padding: 10px; border-radius: 11px; background: #faf9fc; text-align: center; }
.profile-stats div + div { border-left: 1px solid #e9e5ee; }
.profile-stats b, .profile-stats small { display: block; }
.profile-stats b { color: #5e42d1; font-size: 9px; }
.profile-stats small { margin-top: 3px; color: #827d89; font-size: 6px; }
.profile-action { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 7px; margin: 13px 0 10px; padding: 11px; color: #fff; border-radius: 10px; background: linear-gradient(100deg,#6744ed,#925fff); font-size: 8px; }
.profile-action span { width: 18px; height: 18px; display: grid; place-items: center; color: #7454e8; border-radius: 50%; background: #fff; }
.profile-action i { font-style: normal; }
.profile-menu > div { display: grid; grid-template-columns: 20px 1fr auto; align-items: center; padding: 13px 3px; border-bottom: 1px solid #efecf2; font-size: 8px; }
.profile-menu i { font-style: normal; color: #9a95a1; }

.intro-section { position: relative; z-index: 10; padding: 72px 0 42px; background: #fff; }
.intro-card { display: grid; grid-template-columns: 1.2fr 1.8fr; border: 1px solid var(--line); border-radius: 24px; background: #fff; box-shadow: var(--shadow); overflow: hidden; }
.intro-lead { display: grid; grid-template-columns: 92px 1fr; gap: 22px; align-items: center; padding: 38px; background: linear-gradient(135deg,#fbfaff,#f4f0ff); }
.intro-logo { padding: 8px; border-radius: 24px; background: #fff; box-shadow: 0 16px 28px rgba(93,66,167,.12); }
.intro-logo img { border-radius: 18px; }
.section-kicker { margin: 0 0 9px; letter-spacing: .12em; }
.intro-lead h2, .section-heading h2, .community-copy h2 { margin: 0; font-size: 27px; letter-spacing: -.04em; }
.intro-lead h2 strong, .section-heading strong, .community-copy strong { color: var(--purple-700); }
.intro-lead p:last-child { margin: 13px 0 0; color: var(--muted); font-size: 14px; line-height: 1.7; }
.intro-points { display: grid; grid-template-columns: repeat(3,1fr); align-items: center; padding: 28px 18px; }
.intro-points article { min-height: 150px; padding: 14px 24px; text-align: center; }
.intro-points article + article { border-left: 1px solid var(--line); }
.intro-points span, .feature-icon { width: 50px; height: 50px; display: grid; place-items: center; margin: 0 auto 14px; color: var(--purple-700); border-radius: 50%; background: var(--purple-100); font-size: 24px; font-weight: 700; }
.intro-points h3 { margin: 0 0 8px; font-size: 15px; }
.intro-points p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.6; }

.features-section { padding: 110px 0; background: #fbfaff; }
.section-heading { max-width: 630px; margin: 0 auto 48px; text-align: center; }
.section-heading h2, .community-copy h2 { font-size: clamp(30px,4vw,46px); line-height: 1.28; }
.section-heading > p:last-child { margin: 18px 0 0; color: var(--muted); line-height: 1.7; }
.feature-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.feature-card { position: relative; min-height: 285px; padding: 30px; border: 1px solid var(--line); border-radius: 22px; background: #fff; overflow: hidden; transition: transform .25s ease, box-shadow .25s ease; }
.feature-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.feature-card::after { content: ""; position: absolute; width: 150px; height: 150px; right: -70px; bottom: -70px; border-radius: 50%; background: var(--feature-soft); }
.feature-number { position: absolute; right: 24px; top: 23px; color: #dad5e3; font-size: 14px; font-weight: 900; }
.feature-card .feature-icon { margin: 0 0 31px; color: var(--feature); background: var(--feature-soft); }
.feature-card h3 { margin: 0 0 13px; font-size: 20px; }
.feature-card p { position: relative; z-index: 2; margin: 0; color: var(--muted); font-size: 14px; line-height: 1.8; }
.feature-purple { --feature:#714ee9; --feature-soft:#eee9ff; }
.feature-pink { --feature:#e9659a; --feature-soft:#ffedf4; }
.feature-blue { --feature:#4d86dc; --feature-soft:#eaf3ff; }

.community-section { padding: 110px 0; overflow: hidden; }
.community-grid { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 80px; }
.community-copy > p:not(.section-kicker) { max-width: 520px; margin: 22px 0; color: var(--muted); line-height: 1.8; }
.community-copy ul { display: grid; gap: 13px; margin: 28px 0 0; padding: 0; list-style: none; }
.community-copy li { display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 700; }
.community-copy li span { width: 22px; height: 22px; display: grid; place-items: center; color: #fff; border-radius: 50%; background: var(--purple-600); font-size: 11px; }
.community-visual { position: relative; min-height: 390px; border-radius: 34px; background: linear-gradient(140deg,#f1ecff,#fbf9ff); }
.community-visual::before { content: ""; position: absolute; width: 230px; height: 230px; inset: 70px auto auto 150px; border: 1px dashed #cbbdff; border-radius: 50%; }
.floating-card { position: absolute; display: flex; flex-direction: column; padding: 24px; border: 1px solid #e7e0fa; border-radius: 20px; background: rgba(255,255,255,.95); box-shadow: var(--shadow); }
.floating-card span { align-self: flex-start; margin-bottom: 17px; padding: 5px 8px; color: #fff; border-radius: 7px; background: var(--purple-600); font-size: 9px; font-weight: 900; }
.floating-card b { font-size: 17px; }
.floating-card small { margin-top: 8px; color: var(--muted); }
.card-a { width: 280px; left: 34px; top: 52px; transform: rotate(-4deg); }
.card-b { width: 260px; right: 28px; bottom: 48px; transform: rotate(4deg); }
.card-b span { background: #ef6b9f; }
.floating-bubble { position: absolute; padding: 10px 14px; color: var(--purple-700); border-radius: 999px; background: #fff; box-shadow: 0 12px 26px rgba(67,45,112,.12); font-size: 11px; font-weight: 850; }
.bubble-a { top: 43px; right: 20px; }
.bubble-b { bottom: 36px; left: 20px; }

.support-section { padding: 40px 0 95px; }
.support-card { display: grid; grid-template-columns: 1fr 1.2fr; align-items: center; gap: 40px; padding: 44px 50px; color: #fff; border-radius: 28px; background: linear-gradient(120deg,#4b2baf,#7c58f3 60%,#9a73ff); box-shadow: 0 26px 60px rgba(83,55,167,.22); }
.section-kicker.light { color: #dcd2ff; }
.support-card h2 { margin: 0; font-size: 31px; }
.support-card p:last-child { margin: 13px 0 0; color: #e7e0ff; }
.support-links { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; }
.support-links a { display: flex; flex-direction: column; align-items: center; gap: 10px; padding: 18px 8px; border: 1px solid rgba(255,255,255,.18); border-radius: 15px; background: rgba(255,255,255,.1); font-size: 12px; font-weight: 800; transition: background .2s ease, transform .2s ease; }
.support-links a:hover { transform: translateY(-2px); background: rgba(255,255,255,.18); }
.support-links span { font-size: 23px; }

.final-cta { padding: 80px 0 100px; text-align: center; background: linear-gradient(180deg,#fff,#f8f5ff); }
.final-cta img { width: 76px; height: 76px; margin: auto; object-fit: cover; border-radius: 22px; box-shadow: 0 18px 35px rgba(89,55,172,.18); }
.final-cta h2 { margin: 24px 0 13px; font-size: clamp(30px,4vw,45px); line-height: 1.28; letter-spacing: -.04em; }
.final-cta p { color: var(--muted); }
.final-cta button { margin-top: 18px; padding: 14px 24px; border: 0; border-radius: 12px; color: #fff; background: var(--purple-700); font-weight: 850; cursor: pointer; }

.site-footer { padding: 45px 0 25px; color: #7b7683; border-top: 1px solid var(--line); background: #fff; }
.footer-grid { display: flex; justify-content: space-between; align-items: center; gap: 30px; }
.footer-brand { color: var(--ink); font-size: 21px; }
.footer-brand img { width: 35px; height: 35px; }
.footer-grid p { margin: 8px 0 0; font-size: 12px; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 22px; font-size: 12px; }
.footer-links a:hover { color: var(--purple-700); }
.copyright { margin-top: 28px; padding-top: 22px; border-top: 1px solid #f0edf4; font-size: 11px; text-align: center; }
.toast { position: fixed; z-index: 200; left: 50%; bottom: 30px; padding: 13px 18px; color: #fff; border-radius: 12px; background: #2f293a; box-shadow: 0 15px 40px rgba(0,0,0,.2); font-size: 13px; transform: translate(-50%, 140%); opacity: 0; transition: transform .25s ease, opacity .25s ease; }
.toast.show { transform: translate(-50%, 0); opacity: 1; }

/* Legal and support documents */
.document-page { min-height: 100vh; background: #faf9ff; }
.document-header { position: sticky; top: 0; z-index: 20; border-bottom: 1px solid var(--line); background: rgba(255,255,255,.92); backdrop-filter: blur(15px); }
.document-header .header-inner { height: 70px; }
.document-back { padding: 9px 13px; color: var(--purple-700); border: 1px solid var(--purple-200); border-radius: 9px; font-size: 13px; font-weight: 800; }
.document-main { width: min(820px, calc(100% - 36px)); margin: 42px auto 80px; padding: 48px 52px; border: 1px solid var(--line); border-radius: 22px; background: #fff; box-shadow: 0 18px 55px rgba(54,38,93,.07); }
.document-badge { display: inline-block; margin-bottom: 17px; padding: 6px 10px; color: var(--purple-700); border-radius: 99px; background: var(--purple-100); font-size: 11px; font-weight: 850; }
.document-main h1 { margin: 0; font-size: 35px; letter-spacing: -.045em; }
.document-date { margin: 12px 0 35px; color: #87818e; font-size: 13px; }
.document-summary { margin-bottom: 35px; padding: 18px 20px; color: #5e5867; border-left: 4px solid var(--purple-600); border-radius: 0 12px 12px 0; background: var(--purple-50); line-height: 1.75; }
.document-main section { margin-top: 34px; }
.document-main h2 { margin: 0 0 12px; font-size: 19px; }
.document-main h3 { margin: 18px 0 8px; font-size: 15px; }
.document-main p, .document-main li { color: #595461; font-size: 14px; line-height: 1.85; }
.document-main ul, .document-main ol { padding-left: 21px; }
.document-main a { color: var(--purple-700); font-weight: 750; text-decoration: underline; text-underline-offset: 3px; }
.document-actions { display: flex; gap: 10px; margin-top: 38px; padding-top: 28px; border-top: 1px solid var(--line); }
.document-actions a { padding: 12px 16px; border-radius: 10px; color: #fff; background: var(--purple-700); text-decoration: none; }
.document-actions a.secondary { color: var(--purple-700); background: var(--purple-100); }
.delete-steps { display: grid; gap: 12px; padding: 0; counter-reset: step; list-style: none; }
.delete-steps li { position: relative; padding: 18px 18px 18px 58px; border: 1px solid var(--line); border-radius: 13px; background: #fdfcff; }
.delete-steps li::before { counter-increment: step; content: counter(step); position: absolute; left: 17px; top: 17px; width: 27px; height: 27px; display: grid; place-items: center; color: #fff; border-radius: 50%; background: var(--purple-600); font-size: 12px; font-weight: 850; }

@media (max-width: 980px) {
  .hero { min-height: auto; }
  .hero-grid { grid-template-columns: 1fr; padding-top: 55px; }
  .hero-copy { padding: 45px 0 10px; text-align: center; }
  .eyebrow, .launch-note { justify-content: center; }
  .store-actions { justify-content: center; }
  .phone-stage { width: min(610px, 100%); height: 560px; margin: auto; }
  .intro-card { grid-template-columns: 1fr; }
  .intro-points { padding: 20px 10px; }
  .community-grid { grid-template-columns: 1fr; gap: 45px; }
  .community-copy { text-align: center; }
  .community-copy > p:not(.section-kicker) { margin-inline: auto; }
  .community-copy ul { display: inline-grid; text-align: left; }
  .community-visual { width: min(600px,100%); margin: auto; }
  .support-card { grid-template-columns: 1fr; text-align: center; }
}

@media (max-width: 760px) {
  :root { --shell: min(100% - 30px, 620px); }
  .site-header, .site-header.scrolled { height: 64px; }
  .brand { font-size: 21px; }
  .brand img { width: 36px; height: 36px; border-radius: 10px; }
  .menu-button { display: block; }
  .site-nav { position: fixed; inset: 64px 15px auto; display: grid; gap: 0; padding: 10px; border: 1px solid var(--line); border-radius: 16px; background: #fff; box-shadow: var(--shadow); transform: translateY(-14px); opacity: 0; visibility: hidden; transition: .2s ease; }
  .site-nav.open { transform: translateY(0); opacity: 1; visibility: visible; }
  .site-nav a { padding: 13px 12px; }
  .site-nav a::after { display: none; }
  .nav-cta { margin-top: 6px; }
  .hero { padding-top: 64px; }
  .hero-grid { padding-top: 25px; }
  .hero-copy { padding-top: 35px; }
  .hero h1 { font-size: clamp(40px,13vw,57px); }
  .hero-description { font-size: 15px; }
  .desktop-break { display: none; }
  .store-actions { flex-direction: column; width: min(310px,100%); margin: auto; }
  .store-button { width: 100%; }
  .phone-stage { height: 495px; margin-top: 15px; }
  .phone-main { width: 238px; height: 485px; left: 5%; bottom: -46px; }
  .phone-side { width: 216px; height: 455px; right: 2%; bottom: -56px; }
  .intro-section { padding-top: 54px; }
  .intro-lead { grid-template-columns: 70px 1fr; padding: 26px 22px; }
  .intro-points { grid-template-columns: 1fr; padding: 6px 22px 18px; }
  .intro-points article { min-height: auto; display: grid; grid-template-columns: 50px 1fr; grid-template-rows: auto auto; column-gap: 15px; padding: 18px 0; text-align: left; }
  .intro-points article + article { border-top: 1px solid var(--line); border-left: 0; }
  .intro-points span { grid-row: 1 / 3; margin: 0; }
  .intro-points h3 { align-self: end; }
  .features-section, .community-section { padding: 80px 0; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-card { min-height: 245px; }
  .support-card { padding: 34px 22px; }
  .support-links { grid-template-columns: 1fr; }
  .support-links a { flex-direction: row; justify-content: center; padding: 13px; }
  .footer-grid { flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; }
  .document-main { margin-top: 25px; padding: 32px 24px; }
  .document-main h1 { font-size: 29px; }
}

@media (max-width: 480px) {
  .eyebrow { font-size: 11px; }
  .phone-stage { height: 440px; transform: scale(.88); transform-origin: top center; margin-bottom: -48px; }
  .phone-main { left: -2%; }
  .phone-side { right: -10%; }
  .intro-lead { grid-template-columns: 1fr; text-align: center; }
  .intro-logo { width: 76px; margin: auto; }
  .community-visual { min-height: 350px; }
  .card-a { width: 250px; left: 15px; }
  .card-b { width: 240px; right: 12px; }
  .floating-bubble { font-size: 9px; }
  .final-cta { padding: 70px 0 80px; }
  .document-actions { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}
