:root {
  --bg: #f7f5ef;
  --ink: #171719;
  --muted: #686761;
  --line: rgba(23, 23, 25, 0.1);
  --paper: rgba(255, 255, 255, 0.82);
  --accent: #0f766e;
  --accent-dark: #0b4f49;
  --sky-soft: rgba(47, 111, 178, 0.1);
  --shadow: 0 24px 70px rgba(25, 26, 28, 0.1);
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(15, 118, 110, 0.1), transparent 34%),
    linear-gradient(315deg, rgba(47, 111, 178, 0.08), transparent 30%),
    var(--bg);
}

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

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

.page-shell {
  width: min(100%, var(--max-width));
  margin: 0 auto;
  padding: 22px 20px 80px;
}

.topbar {
  position: sticky;
  top: 14px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 34px rgba(20, 20, 20, 0.06);
}

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

.topnav {
  display: flex;
  gap: 20px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
}

.topnav a:hover {
  color: var(--ink);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background-color 160ms ease;
}

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

.button-primary {
  background: var(--ink);
  color: #fff;
  box-shadow: 0 16px 34px rgba(23, 23, 25, 0.18);
}

.button-secondary,
.button-ghost {
  background: rgba(255, 255, 255, 0.78);
  border-color: var(--line);
  color: var(--ink);
}

.hero {
  display: grid;
  grid-template-columns: 1fr 0.92fr;
  gap: 34px;
  align-items: center;
  min-height: auto;
  padding: 44px 0 20px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero h1 {
  margin: 18px 0 8px;
  font-size: clamp(4rem, 8vw, 7rem);
  line-height: 0.92;
}

.tagline {
  margin: 0 0 18px;
  color: var(--accent-dark);
  font-size: clamp(1.45rem, 2.6vw, 2.35rem);
  font-weight: 800;
}

.hero-text,
.section-head p,
.privacy-grid p,
.signup-copy p,
.form-note,
.demo-step p,
.signup-points li,
.demo-subline,
.step-card p {
  color: var(--muted);
  line-height: 1.65;
}

.hero-text {
  max-width: 620px;
  font-size: 1.12rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.quick-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.quick-points span,
.status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
}

.hero-visual {
  display: flex;
  justify-content: center;
}

.phone-frame {
  width: min(100%, 410px);
  padding: 14px;
  border-radius: 40px;
  background: linear-gradient(145deg, #151518, #36373b);
  box-shadow: 0 30px 80px rgba(17, 17, 18, 0.28);
}

.phone-notch {
  width: 122px;
  height: 26px;
  margin: 0 auto 12px;
  border-radius: 999px;
  background: #0d0d0f;
}

.phone-screen {
  min-height: 650px;
  padding: 22px 16px 18px;
  border-radius: 30px;
  background:
    linear-gradient(155deg, rgba(47, 111, 178, 0.12), transparent 38%),
    linear-gradient(180deg, #fffaf2 0%, #eef6f4 100%);
}

.phone-header,
.people-card-head,
.person-row,
.live-demo-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.mini-brand,
.mini-city {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
}

.mini-brand {
  background: var(--ink);
  color: #fff;
}

.mini-city {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
}

.map-card,
.people-card,
.demo-panel,
.live-demo,
.signup-card,
.trust-strip article,
.audience-grid article,
.screen-card,
.privacy-grid article,
.step-card {
  border: 1px solid var(--line);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.map-card {
  position: relative;
  height: 265px;
  margin-top: 18px;
  overflow: hidden;
  border-radius: 26px;
}

.map-grid {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(15, 118, 110, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 118, 110, 0.08) 1px, transparent 1px);
  background-size: 38px 38px;
}

.map-marker {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 54px;
  padding: 8px 10px;
  border-radius: 999px;
  background: #fff;
  font-size: 0.8rem;
  font-weight: 800;
  box-shadow: 0 10px 18px rgba(18, 18, 18, 0.12);
}

.place-marker {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 68px;
  min-height: 38px;
  padding: 0 12px;
  border: 2px solid rgba(255, 255, 255, 0.9);
  border-radius: 12px;
  background: var(--accent);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 900;
  box-shadow: 0 14px 26px rgba(15, 118, 110, 0.28);
}

.place-cafe {
  top: 80px;
  left: 172px;
}

.place-event {
  top: 178px;
  left: 158px;
  background: #2f6fb2;
}

.route-line {
  position: absolute;
  z-index: 1;
  height: 4px;
  border-radius: 999px;
  background: rgba(15, 118, 110, 0.36);
  transform-origin: left center;
}

.route-one {
  top: 130px;
  left: 160px;
  width: 76px;
  transform: rotate(-34deg);
}

.route-two {
  top: 159px;
  left: 129px;
  width: 82px;
  transform: rotate(42deg);
  background: rgba(47, 111, 178, 0.32);
}

.marker-you {
  top: 108px;
  left: 145px;
  background: var(--ink);
  color: #fff;
}

.marker-one {
  top: 58px;
  left: 225px;
}

.marker-two {
  top: 150px;
  left: 56px;
}

.marker-three {
  top: 205px;
  left: 230px;
}

.people-card {
  margin-top: 16px;
  padding: 18px;
  border-radius: 26px;
}

.people-card-head {
  margin-bottom: 12px;
}

.place-row {
  padding: 14px;
  border: 1px solid rgba(15, 118, 110, 0.16);
  border-radius: 18px;
  background: rgba(15, 118, 110, 0.08);
}

.place-row strong,
.place-row span {
  display: block;
}

.place-row span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.people-card-head span,
.person-row span {
  color: var(--muted);
  font-size: 0.9rem;
}

.person-row {
  padding: 13px 0;
  border-top: 1px solid var(--line);
}

.place-row + .person-row {
  margin-top: 10px;
  border-top: 0;
}

.person-row strong {
  display: block;
  margin-bottom: 4px;
}

.person-row button {
  min-height: 40px;
  padding: 0 13px;
  border: 0;
  border-radius: 999px;
  background: rgba(15, 118, 110, 0.1);
  color: var(--accent-dark);
  font-weight: 800;
}

.section {
  padding: 88px 0 0;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding: 20px 0 0;
}

.trust-strip article,
.audience-grid article {
  padding: 18px;
  border-radius: 20px;
}

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

.trust-strip strong,
.audience-grid strong {
  margin-bottom: 6px;
  font-size: 0.98rem;
  font-weight: 900;
}

.trust-strip span,
.audience-grid span {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.audience-grid,
.screen-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.screen-card {
  padding: 22px;
  border-radius: 24px;
}

.screen-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  font-weight: 900;
}

.screen-card h3 {
  margin: 16px 0 8px;
}

.screen-card p {
  margin: 0 0 16px;
  color: var(--muted);
  line-height: 1.55;
}

.mini-screen {
  display: grid;
  gap: 7px;
  min-height: 132px;
  padding: 16px;
  border: 1px solid rgba(15, 118, 110, 0.16);
  border-radius: 18px;
  background:
    linear-gradient(160deg, rgba(15, 118, 110, 0.1), transparent 58%),
    rgba(255, 255, 255, 0.76);
}

.mini-screen strong,
.mini-screen span,
.mini-screen small {
  display: block;
}

.mini-screen span {
  font-size: 1.12rem;
  font-weight: 900;
}

.mini-screen small {
  color: var(--muted);
  line-height: 1.45;
}

.signup-section-priority {
  padding-top: 28px;
}

.section-head {
  max-width: 760px;
}

.section-head h2,
.signup-copy h2 {
  margin: 16px 0 12px;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.04;
}

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

.step-card {
  padding: 24px;
  border-radius: 24px;
}

.step-number,
.demo-step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(15, 118, 110, 0.12);
  color: var(--accent-dark);
  font-size: 0.9rem;
  font-weight: 800;
}

.step-card h3 {
  margin: 16px 0 10px;
  font-size: 1.12rem;
}

.step-card p {
  margin: 0;
}

.demo-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 20px;
  align-items: start;
  margin-top: 28px;
}

.demo-panel,
.live-demo {
  padding: 24px;
  border-radius: 26px;
}

.demo-flow {
  display: grid;
  gap: 12px;
  margin-bottom: 22px;
}

.demo-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
}

.demo-step strong {
  display: block;
  margin-bottom: 4px;
}

.demo-step p {
  margin: 0;
}

.demo-label {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
  text-transform: uppercase;
}

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

.intent-card {
  min-height: 108px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink);
  text-align: left;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background-color 160ms ease;
}

.intent-card:hover,
.intent-card.is-active {
  transform: translateY(-1px);
  border-color: rgba(15, 118, 110, 0.34);
  background: rgba(15, 118, 110, 0.08);
}

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

.intent-card strong {
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.intent-card span {
  color: var(--muted);
  line-height: 1.45;
}

.demo-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.live-demo h3 {
  margin: 0;
  font-size: 1.55rem;
}

.demo-subline {
  margin: 8px 0 0;
  max-width: 440px;
}

.contact-list {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.contact-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
}

.avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-weight: 800;
}

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

.contact-card span {
  color: var(--muted);
  font-size: 0.92rem;
}

.contact-card button {
  min-height: 40px;
  padding: 0 13px;
  border: 0;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-weight: 800;
}

.demo-result {
  margin-top: 16px;
  padding: 14px;
  border-radius: 16px;
  background: var(--sky-soft);
  color: #194d80;
  font-weight: 700;
  line-height: 1.5;
}

.signup-card {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 26px;
  padding: 30px;
  border-radius: 28px;
}

.signup-card-priority {
  border: 1px solid rgba(15, 118, 110, 0.18);
  box-shadow:
    0 24px 70px rgba(25, 26, 28, 0.1),
    0 0 0 6px rgba(15, 118, 110, 0.05);
}

.signup-points {
  margin: 18px 0 0;
  padding-left: 18px;
}

.signup-points li + li {
  margin-top: 8px;
}

.signup-form {
  display: grid;
  gap: 13px;
}

.signup-form label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.signup-form input,
.signup-form select {
  width: 100%;
  min-height: 54px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
}

.signup-form input:focus,
.signup-form select:focus {
  outline: 3px solid rgba(15, 118, 110, 0.16);
  border-color: rgba(15, 118, 110, 0.32);
}

.privacy-consent {
  display: flex !important;
  align-items: flex-start;
  gap: 10px !important;
  color: var(--muted);
  font-size: 0.88rem !important;
  font-weight: 600 !important;
  line-height: 1.5;
}

.privacy-consent input {
  width: 18px;
  min-width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--accent);
}

.form-note {
  margin: 0;
}

.form-note.is-success {
  color: var(--accent-dark);
  font-weight: 800;
}

.privacy-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.privacy-grid article {
  padding: 24px;
  border-radius: 24px;
}

.privacy-grid h3 {
  margin: 0 0 10px;
  font-size: 1.1rem;
}

.privacy-grid p {
  margin: 0;
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.button:disabled {
  opacity: 0.72;
  cursor: wait;
  transform: none;
}

@media (max-width: 980px) {
  .hero,
  .trust-strip,
  .audience-grid,
  .screen-grid,
  .steps-grid,
  .demo-layout,
  .signup-card,
  .privacy-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-visual {
    order: -1;
  }
}

@media (max-width: 720px) {
  .page-shell {
    padding: 14px 14px 60px;
  }

  .topbar {
    position: static;
    flex-wrap: wrap;
    border-radius: 26px;
  }

  .topnav {
    order: 3;
    width: 100%;
    justify-content: space-between;
    gap: 12px;
    font-size: 0.88rem;
  }

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

  .hero-actions,
  .demo-controls {
    flex-direction: column;
  }

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

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

  .hero h1 {
    font-size: 3.55rem;
  }

  .contact-card {
    grid-template-columns: auto 1fr;
  }

  .contact-card button {
    grid-column: 1 / -1;
    width: 100%;
  }
}
