:root {
  --ink: #1d2522;
  --ink-soft: #5b6762;
  --paper: #fffdf5;
  --surface: #ffffff;
  --mist: #fff6dc;
  --line: rgba(29, 37, 34, 0.13);
  --red: #bd2f3f;
  --red-dark: #8d1f2b;
  --green: #1f7a5a;
  --sea: #237c88;
  --yellow: #f3c95f;
  --violet: #7a4fb4;
  --shadow: 0 20px 55px rgba(21, 35, 31, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(243, 201, 95, 0.12), transparent 42%),
    linear-gradient(180deg, rgba(189, 47, 63, 0.05), transparent 52%);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

button,
input {
  font: inherit;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: min(calc(100% - 32px), 1180px);
  margin: 0 auto;
  padding: 28px 0 34px;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 14px;
}

.site-footer span {
  color: var(--ink);
  font-weight: 800;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

@media (max-width: 640px) {
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.topbar {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: min(calc(100% - 32px), 1180px);
  min-height: 68px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 32px rgba(21, 35, 31, 0.12);
  backdrop-filter: blur(16px);
  transform: translateX(-50%);
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 12px;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: var(--red);
  color: #fff;
  font-weight: 900;
  letter-spacing: 0;
}

.brand-lockup strong,
.brand-lockup small {
  display: block;
}

.brand-lockup small {
  margin-top: 2px;
  color: var(--ink-soft);
}

.topnav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  min-width: 0;
  overflow-x: auto;
}

.topnav a,
.button {
  border-radius: 8px;
  font-weight: 800;
}

.topnav a {
  flex: 0 0 auto;
  padding: 11px 12px;
  color: var(--ink-soft);
  white-space: nowrap;
}

.topnav a:hover {
  background: rgba(243, 201, 95, 0.12);
  color: var(--ink);
}

main {
  overflow-x: clip;
}

.reveal-ready [data-reveal] {
  opacity: 0;
  transform: translateY(30px) scale(0.985);
  transition:
    opacity 680ms cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay, 0ms),
    transform 680ms cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.reveal-ready [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

.map-hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  padding: 132px clamp(18px, 6vw, 84px) 54px;
  isolation: isolate;
}

.google-map-shell {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: linear-gradient(135deg, #fff7dd 0%, #fff1c6 54%, #fffdf5 100%);
}

.google-map-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 253, 245, 0.96) 0%, rgba(255, 253, 245, 0.76) 34%, rgba(255, 253, 245, 0.18) 68%, rgba(255, 253, 245, 0.04) 100%),
    linear-gradient(180deg, rgba(255, 253, 245, 0.1) 0%, rgba(255, 253, 245, 0.06) 55%, rgba(255, 253, 245, 0.64) 100%);
}

.google-map {
  position: absolute;
  inset: 0;
  z-index: 1;
  min-height: 100%;
}

.map-status,
.map-legend {
  position: absolute;
  z-index: 3;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 28px rgba(21, 35, 31, 0.12);
  backdrop-filter: blur(14px);
}

.map-status {
  right: 24px;
  bottom: 26px;
  max-width: min(320px, calc(100% - 48px));
  padding: 10px 12px;
  color: var(--ink-soft);
  font-size: 0.82rem;
  font-weight: 800;
}

.map-status.is-hidden {
  display: none;
}

.map-legend {
  right: 24px;
  top: 112px;
  display: none !important;
  flex-wrap: wrap;
  gap: 8px;
  max-width: min(540px, calc(100% - 48px));
  padding: 8px;
}

.map-legend span {
  padding: 8px 10px;
  border-left: 4px solid var(--pin-color, var(--yellow));
  border-radius: 8px;
  background: rgba(243, 201, 95, 0.14);
  color: var(--ink);
  font-size: 0.76rem;
  font-weight: 900;
}

.hero-content {
  position: relative;
  z-index: 4;
  width: min(680px, 100%);
}

.eyebrow {
  display: inline-flex;
  margin: 0 0 18px;
  padding: 8px 10px;
  border-radius: 8px;
  background: rgba(243, 201, 95, 0.14);
  color: var(--red-dark);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1;
  letter-spacing: 0;
}

h1 {
  max-width: 12ch;
  font-size: 5.4rem;
}

h2 {
  max-width: 13ch;
  font-size: 4rem;
}

h3 {
  font-size: 1.16rem;
}

.hero-content > p:not(.eyebrow),
.section-copy p,
.feature-copy p:not(.eyebrow),
.service-stack p {
  max-width: 64ch;
  color: var(--ink-soft);
  font-size: 1.06rem;
  line-height: 1.7;
}

.hero-content > p:not(.eyebrow) {
  margin-top: 24px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 18px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--red);
  color: #fff;
  box-shadow: 0 14px 28px rgba(189, 47, 63, 0.22);
}

.hero-wordmark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding: 7px 12px 7px 9px;
  border: 1px solid rgba(189, 47, 63, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--red);
  box-shadow: 0 14px 34px rgba(189, 47, 63, 0.12);
  backdrop-filter: blur(14px);
  letter-spacing: 0.12em;
}

.hero-wordmark-pin {
  width: 18px;
  height: 18px;
  border: 5px solid var(--red);
  border-radius: 50% 50% 50% 14%;
  background: #fff8ec;
  box-shadow: 0 8px 16px rgba(189, 47, 63, 0.18);
  transform: rotate(-45deg);
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 620px;
  margin-top: 28px;
}

.hero-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 13px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink);
  box-shadow: 0 12px 28px rgba(21, 35, 31, 0.1);
  backdrop-filter: blur(14px);
  font-size: 0.84rem;
  font-weight: 900;
}

.phone-showcase,
.feature-section {
  width: min(calc(100% - 36px), 1180px);
  margin: 0 auto;
}

.phone-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: clamp(28px, 6vw, 84px);
  align-items: center;
  padding: 92px 0;
}

.section-copy {
  display: grid;
  gap: 18px;
}

.phone-frame {
  width: min(100%, 382px);
  min-height: 730px;
  justify-self: center;
  padding: 14px;
  border: 8px solid #1b2320;
  border-radius: 28px;
  background: #1b2320;
  box-shadow: 0 28px 74px rgba(21, 35, 31, 0.24);
}

.phone-speaker {
  width: 74px;
  height: 6px;
  margin: 0 auto 12px;
  border-radius: 8px;
  background: #3a4540;
}

.phone-screen {
  position: relative;
  min-height: 670px;
  overflow: hidden;
  border-radius: 8px;
  background: #fffaf0;
}

.phone-header {
  position: absolute;
  top: 12px;
  left: 12px;
  right: 12px;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 24px rgba(21, 35, 31, 0.12);
  font-size: 0.84rem;
}

.phone-header span {
  color: var(--ink-soft);
  font-weight: 800;
}

.phone-header strong {
  color: var(--ink);
}

.phone-map {
  position: absolute;
  inset: 0;
  min-height: 100%;
}

.phone-sheet {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 5;
  display: grid;
  gap: 10px;
  padding: 14px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 36px rgba(21, 35, 31, 0.16);
}

.inspector-label {
  width: fit-content;
  padding: 7px 9px;
  border-radius: 8px;
  background: rgba(189, 47, 63, 0.1);
  color: var(--red-dark);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.phone-sheet p:not(.inspector-label) {
  color: var(--ink-soft);
  line-height: 1.55;
}

.feature-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.9fr);
  gap: clamp(24px, 6vw, 88px);
  align-items: center;
  min-height: 74svh;
  padding: 86px 0;
  border-top: 1px solid var(--line);
}

.feature-tips {
  display: block;
  width: 100%;
  min-height: 240svh;
  padding: 0;
}

.tips-sticky-grid {
  position: sticky;
  top: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  height: 100svh;
  overflow: hidden;
  margin: 0 auto;
  padding: 80px 24px 32px;
  box-sizing: border-box;
}

.feature-tips.is-phone-active .tips-sticky-grid {
  justify-content: center;
}

.reveal-ready .feature-tips .tips-phone-frame[data-reveal] {
  opacity: 0;
  transform: scale(0.9) translateY(24px);
}

.reveal-ready .feature-tips .tips-phone-frame[data-reveal].is-visible.is-stage-active {
  opacity: 1;
  transform: scale(1) translateY(0);
}

.feature-copy {
  display: grid;
  justify-items: start;
  gap: 18px;
}

.tool-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 8px;
  background: var(--mist);
  color: var(--red);
}

.tool-icon svg {
  width: 24px;
  height: 24px;
}

.feature-visual {
  display: grid;
  gap: 14px;
}

.feature-visual div,
.service-stack article {
  display: grid;
  gap: 10px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 14px 34px rgba(21, 35, 31, 0.1);
}

.feature-visual span {
  color: var(--ink-soft);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.feature-visual strong {
  font-size: 1.4rem;
}

.wifi-visual div:nth-child(1) {
  border-left: 8px solid var(--green);
}

.wifi-visual div:nth-child(2) {
  border-left: 8px solid var(--yellow);
}

.wifi-visual div:nth-child(3) {
  border-left: 8px solid var(--red);
}

.checkin-visual div:nth-child(1) {
  border-left: 8px solid var(--yellow);
}

.checkin-visual div:nth-child(2) {
  border-left: 8px solid var(--sea);
}

.checkin-visual div:nth-child(3) {
  border-left: 8px solid var(--green);
}

.property-services-visual div:nth-child(1) {
  border-left: 8px solid var(--red);
}

.property-services-visual div:nth-child(2) {
  border-left: 8px solid var(--violet);
}

.property-services-visual div:nth-child(3) {
  border-left: 8px solid var(--green);
}

.delivery-visual div:nth-child(1) {
  border-left: 8px solid var(--red);
}

.delivery-visual div:nth-child(2) {
  border-left: 8px solid var(--green);
}

.delivery-visual div:nth-child(3) {
  border-left: 8px solid var(--yellow);
}

.feature-tips .feature-copy {
  width: min(100%, 640px);
  justify-items: center;
  text-align: center;
  flex-shrink: 0;
  margin-bottom: clamp(22px, 4vh, 44px);
}

.feature-tips .feature-copy.is-phone-visible {
  gap: 0;
  margin-bottom: clamp(28px, 5vh, 58px);
}

.feature-tips .feature-copy .tool-icon,
.feature-tips .feature-copy .eyebrow,
.feature-tips .feature-copy p:not(.eyebrow) {
  transition: opacity 0.3s ease, max-height 0.4s ease, margin 0.4s ease;
  overflow: hidden;
  max-height: 200px;
}

.feature-tips .feature-copy.is-phone-visible .tool-icon,
.feature-tips .feature-copy.is-phone-visible .eyebrow,
.feature-tips .feature-copy.is-phone-visible p:not(.eyebrow) {
  opacity: 0;
  max-height: 0;
  margin: 0;
  pointer-events: none;
}

.feature-tips .feature-copy h2 {
  transition: font-size 0.4s ease;
  margin: 0;
}

.feature-tips .feature-copy.is-phone-visible h2 {
  font-size: clamp(0.95rem, 1.75vw, 1.25rem);
  line-height: 1.08;
}

.tips-phone-frame {
  display: flex;
  flex-direction: column;
  width: min(100%, 360px);
  height: clamp(580px, 74svh, 690px);
  min-height: 0;
  transform: scale(0.9) translateY(32px);
  transform-origin: top center;
  opacity: 0;
  transition: transform 0.55s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.4s ease;
}

.tips-phone-frame .phone-speaker {
  flex: 0 0 auto;
}

.tips-phone-frame > .phone-screen {
  flex: 1;
  min-height: 0;
  height: 100%;
}

.tips-phone-frame.is-stage-active {
  transform: scale(1) translateY(0);
  opacity: 1;
}

.tips-phone-screen {
  display: flex;
  flex-direction: column;
  min-height: 0;
  max-height: none;
  isolation: isolate;
  padding: 12px;
  background:
    linear-gradient(180deg, rgba(255, 253, 245, 0.92), rgba(255, 248, 229, 0.86)),
    repeating-linear-gradient(135deg, rgba(189, 47, 63, 0.05) 0 1px, transparent 1px 18px);
}

.tips-phone-header {
  z-index: 3;
}

.tips-feed {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: start;
  flex: 1 1 auto;
  gap: 12px;
  min-height: 0;
  margin-top: 0;
  padding: 74px 4px 14px 0;
  overflow-y: auto;
  scrollbar-color: rgba(189, 47, 63, 0.48) rgba(29, 37, 34, 0.08);
  scrollbar-width: thin;
}

.reveal-ready .tips-feed {
  overflow-y: hidden;
}

.tip-card {
  display: grid;
  gap: 8px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 4px 16px rgba(21, 35, 31, 0.07);
}

.tip-card-featured {
  border-color: rgba(189, 47, 63, 0.20);
  background: linear-gradient(160deg, rgba(255, 255, 255, 1), rgba(255, 248, 242, 1));
  box-shadow: 0 6px 20px rgba(189, 47, 63, 0.08);
}

.tip-tag {
  width: fit-content;
  padding: 4px 10px;
  border-radius: 8px;
  background: rgba(189, 47, 63, 0.1);
  color: var(--red-dark);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.tip-card h3 {
  line-height: 1.2;
}

.tip-card p {
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.55;
}

.tip-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tip-meta span {
  padding: 4px 10px;
  border-radius: 8px;
  background: rgba(31, 122, 90, 0.1);
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 900;
}

.feature-services {
  display: grid;
  grid-template-columns: 1fr;
  align-content: center;
  gap: 32px;
}

.feature-services .service-copy {
  max-width: 760px;
}

.feature-services .service-copy h2 {
  max-width: 16ch;
}

.service-stack {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.service-stack article {
  align-content: start;
  min-height: 210px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-stack article:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 44px rgba(21, 35, 31, 0.14);
}

.service-stack article:nth-child(1) .tool-icon {
  color: var(--red);
  background: rgba(189, 47, 63, 0.1);
}

.service-stack article:nth-child(2) .tool-icon {
  color: var(--green);
  background: rgba(31, 122, 90, 0.12);
}

.service-stack article:nth-child(3) .tool-icon {
  color: var(--violet);
  background: rgba(122, 79, 180, 0.12);
}

.service-stack article:nth-child(4) .tool-icon {
  color: var(--green);
  background: rgba(31, 122, 90, 0.12);
}

.service-stack article:nth-child(5) .tool-icon {
  color: var(--yellow);
  background: rgba(243, 201, 95, 0.18);
}

.service-stack article:nth-child(6) .tool-icon {
  color: var(--ink-soft);
  background: rgba(91, 103, 98, 0.12);
}

.feature-business {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: center;
  place-items: center;
  width: min(calc(100% - 36px), 1180px);
  min-height: 46svh;
  padding: clamp(54px, 8vw, 96px) 0 clamp(86px, 10vw, 136px);
}

.business-card {
  display: grid;
  grid-template-columns: minmax(0, 780px) auto;
  align-items: center;
  justify-content: space-between;
  gap: clamp(34px, 8vw, 128px);
  width: 100%;
  min-height: auto;
  padding: 0;
}

.business-copy {
  display: grid;
  justify-items: start;
  gap: 18px;
  max-width: 980px;
}

.business-card h2 {
  max-width: 760px;
  font-size: clamp(2.25rem, 4vw, 3.9rem);
  line-height: 0.98;
}

.business-card .tool-icon {
  color: var(--green);
  background: rgba(31, 122, 90, 0.12);
}

.business-card p:not(.eyebrow) {
  max-width: 700px;
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.7;
}

.business-actions {
  display: grid;
  justify-items: end;
  gap: 12px;
  min-width: min(320px, 32vw);
}

.business-actions span {
  color: var(--ink-soft);
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1.5;
  text-align: right;
}

@media (max-width: 1040px) {
  h1 {
    font-size: 4.2rem;
  }

  h2 {
    font-size: 3.2rem;
  }

  .phone-showcase,
  .feature-section {
    grid-template-columns: 1fr;
  }

  .tips-sticky-grid {
    width: 100%;
  }

  .business-card {
    grid-template-columns: 1fr;
    min-height: auto;
    text-align: center;
  }

  .business-copy {
    max-width: 100%;
    justify-items: center;
  }

  .business-card h2 {
    max-width: 720px;
  }

  .business-actions {
    justify-items: center;
    min-width: 0;
  }

  .business-actions span {
    text-align: center;
  }

}

@media (max-width: 760px) {
  .topbar {
    position: absolute;
    flex-direction: column;
    align-items: stretch;
  }

  .topnav {
    justify-content: flex-start;
  }

  .map-hero {
    min-height: 980px;
    padding-top: 178px;
  }

  .map-legend {
    top: auto;
    left: 18px;
    right: 18px;
    bottom: 18px;
  }

  .map-status {
    right: 18px;
    bottom: 88px;
  }

  h1 {
    font-size: 3.15rem;
  }

  h2 {
    font-size: 2.45rem;
  }

  .button {
    width: 100%;
  }

  .service-stack {
    grid-template-columns: 1fr;
  }

  .service-stack article {
    min-height: auto;
  }

  .phone-showcase,
  .feature-section {
    width: min(calc(100% - 28px), 1180px);
    padding: 66px 0;
  }

  .feature-tips {
    width: 100%;
    min-height: 210svh;
    padding: 0;
  }

  .tips-sticky-grid {
    top: 0;
    width: 100%;
    padding: 72px 16px 16px;
  }

  .phone-frame {
    min-height: 640px;
  }

  .phone-screen {
    min-height: 580px;
  }

  .tips-phone-frame {
    width: min(100%, 330px);
    height: clamp(500px, 72svh, 620px);
  }

  .feature-visual strong {
    font-size: 1.1rem;
  }

  .feature-business {
    width: min(calc(100% - 28px), 1180px);
    padding: 56px 0 86px;
  }

  .business-card h2 {
    font-size: clamp(2.1rem, 11vw, 3rem);
    line-height: 1;
  }

  .business-card {
    padding: 0;
  }

  .business-actions {
    width: 100%;
  }

  .business-actions span {
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition: none !important;
  }

  .reveal-ready [data-reveal],
  .reveal-ready [data-reveal].is-visible,
  .reveal-ready .feature-tips .tips-phone-frame[data-reveal],
  .reveal-ready .feature-tips .tips-phone-frame[data-reveal].is-visible.is-stage-active {
    opacity: 1;
    transform: none;
  }

  .feature-tips {
    min-height: auto;
    padding: 66px 0;
  }

  .tips-sticky-grid {
    position: relative;
    top: auto;
    min-height: auto;
    padding: 0;
  }

  .reveal-ready .tips-feed {
    overflow-y: auto;
  }
}
