:root {
  --bg: #f7f6f3;
  --surface: #ffffff;
  --surface-soft: #efede8;
  --text: #141414;
  --muted: #575757;
  --line: rgba(20, 20, 20, 0.08);
  --accent: #ff6a00;
  --accent-soft: #fff1e7;
  --black: #111111;
  --radius-xl: 32px;
  --radius-lg: 28px;
  --radius-md: 18px;
  --shadow: 0 18px 44px rgba(17, 17, 17, 0.05);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  overflow-x: hidden;
  background:
    radial-gradient(circle at top right, rgba(255, 106, 0, 0.08), transparent 24%),
    linear-gradient(180deg, #fff 0%, var(--bg) 100%);
}

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

img {
  max-width: 100%;
}

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

.site-shell {
  min-height: 100vh;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0 14px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  box-shadow: 0 10px 24px rgba(255, 106, 0, 0.22);
}

.topnav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--muted);
  font-weight: 600;
}

.hero {
  padding: 24px 0 52px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items: center;
}

.hero-grid > * {
  min-width: 0;
}

.hero-copy h1,
.section-head h2,
.cta-card h2,
.split-grid h2 {
  margin: 0;
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.hero-copy h1 {
  font-size: clamp(2.6rem, 6vw, 5.4rem);
  max-width: 12ch;
}

.lead,
.section-text,
.hero-note {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.lead {
  max-width: 62ch;
  margin: 22px 0 0;
}

.section-intro {
  max-width: 62ch;
  margin: 0 0 22px;
}

.hero-note {
  margin-top: 16px;
  font-size: 0.95rem;
}

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

.hero-actions,
.section-head {
  margin-top: 28px;
}

.section-head {
  margin-bottom: 22px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  min-width: 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

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

.button-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 14px 28px rgba(255, 106, 0, 0.22);
}

.button-secondary {
  background: rgba(20, 20, 20, 0.06);
  color: var(--text);
}

.store-actions {
  margin-top: 12px;
}

.button-store {
  font-weight: 500;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 22px;
}

.hero-stat {
  min-width: 210px;
  padding: 18px 20px;
  border-radius: 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero-stat-label {
  display: block;
  color: var(--muted);
  font-size: 0.9rem;
}

.hero-stat-value {
  display: block;
  margin-top: 8px;
  font-size: 1.35rem;
  line-height: 1.15;
}

.hero-points {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

.hero-points li {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
}

.hero-points li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
}

.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 540px;
}

.hero-download .hero-grid {
  grid-template-columns: minmax(0, 1.28fr) minmax(280px, 0.72fr);
  gap: 44px;
}

.hero-download .hero-copy {
  position: relative;
  z-index: 2;
  padding-right: 16px;
}

.hero-download .hero-copy h1 {
  max-width: 14ch;
}

.hero-download .lead {
  max-width: 100%;
  overflow-wrap: anywhere;
}

.hero-download .hero-visual {
  min-height: 460px;
  justify-self: end;
}

.hero-download .phone-mockup {
  width: min(320px, 100%);
}

.hero-download .button-cta-large {
  font-size: 1rem;
}

.hero-visual::before,
.hero-visual::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(8px);
}

.hero-visual::before {
  width: 280px;
  height: 280px;
  background: rgba(255, 106, 0, 0.14);
  top: 50px;
  right: 20px;
}

.hero-visual::after {
  width: 220px;
  height: 220px;
  background: rgba(20, 20, 20, 0.05);
  bottom: 30px;
  left: 40px;
}

.phone-mockup {
  position: relative;
  z-index: 1;
  width: min(360px, 100%);
  padding: 14px;
  border-radius: 42px;
  background: linear-gradient(180deg, #1c1c1c 0%, #0d0d0d 100%);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.15);
}

.phone-screen {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 14px;
  min-height: 520px;
  padding: 26px;
  border-radius: 30px;
  background:
    radial-gradient(circle at top right, rgba(255, 106, 0, 0.22), transparent 28%),
    linear-gradient(180deg, #fff 0%, #f4f1ea 100%);
}

.mock-card,
.mock-chip,
.stat-badge {
  border-radius: 24px;
  padding: 18px 20px;
}

.mock-card span,
.stat-badge span {
  display: block;
  font-size: 0.88rem;
  color: rgba(17, 17, 17, 0.7);
}

.mock-card strong,
.stat-badge strong {
  display: block;
  margin-top: 8px;
  font-size: 1.4rem;
  line-height: 1.1;
}

.accent-card {
  background: var(--accent);
  color: #fff;
}

.accent-card span {
  color: rgba(255, 255, 255, 0.82);
}

.dark-card {
  background: #151515;
  color: #fff;
}

.dark-card span {
  color: rgba(255, 255, 255, 0.72);
}

.light-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
}

.mock-chip {
  width: fit-content;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  font-weight: 700;
}

.stat-badge {
  width: fit-content;
  margin-left: auto;
  background: var(--accent-soft);
  border: 1px solid rgba(255, 106, 0, 0.16);
}

.section {
  padding: 46px 0;
}

.section-soft {
  background: rgba(255, 255, 255, 0.62);
}

.section-head h2,
.split-grid h2,
.cta-card h2 {
  font-size: clamp(2rem, 4vw, 3.6rem);
  max-width: 14ch;
}

.grid {
  display: grid;
  gap: 18px;
}

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

.info-card,
.step-card,
.mini-card,
.bullet-panel,
.city-link,
.cta-card,
.faq-item {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.info-card,
.step-card,
.mini-card,
.bullet-panel,
.cta-card {
  border-radius: var(--radius-lg);
  padding: 24px;
}

.step-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding-top: 26px;
  overflow: hidden;
}

.step-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--accent) 0%, #ff9a58 100%);
}

.info-card h3,
.step-card h3,
.mini-card h3 {
  margin: 0 0 10px;
  font-size: 1.2rem;
}

.info-card p,
.step-card p,
.mini-card p,
.bullet-row {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.split-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  align-items: start;
}

.bullet-panel {
  display: grid;
  gap: 14px;
}

.bullet-row {
  padding: 14px 0;
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
}

.bullet-row:last-child {
  border-bottom: 0;
}

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

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

.step-number {
  display: inline-grid;
  place-items: center;
  width: 50px;
  height: 50px;
  margin-bottom: 16px;
  border-radius: 16px;
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 800;
  font-size: 1.05rem;
  box-shadow: inset 0 0 0 1px rgba(255, 106, 0, 0.14);
}

.step-card h3 {
  max-width: 14ch;
  line-height: 1.1;
}

.step-card p {
  max-width: 28ch;
}

.step-action {
  margin-top: auto;
  padding-top: 18px;
}

.button-step {
  min-height: 52px;
  padding: 0 22px;
  font-size: 0.98rem;
}

.feature-stack {
  display: grid;
  gap: 18px;
}

.jobs-showcase {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.05fr);
  gap: 28px;
  align-items: center;
}

.jobs-content h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
  max-width: 12ch;
}

.jobs-content .eyebrow {
  margin-bottom: 12px;
}

.jobs-media-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.jobs-photo {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
}

.jobs-content .section-intro {
  max-width: 58ch;
  margin: 18px 0 0;
}

.task-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.task-chip {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  font-weight: 700;
  font-size: 0.96rem;
  line-height: 1.4;
}

.tags-block {
  margin-top: 24px;
}

.tag-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.tag-chip {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  font-weight: 700;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  border-radius: var(--radius-md);
  padding: 0 22px;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 20px 0;
  font-weight: 800;
  position: relative;
  padding-right: 28px;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 18px;
  color: var(--accent);
  font-size: 1.35rem;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "−";
}

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

.faq-item p {
  margin: 0 0 20px;
  color: var(--muted);
  line-height: 1.7;
}

.cta-section {
  padding-bottom: 64px;
}

.cta-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: linear-gradient(135deg, #1a1a1a 0%, #303030 100%);
  color: #fff;
}

.cta-card .eyebrow {
  color: #ffb27c;
}

.cta-text {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.6;
}

.cta-points {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
  color: rgba(255, 255, 255, 0.82);
}

.cta-points li {
  position: relative;
  padding-left: 18px;
}

.cta-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #ff8f45;
}

.button-cta-large {
  min-height: 64px;
  padding: 0 34px;
  font-size: 1.05rem;
  white-space: nowrap;
}

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

.city-link {
  display: block;
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: transform 0.2s ease, border-color 0.2s ease;
  cursor: pointer;
}

.city-link:hover {
  transform: translateY(-2px);
  border-color: rgba(17, 17, 17, 0.18);
}

.city-name {
  display: block;
  font-size: 1.4rem;
  font-weight: 800;
}

.city-meta {
  display: block;
  margin-top: 8px;
  color: var(--muted);
}

.page-footer {
  padding: 0 0 28px;
}

.footer-note {
  margin: 0;
  color: rgba(20, 20, 20, 0.56);
  font-size: 0.82rem;
  line-height: 1.6;
}

@media (max-width: 960px) {
  .hero-grid,
  .split-grid,
  .jobs-showcase,
  .cards-3,
  .steps-grid,
  .city-list {
    grid-template-columns: 1fr;
  }

  .hero-download .hero-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .hero-copy h1 {
    max-width: 100%;
  }

  .section-head h2,
  .split-grid h2,
  .cta-card h2,
  .jobs-content h2 {
    max-width: 100%;
  }

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

  .hero-copy {
    order: 1;
  }

  .hero-visual {
    order: 2;
  }

  .hero-download .hero-copy {
    padding-right: 0;
  }

  .hero-download .hero-visual {
    min-height: auto;
    justify-self: stretch;
  }

  .hero-stats {
    gap: 12px;
  }

  .hero-stat {
    min-width: 0;
    flex: 1 1 220px;
  }

  .cta-card {
    align-items: flex-start;
    flex-direction: column;
  }

  .jobs-photo {
    min-height: 360px;
  }
}

@media (max-width: 640px) {
  .topbar {
    align-items: stretch;
    flex-direction: column;
    gap: 12px;
  }

  .container {
    width: min(1120px, calc(100% - 20px));
  }

  .hero {
    padding-top: 10px;
    padding-bottom: 34px;
  }

  .topnav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    width: 100%;
  }

  .topnav a:last-child {
    grid-column: 1 / -1;
  }

  .topnav a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
    min-height: 42px;
    padding: 0 8px;
    border-radius: 999px;
    background: rgba(20, 20, 20, 0.05);
    font-size: 0.88rem;
    line-height: 1.15;
    text-align: center;
    white-space: normal;
  }

  .brand {
    gap: 10px;
  }

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

  .hero-copy h1 {
    font-size: clamp(2rem, 10vw, 2.8rem);
    line-height: 0.98;
  }

  .lead,
  .section-text,
  .hero-note,
  .info-card p,
  .step-card p,
  .mini-card p,
  .faq-item p {
    font-size: 0.98rem;
    line-height: 1.6;
  }

  .lead,
  .section-text {
    padding-right: 6px;
  }

  .hero-actions,
  .hero-stats {
    margin-top: 20px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button,
  .button-cta-large {
    width: 100%;
  }

  .hero-download .button {
    max-width: 100%;
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero-points {
    gap: 8px;
  }

  .hero-points li {
    width: 100%;
    justify-content: flex-start;
    padding: 12px 14px;
  }

  .hero-stat {
    width: 100%;
    padding: 16px 18px;
  }

  .hero-stat-value {
    font-size: 1.18rem;
  }

  .hero-visual {
    margin-top: 6px;
  }

  .phone-mockup {
    width: min(320px, 100%);
    padding: 12px;
  }

  .phone-screen {
    min-height: 400px;
    padding: 18px;
    gap: 12px;
  }

  .info-card,
  .step-card,
  .mini-card,
  .bullet-panel,
  .cta-card,
  .city-link {
    padding: 20px;
  }

  .section {
    padding: 34px 0;
  }

  .section-head {
    margin-top: 0;
    margin-bottom: 22px;
  }

  .section-head h2,
  .split-grid h2,
  .cta-card h2,
  .jobs-content h2 {
    font-size: clamp(1.75rem, 8vw, 2.3rem);
    line-height: 1.02;
  }

  .step-number {
    margin-bottom: 14px;
  }

  .step-card {
    padding-top: 22px;
  }

  .step-card h3,
  .step-card p {
    max-width: 100%;
  }

  .step-action {
    margin-top: 16px;
  }

  .button-step {
    width: 100%;
  }

  .tag-grid {
    gap: 10px;
  }

  .tag-chip {
    min-height: 40px;
    padding: 0 14px;
    font-size: 0.92rem;
  }

  .task-grid {
    gap: 10px;
    margin-top: 20px;
  }

  .task-chip {
    width: 100%;
    justify-content: flex-start;
    min-height: 44px;
    padding: 10px 14px;
    font-size: 0.95rem;
  }

  .faq-item {
    padding: 0 18px;
  }

  .faq-item summary {
    padding: 16px 26px 16px 0;
    font-size: 0.98rem;
  }

  .cta-section {
    padding-bottom: 42px;
  }

  .page-footer {
    padding-bottom: 22px;
  }

  .footer-note {
    font-size: 0.78rem;
  }

  .cta-card {
    gap: 18px;
  }

  .button-cta-large {
    min-height: 58px;
    padding: 0 24px;
    font-size: 1rem;
    white-space: normal;
    line-height: 1.25;
    text-align: center;
  }

  .hero-download .button-cta-large {
    min-height: 64px;
    padding: 12px 16px;
    white-space: normal;
    flex-wrap: wrap;
    overflow-wrap: anywhere;
  }

  .hero-download .button-store,
  .hero-download .button-secondary {
    font-size: 0.95rem;
  }
}

@media (max-width: 420px) {
  .container {
    width: calc(100% - 16px);
  }

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

  .hero-copy h1 {
    font-size: 1.9rem;
  }

  .phone-mockup {
    width: 100%;
  }

  .phone-screen {
    min-height: 360px;
  }

  .jobs-photo {
    min-height: 300px;
  }

  .hero-download .button-cta-large {
    padding: 12px 12px;
    flex-wrap: wrap;
  }
}
