:root {
  color-scheme: light;
  --ink: #0c1424;
  --muted: #596477;
  --blue: #4169f7;
  --blue-dark: #3154d9;
  --ice: #f3f6fb;
  --pale-blue: #eaf0ff;
  --line: #dce2ee;
  --white: #fff;
  --acid: #dfff49;
  --radius: 28px;
  font-family: Inter, Pretendard, "Apple SD Gothic Neo", "Noto Sans KR", sans-serif;
  font-synthesis: none;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; overflow-x: hidden; color: var(--ink); background: var(--ice); line-height: 1.55; }
button, input { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; }
.skip-link { position: fixed; top: -80px; left: 20px; z-index: 100; padding: 12px 18px; border-radius: 10px; color: white; background: var(--ink); }
.skip-link:focus { top: 18px; }

.landing-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  height: 88px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
  padding: 0 clamp(24px, 5vw, 84px);
}

.wordmark { width: fit-content; color: inherit; text-decoration: none; font-size: 18px; font-weight: 950; letter-spacing: 0.12em; }
.landing-header nav { display: flex; align-items: center; gap: 35px; }
.landing-header nav a { position: relative; color: #4d5665; text-decoration: none; font-size: 13px; font-weight: 750; }
.landing-header nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -7px; height: 2px; background: var(--blue); transition: 180ms ease; }
.landing-header nav a:hover::after { right: 0; }
.header-actions { justify-self: end; display: flex; align-items: center; gap: 9px; }
.header-web, .header-download { min-height: 43px; display: inline-flex; align-items: center; padding: 0 17px; border-radius: 999px; text-decoration: none; font-size: 12px; font-weight: 850; }
.header-web { border: 1px solid #ccd3df; background: rgba(255, 255, 255, 0.55); }
.header-download { color: white; background: var(--ink); }
.header-download.is-disabled { color: #fff; background: #3c475b; cursor: not-allowed; user-select: none; }
.theme-toggle { width: 43px; height: 43px; display: grid; place-items: center; flex: 0 0 auto; padding: 0; border: 1px solid #bfc8d7; border-radius: 50%; color: var(--ink); background: rgba(255, 255, 255, 0.72); cursor: pointer; font-size: 18px; line-height: 1; transition: 160ms ease; }
.theme-toggle:hover { border-color: var(--blue); transform: translateY(-1px); }
.theme-toggle:focus-visible, .menu-button:focus-visible, .screen-controls button:focus-visible, a:focus-visible { outline: 3px solid var(--acid); outline-offset: 3px; }
.menu-button { display: none; width: 43px; height: 43px; padding: 0; border: 1px solid #ccd3df; border-radius: 50%; background: white; cursor: pointer; }
.menu-button span { width: 17px; height: 2px; display: block; margin: 4px auto; background: var(--ink); }

.landing-hero {
  position: relative;
  min-height: 950px;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(480px, 1.12fr);
  align-items: center;
  gap: clamp(45px, 7vw, 110px);
  padding: 132px clamp(24px, 7vw, 120px) 85px;
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 8%, rgba(65, 105, 247, 0.16), transparent 35%),
    linear-gradient(135deg, #f7f9fc 0%, #eef3fb 100%);
}

.landing-hero::before { content: "CARMEET"; position: absolute; left: -0.03em; bottom: -0.24em; color: rgba(76, 110, 220, 0.045); font-size: clamp(150px, 21vw, 340px); font-weight: 950; letter-spacing: -0.08em; white-space: nowrap; }
.hero-copy { position: relative; z-index: 3; max-width: 700px; }
.kicker { margin: 0 0 21px; color: var(--blue); font-size: 11px; font-weight: 950; letter-spacing: 0.22em; }
.hero-copy h1 { margin: 0; font-size: clamp(55px, 7.4vw, 118px); line-height: 0.91; letter-spacing: -0.085em; font-weight: 900; }
.hero-copy h1 em { color: var(--blue); font-style: normal; }
.hero-description { max-width: 585px; margin: 34px 0 30px; color: var(--muted); font-size: clamp(15px, 1.25vw, 19px); line-height: 1.75; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.store-button { width: 176px; min-height: 58px; display: inline-flex; align-items: center; justify-content: center; border-radius: 15px; background: transparent; text-decoration: none; transition: 170ms ease; }
.store-button:not([aria-disabled="true"]):hover, .web-button:hover { transform: translateY(-2px); }
.store-button.is-disabled { opacity: 0.84; filter: grayscale(0.12); cursor: not-allowed; user-select: none; }
.store-badge { display: block; max-width: none; height: auto; pointer-events: none; }
.app-store-button .store-badge { width: 174px; }
.play-store-button .store-badge { width: 200px; }
.web-button { min-width: 176px; min-height: 58px; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 0 18px 0 22px; border: 1px solid #bfc8d7; border-radius: 15px; background: rgba(255, 255, 255, 0.7); text-decoration: none; font-size: 13px; font-weight: 850; transition: 170ms ease; }
.web-button b { width: 29px; height: 29px; display: grid; place-items: center; border-radius: 50%; color: white; background: var(--blue); }
.hero-points { display: flex; flex-wrap: wrap; gap: 8px 18px; margin: 30px 0 0; padding: 0; list-style: none; color: #3f4857; font-size: 11px; font-weight: 800; }
.hero-points li { display: flex; align-items: center; gap: 7px; }
.hero-points span { width: 6px; height: 6px; border-radius: 50%; background: var(--blue); }

.hero-visual { position: relative; min-height: 780px; perspective: 1500px; }
.visual-orbit { position: absolute; border: 1px solid rgba(65, 105, 247, 0.22); border-radius: 50%; }
.orbit-one { width: 680px; height: 680px; right: -130px; top: 50px; }
.orbit-two { width: 480px; height: 480px; right: -30px; top: 150px; border-style: dashed; }
.phone-card { position: absolute; margin: 0; overflow: hidden; border: 10px solid var(--ink); border-radius: 46px; background: white; box-shadow: 0 42px 90px rgba(24, 42, 78, 0.23); }
.phone-card img { width: 100%; height: 100%; display: block; object-fit: cover; object-position: top; }
.phone-front { width: 360px; height: 744px; left: 5%; top: 10px; z-index: 3; transform: rotateY(5deg) rotateZ(-2deg); }
.phone-back { width: 320px; height: 660px; left: 45%; top: 76px; z-index: 2; transform: rotateY(-6deg) rotateZ(5deg); filter: saturate(0.9); }
.floating-label { position: absolute; z-index: 5; padding: 13px 16px; border: 1px solid rgba(12, 20, 36, 0.12); border-radius: 13px; background: rgba(255, 255, 255, 0.92); box-shadow: 0 15px 35px rgba(24, 42, 78, 0.16); backdrop-filter: blur(12px); font-size: 10px; font-weight: 950; letter-spacing: 0.12em; }
.label-top { left: -3%; top: 98px; }
.label-top b { color: #26c581; }
.label-bottom { right: 1%; bottom: 75px; color: white; background: var(--blue); }
.hero-scroll { position: absolute; left: clamp(24px, 7vw, 120px); bottom: 35px; display: flex; align-items: center; gap: 12px; color: var(--muted); font-size: 8px; font-weight: 900; letter-spacing: 0.18em; }
.hero-scroll span { width: 37px; height: 1px; background: #9ca6b6; }

.intro-strip { min-height: 84px; display: flex; align-items: center; justify-content: space-around; gap: 26px; padding: 18px 25px; overflow: hidden; color: white; background: var(--blue); }
.intro-strip p { margin: 0; white-space: nowrap; font-size: clamp(14px, 1.6vw, 23px); font-weight: 950; letter-spacing: -0.02em; }
.intro-strip i { color: var(--acid); font-size: 24px; font-style: normal; }

.feature-section { padding: 130px clamp(24px, 7vw, 120px) 145px; background: white; }
.section-title { display: grid; grid-template-columns: 1.05fr 0.95fr; column-gap: 70px; align-items: end; max-width: 1230px; margin: 0 auto 70px; }
.section-title .kicker { grid-column: 1 / -1; }
.section-title h2, .screen-heading h2, .community-copy h2, .download-copy h2 { margin: 0; font-size: clamp(42px, 5vw, 76px); line-height: 1.03; letter-spacing: -0.07em; }
.section-title > p:last-child { max-width: 500px; margin: 0 0 6px; color: var(--muted); font-size: 15px; line-height: 1.75; }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; max-width: 1400px; margin: auto; }
.feature-card { position: relative; min-height: 470px; display: flex; flex-direction: column; justify-content: space-between; padding: 34px; border-radius: var(--radius); overflow: hidden; }
.feature-card::after { content: ""; position: absolute; width: 280px; height: 280px; right: -125px; bottom: -115px; border: 1px solid currentColor; border-radius: 50%; opacity: 0.13; box-shadow: 0 0 0 45px transparent, 0 0 0 46px currentColor, 0 0 0 88px transparent, 0 0 0 89px currentColor; }
.feature-blue { color: white; background: var(--blue); }
.feature-dark { color: white; background: var(--ink); }
.feature-light { border: 1px solid var(--line); background: var(--pale-blue); }
.feature-number { font-size: 11px; font-weight: 950; letter-spacing: 0.14em; }
.feature-card div { position: relative; z-index: 2; }
.feature-card p { margin: 0 0 12px; font-size: 12px; font-weight: 800; }
.feature-blue .feature-number, .feature-blue p, .feature-dark .feature-number, .feature-dark p { color: #fff; }
.feature-light .feature-number, .feature-light p { color: var(--muted); }
.feature-card h3 { margin: 0; font-size: clamp(27px, 2.25vw, 38px); line-height: 1.18; letter-spacing: -0.055em; }
.feature-tag { position: relative; z-index: 2; width: fit-content; padding: 8px 11px; border: 1px solid currentColor; border-radius: 999px; font-size: 9px; font-weight: 950; letter-spacing: 0.13em; }

.screen-section { padding: 125px 0 140px; color: white; background: var(--ink); overflow: hidden; }
.screen-heading { display: flex; align-items: end; justify-content: space-between; gap: 35px; padding: 0 clamp(24px, 7vw, 120px); margin-bottom: 58px; }
.screen-heading .kicker { color: #87a2ff; }
.screen-controls { display: flex; gap: 8px; }
.screen-controls button { width: 50px; height: 50px; border: 1px solid #3b4250; border-radius: 50%; color: white; background: transparent; cursor: pointer; font-size: 19px; transition: 160ms ease; }
.screen-controls button:hover { border-color: var(--blue); background: var(--blue); }
.screen-gallery { display: flex; gap: 24px; padding: 0 clamp(24px, 7vw, 120px) 25px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: thin; scrollbar-color: #465069 transparent; }
.screen-item { flex: 0 0 min(355px, 75vw); margin: 0; scroll-snap-align: start; }
.screen-item > div { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; color: #8f97a5; font-size: 10px; font-weight: 950; letter-spacing: 0.12em; }
.screen-item img { width: 100%; height: auto; display: block; border-radius: 22px; background: var(--ice); box-shadow: 0 25px 65px rgba(0, 0, 0, 0.25); }

.community-section { position: relative; min-height: 570px; display: grid; grid-template-columns: 1.25fr 0.75fr; align-items: center; gap: 80px; padding: 110px clamp(24px, 7vw, 120px); overflow: hidden; color: var(--ink); background: var(--acid); }
.community-copy, .community-stat { position: relative; z-index: 2; }
.community-copy .kicker { color: #4f5f00; }
.community-stat { justify-self: end; display: flex; align-items: end; gap: 18px; }
.community-stat strong { font-size: clamp(100px, 15vw, 220px); line-height: 0.73; letter-spacing: -0.09em; }
.community-stat span { max-width: 170px; font-size: 12px; font-weight: 800; line-height: 1.5; }
.community-lines span { position: absolute; border: 1px solid rgba(12, 20, 36, 0.14); border-radius: 50%; }
.community-lines span:nth-child(1) { width: 620px; height: 620px; right: -220px; top: -110px; }
.community-lines span:nth-child(2) { width: 470px; height: 470px; right: -145px; top: -35px; }
.community-lines span:nth-child(3) { width: 320px; height: 320px; right: -70px; top: 40px; }
.community-lines span:nth-child(4) { width: 170px; height: 170px; right: 5px; top: 115px; }

.download-section { min-height: 680px; display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 50px; padding: 90px clamp(24px, 8vw, 145px); color: white; background: var(--blue); overflow: hidden; }
.download-copy { position: relative; z-index: 2; }
.download-copy .kicker { color: #fff; }
.download-copy > p:not(.kicker) { margin: 28px 0 33px; color: #fff; font-size: 15px; }
.support-button { min-width: 176px; min-height: 58px; display: flex; align-items: center; justify-content: space-between; padding: 0 20px; border: 1px solid rgba(255, 255, 255, 0.45); border-radius: 15px; text-decoration: none; font-size: 13px; font-weight: 850; }
.download-art { position: relative; min-height: 490px; display: grid; place-items: center; }
.art-word { position: relative; z-index: 2; font-size: clamp(250px, 31vw, 480px); line-height: 0.8; font-weight: 950; letter-spacing: -0.12em; }
.art-ring { position: absolute; width: 450px; height: 450px; border: 1px solid rgba(255, 255, 255, 0.35); border-radius: 50%; box-shadow: 0 0 0 50px transparent, 0 0 0 51px rgba(255, 255, 255, 0.15), 0 0 0 100px transparent, 0 0 0 101px rgba(255, 255, 255, 0.08); }
.download-art p { position: absolute; right: 0; bottom: 25px; z-index: 3; margin: 0; font-size: 10px; font-weight: 950; letter-spacing: 0.16em; }

.landing-footer { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 25px; padding: 52px clamp(24px, 5vw, 84px); color: #8e97a7; background: #080e19; }
.landing-footer .wordmark { color: white; }
.landing-footer > p { margin: 0; font-size: 11px; }
.landing-footer nav { justify-self: end; display: flex; flex-wrap: wrap; gap: 18px; }
.landing-footer nav a { text-decoration: none; font-size: 10px; }
.landing-footer > small { grid-column: 1 / -1; padding-top: 25px; border-top: 1px solid #202736; font-size: 9px; letter-spacing: 0.1em; }

html[data-theme="dark"] body { color: #f4f6fb; background: #0b1019; }
html[data-theme="dark"] .landing-header nav a { color: #d5dbea; }
html[data-theme="dark"] .header-web { color: #f4f6fb; border-color: #4a5568; background: rgba(20, 28, 42, 0.78); }
html[data-theme="dark"] .theme-toggle { color: #f4f6fb; border-color: #4a5568; background: rgba(20, 28, 42, 0.88); }
html[data-theme="dark"] .landing-hero {
  background:
    radial-gradient(circle at 85% 8%, rgba(90, 126, 255, 0.24), transparent 35%),
    linear-gradient(135deg, #0d1420 0%, #121b2a 100%);
}
html[data-theme="dark"] .landing-hero::before { color: rgba(111, 142, 255, 0.07); }
html[data-theme="dark"] .hero-description, html[data-theme="dark"] .hero-scroll { color: #b9c2d0; }
html[data-theme="dark"] .hero-points { color: #d8deea; }
html[data-theme="dark"] .landing-hero .kicker, html[data-theme="dark"] .feature-section .kicker { color: #9db1ff; }
html[data-theme="dark"] .hero-copy h1 em { color: #87a2ff; }
html[data-theme="dark"] .web-button { color: #f4f6fb; border-color: #526077; background: rgba(18, 27, 42, 0.9); }
html[data-theme="dark"] .floating-label { color: #f4f6fb; border-color: #3b4658; background: rgba(19, 27, 41, 0.94); box-shadow: 0 15px 35px rgba(0, 0, 0, 0.32); }
html[data-theme="dark"] .label-bottom { color: #fff; background: var(--blue-dark); }
html[data-theme="dark"] .feature-section { background: #111722; }
html[data-theme="dark"] .feature-light { color: #f4f6fb; border-color: #39465b; background: #1a2434; }
html[data-theme="dark"] .feature-light .feature-number, html[data-theme="dark"] .feature-light p { color: #c3ccda; }
html[data-theme="dark"] .section-title > p:last-child { color: #bdc6d4; }
html[data-theme="dark"] .screen-section { background: #080d15; }
html[data-theme="dark"] .screen-item > div { color: #b8c0ce; }
html[data-theme="dark"] .phone-card { border-color: #05080e; }

@media (max-width: 900px) {
  html[data-theme="dark"] .landing-header { border-bottom-color: rgba(75, 86, 105, 0.78); background: rgba(11, 16, 25, 0.94); }
  html[data-theme="dark"] .landing-header nav { border-color: #3b4658; background: #151c28; box-shadow: 0 20px 50px rgba(0, 0, 0, 0.42); }
  html[data-theme="dark"] .landing-header nav a:hover, html[data-theme="dark"] .landing-header nav a:focus-visible { background: #202a3a; }
  html[data-theme="dark"] .landing-header nav a:last-child { color: #fff; background: #070b12; }
  html[data-theme="dark"] .menu-button { border-color: #4a5568; background: #151c28; }
  html[data-theme="dark"] .menu-button span { background: #f4f6fb; }
}

.reveal { opacity: 0; transform: translateY(24px); transition: opacity 680ms ease var(--reveal-delay, 0ms), transform 680ms ease var(--reveal-delay, 0ms); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* Major sections layer over one another while the page keeps its natural scroll. */
@media (min-width: 901px) and (prefers-reduced-motion: no-preference) {
  main { position: relative; }
  .scroll-panel {
    position: sticky;
    top: var(--panel-sticky-top, 0px);
    min-height: 100svh;
    isolation: isolate;
  }
  .scroll-panel > * {
    filter: opacity(var(--panel-content-opacity, 1));
    will-change: filter;
  }
  .landing-hero { z-index: 1; }
  .intro-strip { position: relative; z-index: 2; }
  .feature-section { z-index: 3; box-shadow: 0 -28px 70px rgba(12, 20, 36, 0.1); }
  .screen-section { z-index: 4; box-shadow: 0 -28px 70px rgba(12, 20, 36, 0.2); }
  .community-section { z-index: 5; box-shadow: 0 -28px 70px rgba(12, 20, 36, 0.12); }
  .download-section { z-index: 6; box-shadow: 0 -28px 70px rgba(12, 20, 36, 0.22); }
}

@media (max-width: 1120px) {
  .landing-hero { grid-template-columns: 0.85fr 1.15fr; padding-inline: 45px; }
  .phone-front { width: 320px; height: 660px; left: 0; }
  .phone-back { width: 285px; height: 590px; left: 40%; }
  .hero-visual { min-height: 700px; }
  .feature-card { min-height: 410px; padding: 27px; }
}

@media (max-width: 900px) {
  body.menu-open { overflow: hidden; }
  .landing-header { position: fixed; height: 72px; grid-template-columns: 1fr auto; padding-inline: 20px; background: rgba(247, 249, 252, 0.92); border-bottom: 1px solid rgba(204, 211, 223, 0.72); -webkit-backdrop-filter: blur(16px); backdrop-filter: blur(16px); }
  .landing-header nav { position: absolute; left: 14px; right: 14px; top: 78px; display: none; padding: 12px; border: 1px solid var(--line); border-radius: 18px; background: white; box-shadow: 0 20px 50px rgba(12, 20, 36, 0.16); }
  .landing-header nav.open { display: grid; }
  .landing-header nav a { min-height: 48px; display: flex; align-items: center; padding: 0 12px; border-radius: 12px; }
  .landing-header nav a:hover, .landing-header nav a:focus-visible { background: var(--ice); outline: none; }
  .landing-header nav a:last-child { justify-content: space-between; color: white; background: var(--ink); }
  .landing-header nav a:last-child::before { content: "CARMEET"; color: #98a2b3; font-size: 8px; letter-spacing: 0.16em; }
  .header-web { display: none; }
  .menu-button { display: block; }
  .landing-hero { grid-template-columns: 1fr; padding: 135px 30px 80px; }
  .hero-copy { max-width: 720px; }
  .hero-visual { min-height: 710px; max-width: 680px; width: 100%; margin: auto; }
  .phone-front { left: 8%; }
  .phone-back { left: 46%; }
  .hero-scroll { display: none; }
  .section-title { grid-template-columns: 1fr; gap: 22px; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-card { min-height: 330px; }
  .community-section { grid-template-columns: 1fr; gap: 70px; }
  .community-stat { justify-self: start; }
  .download-section { grid-template-columns: 1fr; }
  .download-art { min-height: 390px; }
  .landing-footer { grid-template-columns: 1fr auto; }
  .landing-footer > p { display: none; }
}

@media (max-width: 700px) {
  .landing-header { height: 64px; padding: 0 max(16px, env(safe-area-inset-right)) 0 max(16px, env(safe-area-inset-left)); }
  .landing-header nav { top: 70px; left: 10px; right: 10px; padding: 8px; border-radius: 20px; }
  .wordmark { font-size: 16px; }
  .header-download { display: none; }
  .menu-button { width: 44px; height: 44px; }
  .landing-hero { min-height: auto; padding: 104px 20px 58px; background: radial-gradient(circle at 80% 10%, rgba(65, 105, 247, 0.18), transparent 31%), linear-gradient(155deg, #f8faff 0%, #edf2fb 100%); }
  .hero-copy h1 { font-size: clamp(52px, 16vw, 72px); line-height: 0.94; }
  .hero-description { margin: 24px 0 26px; font-size: 14px; line-height: 1.7; }
  .kicker { margin-bottom: 16px; font-size: 10px; }
  .hero-actions { display: grid; grid-template-columns: 1fr; gap: 8px; }
  .hero-actions > a, .hero-actions > .store-button { width: 100%; }
  .hero-actions .store-button { min-height: 55px; }
  .hero-actions .app-store-button .store-badge { width: 164px; }
  .hero-actions .play-store-button .store-badge { width: 188px; }
  .web-button, .support-button { min-height: 54px; }
  .hero-points { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px 14px; margin-top: 24px; }
  .hero-visual { min-height: min(610px, 158vw); margin-top: 20px; }
  .phone-card { border-width: 7px; border-radius: 31px; }
  .phone-front { width: min(76vw, 280px); height: auto; aspect-ratio: 360 / 744; left: 50%; top: 18px; transform: translateX(-50%) rotateZ(-2deg); }
  .phone-back { display: none; }
  .visual-orbit { display: none; }
  .floating-label { font-size: 8px; }
  .label-top { left: max(4px, calc(50% - 150px)); top: 74px; }
  .label-bottom { right: max(2px, calc(50% - 154px)); bottom: 30px; }
  .intro-strip { min-height: 68px; justify-content: flex-start; gap: 22px; padding-inline: 20px; overflow-x: auto; scrollbar-width: none; scroll-snap-type: x proximity; }
  .intro-strip::-webkit-scrollbar { display: none; }
  .intro-strip p { flex: 0 0 auto; scroll-snap-align: start; font-size: 13px; }
  .feature-section, .screen-section { padding-top: 78px; padding-bottom: 84px; }
  .feature-section { padding-inline: 20px; }
  .section-title { margin-bottom: 42px; }
  .section-title h2, .screen-heading h2, .community-copy h2, .download-copy h2 { font-size: clamp(38px, 11.5vw, 46px); line-height: 1.07; }
  .section-title > p:last-child { font-size: 13px; line-height: 1.7; }
  .feature-grid { gap: 12px; }
  .feature-card { min-height: 270px; padding: 24px; border-radius: 22px; }
  .feature-card h3 { font-size: 28px; }
  .screen-heading { align-items: start; padding-inline: 20px; margin-bottom: 42px; }
  .screen-controls { display: none; }
  .screen-gallery { gap: 14px; padding-inline: 20px; scroll-padding-inline: 20px; scrollbar-width: none; }
  .screen-gallery::-webkit-scrollbar { display: none; }
  .screen-item { flex-basis: min(82vw, 330px); }
  .screen-item img { border-radius: 18px; }
  .community-section { min-height: auto; gap: 44px; padding: 82px 20px; }
  .community-stat { align-items: center; }
  .community-stat strong { font-size: 112px; }
  .community-stat span { max-width: 155px; }
  .download-section { min-height: auto; gap: 34px; padding: 82px 20px calc(44px + env(safe-area-inset-bottom)); }
  .download-copy > p:not(.kicker) { margin: 23px 0 28px; font-size: 14px; }
  .download-art { min-height: 270px; }
  .art-ring { width: 235px; height: 235px; }
  .art-word { font-size: 220px; }
  .download-art p { display: none; }
  .landing-footer { grid-template-columns: 1fr; gap: 20px; padding: 38px 20px calc(38px + env(safe-area-inset-bottom)); }
  .landing-footer nav { justify-self: start; display: grid; grid-template-columns: repeat(2, auto); gap: 12px 20px; }
  .landing-footer nav a { min-height: 32px; display: flex; align-items: center; font-size: 11px; }
  .landing-footer > small { padding-top: 20px; }
}

@media (max-width: 380px) {
  .landing-hero { padding-inline: 16px; }
  .hero-copy h1 { font-size: 50px; }
  .hero-visual { min-height: 560px; }
  .phone-front { width: 250px; }
  .label-bottom { display: none; }
  .feature-section, .screen-heading, .screen-gallery, .community-section, .download-section { padding-left: 16px; padding-right: 16px; }
  .community-stat { gap: 10px; }
  .community-stat strong { font-size: 98px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
