:root {
  --bg: #ffffff;
  --sub-bg: #f6f6f4;
  --ink: #1a1a1a;
  --ink-soft: #3f454d;
  --muted: #747b84;
  --line: #e5e7eb;
  --blue: #2d7ce8;
  --blue-deep: #135dc0;
  --blue-soft: #dbe8fb;
  --amber: #e89b2d;
  --green: #2f9e73;
  --surface: rgba(255, 255, 255, 0.88);
  --shadow: 0 24px 70px rgba(16, 20, 24, 0.12);
  --radius-card: 8px;
  --radius-phone: 34px;
  --container: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: Inter, "Noto Sans JP", "Hiragino Sans", "Yu Gothic", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

br.mobile-break {
  display: none;
}

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

a:hover {
  color: var(--blue);
}

button,
summary {
  font: inherit;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 100;
  transform: translateY(-140%);
  background: var(--ink);
  color: #fff;
  padding: 8px 12px;
  border-radius: 6px;
}

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

.container {
  width: min(100% - 48px, var(--container));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  display: flex;
  align-items: center;
  gap: 28px;
  min-height: 76px;
  padding: 14px max(24px, calc((100vw - var(--container)) / 2));
  background: rgba(255, 255, 255, 0.72);
  border-bottom: 1px solid rgba(229, 231, 235, 0.52);
  backdrop-filter: blur(18px);
  transition: box-shadow 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 36px rgba(16, 20, 24, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 8px;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-name {
  color: var(--ink);
  font-weight: 700;
  font-size: 19px;
  line-height: 1;
  letter-spacing: 0;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-left: auto;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 600;
}

.header-cta,
.primary-action {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid var(--blue);
  background: var(--blue);
  color: #fff;
  font-weight: 700;
  line-height: 1;
  box-shadow: 0 12px 30px rgba(45, 124, 232, 0.24);
}

.header-cta:hover,
.primary-action:hover {
  color: #fff;
  background: var(--blue-deep);
  border-color: var(--blue-deep);
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  padding: 112px 0 0;
  background: var(--sub-bg);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 38%;
  background: linear-gradient(to bottom, rgba(246, 246, 244, 0), var(--sub-bg));
  pointer-events: none;
}

.hero-scene,
.map-grid {
  position: absolute;
  inset: 0;
}

.map-grid {
  opacity: 0.8;
  background:
    linear-gradient(90deg, rgba(45, 124, 232, 0.08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(45, 124, 232, 0.08) 1px, transparent 1px);
  background-size: 96px 96px;
  mask-image: linear-gradient(to bottom, #000 0%, rgba(0, 0, 0, 0.72) 72%, transparent 100%);
}

.route {
  position: absolute;
  border: 1px solid rgba(45, 124, 232, 0.24);
  border-color: transparent transparent rgba(45, 124, 232, 0.24) rgba(45, 124, 232, 0.24);
  border-radius: 999px;
  transform: rotate(-13deg);
}

.route-a {
  width: 720px;
  height: 360px;
  right: 2%;
  top: 18%;
}

.route-b {
  width: 620px;
  height: 300px;
  left: -7%;
  top: 36%;
  transform: rotate(18deg);
  border-color: rgba(232, 155, 45, 0.2) rgba(232, 155, 45, 0.2) transparent transparent;
}

.route-c {
  width: 440px;
  height: 240px;
  right: 28%;
  bottom: 11%;
  transform: rotate(10deg);
}

.area-glass {
  position: absolute;
  display: grid;
  gap: 2px;
  min-width: 150px;
  padding: 12px 14px;
  border: 1px solid rgba(229, 231, 235, 0.78);
  border-radius: var(--radius-card);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 18px 48px rgba(16, 20, 24, 0.08);
  color: var(--ink-soft);
  font-size: 12px;
}

.area-glass b {
  color: var(--ink);
  font-size: 20px;
  line-height: 1;
}

.area-1 {
  right: 35%;
  top: 20%;
}

.area-2 {
  left: 10%;
  bottom: 12%;
}

.signal-dot {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 10px rgba(45, 124, 232, 0.14);
}

.dot-1 {
  left: 18%;
  top: 26%;
}

.dot-2 {
  right: 14%;
  top: 31%;
}

.dot-3 {
  right: 37%;
  bottom: 22%;
  background: var(--amber);
  box-shadow: 0 0 0 10px rgba(232, 155, 45, 0.14);
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(100% - 48px, 1240px);
  min-height: calc(100svh - 112px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(430px, 0.86fr);
  align-items: center;
  gap: 48px;
  padding-bottom: 118px;
}

.hero-copy {
  max-width: 720px;
  min-width: 0;
  padding-top: 16px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 13px;
  line-height: 1.4;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 24px;
  font-size: 64px;
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: 0;
}

h1 .hero-brand {
  display: block;
  color: var(--blue);
  font-size: 24px;
  line-height: 1.2;
  margin-bottom: 18px;
}

.headline-line {
  display: block;
  color: var(--ink);
  white-space: nowrap;
}

.hero-lead {
  max-width: 610px;
  margin-bottom: 32px;
  color: var(--ink-soft);
  font-size: 19px;
  line-height: 1.95;
  overflow-wrap: anywhere;
}

.hero-actions,
.download-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.store-badge {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px 8px 10px;
  border: 1px solid #d7dce3;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  font-weight: 800;
  line-height: 1.1;
}

.store-badge small {
  display: block;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  line-height: 1.2;
}

.store-icon {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 7px;
  background: var(--ink);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
}

.hero-product {
  position: relative;
  height: 610px;
  min-width: 430px;
}

.phone {
  position: absolute;
  width: 280px;
  height: 560px;
  border: 10px solid #111418;
  border-radius: var(--radius-phone);
  background: #fff;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.phone-map {
  right: 150px;
  top: 28px;
  transform: rotate(-4deg);
}

.phone-chat {
  right: 0;
  top: 86px;
  transform: rotate(3deg);
}

.phone-bar {
  height: 34px;
  padding: 11px 18px 0;
  display: flex;
  justify-content: space-between;
  color: #111418;
  font-size: 11px;
  font-weight: 800;
}

.phone-bar span:last-child {
  width: 44px;
  height: 10px;
  margin-top: 2px;
  border-radius: 999px;
  background: #111418;
  opacity: 0.1;
}

.screen-title,
.chat-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 18px 14px;
  color: var(--ink);
}

.screen-title strong {
  font-size: 20px;
}

.screen-title span {
  color: var(--blue);
  font-size: 13px;
  font-weight: 700;
}

.mini-map {
  position: relative;
  height: 300px;
  margin: 0 14px;
  overflow: hidden;
  border-radius: 18px;
  background:
    linear-gradient(90deg, rgba(45, 124, 232, 0.12) 1px, transparent 1px),
    linear-gradient(0deg, rgba(45, 124, 232, 0.12) 1px, transparent 1px),
    #f4f7fb;
  background-size: 44px 44px;
}

.mini-map::before,
.mini-map::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  border: 10px solid rgba(45, 124, 232, 0.16);
}

.mini-map::before {
  width: 240px;
  height: 120px;
  left: -44px;
  top: 64px;
  transform: rotate(-22deg);
}

.mini-map::after {
  width: 220px;
  height: 120px;
  right: -58px;
  bottom: 38px;
  transform: rotate(18deg);
  border-color: rgba(232, 155, 45, 0.2);
}

.map-area {
  position: absolute;
  z-index: 1;
  padding: 7px 10px;
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
  box-shadow: 0 10px 26px rgba(16, 20, 24, 0.08);
}

.map-area-active {
  left: 26px;
  top: 50px;
  color: var(--blue);
}

.map-area-next {
  right: 22px;
  bottom: 48px;
}

.map-pin {
  position: absolute;
  left: 50%;
  top: 48%;
  width: 18px;
  height: 18px;
  transform: translate(-50%, -50%);
  border: 4px solid #fff;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 12px rgba(45, 124, 232, 0.18);
}

.room-card {
  margin: 14px;
  padding: 16px;
  border-radius: var(--radius-card);
  background: #f7f8fa;
}

.room-card p {
  margin-bottom: 4px;
  font-weight: 800;
  font-size: 17px;
}

.room-card span {
  display: block;
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.room-card b {
  display: block;
  padding: 11px;
  border-radius: 8px;
  background: var(--blue);
  color: #fff;
  text-align: center;
  font-size: 13px;
}

.chat-title {
  justify-content: center;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
  font-weight: 800;
}

.message-list {
  display: grid;
  gap: 10px;
  padding: 14px;
}

.message-card {
  padding: 12px;
  border-radius: var(--radius-card);
  background: #f7f8fa;
}

.message-card div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 4px;
}

.message-card strong {
  font-size: 13px;
}

.message-card span {
  color: var(--muted);
  font-size: 11px;
}

.message-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.55;
}

.muted-card {
  opacity: 0.62;
}

.input-row {
  position: absolute;
  inset: auto 0 0;
  display: flex;
  align-items: flex-end;
  gap: 10px;
  padding: 12px 14px 16px;
  border-top: 1px solid var(--line);
  background: #fff;
}

.input-row span {
  flex: 1;
  min-height: 44px;
  padding: 11px 12px;
  border-radius: 8px;
  background: #f7f8fa;
  color: var(--muted);
  font-size: 12px;
}

.input-row b {
  padding: 10px 12px;
  border-radius: 8px;
  background: var(--blue);
  color: #fff;
  font-size: 12px;
}

.hero-proof {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(100% - 48px, 960px);
  margin: -92px auto 0;
  border: 1px solid rgba(229, 231, 235, 0.86);
  border-radius: var(--radius-card);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 52px rgba(16, 20, 24, 0.08);
}

.hero-proof div {
  padding: 22px 26px;
  border-right: 1px solid var(--line);
}

.hero-proof div:last-child {
  border-right: 0;
}

.hero-proof b {
  display: block;
  margin-bottom: 2px;
  color: var(--blue);
  font-size: 30px;
  line-height: 1;
}

.hero-proof span {
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 700;
}

.section {
  padding: 118px 0;
}

.intro-band {
  background: var(--sub-bg);
  padding-top: 156px;
}

.intro-grid {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 48px;
  align-items: start;
}

.intro-grid h2,
.section-head h2,
.download-inner h2 {
  margin-bottom: 18px;
  font-size: 42px;
  line-height: 1.28;
  font-weight: 800;
  letter-spacing: 0;
}

.intro-grid p:last-child,
.section-head p:last-child,
.download-inner p {
  color: var(--ink-soft);
  font-size: 17px;
}

.section-head {
  max-width: 760px;
  margin: 0 auto 48px;
  text-align: center;
}

.section-head.align-left {
  margin-left: 0;
  text-align: left;
}

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

.feature-card,
.safety-card,
.area-group {
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: #fff;
  box-shadow: 0 14px 44px rgba(16, 20, 24, 0.05);
}

.feature-card {
  min-height: 286px;
  padding: 28px;
}

.feature-icon {
  position: relative;
  width: 48px;
  height: 48px;
  display: block;
  margin-bottom: 28px;
  border-radius: 50%;
  background: var(--blue-soft);
}

.feature-icon::before,
.feature-icon::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
}

.location-icon::before {
  width: 16px;
  height: 16px;
  border: 3px solid var(--blue);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
}

.location-icon::after {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--blue);
}

.time-icon::before {
  width: 24px;
  height: 24px;
  border: 3px solid var(--blue);
  border-radius: 50%;
}

.time-icon::after {
  width: 10px;
  height: 3px;
  border-radius: 999px;
  background: var(--blue);
  transform: translate(4px, 1px) rotate(90deg);
  box-shadow: -6px 6px 0 -1px var(--blue);
}

.anon-icon::before {
  width: 24px;
  height: 16px;
  border: 3px solid var(--blue);
  border-radius: 18px 18px 12px 12px;
}

.anon-icon::after {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 12px 0 0 var(--blue);
  transform: translateX(-6px);
}

.feature-card h3,
.safety-card h3,
.area-group h3,
.steps-list h3 {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.4;
}

.feature-card p,
.safety-card p,
.area-group p,
.steps-list p {
  margin-bottom: 0;
  color: var(--ink-soft);
}

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

.steps-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1fr);
  gap: 72px;
  align-items: center;
}

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

.steps-list li {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 22px;
  padding: 28px 0;
  border-bottom: 1px solid #dfe2e6;
}

.steps-list li:first-child {
  border-top: 1px solid #dfe2e6;
}

.steps-list span {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--blue);
  font-weight: 800;
}

.area-layout {
  display: grid;
  grid-template-columns: minmax(380px, 0.9fr) minmax(0, 1.1fr);
  gap: 36px;
  align-items: stretch;
}

.area-map-board {
  position: relative;
  min-height: 540px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background:
    linear-gradient(90deg, rgba(45, 124, 232, 0.08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(45, 124, 232, 0.08) 1px, transparent 1px),
    #f8fafc;
  background-size: 54px 54px;
}

.area-map-board::before {
  content: "";
  position: absolute;
  inset: 64px -70px auto;
  height: 180px;
  border: 22px solid rgba(45, 124, 232, 0.12);
  border-radius: 999px;
  transform: rotate(-18deg);
}

.area-map-board::after {
  content: "";
  position: absolute;
  inset: auto -80px 62px;
  height: 210px;
  border: 22px solid rgba(232, 155, 45, 0.13);
  border-radius: 999px;
  transform: rotate(22deg);
}

.board-label,
.board-pin,
.board-line {
  position: absolute;
  z-index: 2;
}

.board-label {
  padding: 8px 12px;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(16, 20, 24, 0.08);
  font-size: 13px;
  font-weight: 800;
}

.board-label-1 {
  left: 16%;
  top: 18%;
}

.board-label-2 {
  right: 15%;
  top: 35%;
}

.board-label-3 {
  left: 22%;
  bottom: 23%;
}

.board-label-4 {
  right: 12%;
  bottom: 17%;
}

.board-pin {
  width: 17px;
  height: 17px;
  border: 4px solid #fff;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 10px rgba(45, 124, 232, 0.16);
}

.pin-a {
  left: 28%;
  top: 28%;
}

.pin-b {
  right: 24%;
  top: 45%;
}

.pin-c {
  left: 32%;
  bottom: 31%;
  background: var(--amber);
  box-shadow: 0 0 0 10px rgba(232, 155, 45, 0.16);
}

.pin-d {
  right: 24%;
  bottom: 28%;
}

.area-groups {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.area-group {
  padding: 22px 24px;
}

.area-group h3 {
  font-size: 18px;
}

.area-request {
  margin: 26px 0 0;
  color: var(--ink-soft);
  text-align: center;
}

.area-request a,
.faq-list a {
  color: var(--blue);
  font-weight: 800;
}

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

.safety-grid {
  grid-template-columns: repeat(4, 1fr);
}

.safety-card {
  min-height: 238px;
  padding: 24px;
}

.safety-card span {
  display: inline-flex;
  margin-bottom: 24px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
}

.safety-card:nth-child(1) span {
  color: var(--green);
}

.safety-card:nth-child(4) span {
  color: var(--amber);
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(220px, 0.42fr) minmax(0, 1fr);
  gap: 56px;
  align-items: start;
}

.faq-list {
  display: grid;
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  cursor: pointer;
  list-style: none;
  padding: 24px 46px 24px 0;
  color: var(--ink);
  font-size: 18px;
  font-weight: 800;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  color: var(--blue);
  font-size: 24px;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "";
  width: 14px;
  height: 2px;
  background: var(--blue);
}

.faq-list p {
  margin: -8px 0 24px;
  color: var(--ink-soft);
}

.download-section {
  position: relative;
  overflow: hidden;
  padding: 120px 0;
  background: #111418;
  color: #fff;
}

.download-scene {
  position: absolute;
  inset: 0;
  opacity: 0.28;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 92px 92px;
}

.download-scene span {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 12px rgba(45, 124, 232, 0.24);
}

.download-scene span:nth-child(1) {
  left: 18%;
  top: 28%;
}

.download-scene span:nth-child(2) {
  right: 22%;
  top: 22%;
}

.download-scene span:nth-child(3) {
  right: 36%;
  bottom: 20%;
  background: var(--amber);
  box-shadow: 0 0 0 12px rgba(232, 155, 45, 0.22);
}

.download-inner {
  position: relative;
  z-index: 1;
  max-width: 780px;
  text-align: center;
}

.download-mark {
  width: 82px;
  height: 82px;
  margin: 0 auto 28px;
  border-radius: 8px;
}

.download-inner .section-kicker {
  color: #a9c9f7;
}

.download-inner h2 {
  color: #fff;
}

.download-inner p {
  color: rgba(255, 255, 255, 0.78);
}

.download-actions {
  justify-content: center;
  margin-top: 32px;
}

.primary-action.light {
  background: #fff;
  border-color: #fff;
  color: var(--ink);
  box-shadow: none;
}

.primary-action.light:hover {
  background: var(--blue-soft);
  border-color: var(--blue-soft);
  color: var(--ink);
}

.store-badge.dark {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
  color: #fff;
}

.store-badge.dark small {
  color: rgba(255, 255, 255, 0.62);
}

.store-badge.dark .store-icon {
  background: #fff;
  color: #111418;
}

.site-footer {
  padding: 56px 0;
  background: #fff;
  border-top: 1px solid var(--line);
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto auto;
  gap: 42px;
  align-items: start;
}

.footer-brand {
  margin-bottom: 16px;
}

.site-footer p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.footer-links {
  display: grid;
  gap: 10px;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 700;
}

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

.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 620ms ease, transform 620ms ease;
}

.reveal,
.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.legal-page {
  background: var(--sub-bg);
}

.legal-hero {
  padding: 138px 0 48px;
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.legal-hero h1 {
  max-width: 880px;
  margin-bottom: 12px;
  font-size: 48px;
}

.legal-hero p {
  margin: 0;
  color: var(--muted);
}

.legal-wrap {
  padding: 56px 0 96px;
}

.legal-doc {
  max-width: 900px;
  margin: 0 auto;
  padding: 48px;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: #fff;
}

.legal-doc h2 {
  margin: 40px 0 12px;
  font-size: 24px;
  line-height: 1.45;
}

.legal-doc h2:first-child {
  margin-top: 0;
}

.legal-doc hr {
  height: 1px;
  margin: 36px 0;
  border: 0;
  background: var(--line);
}

.legal-doc p,
.legal-doc li {
  color: var(--ink-soft);
}

.legal-doc ol,
.legal-doc ul {
  padding-left: 1.35em;
}

.legal-doc table {
  width: 100%;
  margin: 22px 0;
  border-collapse: collapse;
  font-size: 14px;
}

.legal-doc th,
.legal-doc td {
  border: 1px solid var(--line);
  padding: 12px;
  text-align: left;
  vertical-align: top;
}

.legal-doc th {
  background: var(--sub-bg);
  color: var(--ink);
}

.legal-back {
  display: inline-flex;
  margin-top: 32px;
  color: var(--blue);
  font-weight: 800;
}

@media (max-width: 1080px) {
  .site-nav {
    display: none;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-bottom: 160px;
  }

  .hero-copy {
    padding-top: 44px;
  }

  .hero-product {
    height: 520px;
    min-width: 0;
  }

  .phone {
    width: 246px;
    height: 492px;
  }

  .phone-map {
    left: 50%;
    right: auto;
    transform: translateX(-78%) rotate(-4deg);
  }

  .phone-chat {
    left: 50%;
    right: auto;
    transform: translateX(-16%) rotate(3deg);
  }

  .feature-grid,
  .safety-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps-grid,
  .area-layout,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .footer-meta {
    text-align: left;
  }
}

@media (max-width: 760px) {
  body {
    font-size: 15px;
  }

  .container,
  .hero-inner,
  .hero-proof {
    width: min(100% - 32px, var(--container));
  }

  .site-header {
    min-height: 68px;
    padding: 12px 16px;
    gap: 12px;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
  }

  .header-cta {
    min-height: 40px;
    padding: 0 14px;
    font-size: 13px;
  }

  .hero {
    min-height: auto;
    padding-top: 80px;
  }

  .hero-inner {
    min-height: 0;
    padding-bottom: 120px;
  }

  .hero-copy {
    padding-top: 22px;
  }

  h1 {
    font-size: 36px;
    line-height: 1.16;
  }

  h1 .hero-brand {
    font-size: 20px;
  }

  .headline-line {
    white-space: normal;
    overflow-wrap: anywhere;
  }

  br.mobile-break {
    display: inline;
  }

  .area-glass {
    display: none;
  }

  .hero-lead {
    font-size: 16px;
    line-height: 1.85;
  }

  .hero-actions {
    align-items: stretch;
  }

  .primary-action,
  .store-badge {
    width: calc(100vw - 32px);
    max-width: 100%;
  }

  .primary-action {
    min-height: 50px;
  }

  .hero-product {
    height: 410px;
  }

  .phone {
    width: 200px;
    height: 400px;
    border-width: 8px;
    border-radius: 28px;
  }

  .phone-map {
    transform: translateX(-74%) rotate(-4deg);
  }

  .phone-chat {
    transform: translateX(-18%) rotate(3deg);
  }

  .screen-title,
  .chat-title {
    padding-inline: 12px;
  }

  .mini-map {
    height: 210px;
    margin-inline: 10px;
  }

  .room-card {
    margin: 10px;
    padding: 12px;
  }

  .message-list {
    padding: 10px;
    gap: 8px;
  }

  .message-card {
    padding: 10px;
  }

  .message-card:nth-child(3) {
    display: none;
  }

  .input-row {
    padding: 10px;
  }

  .hero-proof {
    grid-template-columns: 1fr;
    margin-top: -84px;
  }

  .hero-proof div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .hero-proof div:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 82px 0;
  }

  .intro-band {
    padding-top: 126px;
  }

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

  .intro-grid h2,
  .section-head h2,
  .download-inner h2 {
    font-size: 30px;
  }

  .section-head {
    margin-bottom: 34px;
    text-align: left;
  }

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

  .feature-card,
  .safety-card {
    min-height: 0;
    padding: 24px;
  }

  .steps-grid {
    gap: 28px;
  }

  .steps-list li {
    grid-template-columns: 52px 1fr;
    gap: 16px;
    padding: 22px 0;
  }

  .area-map-board {
    min-height: 360px;
  }

  .faq-grid {
    gap: 18px;
  }

  .faq-list summary {
    font-size: 16px;
    padding: 20px 38px 20px 0;
  }

  .download-section {
    padding: 84px 0;
  }

  .download-actions .store-badge {
    width: auto;
    flex: 1 1 190px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .legal-hero {
    padding-top: 112px;
  }

  .legal-hero h1 {
    font-size: 34px;
  }

  .legal-doc {
    padding: 28px 20px;
  }

  .legal-doc table {
    display: block;
    overflow-x: auto;
  }
}

@media (max-width: 420px) {
  h1 {
    font-size: 34px;
  }

  .brand-name {
    font-size: 17px;
  }

  .hero-product {
    height: 360px;
  }

  .phone {
    width: 178px;
    height: 356px;
  }

  .mini-map {
    height: 176px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
