/* Zerp site - Novoa kit layout language, Zerp teal palette
   Fonts: Plus Jakarta Sans (headings) + Inter (body) - same as Novoa global styles */

:root {
  --heading: #26272c;
  --body: #676c75;
  --white: #ffffff;
  --btn: #0d9488;
  --btn-hover: #0f766e;
  --line: #dcdcde;
  --bg-light: #eeeff1;
  --bg-xlight: #f5f7f8;
  --bg-accent: #ccfbf1;
  --bg-dark: #1c2426;
  --bg-xdark: #0b0f10;
  --accent1: #0d9488;
  --accent2: #0f766e;
  --accent3: #f0fdfa;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 10px 40px rgba(38, 39, 44, 0.08);
  --shadow-lg: 0 28px 70px rgba(15, 118, 110, 0.14), 0 12px 28px rgba(38, 39, 44, 0.1);
  --font-head: "Plus Jakarta Sans", system-ui, sans-serif;
  --font-body: Inter, system-ui, sans-serif;
  --max: 1140px;
  --nav-h: 96px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 16px);
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--body);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

:focus-visible {
  outline: 2px solid var(--btn);
  outline-offset: 3px;
}

.wrap {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

/* -- Header (Novoa) -- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(16px) saturate(1.2);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}

.site-header.is-scrolled {
  border-bottom-color: rgba(220, 220, 222, 0.9);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 8px 24px rgba(38, 39, 44, 0.04);
}

.site-header__inner {
  height: 100%;
  width: min(100% - 1.5rem, 1200px);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.logo img,
.logo svg {
  height: 42px;
  width: auto;
}

.logo .logo-mark {
  height: 42px;
}

.logo .logo-word {
  height: 26px;
}

.nav-desktop {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0.15rem;
}

.nav-desktop a {
  display: block;
  padding: 0.5rem 0.85rem;
  font-size: 15px;
  font-weight: 500;
  color: var(--heading);
  border-radius: 6px;
}

.nav-desktop a:hover,
.nav-desktop a.is-active {
  color: var(--btn);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.85rem 1.35rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 2px solid transparent;
  cursor: pointer;
  transition:
    background 0.2s,
    color 0.2s,
    border-color 0.2s,
    transform 0.15s,
    box-shadow 0.2s;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:active {
  transform: translateY(1px) scale(0.985);
}

.btn--primary {
  background: var(--btn);
  color: var(--white);
  border-color: var(--btn);
  box-shadow: 0 8px 22px rgba(13, 148, 136, 0.28);
}

.btn--primary:hover {
  background: var(--btn-hover);
  border-color: var(--btn-hover);
  box-shadow: 0 12px 28px rgba(13, 148, 136, 0.34);
}

.btn--primary:active {
  box-shadow: 0 4px 12px rgba(13, 148, 136, 0.22);
}

.btn--outline {
  background: transparent;
  color: var(--btn);
  border-color: var(--btn);
}

.btn--outline:hover {
  background: var(--accent3);
}

.btn--outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.55);
}

.btn--outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
}

.btn--white {
  background: var(--white);
  color: var(--heading);
  border-color: var(--white);
}

.btn--lg {
  padding: 1rem 1.75rem;
  font-size: 14px;
}

.nav-toggle {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--heading);
  position: relative;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle span::before {
  top: -6px;
}

.nav-toggle span::after {
  top: 6px;
}

.nav-drawer {
  display: none;
  position: absolute;
  top: var(--nav-h);
  left: 0;
  right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  padding: 0.75rem 1.25rem 1.25rem;
}

.site-header.is-open .nav-drawer {
  display: block;
}

.nav-drawer a {
  display: block;
  padding: 0.85rem 0.25rem;
  font-weight: 600;
  color: var(--heading);
  border-bottom: 1px solid var(--line);
}

@media (min-width: 980px) {
  .nav-desktop {
    display: flex;
  }
  .nav-toggle {
    display: none;
  }
  .header-actions .btn--outline {
    display: inline-flex;
  }
}

@media (max-width: 979px) {
  .header-actions .btn--outline {
    display: none;
  }
}

/* -- Hero (Novoa centered) -- */
.hero {
  position: relative;
  padding: 4.75rem 0 0;
  text-align: center;
  background: var(--white);
  overflow: hidden;
  isolation: isolate;
}

.hero__mesh {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 75% 55% at 50% -10%, rgba(13, 148, 136, 0.26), transparent 62%),
    radial-gradient(ellipse 48% 42% at 90% 20%, rgba(45, 212, 191, 0.16), transparent 58%),
    radial-gradient(ellipse 42% 38% at 10% 40%, rgba(15, 118, 110, 0.12), transparent 55%),
    radial-gradient(circle 320px at 72% 68%, rgba(94, 234, 212, 0.1), transparent 70%),
    linear-gradient(180deg, #ebf8f5 0%, #f7fffc 42%, #ffffff 78%, #f5f7f8 100%);
}

.hero__mesh::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(13, 148, 136, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(13, 148, 136, 0.045) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 85% 70% at 50% 15%, #000 15%, transparent 72%);
  -webkit-mask-image: radial-gradient(ellipse 85% 70% at 50% 15%, #000 15%, transparent 72%);
}

/* Soft vignette only - no SVG noise (that looked pixelated) */
.hero__mesh::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 80% at 50% 30%, transparent 40%, rgba(15, 118, 110, 0.04) 100%);
  pointer-events: none;
}

.hero__content,
.hero__mock {
  position: relative;
  z-index: 1;
}

.hero__eyebrow {
  margin: 0 0 1rem;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--btn);
}

.hero h1 {
  margin: 0 auto 1.1rem;
  max-width: 14ch;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(2.25rem, 5.2vw, 3.5rem);
  line-height: 1.12;
  letter-spacing: -0.04em;
  color: var(--heading);
}

.hero__line {
  display: block;
}

.hero__line--accent {
  background: linear-gradient(135deg, #0f766e 0%, #0d9488 55%, #0f766e 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__sub {
  margin: 0 auto 1.75rem;
  max-width: 40rem;
  font-size: 17px;
  color: var(--body);
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 1.75rem;
}

.proof-strip {
  list-style: none;
  margin: 0 auto 2rem;
  padding: 0;
  width: min(100%, 720px);
  display: grid;
  gap: 0.75rem;
  grid-template-columns: 1fr;
}

@media (min-width: 720px) {
  .proof-strip {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
}

.proof-strip li {
  text-align: center;
  padding: 0.85rem 0.75rem;
  border: 1px solid rgba(13, 148, 136, 0.14);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(8px);
  box-shadow: 0 8px 24px rgba(15, 118, 110, 0.05);
}

.proof-strip strong {
  display: block;
  font-family: var(--font-head);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--heading);
  margin-bottom: 0.2rem;
}

.proof-strip span {
  font-size: 12.5px;
  color: var(--body);
  line-height: 1.35;
}

.hero__proof {
  margin: 0 auto 1.75rem;
  font-size: 13px;
  font-weight: 600;
  color: #7b828c;
  letter-spacing: 0.01em;
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  justify-content: center;
  align-items: center;
  margin-bottom: 2.5rem;
  font-size: 13px;
  font-weight: 600;
  color: var(--body);
}

.hero__trust span {
  opacity: 0.75;
}

.hero__mock {
  width: min(100% - 1.5rem, 960px);
  margin: 0 auto;
  perspective: 1600px;
  padding-bottom: 0.5rem;
}

.hero__stage {
  position: relative;
  transform: rotateX(6deg) rotateY(0deg) translateZ(0);
  transform-origin: center bottom;
  transition: transform 0.6s ease;
}

.hero.is-ready .hero__stage:hover {
  transform: rotateX(2deg) translateY(-4px);
}

.hero-enter {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: calc(var(--d, 0) * 90ms);
}

.hero.is-ready .hero-enter {
  opacity: 1;
  transform: none;
}

/* -- Sections -- */
.section {
  padding: 6.75rem 0;
}

.section--light {
  background: var(--bg-xlight);
}

.section--soft {
  background:
    linear-gradient(180deg, #f7f8fa 0%, #f3f5f7 100%);
  border-block: 1px solid rgba(220, 220, 222, 0.7);
}

.section--mesh {
  position: relative;
  isolation: isolate;
  background:
    radial-gradient(ellipse 60% 50% at 0% 0%, rgba(13, 148, 136, 0.11), transparent 55%),
    radial-gradient(ellipse 50% 45% at 100% 100%, rgba(45, 212, 191, 0.09), transparent 50%),
    #f4faf8;
  overflow: hidden;
}

.section--mesh::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(13, 148, 136, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(13, 148, 136, 0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  opacity: 0.9;
}

.section--mesh > .wrap {
  position: relative;
  z-index: 1;
}

.section--muted {
  background: var(--bg-light);
}

.section--teal {
  background: var(--btn);
  color: var(--white);
}

.section--dark {
  background: var(--bg-dark);
  color: var(--white);
}

.section-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3.25rem;
}

.section-head .eyebrow {
  margin: 0 0 0.75rem;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--btn);
}

.section--teal .section-head .eyebrow,
.section--dark .section-head .eyebrow {
  color: #99f6e4;
}

.section-head h2 {
  margin: 0 0 0.9rem;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(1.85rem, 3.4vw, 2.55rem);
  line-height: 1.18;
  letter-spacing: -0.03em;
  color: var(--heading);
}

.section--teal .section-head h2,
.section--dark .section-head h2 {
  color: var(--white);
}

.section-head p {
  margin: 0;
  font-size: 16px;
  color: var(--body);
}

.section--teal .section-head p,
.section--dark .section-head p {
  color: rgba(255, 255, 255, 0.82);
}

.section-head--left {
  text-align: left;
  margin-left: 0;
  max-width: 34rem;
}

/* -- Feature cards (3-col Novoa) -- */
.card-grid-3 {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 800px) {
  .card-grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.outcome-grid .card p {
  margin: 0;
  font-size: 15px;
  color: var(--body);
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem 1.6rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(38, 39, 44, 0.06);
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  height: 100%;
}

.card img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  border-radius: var(--radius-sm);
}

.card h3 {
  margin: 0;
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--heading);
  letter-spacing: -0.02em;
}

.card p {
  margin: 0;
  flex: 1;
  font-size: 15px;
  color: var(--body);
}

.card__link {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--btn);
}

.card__link:hover {
  color: var(--btn-hover);
}

/* -- Logo / POS bar -- */
.logo-bar {
  text-align: center;
  padding: 0.5rem 0;
}

.logo-bar p {
  margin: 0 0 1.75rem;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 15px;
  color: var(--heading);
}

.logo-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 2.5rem;
  align-items: center;
}

.logo-row span {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.35rem;
  color: #9aa0a8;
  letter-spacing: -0.02em;
}

/* -- Banner with image -- */
.banner {
  position: relative;
  border-radius: 0;
  overflow: hidden;
  min-height: 320px;
  display: grid;
  align-items: center;
}

.banner__media {
  position: absolute;
  inset: 0;
}

.banner__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(13, 148, 136, 0.92) 0%, rgba(15, 118, 110, 0.78) 55%, rgba(15, 118, 110, 0.55) 100%);
}

.banner__content {
  position: relative;
  z-index: 1;
  padding: 4rem 0;
  max-width: 34rem;
  color: var(--white);
}

.banner__content h2 {
  margin: 0 0 1rem;
  font-family: var(--font-head);
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  line-height: 1.2;
  letter-spacing: -1px;
  color: var(--white);
}

.banner__content p {
  margin: 0 0 1.5rem;
  color: rgba(255, 255, 255, 0.9);
}

/* -- Icon list grid 3x3 -- */
.icon-grid {
  display: grid;
  gap: 1.75rem 1.5rem;
}

@media (min-width: 700px) {
  .icon-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1000px) {
  .icon-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.icon-item {
  padding: 0.25rem 0.15rem;
}

.icon-item__icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--accent3);
  color: var(--btn);
  display: grid;
  place-items: center;
  margin-bottom: 0.85rem;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
}

.icon-item h3 {
  margin: 0 0 0.4rem;
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--heading);
}

.icon-item p {
  margin: 0 0 0.65rem;
  font-size: 14.5px;
}

.icon-item a {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--btn);
}

.center-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 2.5rem;
}

/* -- Journey as numbered cards -- */
.steps {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 900px) {
  .steps {
    grid-template-columns: repeat(3, 1fr);
  }
}

.step {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.15rem 1.15rem 1.4rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(38, 39, 44, 0.06);
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.step__media {
  margin: -0.15rem -0.15rem 0.75rem;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: var(--accent3);
}

.step__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.step:hover .step__media img {
  transform: scale(1.04);
}

.step__num {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--btn);
  margin-bottom: 0.35rem;
}

.step h3 {
  margin: 0 0 0.45rem;
  font-family: var(--font-head);
  font-size: 1.1rem;
  color: var(--heading);
}

.step p {
  margin: 0;
  font-size: 14.5px;
}

/* -- Scale cards (4 on teal) -- */
.scale-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 800px) {
  .scale-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1100px) {
  .scale-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.scale-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

.scale-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.scale-card__body {
  padding: 1.25rem 1.2rem 1.4rem;
  display: grid;
  gap: 0.55rem;
  flex: 1;
}

.scale-card h3 {
  margin: 0;
  font-family: var(--font-head);
  font-size: 1.1rem;
  color: var(--heading);
}

.scale-card p {
  margin: 0;
  font-size: 14px;
  color: var(--body);
}

/* -- Delivery loyalty -- */
.section--delivery {
  position: relative;
  isolation: isolate;
  background:
    radial-gradient(1100px 520px at 8% -5%, rgba(13, 148, 136, 0.22), transparent 58%),
    radial-gradient(900px 420px at 100% 100%, rgba(45, 212, 191, 0.16), transparent 55%),
    linear-gradient(180deg, #e8f7f4 0%, #f2fbf9 48%, #f7f8f9 100%);
  overflow: hidden;
}

.section--delivery::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(13, 148, 136, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(13, 148, 136, 0.06) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(ellipse 90% 80% at 50% 40%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 90% 80% at 50% 40%, #000 30%, transparent 80%);
}

.section--delivery > .wrap {
  position: relative;
  z-index: 1;
}

.delivery-split {
  display: grid;
  gap: 2.5rem;
  align-items: center;
  margin-bottom: 2.75rem;
}

@media (min-width: 900px) {
  .delivery-split {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 3.5rem;
  }
}

.delivery-copy .section-head {
  margin-bottom: 1.25rem;
}

.delivery-copy .section-head p {
  margin-bottom: 0.85rem;
}

.delivery-pull {
  margin: 0 0 0.4rem;
  font-family: var(--font-head);
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  font-weight: 700;
  color: var(--heading);
  line-height: 1.35;
}

.delivery-pull-sub {
  margin: 0 0 1.5rem;
  max-width: 36rem;
}

.delivery-card-mock {
  display: flex;
  justify-content: center;
}

.delivery-visual {
  position: relative;
  min-height: 360px;
  display: grid;
  place-items: center;
}

.delivery-visual__art {
  position: absolute;
  inset: 12% 0 8% 0;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transform: rotate(2deg);
}

.delivery-visual__art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.delivery-visual .dcard {
  position: relative;
  z-index: 2;
  margin-top: 2.5rem;
  margin-left: -18%;
}

@media (max-width: 899px) {
  .delivery-visual {
    min-height: 0;
  }
  .delivery-visual__art {
    position: relative;
    inset: auto;
    transform: none;
    margin-bottom: -3.5rem;
    aspect-ratio: 16 / 10;
  }
  .delivery-visual .dcard {
    margin: 0 auto;
  }
}

.dcard {
  width: min(100%, 320px);
  background: var(--white);
  border: 1px solid rgba(13, 148, 136, 0.18);
  border-radius: 18px;
  padding: 1.35rem 1.4rem 1.2rem;
  box-shadow:
    0 18px 50px rgba(15, 118, 110, 0.14),
    0 2px 0 rgba(255, 255, 255, 0.8) inset;
  transform: rotate(-2.5deg);
  transition: transform 0.35s ease;
}

.delivery-card-mock:hover .dcard {
  transform: rotate(0deg) translateY(-4px);
}

.dcard__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.1rem;
}

.dcard__brand {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--heading);
}

.dcard__badge {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--btn-hover);
  background: var(--accent3);
  border-radius: 999px;
  padding: 0.28rem 0.55rem;
}

.dcard__headline {
  margin: 0 0 0.35rem;
  font-family: var(--font-head);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--heading);
  line-height: 1.25;
}

.dcard__sub {
  margin: 0 0 1.15rem;
  font-size: 14px;
  color: var(--body);
}

.dcard__qr {
  display: grid;
  place-items: center;
  width: 112px;
  height: 112px;
  margin: 0 auto 1rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fafafa;
}

.dcard__footer {
  margin: 0;
  text-align: center;
  font-size: 11px;
  color: #8b919a;
}

.delivery-flow {
  list-style: none;
  margin: 0;
  padding: 1.25rem;
  display: grid;
  gap: 0.85rem;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(13, 148, 136, 0.14);
  border-radius: 16px;
  box-shadow: var(--shadow);
}

@media (min-width: 720px) {
  .delivery-flow {
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    padding: 1.35rem 0.75rem;
    align-items: stretch;
  }
}

.delivery-flow__step {
  position: relative;
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 0.45rem;
  padding: 0.75rem 0.85rem;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.delivery-flow__step.is-in {
  opacity: 1;
  transform: none;
}

@media (min-width: 720px) {
  .delivery-flow__step:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 2rem;
    right: -6%;
    width: 12%;
    height: 2px;
    background: linear-gradient(90deg, rgba(13, 148, 136, 0.45), rgba(13, 148, 136, 0.08));
  }
}

.delivery-flow__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--accent3);
  color: var(--btn);
  margin-bottom: 0.15rem;
}

.delivery-flow__step strong {
  font-family: var(--font-head);
  font-size: 0.95rem;
  color: var(--heading);
  line-height: 1.3;
  font-weight: 700;
}

.delivery-flow__step span {
  font-size: 13px;
  color: var(--body);
  line-height: 1.4;
  max-width: 11rem;
}

.card__media--delivery {
  display: grid;
  place-items: center;
  min-height: 200px;
  background:
    linear-gradient(145deg, #ccfbf1 0%, #f0fdfa 45%, #e2e8f0 100%);
  border-radius: var(--radius-sm);
}

.mini-dcard {
  width: min(78%, 220px);
  background: var(--white);
  border-radius: 14px;
  padding: 1rem 1.1rem;
  box-shadow: var(--shadow);
  display: grid;
  gap: 0.75rem;
  justify-items: center;
  transform: rotate(-3deg);
}

.mini-dcard span {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--heading);
  text-align: center;
}

.mini-dcard__qr {
  width: 72px;
  height: 72px;
  border-radius: 8px;
  background:
    linear-gradient(90deg, #0b0f10 20%, transparent 20%) 0 0 / 12px 12px,
    linear-gradient(#0b0f10 20%, transparent 20%) 0 0 / 12px 12px,
    #fff;
  border: 1px solid var(--line);
}

@media (max-width: 719px) {
  .delivery-flow__step {
    grid-template-columns: 52px 1fr;
    text-align: left;
    justify-items: start;
    align-items: center;
    column-gap: 0.9rem;
  }

  .delivery-flow__icon {
    grid-row: span 2;
    margin: 0;
  }
}

/* -- Split feature + devices -- */
.split {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 900px) {
  .split {
    grid-template-columns: 1fr 1.05fr;
    gap: 3.5rem;
  }
}

.why-list {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  display: grid;
  gap: 1.1rem;
}

.why-list li {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 0.85rem;
  align-items: start;
}

.why-list__icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--accent3);
  color: var(--btn);
  display: grid;
  place-items: center;
  font-weight: 700;
  font-family: var(--font-head);
  font-size: 14px;
}

.why-list strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1.05rem;
  color: var(--heading);
  margin-bottom: 0.2rem;
}

.why-list span {
  font-size: 14.5px;
  color: var(--body);
}

.device-stack {
  position: relative;
  min-height: 360px;
  padding-bottom: 2rem;
}

.device-stack__laptop {
  width: 88%;
  margin-left: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

.device-stack__phone {
  position: absolute;
  left: 0;
  bottom: -2%;
  width: min(42%, 220px);
  z-index: 2;
}

/* -- 2x2 addon cards -- */
.card-grid-2 {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 800px) {
  .card-grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

.card--soft {
  background: var(--bg-xlight);
  box-shadow: none;
  border: 1px solid var(--line);
}

/* -- FAQ -- */
.faq {
  max-width: 760px;
  margin-inline: auto;
}

.faq details {
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 1rem 1.25rem;
  margin-bottom: 0.75rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(38, 39, 44, 0.06);
}

.section--teal {
  padding-bottom: 5.5rem;
}

.section--teal .scale-grid {
  margin-bottom: 0;
}

.faq summary {
  cursor: pointer;
  list-style: none;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--heading);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "+";
  color: var(--btn);
  font-size: 1.25rem;
  font-weight: 500;
}

.faq details[open] summary::after {
  content: "−";
}

.faq p {
  margin: 0.75rem 0 0.25rem;
  font-size: 15px;
}

/* -- Bottom CTA panel (Novoa style) -- */
.cta-band {
  padding: 0 0 5rem;
  background: var(--white);
}

.cta-band__inner {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
  background: var(--btn);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  display: grid;
  gap: 1.5rem;
  align-items: center;
  position: relative;
  overflow: visible;
}

@media (min-width: 860px) {
  .cta-band__inner {
    grid-template-columns: 1.2fr 0.8fr;
    padding: 2.75rem 3rem;
  }
}

.cta-band h2 {
  margin: 0 0 0.75rem;
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  line-height: 1.2;
  letter-spacing: -1px;
  color: var(--white);
  max-width: 16ch;
}

.cta-band p {
  margin: 0 0 1.25rem;
  color: rgba(255, 255, 255, 0.88);
  max-width: 32rem;
}

.cta-band__phone {
  justify-self: center;
  width: min(220px, 55%);
  margin-top: -3.5rem;
  margin-bottom: -1rem;
}

@media (min-width: 860px) {
  .cta-band__phone {
    margin-top: -4.5rem;
    margin-bottom: -3rem;
    width: 240px;
    justify-self: end;
  }
}

.cta-band__phone img {
  width: 100%;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.25));
}

/* -- Book form -- */
.book-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 860px) {
  .book-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
  }
}

.book-form {
  position: relative;
  display: grid;
  gap: 0.85rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.book-form label {
  display: grid;
  gap: 0.35rem;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  font-family: var(--font-head);
}

.book-form input,
.book-form select,
.book-form textarea {
  width: 100%;
  padding: 0.75rem 0.85rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(0, 0, 0, 0.2);
  color: var(--white);
}

.book-form input::placeholder,
.book-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.book-form .hp {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-note {
  margin: 0.35rem 0 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
}

.form-success {
  display: none;
  margin-top: 0.75rem;
  padding: 1rem;
  border-radius: 8px;
  background: rgba(153, 246, 228, 0.15);
  border: 1px solid rgba(153, 246, 228, 0.35);
  color: #ccfbf1;
}

.form-success.is-visible {
  display: block;
}

/* -- Footer -- */
.site-footer {
  background: var(--bg-xdark);
  color: rgba(255, 255, 255, 0.7);
  padding: 3.5rem 0 2rem;
}

.footer-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 800px) {
  .footer-grid {
    grid-template-columns: 1.2fr repeat(3, 1fr);
  }
}

.site-footer h4 {
  margin: 0 0 1rem;
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}

.site-footer a:hover {
  color: var(--white);
}

.footer-brand img,
.footer-brand svg {
  height: 36px;
  width: auto;
  margin-bottom: 0.85rem;
}

.footer-name {
  margin: 0 0 0.85rem;
  font-family: var(--font-head);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--white);
}

.footer-brand p {
  margin: 0;
  font-size: 14px;
  max-width: 22rem;
}

.footer-bottom {
  margin-top: 2.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  font-size: 13px;
}

/* -- Pricing page -- */
.page-hero {
  padding: 4rem 0 2rem;
  text-align: center;
  background: var(--bg-xlight);
}

.page-hero h1 {
  margin: 0 auto 0.85rem;
  max-width: 18ch;
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 2.8rem);
  letter-spacing: -1.2px;
  color: var(--heading);
  line-height: 1.15;
}

.page-hero p {
  margin: 0 auto;
  max-width: 36rem;
}

.plans {
  display: grid;
  gap: 1.25rem;
  margin-top: -1rem;
}

@media (min-width: 900px) {
  .plans {
    grid-template-columns: repeat(3, 1fr);
    align-items: stretch;
  }
}

.plan {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  box-shadow: var(--shadow);
  display: grid;
  gap: 0.75rem;
  align-content: start;
  position: relative;
}

.plan--featured {
  border-color: var(--btn);
  box-shadow: 0 16px 40px rgba(13, 148, 136, 0.15);
}

.plan__badge {
  position: absolute;
  top: -0.7rem;
  left: 1.25rem;
  background: var(--btn);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
}

.plan h2 {
  margin: 0;
  font-family: var(--font-head);
  font-size: 1.35rem;
  color: var(--heading);
}

.plan__price {
  margin: 0;
  font-family: var(--font-head);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--heading);
  letter-spacing: -1px;
}

.plan__price small {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--body);
}

.plan ul {
  list-style: none;
  margin: 0.5rem 0 1rem;
  padding: 0;
  display: grid;
  gap: 0.45rem;
}

.plan li {
  position: relative;
  padding-left: 1.15rem;
  font-size: 14.5px;
}

.plan li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: var(--btn);
}

.blog-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.blog-list li {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--line);
}

.blog-list time {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--btn);
  margin-bottom: 0.4rem;
  font-family: var(--font-head);
}

.blog-list h2 {
  margin: 0 0 0.4rem;
  font-family: var(--font-head);
  font-size: 1.35rem;
  color: var(--heading);
}

.blog-list .soon {
  display: inline-block;
  margin-top: 0.55rem;
  font-size: 12px;
  font-weight: 700;
  color: var(--btn);
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* -- Icons -- */
.icon {
  width: 1.25rem;
  height: 1.25rem;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

.icon--sm {
  width: 1rem;
  height: 1rem;
}

.icon--lg {
  width: 1.5rem;
  height: 1.5rem;
}

.icon-bubble {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--accent3);
  color: var(--btn);
  display: grid;
  place-items: center;
  margin-bottom: 0.85rem;
}

.icon-bubble--warn {
  background: #fef3c7;
  color: #b45309;
}

.icon-bubble--danger {
  background: #fee2e2;
  color: #dc2626;
}

.icon-bubble--ok {
  background: #d1fae5;
  color: #059669;
}

/* -- Browser frame -- */
.browser {
  background: #fff;
  border-radius: 16px 16px 0 0;
  border: 1px solid rgba(24, 24, 27, 0.08);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.8) inset,
    0 30px 80px rgba(15, 118, 110, 0.14),
    0 12px 28px rgba(15, 23, 42, 0.1);
  overflow: hidden;
  text-align: left;
}

.browser--hero {
  border-radius: 16px 16px 4px 4px;
}

.browser__chrome {
  height: 46px;
  background: linear-gradient(180deg, #fafafa 0%, #f4f4f5 100%);
  border-bottom: 1px solid #e4e4e7;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 14px;
}

.browser__dots {
  display: flex;
  gap: 7px;
  flex-shrink: 0;
}

.browser__dots i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: block;
  box-shadow: inset 0 -1px 1px rgba(0, 0, 0, 0.12);
}

.browser__dots i:nth-child(1) {
  background: #ff5f57;
}
.browser__dots i:nth-child(2) {
  background: #febc2e;
}
.browser__dots i:nth-child(3) {
  background: #28c840;
}

.browser__url {
  flex: 1;
  max-width: 420px;
  margin: 0 auto;
  height: 28px;
  background: #fff;
  border: 1px solid #e4e4e7;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-size: 12px;
  color: #52525b;
  font-weight: 500;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.9) inset;
}

.browser__live {
  display: none;
  align-items: center;
  gap: 0.4rem;
  font-size: 11px;
  font-weight: 700;
  font-family: var(--font-head);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #0f766e;
  flex-shrink: 0;
}

.browser__live i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.55);
  animation: live-pulse 1.8s ease-out infinite;
}

@media (min-width: 700px) {
  .browser__live {
    display: inline-flex;
  }
}

.browser__body img {
  width: 100%;
  display: block;
}

/* -- Phone frame -- */
.phone {
  width: min(240px, 100%);
  background: linear-gradient(160deg, #1e293b 0%, #0f172a 100%);
  border-radius: 30px;
  padding: 9px;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.12) inset,
    0 28px 60px rgba(15, 23, 42, 0.32);
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.phone::before {
  content: "";
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 68px;
  height: 7px;
  background: #020617;
  border-radius: 999px;
  z-index: 2;
}

.phone img {
  width: 100%;
  border-radius: 22px;
  display: block;
}

/* -- POS logo row -- */
.pos-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  justify-content: center;
  align-items: stretch;
  margin-top: 0.75rem;
}

.pos-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 148px;
  height: 64px;
  padding: 0.75rem 1.15rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(38, 39, 44, 0.04);
}

.pos-logo img {
  height: 30px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  object-position: center;
  display: block;
}

.pos-logo--dark {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.14);
}

.pos-logo--dark img {
  filter: brightness(0) invert(1);
}

.hero .pos-logos {
  margin-bottom: 2.25rem;
}

/* Book section fill */
.book-aside {
  display: grid;
  gap: 1.25rem;
}

.book-aside h2 {
  font-family: var(--font-head);
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  letter-spacing: -1px;
  color: #fff;
  margin: 0 0 0.75rem;
  line-height: 1.2;
  max-width: 14ch;
}

.book-aside > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  max-width: 32rem;
}

.book-aside a {
  color: #99f6e4;
  font-weight: 600;
}

.book-checklist {
  list-style: none;
  margin: 0.5rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}

.book-checklist li {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  padding: 0.85rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 14.5px;
}

.book-checklist .ico {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: rgba(153, 246, 228, 0.14);
  color: #99f6e4;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.book-pos {
  margin-top: 0.35rem;
}

.book-pos p {
  margin: 0 0 0.65rem;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  font-family: var(--font-head);
}

.book-pos .pos-logos {
  justify-content: flex-start;
}


/* -- Guest profile + timeline -- */
.memory {
  display: grid;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 960px) {
  .memory {
    grid-template-columns: 0.95fr 1.15fr;
    gap: 2.5rem;
  }
}

.guest-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.guest-card__head {
  padding: 1.35rem 1.35rem 1.1rem;
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 1rem;
  align-items: center;
  background: linear-gradient(180deg, #f0fdfa 0%, #fff 100%);
}

.guest-card__avatar {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--btn);
  color: #fff;
  display: grid;
  place-items: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.15rem;
  flex-shrink: 0;
}

.guest-card__meta h3 {
  margin: 0 0 0.25rem;
  font-family: var(--font-head);
  font-size: 1.15rem;
  color: var(--heading);
}

.guest-card__meta p {
  margin: 0;
  font-size: 13px;
  color: var(--body);
}

.guest-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.55rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  font-family: var(--font-head);
  letter-spacing: 0.02em;
}

.badge--teal {
  background: #ccfbf1;
  color: #0f766e;
}

.badge--ok {
  background: #d1fae5;
  color: #047857;
}

.badge--warn {
  background: #fef3c7;
  color: #b45309;
}

.guest-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--line);
}

.guest-stats div {
  padding: 0.95rem 0.75rem;
  text-align: center;
  border-right: 1px solid var(--line);
}

.guest-stats div:last-child {
  border-right: 0;
}

.guest-stats strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1.15rem;
  color: var(--heading);
  letter-spacing: -0.02em;
}

.guest-stats span {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--body);
}

.timeline {
  position: relative;
  padding: 1.25rem 1.35rem 1.4rem 1.35rem;
}

.timeline__title {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0 0 1.1rem;
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--heading);
}

.timeline__list {
  list-style: none;
  margin: 0;
  padding: 0 0 0 1.15rem;
  border-left: 2px solid #e4e4e7;
  display: grid;
  gap: 0;
}

.tl-item {
  position: relative;
  padding: 0 0 1.15rem 1.1rem;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.45s ease, transform 0.45s ease, background 0.2s;
  border-radius: 8px;
}

.tl-item.is-in {
  opacity: 1;
  transform: none;
}

.tl-item:last-child {
  padding-bottom: 0;
}

.tl-item__dot {
  position: absolute;
  left: -1.45rem;
  top: 0.35rem;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid #fff;
  box-shadow: 0 0 0 2px #e4e4e7;
  background: var(--btn);
}

.tl-item__dot--ok {
  background: #10b981;
  box-shadow: 0 0 0 2px #a7f3d0;
}

.tl-item__dot--bad {
  background: #ef4444;
  box-shadow: 0 0 0 2px #fecaca;
}

.tl-item__dot--muted {
  background: #94a3b8;
}

.tl-item__when {
  margin: 0 0 0.15rem;
  font-size: 12px;
  color: #71717a;
  font-weight: 500;
}

.tl-item__title {
  margin: 0;
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--heading);
}

.tl-item__detail {
  margin: 0.2rem 0 0;
  font-size: 13.5px;
  color: var(--body);
  line-height: 1.45;
}

.tl-item:hover {
  background: #f8fafc;
}

.tl-item__tag {
  display: inline-flex;
  margin-top: 0.4rem;
  padding: 0.15rem 0.5rem;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
  font-family: var(--font-head);
  background: var(--accent3);
  color: var(--btn-hover);
}

.memory__copy .section-head {
  margin-bottom: 1.25rem;
}

.memory__points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}

.memory__points li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 0.85rem 1rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
}

.memory__points strong {
  display: block;
  font-family: var(--font-head);
  font-size: 0.98rem;
  color: var(--heading);
  margin-bottom: 0.15rem;
}

.memory__points span {
  font-size: 14px;
  color: var(--body);
}

/* -- Card image hover lift -- */
.card {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(38, 39, 44, 0.12);
}

.card__media {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
}

.card__media img {
  transition: transform 0.45s ease;
}

.card:hover .card__media img {
  transform: scale(1.04);
}

/* -- Step icons -- */
.step__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--accent3);
  color: var(--btn);
  display: grid;
  place-items: center;
  margin-bottom: 0.85rem;
}

/* -- Reveal -- */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.is-in {
  opacity: 1;
  transform: none;
}

.hero__float {
  position: absolute;
  right: 3%;
  bottom: 14%;
  z-index: 3;
  display: none;
}

@media (min-width: 900px) {
  .hero__float {
    display: block;
  }
}

.float-chip {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(228, 228, 231, 0.95);
  border-radius: 14px;
  padding: 0.8rem 0.95rem;
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.14);
  display: flex;
  gap: 0.65rem;
  align-items: center;
  min-width: 220px;
  margin-bottom: 0.75rem;
  animation: floaty 4.5s ease-in-out infinite;
}

.float-chip:nth-child(2) {
  animation-delay: 0.8s;
  margin-left: 1.5rem;
}

.float-chip--pulse {
  position: relative;
}

.float-chip--pulse::after {
  content: "";
  position: absolute;
  top: 10px;
  right: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #f59e0b;
  box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.5);
  animation: live-pulse 2s ease-out infinite;
}

.float-chip strong {
  display: block;
  font-family: var(--font-head);
  font-size: 13px;
  color: var(--heading);
}

.float-chip span {
  font-size: 12px;
  color: var(--body);
}

.float-chip__ico {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: var(--accent3);
  color: var(--btn);
}

@keyframes floaty {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes live-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.55);
  }
  70% {
    box-shadow: 0 0 0 8px rgba(16, 185, 129, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
  }
}

/* Sticky demo CTA */
.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  padding: 0.85rem 1rem calc(0.85rem + env(safe-area-inset-bottom));
  background: rgba(12, 18, 20, 0.92);
  backdrop-filter: blur(14px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  transform: translateY(110%);
  opacity: 0;
  pointer-events: none;
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.25s ease;
}

.sticky-cta.is-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.sticky-cta__inner {
  width: min(100%, 960px);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.sticky-cta p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
}

.sticky-cta .btn--primary {
  flex-shrink: 0;
}

body.has-sticky-cta {
  padding-bottom: 5.5rem;
}

@media (max-width: 560px) {
  .sticky-cta p {
    font-size: 0.85rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .btn:hover,
  .btn:active,
  .card:hover,
  .step:hover .step__media img,
  .hero.is-ready .hero__stage:hover {
    transform: none;
  }
  .reveal,
  .tl-item,
  .delivery-flow__step,
  .hero-enter {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .float-chip,
  .browser__live i,
  .float-chip--pulse::after {
    animation: none;
  }
  .card:hover .card__media img {
    transform: none;
  }
  .sticky-cta {
    transition: none;
  }
}
