:root {
  --bg: #ddd5cb;
  --ink: #17110e;
  --muted: #665d55;
  --line: rgba(23, 17, 14, 0.32);
  --glass: rgba(248, 238, 224, 0.44);
  --glass-strong: rgba(250, 242, 230, 0.76);
  --accent: #17110e;
  --accent-soft: #e7a15e;
  --blue: #7a9fb7;
  --green: #8da889;
  --shadow: 0 24px 70px rgba(49, 39, 31, 0.12);
  --radius: 20px;
  --serif: "Cormorant Garamond", "Crimson Pro", Georgia, serif;
  --sans: "Inter", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

html,
body {
  background-color: #ddd5cb;
}

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

button,
input,
textarea {
  font: inherit;
}

.site-preloader {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    radial-gradient(circle at 50% 35%, rgba(255, 246, 232, 0.78), transparent 34%),
    #ddd5cb;
  opacity: 1;
  transition: opacity 520ms ease, visibility 520ms ease;
}

.site-preloader.is-hidden {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

.preloader-card {
  display: grid;
  justify-items: center;
  width: min(340px, 100%);
  padding: 34px 30px;
  border: 1px solid rgba(23, 17, 14, 0.16);
  border-radius: 8px;
  background: rgba(255, 246, 232, 0.46);
  box-shadow: 0 30px 90px rgba(49, 39, 31, 0.16);
  text-align: center;
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.preloader-card img {
  width: 132px;
  height: auto;
  margin-bottom: 18px;
  animation: preloaderFloat 1800ms ease-in-out infinite;
}

.preloader-card strong {
  font-size: clamp(1.65rem, 5vw, 2.35rem);
  font-weight: 900;
  line-height: 1;
}

.preloader-card span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
}

.preloader-line {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 4px;
  margin-top: 24px;
  border-radius: 999px;
  background: rgba(23, 17, 14, 0.12);
}

.preloader-line::before {
  position: absolute;
  inset: 0;
  width: 46%;
  border-radius: inherit;
  background: linear-gradient(90deg, transparent, #17110e, transparent);
  content: "";
  animation: preloaderSlide 1200ms ease-in-out infinite;
}

.page-noise {
  display: none;
}

.ambient {
  display: none;
}

.ambient-one {
  top: 4rem;
  left: -11vw;
  background: #f4f5ef;
}

.ambient-two {
  top: 20rem;
  right: -12vw;
  background: #b9c8cc;
}

.ambient-three {
  display: none;
}

.site-header {
  position: sticky;
  top: 18px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1180px, calc(100% - 32px));
  margin: 18px auto 0;
  padding: 10px 14px;
  border: 1px solid rgba(23, 17, 14, 0.2);
  border-radius: 999px;
  background: rgba(255, 246, 232, 0.74);
  box-shadow: none;
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-logo {
  display: block;
  width: 88px;
  height: auto;
  object-fit: contain;
}

.brand strong {
  display: block;
}

.brand strong {
  font-size: clamp(1.18rem, 1.6vw, 1.55rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
}

.nav-links {
  display: flex;
  gap: 8px;
  align-items: center;
}

.nav-links a {
  padding: 12px 16px;
  border-radius: 999px;
  color: #433832;
  font-size: 0.78rem;
  font-weight: 600;
  transition: background 220ms ease, transform 220ms ease;
}

.nav-links a:hover {
  background: rgba(255, 255, 255, 0.48);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.34);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.section-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  min-height: calc(100vh - 80px);
  margin-top: -80px;
  overflow: hidden;
  padding: 156px max(16px, calc((100vw - 1180px) / 2)) 70px;
  isolation: isolate;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  pointer-events: auto;
  background: rgba(221, 213, 203, 0.14);
}

.hero-copy {
  position: relative;
  z-index: 3;
  width: min(560px, 44vw);
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 520px;
  margin-bottom: 18px;
  font-family: var(--serif);
  font-size: clamp(3.9rem, 6.8vw, 7.2rem);
  font-weight: 400;
  line-height: 0.86;
  letter-spacing: 0;
  text-wrap: balance;
}

.hero h1 {
  max-width: 620px;
  margin-bottom: 18px;
  font-size: clamp(5.1rem, 9.2vw, 8.2rem);
  line-height: 0.82;
}

h1 span {
  display: block;
  margin-top: 18px;
  font-family: var(--sans);
  font-size: clamp(1.05rem, 2.2vw, 1.55rem);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.1;
}

.hero-intro {
  max-width: 560px;
  color: #4c4038;
  font-size: clamp(1.05rem, 1.75vw, 1.26rem);
  line-height: 1.46;
}

.hero-subheading {
  max-width: 560px;
  margin-bottom: 14px;
  color: #17110e;
  font-size: clamp(1.05rem, 1.8vw, 1.34rem);
  font-weight: 900;
  line-height: 1.28;
}

.hero-belief,
.story-manifesto {
  color: #17110e;
  font-size: clamp(0.98rem, 1.55vw, 1.12rem);
  font-weight: 900;
  line-height: 1.45;
}

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

.btn {
  display: inline-flex;
  gap: 10px;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0 12px 0 20px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 800;
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.btn::after {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: #17110e;
  content: "\2192";
  font-size: 0.9rem;
}

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

.btn-primary {
  color: #fff;
  background: linear-gradient(180deg, #3f3a35, #0f0d0c);
  box-shadow: 0 14px 34px rgba(23, 17, 14, 0.22);
}

.btn-ghost {
  border-color: rgba(23, 17, 14, 0.22);
  color: #fff;
  background: linear-gradient(180deg, #3f3a35, #0f0d0c);
  backdrop-filter: none;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  width: 100%;
  margin: 0 auto;
}

.hero-stats div {
  display: grid;
  justify-items: center;
  min-height: 98px;
  padding: 18px 0;
  border: 0;
  border-top: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  text-align: center;
}

.hero-stats strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.4rem;
}

.hero-stats span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.hero-visual {
  position: absolute;
  inset: 0;
  z-index: -2;
  min-height: 100%;
}

.spline-frame {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: #ddd5cb;
  box-shadow: none;
  transform: none;
}

spline-viewer {
  display: block;
  width: 100%;
  height: 100%;
}

#logo {
  visibility: hidden;
}

.story,
.apps,
.clients,
.contact {
  padding: 74px 0;
}

.story {
  display: flex;
  min-height: 100vh;
  flex-direction: column;
  justify-content: center;
}

.section-heading {
  display: block;
  max-width: min(920px, 100%);
  margin: 0 auto 44px;
  text-align: center;
}

.section-heading::after {
  display: none;
}

.section-intro {
  max-width: 680px;
  margin-right: auto;
  margin-left: auto;
  color: var(--muted);
  font-size: clamp(1.04rem, 1.8vw, 1.2rem);
  line-height: 1.62;
}

.section-heading.centered {
  max-width: 820px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.products-heading {
  max-width: min(1180px, 100%);
}

.products-heading h2 {
  white-space: nowrap;
}

.products-heading .section-intro {
  max-width: none;
  white-space: nowrap;
}

h2 {
  margin-bottom: 14px;
  font-family: var(--serif);
  font-size: clamp(2.35rem, 4.6vw, 4.9rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.story-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: stretch;
}

.glass-card,
.app-card,
.client-card {
  border: 1px solid rgba(23, 17, 14, 0.18);
  background: rgba(255, 246, 232, 0.42);
  box-shadow: none;
  backdrop-filter: blur(12px);
}

.story-image-holder {
  width: min(500px, 100%);
  min-height: 500px;
  aspect-ratio: 1;
  border: 0;
  background-image: url("Assets/monjit.webp");
  background-position: center;
  background-size: cover;
}

.story-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 22px;
}

.story-copy p {
  margin-bottom: 0;
  color: #4c4038;
  font-size: clamp(1rem, 1.55vw, 1.14rem);
  line-height: 1.62;
}

.story-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

.app-card h3,
.client-card h3 {
  margin-bottom: 14px;
  font-size: clamp(1.55rem, 3vw, 2.7rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.app-card p,
.client-card p {
  color: var(--muted);
  line-height: 1.66;
}

.app-grid,
.client-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  padding-top: 18px;
  padding-right: 18px;
  perspective: 1200px;
  align-items: stretch;
}

.app-card,
.client-card {
  position: relative;
  overflow: visible;
  display: flex;
  flex-direction: column;
  min-height: 520px;
  padding: 16px;
  border-radius: 0;
  transform-style: preserve-3d;
  transition: transform 240ms ease, box-shadow 240ms ease;
}

.app-card::before,
.client-card::before {
  position: absolute;
  top: -30px;
  right: -24px;
  z-index: 5;
  width: 86px;
  height: 86px;
  background-image: url("data:image/svg+xml,%3Csvg width='96' height='96' viewBox='0 0 96 96' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M61.9 19.5C69.8 27.4 69.8 40.2 61.9 48.1L34.4 75.6C28.8 81.2 19.7 81.2 14.1 75.6C8.5 70 8.5 60.9 14.1 55.3L48.8 20.6C51.7 17.7 56.3 17.7 59.2 20.6C62.1 23.5 62.1 28.1 59.2 31L27 63.2C25.8 64.4 23.9 64.4 22.7 63.2C21.5 62 21.5 60.1 22.7 58.9L54.6 27' stroke='%2317110E' stroke-width='5.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  filter: drop-shadow(0 10px 12px rgba(23, 17, 14, 0.18));
  pointer-events: none;
  transform: rotate(11deg);
}

.app-card:nth-child(2)::before,
.client-card:nth-child(2)::before {
  transform: rotate(-8deg);
}

.app-card:nth-child(3)::before,
.client-card:nth-child(3)::before {
  transform: rotate(7deg);
}

.app-card:hover,
.client-card:hover {
  box-shadow: 0 24px 70px rgba(49, 39, 31, 0.14);
}

.app-card[data-coming-soon] {
  cursor: pointer;
}

.app-card > *,
.client-card > * {
  position: relative;
  z-index: 2;
}

.app-image,
.screenshot {
  overflow: hidden;
  min-height: 210px;
  border-radius: 0;
  background-position: center;
  background-size: cover;
}

.app-image img {
  display: block;
  width: 100%;
  height: 210px;
  object-fit: cover;
  object-position: center;
}

.app-image.maps img {
  object-position: left center;
}

.app-image.rise {
  background-image:
    linear-gradient(rgba(33, 25, 21, 0.08), rgba(33, 25, 21, 0.08)),
    url("Assets/comming soon.webp");
}

.app-image.kaam {
  background-image:
    linear-gradient(rgba(33, 25, 21, 0.08), rgba(33, 25, 21, 0.08)),
    url("Assets/comming soon.webp");
}

.app-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 22px 6px 4px;
}

.app-index {
  color: var(--accent);
  font-family: var(--serif);
  font-size: 1.05rem;
  font-style: italic;
}

.app-card strong,
.client-card strong {
  display: block;
  margin-bottom: 18px;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.app-card a,
.client-card a {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  align-self: flex-start;
  margin-top: auto;
  padding: 8px 8px 8px 15px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(180deg, #3f3a35, #0f0d0c);
  font-size: 0.82rem;
  font-weight: 800;
}

.app-card a span,
.client-card a span {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: #17110e;
}

.screenshot {
  display: grid;
  place-items: center;
  border: 1px solid rgba(33, 25, 21, 0.1);
  background: rgba(255, 255, 255, 0.38);
}

.screenshot img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: top center;
}

.client-card p {
  margin-bottom: 0;
}

.client-note {
  max-width: 820px;
  margin: 34px auto 0;
  color: #4c4038;
  font-size: clamp(1rem, 1.7vw, 1.2rem);
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
}

.contact-card {
  position: relative;
  overflow: visible;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.9fr);
  gap: clamp(44px, 5vw, 72px);
  align-items: stretch;
  padding: 0;
  border-radius: 0;
}

.contact-card::before {
  position: absolute;
  top: -30px;
  right: -24px;
  z-index: 5;
  width: 86px;
  height: 86px;
  background-image: url("data:image/svg+xml,%3Csvg width='96' height='96' viewBox='0 0 96 96' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M61.9 19.5C69.8 27.4 69.8 40.2 61.9 48.1L34.4 75.6C28.8 81.2 19.7 81.2 14.1 75.6C8.5 70 8.5 60.9 14.1 55.3L48.8 20.6C51.7 17.7 56.3 17.7 59.2 20.6C62.1 23.5 62.1 28.1 59.2 31L27 63.2C25.8 64.4 23.9 64.4 22.7 63.2C21.5 62 21.5 60.1 22.7 58.9L54.6 27' stroke='%2317110E' stroke-width='5.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  filter: drop-shadow(0 10px 12px rgba(23, 17, 14, 0.18));
  pointer-events: none;
  transform: rotate(11deg);
}

.contact-heading {
  max-width: min(1180px, 100%);
}

.contact-heading h2 {
  white-space: nowrap;
}

.contact-heading .section-intro {
  max-width: 980px;
  margin-top: 18px;
  font-size: clamp(1.08rem, 2vw, 1.32rem);
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  text-wrap: balance;
}

.contact-image-placeholder {
  display: block;
  width: 106%;
  height: 100%;
  min-height: 520px;
  border: 0;
  background: transparent;
  object-fit: cover;
  object-position: center;
}

.socials {
  margin-top: 28px;
}

.socials a {
  padding: 9px 14px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  background: linear-gradient(180deg, #3f3a35, #0f0d0c);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 800;
  transition: transform 220ms ease, background 220ms ease;
}

.socials a:hover {
  background: linear-gradient(180deg, #514b45, #171412);
  transform: translateY(-2px);
}

.contact-form {
  display: grid;
  justify-self: end;
  width: min(100%, 720px);
  gap: 14px;
  padding: clamp(24px, 4vw, 44px);
  border: 1px solid rgba(23, 17, 14, 0.18);
  background: rgba(255, 246, 232, 0.42);
  backdrop-filter: blur(12px);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: #433832;
  font-size: 0.88rem;
  font-weight: 900;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(33, 25, 21, 0.24);
  border-radius: 0;
  background: rgba(255, 246, 232, 0.34);
  color: var(--ink);
  outline: none;
  padding: 15px 16px;
  resize: vertical;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(56, 27, 0, 0.46);
  box-shadow: 0 0 0 4px rgba(231, 161, 94, 0.16);
}

.contact-form button {
  width: fit-content;
  cursor: pointer;
}

.contact-form button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--accent);
  font-size: 0.9rem;
  font-weight: 800;
}

.site-footer {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 44px 0 46px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
  text-align: center;
}

.site-footer strong {
  display: block;
  margin-bottom: 12px;
  color: #17110e;
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 500;
}

.site-footer p {
  max-width: 720px;
  margin: 0 auto 10px;
  line-height: 1.6;
}

.product-page {
  background:
    radial-gradient(circle at 14% 8%, rgba(255, 246, 232, 0.66), transparent 28%),
    radial-gradient(circle at 84% 18%, rgba(23, 17, 14, 0.14), transparent 32%),
    #ddd5cb;
}

.product-nav {
  margin-bottom: 0;
}

.maps-guardian-page {
  background:
    radial-gradient(circle at 16% 6%, rgba(255, 246, 232, 0.74), transparent 30%),
    radial-gradient(circle at 88% 14%, rgba(141, 168, 137, 0.34), transparent 28%),
    linear-gradient(180deg, #ddd5cb 0%, #e5ded3 52%, #ddd5cb 100%);
}

.product-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.75fr);
  gap: clamp(28px, 7vw, 90px);
  align-items: center;
  min-height: calc(100vh - 110px);
  padding: 92px 0 72px;
}

.maps-hero {
  min-height: calc(100vh - 94px);
  padding-top: 34px;
}

.product-hero h1,
.policy-page h1 {
  max-width: none;
  font-size: clamp(4.2rem, 11vw, 10rem);
}

.product-lede {
  max-width: 680px;
  color: #4c4038;
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  line-height: 1.6;
}

.maps-hero .hero-belief {
  max-width: 620px;
  margin-bottom: 28px;
}

.premium-phone-stack {
  position: relative;
  display: grid;
  place-items: center;
}

.poster-showcase {
  width: min(520px, 100%);
}

.poster-showcase::before,
.poster-showcase::after {
  display: none;
}

.poster-showcase img {
  display: block;
  width: 100%;
  max-height: calc(100svh - 190px);
  height: auto;
  object-fit: contain;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  mix-blend-mode: multiply;
}

.premium-phone-stack::before,
.premium-phone-stack::after {
  position: absolute;
  z-index: 0;
  width: min(260px, 56vw);
  aspect-ratio: 0.56;
  border: 1px solid rgba(23, 17, 14, 0.16);
  border-radius: 38px;
  background: rgba(255, 246, 232, 0.34);
  content: "";
  transform: rotate(-9deg) translate(-52px, 20px);
}

.premium-phone-stack::after {
  transform: rotate(8deg) translate(54px, -10px);
}

.app-preview-phone {
  z-index: 1;
  width: min(350px, 100%);
  background:
    radial-gradient(circle at 68% 18%, rgba(141, 168, 137, 0.7), transparent 18%),
    linear-gradient(180deg, #34302b, #0f0d0c);
}

.preview-map-grid {
  position: absolute;
  inset: 58px 22px 150px;
  overflow: hidden;
  border: 1px solid rgba(255, 246, 232, 0.14);
  border-radius: 24px;
  background:
    linear-gradient(130deg, transparent 0 42%, rgba(231, 161, 94, 0.95) 42% 45%, transparent 45%),
    linear-gradient(42deg, transparent 0 58%, rgba(141, 168, 137, 0.84) 58% 61%, transparent 61%),
    repeating-linear-gradient(0deg, rgba(255, 246, 232, 0.08) 0 1px, transparent 1px 34px),
    repeating-linear-gradient(90deg, rgba(255, 246, 232, 0.06) 0 1px, transparent 1px 34px),
    #191714;
}

.preview-map-grid span {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #e7a15e;
  box-shadow: 0 0 22px rgba(231, 161, 94, 0.78);
}

.preview-map-grid span:nth-child(1) {
  top: 20%;
  left: 24%;
}

.preview-map-grid span:nth-child(2) {
  top: 52%;
  left: 58%;
}

.preview-map-grid span:nth-child(3) {
  right: 18%;
  bottom: 18%;
  background: #8da889;
  box-shadow: 0 0 22px rgba(141, 168, 137, 0.78);
}

.preview-route-panel {
  position: absolute;
  right: 18px;
  bottom: 26px;
  left: 18px;
  padding: 20px;
  border: 1px solid rgba(255, 246, 232, 0.18);
  border-radius: 26px;
  background: rgba(255, 246, 232, 0.12);
  color: #fff6e8;
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.preview-route-panel small,
.preview-route-panel strong,
.preview-route-panel span {
  display: block;
}

.preview-route-panel small {
  margin-bottom: 10px;
  color: rgba(255, 246, 232, 0.66);
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.preview-route-panel strong {
  font-size: 1.2rem;
}

.preview-route-panel span {
  margin-top: 8px;
  color: rgba(255, 246, 232, 0.72);
  font-size: 0.84rem;
  line-height: 1.45;
}

.phone-showcase {
  display: grid;
  place-items: center;
}

.phone-frame {
  position: relative;
  width: min(330px, 100%);
  aspect-ratio: 0.52;
  padding: 18px;
  border: 10px solid #17110e;
  border-radius: 42px;
  background:
    radial-gradient(circle at 72% 18%, rgba(122, 159, 183, 0.7), transparent 18%),
    linear-gradient(180deg, #2f2a25, #0f0d0c);
  box-shadow: 0 34px 80px rgba(23, 17, 14, 0.24);
}

.phone-dot {
  position: absolute;
  top: 14px;
  left: 50%;
  width: 74px;
  height: 18px;
  border-radius: 999px;
  background: #070605;
  transform: translateX(-50%);
}

.phone-map {
  position: absolute;
  inset: 58px 22px 118px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(90deg, transparent 49%, rgba(231, 161, 94, 0.9) 50%, transparent 52%),
    repeating-linear-gradient(35deg, rgba(255, 255, 255, 0.08) 0 2px, transparent 2px 34px),
    #1a1816;
}

.phone-map i {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #e7a15e;
  box-shadow: 0 0 24px #e7a15e;
}

.phone-map i:nth-child(1) {
  top: 18%;
  left: 58%;
}

.phone-map i:nth-child(2) {
  top: 48%;
  left: 44%;
}

.phone-map i:nth-child(3) {
  right: 24%;
  bottom: 18%;
}

.route-card {
  position: absolute;
  right: 18px;
  bottom: 26px;
  left: 18px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 246, 232, 0.12);
  color: #fff6e8;
  backdrop-filter: blur(14px);
}

.route-card strong,
.route-card span {
  display: block;
}

.route-card span {
  margin-top: 6px;
  color: rgba(255, 246, 232, 0.7);
  font-size: 0.82rem;
}

.product-section {
  padding: 48px 0;
}

.maps-guardian-page .product-section + .product-section {
  padding-top: 28px;
}

.split-section {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 38px);
  align-items: stretch;
}

.split-section > .glass-panel {
  display: flex;
  min-height: 460px;
  flex-direction: column;
  justify-content: center;
}

.product-heading-left {
  margin: 0;
  text-align: left;
}

.product-copy p,
.glass-panel p,
.feature-card p,
.faq-list p,
.product-final p {
  color: #5c524b;
  line-height: 1.66;
}

.glass-panel,
.mini-card,
.feature-card,
.audience-grid article,
.mock-screen,
.why-card,
.faq-list details,
.product-final {
  border: 1px solid rgba(23, 17, 14, 0.18);
  background: rgba(255, 246, 232, 0.44);
  backdrop-filter: blur(12px);
  box-shadow: 0 24px 70px rgba(49, 39, 31, 0.1);
}

.glass-panel {
  padding: clamp(24px, 4vw, 44px);
}

.refined-panel {
  border-radius: 8px;
  background: rgba(255, 246, 232, 0.54);
}

.why-wide-panel {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(28px, 6vw, 88px);
  align-items: center;
  min-height: 360px;
  padding: clamp(34px, 5vw, 70px);
}

.why-wide-panel .section-heading {
  margin: 0;
}

.why-wide-panel h2 {
  margin-bottom: 0;
}

.why-wide-panel .product-copy {
  max-width: 760px;
}

.why-wide-panel .product-copy p {
  font-size: clamp(1.08rem, 1.8vw, 1.35rem);
  font-weight: 700;
}

.why-wide-panel .product-copy p:last-child {
  margin-bottom: 0;
}

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

.preference-card {
  position: relative;
  min-height: 320px;
  padding: 26px;
  border: 1px solid rgba(23, 17, 14, 0.16);
  border-radius: 8px;
  background: rgba(255, 246, 232, 0.44);
  box-shadow: 0 24px 70px rgba(49, 39, 31, 0.08);
  transition: transform 220ms ease, box-shadow 220ms ease;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.preference-card::before {
  position: absolute;
  top: -28px;
  right: -22px;
  z-index: 2;
  width: 78px;
  height: 78px;
  background-image: url("data:image/svg+xml,%3Csvg width='96' height='96' viewBox='0 0 96 96' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M61.9 19.5C69.8 27.4 69.8 40.2 61.9 48.1L34.4 75.6C28.8 81.2 19.7 81.2 14.1 75.6C8.5 70 8.5 60.9 14.1 55.3L48.8 20.6C51.7 17.7 56.3 17.7 59.2 20.6C62.1 23.5 62.1 28.1 59.2 31L27 63.2C25.8 64.4 23.9 64.4 22.7 63.2C21.5 62 21.5 60.1 22.7 58.9L54.6 27' stroke='%2317110E' stroke-width='5.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  filter: drop-shadow(0 10px 12px rgba(23, 17, 14, 0.18));
  pointer-events: none;
  transform: rotate(11deg);
}

.preference-card:nth-child(even)::before {
  transform: rotate(-8deg);
}

.preference-card:nth-child(3n)::before {
  transform: rotate(7deg);
}

.preference-card:hover {
  box-shadow: 0 30px 80px rgba(49, 39, 31, 0.13);
  transform: translateY(-6px);
}

.preference-card span {
  display: block;
  margin-bottom: 28px;
  color: #17110e;
  font-family: var(--serif);
  font-size: 1.2rem;
  font-style: italic;
}

.preference-card h3 {
  margin-bottom: 14px;
  font-size: clamp(1.35rem, 2.4vw, 2.1rem);
  line-height: 1;
}

.preference-card p {
  margin-bottom: 0;
  color: #5c524b;
  line-height: 1.62;
}

.steps-row {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0;
  align-items: start;
  padding: 26px 0 8px;
}

.steps-row::before {
  position: absolute;
  top: 45px;
  right: 8.5%;
  left: 8.5%;
  height: 2px;
  background: rgba(23, 17, 14, 0.28);
  content: "";
}

.steps-row article {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 150px;
  padding: 0 16px;
  border: 0;
  border-radius: 0;
  background: transparent;
  text-align: center;
}

.steps-row span {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 38px;
  border: 8px solid #ddd5cb;
  border-radius: 50%;
  background: #17110e;
  color: #fff6e8;
  font-family: var(--serif);
  font-size: 1.32rem;
  box-shadow: 0 12px 28px rgba(23, 17, 14, 0.16);
}

.steps-row strong {
  display: block;
  max-width: 170px;
  color: #17110e;
  font-size: clamp(0.98rem, 1.35vw, 1.12rem);
  line-height: 1.35;
}

.problem-grid,
.feature-grid,
.audience-grid,
.screenshot-showcase,
.comparison-grid {
  display: grid;
  gap: 18px;
}

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

.mini-card {
  min-height: 150px;
  display: grid;
  place-items: center;
  padding: 22px;
  color: #17110e;
  font-weight: 900;
  text-align: center;
  transition: transform 220ms ease;
}

.mini-card:hover,
.feature-card:hover,
.audience-grid article:hover,
.mock-screen:hover {
  transform: translateY(-6px);
}

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

.feature-card {
  min-height: 280px;
  padding: 24px;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.feature-card span {
  display: block;
  margin-bottom: 24px;
  color: #17110e;
  font-family: var(--serif);
  font-size: 1.2rem;
  font-style: italic;
}

.feature-card h3 {
  margin-bottom: 14px;
  font-size: clamp(1.45rem, 2.5vw, 2.25rem);
  line-height: 1;
}

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

.audience-grid article {
  position: relative;
  min-height: 170px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  justify-content: flex-start;
  padding: 22px;
  transition: transform 220ms ease;
}

.audience-grid article::before {
  position: absolute;
  top: -28px;
  right: -22px;
  z-index: 2;
  width: 78px;
  height: 78px;
  background-image: url("data:image/svg+xml,%3Csvg width='96' height='96' viewBox='0 0 96 96' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M61.9 19.5C69.8 27.4 69.8 40.2 61.9 48.1L34.4 75.6C28.8 81.2 19.7 81.2 14.1 75.6C8.5 70 8.5 60.9 14.1 55.3L48.8 20.6C51.7 17.7 56.3 17.7 59.2 20.6C62.1 23.5 62.1 28.1 59.2 31L27 63.2C25.8 64.4 23.9 64.4 22.7 63.2C21.5 62 21.5 60.1 22.7 58.9L54.6 27' stroke='%2317110E' stroke-width='5.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  filter: drop-shadow(0 10px 12px rgba(23, 17, 14, 0.18));
  pointer-events: none;
  transform: rotate(11deg);
}

.audience-grid article:nth-child(even)::before {
  transform: rotate(-8deg);
}

.audience-grid article:nth-child(3n)::before {
  transform: rotate(7deg);
}

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

.audience-grid strong {
  color: #17110e;
  font-size: 1.08rem;
}

.audience-grid span {
  color: #5c524b;
  line-height: 1.5;
}

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

.premium-screens {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.real-screens {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 22px);
  align-items: start;
}

.screenshot-image-card {
  position: relative;
  overflow: hidden;
  width: min(100%, 380px);
  justify-self: center;
  border-radius: 28px;
  background: #17110e;
  box-shadow: 0 24px 70px rgba(49, 39, 31, 0.18);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.screenshot-image-card:hover {
  box-shadow: 0 30px 80px rgba(49, 39, 31, 0.24);
  transform: translateY(-6px);
}

.screenshot-image-card span {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 246, 232, 0.22);
  border-radius: 50%;
  background: rgba(23, 17, 14, 0.72);
  color: #fff6e8;
  font-size: 0.8rem;
  font-weight: 900;
}

.screenshot-image-card img {
  display: block;
  width: 100%;
  height: auto;
}

.mock-screen {
  position: relative;
  display: grid;
  min-height: 360px;
  place-items: end center;
  overflow: hidden;
  padding: 18px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 50% 18%, rgba(231, 161, 94, 0.42), transparent 28%),
    linear-gradient(180deg, #2f2a25, #0f0d0c);
  color: #fff6e8;
  transition: transform 220ms ease;
}

.premium-screens .mock-screen {
  min-height: 470px;
  align-items: stretch;
  padding: 18px;
  border: 9px solid #17110e;
  border-radius: 34px;
  box-shadow: 0 24px 70px rgba(49, 39, 31, 0.16);
}

.mock-screen::before {
  position: absolute;
  top: 14px;
  left: 50%;
  width: 42px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 246, 232, 0.72);
  content: "";
  transform: translateX(-50%);
}

.premium-screens .mock-screen::before {
  top: 16px;
  z-index: 3;
  width: 54px;
  height: 10px;
  background: rgba(7, 6, 5, 0.86);
}

.screen-content {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 100%;
  flex-direction: column;
  gap: 12px;
  justify-content: flex-start;
  padding: 56px 14px 58px;
  color: #fff6e8;
}

.screen-content small {
  color: rgba(255, 246, 232, 0.66);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.screen-content strong {
  display: block;
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  line-height: 1.05;
}

.screen-content em,
.search-bar {
  display: block;
  padding: 12px 13px;
  border: 1px solid rgba(255, 246, 232, 0.14);
  border-radius: 16px;
  background: rgba(255, 246, 232, 0.1);
  color: rgba(255, 246, 232, 0.82);
  font-size: 0.76rem;
  font-style: normal;
  font-weight: 800;
}

.route-line {
  display: block;
  flex: 1;
  min-height: 160px;
  border-radius: 20px;
  background:
    linear-gradient(120deg, transparent 0 34%, rgba(231, 161, 94, 0.95) 34% 37%, transparent 37%),
    linear-gradient(32deg, transparent 0 58%, rgba(141, 168, 137, 0.9) 58% 62%, transparent 62%),
    repeating-linear-gradient(0deg, rgba(255, 246, 232, 0.06) 0 1px, transparent 1px 24px),
    repeating-linear-gradient(90deg, rgba(255, 246, 232, 0.05) 0 1px, transparent 1px 24px),
    rgba(255, 246, 232, 0.06);
}

.screen-home {
  background:
    radial-gradient(circle at 80% 12%, rgba(141, 168, 137, 0.76), transparent 24%),
    linear-gradient(180deg, #38342f, #11100e);
}

.screen-preferences {
  background:
    radial-gradient(circle at 18% 18%, rgba(231, 161, 94, 0.56), transparent 28%),
    linear-gradient(180deg, #332f2b, #100e0d);
}

.screen-routes,
.screen-navigation {
  background:
    linear-gradient(132deg, transparent 0 40%, rgba(231, 161, 94, 0.92) 40% 42%, transparent 42%),
    repeating-linear-gradient(30deg, rgba(255, 246, 232, 0.07) 0 2px, transparent 2px 36px),
    linear-gradient(180deg, #302c28, #0f0d0c);
}

.screen-night {
  background:
    radial-gradient(circle at 74% 20%, rgba(122, 159, 183, 0.62), transparent 24%),
    linear-gradient(180deg, #272a2a, #0d0d0c);
}

.screen-clean {
  background:
    radial-gradient(circle at 28% 18%, rgba(141, 168, 137, 0.76), transparent 24%),
    linear-gradient(180deg, #2f352e, #0f0d0c);
}

.screen-vehicle,
.screen-settings {
  background:
    radial-gradient(circle at 68% 18%, rgba(255, 246, 232, 0.2), transparent 26%),
    linear-gradient(180deg, #34302b, #0f0d0c);
}

.mock-screen span {
  position: relative;
  z-index: 1;
  font-size: 0.8rem;
  font-weight: 900;
  text-align: center;
}

.premium-screens .mock-screen > span {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  color: #fff6e8;
}

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

.why-card {
  padding: clamp(26px, 5vw, 56px);
}

.comparison-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 28px;
}

.comparison-grid article {
  padding: 26px;
  background: rgba(23, 17, 14, 0.06);
}

.comparison-grid span {
  display: block;
  margin-bottom: 12px;
  color: #5c524b;
  font-weight: 800;
}

.comparison-grid strong {
  display: block;
  color: #17110e;
  font-size: clamp(1.35rem, 3vw, 2.6rem);
  line-height: 1;
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 920px;
  margin: 0 auto;
}

.faq-list details {
  padding: 20px 24px;
}

.faq-list summary {
  cursor: pointer;
  color: #17110e;
  font-weight: 900;
}

.faq-list p {
  margin: 14px 0 0;
}

.product-final {
  margin-top: 0;
  padding: clamp(46px, 6vw, 86px) clamp(26px, 5vw, 70px);
  text-align: center;
}

.final-notice {
  max-width: 1040px;
  margin: 0 auto clamp(30px, 4.5vw, 48px);
  padding-bottom: clamp(26px, 4vw, 38px);
  border-bottom: 1px solid rgba(23, 17, 14, 0.14);
}

.final-notice p:last-child {
  margin-bottom: 0;
  color: #5c524b;
  font-size: clamp(1.02rem, 1.6vw, 1.22rem);
  font-weight: 700;
  line-height: 1.65;
}

.final-cta {
  display: grid;
  justify-items: center;
}

.product-final h2 {
  white-space: nowrap;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 22px;
  background: rgba(23, 17, 14, 0.38);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.modal-backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}

.coming-soon-modal {
  position: relative;
  width: min(560px, 100%);
  padding: clamp(28px, 5vw, 48px);
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 246, 232, 0.78), rgba(255, 255, 255, 0.4)),
    rgba(255, 246, 232, 0.48);
  box-shadow: 0 34px 90px rgba(23, 17, 14, 0.24);
  transform: translateY(18px) scale(0.96);
  transition: transform 220ms ease;
  -webkit-backdrop-filter: blur(22px) saturate(140%);
  backdrop-filter: blur(22px) saturate(140%);
}

.modal-backdrop.is-open .coming-soon-modal {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(23, 17, 14, 0.18);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.42);
  cursor: pointer;
  font-size: 1.3rem;
}

.coming-soon-modal h2 {
  margin-bottom: 16px;
  font-size: clamp(2.6rem, 7vw, 5rem);
}

.coming-soon-modal strong {
  display: block;
  margin-bottom: 14px;
  color: #17110e;
  font-size: clamp(1.05rem, 2vw, 1.26rem);
  font-weight: 900;
}

.coming-soon-modal p:not(.app-index) {
  margin-bottom: 24px;
  color: #4c4038;
  font-size: clamp(1rem, 1.7vw, 1.12rem);
  line-height: 1.62;
}

.policy-page {
  padding: 100px 0 80px;
}

.policy-page h2 {
  margin-top: 28px;
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.legal-document {
  width: 100%;
  margin: 0;
  color: #4c4038;
}

.legal-document h1 {
  max-width: none;
  margin-bottom: 18px;
}

.legal-document h2 {
  padding-top: 24px;
  border-top: 1px solid rgba(23, 17, 14, 0.12);
}

.legal-document h3 {
  margin: 26px 0 10px;
  color: #17110e;
  font-size: clamp(1.16rem, 2vw, 1.42rem);
  line-height: 1.2;
}

.legal-document p,
.legal-document li {
  color: #5c524b;
  font-size: 1rem;
  line-height: 1.72;
}

.legal-document ul {
  margin: 12px 0 22px;
  padding-left: 22px;
}

.legal-document a {
  color: #17110e;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.legal-document .legal-contact-button {
  margin-top: 12px;
  color: #fff;
  text-decoration: none;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .story-layout,
  .contact-card,
  .product-hero,
  .split-section,
  .why-wide-panel {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 100svh;
    margin-top: -78px;
    padding-top: 140px;
  }

  .hero-copy {
    width: min(560px, 58vw);
  }

  .hero h1 {
    font-size: clamp(4.2rem, 10.5vw, 6.2rem);
  }

  .story-image-holder {
    width: min(500px, 100%);
    min-height: auto;
  }

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

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

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

  .preference-grid,
  .premium-screens,
  .premium-audience {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .steps-row::before {
    right: 16%;
    left: 16%;
  }

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

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

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

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

  .product-heading-left {
    text-align: center;
  }

  .why-wide-panel .product-copy {
    max-width: none;
  }
}

@media (max-width: 720px) {
  html,
  body {
    width: 100%;
    overflow-x: clip;
  }

  .site-header {
    top: 10px;
    width: min(100% - 20px, 1180px);
  }

  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    display: none;
    width: min(290px, calc(100vw - 32px));
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(238, 233, 224, 0.92);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
  }

  .nav-links.is-open {
    display: grid;
  }

  .nav-links a {
    padding: 14px;
  }

  .section-shell,
  .site-footer {
    width: min(100% - 22px, 1180px);
  }

  .hero {
    align-items: center;
    justify-content: center;
    flex-direction: column;
    min-height: 100svh;
    width: 100%;
    overflow: hidden;
    margin-top: -76px;
    padding-top: 92px;
    padding-bottom: 92px;
  }

  h1 {
    font-size: clamp(3.2rem, 15vw, 4.8rem);
  }

  .hero-copy {
    width: min(100%, 520px);
  }

  .hero h1 {
    font-size: clamp(3.3rem, 15.5vw, 4.8rem);
  }

  .products-heading h2 {
    white-space: normal;
  }

  .products-heading .section-intro {
    white-space: normal;
  }

  .contact-heading h2 {
    white-space: normal;
  }

  .hero-stats,
  .app-grid,
  .client-grid,
  .problem-grid,
  .feature-grid,
  .preference-grid,
  .steps-row,
  .audience-grid,
  .premium-audience,
  .comparison-grid,
  .screenshot-showcase,
  .premium-screens {
    grid-template-columns: 1fr;
  }

  .product-hero {
    padding-top: 58px;
  }

  .maps-hero {
    padding-top: 28px;
  }

  .product-hero h1,
  .policy-page h1 {
    font-size: clamp(4rem, 18vw, 6rem);
  }

  .phone-frame {
    width: min(290px, 100%);
  }

  .mock-screen {
    min-height: 300px;
  }

  .premium-screens .mock-screen {
    min-height: 430px;
    width: min(100%, 310px);
    justify-self: center;
  }

  .screenshot-showcase.real-screens {
    grid-template-columns: 1fr;
  }

  .screenshot-image-card {
    width: min(100%, 310px);
  }

  .preference-card {
    min-height: auto;
  }

  .steps-row article {
    min-height: 110px;
  }

  .steps-row::before {
    display: none;
  }

  .steps-row article {
    align-items: flex-start;
    min-height: auto;
    padding: 0 0 24px 54px;
    text-align: left;
  }

  .steps-row article::before {
    position: absolute;
    top: 26px;
    bottom: -2px;
    left: 26px;
    width: 2px;
    background: rgba(23, 17, 14, 0.22);
    content: "";
  }

  .steps-row article:last-child::before {
    display: none;
  }

  .steps-row span {
    position: absolute;
    top: 0;
    left: 0;
    width: 52px;
    height: 52px;
    margin: 0;
    border-width: 7px;
  }

  .steps-row strong {
    min-height: 52px;
    display: flex;
    align-items: center;
  }

  .product-final h2,
  .contact-heading h2,
  .products-heading h2 {
    white-space: normal;
  }

  .app-card,
  .client-card {
    min-height: auto;
  }

  .app-image,
  .screenshot {
    min-height: 190px;
  }

  .app-image img {
    height: 190px;
  }

  .contact-image-placeholder {
    min-height: 280px;
  }

  .spline-frame {
    inset: 0;
    transform: none;
  }

  .spline-frame spline-viewer {
    position: absolute;
    inset: 0;
    transform-origin: left center;
    transform: scale(1.45);
  }

  .story,
  .apps,
  .clients,
  .contact {
    padding: 48px 0;
  }

  .app-card,
  .contact-card {
    border-radius: 0;
  }

  .contact-form {
    justify-self: stretch;
    width: 100%;
  }

  .contact-form button {
    width: 100%;
  }
}

@keyframes preloaderFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@keyframes preloaderSlide {
  0% {
    transform: translateX(-110%);
  }

  100% {
    transform: translateX(230%);
  }
}

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

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
