@font-face {
  font-family: "ONMUPixel";
  src: url("/assets/fonts/Mona10x12-Bold.otf") format("opentype");
  font-display: swap;
}

:root {
  color-scheme: light;
  --bg: #fffbf7;
  --white: #ffffff;
  --coral: #ff9097;
  --coral-dark: #ff9097;
  --coral-button: #fff6f7;
  --coral-button-hover: #fff1f2;
  --text: #3a2a23;
  --sub: #725b51;
  --muted: #7d6358;
  --line: #f3e8e2;
  --line-strong: #ffd2d6;
  --shadow: 0 10px 24px rgba(58, 42, 35, 0.06);
  --shadow-soft: 0 4px 12px rgba(58, 42, 35, 0.04);
  --shadow-strong: 0 16px 32px rgba(58, 42, 35, 0.1);
  --inner: minmax(0, 1160px);
  --pixel-font: "ONMUPixel", "Apple SD Gothic Neo", "Noto Sans KR", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

[id] {
  scroll-margin-top: 96px;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family:
    "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", system-ui,
    -apple-system, BlinkMacSystemFont, sans-serif;
  word-break: keep-all;
  overflow-wrap: break-word;
}

p,
li,
h1,
h2,
h3,
strong,
a,
span {
  text-wrap: pretty;
}

h1,
h2,
.hero-subtitle,
.hero-belief {
  text-wrap: balance;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--coral);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 20;
  transform: translateY(-140%);
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: var(--white);
  padding: 10px 14px;
  font-weight: 800;
}

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

.sr-only {
  position: absolute;
  overflow: hidden;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px max(24px, calc((100vw - 1160px) / 2));
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid rgba(241, 228, 222, 0.96);
}

@supports ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .site-header {
    background: rgba(255, 255, 255, 0.93);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
  }
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  min-width: 92px;
  height: 38px;
}

.flow-steps span,
.screen-notes span,
.roadmap-list span {
  font-family: var(--pixel-font);
}

.brand-logo {
  display: block;
  width: 92px;
  height: auto;
}

.brand-nowrap {
  white-space: nowrap;
}

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

.nav-toggle {
  display: none;
  position: relative;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: var(--white);
  color: var(--text);
}

.nav-toggle-bar,
.nav-toggle-bar::before,
.nav-toggle-bar::after {
  position: absolute;
  left: 50%;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transform: translateX(-50%);
}

.nav-toggle-bar {
  top: 50%;
  transform: translate(-50%, -50%);
}

.nav-toggle-bar::before,
.nav-toggle-bar::after {
  content: "";
}

.nav-toggle-bar::before {
  top: -6px;
}

.nav-toggle-bar::after {
  top: 6px;
}

.site-header.nav-open .nav-toggle-bar {
  background: transparent;
}

.site-header.nav-open .nav-toggle-bar::before {
  top: 0;
  transform: translateX(-50%) rotate(45deg);
}

.site-header.nav-open .nav-toggle-bar::after {
  top: 0;
  transform: translateX(-50%) rotate(-45deg);
}

.site-nav a {
  border-radius: 8px;
  padding: 10px 12px;
  color: var(--sub);
  font-size: 0.93rem;
  font-weight: 700;
}

.site-nav a:hover {
  background: rgba(255, 144, 151, 0.1);
  color: var(--coral-dark);
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: 92svh;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(300px, 0.76fr);
  gap: 48px;
  align-items: center;
  padding: 118px max(24px, calc((100vw - 1160px) / 2)) 84px;
  background:
    linear-gradient(rgba(248, 227, 221, 0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(248, 227, 221, 0.18) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 251, 247, 0.98)),
    var(--bg);
  background-size:
    28px 28px,
    28px 28px,
    auto,
    auto;
}

.hero::before {
  content: "";
  position: absolute;
  top: 88px;
  right: max(24px, calc((100vw - 1160px) / 2));
  z-index: -1;
  width: min(22vw, 220px);
  height: 130px;
  opacity: 0.7;
  background:
    linear-gradient(rgba(255, 144, 151, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 144, 151, 0.035) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 120px;
  background: linear-gradient(180deg, rgba(255, 247, 239, 0), var(--bg));
}

.hero-art {
  position: absolute;
  right: clamp(-180px, -11vw, -42px);
  bottom: clamp(-150px, -14vw, -56px);
  z-index: -2;
  width: clamp(480px, 58vw, 920px);
  max-width: 72vw;
  min-width: 0;
  opacity: 0.08;
  pointer-events: none;
  user-select: none;
  filter: drop-shadow(0 14px 32px rgba(58, 42, 35, 0.08));
}

.hero-copy {
  width: min(100%, 720px);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--coral-dark);
  font-size: 0.94rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.hero h1,
.section h2,
.story-copy h2 {
  margin: 0;
  color: var(--text);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: 0;
}

.hero h1 {
  font-size: clamp(3.2rem, 7vw, 5.5rem);
}

.hero-status {
  margin-bottom: 14px;
}

.hero-subtitle {
  width: min(100%, 700px);
  margin: 18px 0 0;
  color: var(--text);
  font-size: clamp(1.35rem, 2.7vw, 2rem);
  line-height: 1.42;
  font-weight: 800;
}

.hero-belief {
  width: min(100%, 700px);
  margin: 14px 0 0;
  color: var(--coral-dark);
  font-size: clamp(1.08rem, 2vw, 1.34rem);
  line-height: 1.52;
  font-weight: 700;
  letter-spacing: 0;
}

.hero-description {
  width: min(100%, 660px);
  margin: 14px 0 0;
  color: var(--sub);
  font-size: 1.06rem;
  line-height: 1.85;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button-primary,
.button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 8px;
  padding: 0 18px;
  font-weight: 900;
}

.button-primary {
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.96);
  color: var(--coral-dark);
  box-shadow: 0 8px 18px rgba(255, 144, 151, 0.1);
}

.button-primary:hover {
  background: rgba(255, 144, 151, 0.08);
}

.button-secondary {
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.92);
  color: var(--coral-dark);
}

.button-secondary:hover {
  background: rgba(255, 144, 151, 0.06);
}

.app-screenshot-frame {
  display: block;
  width: min(100%, 342px);
  aspect-ratio: 390 / 844;
  margin: 0;
  overflow: hidden;
  border: 6px solid #2a1f1a;
  border-radius: 28px;
  background: var(--white);
  box-shadow: 0 22px 54px rgba(58, 42, 35, 0.2);
}

.hero-phone-stack {
  position: relative;
  justify-self: center;
  width: min(100%, 430px);
  min-height: 676px;
  animation: phone-float 6s ease-in-out infinite;
}

.app-screenshot-hero {
  position: relative;
  z-index: 2;
  margin-left: auto;
  transform: rotate(1.4deg);
}

.hero-phone-secondary {
  position: absolute;
  top: 46px;
  left: 0;
  z-index: 1;
  width: min(100%, 292px);
  opacity: 0.72;
  transform: rotate(-5deg);
  box-shadow: 0 22px 54px rgba(58, 42, 35, 0.16);
}

.app-screenshot-secondary {
  transform: translateY(10px) rotate(4deg);
  transform-origin: center bottom;
}

.app-screenshot-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.story-band,
.section {
  display: grid;
  grid-template-columns: var(--inner);
  justify-content: center;
  padding: 96px 24px;
}

.story-band {
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.7fr);
  gap: 56px;
  align-items: center;
  background:
    linear-gradient(rgba(248, 227, 221, 0.14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(248, 227, 221, 0.14) 1px, transparent 1px),
    var(--bg);
  background-size: 30px 30px, 30px 30px, auto;
  padding-right: max(24px, calc((100vw - 1160px) / 2));
  padding-left: max(24px, calc((100vw - 1160px) / 2));
}

.story-about {
  grid-template-columns: var(--inner);
  gap: 28px;
  align-items: start;
}

.section-team,
.section-download {
  position: relative;
  overflow: hidden;
}

.section-team {
  background:
    linear-gradient(rgba(248, 227, 221, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(248, 227, 221, 0.12) 1px, transparent 1px),
    var(--bg);
  background-size: 32px 32px, 32px 32px, auto;
}

.section-team > *,
.section-download > * {
  position: relative;
  z-index: 1;
}

.story-copy h2,
.section h2 {
  max-width: 860px;
  font-size: clamp(2rem, 4vw, 3.25rem);
}

.story-copy p:not(.eyebrow),
.section-copy > p:not(.eyebrow),
.legal-copy p {
  max-width: 760px;
  margin: 22px 0 0;
  color: var(--sub);
  font-size: 1.05rem;
  line-height: 1.7;
}

.about-cards {
  display: grid;
  gap: 14px;
  max-width: 840px;
}

.about-card {
  display: grid;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  padding: 24px;
  box-shadow: var(--shadow);
  transition:
    transform 200ms ease,
    box-shadow 200ms ease;
}

.about-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-strong);
}

.about-card span {
  color: var(--coral-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
}

.about-card strong {
  color: var(--text);
  font-size: 1.14rem;
  line-height: 1.45;
}

.about-card p {
  margin: 0;
  color: var(--sub);
  line-height: 1.68;
}

.section-flow {
  background: var(--bg);
}

.section-flow,
.section-screens,
.section-features,
.section-team,
.section-trust,
.section-faq,
.section-roadmap,
.section-download {
  gap: 56px;
}

.section-screens,
.section-features {
  padding-top: 112px;
  padding-bottom: 112px;
}

.section-faq,
.section-roadmap {
  padding-top: 80px;
  padding-bottom: 80px;
}

.flow-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.flow-steps li,
.feature-card,
.screen-notes article,
.download-card,
.policy-card {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.feature-card,
.mini-screen-card,
.trust-grid article,
.faq-list article,
.roadmap-list li,
.download-card,
.policy-card,
.download-qr {
  position: relative;
}

.flow-steps li {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 24px;
}

.flow-steps span,
.feature-number,
.screen-notes span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-width: 42px;
  min-height: 30px;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: var(--white);
  color: var(--coral-dark);
  padding: 0 9px;
  font-size: 0.84rem;
  font-weight: 800;
}

.flow-steps strong,
.feature-card h3,
.screen-notes h3 {
  margin: 0;
  color: var(--text);
  font-size: 1.25rem;
}

.flow-steps span,
.screen-notes span {
  min-width: 0;
  min-height: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 0;
}

.flow-steps p,
.feature-card p,
.screen-notes p {
  margin: 0;
  color: var(--sub);
  line-height: 1.7;
}

.section-screens {
  background: var(--bg);
}

.screen-stage {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: end;
  z-index: 1;
}

.memory-paper {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
}

.memory-paper img {
  width: 100%;
  height: 238px;
  object-fit: cover;
}

.screen-showcase {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 720px) minmax(280px, 1fr);
  gap: 30px;
  align-items: center;
  overflow: visible;
  padding: 8px 0 0;
}

.screen-frame-primary,
.screen-frame-secondary {
  position: relative;
}

.screen-frame-primary {
  justify-self: start;
}

.screen-frame-secondary {
  justify-self: end;
  transform: translateY(-26px);
}

.screen-notes {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 16px;
}

.screen-notes article {
  display: grid;
  gap: 12px;
  padding: 24px 26px;
  box-shadow: var(--shadow-soft);
}

.screen-strip {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}

.mini-screen-card {
  display: grid;
  align-content: start;
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  padding: 18px;
  box-shadow: var(--shadow-soft);
}

.mini-screen-card h3,
.mini-screen-card p {
  margin: 0;
}

.mini-screen-card h3 {
  color: var(--text);
  font-size: 1.05rem;
}

.mini-screen-card p {
  color: var(--sub);
  font-size: 0.9rem;
  line-height: 1.58;
}

.mini-screen-image {
  justify-self: center;
  width: min(100%, 118px);
  height: auto;
  aspect-ratio: 390 / 844;
  border: 4px solid #2a1f1a;
  border-radius: 18px;
  background: var(--white);
  object-fit: contain;
  object-position: top center;
  box-shadow: 0 10px 22px rgba(58, 42, 35, 0.12);
}

.section-features {
  background: var(--bg);
}

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

.feature-card {
  display: grid;
  align-content: start;
  gap: 16px;
  border-radius: 14px;
  padding: 26px;
  box-shadow: var(--shadow);
  transition:
    transform 200ms ease,
    box-shadow 200ms ease;
}

.feature-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-strong);
}

.feature-illustration {
  width: 100%;
  height: 180px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  object-fit: cover;
  object-position: center;
}

.section-trust {
  background: var(--bg);
}

.section-faq,
.section-roadmap {
  background: var(--bg);
}

.trust-grid,
.faq-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.trust-grid article,
.faq-list article,
.roadmap-list li {
  display: grid;
  align-content: start;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  padding: 24px;
  box-shadow: var(--shadow-soft);
}

.trust-grid span,
.roadmap-list span {
  color: var(--coral-dark);
  font-size: 0.84rem;
  font-weight: 800;
}

.trust-grid strong,
.faq-list h3,
.roadmap-list strong {
  color: var(--text);
  font-size: 1.16rem;
}

.trust-grid p,
.faq-list p,
.roadmap-list p {
  margin: 0;
  color: var(--sub);
  line-height: 1.68;
}

.faq-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.faq-list h3 {
  margin: 0;
}

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

.team-stage {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(320px, 1fr);
  gap: 28px;
  align-items: center;
}

.team-stage > img {
  justify-self: center;
  width: min(100%, 560px);
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.role-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.role-grid span {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  padding: 22px;
  color: var(--text);
  font-weight: 700;
  text-align: center;
}

.section-download {
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.74fr);
  align-items: center;
  background:
    linear-gradient(rgba(248, 227, 221, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(248, 227, 221, 0.12) 1px, transparent 1px),
    var(--bg);
  background-size: 32px 32px, 32px 32px, auto;
  padding-right: max(24px, calc((100vw - 1160px) / 2));
  padding-left: max(24px, calc((100vw - 1160px) / 2));
}

.download-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.download-showcase {
  display: grid;
  gap: 16px;
}

.download-illustration {
  justify-self: center;
  width: min(100%, 360px);
  height: auto;
  aspect-ratio: 1 / 1;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  object-fit: contain;
  object-position: center;
  box-shadow: var(--shadow-soft);
}

.download-card {
  display: grid;
  justify-items: center;
  gap: 10px;
  border-color: var(--line-strong);
  border-radius: 14px;
  padding: 22px;
  box-shadow: var(--shadow);
  text-align: center;
  transition:
    transform 200ms ease,
    box-shadow 200ms ease;
}

.download-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-strong);
}

.download-card img {
  width: 150px;
  height: 150px;
  border-radius: 6px;
  background: var(--white);
  padding: 6px;
  image-rendering: pixelated;
}

.download-card span {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
}

.download-card strong {
  color: var(--text);
  line-height: 1.5;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 32px max(24px, calc((100vw - 1160px) / 2));
  border-top: 1px solid var(--line);
  background: var(--white);
  color: var(--sub);
}

.site-footer strong {
  display: block;
  color: var(--text);
  margin-bottom: 6px;
}

.site-footer p {
  margin: 0;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
  font-weight: 800;
}

.site-footer a:hover {
  color: var(--coral-dark);
}

.subpage {
  background: var(--bg);
}

.subpage-main {
  display: grid;
  grid-template-columns: var(--inner);
  justify-content: center;
  padding: 126px 24px 88px;
}

.legal-hero,
.download-hero {
  display: grid;
  gap: 18px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 34px;
}

.legal-hero h1,
.download-hero h1 {
  margin: 0;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.08;
}

.legal-hero p,
.download-hero p {
  max-width: 760px;
  margin: 0;
  color: var(--sub);
  line-height: 1.8;
}

.legal-hero .policy-note {
  color: var(--text);
  font-weight: 800;
}

.legal-section,
.download-section {
  display: grid;
}

.legal-section {
  gap: 12px;
  padding: 28px 0 0;
}

.download-section {
  gap: 18px;
  padding: 42px 0 0;
}

.legal-section h2,
.download-section h2 {
  margin: 0;
  font-size: 1.55rem;
}

.legal-list {
  display: grid;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.legal-list li,
.policy-card {
  padding: 14px 0;
  color: var(--sub);
  line-height: 1.68;
}

.legal-list strong,
.policy-card strong {
  display: block;
  margin-bottom: 4px;
  color: var(--text);
}

.download-page-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.download-detail {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(280px, 1fr);
  gap: 36px;
  align-items: center;
}

.download-qr {
  display: grid;
  justify-items: center;
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  padding: 28px;
  box-shadow: var(--shadow);
}

.download-qr img {
  width: 220px;
  height: 220px;
  border-radius: 6px;
  padding: 6px;
  image-rendering: pixelated;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 34px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  padding: 0 12px;
  color: var(--coral-dark);
  font-weight: 800;
}

@keyframes phone-float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

body.reveal-ready .reveal-item {
  transform: translateY(14px);
  transition: transform 360ms ease;
}

body.reveal-ready .reveal-item.is-visible {
  transform: translateY(0);
}

body.reveal-ready .reveal-child {
  transform: translateY(8px);
  transition: transform 320ms ease;
  transition-delay: calc(var(--reveal-index, 0) * 28ms);
}

body.reveal-ready .reveal-item.is-visible .reveal-child {
  transform: translateY(0);
}

@media (max-width: 1280px) {
  .hero-art {
    right: clamp(-132px, -9vw, -40px);
    bottom: clamp(-108px, -11vw, -40px);
    width: clamp(400px, 50vw, 680px);
    max-width: 58vw;
    opacity: 0.065;
  }
}

@media (max-width: 1080px) {
  .story-band,
  .section-download,
  .team-stage,
  .download-detail {
    grid-template-columns: 1fr;
  }

  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(260px, 0.72fr);
  }

  .hero-art {
    right: -72px;
    bottom: -48px;
    width: clamp(300px, 40vw, 460px);
    max-width: 44vw;
    opacity: 0.055;
    filter: drop-shadow(0 10px 24px rgba(58, 42, 35, 0.06));
  }

  .hero-phone-stack {
    width: min(100%, 356px);
    min-height: 648px;
    justify-self: start;
  }

  .hero-phone-secondary {
    top: 58px;
    left: -28px;
    width: min(66%, 226px);
    opacity: 0.58;
    transform: rotate(-5.2deg);
  }

  .app-screenshot-hero {
    transform: translateX(16px) rotate(1.8deg);
  }

  .app-screenshot-secondary {
    transform: translateY(12px) rotate(3.8deg);
  }

  .screen-showcase {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 0;
  }

  .screen-stage {
    grid-template-columns: repeat(2, minmax(0, 320px));
    justify-content: start;
    align-items: start;
  }

  .screen-notes {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .flow-steps,
  .feature-grid,
  .screen-strip,
  .trust-grid,
  .faq-list,
  .roadmap-list,
  .download-page-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .site-header {
    align-items: center;
    flex-direction: row;
    gap: 10px;
    padding: 14px 20px;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
  }

.site-header--interactive .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 12px;
    left: 12px;
    display: none;
    justify-content: flex-start;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.98);
    padding: 10px;
    box-shadow: var(--shadow);
  }

  .site-header--interactive.nav-open .site-nav {
    display: flex;
  }

  .site-nav {
    justify-content: flex-start;
  }

  .site-nav a {
    padding: 8px 10px;
    font-size: 0.88rem;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 118px;
    padding-bottom: 56px;
  }

  .hero-art {
    display: none;
  }

  .hero-actions,
  .download-grid,
  .flow-steps,
  .feature-grid,
  .trust-grid,
  .faq-list,
  .roadmap-list,
  .role-grid,
  .download-page-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .download-grid {
    display: grid;
  }

  .section-screens {
    gap: 28px;
  }

  .screen-showcase {
    gap: 18px;
    padding: 0;
  }

  .screen-stage {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    align-items: start;
  }

  .screen-stage .app-screenshot-frame {
    justify-self: center;
    width: 100%;
    max-width: 168px;
    border-width: 5px;
    border-radius: 22px;
    box-shadow: 0 16px 34px rgba(58, 42, 35, 0.16);
  }

  .screen-frame-secondary {
    transform: none;
  }

  .screen-notes {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .screen-notes article {
    gap: 10px;
    padding: 18px;
  }

  .screen-strip {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding: 0 0 12px;
    scroll-padding-inline: 20px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .screen-strip::after {
    content: "";
    flex: 0 0 8px;
  }

  .mini-screen-card {
    flex: 0 0 min(80vw, 300px);
    scroll-snap-align: start;
    gap: 12px;
  }

  .mini-screen-card {
    gap: 10px;
    padding: 12px;
  }

  .mini-screen-image {
    width: min(100%, 96px);
    border-width: 4px;
    border-radius: 18px;
  }

  .feature-card {
    gap: 12px;
    min-height: 0;
    padding: 18px;
  }

  .feature-illustration {
    height: 168px;
  }

  .button-primary,
  .button-secondary {
    width: 100%;
  }

  .story-band,
  .section {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .app-screenshot-frame {
    width: min(100%, 308px);
  }

  .hero-phone-stack {
    width: min(100%, 342px);
    min-height: 570px;
    justify-self: center;
  }

  .hero-phone-secondary {
    top: 36px;
    left: 10px;
    width: min(72%, 240px);
    opacity: 0.28;
  }

  .app-screenshot-hero {
    transform: none;
  }

  .download-grid,
  .site-footer,
  .site-footer nav {
    justify-content: flex-start;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .subpage-main {
    padding-top: 152px;
  }
}

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

  .hero-phone-stack {
    animation: none;
  }

  body.reveal-ready .reveal-item {
    transition: none;
  }

  body.reveal-ready .reveal-child,
  .about-card,
  .feature-card,
  .download-card {
    transition: none;
  }

  .about-card:hover,
  .feature-card:hover,
  .download-card:hover {
    transform: none;
  }
}
