:root {
  --rose: #b85c63;
  --rose-dark: #823d46;
  --teal: #1b998b;
  --gold: #d8a84f;
  --ink: #102f4a;
  --night: #10171d;
  --paper: #fbf7f1;
  --white: #ffffff;
  --shadow: 0 24px 80px rgba(16, 47, 74, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(145deg, rgba(184, 92, 99, 0.12), transparent 42%),
    linear-gradient(35deg, rgba(27, 153, 139, 0.12), transparent 44%),
    var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 18px;
  left: 50%;
  display: flex;
  width: min(1120px, calc(100% - 32px));
  transform: translateX(-50%);
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 50px rgba(16, 47, 74, 0.12);
  backdrop-filter: blur(22px);
}

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

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  box-shadow: 0 10px 22px rgba(27, 153, 139, 0.22);
}

.brand span {
  display: grid;
  line-height: 1;
}

.brand strong {
  font-size: 1.08rem;
  font-weight: 950;
}

.brand small {
  margin-top: 5px;
  color: var(--rose);
  font-size: 0.76rem;
  font-weight: 900;
}

nav {
  display: flex;
  gap: 4px;
}

nav a {
  border-radius: 999px;
  padding: 10px 13px;
  color: rgba(16, 47, 74, 0.78);
  font-size: 0.9rem;
  font-weight: 800;
  transition: background 0.25s ease, transform 0.25s ease;
}

nav a:hover {
  background: rgba(27, 153, 139, 0.1);
  transform: translateY(-1px);
}

.hero {
  position: relative;
  min-height: 92vh;
  overflow: hidden;
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(118deg, rgba(16, 47, 74, 0.99) 0%, rgba(16, 47, 74, 0.94) 46%, rgba(27, 153, 139, 0.68) 100%),
    linear-gradient(24deg, rgba(184, 92, 99, 0.44), transparent 56%),
    linear-gradient(165deg, transparent 40%, rgba(216, 168, 79, 0.24));
  transform: scale(1.02);
  animation: slow-zoom 28s ease-in-out infinite alternate;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 36%;
  background: linear-gradient(0deg, var(--paper), rgba(251, 247, 241, 0));
}

.hero-inner {
  display: grid;
  width: min(1120px, calc(100% - 40px));
  min-height: 92vh;
  margin: 0 auto;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 44px;
  align-items: center;
  padding: 116px 0 58px;
}

.hero-copy {
  color: var(--white);
  text-shadow: 0 18px 52px rgba(0, 0, 0, 0.25);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--rose);
}

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

h1 {
  width: min(680px, 100%);
  margin-bottom: 18px;
  font-size: clamp(3rem, 6.2vw, 5.15rem);
  line-height: 0.97;
  font-weight: 950;
  letter-spacing: 0;
  overflow-wrap: break-word;
}

.hero-copy p:not(.eyebrow) {
  width: min(650px, 100%);
  margin-bottom: 26px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  line-height: 1.6;
  font-weight: 650;
}

.hero-actions,
.trust-strip,
.store-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-actions {
  margin-bottom: 26px;
}

.button,
.launch-form button,
.store-button {
  min-height: 52px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 950;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
}

.button.primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--rose), var(--rose-dark));
  box-shadow: 0 18px 50px rgba(184, 92, 99, 0.36);
}

.button.secondary {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.58);
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(14px);
}

.button:hover,
.launch-form button:hover,
.store-button:hover {
  transform: translateY(-2px);
}

.trust-strip span {
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  padding: 9px 13px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.86rem;
  font-weight: 850;
  backdrop-filter: blur(16px);
}

.device-stage {
  position: relative;
  display: grid;
  width: min(390px, 100%);
  min-height: 520px;
  margin-left: auto;
  place-items: center;
}

.device-stage::before {
  content: "";
  position: absolute;
  inset: 40px 6px 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.04)),
    linear-gradient(135deg, rgba(184, 92, 99, 0.22), rgba(27, 153, 139, 0.2));
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px);
}

.phone {
  position: absolute;
  overflow: hidden;
  border: 8px solid #111820;
  border-radius: 34px;
  background: #111820;
  box-shadow: 0 34px 88px rgba(0, 0, 0, 0.38);
}

.phone-main {
  left: 22px;
  z-index: 2;
  width: 214px;
  aspect-ratio: 9 / 18.6;
  animation: float-device 8s ease-in-out infinite;
}

.phone-side {
  right: 18px;
  z-index: 1;
  width: 164px;
  aspect-ratio: 9 / 18.3;
  transform: translateY(44px) rotate(3deg);
  animation: float-device-side 9s ease-in-out 1s infinite;
}

.phone-top {
  position: absolute;
  top: 9px;
  left: 50%;
  z-index: 5;
  width: 68px;
  height: 18px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: #111820;
}

.app-screen {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 38px 14px 16px;
  border-radius: 24px;
  background: linear-gradient(180deg, #fbf7f1, #f4ece4 48%, #fffaf4);
  color: var(--ink);
}

.booking-screen {
  gap: 10px;
  padding-inline: 12px;
  background: linear-gradient(180deg, #102f4a, #13283d 54%, #0f171d);
  color: var(--white);
}

.app-bar {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 10px;
}

.app-bar strong {
  font-size: 1rem;
  font-weight: 950;
}

.app-bar span {
  border-radius: 999px;
  padding: 5px 8px;
  background: rgba(27, 153, 139, 0.13);
  color: var(--teal);
  font-size: 0.68rem;
  font-weight: 950;
}

.app-bar.compact strong {
  font-size: 0.9rem;
}

.app-bar.compact span {
  background: rgba(216, 168, 79, 0.18);
  color: var(--gold);
}

.map-preview {
  position: relative;
  min-height: 122px;
  overflow: hidden;
  border-radius: 22px;
  background:
    linear-gradient(90deg, rgba(16, 47, 74, 0.08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(16, 47, 74, 0.08) 1px, transparent 1px),
    linear-gradient(135deg, rgba(27, 153, 139, 0.16), rgba(184, 92, 99, 0.16));
  background-size: 28px 28px, 28px 28px, auto;
}

.route-line {
  position: absolute;
  inset: 52px 22px auto 24px;
  height: 4px;
  transform: rotate(-16deg);
  border-radius: 999px;
  background: linear-gradient(90deg, var(--rose), var(--teal), var(--gold));
}

.map-pin {
  position: absolute;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 3px solid var(--paper);
  border-radius: 999px;
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 950;
  box-shadow: 0 12px 24px rgba(16, 47, 74, 0.2);
}

.pin-one {
  left: 18px;
  top: 58px;
  background: var(--rose);
}

.pin-two {
  right: 34px;
  top: 30px;
  background: var(--teal);
}

.pin-three {
  right: 74px;
  bottom: 18px;
  background: var(--gold);
}

.profile-preview,
.chat-preview,
.safety-preview,
.payment-preview {
  border: 1px solid rgba(16, 47, 74, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 14px 32px rgba(16, 47, 74, 0.1);
}

.profile-preview {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 10px;
  align-items: center;
  padding: 12px;
}

.avatar-preview {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 16px;
  color: var(--white);
  background: linear-gradient(135deg, var(--rose), var(--rose-dark));
  font-weight: 950;
}

.profile-preview small,
.profile-preview strong,
.profile-preview p {
  display: block;
}

.profile-preview small {
  color: var(--teal);
  font-size: 0.68rem;
  font-weight: 950;
}

.profile-preview strong {
  margin-top: 2px;
  font-size: 1rem;
  font-weight: 950;
}

.profile-preview p {
  margin: 2px 0 0;
  color: rgba(16, 47, 74, 0.62);
  font-size: 0.72rem;
  font-weight: 850;
}

.swipe-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.swipe-preview span,
.swipe-preview strong {
  display: grid;
  min-height: 44px;
  place-items: center;
  border-radius: 999px;
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 950;
}

.swipe-preview span {
  background: var(--rose);
}

.swipe-preview strong {
  background: var(--teal);
}

.chat-preview {
  display: grid;
  gap: 8px;
  padding: 14px 10px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.chat-preview span,
.chat-preview strong {
  display: block;
  border-radius: 14px;
  padding: 10px;
  font-size: 0.7rem;
  line-height: 1.32;
}

.chat-preview span {
  margin-right: 18px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.84);
}

.chat-preview strong {
  margin-left: 18px;
  background: rgba(27, 153, 139, 0.82);
  color: var(--white);
  font-weight: 850;
}

.safety-preview {
  display: grid;
  gap: 8px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.safety-preview span,
.payment-preview {
  border-radius: 999px;
  padding: 8px 10px;
  background: rgba(216, 168, 79, 0.15);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.66rem;
  font-weight: 900;
}

.payment-preview {
  border: 0;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(184, 92, 99, 0.92), rgba(216, 168, 79, 0.78));
  box-shadow: none;
}

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

.split,
.experience,
.business-section,
.download {
  display: grid;
  gap: 44px;
}

.split {
  grid-template-columns: 0.95fr 1.05fr;
  align-items: start;
}

h2 {
  color: var(--ink);
  font-size: clamp(2rem, 4.6vw, 4.25rem);
  line-height: 1;
  font-weight: 950;
  letter-spacing: 0;
}

.intro p,
.experience-copy p,
.about-panel p,
.download p,
.business-copy p,
.role-card p {
  color: rgba(16, 47, 74, 0.72);
  font-size: 1.02rem;
  line-height: 1.75;
  font-weight: 580;
}

.metrics {
  display: grid;
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.metrics article,
.role-card,
.about-panel,
.launch-form {
  border: 1px solid rgba(16, 47, 74, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.metrics article {
  min-height: 145px;
  padding: 24px;
}

.metrics strong {
  display: block;
  color: var(--rose);
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1;
  font-weight: 950;
}

.metrics span {
  display: block;
  margin-top: 12px;
  color: rgba(16, 47, 74, 0.68);
  font-weight: 850;
}

.home-moments {
  padding-top: 86px;
}

.moment-grid,
.role-grid,
.safety-grid,
.revenue-grid {
  display: grid;
  gap: 16px;
}

.moment-grid {
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
}

.moment-card {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  border-radius: 26px;
  padding: 30px;
  color: var(--white);
  box-shadow: var(--shadow);
  isolation: isolate;
}

.moment-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: linear-gradient(135deg, rgba(16, 47, 74, 0.7), rgba(16, 47, 74, 0.16));
}

.moment-card::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -80px;
  z-index: -1;
  width: 220px;
  height: 220px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
}

.moment-1 {
  background: linear-gradient(135deg, rgba(184, 92, 99, 0.98), rgba(216, 168, 79, 0.82));
}

.moment-2 {
  background: linear-gradient(135deg, var(--teal), var(--ink));
}

.moment-3 {
  background: linear-gradient(135deg, var(--ink), var(--rose-dark));
}

.moment-card span {
  display: inline-grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.12);
  font-weight: 950;
}

.moment-card h3 {
  margin-top: 86px;
  margin-bottom: 12px;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  line-height: 1.02;
  font-weight: 950;
}

.moment-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.62;
  font-weight: 750;
}

.section-heading {
  width: min(840px, 100%);
  margin-bottom: 28px;
}

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

.role-card {
  position: relative;
  overflow: hidden;
  min-height: 315px;
  padding: 24px;
}

.role-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 7px;
  background: linear-gradient(90deg, var(--rose), var(--teal), var(--gold));
}

.role-card span {
  display: inline-grid;
  width: 54px;
  height: 54px;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 18px;
  color: var(--white);
  background: var(--ink);
  font-weight: 950;
}

.role-card h3 {
  margin-bottom: 12px;
  color: var(--ink);
  font-size: 1.35rem;
  font-weight: 950;
}

.experience {
  grid-template-columns: 0.88fr 1.12fr;
  align-items: center;
}

.swipe-showcase {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr) 82px;
  gap: 14px;
  align-items: center;
  min-height: 430px;
}

.swipe-button {
  display: grid;
  width: 78px;
  height: 78px;
  place-items: center;
  border-radius: 999px;
  color: var(--white);
  font-size: 0.86rem;
  font-weight: 950;
  box-shadow: 0 20px 50px rgba(16, 47, 74, 0.18);
}

.swipe-button.pass {
  background: var(--rose);
}

.swipe-button.book {
  background: var(--teal);
}

.worker-stack {
  position: relative;
  min-height: 390px;
}

.worker-card {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-rows: 1fr auto;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 34px;
  background: var(--white);
  box-shadow: 0 34px 90px rgba(16, 47, 74, 0.22);
}

.worker-card.active {
  z-index: 2;
  animation: card-breathe 7.5s ease-in-out infinite;
}

.worker-card.next {
  z-index: 1;
  transform: translate(18px, 18px) scale(0.94) rotate(4deg);
  opacity: 0.58;
}

.worker-card > div:last-child {
  padding: 20px;
}

.worker-card small {
  color: var(--rose);
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.worker-card h3 {
  margin: 8px 0;
  color: var(--ink);
  font-size: 2rem;
  font-weight: 950;
}

.worker-card p {
  margin: 0;
  color: rgba(16, 47, 74, 0.68);
  font-weight: 820;
}

.portrait {
  min-height: 245px;
  background:
    radial-gradient(circle at 50% 31%, rgba(255, 255, 255, 0.62) 0 9%, transparent 10%),
    linear-gradient(135deg, rgba(184, 92, 99, 0.9), rgba(216, 168, 79, 0.82));
}

.portrait-worker {
  background:
    radial-gradient(circle at 50% 31%, rgba(255, 255, 255, 0.62) 0 9%, transparent 10%),
    linear-gradient(135deg, rgba(27, 153, 139, 0.9), rgba(16, 47, 74, 0.86));
}

.safety-section,
.business-section {
  padding: 86px max(24px, calc((100vw - 1120px) / 2));
  background:
    linear-gradient(135deg, rgba(16, 47, 74, 0.97), rgba(16, 47, 74, 0.92)),
    radial-gradient(circle at 14% 18%, rgba(216, 168, 79, 0.24), transparent 28rem);
}

.business-section {
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  background: linear-gradient(135deg, rgba(184, 92, 99, 0.97), rgba(16, 47, 74, 0.95) 72%, rgba(27, 153, 139, 0.9));
}

.safety-section h2,
.business-section h2 {
  color: var(--white);
}

.business-copy p {
  color: rgba(255, 255, 255, 0.78);
}

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

.safety-grid article,
.revenue-grid article {
  display: flex;
  min-height: 120px;
  align-items: flex-start;
  gap: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.08);
}

.revenue-grid article {
  align-items: center;
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 900;
}

.safety-grid span {
  display: grid;
  flex: 0 0 34px;
  height: 34px;
  place-items: center;
  border-radius: 999px;
  color: var(--night);
  background: var(--gold);
  font-weight: 950;
}

.safety-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.55;
  font-weight: 780;
}

.about-panel {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 44px;
  align-items: center;
  padding: 42px;
}

.about-panel img {
  width: 240px;
}

.download {
  grid-template-columns: 1fr 390px;
  align-items: stretch;
  padding-top: 54px;
  padding-bottom: 88px;
}

.store-row {
  margin-top: 28px;
}

.store-button {
  display: grid;
  min-width: 210px;
  min-height: 82px;
  align-content: center;
  padding: 0 24px;
  color: var(--white);
  box-shadow: 0 24px 72px rgba(16, 47, 74, 0.18);
}

.store-button small {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.78rem;
  font-weight: 850;
}

.store-button strong {
  font-size: 1.6rem;
  line-height: 1.05;
  font-weight: 950;
}

.store-button.android {
  background: linear-gradient(135deg, var(--teal), #0f6f66);
}

.store-button.ios {
  background: linear-gradient(135deg, var(--ink), #05080c);
}

.download-note {
  width: min(620px, 100%);
  margin-top: 18px;
  border-left: 4px solid var(--gold);
  border-radius: 0 18px 18px 0;
  padding: 14px 16px;
  background: rgba(216, 168, 79, 0.12);
  color: rgba(16, 47, 74, 0.72);
  line-height: 1.55;
  font-weight: 760;
}

.download-note strong {
  color: var(--ink);
}

.launch-form {
  display: grid;
  gap: 14px;
  padding: 24px;
}

.launch-form h3 {
  margin-bottom: 2px;
  font-size: 1.55rem;
  font-weight: 950;
}

.launch-form label {
  display: grid;
  gap: 8px;
  color: rgba(16, 47, 74, 0.74);
  font-size: 0.86rem;
  font-weight: 900;
}

.launch-form input,
.launch-form select {
  width: 100%;
  min-height: 50px;
  border: 1px solid rgba(16, 47, 74, 0.13);
  border-radius: 16px;
  padding: 0 14px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--ink);
  outline: none;
}

.launch-form input:focus,
.launch-form select:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(27, 153, 139, 0.12);
}

.launch-form button {
  color: var(--white);
  background: linear-gradient(135deg, var(--rose), var(--rose-dark));
  box-shadow: 0 16px 40px rgba(184, 92, 99, 0.24);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 28px max(24px, calc((100vw - 1120px) / 2));
  color: rgba(255, 255, 255, 0.78);
  background: var(--night);
  font-weight: 760;
}

.site-footer a {
  color: var(--gold);
  font-weight: 950;
}

@keyframes slow-zoom {
  from {
    transform: scale(1.02);
  }
  to {
    transform: scale(1.055);
  }
}

@keyframes float-device {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -9px;
  }
}

@keyframes float-device-side {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -7px;
  }
}

@keyframes card-breathe {
  0%,
  100% {
    transform: translateX(0) rotate(-1deg);
  }
  50% {
    transform: translateX(5px) rotate(0.5deg);
  }
}

@media (max-width: 980px) {
  .site-header {
    top: 10px;
    width: calc(100% - 20px);
  }

  nav {
    display: none;
  }

  .hero-inner,
  .split,
  .experience,
  .about-panel,
  .business-section,
  .download {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    padding-bottom: 76px;
  }

  .device-stage {
    width: min(360px, 100%);
    min-height: 470px;
    margin: 0 auto;
  }

  .phone-main {
    left: 12px;
    width: 188px;
  }

  .phone-side {
    right: 10px;
    width: 144px;
    transform: translateY(40px) rotate(3deg);
  }

  .metrics,
  .role-grid,
  .safety-grid,
  .revenue-grid,
  .moment-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .moment-1 {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .hero-inner {
    width: calc(100% - 28px);
  }

  h1 {
    width: 100%;
    max-width: 100%;
    font-size: clamp(2.25rem, 10.4vw, 3.05rem);
    line-height: 1.02;
  }

  .hero-copy p:not(.eyebrow) {
    font-size: 1rem;
  }

  .device-stage {
    width: min(330px, 100%);
    min-height: 405px;
    margin-top: 22px;
    overflow: visible;
    padding-bottom: 0;
  }

  .phone-main {
    left: 8px;
    width: 168px;
  }

  .phone-side {
    right: 8px;
    width: 128px;
    transform: translateY(34px) rotate(3deg);
  }

  .app-screen {
    gap: 9px;
    padding: 34px 11px 12px;
  }

  .map-preview {
    min-height: 98px;
  }

  .profile-preview {
    grid-template-columns: 40px 1fr;
    gap: 8px;
    padding: 10px;
  }

  .avatar-preview {
    width: 40px;
    height: 40px;
    border-radius: 14px;
  }

  .swipe-preview span,
  .swipe-preview strong {
    min-height: 38px;
  }

  .button,
  .store-button {
    width: 100%;
  }

  .trust-strip span {
    font-size: 0.78rem;
  }

  .section {
    width: min(100% - 24px, 1120px);
    padding: 50px 0;
  }

  .metrics,
  .role-grid,
  .safety-grid,
  .revenue-grid,
  .moment-grid {
    grid-template-columns: 1fr;
  }

  .moment-1 {
    grid-column: auto;
  }

  .metrics article,
  .role-card,
  .safety-grid article {
    min-height: auto;
  }

  .swipe-showcase {
    grid-template-columns: 1fr 1fr;
    min-height: 490px;
  }

  .worker-stack {
    grid-column: 1 / -1;
    min-height: 360px;
    order: -1;
  }

  .swipe-button {
    width: 100%;
    height: 56px;
  }

  .about-panel,
  .launch-form {
    padding: 22px;
  }

  .site-footer {
    display: grid;
    font-size: 0.9rem;
  }
}

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