:root {
  color-scheme: light;
  --ink: #172326;
  --muted: #627075;
  --line: #dfe7e5;
  --paper: #fbfaf7;
  --white: #ffffff;
  --aqua: #2cafa3;
  --aqua-dark: #127b78;
  --coral: #e46f55;
  --gold: #dfac43;
  --navy: #203a4a;
  --green: #3f946c;
  --shadow: 0 22px 70px rgba(23, 35, 38, 0.13);
  --soft-shadow: 0 14px 36px rgba(23, 35, 38, 0.09);
  --radius: 8px;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1180px, calc(100% - 32px));
  margin: 14px auto 0;
  padding: 12px 14px;
  border: 1px solid rgba(223, 231, 229, 0.84);
  border-radius: 999px;
  background: rgba(251, 250, 247, 0.88);
  box-shadow: 0 14px 42px rgba(23, 35, 38, 0.08);
  backdrop-filter: blur(18px);
}

.logo {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
}

.logo img {
  display: block;
  width: auto;
  height: 26px;
}

.logo.compact {
  margin-bottom: 8px;
}

.logo.compact img {
  height: 22px;
}

nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 3vw, 30px);
  color: var(--muted);
  font-size: 0.94rem;
}

nav a,
.header-cta {
  white-space: nowrap;
}

.header-cta {
  padding: 10px 15px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 700;
}

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

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(460px, 1.1fr);
  align-items: center;
  min-height: calc(90vh - 84px);
  padding: 48px 0 54px;
  gap: clamp(32px, 6vw, 74px);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--aqua-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 720px;
  margin-bottom: 22px;
  font-size: clamp(3.2rem, 7vw, 6.75rem);
  line-height: 0.94;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.05rem, 4.5vw, 4rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 9px;
  font-size: 1.08rem;
  line-height: 1.2;
}

p {
  color: var(--muted);
  line-height: 1.7;
}

.hero-subtitle {
  max-width: 620px;
  font-size: clamp(1.08rem, 2vw, 1.3rem);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
  white-space: nowrap;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

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

.button.primary {
  background: var(--aqua-dark);
  color: var(--white);
  box-shadow: 0 14px 30px rgba(18, 123, 120, 0.22);
}

.button.secondary {
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
}

.hero-visual {
  position: relative;
  min-height: 560px;
}

.photo-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: var(--radius);
  background: #d8e5df;
  box-shadow: var(--shadow);
}

.photo-hero {
  height: 540px;
}

.photo-panel img,
.photo-stack img,
.section-photo-card img,
.image-with-phone > img,
.product-image img,
.wide-photo-feature img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  height: auto;
  background:
    linear-gradient(90deg, rgba(23, 35, 38, 0.2), rgba(23, 35, 38, 0) 45%),
    linear-gradient(0deg, rgba(23, 35, 38, 0.18), rgba(23, 35, 38, 0) 46%);
  pointer-events: none;
}

.photo-caption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 1;
  max-width: 230px;
  padding: 12px 14px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 800;
  box-shadow: var(--soft-shadow);
}

.floating-card {
  position: absolute;
  border: 1px solid rgba(223, 231, 229, 0.84);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.calendar-card {
  left: -20px;
  bottom: 84px;
  width: min(300px, 70%);
  padding: 20px;
}

.calendar-card h2 {
  margin: 16px 0 4px;
  font-size: 1.18rem;
}

.calendar-card p {
  margin-bottom: 16px;
}

.card-topline,
.participant-row,
.window-header,
.participant-list div,
.calendar-top,
.final-cta,
footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.card-topline {
  color: var(--muted);
  font-size: 0.9rem;
}

.participant-row {
  padding-top: 11px;
  border-top: 1px solid var(--line);
  font-size: 0.9rem;
}

.participant-row + .participant-row {
  margin-top: 10px;
}

.participant-row strong,
.green {
  color: var(--green);
}

.blue {
  color: var(--aqua-dark);
}

.status-card {
  top: 46px;
  right: -10px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 13px 15px;
  font-weight: 800;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(63, 148, 108, 0.16);
}

.sms-card {
  right: 24px;
  bottom: -58px;
  width: min(270px, 68%);
  padding: 16px;
}

.sms-card p {
  margin-bottom: 8px;
  color: var(--ink);
  line-height: 1.45;
}

.sms-card span {
  color: var(--coral);
  font-size: 0.82rem;
  font-weight: 800;
}

.band {
  padding: clamp(68px, 10vw, 118px) 0;
  background: var(--white);
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 1.15fr);
  align-items: center;
  gap: clamp(32px, 7vw, 78px);
}

.pain-grid,
.use-case-grid,
.steps-grid {
  display: grid;
  gap: 14px;
}

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

.pain-grid div,
.steps-grid article,
.use-case-grid article,
.appointment-window,
.phone-mockup,
.dashboard-mockup,
.final-cta {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--soft-shadow);
}

.pain-grid div {
  min-height: 94px;
  padding: 19px;
  font-weight: 800;
  line-height: 1.35;
}

.steps-section,
.benefits,
.sms-section,
.final-cta {
  padding: clamp(74px, 11vw, 132px) 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

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

.steps-grid article {
  min-height: 246px;
  padding: 24px;
  background: var(--white);
}

.steps-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 34px;
  border-radius: 50%;
  background: rgba(44, 175, 163, 0.13);
  color: var(--aqua-dark);
  font-weight: 900;
}

.wide-photo-feature {
  position: relative;
  height: clamp(340px, 48vw, 590px);
  margin-top: clamp(34px, 6vw, 58px);
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.wide-photo-feature::after,
.section-photo-card::after,
.image-with-phone::after,
.product-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(23, 35, 38, 0.18), rgba(23, 35, 38, 0) 55%);
  pointer-events: none;
}

.access-card {
  right: 22px;
  bottom: 22px;
  display: flex;
  align-items: center;
  gap: 13px;
  width: min(360px, calc(100% - 44px));
  padding: 16px;
}

.access-card p {
  margin: 3px 0 0;
  line-height: 1.35;
}

.example-layout {
  align-items: start;
}

.appointment-window {
  overflow: hidden;
  padding: 0;
  background: var(--white);
}

.window-header {
  padding: 22px;
  background: var(--navy);
  color: var(--white);
}

.window-header span,
.window-header time {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
}

.window-header strong {
  display: block;
  margin-top: 5px;
  font-size: 1.45rem;
}

.participant-list {
  padding: 18px 22px 8px;
}

.participant-list div {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.participant-list span {
  color: var(--muted);
}

.timeline {
  margin: 4px 22px 22px;
  padding-left: 21px;
  color: var(--muted);
  line-height: 1.9;
}

.sms-section,
.benefits {
  display: grid;
  grid-template-columns: minmax(440px, 1.08fr) minmax(0, 0.92fr);
  align-items: center;
  gap: clamp(32px, 7vw, 86px);
}

.image-with-phone {
  position: relative;
  min-height: 610px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.phone-mockup {
  position: absolute;
  right: 20px;
  bottom: 20px;
  max-width: 420px;
  width: min(360px, calc(100% - 40px));
  min-height: 470px;
  margin: 0;
  padding: 18px;
  background: var(--ink);
  box-shadow: var(--shadow);
}

.phone-header {
  padding: 12px 10px 22px;
  color: var(--white);
  text-align: center;
  font-weight: 800;
}

.bubble {
  width: fit-content;
  max-width: 86%;
  margin: 14px 0;
  padding: 13px 15px;
  border-radius: 20px;
  line-height: 1.45;
}

.bubble.incoming {
  background: var(--white);
  color: var(--ink);
}

.bubble.outgoing {
  margin-left: auto;
  background: var(--aqua);
  color: var(--white);
}

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

.photo-led-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(460px, 1.22fr);
  align-items: center;
  gap: clamp(28px, 6vw, 70px);
  margin-bottom: 34px;
}

.photo-led-heading .section-heading {
  margin-bottom: 0;
}

.section-photo-card {
  position: relative;
  height: clamp(310px, 38vw, 510px);
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.mini-map-card {
  left: 22px;
  bottom: 22px;
  display: grid;
  gap: 4px;
  padding: 15px 16px;
}

.mini-map-card span {
  color: var(--muted);
  font-size: 0.9rem;
}

.use-case-grid article {
  min-height: 170px;
  padding: 24px;
  background: var(--white);
}

.photo-stack {
  position: relative;
  min-height: 520px;
}

.photo-small {
  width: 78%;
  height: 350px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.photo-small.alt {
  position: absolute;
  right: 0;
  bottom: 0;
}

.benefit-list {
  display: grid;
  gap: 13px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.benefit-list li {
  position: relative;
  padding: 15px 16px 15px 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  font-weight: 800;
}

.benefit-list li::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 21px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--aqua-dark);
}

.dashboard-mockup {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) 180px minmax(0, 0.92fr) minmax(260px, 0.62fr);
  gap: 18px;
  padding: 18px;
  background: var(--white);
}

.product-image {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: inset 0 0 0 1px var(--line);
}

.dashboard-mockup aside {
  display: grid;
  align-content: start;
  gap: 11px;
  padding: 16px;
  border-radius: var(--radius);
  background: var(--paper);
}

.dashboard-mockup button {
  min-height: 42px;
  border: 0;
  border-radius: var(--radius);
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-weight: 800;
  text-align: left;
}

.dashboard-mockup button.active {
  padding: 0 12px;
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 8px 22px rgba(23, 35, 38, 0.07);
}

.calendar-preview,
.detail-preview {
  min-height: 340px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 10px;
  margin-top: 24px;
}

.calendar-grid span {
  aspect-ratio: 1;
  border-radius: var(--radius);
  background: var(--white);
}

.calendar-grid .busy {
  background: linear-gradient(135deg, var(--aqua), var(--aqua-dark));
}

.detail-preview {
  background: var(--navy);
  color: var(--white);
}

.detail-preview p {
  color: rgba(255, 255, 255, 0.72);
}

.status-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 24px;
}

.status-pills span {
  padding: 9px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.82rem;
  font-weight: 800;
}

.final-cta {
  align-items: center;
  margin-top: clamp(58px, 9vw, 96px);
  margin-bottom: clamp(58px, 9vw, 96px);
  padding: clamp(30px, 5vw, 56px);
  background: var(--ink);
  color: var(--white);
}

.final-cta p {
  max-width: 700px;
  color: rgba(255, 255, 255, 0.72);
}

footer {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 30px 0 44px;
  border-top: 1px solid var(--line);
}

footer p {
  margin: 0;
  text-align: right;
}

@media (max-width: 980px) {
  .hero,
  .two-column,
  .sms-section,
  .benefits,
  .dashboard-mockup {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 46px;
  }

  .hero-visual {
    min-height: 560px;
  }

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

  .photo-led-heading {
    grid-template-columns: 1fr;
  }

  .dashboard-mockup aside {
    grid-template-columns: repeat(5, minmax(0, auto));
    overflow-x: auto;
  }
}

@media (max-width: 720px) {
  .site-header {
    align-items: flex-start;
    gap: 10px;
    width: min(1180px, calc(100% - 24px));
    padding: 10px;
    border-radius: 24px;
  }

  nav {
    display: none;
  }

  .header-cta {
    padding: 9px 12px;
    font-size: 0.82rem;
  }

  .logo img {
    height: 22px;
  }

  h1 {
    font-size: clamp(2.85rem, 12.4vw, 3.55rem);
    line-height: 0.98;
  }

  .hero-subtitle {
    font-size: 1.02rem;
  }

  .button-row {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .hero-visual {
    min-height: 460px;
  }

  .photo-hero {
    height: 430px;
  }

  .calendar-card {
    left: 10px;
    bottom: 58px;
    width: 76%;
  }

  .status-card {
    right: 10px;
  }

  .sms-card {
    right: 10px;
    bottom: -14px;
  }

  .pain-grid,
  .steps-grid,
  .use-case-grid {
    grid-template-columns: 1fr;
  }

  .steps-grid article {
    min-height: auto;
  }

  .window-header,
  .participant-list div,
  .calendar-top,
  .final-cta,
  footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .phone-mockup {
    min-height: 410px;
  }

  .image-with-phone {
    min-height: 540px;
  }

  .photo-stack {
    min-height: 450px;
  }

  .photo-small {
    width: 86%;
    height: 300px;
  }

  .dashboard-mockup aside {
    grid-template-columns: 1fr 1fr;
  }

  footer p {
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
  }
}
