:root {
  --ink: #15201e;
  --muted: #5b6864;
  --line: #dfe7e2;
  --paper: #fbfbf7;
  --white: #ffffff;
  --green: #1e8a6a;
  --green-dark: #0f5f4b;
  --coral: #e46652;
  --amber: #d89b2b;
  --mist: #e9f4ef;
  --aqua: #cfeee4;
  --shadow: 0 24px 70px rgba(22, 39, 35, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 72px);
  background: rgba(18, 21, 20, 0.94);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.brand,
.nav,
.hero-actions,
.panel-top,
.appointment,
.contact-section {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  color: var(--white);
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: var(--white);
  background: var(--green);
  border-radius: 8px;
  font-weight: 900;
}

.nav {
  justify-content: center;
  gap: 28px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  font-weight: 700;
}

.nav a:hover {
  color: var(--white);
}

.header-action,
.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
}

.header-action {
  justify-self: end;
  color: var(--white);
  background: var(--green);
}

.hero {
  position: relative;
  min-height: 92vh;
  padding: 156px clamp(20px, 6vw, 88px) 72px;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 74% 30%, rgba(30, 138, 106, 0.32), transparent 32%),
    linear-gradient(180deg, #070908 0%, #101615 58%, #f7faf6 58%, #f7faf6 100%);
}

.hero::after {
  content: "";
  position: absolute;
  left: clamp(20px, 6vw, 88px);
  right: clamp(20px, 6vw, 88px);
  bottom: 0;
  height: 1px;
  background: rgba(21, 32, 30, 0.12);
}

.hero-content {
  position: relative;
  z-index: 3;
  width: min(650px, 100%);
}

.eyebrow {
  margin: 0 0 12px;
  color: #70d5b3;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 18px;
  font-size: clamp(56px, 9vw, 116px);
  line-height: 0.92;
  letter-spacing: 0;
}

.hero-lede {
  max-width: 620px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.75;
}

.hero-actions {
  gap: 12px;
  flex-wrap: wrap;
}

.primary-button {
  color: var(--white);
  background: var(--green);
  box-shadow: 0 14px 28px rgba(30, 138, 106, 0.24);
}

.primary-button:hover,
.header-action:hover {
  transform: translateY(-1px);
}

.secondary-button {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.08);
}

.hero-bg {
  position: absolute;
  z-index: 2;
  inset: 88px 0 0 auto;
  width: min(62vw, 860px);
  min-width: 640px;
  pointer-events: none;
}

.schedule-panel,
.metric-tile,
.phone-preview {
  position: absolute;
  border: 1px solid rgba(21, 32, 30, 0.1);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.panel-main {
  top: 96px;
  right: 70px;
  width: 470px;
  min-height: 450px;
  padding: 24px;
  border-radius: 18px;
}

.panel-top {
  justify-content: space-between;
  margin-bottom: 22px;
}

.panel-top span {
  color: var(--muted);
  font-weight: 800;
}

.calendar-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin-bottom: 20px;
}

.calendar-strip span {
  display: grid;
  place-items: center;
  height: 54px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  font-weight: 800;
}

.calendar-strip .active {
  color: var(--white);
  background: var(--ink);
  border-color: var(--ink);
}

.appointment {
  gap: 14px;
  min-height: 84px;
  margin-top: 12px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
}

.appointment.confirmed {
  border-color: rgba(30, 138, 106, 0.35);
  background: var(--mist);
}

.time {
  display: grid;
  place-items: center;
  width: 62px;
  height: 44px;
  border-radius: 8px;
  color: var(--green-dark);
  background: var(--aqua);
  font-size: 13px;
  font-weight: 900;
}

.appointment strong {
  display: block;
  margin-bottom: 2px;
}

.appointment p,
.phone-screen p,
.metric-tile small,
.feature-card p,
.platform-copy p,
.roadmap p,
.contact-section p,
.section-heading p,
.intro-band p {
  color: var(--muted);
}

.appointment p {
  margin: 0;
  font-size: 13px;
}

.metric-tile {
  display: grid;
  gap: 5px;
  width: 180px;
  padding: 18px;
  border-radius: 14px;
}

.metric-tile strong {
  font-size: 34px;
  line-height: 1;
}

.tile-one {
  top: 42px;
  right: 520px;
}

.tile-two {
  top: 500px;
  right: 500px;
}

.phone-preview {
  top: 292px;
  right: 30px;
  width: 210px;
  height: 390px;
  padding: 12px;
  border-radius: 30px;
  background: #111c19;
}

.phone-notch {
  width: 72px;
  height: 18px;
  margin: 0 auto 10px;
  border-radius: 0 0 12px 12px;
  background: #111c19;
}

.phone-screen {
  display: flex;
  flex-direction: column;
  justify-content: end;
  height: 332px;
  padding: 18px;
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0)),
    var(--aqua);
}

.status-pill {
  align-self: start;
  margin-bottom: 16px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  font-weight: 900;
}

.phone-screen strong {
  font-size: 25px;
  line-height: 1.12;
}

.phone-screen p {
  margin: 10px 0 18px;
  font-size: 13px;
}

.mini-button {
  display: grid;
  place-items: center;
  height: 42px;
  border-radius: 8px;
  color: var(--white);
  background: var(--green-dark);
  font-size: 13px;
  font-weight: 900;
}

.intro-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: 0 clamp(20px, 6vw, 88px);
  border: 1px solid var(--line);
  background: var(--line);
  transform: translateY(-24px);
}

.intro-band div {
  min-height: 190px;
  padding: 28px;
  background: var(--white);
}

.intro-band span {
  display: block;
  margin-bottom: 32px;
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
}

.intro-band strong {
  display: block;
  margin-bottom: 8px;
  font-size: 20px;
}

.intro-band p {
  margin-bottom: 0;
}

.section {
  padding: 92px clamp(20px, 6vw, 88px);
}

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

h2 {
  margin-bottom: 16px;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1.04;
  letter-spacing: 0;
}

.section-heading p,
.platform-copy p,
.contact-section p {
  max-width: 710px;
  font-size: 18px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.live-section {
  padding-top: 68px;
}

.live-gallery {
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  grid-template-rows: repeat(2, minmax(260px, 1fr));
  gap: 18px;
}

.live-card {
  position: relative;
  min-height: 260px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--ink);
}

.live-card-large {
  grid-row: span 2;
  min-height: 540px;
}

.live-card img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.96) contrast(1.04);
}

.live-card-large img {
  object-position: center 42%;
}

.live-card-app img {
  object-position: center 46%;
}

.live-card-handoff img {
  object-position: center 38%;
}

.live-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(21, 32, 30, 0) 42%, rgba(21, 32, 30, 0.82) 100%);
}

.live-card figcaption {
  position: absolute;
  z-index: 1;
  left: 22px;
  right: 22px;
  bottom: 20px;
  color: var(--white);
}

.live-card figcaption strong {
  display: block;
  margin-bottom: 5px;
  font-size: 22px;
}

.live-card figcaption span {
  display: block;
  color: rgba(255, 255, 255, 0.78);
}

.booking-preview {
  position: absolute;
  z-index: 1;
  top: 18px;
  right: 18px;
  display: grid;
  gap: 3px;
  width: min(210px, calc(100% - 36px));
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.54);
  border-radius: 12px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 42px rgba(21, 32, 30, 0.24);
  backdrop-filter: blur(12px);
}

.booking-preview span {
  color: var(--green-dark);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.booking-preview strong {
  font-size: 18px;
  line-height: 1.18;
}

.booking-preview small {
  color: var(--muted);
  font-weight: 800;
}

.feature-card {
  min-height: 420px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.icon-dot {
  display: block;
  width: 38px;
  height: 38px;
  margin-bottom: 34px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: inset 12px -12px 0 rgba(255, 255, 255, 0.28);
}

.icon-dot.coral {
  background: var(--coral);
}

.icon-dot.amber {
  background: var(--amber);
}

.feature-card h3 {
  margin-bottom: 12px;
  font-size: 23px;
  line-height: 1.22;
}

.feature-card h3 span {
  display: block;
  margin-top: 8px;
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.feature-card p {
  margin-bottom: 0;
  font-size: 15px;
  line-height: 1.82;
}

.platform-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) 1fr;
  gap: clamp(36px, 6vw, 92px);
  align-items: start;
  background: #eef5f1;
}

.roadmap {
  display: grid;
  gap: 14px;
}

.roadmap div {
  display: grid;
  grid-template-columns: 82px 160px 1fr;
  align-items: center;
  gap: 20px;
  min-height: 106px;
  padding: 22px;
  border: 1px solid rgba(21, 32, 30, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.74);
}

.roadmap span {
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.roadmap strong {
  font-size: 24px;
}

.roadmap p {
  margin: 0;
}

.contact-section {
  justify-content: space-between;
  gap: 30px;
  margin: 88px clamp(20px, 6vw, 88px);
  padding: clamp(32px, 6vw, 64px);
  border-radius: 8px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(21, 32, 30, 0.98), rgba(15, 95, 75, 0.94)),
    var(--ink);
}

.contact-section .eyebrow,
.contact-section p {
  color: rgba(255, 255, 255, 0.74);
}

.contact-section h2 {
  margin-bottom: 14px;
}

.contact-section p {
  margin-bottom: 0;
}

.primary-button.dark {
  flex: 0 0 auto;
  color: var(--ink);
  background: var(--white);
  box-shadow: none;
}

.download-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 42px clamp(20px, 6vw, 88px) 58px;
  border-top: 1px solid var(--line);
}

.download-section h2 {
  margin-bottom: 10px;
  font-size: clamp(28px, 4vw, 46px);
}

.download-section p:not(.eyebrow) {
  max-width: 560px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 17px;
}

.store-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.store-button {
  display: grid;
  grid-template-columns: 58px 1fr;
  align-items: center;
  gap: 12px;
  min-width: 210px;
  min-height: 68px;
  padding: 10px 14px;
  border-radius: 8px;
  color: var(--white);
  background: var(--ink);
  box-shadow: 0 14px 34px rgba(21, 32, 30, 0.16);
}

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

.store-icon {
  display: grid;
  place-items: center;
  min-width: 58px;
  height: 44px;
  border-radius: 8px;
  color: var(--ink);
  background: var(--white);
  font-size: 12px;
  font-weight: 900;
}

.store-button small,
.store-button strong {
  display: block;
  line-height: 1.1;
}

.store-button small {
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  font-weight: 800;
}

.store-button strong {
  font-size: 19px;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 128px;
    padding-bottom: 420px;
  }

  .hero-bg {
    inset: auto auto 0 50%;
    width: 700px;
    min-width: 700px;
    height: 450px;
    transform: translateX(-50%) scale(0.78);
    transform-origin: bottom center;
  }

  .intro-band,
  .live-gallery,
  .product-grid,
  .platform-section {
    grid-template-columns: 1fr;
  }

  .live-gallery {
    grid-template-rows: auto;
  }

  .live-card-large {
    grid-row: auto;
    min-height: 360px;
  }

  .intro-band {
    transform: none;
  }

  .roadmap div {
    grid-template-columns: 78px 1fr;
  }

  .roadmap p {
    grid-column: 2;
  }

  .contact-section {
    align-items: flex-start;
    flex-direction: column;
  }

  .download-section {
    align-items: flex-start;
    flex-direction: column;
  }

  .store-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 620px) {
  .site-header {
    padding: 14px 16px;
  }

  .brand span:last-child {
    font-size: 15px;
  }

  .header-action {
    min-height: 40px;
    padding: 0 12px;
    font-size: 13px;
  }

  .hero {
    padding: 108px 18px 360px;
  }

  .hero-lede {
    font-size: 17px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions a {
    width: 100%;
  }

  .hero-bg {
    width: 680px;
    min-width: 680px;
    transform: translateX(-50%) scale(0.6);
  }

  .intro-band {
    margin: 0 18px;
  }

  .intro-band div,
  .live-card,
  .feature-card {
    min-height: auto;
  }

  .section {
    padding: 72px 18px;
  }

  .live-card {
    aspect-ratio: 4 / 3;
  }

  .booking-preview {
    top: 14px;
    right: 14px;
    width: min(190px, calc(100% - 28px));
    padding: 12px;
  }

  .live-card-large {
    aspect-ratio: 4 / 5;
  }

  .roadmap div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .roadmap p {
    grid-column: auto;
  }

  .contact-section {
    margin: 72px 18px;
    padding: 28px;
  }

  .contact-section .primary-button {
    width: 100%;
  }

  .download-section {
    padding: 36px 18px 44px;
  }

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