:root {
  --ivory: #fff8f2;
  --paper: #fffdfb;
  --paper-deep: #f7ede7;
  --ink: #241812;
  --muted: #735f56;
  --soft: #ad9b92;
  --line: rgba(54, 33, 24, 0.13);
  --road: rgba(116, 101, 93, 0.16);
  --road-soft: rgba(186, 146, 126, 0.11);
  --orange: #fc5216;
  --orange-dark: #a9360c;
  --orange-soft: #ffe3d8;
  --orange-contrast: #28140d;
  --sage: #f4e8df;
  --map-blue: #efe9e4;
  --shadow: 0 24px 70px rgba(127, 55, 23, 0.14);
  --shadow-small: 0 12px 32px rgba(127, 55, 23, 0.1);
  --radius-lg: 32px;
  --radius-md: 20px;
  --radius-sm: 12px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  color-scheme: light;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  background: var(--ivory);
  color: var(--ink);
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  line-height: 1.6;
  text-wrap: pretty;
}

body,
button,
a {
  font: inherit;
}

h1,
h2,
h3 {
  text-wrap: balance;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

button {
  border: 0;
}

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

button,
a,
summary {
  -webkit-user-select: none;
  user-select: none;
  touch-action: manipulation;
}

:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 16px;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--paper);
  transform: translateY(-180%);
  transition: transform 180ms var(--ease);
}

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

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

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  border-bottom: 1px solid rgba(54, 33, 24, 0.1);
  background: rgba(255, 248, 242, 0.9);
  backdrop-filter: blur(18px) saturate(1.05);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
}

.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 11px;
  box-shadow: 0 5px 14px rgba(127, 55, 23, 0.14);
  object-fit: cover;
}

.brand-copy {
  display: grid;
  gap: 2px;
  line-height: 1.05;
}

.brand-copy strong {
  font-size: 16px;
  letter-spacing: -0.06em;
}

.brand-wordmark {
  width: 48px;
  height: 15px;
  object-fit: contain;
  object-position: left center;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 38px);
  margin-left: auto;
}

.site-nav a,
.mobile-menu summary {
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
}

.site-nav a {
  position: relative;
  padding: 10px 0;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 2px;
  border-radius: 99px;
  background: var(--orange);
  content: "";
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms var(--ease);
}

.site-nav a:hover,
.site-nav a[aria-current="page"],
.site-nav a[aria-current="location"] {
  color: var(--ink);
}

.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after,
.site-nav a[aria-current="location"]::after {
  transform: scaleX(1);
}

.mobile-menu {
  display: none;
  position: relative;
}

.mobile-menu summary {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
}

.mobile-menu summary::-webkit-details-marker {
  display: none;
}

.mobile-menu summary::before,
.mobile-menu summary::after {
  position: absolute;
  width: 16px;
  height: 1.5px;
  background: currentColor;
  content: "";
  transition: transform 180ms var(--ease);
}

.mobile-menu summary::before {
  transform: translateY(-3px);
}

.mobile-menu summary::after {
  transform: translateY(3px);
}

.mobile-menu[open] summary::before {
  transform: rotate(45deg);
}

.mobile-menu[open] summary::after {
  transform: rotate(-45deg);
}

.mobile-menu nav {
  position: absolute;
  top: 54px;
  right: 0;
  display: grid;
  min-width: 220px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--paper);
  box-shadow: var(--shadow-small);
}

.mobile-menu nav a {
  padding: 12px 14px;
  border-radius: 12px;
  color: var(--muted);
  font-size: 14px;
}

.mobile-menu nav a:hover,
.mobile-menu nav a:focus-visible {
  background: var(--orange-soft);
  color: var(--ink);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  gap: 10px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 750;
  line-height: 1;
  cursor: pointer;
  transition: transform 180ms var(--ease), box-shadow 180ms var(--ease), background 180ms var(--ease), color 180ms var(--ease);
}

.button:hover {
  transform: translateY(-2px);
}

.button--primary {
  background: var(--orange);
  color: var(--orange-contrast);
  box-shadow: 0 10px 24px rgba(252, 82, 22, 0.28);
}

.button--primary:hover {
  background: var(--orange-dark);
  color: var(--paper);
  box-shadow: 0 14px 30px rgba(169, 54, 12, 0.3);
}

.button:active {
  transform: scale(0.97);
}

.button--quiet {
  border-color: var(--line);
  color: var(--ink);
}

.button--quiet:hover {
  border-color: rgba(252, 82, 22, 0.5);
  background: rgba(255, 227, 216, 0.72);
}

.button--light {
  background: var(--paper);
  color: var(--ink);
}

.button--disabled,
.button.is-disabled {
  cursor: default;
  opacity: 0.72;
}

.button--disabled:hover,
.button.is-disabled:hover {
  transform: none;
  box-shadow: none;
}

.arrow {
  font-size: 16px;
  line-height: 0;
}

.hero {
  position: relative;
  min-height: min(820px, calc(100vh - 74px));
  overflow: hidden;
  padding: clamp(70px, 9vw, 132px) 0 100px;
  isolation: isolate;
}

.road-grid {
  position: absolute;
  z-index: -2;
  inset: 0;
  background-color: var(--ivory);
  background-image:
    linear-gradient(18deg, transparent 0 44%, var(--road) 44.2% 44.8%, transparent 45% 100%),
    linear-gradient(108deg, transparent 0 35%, var(--road-soft) 35.2% 35.7%, transparent 36% 100%),
    linear-gradient(2deg, transparent 0 62%, var(--road-soft) 62.2% 62.7%, transparent 63% 100%),
    linear-gradient(82deg, transparent 0 74%, var(--road) 74.2% 74.8%, transparent 75% 100%);
  background-size: 260px 180px, 320px 220px, 290px 200px, 380px 260px;
  opacity: 0.9;
}

.hero::after {
  position: absolute;
  z-index: -1;
  top: 12%;
  right: -10%;
  width: 58vw;
  height: 58vw;
  max-width: 720px;
  max-height: 720px;
  border: 1px solid rgba(252, 82, 22, 0.16);
  border-radius: 50%;
  content: "";
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(480px, 1.15fr);
  align-items: center;
  gap: clamp(36px, 7vw, 112px);
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 580px;
}

.hero-copy h1 {
  max-width: 560px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(56px, 8vw, 112px);
  font-weight: 780;
  letter-spacing: -0.1em;
  line-height: 0.94;
}

.hero-copy h1 span {
  color: var(--orange);
}

.hero-lead {
  max-width: 470px;
  margin: 32px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 1.8vw, 20px);
  line-height: 1.8;
}

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

.hero-slogan {
  margin: 28px 0 0;
  color: var(--soft);
  font-size: 13px;
  letter-spacing: 0.02em;
}

.hero-visual {
  position: relative;
  min-height: 560px;
}

.hero-visual .road-grid {
  inset: 5% -10% 0 0;
  border-radius: 46% 54% 34% 64%;
  opacity: 0.62;
  transform: rotate(-5deg);
}

.tail-art {
  position: absolute;
  z-index: 1;
  top: 4%;
  left: -6%;
  width: 112%;
  height: 52%;
  overflow: visible;
}

.tail-art path {
  fill: none;
  stroke: var(--orange);
  stroke-linecap: round;
  stroke-width: 4;
  stroke-dasharray: 13 11;
  animation: tail-dash 18s linear infinite;
}

.tail-art circle {
  fill: var(--orange);
}

.map-label {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 13px;
  border: 1px solid rgba(252, 82, 22, 0.28);
  border-radius: 999px;
  background: rgba(255, 253, 249, 0.82);
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
  box-shadow: 0 8px 18px rgba(127, 55, 23, 0.08);
}

.map-label--nearby {
  top: 10%;
  right: 16%;
}

.map-label--activity {
  top: 32%;
  left: 6%;
}

.map-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 4px var(--orange-soft);
}

.phone {
  position: absolute;
  z-index: 3;
  overflow: hidden;
  border: 8px solid #2d2723;
  border-radius: 36px;
  background: #161310;
  box-shadow: 0 30px 60px rgba(47, 31, 20, 0.28), 0 0 0 1px rgba(255, 255, 255, 0.56) inset;
}

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

.phone--hero {
  right: 14%;
  bottom: 2%;
  width: min(290px, 46%);
  aspect-ratio: 0.46;
  transform: rotate(5deg);
}

.phone-caption {
  position: absolute;
  right: 14px;
  bottom: 13px;
  left: 14px;
  z-index: 4;
  padding: 9px 10px;
  border-radius: 12px;
  background: rgba(36, 24, 18, 0.86);
  color: #fff;
  font-size: 10px;
  line-height: 1.45;
}

.phone-caption strong {
  display: block;
  margin-bottom: 2px;
  color: #ffd0c2;
  font-size: 11px;
}

.section {
  position: relative;
  padding: clamp(84px, 11vw, 152px) 0;
  scroll-margin-top: 90px;
}

.section--paper {
  background: var(--paper);
}

.section--road {
  background: var(--ivory);
}

.section--ink {
  overflow: hidden;
  background: var(--ink);
  color: var(--paper);
}

.section--orange {
  overflow: hidden;
  background: var(--orange);
  color: var(--orange-contrast);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.55fr) minmax(0, 1fr);
  gap: 40px;
  align-items: end;
  margin-bottom: 56px;
}

.section-index {
  margin: 0 0 14px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.17em;
}

.section-heading h2,
.section--ink h2,
.section--orange h2,
.legal-copy h1 {
  margin: 0;
  font-size: clamp(34px, 5vw, 72px);
  font-weight: 760;
  letter-spacing: -0.08em;
  line-height: 1;
}

.section-heading p,
.section-intro {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.feature-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--line);
}

.feature-card {
  position: relative;
  min-height: 290px;
  padding: clamp(24px, 3vw, 42px);
  background: var(--paper);
  transition: background 180ms var(--ease), transform 180ms var(--ease);
}

.feature-card:hover {
  z-index: 1;
  background: #fffaf7;
  transform: translateY(-3px);
}

.feature-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(252, 82, 22, 0.42);
  border-radius: 50%;
  color: var(--orange);
  font-size: 12px;
  font-weight: 800;
}

.feature-card h3 {
  max-width: 260px;
  margin: 40px 0 14px;
  font-size: clamp(22px, 2.2vw, 30px);
  letter-spacing: -0.06em;
  line-height: 1.14;
}

.feature-card p {
  max-width: 270px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.feature-card .feature-tail {
  position: absolute;
  right: 26px;
  bottom: 27px;
  left: 42px;
  height: 1px;
  background: var(--orange);
  opacity: 0.6;
}

.feature-card .feature-tail::after {
  position: absolute;
  right: 0;
  top: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  content: "";
  transform: translateY(-50%);
}

.screenshot-section {
  overflow: hidden;
}

.screenshot-layout {
  display: grid;
  grid-template-columns: minmax(230px, 0.45fr) minmax(0, 1fr);
  gap: clamp(46px, 8vw, 116px);
  align-items: center;
}

.screenshot-copy h2 {
  margin: 0;
  font-size: clamp(38px, 5vw, 70px);
  letter-spacing: -0.09em;
  line-height: 1;
}

.screenshot-copy > p {
  max-width: 380px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}

.shot-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 32px;
}

.shot-tab {
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: background 180ms var(--ease), color 180ms var(--ease), border 180ms var(--ease);
}

.shot-tab:hover,
.shot-tab.is-active {
  border-color: var(--orange);
  background: var(--orange);
  color: var(--orange-contrast);
}

.shot-copy {
  margin-top: 20px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.shot-copy strong {
  display: block;
  margin-bottom: 3px;
  color: var(--ink);
  font-size: 16px;
}

.shot-stage {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 640px;
  padding: 48px;
  border-radius: var(--radius-lg);
  background: var(--paper-deep);
  background-image:
    linear-gradient(28deg, transparent 0 47%, rgba(122, 139, 132, 0.14) 47.3% 47.9%, transparent 48.2% 100%),
    linear-gradient(112deg, transparent 0 54%, rgba(154, 169, 160, 0.16) 54.2% 54.8%, transparent 55.1% 100%);
  background-size: 240px 180px, 320px 220px;
}

.shot-stage::after {
  position: absolute;
  right: 12%;
  bottom: 10%;
  left: 12%;
  height: 1px;
  background: var(--orange);
  content: "";
  opacity: 0.6;
}

.shot-panel {
  position: relative;
  z-index: 1;
  width: min(280px, 72%);
  padding: 7px;
  border-radius: 38px;
  background: #2d2723;
  box-shadow: 0 28px 54px rgba(47, 31, 20, 0.28);
}

.shot-panel img {
  width: 100%;
  aspect-ratio: 0.46;
  border-radius: 31px;
  object-fit: cover;
  object-position: top center;
}

.shot-panel figcaption {
  position: absolute;
  right: 20px;
  bottom: 18px;
  left: 20px;
  padding: 9px 11px;
  border-radius: 11px;
  background: rgba(36, 24, 18, 0.86);
  color: #fff;
  font-size: 10px;
  line-height: 1.45;
}

.shot-panel figcaption strong {
  display: block;
  color: #ffd0c2;
  font-size: 11px;
}

.shot-panel[hidden],
.shot-copy[hidden] {
  display: none;
}

.secondary-section {
  padding-top: 0;
}

.secondary-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr 0.75fr;
  gap: 14px;
}

.secondary-card {
  min-height: 220px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--paper);
}

.secondary-card:nth-child(1) {
  background: var(--sage);
}

.secondary-card:nth-child(2) {
  background: var(--map-blue);
}

.secondary-card:nth-child(3) {
  background: var(--orange-soft);
}

.secondary-card h3 {
  margin: 50px 0 10px;
  font-size: 23px;
  letter-spacing: -0.06em;
}

.secondary-card p {
  max-width: 240px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.mini-symbol {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid currentColor;
  border-radius: 50%;
  color: var(--orange-dark);
  font-size: 19px;
}

.privacy-section {
  position: relative;
}

.privacy-section::before {
  position: absolute;
  top: 0;
  right: -10%;
  width: 58%;
  height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-top: 0;
  border-bottom: 0;
  border-radius: 50%;
  content: "";
  transform: rotate(-14deg);
}

.privacy-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(44px, 9vw, 150px);
  align-items: end;
}

.section--ink .section-index {
  color: #ffb18a;
}

.section--ink h2 {
  color: var(--paper);
}

.privacy-lead {
  max-width: 520px;
  margin: 24px 0 0;
  color: rgba(255, 253, 249, 0.68);
  font-size: 18px;
  line-height: 1.8;
}

.privacy-list {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.privacy-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 70px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 253, 249, 0.88);
  font-weight: 680;
  transition: color 180ms var(--ease), padding 180ms var(--ease);
}

.privacy-list a:hover {
  padding: 0 8px;
  color: #ffb09a;
}

.privacy-list span:last-child {
  color: var(--orange);
  font-size: 22px;
}

.cta-section {
  position: relative;
}

.cta-section::before,
.cta-section::after {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.cta-section::before {
  top: -40%;
  right: -8%;
  width: 620px;
  height: 620px;
}

.cta-section::after {
  top: -20%;
  right: 3%;
  width: 410px;
  height: 410px;
}

.cta-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 44px;
}

.section--orange .section-index,
.section--orange .cta-note {
  color: rgba(36, 24, 18, 0.68);
}

.section--orange h2 {
  max-width: 680px;
  color: var(--ink);
}

.cta-note {
  max-width: 480px;
  margin: 24px 0 0;
  font-size: 16px;
  line-height: 1.75;
}

.cta-actions {
  display: grid;
  justify-items: end;
  gap: 12px;
}

.cta-actions .button--light {
  min-width: 190px;
}

.cta-email {
  color: rgba(36, 24, 18, 0.78);
  font-size: 13px;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.site-footer {
  padding: 34px 0 42px;
  background: var(--paper);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px 26px;
  color: var(--muted);
  font-size: 12px;
}

.footer-links a:hover {
  color: var(--orange-dark);
}

.footer-meta {
  margin: 22px 0 0;
  color: var(--soft);
  font-size: 11px;
}

.legal-main {
  min-height: calc(100vh - 180px);
  padding: clamp(64px, 9vw, 112px) 0 120px;
}

.legal-layout {
  display: grid;
  grid-template-columns: 240px minmax(0, 720px);
  gap: clamp(38px, 8vw, 110px);
  align-items: start;
  justify-content: center;
}

.legal-aside {
  position: sticky;
  top: 104px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 253, 249, 0.72);
}

.legal-aside p {
  margin: 0 0 12px;
  color: var(--soft);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.08em;
}

.legal-aside nav {
  display: grid;
  gap: 4px;
}

.legal-aside a {
  padding: 9px 0;
  border-bottom: 1px solid rgba(76, 56, 43, 0.1);
  color: var(--muted);
  font-size: 13px;
}

.legal-aside a:last-child {
  border-bottom: 0;
}

.legal-aside a:hover,
.legal-aside a[aria-current="page"] {
  color: var(--orange-dark);
}

.legal-copy h1 {
  max-width: 680px;
  font-size: clamp(44px, 7vw, 82px);
}

.legal-lead {
  max-width: 660px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.8;
}

.legal-meta {
  margin: 22px 0 0;
  color: var(--orange-dark);
  font-size: 13px;
  font-weight: 750;
}

.legal-body {
  margin-top: 62px;
  padding-top: 34px;
  border-top: 1px solid var(--line);
}

.legal-body h2 {
  margin: 38px 0 12px;
  font-size: 24px;
  letter-spacing: -0.05em;
}

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

.legal-body p,
.legal-body li {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.95;
}

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

.legal-body a {
  color: var(--orange-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.not-found {
  display: grid;
  min-height: calc(100vh - 180px);
  place-items: center;
  padding: 80px 0;
  text-align: center;
}

.not-found-mark {
  width: 80px;
  margin: 0 auto 24px;
  border-radius: 22px;
  box-shadow: var(--shadow-small);
  object-fit: cover;
}

.not-found h1 {
  margin: 0;
  font-size: clamp(68px, 15vw, 180px);
  letter-spacing: -0.12em;
  line-height: 0.8;
}

.not-found h1 span {
  color: var(--orange);
}

.not-found p {
  max-width: 360px;
  margin: 28px auto 32px;
  color: var(--muted);
}

[data-config-link].is-disabled {
  pointer-events: none;
}

@keyframes tail-dash {
  to {
    stroke-dashoffset: -360;
  }
}

@media (max-width: 1100px) {
  .site-container {
    width: min(100% - 40px, 960px);
  }

  .hero-layout {
    grid-template-columns: minmax(0, 0.8fr) minmax(380px, 1.2fr);
    gap: 36px;
  }

  .hero-copy h1 {
    font-size: clamp(52px, 8vw, 88px);
  }

  .phone--hero {
    right: 8%;
  }

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

  .secondary-card:first-child {
    grid-column: span 2;
  }
}

@media (max-width: 760px) {
  html {
    scroll-behavior: auto;
  }

  .site-container {
    width: min(100% - 32px, 580px);
  }

  .site-header {
    position: sticky;
  }

  .site-nav {
    display: none;
  }

  .mobile-menu {
    display: block;
  }

  .hero {
    min-height: 0;
    padding: 66px 0 78px;
  }

  .hero-layout,
  .section-heading,
  .screenshot-layout,
  .privacy-layout,
  .cta-layout,
  .legal-layout {
    grid-template-columns: 1fr;
  }

  .hero-copy h1 {
    font-size: clamp(54px, 17vw, 88px);
  }

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

  .hero-visual {
    min-height: 490px;
    margin-top: 18px;
  }

  .hero-visual .road-grid {
    inset: 0 -20% 0 -10%;
  }

  .tail-art {
    top: 8%;
    left: -12%;
    width: 132%;
  }

  .map-label--nearby {
    top: 9%;
    right: 4%;
  }

  .map-label--activity {
    top: 28%;
    left: 0;
  }

  .phone--hero {
    right: 12%;
    width: min(236px, 56%);
  }

  .section {
    padding: 82px 0;
  }

  .section-heading {
    gap: 18px;
    margin-bottom: 34px;
  }

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

  .feature-card {
    min-height: 230px;
  }

  .feature-card h3 {
    margin-top: 28px;
  }

  .screenshot-layout {
    gap: 38px;
  }

  .shot-stage {
    min-height: 560px;
    padding: 36px 18px;
  }

  .shot-panel {
    width: min(250px, 74%);
  }

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

  .secondary-card:first-child {
    grid-column: auto;
  }

  .privacy-layout {
    gap: 46px;
  }

  .cta-layout {
    gap: 32px;
    align-items: start;
  }

  .cta-actions {
    justify-items: start;
  }

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

  .footer-links {
    justify-content: flex-start;
  }

  .legal-aside {
    position: static;
  }

  .legal-body {
    margin-top: 46px;
  }
}

@media (max-width: 480px) {
  .header-inner {
    min-height: 66px;
  }

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

  .brand-wordmark {
    width: 45px;
    height: 14px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-visual {
    min-height: 430px;
  }

  .phone--hero {
    right: 4%;
    width: min(210px, 60%);
  }

  .map-label {
    font-size: 11px;
  }

  .map-label--nearby {
    right: 0;
  }

  .map-label--activity {
    left: -4%;
  }

  .shot-tabs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }

  .shot-tab {
    padding: 0 8px;
    font-size: 12px;
  }

  .shot-stage {
    min-height: 500px;
  }

  .shot-panel {
    width: min(220px, 78%);
  }

  .privacy-list a {
    min-height: 62px;
    font-size: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  .button:hover,
  .button:active,
  .feature-card:hover,
  .privacy-list a:hover {
    transform: none;
    padding-left: 0;
    padding-right: 0;
  }
}

@media (prefers-reduced-transparency: reduce) {
  .site-header {
    background: var(--ivory);
    backdrop-filter: none;
  }

  .legal-aside {
    background: var(--paper);
  }
}
