:root {
  --bg-top: #eefaf9;
  --bg-bottom: #f8edcf;
  --paper: rgba(255, 252, 244, 0.94);
  --paper-strong: rgba(255, 253, 247, 0.98);
  --line: rgba(18, 150, 162, 0.34);
  --text: #102b4d;
  --muted: #55717c;
  --accent: #14a6a9;
  --accent-olive: #86b85f;
  --accent-warm: #f2a12a;
  --shadow: rgba(8, 42, 68, 0.16);
  --shadow-soft: rgba(8, 42, 68, 0.09);
  --hero-brown: #0f3155;
  --hero-cream: #f8feff;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  min-height: 100%;
  font-family: "Pretendard", "Apple SD Gothic Neo", "Noto Sans KR", sans-serif;
  color: var(--text);
  background: #f4f9f3;
  overflow-wrap: break-word;
}

html {
  scroll-behavior: smooth;
}

body::before {
  content: none;
}

.page {
  position: relative;
}

.top-nav {
  position: sticky;
  top: 0;
  z-index: 20;
  padding: 14px 20px 0;
}

.top-nav-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  max-width: 1080px;
  margin: 0 auto;
  padding: 12px 16px;
  border: 1px solid rgba(18, 150, 162, 0.14);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(231, 247, 246, 0.62), rgba(250, 239, 203, 0.46));
  box-shadow: 0 12px 26px rgba(8, 42, 68, 0.06);
  backdrop-filter: blur(16px);
}

.top-nav-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #0f3155;
  text-decoration: none;
  font-size: 14px;
  font-weight: 900;
}

.top-nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.top-nav-link {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(18, 150, 162, 0.16);
  background: rgba(255, 253, 247, 0.48);
  color: #284b66;
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
}

.top-nav-link:hover {
  border-color: rgba(242, 161, 42, 0.44);
  background: rgba(255, 250, 239, 0.96);
}

.top-nav-link.is-current-map {
  border-color: rgba(20, 166, 169, 0.34);
  background: linear-gradient(135deg, rgba(226, 247, 246, 0.72), rgba(255, 253, 247, 0.62));
  color: #0f3155;
  box-shadow:
    0 8px 18px rgba(8, 42, 68, 0.06),
    inset 0 0 0 1px rgba(255, 253, 247, 0.48);
}

.section-band {
  position: relative;
  overflow: hidden;
  scroll-margin-top: 96px;
}

.section-band::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.9;
}

.band-hero {
  background:
    linear-gradient(135deg, #f5fcfb 0%, #d9f3f4 38%, #f8efcf 76%, #ffd58f 100%);
}

.band-hero::before {
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.64) 0%, transparent 36%),
    linear-gradient(290deg, rgba(20, 166, 169, 0.12) 0%, transparent 44%);
  opacity: 0.72;
}

.band-flow {
  background:
    linear-gradient(180deg, #f7fefd 0%, #e7f5e8 100%);
}

.band-flow::before {
  background:
    linear-gradient(130deg, rgba(255, 255, 255, 0.72) 0%, transparent 34%),
    linear-gradient(305deg, rgba(242, 161, 42, 0.11) 0%, transparent 42%);
}

.band-examples {
  background:
    linear-gradient(180deg, #e3f6f6 0%, #f5edcf 46%, #fff8e8 100%);
}

.band-examples::before {
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.58) 0%, transparent 32%),
    linear-gradient(290deg, rgba(20, 166, 169, 0.1) 0%, transparent 40%);
}

.band-showcase {
  background:
    linear-gradient(140deg, rgba(255, 253, 247, 0.92) 0%, transparent 42%),
    linear-gradient(180deg, #f9fbf2 0%, #e5f5f3 100%);
}

.band-showcase::before {
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.38) 0%, transparent 34%),
    linear-gradient(300deg, rgba(134, 184, 95, 0.1) 0%, transparent 42%);
}

.band-legal {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.76) 0%, transparent 34%),
    linear-gradient(180deg, #fffdf7 0%, #edf6ee 100%);
}

.band-legal::before {
  background: linear-gradient(300deg, rgba(242, 161, 42, 0.08) 0%, transparent 38%);
}

.band-faq {
  background:
    linear-gradient(180deg, #f8fefd 0%, #f6ecd0 100%);
}

.band-faq::before {
  background:
    linear-gradient(125deg, rgba(255, 255, 255, 0.58) 0%, transparent 36%),
    linear-gradient(300deg, rgba(134, 184, 95, 0.12) 0%, transparent 40%);
}

.shell {
  position: relative;
  z-index: 1;
  max-width: 1080px;
  margin: 0 auto;
  padding: 40px 20px 64px;
}

.band-flow .shell {
  padding-bottom: 86px;
}

.band-examples .shell {
  padding-top: 78px;
  padding-bottom: 86px;
}

.promo-hero,
.showcase,
.hero {
  padding: 20px 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.promo-hero {
  position: relative;
  overflow: visible;
  min-height: 600px;
  color: var(--text);
}

.promo-hero .brand,
.promo-hero .summary,
.promo-hero .eyebrow,
.promo-hero .meta-pill {
  color: rgba(16, 43, 77, 0.9);
}

.promo-hero .meta-pill {
  border-color: rgba(18, 150, 162, 0.24);
  background: rgba(255, 253, 247, 0.58);
  box-shadow: 0 10px 20px rgba(8, 42, 68, 0.08);
}

.promo-hero .brand-mark {
  box-shadow: 0 0 0 5px rgba(20, 166, 169, 0.16);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 460px);
  gap: 28px;
  align-items: center;
  margin-top: 12px;
  min-width: 0;
}

.intro-copy {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.promo-hero h1 {
  max-width: 660px;
  font-size: clamp(42px, 5.6vw, 70px);
  line-height: 1.02;
}

.hero-title-lockup {
  display: flex;
  align-items: center;
  gap: 18px;
  max-width: 760px;
  min-width: 0;
}

.hero-logo {
  flex: 0 0 auto;
  width: clamp(60px, 7vw, 86px);
  height: clamp(60px, 7vw, 86px);
  border-radius: 22px;
  box-shadow: 0 18px 28px rgba(8, 42, 68, 0.18);
}

.eyebrow {
  margin: 0 0 14px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #0d7788;
}

.intro-summary {
  max-width: 640px;
  font-size: clamp(19px, 2vw, 25px);
  line-height: 1.5;
  color: #0f4f70;
}

.intro-detail {
  max-width: 560px;
  margin: 18px 0 0;
  font-size: 16px;
  line-height: 1.8;
  color: #42606a;
  font-weight: 700;
}

.intro-detail-soft {
  margin-top: 8px;
  color: #607983;
}

.intro-visual {
  justify-self: end;
  width: 94%;
  aspect-ratio: 1 / 1.06;
  min-width: 0;
  margin: 0;
  padding: 8px;
  border-radius: 24px;
  border: 1px solid rgba(18, 150, 162, 0.22);
  background: rgba(255, 253, 247, 0.62);
  box-shadow: 0 24px 44px rgba(8, 42, 68, 0.16);
  backdrop-filter: blur(6px);
  overflow: hidden;
}

.intro-visual img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  border-radius: 18px;
  object-fit: cover;
  object-position: center;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  font-size: 14px;
  font-weight: 800;
  color: var(--muted);
}

.brand-mark {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-warm));
  box-shadow: 0 0 0 5px rgba(20, 166, 169, 0.12);
}

h1 {
  margin: 0;
  font-size: clamp(34px, 6vw, 54px);
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.summary {
  margin: 14px 0 0;
  max-width: 760px;
  font-size: 17px;
  line-height: 1.75;
  color: var(--muted);
  font-weight: 700;
}

.meta-row,
.link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.meta-pill {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 10px 14px;
  border-radius: 18px;
  border: 1px solid rgba(18, 150, 162, 0.28);
  background: rgba(255, 253, 247, 0.9);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.45;
  color: #284b66;
}

.store-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  width: min(100%, 620px);
  margin-top: 24px;
}

.store-button {
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  min-height: 62px;
  min-width: 0;
  padding: 11px 14px;
  border: 1px solid rgba(255, 253, 247, 0.38);
  border-radius: 18px;
  box-shadow: 0 18px 30px rgba(8, 42, 68, 0.16);
  color: #fffdf7;
  font: inherit;
  text-align: left;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    border-color 160ms ease;
}

.store-button:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 253, 247, 0.58);
  box-shadow: 0 22px 38px rgba(8, 42, 68, 0.2);
}

.store-button:focus-visible {
  outline: 3px solid rgba(20, 166, 169, 0.42);
  outline-offset: 3px;
}

.store-button-primary {
  background: linear-gradient(135deg, #071d3d, #0f3155);
}

.store-button-secondary {
  background: linear-gradient(135deg, #0a7890, #18a58f);
}

.store-button-instagram {
  background: linear-gradient(135deg, #4355c7 0%, #c13584 50%, #f59a27 100%);
}

.store-icon {
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.store-button span {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.store-button strong,
.store-button small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.store-button strong {
  font-size: 15px;
  font-weight: 900;
  line-height: 1.15;
}

.store-button small {
  font-size: 12px;
  font-weight: 800;
  line-height: 1.25;
  color: rgba(255, 253, 247, 0.78);
}

.showcase {
  background: transparent;
}

.story-flow {
  padding: 20px 0;
}

.section-header {
  max-width: 900px;
}

.section-header h2 {
  margin: 0;
  font-size: 42px;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.section-summary {
  margin: 14px 0 0;
  font-size: 17px;
  line-height: 1.75;
  color: var(--muted);
  font-weight: 700;
}

.flow-header {
  max-width: 940px;
}

.flow-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: start;
  margin-top: 30px;
}

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

.flow-step {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 18px;
  border: 1px solid rgba(18, 150, 162, 0.22);
  border-radius: 8px;
  background: rgba(255, 253, 247, 0.82);
  box-shadow: 0 14px 28px rgba(8, 42, 68, 0.07);
}

.flow-step-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(15, 49, 85, 0.98), rgba(20, 166, 169, 0.88));
  color: #f8feff;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.flow-step h3 {
  margin: 0;
  color: var(--hero-brown);
  font-size: 20px;
  line-height: 1.22;
  letter-spacing: -0.02em;
}

.flow-step p {
  margin: 8px 0 0;
  color: #42606a;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.72;
}

.flow-visuals {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  align-items: start;
  justify-items: center;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  padding: 18px;
  border: 1px solid rgba(18, 150, 162, 0.22);
  border-radius: 8px;
  background: rgba(255, 253, 247, 0.74);
  box-shadow: 0 14px 28px rgba(8, 42, 68, 0.07);
  overflow: hidden;
}

.flow-device {
  display: grid;
  justify-items: center;
  gap: 8px;
  min-width: 0;
  margin: 0;
}

.flow-device-map {
  grid-column: 1 / -1;
}

.flow-device .device-frame {
  width: min(100%, 96px);
  aspect-ratio: 983 / 2023;
  padding: 5px;
  border-radius: 24px;
  overflow: hidden;
}

.flow-device-map .device-frame {
  width: min(100%, 170px);
  padding: 7px;
  border-radius: 30px;
}

.flow-device .device-frame img {
  height: 100%;
  object-fit: cover;
  border-radius: 19px;
}

.flow-device-map .device-frame img {
  border-radius: 24px;
}

.flow-device figcaption {
  margin: 0;
  color: #55717c;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.35;
  text-align: center;
}

.flow-benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 26px;
}

.flow-benefit {
  min-width: 0;
  padding: 16px;
  border: 1px solid rgba(18, 150, 162, 0.22);
  border-radius: 8px;
  background: rgba(255, 253, 247, 0.74);
}

.flow-benefit strong {
  display: block;
  color: #0d7788;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.3;
}

.flow-benefit span {
  display: block;
  margin-top: 7px;
  color: #42606a;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.6;
}

.flow-audience {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  margin-top: 14px;
  padding: 16px;
  border: 1px solid rgba(18, 150, 162, 0.22);
  border-radius: 8px;
  background: rgba(255, 253, 247, 0.7);
}

.flow-audience-label {
  margin: 0;
  color: var(--hero-brown);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.5;
}

.flow-audience-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  min-width: 0;
}

.flow-audience-list span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 11px;
  border: 1px solid rgba(18, 150, 162, 0.24);
  border-radius: 999px;
  background: rgba(246, 254, 253, 0.88);
  color: #284b66;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.45;
}

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

.seo-faq-header {
  max-width: 860px;
}

.seo-faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.seo-faq-card {
  min-width: 0;
  padding: 16px;
  border: 1px solid rgba(18, 150, 162, 0.24);
  border-radius: 8px;
  background: rgba(255, 253, 247, 0.78);
}

.seo-faq-card h3 {
  margin: 0;
  color: var(--hero-brown);
  font-size: 17px;
  line-height: 1.32;
  letter-spacing: -0.01em;
}

.seo-faq-card p {
  margin: 9px 0 0;
  color: #42606a;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.65;
}

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

.home-faq-list {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.home-faq-item {
  padding: 18px;
  border: 1px solid rgba(18, 150, 162, 0.22);
  border-radius: 8px;
  background: rgba(255, 253, 247, 0.82);
  box-shadow: 0 14px 28px rgba(8, 42, 68, 0.07);
}

.home-faq-item h3 {
  margin: 0;
  color: var(--hero-brown);
  font-size: 19px;
  line-height: 1.32;
  letter-spacing: -0.01em;
}

.home-faq-item p {
  margin: 10px 0 0;
  color: #42606a;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.76;
}

.home-faq-item a {
  color: #0d7788;
  font-weight: 900;
  text-decoration-color: rgba(13, 119, 136, 0.32);
  text-underline-offset: 3px;
}

.flow-examples {
  margin-top: 0;
  scroll-margin-top: 110px;
}

.examples-header {
  max-width: 920px;
}

.example-block {
  display: grid;
  grid-template-columns: minmax(260px, 330px) minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  margin-top: 16px;
  padding: 18px;
  border: 1px solid rgba(18, 150, 162, 0.22);
  border-radius: 8px;
  background: rgba(255, 253, 247, 0.8);
  box-shadow: 0 14px 28px rgba(8, 42, 68, 0.07);
}

.examples-header + .example-block {
  margin-top: 24px;
}

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

.example-copy h3 {
  margin: 8px 0 0;
  color: var(--hero-brown);
  font-size: 24px;
  line-height: 1.18;
  letter-spacing: -0.02em;
}

.example-copy > p:not(.feature-index) {
  margin: 12px 0 0;
  color: #42606a;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.7;
}

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

.example-sequence li {
  padding: 9px 10px;
  border: 1px solid rgba(18, 150, 162, 0.22);
  border-radius: 8px;
  background: rgba(246, 254, 253, 0.64);
  color: #284b66;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.5;
}

.example-shots {
  --example-shot-width: 136px;
  --example-two-flow-width: 320px;
  display: flex;
  gap: 8px;
  align-items: center;
  min-width: 0;
  padding: 0 0 12px;
  background: transparent;
  box-shadow: none;
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-x: contain;
  scroll-snap-type: x proximity;
  scrollbar-width: thin;
  scrollbar-color: rgba(20, 166, 169, 0.85) rgba(255, 253, 247, 0.9);
}

.example-shots-paired {
  align-items: stretch;
}

.example-pair {
  display: grid;
  flex: 0 0 308px;
  gap: 12px;
  min-width: 0;
}

.example-flow-label {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  margin: 0;
  padding: 8px 11px;
  border: 1px solid rgba(18, 150, 162, 0.22);
  border-radius: 8px;
  background: rgba(255, 253, 247, 0.86);
  color: #284b66;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.35;
  text-align: center;
}

.example-flow-label-primary {
  border-color: rgba(242, 161, 42, 0.34);
  background: rgba(242, 161, 42, 0.16);
  color: #7a4b0b;
}

.example-flow-label-secondary {
  border-color: rgba(20, 166, 169, 0.32);
  background: rgba(20, 166, 169, 0.14);
  color: #0d6071;
}

.example-pair-row {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.example-pair-row .example-shot {
  flex: 0 0 var(--example-shot-width);
}

.example-shots-stacked {
  display: grid;
  gap: 10px;
  padding-bottom: 0;
  overflow: hidden;
}

.example-shots-stacked .example-pair-row {
  padding-bottom: 12px;
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-x: contain;
  scroll-snap-type: x proximity;
  scrollbar-width: thin;
  scrollbar-color: rgba(20, 166, 169, 0.85) rgba(255, 253, 247, 0.9);
}

.example-shots-two .example-pair-row,
.example-shots-two .example-flow-label {
  width: var(--example-two-flow-width);
  max-width: 100%;
}

.example-shots-stacked .example-pair-row::-webkit-scrollbar {
  height: 9px;
}

.example-shots-stacked .example-pair-row::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(20, 166, 169, 0.95), rgba(242, 161, 42, 0.9));
}

.example-shots-stacked .example-pair-row::-webkit-scrollbar-track {
  border-radius: 999px;
  background: rgba(255, 253, 247, 0.9);
}

.example-shots::-webkit-scrollbar {
  height: 9px;
}

.example-shots::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(20, 166, 169, 0.95), rgba(242, 161, 42, 0.9));
}

.example-shots::-webkit-scrollbar-track {
  border-radius: 999px;
  background: rgba(255, 253, 247, 0.9);
}

.example-shot {
  display: grid;
  justify-items: center;
  gap: 8px;
  flex: 0 0 var(--example-shot-width);
  min-width: 0;
  margin: 0;
  scroll-snap-align: start;
}

.example-connector {
  flex: 0 0 28px;
  align-self: center;
  margin-bottom: 0;
  color: rgba(15, 49, 85, 0.72);
  font-size: 34px;
  font-weight: 900;
  line-height: 1;
  text-align: center;
}

.example-separator {
  color: rgba(20, 166, 169, 0.84);
  font-size: 44px;
}

.example-pair-separator {
  transform: translateY(-26px);
}

.example-shot .device-frame {
  width: 100%;
  aspect-ratio: 1179 / 2556;
  padding: 6px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: none;
}

.example-shot .device-frame img {
  height: 100%;
  object-fit: cover;
  border-radius: 22px;
  box-shadow: none;
}

.example-shot figcaption {
  margin: 0;
  color: #55717c;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.35;
  text-align: center;
}

.feature-scroll {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 314px;
  gap: 16px;
  margin-top: 24px;
  padding: 2px 8px 18px 2px;
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: rgba(20, 166, 169, 0.85) rgba(255, 253, 247, 0.9);
}

.feature-scroll::-webkit-scrollbar {
  height: 10px;
}

.feature-scroll::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(20, 166, 169, 0.95), rgba(242, 161, 42, 0.9));
}

.feature-scroll::-webkit-scrollbar-track {
  border-radius: 999px;
  background: rgba(255, 253, 247, 0.9);
}

.feature-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: stretch;
  min-height: 0;
  padding: 18px;
  border-radius: 24px;
  border: 1px solid rgba(18, 150, 162, 0.24);
  background: linear-gradient(140deg, rgba(255, 253, 247, 0.98), rgba(230, 247, 246, 0.92));
  box-shadow: 0 16px 28px var(--shadow-soft);
  scroll-snap-align: start;
}

.feature-card:nth-child(2) {
  background: linear-gradient(140deg, rgba(255, 253, 247, 0.98), rgba(236, 245, 221, 0.94));
}

.feature-card:nth-child(3) {
  background: linear-gradient(140deg, rgba(255, 250, 238, 0.98), rgba(255, 226, 174, 0.72));
}

.feature-card:nth-child(4) {
  background: linear-gradient(140deg, rgba(255, 253, 247, 0.98), rgba(228, 242, 250, 0.92));
}

.feature-copy {
  display: grid;
  order: 2;
  gap: 9px;
  align-content: start;
  min-width: 0;
}

.feature-index {
  margin: 0;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.18em;
  color: #0d7788;
}

.feature-card h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.18;
  letter-spacing: -0.03em;
  color: var(--hero-brown);
}

.feature-copy > p:last-child {
  margin: 0;
  font-size: 14px;
  line-height: 1.72;
  color: #42606a;
  font-weight: 700;
}

.feature-shot {
  display: flex;
  order: 1;
  justify-content: center;
  min-width: 0;
  margin: 0;
  padding: 0;
}

.device-frame {
  position: relative;
  width: min(100%, 196px);
  padding: 8px;
  border-radius: 34px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background:
    linear-gradient(145deg, #0c0c0e 0%, #2b2c2f 48%, #09090a 100%);
  box-shadow:
    0 20px 34px rgba(8, 42, 68, 0.17),
    inset 0 1px 1px rgba(255, 255, 255, 0.12),
    inset 0 -1px 0 rgba(0, 0, 0, 0.32);
}

.hero-device {
  width: min(100%, 300px);
}

.device-frame::before,
.device-frame::after {
  content: "";
  position: absolute;
  top: 22%;
  width: 3px;
  height: 42px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.24), rgba(0, 0, 0, 0.24));
  opacity: 0.46;
}

.device-frame::before {
  left: -1px;
}

.device-frame::after {
  right: -1px;
}

.device-pill {
  display: none;
}

.device-frame img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 27px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #0c0c0c;
  box-shadow: 0 12px 22px rgba(8, 42, 68, 0.12);
}

.support-grid {
  margin-top: 22px;
}

.text-link {
  color: #0d7788;
  text-decoration-color: rgba(13, 119, 136, 0.34);
  text-underline-offset: 3px;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.card,
.section {
  padding: 18px;
  border-radius: 24px;
  border: 1px solid rgba(18, 150, 162, 0.26);
  background: var(--paper);
  box-shadow: 0 14px 26px rgba(8, 42, 68, 0.08);
}

.card-label {
  margin: 0 0 8px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #0d7788;
}

.card-value {
  margin: 0;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.5;
}

.section-list {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.section h2 {
  margin: 0 0 10px;
  font-size: 22px;
  line-height: 1.25;
}

.section p,
.section li {
  margin: 0 0 10px;
  font-size: 15px;
  line-height: 1.8;
  color: #42606a;
  font-weight: 700;
}

.section ul {
  margin: 0;
  padding-left: 20px;
}

.button-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(18, 150, 162, 0.34);
  background: rgba(255, 253, 247, 0.92);
  color: #0f3155;
  text-decoration: none;
  font-size: 14px;
  font-weight: 900;
}

.button-link.primary {
  border-color: rgba(20, 166, 169, 0.42);
  background: linear-gradient(135deg, rgba(20, 166, 169, 0.98), rgba(242, 161, 42, 0.92));
  color: #fffdf7;
}

.button-link.is-current {
  border-color: rgba(20, 166, 169, 0.42);
  background: rgba(20, 166, 169, 0.16);
  color: #0d6071;
  cursor: default;
  pointer-events: none;
}

.footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 12px;
  margin: 26px 4px 0;
  font-size: 12px;
  font-weight: 800;
  color: rgba(16, 43, 77, 0.72);
}

.footer-contact {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(16, 43, 77, 0.84);
  text-decoration: none;
}

.footer-contact:hover {
  color: var(--hero-brown);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-icon {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.map-page .band-hero .shell {
  padding-top: 42px;
  padding-bottom: 76px;
}

.map-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.78fr);
  gap: 28px;
  align-items: center;
  min-height: 540px;
  color: var(--text);
}

.map-hero .brand,
.map-hero .eyebrow,
.map-hero .summary {
  color: rgba(16, 43, 77, 0.9);
}

.map-hero h1 {
  max-width: 740px;
  font-size: clamp(42px, 5.4vw, 68px);
  line-height: 1.04;
}

.map-hero .meta-pill {
  border-color: rgba(18, 150, 162, 0.24);
  background: rgba(255, 253, 247, 0.58);
  color: rgba(16, 43, 77, 0.9);
}

.map-hero-panel {
  min-width: 0;
}

.map-section {
  padding: 20px 0;
}

.map-step-grid,
.screenshot-grid,
.event-detail-grid,
.map-link-grid {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.map-step-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

.event-detail-grid,
.map-link-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.map-step,
.screenshot-card,
.event-detail-card,
.map-link-card {
  min-width: 0;
  border: 1px solid rgba(18, 150, 162, 0.22);
  border-radius: 8px;
  background: rgba(255, 253, 247, 0.78);
  box-shadow: 0 14px 28px rgba(8, 42, 68, 0.07);
}

.map-step {
  padding: 18px;
}

.map-step h3,
.event-detail-card h3 {
  margin: 14px 0 0;
  color: var(--hero-brown);
  font-size: 20px;
  line-height: 1.28;
  letter-spacing: -0.02em;
}

.map-step p,
.event-detail-card p {
  margin: 10px 0 0;
  color: #42606a;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.72;
}

.screenshot-card,
.event-detail-card {
  padding: 14px;
}

.screenshot-figure {
  display: grid;
  justify-items: center;
  gap: 10px;
  min-width: 0;
  margin: 0;
}

.screenshot-figure figcaption {
  margin: 0;
  color: #55717c;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.45;
  text-align: center;
}

.screenshot-figure-hero figcaption {
  color: rgba(16, 43, 77, 0.78);
}

.map-phone-frame {
  position: relative;
  width: min(100%, 210px);
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 32px;
  background: linear-gradient(145deg, #0c0c0e 0%, #2b2c2f 48%, #09090a 100%);
  box-shadow:
    0 20px 34px rgba(8, 42, 68, 0.17),
    inset 0 1px 1px rgba(255, 255, 255, 0.12),
    inset 0 -1px 0 rgba(0, 0, 0, 0.32);
}

.map-phone-frame::before,
.map-phone-frame::after {
  content: "";
  position: absolute;
  top: 22%;
  width: 3px;
  height: 42px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.24), rgba(0, 0, 0, 0.24));
  opacity: 0.46;
}

.map-phone-frame::before {
  left: -1px;
}

.map-phone-frame::after {
  right: -1px;
}

.map-phone-frame img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 25px;
  background: #0c0c0c;
  box-shadow: 0 12px 22px rgba(8, 42, 68, 0.12);
}

.screenshot-figure-hero .map-phone-frame {
  width: min(100%, 270px);
  box-shadow:
    0 24px 42px rgba(8, 42, 68, 0.18),
    0 0 0 1px rgba(255, 253, 247, 0.36),
    inset 0 1px 1px rgba(255, 255, 255, 0.12);
}

.map-phone-frame-small {
  width: min(100%, 176px);
  padding: 7px;
  border-radius: 29px;
}

.map-phone-frame-small img {
  border-radius: 22px;
}

.screenshot-slot {
  display: grid;
  align-content: center;
  min-height: 250px;
  padding: 22px;
  border: 1px dashed rgba(18, 150, 162, 0.34);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 253, 247, 0.92), rgba(226, 247, 246, 0.78));
  color: #284b66;
  text-align: center;
}

.screenshot-slot-large {
  min-height: 390px;
  border-color: rgba(255, 248, 238, 0.42);
  background:
    linear-gradient(145deg, rgba(255, 248, 238, 0.26), rgba(20, 166, 169, 0.16));
  color: rgba(255, 248, 238, 0.94);
}

.screenshot-slot-phone {
  min-height: 320px;
  aspect-ratio: 1179 / 2556;
  width: min(100%, 190px);
  margin: 0 auto;
  padding: 18px;
  border-radius: 26px;
  border-style: solid;
  background:
    linear-gradient(145deg, rgba(12, 12, 14, 0.92), rgba(43, 44, 47, 0.94)),
    linear-gradient(180deg, rgba(255, 248, 238, 0.16), transparent);
  color: rgba(255, 248, 238, 0.94);
  box-shadow: 0 18px 28px rgba(8, 42, 68, 0.16);
}

.slot-label,
.slot-title,
.slot-note {
  margin: 0;
}

.slot-label {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: currentColor;
  opacity: 0.72;
}

.slot-title {
  margin-top: 10px;
  font-size: 20px;
  font-weight: 900;
  line-height: 1.35;
}

.slot-note {
  margin-top: 10px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.62;
  opacity: 0.8;
}

.event-detail-card h3 {
  font-size: 18px;
}

.event-detail-card p {
  font-size: 14px;
}

.study-flow-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.study-flow-card {
  min-width: 0;
  padding: 16px;
  border: 1px solid rgba(18, 150, 162, 0.22);
  border-radius: 8px;
  background: rgba(255, 253, 247, 0.8);
  box-shadow: 0 14px 28px rgba(8, 42, 68, 0.07);
}

.study-flow-card .flow-step-index {
  margin-bottom: 14px;
}

.study-flow-card h3 {
  margin: 14px 0 0;
  color: var(--hero-brown);
  font-size: 19px;
  line-height: 1.28;
  letter-spacing: -0.02em;
}

.study-flow-card p {
  margin: 9px 0 0;
  color: #42606a;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.68;
}

.map-link-card {
  display: grid;
  gap: 7px;
  padding: 18px;
  color: #284b66;
  text-decoration: none;
}

.map-link-card:hover {
  border-color: rgba(20, 166, 169, 0.38);
  background: rgba(255, 253, 247, 0.94);
}

.map-link-card span {
  color: #0d7788;
  font-size: 13px;
  font-weight: 900;
}

.map-link-card strong {
  color: var(--hero-brown);
  font-size: 18px;
  line-height: 1.35;
}

.map-related .map-link-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.map-home-card {
  border-color: rgba(20, 166, 169, 0.3);
  background: linear-gradient(135deg, rgba(226, 247, 246, 0.92), rgba(255, 253, 247, 0.88));
  box-shadow:
    0 14px 26px rgba(8, 42, 68, 0.08),
    0 0 0 1px rgba(255, 253, 247, 0.44);
}

.map-home-card:hover {
  border-color: rgba(20, 166, 169, 0.42);
  background: linear-gradient(135deg, rgba(211, 241, 241, 0.96), rgba(255, 249, 231, 0.92));
}

.map-home-card span {
  color: #0d7788;
}

.map-home-card strong {
  color: #0f3155;
}

.map-home-actions {
  display: flex;
  justify-content: center;
  margin-top: 18px;
}

.map-home-button {
  min-width: 180px;
  border-color: rgba(20, 166, 169, 0.34);
  background: linear-gradient(135deg, rgba(226, 247, 246, 0.94), rgba(255, 253, 247, 0.9));
  color: #0f3155;
  box-shadow:
    0 14px 26px rgba(8, 42, 68, 0.08),
    0 0 0 1px rgba(255, 253, 247, 0.44);
}

.map-home-button:hover,
.map-home-button:focus-visible {
  border-color: rgba(20, 166, 169, 0.46);
  background: linear-gradient(135deg, rgba(211, 241, 241, 0.98), rgba(255, 249, 231, 0.96));
  transform: translateY(-1px);
}

.map-example-actions {
  align-self: center;
  margin-top: 0;
}

.map-example-actions .map-link-card {
  position: relative;
  overflow: hidden;
  border-color: rgba(20, 166, 169, 0.3);
  background:
    linear-gradient(135deg, rgba(255, 253, 247, 0.94), rgba(226, 247, 246, 0.82));
  color: #284b66;
  box-shadow:
    0 14px 28px rgba(8, 42, 68, 0.08),
    0 0 0 1px rgba(255, 253, 247, 0.42);
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    border-color 160ms ease;
}

.map-example-actions .map-link-card::after {
  content: "";
  position: absolute;
  inset: -30%;
  pointer-events: none;
  background: linear-gradient(
    115deg,
    transparent 0%,
    transparent 36%,
    rgba(255, 255, 255, 0.28) 48%,
    transparent 62%,
    transparent 100%
  );
  transform: translateX(-70%);
  transition: transform 360ms ease;
}

.map-example-actions .map-link-card:hover,
.map-example-actions .map-link-card:focus-visible {
  border-color: rgba(20, 166, 169, 0.46);
  background:
    linear-gradient(135deg, rgba(241, 252, 251, 0.98), rgba(255, 247, 224, 0.94));
  box-shadow:
    0 18px 34px rgba(8, 42, 68, 0.11),
    0 0 0 1px rgba(20, 166, 169, 0.18);
  transform: translateY(-2px);
}

.map-example-actions .map-link-card:hover::after,
.map-example-actions .map-link-card:focus-visible::after {
  transform: translateX(70%);
}

.map-example-actions .map-link-card span {
  color: #0d7788;
}

.map-example-actions .map-link-card strong {
  color: #0f3155;
}

@media (max-width: 720px) {
  .top-nav {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    padding: 12px 14px 0;
  }

  .top-nav-inner {
    display: inline-flex;
    width: auto;
    max-width: calc(100vw - 28px);
    padding: 8px 12px;
    border-color: rgba(18, 150, 162, 0.18);
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(231, 247, 246, 0.66), rgba(250, 239, 203, 0.5));
    box-shadow: 0 10px 22px rgba(8, 42, 68, 0.06);
    backdrop-filter: blur(10px);
  }

  .top-nav-brand {
    min-height: 28px;
    gap: 8px;
    color: #0f3155;
    font-size: 13px;
  }

  .top-nav .brand-mark {
    box-shadow: 0 0 0 5px rgba(20, 166, 169, 0.13);
  }

  .top-nav-links {
    display: none;
  }

  .shell {
    padding: 22px 14px 42px;
  }

  .band-hero .shell {
    padding-top: 74px;
  }

  .band-flow .shell {
    padding-top: 34px;
    padding-bottom: 58px;
  }

  .band-examples .shell {
    padding-top: 50px;
    padding-bottom: 58px;
  }

  .promo-hero,
  .story-flow,
  .showcase,
  .hero {
    padding: 14px 0;
    border-radius: 0;
  }

  .promo-hero {
    min-height: auto;
  }

  .promo-hero > .brand {
    display: none;
  }

  .intro-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 14px;
    align-items: start;
    margin-top: 0;
  }

  .feature-card {
    grid-template-columns: 1fr;
  }

  .intro-copy {
    display: grid;
    gap: 0;
    width: min(100%, calc(100vw - 28px));
  }

  .intro-copy,
  .intro-summary,
  .intro-detail,
  .intro-visual,
  .flow-steps,
  .flow-benefits,
  .example-shots,
  .section-header,
  .section-summary,
  .feature-scroll {
    max-width: calc(100vw - 28px);
  }

  .promo-hero .eyebrow,
  .hero-title-lockup,
  .intro-summary,
  .intro-detail,
  .intro-detail-soft,
  .store-actions,
  .meta-row {
    grid-column: auto;
  }

  .promo-hero h1 {
    max-width: 100%;
  }

  .section-header h2 {
    max-width: calc(100vw - 28px);
  }

  .hero-title-lockup {
    gap: 8px;
  }

  .hero-logo {
    width: 32px;
    height: 32px;
    border-radius: 11px;
    box-shadow: 0 10px 16px rgba(8, 42, 68, 0.16);
  }

  .promo-hero h1 {
    font-size: 26px;
    line-height: 1.12;
    letter-spacing: 0;
  }

  .promo-hero .eyebrow {
    margin-bottom: 8px;
    font-size: 10px;
    letter-spacing: 0.16em;
  }

  .intro-summary {
    margin-top: 9px;
    font-size: 14px;
    line-height: 1.42;
  }

  .intro-detail {
    margin-top: 10px;
    font-size: 12px;
    line-height: 1.62;
  }

  .intro-detail-soft {
    margin-top: 4px;
  }

  .intro-visual {
    grid-column: auto;
    grid-row: auto;
    align-self: stretch;
    width: 100%;
    aspect-ratio: 16 / 10;
    padding: 5px;
    border-radius: 18px;
    background: rgba(255, 253, 247, 0.62);
    box-shadow: 0 14px 22px rgba(8, 42, 68, 0.14);
  }

  .intro-visual img {
    border-radius: 13px;
  }

  .section-header h2 {
    font-size: 22px;
    line-height: 1.22;
    letter-spacing: 0;
  }

  .section-summary {
    margin-top: 12px;
    font-size: 13px;
    line-height: 1.68;
  }

  .eyebrow {
    margin-bottom: 10px;
    font-size: 11px;
    letter-spacing: 0.16em;
  }

  .flow-layout {
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 24px;
  }

  .flow-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .flow-step {
    grid-template-columns: 1fr;
    gap: 9px;
    padding: 12px;
    background: rgba(255, 253, 247, 0.84);
  }

  .flow-step-index {
    width: 34px;
    height: 34px;
    font-size: 11px;
  }

  .flow-step h3 {
    font-size: 14px;
    line-height: 1.34;
  }

  .flow-step p {
    margin-top: 6px;
    font-size: 11.5px;
    line-height: 1.62;
  }

  .flow-benefits {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 22px;
  }

  .flow-audience {
    grid-template-columns: 78px minmax(0, 1fr);
    gap: 8px;
    align-items: center;
    padding: 12px;
  }

  .flow-audience-label {
    font-size: 11.5px;
    line-height: 1.35;
  }

  .flow-audience-list {
    display: flex;
    flex-wrap: nowrap;
    gap: 6px;
    min-width: 0;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .flow-audience-list::-webkit-scrollbar {
    display: none;
  }

  .flow-audience-list span {
    flex: 0 0 auto;
    min-height: 30px;
    padding: 6px 9px;
    border-radius: 999px;
    font-size: 10.5px;
    line-height: 1.35;
  }

  .seo-faq {
    padding: 14px 0;
  }

  .seo-faq-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .seo-faq-card {
    padding: 10px;
  }

  .seo-faq-card h3 {
    font-size: 12px;
    line-height: 1.36;
  }

  .seo-faq-card p {
    margin-top: 7px;
    font-size: 10.5px;
    line-height: 1.55;
  }

  .home-faq {
    padding: 14px 0;
  }

  .home-faq-list {
    gap: 10px;
    margin-top: 18px;
  }

  .home-faq-item {
    padding: 14px;
  }

  .home-faq-item h3 {
    font-size: 15px;
    line-height: 1.36;
  }

  .home-faq-item p {
    font-size: 12.5px;
    line-height: 1.68;
  }

  .flow-examples {
    margin-top: 28px;
    scroll-margin-top: 140px;
  }

  .example-block {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 15px;
  }

  .example-copy h3 {
    font-size: 18px;
    line-height: 1.24;
  }

  .example-copy > p:not(.feature-index) {
    font-size: 12.5px;
    line-height: 1.66;
  }

  .example-shots {
    --example-shot-width: 124px;
    --example-two-flow-width: 288px;
    gap: 10px;
    padding-bottom: 12px;
  }

  .example-pair {
    flex-basis: 286px;
  }

  .example-flow-label {
    justify-content: flex-start;
    min-height: 38px;
    font-size: 12px;
    text-align: left;
  }

  .example-pair-row {
    gap: 8px;
  }

  .example-shots-stacked {
    padding-bottom: 0;
  }

  .example-connector {
    flex-basis: 24px;
    margin-bottom: 0;
    font-size: 28px;
  }

  .example-separator {
    font-size: 36px;
  }

  .example-pair-separator {
    transform: translateY(-24px);
  }

  .example-shot .device-frame {
    padding: 5px;
    border-radius: 24px;
  }

  .example-shot .device-frame img {
    border-radius: 19px;
  }

  .example-shot figcaption {
    font-size: 11px;
  }

  .feature-scroll {
    grid-auto-columns: minmax(264px, 82vw);
    max-height: none;
    padding: 2px 2px 16px;
    overflow-x: auto;
    overflow-y: hidden;
  }

  .feature-card {
    min-height: auto;
    padding: 16px;
  }

  .device-frame {
    width: min(100%, 184px);
    padding: 7px;
    border-radius: 34px;
  }

  .hero-device {
    width: min(100%, 270px);
  }

  .device-frame img {
    border-radius: 27px;
  }

  .section-summary,
  .summary {
    font-size: 13px;
  }

  .store-actions {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: min(100%, 362px);
    gap: 5px;
    margin-top: 12px;
  }

  .store-button {
    flex: none;
    min-height: 46px;
    min-width: 0;
    gap: 4px;
    padding: 7px 5px;
    border-radius: 12px;
  }

  .store-icon {
    width: 14px;
    height: 14px;
  }

  .store-button strong {
    font-size: 9.6px;
  }

  .store-button small {
    font-size: 7.4px;
  }

  .meta-row {
    flex-wrap: nowrap;
    gap: 8px;
    margin-top: 12px;
    padding-bottom: 4px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .meta-row::-webkit-scrollbar {
    display: none;
  }

  .meta-pill {
    flex: 0 0 auto;
    min-height: 31px;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 10.5px;
    background: rgba(255, 248, 238, 0.13);
  }

  .summary,
  .section p,
  .section li,
  .card-value {
    overflow-wrap: anywhere;
  }

  .card,
  .section {
    padding: 16px;
    border-radius: 20px;
  }

  .info-grid {
    grid-template-columns: 1fr;
  }

  .legal-links-only .link-row {
    display: grid;
    grid-template-columns: 0.58fr 1.34fr 1.08fr;
    gap: 6px;
    width: 100%;
  }

  .legal-links-only .button-link {
    min-width: 0;
    min-height: 38px;
    padding: 0 6px;
    font-size: 10.5px;
    white-space: nowrap;
  }

  .section h2 {
    font-size: 19px;
  }

  .map-page .band-hero .shell {
    padding-top: 74px;
    padding-bottom: 44px;
  }

  .map-hero {
    grid-template-columns: 1fr;
    gap: 18px;
    min-height: auto;
  }

  .map-hero h1 {
    font-size: 29px;
    line-height: 1.15;
    letter-spacing: 0;
  }

  .map-hero .brand {
    display: none;
  }

  .map-hero .summary {
    font-size: 13px;
    line-height: 1.66;
  }

  .map-step-grid,
  .screenshot-grid,
  .event-detail-grid,
  .map-link-grid {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 18px;
  }

  .map-step,
  .screenshot-card,
  .event-detail-card,
  .map-link-card {
    padding: 14px;
  }

  .map-step h3,
  .event-detail-card h3 {
    margin-top: 10px;
    font-size: 16px;
    line-height: 1.34;
  }

  .map-step p,
  .event-detail-card p {
    font-size: 12.5px;
    line-height: 1.66;
  }

  .screenshot-slot {
    min-height: 190px;
    padding: 18px;
  }

  .screenshot-slot-large {
    min-height: 250px;
  }

  .screenshot-slot-phone {
    min-height: 260px;
    width: min(100%, 164px);
    padding: 14px;
  }

  .screenshot-figure {
    gap: 8px;
  }

  .screenshot-figure figcaption {
    font-size: 11.5px;
  }

  .map-phone-frame {
    width: min(100%, 176px);
    padding: 7px;
    border-radius: 29px;
  }

  .map-phone-frame img {
    border-radius: 22px;
  }

  .screenshot-figure-hero .map-phone-frame {
    width: min(100%, 210px);
  }

  .map-phone-frame-small {
    width: min(100%, 156px);
    border-radius: 27px;
  }

  .slot-label {
    font-size: 10.5px;
  }

  .slot-title {
    font-size: 16px;
    line-height: 1.35;
  }

  .slot-note {
    font-size: 12px;
    line-height: 1.55;
  }

  .map-link-card strong {
    font-size: 15px;
  }

  .map-related .map-link-grid {
    grid-template-columns: 1fr;
  }

  .map-home-actions {
    margin-top: 12px;
  }

  .map-home-button {
    width: 100%;
    min-height: 42px;
    font-size: 12.5px;
  }

  .study-flow-grid {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 18px;
  }

  .study-flow-card {
    padding: 14px;
  }

  .study-flow-card h3 {
    margin-top: 10px;
    font-size: 16px;
  }

  .study-flow-card p {
    font-size: 12.5px;
    line-height: 1.66;
  }

  .map-example-actions {
    margin-top: 0;
  }
}
