:root {
  color-scheme: light;
  --ink: #161412;
  --ink-soft: #3a3530;
  --muted: #6b635b;
  --paper: #f3f1ec;
  --line: rgba(22, 20, 18, 0.12);
  --surface: #fbfaf7;
  --accent: #161412;
  --accent-deep: #161412;
  --membership: #2f9e63;
  --coupon: #d45d6a;
  --warn: #c45a1a;
  --phone: #1c1a18;
  --font-display: "Pretendard", "Apple SD Gothic Neo", "Malgun Gothic", sans-serif;
  --font-body: "Pretendard", "Apple SD Gothic Neo", "Malgun Gothic", sans-serif;
}

.page-app {
  --accent: var(--app);
  --accent-deep: var(--app);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;
}

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

.grain {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 1;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px clamp(20px, 4vw, 56px);
  background: rgba(243, 241, 236, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.logo,
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.logo-mark {
  display: block;
  flex-shrink: 0;
  color: var(--ink);
}

.logo-text {
  line-height: 1;
}

.footer-brand {
  display: grid;
  gap: 6px;
}

.footer-name {
  display: grid;
  gap: 4px;
  font-family: var(--font-display);
  color: var(--ink);
  line-height: 1.2;
}

.footer-name-en {
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.footer-name-ko {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--muted);
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  margin-left: -6px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink);
}

.back-link svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink-soft);
}

.nav a,
.nav-btn {
  position: relative;
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
}

.nav a::after,
.nav-btn::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 1px;
  background: var(--ink);
  transition: width 0.25s ease;
}

.nav a:hover::after,
.nav-btn:hover::after {
  width: 100%;
}

.hero {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: center;
  min-height: min(34vh, 320px);
  padding:
    clamp(48px, 8vh, 88px)
    clamp(20px, 5vw, 56px)
    clamp(36px, 6vh, 56px);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  right: -6%;
  top: -40%;
  width: min(52vw, 520px);
  height: min(70vh, 480px);
  background:
    radial-gradient(circle at 42% 44%, rgba(22, 20, 18, 0.07), transparent 48%),
    radial-gradient(circle at 68% 30%, rgba(253, 132, 70, 0.14), transparent 44%),
    radial-gradient(circle at 48% 74%, rgba(31, 107, 69, 0.1), transparent 50%);
  filter: blur(2px);
  animation: hero-glow-drift 18s ease-in-out infinite alternate;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: end;
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: max-content;
}

.hero h1 {
  margin: 0;
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1.12;
  word-break: keep-all;
  overflow-wrap: normal;
  color: var(--ink);
  animation: rise 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-lead {
  margin: 24px 0 0;
  max-width: 28ch;
  font-size: 1.12rem;
  line-height: 1.75;
  color: var(--muted);
  animation: rise 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.08s both;
}

.section.split {
  align-items: start;
  padding-top: 0;
}

.section.split > .split-main,
.section.split > .split-aside {
  padding-top: 32px;
  border-top: 1px solid var(--line);
  min-width: 0;
}

.apps-aside {
  display: grid;
  align-content: start;
  gap: 14px;
}

.aside-line {
  margin: 0;
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.35;
  color: var(--ink);
}

.featured {
  padding-bottom: 56px;
}

.featured .app-list {
  margin-top: 0;
}

.work .work-list {
  margin-top: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  font: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn.primary {
  background: var(--accent);
  color: #fff;
}

.btn.ghost {
  border: 1px solid var(--line);
  background: transparent;
}

.section {
  position: relative;
  z-index: 1;
  padding: 40px clamp(20px, 5vw, 56px) 56px;
  scroll-margin-top: 64px;
}

.eyebrow {
  margin: 0 0 10px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

h2.eyebrow {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.4;
  color: var(--muted);
}

.section h2:not(.eyebrow) {
  margin: 0;
  font-size: clamp(1.35rem, 2.6vw, 1.8rem);
  letter-spacing: -0.03em;
  line-height: 1.45;
  font-weight: 700;
}

.section-lead {
  margin: 14px 0 0;
  max-width: 36rem;
  color: var(--muted);
  line-height: 1.7;
  font-size: 1.02rem;
}

.featured {
  padding-top: 0;
  padding-bottom: 56px;
}

.app-list {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
}

.chapter {
  max-width: 560px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}

.app-row {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 16px;
  padding: 18px 4px;
  border-bottom: 1px solid var(--line);
  transition: background 0.2s ease, padding 0.2s ease;
}

.app-row:hover {
  background: rgba(22, 20, 18, 0.03);
  padding-inline: 10px;
}

.app-row img {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  object-fit: cover;
}

.app-row-copy {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.app-row-copy strong {
  font-size: 1.05rem;
  letter-spacing: -0.03em;
}

.app-row-copy span {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.4;
}

.app-row-meta {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.app-row-meta.is-soon {
  color: var(--app, var(--ink-soft));
}

.app-row-arrow {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  color: var(--muted);
  transition: color 0.2s ease, transform 0.2s ease;
}

.app-row-arrow svg {
  width: 18px;
  height: 18px;
}

.app-row:hover .app-row-arrow {
  color: var(--ink);
  transform: translateX(2px);
}

.work {
  padding-top: 0;
}

.work-list {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
  display: grid;
  gap: 18px;
}

.work-list strong {
  display: block;
  font-size: 1.15rem;
  letter-spacing: -0.03em;
}

.work-list span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.92rem;
}

.app-main {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: 20px clamp(32px, 5vw, 72px);
  padding: 20px clamp(20px, 5vw, 56px) clamp(56px, 8vh, 96px);
}

.app-main > .back-link {
  grid-column: 1 / -1;
  width: fit-content;
}

.app-intro {
  display: grid;
  gap: 22px;
  max-width: 560px;
}

.app-heading {
  display: flex;
  align-items: center;
  gap: 16px;
}

.app-heading img {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  object-fit: cover;
  flex-shrink: 0;
}

.app-heading h1 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  letter-spacing: -0.04em;
}

.app-platform {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.app-lead {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.75;
  font-size: 1.02rem;
}

.app-intro .btn,
.store-btn {
  justify-self: start;
}

.store-btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 196px;
  min-height: 58px;
  padding: 10px 22px 10px 16px;
  border-radius: 14px;
  background: #2a2724;
  color: #fff;
  width: fit-content;
  transition: transform 0.2s ease, background 0.2s ease;
}

.store-btn:hover {
  transform: translateY(-1px);
  background: #3a3632;
}

.store-btn.is-soon {
  background: #d8d4ce;
  color: #8a857c;
  pointer-events: none;
  cursor: default;
}

.store-btn.is-soon:hover {
  transform: none;
  background: #d8d4ce;
}

.store-btn.is-soon .store-btn-caption {
  color: rgba(138, 133, 124, 0.85);
}

.store-btn.is-soon .store-btn-icon {
  opacity: 0.72;
}

.store-btn-icon {
  display: block;
  width: 26px;
  height: 30px;
  flex-shrink: 0;
}

.store-btn-icon-apple {
  width: 22px;
  height: 26px;
}

.store-btn-copy {
  display: grid;
  gap: 2px;
  line-height: 1.15;
}

.store-btn-caption {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: rgba(255, 255, 255, 0.72);
}

.store-btn-name {
  font-size: 1.18rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.btn.primary.is-soon {
  background: #d8d4ce;
  color: #8a857c;
  pointer-events: none;
  cursor: default;
}

.btn.primary.is-soon:hover {
  transform: none;
  background: #d8d4ce;
}

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

.feature-list li {
  display: grid;
  gap: 4px;
  padding-left: 12px;
  border-left: 2px solid var(--accent);
}

.feature-list strong {
  font-size: 0.95rem;
}

.feature-list span {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.5;
}

.app-visual {
  justify-self: end;
}

.phone {
  width: 248px;
  border-radius: 28px;
  padding: 10px;
  background: var(--phone);
}

.phone-notch {
  width: 72px;
  height: 6px;
  margin: 2px auto 8px;
  border-radius: 999px;
  background: #0d0c0b;
}

.phone-screen {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  min-height: 420px;
  padding-bottom: 58px;
  background: #efefef;
}

.app-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  background: var(--app, #fd8446);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
}

.tag-row {
  display: flex;
  gap: 6px;
  padding: 10px;
  overflow: hidden;
  background: #fff;
  border-bottom: 1px solid #eee;
}

.tag {
  flex: 0 0 auto;
  padding: 5px 8px;
  border-radius: 999px;
  font-size: 0.64rem;
  font-weight: 600;
  background: #f3f3f3;
  color: #757575;
}

.tag.on {
  background: var(--ink);
  color: #fff;
}

.tag.membership {
  background: rgba(47, 158, 99, 0.14);
  color: var(--membership);
}

.tag.coupon {
  background: rgba(212, 93, 106, 0.14);
  color: var(--coupon);
}

.barcode-card {
  margin: 8px 10px;
  padding: 10px;
  border-radius: 10px;
  background: #fff;
}

.barcode-card.expiring {
  background: #fff3eb;
}

.card-meta {
  display: flex;
  align-items: center;
  gap: 6px;
}

.chip {
  display: inline-flex;
  padding: 2px 7px;
  border-radius: 4px;
  font-size: 0.58rem;
  font-weight: 700;
}

.chip.membership {
  background: #86e5ac;
  color: #1a5c38;
}

.chip.coupon {
  background: #fda6ad;
  color: #7a2430;
}

.chip.warn {
  background: #ffe0cc;
  color: var(--warn);
}

.fav {
  margin-left: auto;
  color: #fd8446;
  font-size: 0.78rem;
}

.card-title-row {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  margin-top: 6px;
  font-size: 0.78rem;
}

.card-title-row span {
  color: var(--muted);
  font-size: 0.68rem;
  white-space: nowrap;
}

.barcode-plate {
  margin-top: 8px;
  padding: 8px 10px 6px;
  border-radius: 8px;
  background: #fafafa;
  border: 1px solid #eee;
  text-align: center;
}

.bars,
.bars.dense {
  height: 32px;
  border-radius: 2px;
}

.bars {
  background: repeating-linear-gradient(
    90deg,
    #212121 0 2px,
    transparent 2px 4px,
    #212121 4px 7px,
    transparent 7px 9px,
    #212121 9px 10px,
    transparent 10px 13px
  );
}

.bars.dense {
  background: repeating-linear-gradient(
    90deg,
    #212121 0 1px,
    transparent 1px 3px,
    #212121 3px 6px,
    transparent 6px 7px,
    #212121 7px 8px,
    transparent 8px 11px
  );
}

.barcode-plate code {
  display: block;
  margin-top: 5px;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  color: #424242;
}

.fab {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  border-radius: 10px;
  background: var(--app, #fd8446);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
}

.phone-kock .phone-screen,
.kock-screen {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 12px 14px 14px;
  background: #f2f5ef;
  min-height: 420px;
}

.kock-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 8px;
}

.kock-lives {
  color: #e25555;
  letter-spacing: 0.04em;
  font-size: 0.78rem;
}

.kock-clock {
  color: #1f6b45;
  font-size: 0.82rem;
  font-weight: 700;
}

.kock-chips {
  display: flex;
  gap: 4px;
  margin-bottom: 10px;
}

.kock-chips span {
  padding: 4px 8px;
  border-radius: 999px;
  background: #d8edd6;
  color: #1f6b45;
  font-size: 0.62rem;
  font-weight: 700;
}

.kock-count {
  margin: 0;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
  color: #1c2b22;
}

.kock-total {
  margin: 2px 0 10px;
  font-size: 0.7rem;
  color: #5e7266;
}

.kock-board {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 5px;
  width: 100%;
  max-width: 196px;
}

.kock-board span {
  aspect-ratio: 1;
  border-radius: 8px;
  background: #d7e3d4;
}

.kock-board span.on {
  display: grid;
  place-items: center;
  background: #fff;
  border: 1.5px solid #1f6b45;
  color: #1c2b22;
  font-size: 0.72rem;
  font-weight: 700;
}

.kock-start {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 196px;
  margin-top: auto;
  height: 36px;
  border-radius: 999px;
  background: #1f6b45;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
}

.phone-dobetory .phone-screen,
.dobetory-screen {
  display: flex;
  flex-direction: column;
  padding: 0 0 52px;
  background: #f7f3eb;
  min-height: 420px;
}

.dobetory-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 12px 12px 8px;
}

.dobetory-brand {
  color: #1c241e;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.dobetory-brand span {
  color: #e0a04a;
}

.dobetory-scope {
  padding: 4px 8px;
  border-radius: 999px;
  background: #efe8dc;
  color: #3d4a40;
  font-size: 0.58rem;
  font-weight: 700;
  white-space: nowrap;
}

.dobetory-tags {
  display: flex;
  gap: 6px;
  padding: 0 12px 8px;
}

.dobetory-tags span {
  padding: 4px 8px;
  border-radius: 999px;
  background: #efe8dc;
  color: #5c675f;
  font-size: 0.6rem;
  font-weight: 700;
}

.dobetory-tags span.on {
  background: #1c2e1e;
  color: #fff;
}

.dobetory-card {
  margin: 0 10px 8px;
  padding: 10px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid #e4d9c8;
}

.dobetory-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.dobetory-card-top strong {
  color: #1c241e;
  font-size: 0.78rem;
  letter-spacing: -0.02em;
}

.dobetory-card-top span {
  padding: 2px 6px;
  border-radius: 4px;
  background: #e8f0ea;
  color: #2f4a38;
  font-size: 0.56rem;
  font-weight: 700;
}

.dobetory-card-top span.soft {
  background: #f8f0e4;
  color: #8b4e16;
}

.dobetory-date {
  margin: 6px 0 0;
  color: #5c675f;
  font-size: 0.66rem;
}

.dobetory-roles {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-top: 8px;
}

.dobetory-roles span {
  padding: 3px 7px;
  border-radius: 999px;
  background: #f8f0e4;
  color: #8b4e16;
  font-size: 0.58rem;
  font-weight: 700;
}

.dobetory-fab {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  border-radius: 10px;
  background: #e0a04a;
  color: #1c2e1e;
  font-size: 0.78rem;
  font-weight: 700;
}

.footer {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  padding: 36px clamp(20px, 5vw, 56px) calc(40px + env(safe-area-inset-bottom, 0px));
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-info {
  text-align: right;
}

.footer-info p {
  margin: 0 0 6px;
}

.footer-info p:last-child {
  margin-bottom: 0;
}

.email-trigger {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.email-trigger:hover {
  color: var(--ink);
}

body.modal-open {
  overflow: hidden;
}

.contact-modal[hidden] {
  display: none;
}

.contact-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 20px;
}

.contact-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(22, 20, 18, 0.42);
  backdrop-filter: blur(4px);
}

.contact-modal__panel {
  position: relative;
  width: min(100%, 420px);
  padding: 28px 24px 22px;
  border-radius: 20px;
  background: var(--surface);
  border: 1px solid var(--line);
  animation: modal-in 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

.contact-modal__eyebrow {
  margin: 0 0 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.contact-modal__panel h2 {
  margin: 0;
  font-size: 1.55rem;
  letter-spacing: -0.03em;
}

.contact-modal__lead {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.contact-modal__email {
  margin: 20px 0 14px;
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 12px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid var(--line);
}

.contact-modal__email code {
  flex: 1;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.92rem;
  color: var(--ink);
  word-break: break-all;
}

.contact-modal__email .btn {
  min-height: 38px;
  padding: 0 14px;
  flex-shrink: 0;
}

.contact-modal__toast {
  margin: 0 0 12px;
  font-size: 0.86rem;
  font-weight: 600;
  color: #1f6b45;
}

.contact-modal__panel > .btn.ghost {
  width: 100%;
}

@keyframes modal-in {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-glow-drift {
  from {
    transform: translate(0, 0) scale(1);
  }
  to {
    transform: translate(-24px, 16px) scale(1.06);
  }
}

@media (max-width: 900px) {
  .app-main {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .split {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .hero {
    min-height: 0;
  }

  .app-visual {
    justify-self: start;
  }
}

@media (max-width: 640px) {
  .topbar {
    padding-inline: 16px;
  }

  .nav {
    gap: 14px;
    font-size: 0.85rem;
  }

  .hero {
    padding-top: clamp(40px, 8vh, 72px);
  }

  .phone {
    width: min(100%, 248px);
  }

  .app-row {
    grid-template-columns: 44px minmax(0, 1fr) auto;
    gap: 12px;
    padding: 16px 0;
  }

  .app-row:hover {
    padding-inline: 6px;
  }

  .app-row img {
    width: 44px;
    height: 44px;
    border-radius: 11px;
  }

  .app-row-meta {
    display: none;
  }

  .footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    padding: 28px 16px calc(28px + env(safe-area-inset-bottom, 0px));
  }

  .footer-info {
    width: 100%;
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
