:root {
  --brand: #ff6a00;
  --brand-deep: #f05d00;
  --teal: #13b9ae;
  --blue: #5f93f5;
  --purple: #9a6cf2;
  --amber: #f5ac24;
  --ink: #111827;
  --muted: #657184;
  --line: rgba(17, 24, 39, 0.09);
  --page: #f7f8fb;
  --white: #fff;
  --max: 1200px;
  --shadow: 0 18px 44px rgba(17, 24, 39, 0.08);
}

* {
  box-sizing: border-box;
  letter-spacing: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--page);
  font-family:
    -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei",
    "Helvetica Neue", Arial, sans-serif;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  height: 78px;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.header-inner {
  width: min(100% - 64px, var(--max));
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 42px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 150px;
  font-size: 31px;
  line-height: 1;
  font-weight: 900;
  color: #171b22;
  white-space: nowrap;
}

.brand img {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  box-shadow: 0 10px 26px rgba(255, 106, 0, 0.18);
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 1;
  gap: clamp(28px, 4vw, 68px);
  font-size: 16px;
  line-height: 1;
  font-weight: 800;
}

.site-nav a {
  position: relative;
  height: 78px;
  display: inline-flex;
  align-items: center;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 12px;
  width: 34px;
  height: 3px;
  border-radius: 999px;
  background: var(--brand);
  transform: translateX(-50%) scaleX(0);
  transition: transform 0.18s ease;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--brand-deep);
}

.site-nav a:hover::after,
.site-nav a.active::after {
  transform: translateX(-50%) scaleX(1);
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  padding: 0;
  background: transparent;
  color: #171b22;
}

.menu-button span,
.menu-button::before,
.menu-button::after {
  content: "";
  display: block;
  width: 27px;
  height: 2px;
  margin: 6px auto;
  border-radius: 99px;
  background: currentColor;
}

.hero {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.88) 52%, rgba(255, 244, 235, 0.66) 100%),
    #fff;
  border-bottom: 1px solid var(--line);
}

.hero-inner {
  width: min(100% - 64px, var(--max));
  min-height: 640px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 520px;
  align-items: center;
  gap: 54px;
}

.hero-copy h1,
.page-hero h1,
.download-hero h1 {
  margin: 0;
  color: var(--brand-deep);
  font-size: clamp(64px, 8vw, 104px);
  line-height: 0.98;
  font-weight: 900;
}

.hero-title {
  margin: 24px 0 0;
  font-size: clamp(34px, 4.5vw, 50px);
  line-height: 1.16;
  font-weight: 900;
}

.hero-text,
.page-hero p,
.download-hero p,
.section-copy p,
.safety-band p,
.feature-detail p,
.trust-grid p,
.process-section p,
.rules-section p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.hero-text {
  max-width: 560px;
  margin: 22px 0 0;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--brand-deep);
  font-size: 16px;
  line-height: 1;
  font-weight: 900;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 36px;
}

.store-button {
  min-width: 210px;
  height: 62px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-radius: 8px;
  color: #fff;
  font-size: 20px;
  font-weight: 900;
  box-shadow: 0 14px 30px rgba(17, 24, 39, 0.12);
}

.store-button img {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  object-fit: contain;
}

.store-ios {
  background: var(--brand);
}

.store-android {
  background: var(--teal);
}

.hero-media,
.media-panel {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-media img {
  width: min(100%, 560px);
}

.feature-strip {
  background: #fff;
}

.feature-strip-inner {
  width: min(100% - 64px, var(--max));
  margin: 0 auto;
  padding: 46px 0;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  border-bottom: 1px solid var(--line);
}

.feature-strip article,
.feature-detail,
.trust-grid article,
.contact-grid > *,
.legal-copy {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.feature-strip article {
  min-height: 164px;
  padding: 26px 22px;
}

.feature-strip h2,
.feature-detail h2,
.trust-grid h2 {
  margin: 18px 0 8px;
  font-size: 22px;
  line-height: 1.25;
}

.feature-strip p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.icon-tile {
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: #fff;
  font-size: 24px;
  font-weight: 900;
}

.orange {
  background: var(--brand);
}

.teal {
  background: var(--teal);
}

.amber {
  background: var(--amber);
}

.purple {
  background: var(--purple);
}

.blue {
  background: var(--blue);
}

.section {
  width: min(100% - 64px, var(--max));
  margin: 0 auto;
  padding: 82px 0;
}

.two-col,
.page-hero,
.download-hero,
.safety-band {
  display: grid;
  align-items: center;
  gap: 56px;
}

.two-col,
.download-hero {
  grid-template-columns: minmax(0, 1fr) 460px;
}

.page-hero {
  width: min(100% - 64px, var(--max));
  min-height: 560px;
  margin: 0 auto;
  grid-template-columns: minmax(0, 1fr) 470px;
}

.page-hero h1,
.download-hero h1 {
  color: var(--ink);
  font-size: clamp(44px, 5vw, 68px);
  line-height: 1.12;
}

.page-hero img {
  max-height: 500px;
  margin-left: auto;
  object-fit: contain;
}

.section-copy h2,
.safety-band h2,
.process-section h2,
.rules-section h2,
.contact-section h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.18;
}

.section-copy p {
  max-width: 580px;
}

.mini-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  max-width: 420px;
  margin-top: 28px;
}

.mini-grid span,
.process-list span,
.rule-grid p {
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: #2d3748;
  font-weight: 800;
}

.media-panel img {
  max-height: 520px;
  object-fit: contain;
}

.safety-band {
  grid-template-columns: minmax(0, 1fr) auto;
  margin-bottom: 70px;
  padding: 44px 46px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.text-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 150px;
  height: 48px;
  border-radius: 8px;
  background: var(--ink);
  color: #fff;
  font-weight: 900;
}

.feature-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  padding-top: 0;
}

.feature-detail {
  padding: 30px;
}

.feature-detail:nth-child(5) {
  grid-column: 1 / -1;
}

.feature-detail ul {
  margin: 20px 0 0;
  padding-left: 20px;
  color: #384357;
  font-size: 16px;
  line-height: 1.9;
}

.safety-hero img {
  max-height: 480px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.trust-grid article {
  padding: 28px;
}

.process-section,
.rules-section,
.contact-section {
  padding-top: 20px;
}

.process-list,
.rule-grid,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.download-hero {
  width: min(100% - 64px, var(--max));
  min-height: 620px;
  margin: 0 auto;
}

.download-hero img {
  max-height: 560px;
  margin-left: auto;
}

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

.contact-grid > * {
  padding: 28px;
}

.contact-grid strong,
.contact-grid span {
  display: block;
}

.contact-grid strong {
  margin-bottom: 10px;
  font-size: 18px;
}

.contact-grid span {
  color: var(--muted);
  line-height: 1.6;
}

.legal-copy {
  width: min(100% - 64px, 960px);
  margin: 34px auto 56px;
  padding: 38px 42px;
  box-shadow: 0 16px 40px rgba(16, 24, 39, 0.06);
}

.legal-copy h1 {
  margin: 0 0 12px;
  font-size: 36px;
  line-height: 1.22;
}

.legal-copy h2 {
  margin: 28px 0 10px;
  font-size: 22px;
}

.legal-copy p,
.legal-copy li {
  color: #333c4d;
  font-size: 16px;
  line-height: 1.85;
}

.legal-copy a {
  color: var(--brand-deep);
  font-weight: 700;
}

.site-footer {
  padding: 24px 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px 24px;
  color: #778090;
  background: #fff;
  border-top: 1px solid var(--line);
  font-size: 14px;
  text-align: center;
}

.footer-company,
.footer-links,
.footer-records {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-links {
  margin-bottom: 0;
}

.footer-links a {
  color: #4f5a6b;
  font-weight: 800;
}

.footer-records img {
  display: inline-block;
  width: 18px;
  height: 18px;
  margin-right: 5px;
  vertical-align: -4px;
}

.mobile-title {
  display: none;
}

/* Reference-matching layout: text remains HTML, visual artwork is sliced assets. */
@media (min-width: 981px) {
  .header-inner {
    width: min(100% - 188px, 1350px);
  }

  .hero {
    position: relative;
    overflow: hidden;
    background:
      linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.94) 32%, rgba(255, 255, 255, 0.42) 62%, rgba(255, 244, 232, 0.12) 100%),
      url("./assets/visual/hero-city-bg.png") center bottom / cover no-repeat,
      #fff;
  }

  .hero::before {
    content: "";
    position: absolute;
    inset: 50% -5% 0 -5%;
    background: linear-gradient(158deg, transparent 0 47%, rgba(255, 106, 0, 0.9) 48% 70%, transparent 71%);
    pointer-events: none;
  }

  .hero-inner {
    position: relative;
    z-index: 1;
    width: min(100% - 128px, 1404px);
    min-height: 612px;
    grid-template-columns: 710px minmax(0, 1fr);
    gap: 36px;
  }

  .hero-copy {
    align-self: start;
    padding-top: 56px;
    padding-left: 36px;
  }

  .hero-copy h1 {
    font-size: 104px;
  }

  .hero-title {
    width: 720px;
    margin-top: 22px;
    font-size: 48px;
    line-height: 1.12;
  }

  .hero-text {
    width: 590px;
    margin-top: 20px;
    font-size: 23px;
    line-height: 1.65;
  }

  .hero .button-row {
    margin-top: 30px;
    gap: 32px;
  }

  .hero .store-button {
    width: 265px;
    height: 76px;
    font-size: 24px;
  }

  .hero-media {
    position: absolute;
    right: 0;
    top: -34px;
    align-self: start;
    justify-content: flex-end;
    padding-top: 0;
  }

  .hero-media img {
    width: 642px;
    max-width: none;
  }

  .feature-strip {
    position: relative;
    z-index: 3;
    margin-top: -72px;
    background: transparent;
  }

  .feature-strip-inner {
    width: min(100% - 128px, 1404px);
    min-height: 150px;
    padding: 22px 44px;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0;
    border: 0;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 18px 50px rgba(17, 24, 39, 0.12);
  }

  .feature-strip article {
    min-height: 104px;
    padding: 0 26px 0 0;
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr);
    column-gap: 18px;
    align-items: center;
    border: 0;
    border-radius: 0;
    background: transparent;
    border-right: 1px solid rgba(17, 24, 39, 0.08);
  }

  .feature-strip article:last-child {
    border-right: 0;
  }

  .feature-strip .icon-tile {
    grid-row: 1 / span 2;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    font-size: 28px;
  }

  .feature-strip .feature-icon {
    grid-row: 1 / span 2;
    width: 70px;
    height: 70px;
    object-fit: contain;
  }

  .feature-strip h2 {
    margin: 0 0 6px;
    font-size: 24px;
  }

  .feature-strip p {
    font-size: 15px;
    line-height: 1.55;
  }

  .home-safety {
    position: relative;
    z-index: 2;
    width: min(100% - 128px, 1404px);
    margin-top: 20px;
    margin-bottom: 24px;
    min-height: 140px;
    padding: 20px 38px;
    grid-template-columns: 280px repeat(4, minmax(0, 1fr)) 0;
    gap: 28px;
  }

  .home-safety .safety-lead {
    display: grid;
    grid-template-columns: 76px minmax(0, 1fr);
    align-items: center;
    gap: 18px;
  }

  .home-safety .safety-lead img {
    width: 70px;
    height: 70px;
    object-fit: contain;
  }

  .home-safety h2 {
    font-size: 28px;
    line-height: 1.25;
  }

  .home-safety article {
    min-height: 78px;
    display: grid;
    grid-template-columns: 66px minmax(0, 1fr);
    align-items: center;
    column-gap: 16px;
    border-left: 1px solid rgba(17, 24, 39, 0.08);
    padding-left: 26px;
  }

  .home-safety .line-icon-img {
    grid-row: 1 / span 2;
    width: 60px;
    height: 60px;
    object-fit: contain;
  }

  .home-safety h3 {
    margin: 0 0 4px;
    font-size: 20px;
  }

  .home-safety p {
    margin: 0;
    font-size: 15px;
    line-height: 1.45;
  }

  .home-safety .text-button {
    display: none;
  }
}

.line-icon {
  grid-row: 1 / span 2;
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  font-weight: 900;
}

.feature-tabs {
  display: inline-grid;
  grid-template-columns: repeat(5, minmax(88px, 1fr));
  margin-top: 34px;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 16px 34px rgba(17, 24, 39, 0.06);
  overflow: hidden;
}

.feature-tabs a {
  padding: 18px 20px;
  text-align: center;
  color: #171b22;
  font-weight: 900;
  border-right: 1px solid rgba(17, 24, 39, 0.06);
}

.feature-tabs a:last-child {
  border-right: 0;
}

.feature-tabs a.active {
  color: #fff;
  background: var(--brand);
}

.feature-headline span {
  color: var(--brand-deep);
}

.feature-tabs a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.feature-tabs img {
  width: 26px;
  height: 26px;
  object-fit: contain;
}

.showcase-stack {
  display: grid;
  gap: 16px;
  padding-top: 0;
}

.showcase-card {
  min-height: 290px;
  display: grid;
  grid-template-columns: 340px minmax(0, 1fr);
  align-items: center;
  gap: 46px;
  padding: 34px 54px;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 34px rgba(17, 24, 39, 0.04);
}

.showcase-card.reverse {
  grid-template-columns: minmax(0, 1fr) 360px;
}

.showcase-card > img {
  max-height: 240px;
  margin: 0 auto;
  object-fit: contain;
}

.showcase-card h2 {
  margin: 0 0 12px;
  font-size: 30px;
}

.showcase-card > div > p:not(.number) {
  margin: 0 0 14px;
  color: #222b3a;
  font-size: 17px;
  font-weight: 800;
}

.showcase-card ul {
  margin: 0 0 18px;
  padding-left: 20px;
  color: #465367;
  font-size: 15px;
  line-height: 1.85;
}

.number {
  display: inline-block;
  margin: 0 12px 0 0;
  font-size: 44px;
  line-height: 1;
  font-weight: 900;
  vertical-align: -4px;
}

.orange-text {
  color: var(--brand-deep);
}

.teal-text {
  color: var(--teal);
}

.amber-text {
  color: var(--amber);
}

.pill-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 126px;
  height: 42px;
  padding: 0 20px;
  border-radius: 8px;
  color: #fff;
  background: var(--brand);
  font-weight: 900;
}

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

.feature-board {
  width: min(100% - 64px, var(--max));
  margin: 0 auto;
  padding: 0 0 56px;
  display: grid;
  gap: 14px;
}

.feature-panel {
  min-height: 318px;
  display: flex;
  align-items: center;
  gap: 34px;
  padding: 38px 52px;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 12px 34px rgba(17, 24, 39, 0.05);
  overflow: hidden;
}

.panel-art {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
}

.panel-art-left {
  flex: 0 0 230px;
}

.panel-art-left.wide {
  flex-basis: 420px;
}

.panel-copy {
  flex: 0 0 280px;
}

.panel-art-right {
  flex: 1 1 auto;
}

.panel-art-right.small {
  flex: 0 0 260px;
}

.panel-art-right.wide {
  flex: 1 1 420px;
}

.panel-art img {
  max-width: 100%;
  max-height: 250px;
  object-fit: contain;
}

.panel-copy .number {
  margin: 0 10px 0 0;
  display: inline-block;
  font-size: 46px;
  line-height: 1;
}

.panel-copy h2 {
  margin: 0;
  display: inline-block;
  color: #111827;
  font-size: 34px;
  line-height: 1;
  font-weight: 900;
}

.panel-copy > p:not(.number) {
  margin: 16px 0 14px;
  color: #111827;
  font-size: 15px;
  line-height: 1.55;
  font-weight: 900;
}

.panel-copy ul {
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
  color: #1f2937;
  font-size: 14px;
  line-height: 1.9;
}

.panel-copy li {
  position: relative;
  padding-left: 18px;
}

.panel-copy li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
}

@media (min-width: 761px) and (max-width: 980px) {
  .site-header {
    height: 58px;
  }

  .header-inner {
    width: calc(100% - 48px);
    gap: 28px;
  }

  .brand {
    min-width: 126px;
    gap: 8px;
    font-size: 28px;
  }

  .brand img {
    width: 34px;
    height: 34px;
    border-radius: 8px;
  }

  .site-nav {
    gap: 48px;
    font-size: 13px;
  }

  .site-nav a {
    height: 58px;
  }

  .site-nav a::after {
    bottom: 0;
    width: 34px;
  }

  .features-page {
    background: #fff;
  }

  .features-page main {
    background:
      radial-gradient(circle at 99% 21%, rgba(255, 106, 0, 0.2), transparent 18%),
      linear-gradient(180deg, #fff 0%, #fff 78%, #fff9f4 100%);
  }

  .features-page .page-hero {
    position: relative;
    width: 100%;
    min-height: 482px;
    padding: 0 32px;
    grid-template-columns: 380px minmax(0, 1fr);
    gap: 12px;
    align-items: start;
    overflow: hidden;
    background:
      linear-gradient(150deg, transparent 0 59%, rgba(255, 106, 0, 0.18) 60% 73%, transparent 74%),
      radial-gradient(circle at 93% 80%, rgba(255, 106, 0, 0.8), transparent 22%),
      linear-gradient(180deg, #fff 0%, #fff 70%, #fff8f2 100%);
  }

  .features-page .features-hero-copy {
    padding-top: 100px;
    position: relative;
    z-index: 2;
  }

  .feature-headline {
    margin: 0;
    white-space: nowrap;
    color: #111827;
    font-size: 43px;
    line-height: 1.05;
    font-weight: 900;
  }

  .feature-headline span {
    color: var(--brand-deep);
  }

  .features-page .page-hero p {
    width: 360px;
    margin: 16px 0 0;
    color: #273347;
    font-size: 15px;
    line-height: 1.8;
    font-weight: 700;
  }

  .features-page .page-hero > img {
    width: 430px;
    max-height: none;
    margin: 12px 0 0 auto;
    position: relative;
    z-index: 2;
  }

  .features-page .feature-tabs {
    width: 372px;
    height: 82px;
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    border-radius: 14px;
    border: 1px solid rgba(17, 24, 39, 0.08);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 14px 34px rgba(17, 24, 39, 0.08);
  }

  .features-page .feature-tabs a {
    min-width: 0;
    padding: 10px 8px 8px;
    display: grid;
    place-items: center;
    gap: 5px;
    color: #111827;
    font-size: 12px;
    line-height: 1.2;
    font-weight: 900;
    border-right: 1px solid rgba(17, 24, 39, 0.06);
  }

  .features-page .feature-tabs a:last-child {
    border-right: 0;
  }

  .features-page .feature-tabs a.active {
    color: #fff;
    background: var(--brand);
    border-radius: 14px;
  }

  .features-page .feature-tabs img {
    width: 30px;
    height: 30px;
    object-fit: contain;
  }

  .features-page .feature-board {
    width: calc(100% - 8px);
    margin: 0 auto;
    padding: 0 0 8px;
    display: grid;
    gap: 2px;
  }

  .features-page .feature-panel {
    height: 247px;
    min-height: 0;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 22px 30px;
    border: 1px solid rgba(17, 24, 39, 0.09);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 8px 28px rgba(17, 24, 39, 0.04);
    overflow: hidden;
  }

  .features-page .panel-art {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
  }

  .features-page .panel-art-left {
    flex: 0 0 168px;
  }

  .features-page .panel-art-left.wide {
    flex-basis: 330px;
  }

  .features-page .panel-copy {
    flex: 0 0 208px;
    transform: translateY(10px);
  }

  .features-page .panel-art-right {
    flex: 1 1 auto;
  }

  .features-page .panel-art-right.small {
    flex: 0 0 188px;
  }

  .features-page .panel-art-right.wide {
    flex: 1 1 330px;
  }

  .features-page .panel-art img {
    max-width: 100%;
    max-height: 182px;
    object-fit: contain;
  }

  .features-page #city .panel-art-right img,
  .features-page #reward .panel-art-right img,
    .features-page #voice .panel-art-right img {
    max-height: 158px;
  }

  .features-page #market .panel-art-left img,
  .features-page #party .panel-art-left img {
    max-height: 178px;
  }

  .features-page .panel-copy .number {
    margin: 0 8px 0 0;
    display: inline-block;
    font-size: 36px;
    line-height: 1;
  }

  .features-page .panel-copy h2 {
    margin: 0;
    display: inline-block;
    color: #111827;
    font-size: 25px;
    line-height: 1;
    font-weight: 900;
  }

  .features-page .panel-copy > p:not(.number) {
    margin: 13px 0 12px;
    color: #111827;
    font-size: 12px;
    line-height: 1.5;
    font-weight: 900;
  }

  .features-page .panel-copy ul {
    margin: 0 0 10px;
    padding: 0;
    list-style: none;
    color: #1f2937;
    font-size: 11px;
    line-height: 1.8;
  }

  .features-page .panel-copy li {
    position: relative;
    padding-left: 16px;
  }

  .features-page .panel-copy li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.68em;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: currentColor;
  }

  .features-page .panel-copy .pill-button {
    min-width: 86px;
    height: 34px;
    padding: 0 16px;
    border-radius: 7px;
    font-size: 12px;
  }

  .features-page .site-footer {
    min-height: 34px;
    padding: 9px 20px;
    gap: 0 18px;
    font-size: 12px;
    line-height: 1.2;
  }

  .features-page .footer-links,
  .features-page .footer-records {
    gap: 14px;
  }
}

@media (max-width: 760px) {
  .site-header {
    height: 84px;
  }

  .header-inner {
    width: calc(100% - 32px);
    gap: 18px;
  }

  .brand {
    font-size: 30px;
  }

  .brand img {
    width: 46px;
    height: 46px;
  }

  .site-nav {
    position: fixed;
    flex: none;
    left: 16px;
    right: 16px;
    top: 92px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 18px 50px rgba(16, 24, 39, 0.14);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition:
      opacity 0.18s ease,
      transform 0.18s ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    height: 48px;
    justify-content: center;
    border-radius: 8px;
  }

  .site-nav a::after {
    display: none;
  }

  .site-nav a.active {
    background: #fff3ea;
  }

  .menu-button {
    display: block;
    flex: 0 0 auto;
  }

  .hero-inner,
  .page-hero,
  .download-hero,
  .two-col,
  .safety-band {
    width: calc(100% - 32px);
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .hero-inner {
    min-height: 0;
    padding: 58px 0 34px;
  }

  .hero-copy h1 {
    font-size: 64px;
  }

  .hero-title {
    font-size: 34px;
  }

  .button-row {
    gap: 12px;
  }

  .store-button {
    min-width: 0;
    flex: 1 1 160px;
    height: 56px;
    font-size: 17px;
  }

  .hero-media img,
  .download-hero img,
  .page-hero img,
  .media-panel img {
    max-height: 420px;
    margin: 0 auto;
  }

  .feature-strip-inner,
  .section {
    width: calc(100% - 32px);
  }

  .feature-strip-inner,
  .feature-detail-grid,
  .trust-grid,
  .process-list,
  .rule-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .feature-strip-inner {
    padding: 26px 0;
  }

  .feature-icon {
    width: 58px;
    height: 58px;
    object-fit: contain;
  }

  .safety-lead img,
  .line-icon-img {
    width: 58px;
    height: 58px;
    object-fit: contain;
  }

  .home-safety article {
    padding: 18px 0;
    border-top: 1px solid rgba(17, 24, 39, 0.08);
  }

  .home-safety h3 {
    margin: 10px 0 6px;
    font-size: 20px;
  }

  .line-icon {
    width: 50px;
    height: 50px;
  }

  .feature-tabs {
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-tabs a {
    padding: 14px 10px;
    font-size: 14px;
  }

  .feature-tabs img {
    display: none;
  }

  .feature-headline {
    margin: 0;
    color: #111827;
    font-size: 38px;
    line-height: 1.14;
    font-weight: 900;
  }

  .feature-headline span {
    color: var(--brand-deep);
  }

  .feature-board {
    width: calc(100% - 32px);
    padding: 0 0 38px;
    gap: 14px;
  }

  .feature-panel {
    min-height: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 24px 20px;
  }

  .panel-art-left,
  .panel-art-left.wide,
  .panel-art-right,
  .panel-art-right.small,
  .panel-art-right.wide,
  .panel-copy {
    flex-basis: auto;
  }

  .panel-copy {
    order: 2;
  }

  .panel-art-left {
    order: 1;
  }

  .panel-art-right {
    order: 3;
  }

  .panel-art img {
    max-height: 260px;
  }

  .panel-copy h2 {
    font-size: 28px;
  }

  .panel-copy .number {
    font-size: 36px;
  }

  .panel-copy > p:not(.number) {
    font-size: 15px;
  }

  .panel-copy ul {
    font-size: 14px;
  }

  .showcase-stack {
    gap: 14px;
  }

  .showcase-card,
  .showcase-card.reverse {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 24px 20px;
  }

  .showcase-card.reverse > img {
    order: -1;
  }

  .showcase-card > img {
    max-height: 260px;
  }

  .number {
    font-size: 36px;
  }

  .page-hero,
  .download-hero {
    min-height: 0;
    padding: 48px 0;
  }

  .section {
    padding: 52px 0;
  }

  .feature-detail:nth-child(5) {
    grid-column: auto;
  }

  .safety-band {
    margin-bottom: 36px;
    padding: 28px;
  }

  .legal-copy {
    width: calc(100% - 28px);
    margin: 18px auto 28px;
    padding: 24px 20px;
  }

  .legal-copy h1 {
    font-size: 28px;
  }

  .footer-links,
  .footer-records {
    gap: 10px 14px;
  }

  .home-page {
    background: #fff;
  }

  .home-page .site-header {
    position: sticky;
    height: 84px;
    background: #fff;
    border-bottom: 1px solid rgba(17, 24, 39, 0.08);
    box-shadow: none;
  }

  .home-page .header-inner {
    width: calc(100% - 54px);
  }

  .home-page .brand {
    gap: 10px;
    font-size: 34px;
    font-weight: 900;
  }

  .home-page .brand img {
    width: 50px;
    height: 50px;
    border-radius: 12px;
  }

  .home-page .menu-button {
    width: 48px;
    height: 48px;
  }

  .home-page .menu-button span,
  .home-page .menu-button::before,
  .home-page .menu-button::after {
    width: 30px;
    height: 3px;
    margin: 7px auto;
  }

  .home-page .hero {
    position: relative;
    height: 998px;
    overflow: visible;
    border-bottom: 0;
    background:
      linear-gradient(180deg, rgba(16, 20, 28, 0.18) 0%, rgba(22, 21, 18, 0.2) 48%, rgba(255, 255, 255, 0.02) 66%, #fff 93%),
      url("./assets/visual/mobile-hero-scene.png") center top / cover no-repeat;
  }

  .home-page .hero-inner {
    position: static;
    z-index: 2;
    width: 100%;
    min-height: 0;
    display: block;
    padding: 54px 28px 0;
    text-align: center;
  }

  .home-page .hero-copy {
    position: relative;
    z-index: 5;
    margin: 0 auto;
  }

  .home-page .hero-copy h1 {
    color: #fff;
    font-size: clamp(64px, 12vw, 92px);
    line-height: 0.98;
    text-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
  }

  .home-page .hero-title {
    margin-top: 22px;
    color: #fff;
    font-size: clamp(28px, 5.4vw, 40px);
    line-height: 1.22;
    font-weight: 900;
    text-shadow: 0 4px 16px rgba(0, 0, 0, 0.24);
  }

  .home-page .hero-text {
    max-width: 640px;
    margin: 18px auto 0;
    color: rgba(255, 255, 255, 0.94);
    font-size: clamp(18px, 3.3vw, 24px);
    line-height: 1.52;
    font-weight: 800;
    text-shadow: 0 3px 12px rgba(0, 0, 0, 0.28);
  }

  .home-page .hero .button-row {
    justify-content: center;
    flex-wrap: nowrap;
    gap: 10px;
    margin-top: 34px;
  }

  .home-page .hero .store-button {
    width: min(42vw, 260px);
    height: 60px;
    flex: 0 0 auto;
    border-radius: 999px;
    font-size: clamp(16px, 3.4vw, 23px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
  }

  .home-page .hero .store-button img {
    width: 38px;
    height: 38px;
  }

  .home-page .hero-media {
    position: absolute;
    z-index: 3;
    left: 0;
    right: 0;
    bottom: 14px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    pointer-events: none;
  }

  .home-page .hero-media img {
    content: url("./assets/visual/mobile-hero-phone.png");
    width: min(82vw, 604px);
    max-width: none;
    max-height: none;
    margin: 0 auto;
  }

  .home-page .feature-strip {
    position: relative;
    z-index: 6;
    margin-top: -76px;
    background: transparent;
  }

  .home-page .feature-strip-inner {
    width: calc(100% - 86px);
    padding: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .home-page .feature-strip article {
    position: relative;
    min-height: 136px;
    display: grid;
    grid-template-columns: 94px minmax(0, 1fr) 24px;
    align-items: center;
    column-gap: 20px;
    padding: 20px 28px;
    border: 0;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 16px 34px rgba(17, 24, 39, 0.1);
  }

  .home-page .feature-strip article::after {
    content: "›";
    grid-column: 3;
    grid-row: 1 / span 2;
    color: #c6ccd5;
    font-size: 46px;
    line-height: 1;
    font-family: Arial, sans-serif;
  }

  .home-page .feature-strip .feature-icon {
    grid-row: 1 / span 2;
    width: 84px;
    height: 84px;
    object-fit: contain;
  }

  .home-page .feature-strip h2 {
    grid-column: 2;
    grid-row: 1;
    margin: 0 0 8px;
    color: #151a24;
    font-size: clamp(22px, 4.4vw, 30px);
    line-height: 1.15;
    font-weight: 900;
  }

  .home-page .feature-strip p {
    grid-column: 2;
    grid-row: 2;
    margin: 0;
    color: #5d6675;
    font-size: clamp(15px, 3.1vw, 21px);
    line-height: 1.55;
    font-weight: 700;
  }

  .home-page .home-safety {
    width: 100%;
    margin: 54px 0 0;
    padding: 0 42px 54px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
    border: 0;
    border-radius: 0;
    background: #fff;
    box-shadow: none;
  }

  .home-page .home-safety .safety-lead {
    grid-column: 1 / -1;
    text-align: center;
  }

  .home-page .home-safety .safety-lead img {
    display: none;
  }

  .home-page .desktop-title {
    display: none;
  }

  .home-page .mobile-title {
    display: inline;
  }

  .home-page .home-safety h2 {
    color: #1d2430;
    font-size: clamp(24px, 5vw, 34px);
    line-height: 1.2;
    font-weight: 900;
  }

  .home-page .home-safety article {
    min-height: 0;
    padding: 0;
    display: block;
    text-align: center;
    border-top: 0;
  }

  .home-page .home-safety .line-icon-img {
    width: 66px;
    height: 66px;
    margin: 0 auto 14px;
    object-fit: contain;
  }

  .home-page .home-safety h3 {
    margin: 0 0 8px;
    color: #1d2430;
    font-size: clamp(15px, 3.2vw, 21px);
    line-height: 1.22;
    font-weight: 900;
  }

  .home-page .home-safety p {
    margin: 0;
    color: #606b79;
    font-size: clamp(12px, 2.5vw, 16px);
    line-height: 1.55;
  }

  .home-page .home-safety .text-button {
    display: none;
  }

  .home-page .site-footer {
    margin-top: 0;
    padding: 34px 22px 32px;
    border-top: 0;
    border-radius: 18px 18px 0 0;
    background: #fff7ef;
    color: #5f6876;
    font-size: clamp(13px, 2.7vw, 18px);
  }

  .home-page .footer-records {
    order: 1;
    width: 100%;
    gap: 16px 28px;
  }

  .home-page .footer-links {
    order: 2;
    width: 100%;
    gap: 44px;
  }

  .home-page .footer-records span:first-child {
    flex-basis: 100%;
    color: #3a404b;
    font-size: clamp(20px, 4.5vw, 27px);
    font-weight: 900;
  }

  .home-page .footer-records span:nth-child(2) {
    display: none;
  }

  .home-page .footer-links a {
    color: #3f4652;
    font-weight: 800;
  }
}

/* Home page: measured against the selected desktop and mobile references. */
.hero-phone-overlap,
.feature-arrow,
.safety-heart,
.mobile-copy {
  display: none;
}

.desktop-copy {
  display: inline;
}

@media (min-width: 981px) {
  .home-page {
    overflow-x: hidden;
    background: #f8f9fb;
  }

  .home-page .site-header {
    position: sticky;
    height: 78px;
    background: #fff;
    border-bottom-color: rgba(17, 24, 39, 0.08);
    backdrop-filter: none;
  }

  .home-page .header-inner {
    position: relative;
    width: min(calc(100% - 188px), 1348px);
    gap: 0;
  }

  .home-page .brand {
    min-width: 0;
    gap: 12px;
    font-size: 31px;
  }

  .home-page .brand img {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    box-shadow: none;
  }

  .home-page .site-nav {
    position: absolute;
    left: calc(50% - 63px);
    transform: translateX(-50%);
    justify-content: center;
    flex: none;
    gap: 59px;
    font-size: 16px;
  }

  .home-page .site-nav a {
    height: 78px;
  }

  .home-page .site-nav a::after {
    bottom: 12px;
  }

  .home-page .hero {
    position: relative;
    height: 610px;
    min-height: 610px;
    overflow: visible;
    border-bottom: 0;
    background: #fff url("./assets/visual/home-hero-desktop-clean.jpg?v=20260814f") center top / 1536px 610px no-repeat;
  }

  .home-page .hero::before {
    display: none;
  }

  .home-page .hero-inner {
    width: min(calc(100% - 188px), 1348px);
    height: 610px;
    min-height: 610px;
    display: block;
  }

  .home-page .hero-copy {
    width: 700px;
    padding: 42px 0 0 1px;
  }

  .home-page .hero-copy h1 {
    font-size: 136px;
    line-height: 1;
  }

  .home-page .hero-title {
    width: 700px;
    margin-top: -2px;
    font-size: 48px;
    line-height: 1.12;
  }

  .home-page .hero-text {
    width: 480px;
    margin-top: 20px;
    font-size: 23px;
    line-height: 1.65;
  }

  .home-page .hero .button-row {
    gap: 32px;
    margin-top: 22px;
  }

  .home-page .hero .store-button {
    width: 265px;
    height: 76px;
    border-radius: 15px;
    font-size: 24px;
    box-shadow: 0 14px 30px rgba(17, 24, 39, 0.12);
  }

  .home-page .hero .store-android {
    width: 245px;
  }

  .home-page .hero .store-button img {
    width: 42px;
    height: 42px;
  }

  .home-page .hero-media {
    display: none;
  }

  .home-page .hero-phone-overlap {
    position: absolute;
    z-index: 30;
    top: -41px;
    left: calc(50% + 232px);
    width: 390px;
    height: 41px;
    display: block;
    max-width: none;
    object-fit: cover;
  }

  .home-page .feature-strip {
    position: relative;
    z-index: 4;
    margin-top: -73px;
    background: transparent;
  }

  .home-page .feature-strip-inner {
    width: min(calc(100% - 132px), 1404px);
    height: 150px;
    min-height: 150px;
    padding: 22px 42px;
    gap: 0;
    border: 0;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 18px 50px rgba(17, 24, 39, 0.12);
  }

  .home-page .feature-strip article {
    min-height: 106px;
    padding: 0 24px;
    grid-template-columns: 82px minmax(0, 1fr);
    column-gap: 18px;
    border: 0;
    border-right: 1px solid rgba(17, 24, 39, 0.08);
    background: transparent;
  }

  .home-page .feature-strip article:first-child {
    padding-left: 0;
  }

  .home-page .feature-strip article:last-child {
    padding-right: 0;
    border-right: 0;
  }

  .home-page .feature-strip .feature-icon {
    width: 94px;
    height: 94px;
    transform: translateX(-4px);
  }

  .home-page .feature-strip h2 {
    margin: 0 0 6px;
    font-size: 24px;
    white-space: nowrap;
  }

  .home-page .feature-strip p {
    font-size: 15px;
    line-height: 1.55;
  }

  .home-page .home-safety {
    width: min(calc(100% - 132px), 1404px);
    height: 142px;
    min-height: 142px;
    margin-top: 19px;
    margin-bottom: 22px;
    padding: 20px 38px;
    grid-template-columns: 257px repeat(4, minmax(0, 1fr));
    gap: 0;
    border-radius: 18px;
    background: #fff;
  }

  .home-page .home-safety .safety-lead {
    grid-template-columns: 55px minmax(0, 1fr);
    gap: 18px;
  }

  .home-page .home-safety .safety-lead > img:first-child {
    width: 70px;
    height: 70px;
    transform: translateX(-8px);
  }

  .home-page .home-safety h2 {
    font-size: 27px;
  }

  .home-page .home-safety article {
    min-height: 82px;
    padding-left: 26px;
    grid-template-columns: 66px minmax(0, 1fr);
    column-gap: 18px;
  }

  .home-page .home-safety .line-icon-img {
    width: 60px;
    height: 60px;
  }

  .home-page .home-safety h3 {
    font-size: 20px;
  }

  .home-page .home-safety p {
    font-size: 15px;
    line-height: 1.45;
  }

  .home-page .site-footer {
    height: 76px;
    min-height: 76px;
    padding: 0 28px;
    gap: 0;
    background: #f8f9fb;
    border-top-color: rgba(17, 24, 39, 0.05);
    color: #6f7785;
    font-size: 14px;
  }

  .home-page .footer-company,
  .home-page .footer-links,
  .home-page .footer-records {
    display: flex;
    align-items: center;
    gap: 18px;
  }

  .home-page .footer-company span:nth-child(2) {
    display: none;
  }

  .home-page .footer-links {
    margin-left: 24px;
    padding-left: 24px;
    border-left: 1px solid rgba(17, 24, 39, 0.34);
  }

  .home-page .footer-divider {
    color: #9aa1ad;
  }

  .home-page .footer-records a {
    margin-left: 24px;
    padding-left: 24px;
    border-left: 1px solid rgba(17, 24, 39, 0.34);
  }
}

@media (max-width: 760px) {
  .home-page .hero {
    height: 839px;
    min-height: 839px;
    overflow: hidden;
    background: #fff url("./assets/visual/home-hero-mobile-clean-e.jpg") center top / 735px 839px no-repeat;
  }

  .home-page .hero-inner {
    height: 839px;
    padding: 54px 28px 0;
  }

  .home-page .hero-copy h1 {
    position: relative;
    display: inline-block;
    font-size: 112px;
    line-height: 1;
  }

  .home-page .hero-copy h1::after {
    content: "";
    position: absolute;
    top: 8px;
    right: -10px;
    width: 24px;
    height: 24px;
    background: url("./assets/visual/home-heart.png") center / contain no-repeat;
  }

  .home-page .hero-title {
    margin-top: 4px;
    font-size: 42px;
    line-height: 1.2;
    white-space: nowrap;
  }

  .home-page .hero-text {
    width: 470px;
    max-width: 100%;
    margin-top: 8px;
    font-size: 22px;
    line-height: 1.55;
  }

  .home-page .hero .button-row {
    gap: 14px;
    margin-top: 63px;
    transform: translateX(-14px);
  }

  .home-page .hero .store-button {
    width: 253px;
    height: 62px;
    border-radius: 999px;
    font-size: 23px;
  }

  .home-page .hero .store-button img {
    width: 39px;
    height: 39px;
  }

  .home-page .hero-media,
  .home-page .hero-phone-overlap {
    display: none;
  }

  .home-page .feature-strip {
    margin-top: 40px;
  }

  .home-page .feature-strip-inner {
    width: calc(100% - 88px);
    gap: 4px;
  }

  .home-page .feature-strip article {
    height: 136px;
    min-height: 136px;
    grid-template-columns: 100px minmax(0, 1fr) 30px;
    column-gap: 39px;
    padding: 18px 28px;
    border-radius: 18px;
  }

  .home-page .feature-strip article::after {
    display: none;
  }

  .home-page .feature-strip .feature-icon {
    width: 100px;
    height: 100px;
  }

  .home-page .feature-strip article:nth-child(1) .feature-icon {
    content: url("./assets/visual/home-feature-mobile-1.png");
  }

  .home-page .feature-strip article:nth-child(2) .feature-icon {
    content: url("./assets/visual/home-feature-mobile-2.png");
  }

  .home-page .feature-strip article:nth-child(3) .feature-icon {
    content: url("./assets/visual/home-feature-mobile-3.png");
  }

  .home-page .feature-strip article:nth-child(4) .feature-icon {
    content: url("./assets/visual/home-feature-mobile-4.png");
  }

  .home-page .feature-strip article:nth-child(5) .feature-icon {
    content: url("./assets/visual/home-feature-mobile-5.png");
  }

  .home-page .feature-strip h2 {
    margin: 0 0 6px;
    align-self: end;
    font-size: 27px;
    position: relative;
    top: 8px;
  }

  .home-page .feature-strip p {
    align-self: start;
    font-size: 18px;
    line-height: 1.5;
    position: relative;
    top: 8px;
  }

  .home-page .desktop-copy {
    display: none;
  }

  .home-page .mobile-copy {
    display: inline;
  }

  .home-page .feature-arrow {
    width: 18px;
    height: 28px;
    display: block;
    grid-column: 3;
    grid-row: 1 / span 2;
    align-self: center;
    justify-self: end;
    object-fit: contain;
  }

  .home-page .home-safety {
    width: 100%;
    margin: 40px 0 0;
    padding: 0 42px 32px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    column-gap: 22px;
    row-gap: 5px;
  }

  .home-page .home-safety .safety-lead {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
  }

  .home-page .home-safety .safety-lead > img:first-child {
    display: none;
  }

  .home-page .home-safety .safety-heart {
    width: 18px;
    height: 20px;
    display: block !important;
    flex: 0 0 auto;
    object-fit: contain;
  }

  .home-page .home-safety h2 {
    font-size: 29px;
    white-space: nowrap;
  }

  .home-page .home-safety .line-icon-img {
    width: 100px;
    height: 100px;
    margin-bottom: 5px;
  }

  .home-page .home-safety h3 {
    margin-bottom: 8px;
    font-size: 18px;
  }

  .home-page .home-safety article:nth-of-type(1) .line-icon-img {
    content: url("./assets/visual/home-safety-mobile-1.jpg");
  }

  .home-page .home-safety article:nth-of-type(2) .line-icon-img {
    content: url("./assets/visual/home-safety-mobile-2.jpg");
  }

  .home-page .home-safety article:nth-of-type(3) .line-icon-img {
    content: url("./assets/visual/home-safety-mobile-3.jpg");
  }

  .home-page .home-safety article:nth-of-type(4) .line-icon-img {
    content: url("./assets/visual/home-safety-mobile-4.jpg");
  }

  .home-page .home-safety p {
    font-size: 15px;
    line-height: 1.55;
  }

  .home-page .site-footer {
    min-height: 187px;
    margin-top: 0;
    padding: 28px 28px 24px;
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: center;
    gap: 18px;
    border-radius: 18px 18px 0 0;
    background: #fff7ef;
    font-size: 17px;
  }

  .home-page .footer-company,
  .home-page .footer-links,
  .home-page .footer-records {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .home-page .footer-company span:first-child {
    font-size: 24px;
    font-weight: 900;
  }

  .home-page .footer-company span:nth-child(2) {
    display: none;
  }

  .home-page .footer-company {
    order: 1;
  }

  .home-page .footer-links {
    order: 2;
    gap: 40px;
  }

  .home-page .footer-records {
    order: 3;
    gap: 28px;
  }

  .home-page .footer-links a,
  .home-page .footer-records a {
    margin: 0;
    padding: 0;
    border: 0;
  }
}

@media (max-width: 480px) {
  .home-page .site-header {
    height: 11.43vw;
  }

  .home-page .header-inner {
    width: calc(100% - 7.35vw);
  }

  .home-page .brand {
    gap: 1.36vw;
    font-size: 4.63vw;
  }

  .home-page .brand img {
    width: 6.8vw;
    height: 6.8vw;
    border-radius: 1.63vw;
  }

  .home-page .menu-button {
    width: 6.53vw;
    height: 6.53vw;
  }

  .home-page .menu-button span,
  .home-page .menu-button::before,
  .home-page .menu-button::after {
    width: 4.08vw;
    height: 2px;
    margin: 0.95vw auto;
  }

  .home-page .site-nav {
    top: calc(11.43vw + 8px);
  }

  .home-page .hero {
    height: 114.15vw;
    min-height: 114.15vw;
    background-size: 100vw 114.15vw;
  }

  .home-page .hero-inner {
    height: 114.15vw;
    padding: 7.35vw 3.81vw 0;
  }

  .home-page .hero-copy h1 {
    font-size: 15.24vw;
  }

  .home-page .hero-copy h1::after {
    top: 1.09vw;
    right: -1.36vw;
    width: 3.27vw;
    height: 3.27vw;
  }

  .home-page .hero-title {
    margin-top: 0.54vw;
    font-size: 5.72vw;
  }

  .home-page .hero-text {
    width: 63.95vw;
    margin-top: 1.09vw;
    font-size: 2.99vw;
  }

  .home-page .hero .button-row {
    gap: 1.9vw;
    margin-top: 8.57vw;
    transform: translateX(-1.9vw);
  }

  .home-page .hero .store-button {
    width: 34.42vw;
    height: 8.44vw;
    font-size: 3.13vw;
  }

  .home-page .hero .store-button img {
    width: 5.31vw;
    height: 5.31vw;
  }

  .home-page .feature-strip-inner {
    width: calc(100% - 11.97vw);
    gap: 0.54vw;
  }

  .home-page .feature-strip {
    margin-top: 5.44vw;
  }

  .home-page .feature-strip article {
    height: 18.5vw;
    min-height: 18.5vw;
    grid-template-columns: 13.61vw minmax(0, 1fr) 4.08vw;
    column-gap: 5.31vw;
    padding: 2.45vw 3.81vw;
    border-radius: 2.45vw;
  }

  .home-page .feature-strip .feature-icon {
    width: 13.61vw;
    height: 13.61vw;
  }

  .home-page .feature-strip h2 {
    margin-bottom: 0.82vw;
    font-size: 3.67vw;
    top: 1.09vw;
  }

  .home-page .feature-strip p {
    font-size: 2.45vw;
    top: 1.09vw;
  }

  .home-page .feature-arrow {
    width: 2.45vw;
    height: 3.81vw;
  }

  .home-page .home-safety {
    margin-top: 5.44vw;
    padding: 0 5.71vw 4.35vw;
    column-gap: 2.99vw;
    row-gap: 0.68vw;
  }

  .home-page .home-safety .safety-lead {
    gap: 1.9vw;
  }

  .home-page .home-safety h2 {
    font-size: 3.95vw;
  }

  .home-page .home-safety .safety-heart {
    width: 2.45vw;
    height: 2.72vw;
  }

  .home-page .home-safety .line-icon-img {
    width: 13.61vw;
    height: 13.61vw;
    margin-bottom: 0.68vw;
  }

  .home-page .home-safety h3 {
    margin-bottom: 1.09vw;
    font-size: 2.45vw;
  }

  .home-page .home-safety p {
    font-size: 2.04vw;
  }

  .home-page .site-footer {
    min-height: 25.44vw;
    padding: 3.81vw 3.81vw 3.27vw;
    gap: 2.45vw;
    border-radius: 2.45vw 2.45vw 0 0;
    font-size: 2.31vw;
  }

  .home-page .footer-company span:first-child {
    font-size: 3.27vw;
  }

  .home-page .footer-links {
    gap: 5.44vw;
  }

  .home-page .footer-records {
    gap: 3.81vw;
  }
}
