:root {
  --bg: #090908;
  --bg-soft: #111110;
  --panel: rgba(20, 20, 18, 0.82);
  --panel-strong: rgba(24, 24, 22, 0.97);
  --text: #f0ede8;
  --muted: rgba(240, 237, 232, 0.56);
  --faint: rgba(240, 237, 232, 0.3);
  --line: rgba(240, 237, 232, 0.1);
  --line-strong: rgba(240, 237, 232, 0.22);
  --accent: #c9b49a;
  --accent-dim: #a89070;
  --accent-deep: #6b5c44;
  --accent-glow: rgba(201, 180, 154, 0.14);
  --silver: rgba(240, 237, 232, 0.7);
  --radius-xl: 32px;
  --radius-lg: 22px;
  --shadow: 0 32px 96px rgba(0, 0, 0, 0.6);
  --max: 1560px;
  --font-display: "Aptos Display", "Aptos", "Segoe UI Variable Display", "Inter", "Helvetica Neue", Arial, sans-serif;
  --font-body: "Aptos", "Segoe UI Variable Text", "Inter", "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background: var(--bg);
  font-family: var(--font-body);
  font-weight: 400;
  letter-spacing: -0.006em;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
  overflow-x: hidden;
}

body::before,
body::after {
  position: fixed;
  inset: 0;
  pointer-events: none;
  content: "";
}

body::before {
  z-index: -2;
  background:
    radial-gradient(ellipse 80% 50% at 55% 0%, rgba(201, 180, 154, 0.05), transparent),
    radial-gradient(ellipse 60% 40% at 15% 85%, rgba(201, 180, 154, 0.03), transparent),
    radial-gradient(ellipse 100% 60% at 50% 50%, rgba(15, 14, 12, 0.7), transparent),
    linear-gradient(180deg, #090908 0%, #0d0c0a 45%, #090908 100%);
  background-repeat: no-repeat, no-repeat, no-repeat, no-repeat;
  background-size: 100% 100%, 100% 100%, 100% 100%, 100% 100%;
}

body::after {
  z-index: 50;
  opacity: 0.045;
  background-image: radial-gradient(rgba(240, 237, 232, 0.9) 0.65px, transparent 0.65px);
  background-size: 4px 4px;
  mix-blend-mode: overlay;
}

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

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

/* ── Universal icon centering ──────────────────────────────────────────── */
/* Every circle/square icon container uses flex so the SVG child is always
   perfectly centred, regardless of browser quirks with grid place-items.  */
.automation-icon,
.growth-metric-icon,
.faq-contact-icon,
.control-icon,
.control-hub-icon,
.control-step-icon,
.feature-row-icon,
.hero-badge-icon,
.link-icon,
.channel-icon-stack {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Inline helpers */
.link-icon {
  display: inline-flex;
}

/* Arrow button used in control-actions */
.control-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  color: var(--accent);
  font-style: normal;
}

/* All icon SVGs: block + no shrink so they stay at their declared size */
.automation-icon svg,
.growth-metric-icon svg,
.growth-rocket svg,
.faq-contact-icon svg,
.control-icon svg,
.control-hub-icon svg,
.control-step-icon svg,
.feature-row-icon svg,
.hero-badge-icon svg,
.link-icon svg,
.channel-icon-stack svg,
.control-arrow svg,
.inline-icon {
  display: block;
  flex-shrink: 0;
  margin: 0;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
}
/* ─────────────────────────────────────────────────────────────────────── */

.section {
  position: relative;
  width: 100%;
  padding: 128px clamp(24px, 5vw, 80px);
}

.section:not(.hero) {
  content-visibility: auto;
  contain-intrinsic-size: 900px;
}

/* Soft top & bottom fades so sections bleed into the page background */
.section:not(.hero)::before,
.section:not(.hero)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: clamp(80px, 12vw, 160px);
  pointer-events: none;
}

.section:not(.hero)::before {
  top: 0;
  background: linear-gradient(to bottom, var(--bg) 0%, transparent 100%);
}

.section:not(.hero)::after {
  bottom: 0;
  background: linear-gradient(to top, var(--bg) 0%, transparent 100%);
}

/* ─── Full-page cinematic ambient light ─────────────────────────────────── */
/* One continuous gradient canvas spanning the entire <main>, no section
   boundaries. Blooms are spread across the full page height so light flows
   uninterrupted as the user scrolls. */
main {
  position: relative;
}

main::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  content: "";
  background:
    /* Hero / top, warm spotlight right-center */
    radial-gradient(ellipse 75% 16% at 62% 5%,  rgba(240, 237, 232, 0.055), transparent),
    /* Platform, left bloom */
    radial-gradient(ellipse 60% 12% at 18% 20%, rgba(240, 237, 232, 0.044), transparent),
    /* Solutions, right bloom */
    radial-gradient(ellipse 65% 13% at 78% 36%, rgba(240, 237, 232, 0.048), transparent),
    /* Growth, wide centered beacon */
    radial-gradient(ellipse 85% 12% at 50% 52%, rgba(240, 237, 232, 0.05),  transparent),
    /* FAQ, soft left shimmer */
    radial-gradient(ellipse 55% 11% at 22% 68%, rgba(201, 180, 154, 0.036), transparent),
    /* Demo / bottom, central fade-in */
    radial-gradient(ellipse 80% 14% at 55% 84%, rgba(240, 237, 232, 0.054), transparent);
}

main > * {
  position: relative;
  z-index: 1;
}
/* ─────────────────────────────────────────────────────────────────────────── */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 40;
  width: 100%;
  padding: 8px clamp(12px, 2vw, 24px);
}

.site-nav {
  width: 100%;
}

.site-nav-panel {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 24px;
  transition:
    max-width 300ms ease,
    padding 300ms ease,
    background 300ms ease,
    border-color 300ms ease,
    border-radius 240ms ease,
    box-shadow 300ms ease,
    backdrop-filter 300ms ease;
}

.site-header.is-scrolled .site-nav-panel {
  max-width: 980px;
  padding: 0 24px;
  border-color: var(--line);
  background: rgba(2, 7, 6, 0.58);
  box-shadow: 0 24px 90px rgba(0, 0, 0, 0.36);
  backdrop-filter: blur(18px);
}

.site-nav-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 76px;
}

.brand,
.desktop-nav,
.header-actions,
.header-buttons,
.auth-button {
  display: flex;
  align-items: center;
}

.brand {
  grid-column: 1;
  line-height: 0;
}

.desktop-nav-wrap {
  grid-column: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-toggle {
  grid-column: 3;
  justify-self: end;
}

.brand-logo {
  display: block;
  height: auto;
  max-height: 18px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.desktop-nav {
  gap: 24px;
  padding: 0;
  margin: 0;
  color: rgba(244, 247, 245, 0.82);
  font-size: 14px;
  list-style: none;
}

.desktop-nav a {
  display: block;
  transition: color 160ms ease, transform 160ms ease;
}

.desktop-nav a:hover {
  color: var(--text);
  opacity: 1;
  transform: translateY(-1px);
}

.header-actions {
  grid-column: 3;
  justify-content: flex-end;
  gap: 16px;
}

.mobile-nav {
  display: none;
}

.header-buttons {
  gap: 12px;
}

.auth-button {
  justify-content: center;
  min-height: 36px;
  padding: 0 16px;
  border: 1px solid transparent;
  border-radius: 12px;
  color: var(--text);
  font-size: 14px;
  font-weight: 680;
  letter-spacing: -0.01em;
  transition: background 280ms ease, border-color 280ms ease, color 280ms ease, transform 280ms ease;
}

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

.auth-primary {
  color: #0a0908;
  border-color: rgba(255, 255, 255, 0.55);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.96), rgba(240, 237, 232, 0.88));
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
}

.auth-primary:hover {
  background: linear-gradient(160deg, #ffffff, rgba(240, 237, 232, 0.96));
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.36);
}

.menu-toggle {
  display: none;
  position: relative;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
}

.menu-toggle span {
  position: absolute;
  left: 50%;
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--text);
  transform: translateX(-50%);
  transition: transform 200ms ease, opacity 200ms ease;
}

.menu-toggle span:first-child {
  top: 17px;
}

.menu-toggle span:last-child {
  top: 26px;
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateX(-50%) translateY(4.5px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateX(-50%) translateY(-4.5px) rotate(-45deg);
}

.hero {
  position: relative;
  display: grid;
  justify-items: center;
  width: 100%;
  max-width: 100%;
  min-height: 100vh;
  padding-top: 126px;
  padding-bottom: 0;
  overflow: hidden;
  box-sizing: border-box;
}

.hero > .hero-copy,
.hero > .hero-product,
.hero > .hero-trust {
  width: 100%;
  max-width: 1180px;
  min-width: 0;
  justify-self: center;
  box-sizing: border-box;
}

.hero > .hero-copy {
  max-width: 960px;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: clamp(140px, 20vw, 260px);
  background: linear-gradient(to top, var(--bg) 0%, transparent 100%);
  pointer-events: none;
  z-index: 4;
}

.hero-lines {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  opacity: 0.38;
}

.hero-ambient {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.5;
  overflow: hidden;
}

.hero-ambient i {
  position: absolute;
  top: 0;
  left: 0;
  height: 80rem;
  border-radius: 999px;
  transform: translateY(-350px) rotate(-45deg);
  background: radial-gradient(50% 50% at 50% 50%, rgba(217, 217, 217, 0.06) 0%, rgba(115, 115, 115, 0.02) 80%, transparent 100%);
}

.hero-ambient i:nth-child(1) {
  width: 35rem;
  background: radial-gradient(68.54% 68.72% at 55.02% 31.46%, rgba(217, 217, 217, 0.08) 0%, rgba(140, 140, 140, 0.02) 50%, rgba(115, 115, 115, 0) 80%);
}

.hero-ambient i:nth-child(2) {
  width: 14rem;
  transform: translate(5%, -50%) rotate(-45deg);
}

.hero-ambient i:nth-child(3) {
  width: 14rem;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}

.eyebrow {
  margin: 0 0 24px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.9;
}

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

h1,
h2,
h3 {
  font-family: var(--font-display);
  letter-spacing: -0.024em;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(48px, 5vw, 82px);
  font-weight: 640;
  line-height: 1.06;
}

.hero h1 {
  max-width: 960px;
  margin: 52px auto 28px;
  font-size: clamp(52px, 6.5vw, 92px);
  font-weight: 440;
  line-height: 1.07;
  letter-spacing: -0.04em;
}

h1 span,
h2 span {
  display: block;
  color: var(--accent);
  font-weight: 300;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(30px, 3.2vw, 50px);
  font-weight: 580;
  line-height: 1.1;
}

h3 {
  margin-bottom: 10px;
  font-size: 21px;
  font-weight: 660;
  line-height: 1.2;
  letter-spacing: -0.015em;
}

.hero-copy p:not(.eyebrow),
.section-heading p,
.split-copy p,
.investor-copy p,
.demo-panel p {
  color: var(--muted);
  font-size: clamp(17px, 1.22vw, 20px);
  line-height: 1.55;
}

.hero-copy > p {
  max-width: 640px;
  margin-right: auto;
  margin-left: auto;
  color: rgba(244, 247, 245, 0.92);
  font-size: 17px;
  line-height: 1.65;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-height: 30px;
  padding: 3px 5px 3px 16px;
  border: 1px solid rgba(244, 247, 245, 0.08);
  border-top-color: rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  color: var(--text);
  font-size: 13px;
  font-weight: 680;
  background: rgba(255, 255, 255, 0.055);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
  transition: background 300ms ease, border-color 300ms ease, transform 300ms ease;
}

.hero-badge:hover {
  border-color: rgba(240, 237, 232, 0.18);
  background: rgba(255, 255, 255, 0.07);
  transform: translateY(-1px);
}

.hero-badge-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.065);
}

.hero-badge-icon svg {
  width: 12px;
  height: 12px;
  margin: 0;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  margin-top: 40px;
}

.button {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 42px;
  padding: 0 20px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 680;
  letter-spacing: -0.01em;
  transition: transform 300ms ease, box-shadow 300ms ease, background 300ms ease, border-color 300ms ease;
}

.button::before,
:is(.header-cta, .integration-cta, .growth-demo, .faq-contact-link)::before {
  position: absolute;
  inset: 1px;
  pointer-events: none;
  border-radius: inherit;
  content: "";
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.12), transparent 50%);
  opacity: 0.42;
}

.link-icon {
  display: inline-grid;
  place-items: center;
  width: 18px;
  min-width: 18px;
  height: 18px;
}

.link-icon svg {
  width: 18px;
  height: 18px;
}

.button > *,
:is(.header-cta, .integration-cta, .growth-demo, .faq-contact-link) > * {
  position: relative;
  z-index: 1;
}

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

.button-primary {
  color: #0a0908;
  border: 1px solid rgba(255, 255, 255, 0.52);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.68)),
    #ffffff;
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.button-ghost {
  color: var(--text);
  border: 1px solid rgba(240, 237, 232, 0.32);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.05);
  box-shadow:
    0 4px 20px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.button-ghost::before {
  opacity: 0.35;
}

.button-ghost:hover {
  border-color: rgba(240, 237, 232, 0.48);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.06)),
    rgba(255, 255, 255, 0.08);
  box-shadow:
    0 10px 28px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.hero-actions .button {
  min-height: 48px;
  padding: 0 28px;
  border-radius: 999px;
  font-size: 14px;
}

.hero-trust {
  position: relative;
  z-index: 2;
  margin-top: clamp(28px, 4vw, 48px);
  padding: 0 clamp(8px, 1.5vw, 18px);
  overflow: hidden;
}

.hero-trust-label {
  margin: 0 0 18px;
  color: rgba(240, 237, 232, 0.38);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.16em;
  text-align: center;
  text-transform: uppercase;
}

.trust-marquee {
  position: relative;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow: hidden;
  contain: layout paint;
  padding: 14px 0;
  border-top: 1px solid rgba(240, 237, 232, 0.08);
  border-bottom: 1px solid rgba(240, 237, 232, 0.08);
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    #000 10%,
    #000 90%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    #000 10%,
    #000 90%,
    transparent 100%
  );
}

.trust-marquee::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background: linear-gradient(
    180deg,
    rgba(201, 180, 154, 0.03) 0%,
    transparent 48%,
    rgba(201, 180, 154, 0.02) 100%
  );
}

.trust-marquee-track {
  display: flex;
  align-items: center;
  gap: clamp(36px, 5vw, 64px);
  width: max-content;
  padding-inline: clamp(36px, 5vw, 64px);
  animation: trustMarquee 42s linear infinite;
  will-change: transform;
}

.trust-logo {
  flex-shrink: 0;
  color: rgba(240, 237, 232, 0.42);
  font-size: clamp(14px, 1.05vw, 17px);
  font-weight: 560;
  letter-spacing: -0.01em;
  white-space: nowrap;
  transition: color 320ms ease, opacity 320ms ease;
}

.trust-logo:nth-child(3n + 1) {
  color: rgba(240, 237, 232, 0.52);
}

.trust-logo:nth-child(5n) {
  font-weight: 620;
  letter-spacing: 0.02em;
  text-transform: lowercase;
}

@keyframes trustMarquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.trust-marquee:hover .trust-marquee-track {
  animation-play-state: paused;
}

@media (min-width: 901px) {
  .hero-trust {
    margin-top: clamp(36px, 4.5vw, 56px);
  }

  .hero-trust-label {
    margin-bottom: 22px;
    color: rgba(240, 237, 232, 0.88);
    font-size: 12px;
    letter-spacing: 0.18em;
  }

  .trust-marquee {
    padding: 20px 0;
    border-top-color: rgba(240, 237, 232, 0.22);
    border-bottom-color: rgba(240, 237, 232, 0.22);
    -webkit-mask-image: linear-gradient(
      to right,
      transparent 0%,
      #000 6%,
      #000 94%,
      transparent 100%
    );
    mask-image: linear-gradient(
      to right,
      transparent 0%,
      #000 6%,
      #000 94%,
      transparent 100%
    );
  }

  .trust-marquee::before {
    background: linear-gradient(
      180deg,
      rgba(201, 180, 154, 0.1) 0%,
      transparent 48%,
      rgba(201, 180, 154, 0.08) 100%
    );
  }

  .trust-marquee-track {
    gap: 72px;
    padding-inline: 72px;
    animation-duration: 48s;
  }

  .trust-logo {
    color: rgba(240, 237, 232, 0.9);
    font-size: clamp(18px, 1.4vw, 24px);
    font-weight: 600;
  }

  .trust-logo:nth-child(3n + 1) {
    color: #f0ede8;
  }

  .trust-logo:nth-child(5n) {
    font-weight: 650;
    color: var(--accent);
  }
}

.partner-strip {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 42px;
  color: rgba(244, 247, 245, 0.66);
  font-size: clamp(18px, 1.3vw, 24px);
  font-weight: 720;
}

.partner-strip span {
  min-height: 38px;
  padding-right: 28px;
  margin-right: 28px;
  border-right: 1px solid rgba(244, 247, 245, 0.16);
  line-height: 1.05;
}

.partner-strip span:last-child {
  border-right: 0;
}

.hero-subpoints {
  align-items: stretch;
  gap: 12px;
  max-width: 680px;
}

.hero-subpoints span {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 0 22px 0 0;
  color: rgba(244, 247, 245, 0.78);
  font-size: clamp(15px, 1vw, 17px);
  font-weight: 680;
  line-height: 1.22;
}

.hero-subpoints span::before {
  width: 5px;
  height: 5px;
  margin-right: 14px;
  border-radius: 50%;
  content: "";
  background: var(--accent);
  opacity: 0.8;
}

.hero-product {
  position: relative;
  z-index: 1;
  min-width: 0;
  margin-top: clamp(56px, 7vw, 86px);
  padding: 0 clamp(8px, 1.5vw, 18px);
}

.hero-product::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 52%;
  background: linear-gradient(to bottom, transparent 0%, var(--bg) 100%);
  pointer-events: none;
  z-index: 2;
  border-radius: inherit;
}

.dashboard-shell {
  position: relative;
  overflow: hidden;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.035);
  box-shadow: 0 26px 90px rgba(0, 0, 0, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.dashboard-shell::before {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  content: "";
  background: linear-gradient(180deg, transparent 34%, var(--background) 100%);
}

.hero-screen-image {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 15 / 8;
  object-fit: cover;
  border-radius: 18px;
  background: var(--background);
}

.dashboard-rail {
  display: grid;
  align-content: start;
  justify-items: center;
  gap: 20px;
  padding: 20px 0;
  border-right: 1px solid var(--line);
}

.rail-logo {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 10px;
  color: #0a0908;
  font-weight: 900;
  background: var(--accent-dim);
}

.dashboard-rail i {
  width: 30px;
  height: 30px;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.09);
}

.dashboard-main {
  padding: 24px;
}

.dashboard-topbar,
.panel-heading,
.calendar-toolbar,
.calendar-summary {
  display: flex;
  align-items: center;
}

.dashboard-topbar {
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}

.dashboard-topbar h2 {
  margin: 0;
  font-size: 25px;
  letter-spacing: -0.02em;
}

.dashboard-topbar p,
.metric-cards span,
.metric-cards small {
  margin: 0;
  color: var(--faint);
  font-size: 12px;
}

.date-chip,
.calendar-toolbar span,
.calendar-toolbar button {
  padding: 10px 14px;
  border: 1px solid rgba(240, 237, 232, 0.1);
  border-radius: 10px;
  color: rgba(244, 247, 245, 0.62);
  background: rgba(255, 255, 255, 0.04);
}

.metric-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 16px;
}

.metric-cards article,
.chart-panel,
.donut-panel,
.task-panel,
.map-panel,
.feature-row span,
.automation-card,
.investor-metrics,
.demo-panel,
.integrations-panel {
  border: 1px solid rgba(240, 237, 232, 0.11);
  background: rgba(255, 255, 255, 0.045);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.metric-cards article {
  min-height: 108px;
  padding: 16px;
  border-radius: 15px;
}

.metric-cards strong {
  display: block;
  margin: 10px 0 4px;
  font-size: 29px;
  font-weight: 560;
}

.metric-cards small {
  color: var(--accent-dim);
}

.dashboard-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(220px, 0.8fr);
  gap: 14px;
}

.chart-panel,
.donut-panel,
.task-panel,
.map-panel {
  border-radius: 16px;
  padding: 16px;
}

.chart-panel {
  min-height: 250px;
}

.panel-heading {
  align-items: flex-start;
  flex-direction: column;
}

.panel-heading span,
.donut-panel span,
.task-panel span,
.map-panel span {
  color: var(--text);
  font-size: 14px;
  font-weight: 720;
}

.panel-heading strong {
  margin-top: 9px;
  font-size: 22px;
  font-weight: 560;
}

.chart-panel svg {
  width: 100%;
  height: 180px;
  margin-top: 12px;
}

.chart-fill {
  fill: rgba(201, 180, 154, 0.12);
}

.chart-line {
  fill: none;
  stroke: var(--accent-dim);
  stroke-linecap: round;
  stroke-width: 5;
}

.donut {
  width: 118px;
  aspect-ratio: 1;
  margin: 24px auto 20px;
  border-radius: 50%;
  background: conic-gradient(var(--accent) 0 62%, rgba(240, 237, 232, 0.4) 62% 90%, rgba(240, 237, 232, 0.14) 90% 100%);
  mask: radial-gradient(circle, transparent 0 42%, #000 43%);
}

.donut-panel p,
.task-panel p {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin: 11px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.task-panel p {
  padding: 11px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.035);
}

.task-panel b {
  color: var(--accent);
  font-weight: 620;
}

.world-map {
  position: relative;
  height: 150px;
  margin-top: 20px;
  border-radius: 14px;
  background:
    radial-gradient(circle at 20% 45%, rgba(240, 237, 232, 0.55) 0 5px, transparent 6px),
    radial-gradient(circle at 45% 34%, rgba(240, 237, 232, 0.42) 0 4px, transparent 5px),
    radial-gradient(circle at 70% 48%, rgba(240, 237, 232, 0.5) 0 6px, transparent 7px),
    repeating-radial-gradient(circle at 50% 50%, rgba(244, 247, 245, 0.16) 0 1px, transparent 1px 7px);
  opacity: 0.85;
}

.stats-band {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0;
  width: min(var(--max), calc(100% - 96px));
  margin: 0 auto;
  padding: 24px 26px;
  border: 1px solid rgba(240, 237, 232, 0.16);
  border-radius: 18px;
  background: rgba(6, 14, 14, 0.72);
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(20px);
}

.stat-card {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 18px;
  min-height: 86px;
  padding: 10px 28px;
  border-right: 1px solid rgba(240, 237, 232, 0.15);
}

.stat-card:last-child {
  border-right: 0;
}

.stat-icon {
  grid-row: span 2;
  color: var(--accent-dim);
  font-size: 28px;
}

.stat-card strong {
  color: var(--accent);
  font-size: clamp(24px, 2vw, 31px);
  font-weight: 540;
}

.stat-card p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.35;
}

.problem-solution-flow {
  padding-bottom: clamp(56px, 7vw, 80px);
}

.problem-solution-flow::after {
  display: none;
}

.problem-solution-flow .section-heading:first-of-type {
  margin-bottom: 0;
}

.platform-solution-heading {
  margin-top: 0;
}

.solution-bridge {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin: clamp(32px, 4.5vw, 48px) auto;
  padding: 0;
  pointer-events: none;
}

.solution-bridge-line {
  width: 1px;
  flex-shrink: 0;
}

.solution-bridge-line-top {
  height: clamp(28px, 4vw, 40px);
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(201, 180, 154, 0.38)
  );
}

.solution-bridge-line-bottom {
  height: clamp(28px, 4vw, 40px);
  background: linear-gradient(
    to bottom,
    rgba(201, 180, 154, 0.38),
    transparent
  );
}

.solution-bridge-node {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(201, 180, 154, 0.35);
  border-radius: 999px;
  color: var(--accent);
  background: transparent;
  box-shadow: 0 0 20px rgba(201, 180, 154, 0.1);
}

.solution-bridge-node svg {
  display: block;
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

#platform::before {
  display: none;
}

.platform {
  padding-top: 0;
}

.section-heading {
  max-width: 840px;
  margin: 0 auto 54px;
  text-align: center;
}

.section-heading h2 {
  text-wrap: balance;
}

.operations-layout {
  display: grid;
  grid-template-columns: minmax(280px, 360px) minmax(0, 1fr);
  gap: 34px;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.feature-list {
  display: grid;
  gap: 0;
}

.feature-row {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 22px;
  width: 100%;
  padding: 20px 0;
  border-bottom: 1px solid rgba(240, 237, 232, 0.11);
  border-top: 0;
  border-right: 0;
  border-left: 0;
  color: inherit;
  text-align: left;
  background: transparent;
  cursor: pointer;
  font: inherit;
  transition: border-color 180ms ease, opacity 180ms ease, padding-left 180ms ease;
}

.feature-row.active {
  border-left: 3px solid var(--accent-dim);
  padding-left: 18px;
}

.feature-row:not(.active) {
  opacity: 0.72;
}

.feature-row:hover,
.feature-row:focus-visible {
  opacity: 1;
}

.feature-row:focus-visible {
  outline: 1px solid rgba(240, 237, 232, 0.54);
  outline-offset: 6px;
}

.feature-row span {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  border-radius: 12px;
  color: var(--accent);
  box-shadow: 0 0 30px rgba(201, 180, 154, 0.08);
}

.feature-row-icon svg {
  display: block;
  flex-shrink: 0;
  width: 26px;
  height: 26px;
}

.feature-row p,
.automation-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.48;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  width: fit-content;
  margin-top: 28px;
  color: var(--accent);
  font-weight: 780;
}

.calendar-preview {
  padding: 28px;
  border: 1px solid rgba(240, 237, 232, 0.14);
  border-radius: 24px;
  background: rgba(8, 17, 17, 0.62);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.platform-preview-panel {
  display: none;
  min-height: 600px;
}

.platform-preview-panel.is-active {
  display: block;
  animation: platformPreviewIn 520ms cubic-bezier(0.2, 0.9, 0.2, 1) both;
}

@keyframes platformPreviewIn {
  from {
    opacity: 0;
    filter: blur(10px);
    transform: translateY(24px) scale(0.985);
  }

  to {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0) scale(1);
  }
}

.preview-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 26px;
}

.preview-topline strong {
  font-size: 22px;
}

.preview-topline span {
  padding: 10px 14px;
  border: 1px solid rgba(240, 237, 232, 0.18);
  border-radius: 999px;
  color: var(--accent);
  background: rgba(201, 180, 154, 0.06);
}

.ops-board,
.inbox-preview,
.revenue-preview,
.channel-preview {
  min-height: 430px;
}

.ops-board {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr);
  gap: 18px;
}

.ops-main-card,
.ops-steps,
.inbox-preview aside,
.inbox-preview section,
.revenue-preview article,
.channel-preview article {
  border: 1px solid rgba(240, 237, 232, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.045);
}

.ops-main-card {
  padding: 34px;
  background: rgba(255, 255, 255, 0.045);
}

.ops-main-card span,
.revenue-preview article span {
  color: var(--accent);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.ops-main-card h3 {
  max-width: 420px;
  margin-top: 88px;
  font-size: clamp(28px, 3.2vw, 44px);
}

.ops-progress {
  height: 14px;
  margin: 34px 0 22px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.ops-progress i {
  display: block;
  width: var(--progress);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--accent-dim), var(--accent));
  box-shadow: 0 0 24px rgba(201, 180, 154, 0.4);
}

.ops-main-card p,
.ops-steps p,
.message,
.revenue-preview article p {
  color: var(--muted);
  line-height: 1.5;
}

.ops-steps {
  display: grid;
  align-content: center;
  gap: 14px;
  padding: 24px;
}

.ops-steps p {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin: 0;
  padding: 18px;
  border: 1px solid rgba(240, 237, 232, 0.1);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.04);
}

.ops-steps .done,
.ops-steps .active {
  color: var(--text);
  border-color: rgba(240, 237, 232, 0.24);
}

.ops-steps b {
  color: var(--accent);
}

.inbox-preview {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 18px;
}

.inbox-preview aside,
.inbox-preview section {
  padding: 22px;
}

.inbox-preview aside p {
  margin: 0 0 12px;
  padding: 16px;
  border-radius: 12px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.035);
}

.inbox-preview aside p.active {
  color: var(--text);
  background: rgba(201, 180, 154, 0.1);
}

.inbox-preview small {
  display: block;
  margin-top: 5px;
}

.inbox-preview section {
  display: grid;
  align-content: center;
  gap: 18px;
}

.message {
  max-width: 560px;
  padding: 18px 20px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
}

.message.ai {
  margin-left: auto;
  color: #0a0908;
  background: linear-gradient(160deg, rgba(240, 237, 232, 0.96), rgba(220, 215, 206, 0.9));
}

.inbox-preview button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  justify-self: end;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid rgba(240, 237, 232, 0.18);
  border-radius: 12px;
  color: var(--text);
  font: inherit;
  font-weight: 620;
  background: rgba(240, 237, 232, 0.06);
}

.revenue-preview {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.9fr);
  gap: 18px;
}

.revenue-chart {
  display: flex;
  align-items: end;
  gap: 16px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background:
    linear-gradient(180deg, transparent, rgba(240, 237, 232, 0.03)),
    linear-gradient(90deg, rgba(240, 237, 232, 0.04) 1px, transparent 1px),
    linear-gradient(180deg, rgba(240, 237, 232, 0.04) 1px, transparent 1px);
  background-size: auto, 80px 100%, 100% 70px;
}

.revenue-chart i {
  flex: 1;
  min-width: 22px;
  border-radius: 999px 999px 8px 8px;
  background: linear-gradient(180deg, rgba(240, 237, 232, 0.7), rgba(240, 237, 232, 0.08));
  box-shadow: 0 0 20px rgba(240, 237, 232, 0.06);
}

.revenue-preview article {
  display: grid;
  align-content: center;
  padding: 32px;
}

.revenue-preview article strong {
  margin: 20px 0 14px;
  color: var(--accent);
  font-size: clamp(64px, 8vw, 116px);
  font-weight: 560;
  letter-spacing: -0.045em;
}

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

.channel-preview article {
  position: relative;
  display: grid;
  align-content: center;
  min-height: 200px;
  padding: 28px;
  overflow: hidden;
}

.channel-preview article::before {
  position: absolute;
  inset: auto -15% -42% auto;
  width: 180px;
  aspect-ratio: 1;
  border-radius: 50%;
  content: "";
  background: radial-gradient(circle, rgba(240, 237, 232, 0.24), transparent 68%);
}

.channel-preview span {
  color: var(--muted);
}

.channel-preview strong {
  margin-top: 12px;
  color: var(--accent);
  font-size: 28px;
}

.channel-preview i {
  width: 42px;
  height: 42px;
  margin-top: 28px;
  border: 1px solid rgba(240, 237, 232, 0.34);
  border-radius: 50%;
  background:
    radial-gradient(circle, var(--accent) 0 4px, transparent 5px),
    rgba(201, 180, 154, 0.08);
}

.preview-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: 24px;
  border: 1px solid rgba(240, 237, 232, 0.2);
  border-radius: 14px;
  overflow: hidden;
}

.preview-metrics span {
  padding: 20px 24px;
  border-right: 1px solid rgba(240, 237, 232, 0.14);
  color: var(--muted);
}

.preview-metrics span:last-child {
  border-right: 0;
}

.preview-metrics strong {
  display: block;
  margin-bottom: 7px;
  color: var(--text);
  font-size: 24px;
}

.calendar-toolbar {
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 26px;
}

.calendar-toolbar strong {
  margin-right: auto;
}

.calendar-toolbar button {
  color: var(--text);
  cursor: pointer;
}

.calendar-toolbar .active,
.calendar-toolbar .plus {
  border-color: rgba(240, 237, 232, 0.48);
  color: var(--accent);
  background: rgba(201, 180, 154, 0.1);
}

.calendar-toolbar .plus {
  display: grid;
  place-items: center;
  color: #03100f;
  background: var(--accent-dim);
}

.calendar-toolbar .plus .inline-icon {
  width: 16px;
  height: 16px;
}

.calendar-grid {
  display: grid;
  grid-template-columns: 170px 1fr;
  min-height: 390px;
}

.property-column {
  display: grid;
  align-content: stretch;
  gap: 0;
  padding-right: 18px;
  border-right: 1px solid rgba(240, 237, 232, 0.1);
}

.property-column p {
  margin: 0;
  padding: 12px 0;
  color: var(--text);
  font-size: 14px;
}

.property-column small {
  display: block;
  margin-top: 5px;
  color: var(--muted);
}

.timeline {
  position: relative;
  min-width: 560px;
  background:
    linear-gradient(90deg, rgba(240, 237, 232, 0.09) 1px, transparent 1px),
    linear-gradient(180deg, rgba(240, 237, 232, 0.07) 1px, transparent 1px);
  background-size: calc(100% / 7) 100%, 100% 72px;
  overflow: hidden;
}

.timeline::after {
  position: absolute;
  top: 54px;
  bottom: 0;
  left: 34%;
  width: 1px;
  content: "";
  background: var(--accent-dim);
  box-shadow: 0 0 24px rgba(201, 180, 154, 0.75);
}

.day-row {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  height: 58px;
  color: var(--muted);
  text-align: center;
  font-size: 13px;
}

.day-row .today {
  color: var(--accent);
}

.booking {
  position: absolute;
  display: flex;
  justify-content: space-between;
  min-height: 40px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 118, 118, 0.34);
  border-radius: 7px;
  color: var(--text);
  font-size: 13px;
  background: rgba(255, 255, 255, 0.075);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
}

.booking small {
  margin-left: 24px;
  color: var(--muted);
}

.b1 { top: 74px; left: 4%; width: 35%; }
.b2 { top: 136px; left: 23%; width: 27%; }
.b3 { top: 74px; right: 2%; width: 30%; }
.b4 { top: 206px; left: 31%; width: 65%; border-color: rgba(240, 237, 232, 0.32); }
.b5 { top: 274px; left: 6%; width: 41%; }
.b6 { top: 274px; right: 3%; width: 29%; }
.b7 { top: 344px; left: 23%; width: 43%; }

.calendar-summary {
  flex-wrap: wrap;
  gap: 0;
  margin-top: 24px;
  padding: 18px 0;
  border: 1px solid rgba(240, 237, 232, 0.2);
  border-radius: 12px;
}

.calendar-summary span {
  min-width: 120px;
  padding: 0 26px;
  border-right: 1px solid rgba(240, 237, 232, 0.16);
  color: var(--muted);
  font-size: 13px;
}

.calendar-summary strong {
  display: block;
  margin-bottom: 5px;
  color: var(--text);
  font-size: 18px;
}

.calendar-summary a {
  margin-left: auto;
  margin-right: 18px;
  padding: 14px 28px;
  border: 1px solid rgba(240, 237, 232, 0.34);
  border-radius: 10px;
  color: var(--accent);
  font-weight: 760;
}

.split-layout,
.investor-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: clamp(40px, 7vw, 110px);
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.split-copy,
.investor-copy {
  max-width: 620px;
}

.control-layout {
  display: grid;
  grid-template-columns: minmax(560px, 0.98fr) minmax(500px, 0.9fr);
  gap: clamp(58px, 6.4vw, 104px);
  align-items: start;
  max-width: 1420px;
  min-height: 720px;
  margin: 0 auto;
}

.control-visual {
  position: relative;
  width: min(100%, 650px);
  min-height: 650px;
  margin-top: 32px;
  overflow: visible;
}

.control-visual::before,
.control-visual::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.control-visual::before {
  inset: 11% 2% 7%;
  border: 1px solid rgba(240, 237, 232, 0.08);
  border-radius: 50%;
  background:
    linear-gradient(45deg, transparent 49.9%, rgba(240, 237, 232, 0.16) 50%, transparent 50.25%),
    linear-gradient(-45deg, transparent 49.9%, rgba(240, 237, 232, 0.16) 50%, transparent 50.25%),
    linear-gradient(90deg, transparent 49.9%, rgba(240, 237, 232, 0.13) 50%, transparent 50.25%),
    radial-gradient(circle at 50% 48%, rgba(240, 237, 232, 0.16), transparent 15rem),
    repeating-radial-gradient(circle at 50% 48%, rgba(240, 237, 232, 0.085) 0 1px, transparent 1px 78px);
}

.control-visual::after {
  left: 50%;
  bottom: 4%;
  width: 82%;
  height: 28%;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(201, 180, 154, 0.22), transparent 68%);
  filter: blur(20px);
  transform: translateX(-50%);
}

.control-hub {
  position: absolute;
  top: 43%;
  left: 50%;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 170px;
  height: 102px;
  border: 1px solid rgba(240, 237, 232, 0.38);
  border-radius: 50%;
  color: var(--accent);
  font-size: 64px;
  font-weight: 700;
  background:
    radial-gradient(circle at 50% 44%, rgba(240, 237, 232, 0.38), transparent 58%),
    rgba(18, 17, 15, 0.94);
  box-shadow: 0 0 58px rgba(201, 180, 154, 0.34), inset 0 -18px 34px rgba(0, 0, 0, 0.34);
  transform: translate(-50%, -50%);
}

.control-hub-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.control-hub-icon svg {
  display: block;
  flex-shrink: 0;
  width: 54px;
  height: 54px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.control-hub::before {
  position: absolute;
  inset: -22px;
  z-index: -1;
  border-radius: 50%;
  content: "";
  background: rgba(255, 255, 255, 0.045);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.42);
}

.control-hub i {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 258px;
  height: 1px;
  background: linear-gradient(90deg, var(--accent-dim), transparent);
  transform-origin: left center;
}

.control-hub i:nth-child(2) { transform: rotate(0deg); }
.control-hub i:nth-child(3) { transform: rotate(45deg); }
.control-hub i:nth-child(4) { transform: rotate(90deg); }
.control-hub i:nth-child(5) { transform: rotate(135deg); }
.control-hub i:nth-child(6) { transform: rotate(180deg); }
.control-hub i:nth-child(7) { transform: rotate(225deg); }

.control-card {
  position: absolute;
  z-index: 4;
  width: 178px;
  min-height: 104px;
  padding: 16px;
  border: 1px solid rgba(240, 237, 232, 0.17);
  border-radius: 14px;
  background: rgba(6, 17, 16, 0.82);
  box-shadow: 0 24px 78px rgba(0, 0, 0, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.035);
  backdrop-filter: blur(18px);
}

.control-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  float: left;
  width: 34px;
  height: 34px;
  margin: 2px 12px 0 0;
  border-radius: 9px;
  color: var(--accent);
  font-size: 0;
  font-style: normal;
  background: rgba(201, 180, 154, 0.08);
  box-shadow: inset 0 0 18px rgba(201, 180, 154, 0.06);
}

.control-icon svg {
  display: block;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
}

.control-card span,
.control-card small {
  display: block;
  color: var(--muted);
  font-size: 12px;
}

.control-card strong {
  display: block;
  margin: 8px 0 4px;
  color: var(--text);
  font-size: 24px;
  font-weight: 650;
  letter-spacing: -0.035em;
}

.channel-icon-stack {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 48px;
  height: 34px;
  margin-top: 8px;
  color: var(--accent);
}

.channel-icon-stack svg {
  display: block;
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.control-card small {
  color: var(--accent-dim);
  font-size: 10px;
}

.card-revenue { top: 16%; left: 7%; }
.card-bookings { top: 5%; left: 50%; translate: -50% 0; }
.card-occupancy { top: 16%; right: 7%; }
.card-messages { top: 39%; left: 2%; }
.card-listings { top: 39%; right: 2%; }
.card-cleanings { top: 59%; left: 3%; }
.card-channels { top: 60%; right: 4%; }

.mini-line {
  height: 30px;
  margin-top: 10px;
  background:
    linear-gradient(135deg, transparent 0 12%, rgba(240, 237, 232, 0.22) 12% 14.5%, transparent 14.5% 26%, rgba(240, 237, 232, 0.22) 26% 28.5%, transparent 28.5% 42%, rgba(240, 237, 232, 0.22) 42% 44.5%, transparent 44.5% 60%, rgba(240, 237, 232, 0.22) 60% 62.5%, transparent 62.5% 76%, rgba(240, 237, 232, 0.22) 76% 78.5%, transparent 78.5%);
  opacity: 0.9;
}

.property-island {
  position: absolute;
  left: 50%;
  bottom: 1%;
  z-index: 2;
  width: min(590px, 88%);
  height: 126px;
  border: 1px solid rgba(240, 237, 232, 0.12);
  border-radius: 50% 50% 22px 22px;
  background:
    linear-gradient(180deg, rgba(240, 237, 232, 0.08), rgba(5, 12, 11, 0.84)),
    rgba(255, 255, 255, 0.035);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.46), 0 0 80px rgba(201, 180, 154, 0.18);
  transform: translateX(-50%) perspective(680px) rotateX(60deg);
  transform-origin: center bottom;
}

.property-island::before {
  position: absolute;
  inset: 34% 10% 18%;
  border-radius: 22px;
  content: "";
  background: linear-gradient(135deg, rgba(240, 237, 232, 0.18), rgba(4, 10, 9, 0.58));
}

.villa {
  position: absolute;
  bottom: 48px;
  width: 118px;
  height: 58px;
  border-radius: 8px 8px 2px 2px;
  background:
    linear-gradient(90deg, transparent 0 20%, rgba(255, 216, 146, 0.92) 20% 28%, transparent 28% 48%, rgba(240, 237, 232, 0.72) 48% 56%, transparent 56%),
    linear-gradient(180deg, #233531, #0d1716);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.42);
}

.villa::before {
  position: absolute;
  left: 14px;
  right: 14px;
  top: -38px;
  height: 48px;
  clip-path: polygon(0 100%, 50% 0, 100% 100%);
  content: "";
  background: linear-gradient(135deg, #506a64, #17221f);
}

.villa-a { left: 20%; }
.villa-b { right: 20%; transform: scale(0.92); }

.status-pill {
  position: absolute;
  left: 50%;
  bottom: 36px;
  z-index: 5;
  padding: 10px 18px;
  border: 1px solid rgba(240, 237, 232, 0.2);
  border-radius: 999px;
  color: var(--text);
  font-size: 12px;
  background: rgba(8, 17, 17, 0.82);
  transform: translateX(-50%) rotateX(-58deg);
}

.status-pill::before {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 8px;
  border-radius: 50%;
  content: "";
  background: var(--accent-dim);
  box-shadow: 0 0 16px rgba(201, 180, 154, 0.7);
}

.control-copy {
  max-width: 560px;
  padding-top: 0;
}

.control-copy h2 {
  margin-bottom: 24px;
  font-size: clamp(38px, 3.6vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.028em;
}

.control-copy p:not(.eyebrow) {
  max-width: 540px;
  color: var(--muted);
  font-size: clamp(16px, 1.12vw, 18px);
  line-height: 1.58;
}

.control-actions {
  display: grid;
  gap: 12px;
  margin-top: 30px;
}

.control-actions article {
  display: grid;
  grid-template-columns: 58px 1fr auto;
  gap: 18px;
  align-items: center;
  min-height: 108px;
  padding: 18px 22px;
  border: 1px solid rgba(240, 237, 232, 0.18);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent 70%),
    rgba(255, 255, 255, 0.03);
  transition: border-color 180ms ease, transform 180ms ease, background 180ms ease;
}

.control-actions article:hover {
  border-color: rgba(240, 237, 232, 0.38);
  background: rgba(201, 180, 154, 0.06);
  transform: translateX(4px);
}

.control-actions article > span {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  color: #03100f;
  background: var(--accent-dim);
}

.control-actions article > span svg {
  display: block;
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.control-actions h3,
.control-actions p {
  margin: 0;
}

.control-actions h3 {
  font-size: clamp(19px, 1.45vw, 22px);
  line-height: 1.12;
  letter-spacing: -0.025em;
}

.control-actions p {
  margin-top: 6px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.control-actions b {
  display: grid;
  place-items: center;
  color: var(--accent);
  font-size: 22px;
  font-weight: 500;
}

.control-actions b svg {
  width: 22px;
  height: 22px;
}

.workflow-stack {
  display: grid;
  gap: 18px;
}

.workflow-stack article {
  position: relative;
  padding: 28px 28px 28px 86px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.04);
}

.workflow-stack span {
  position: absolute;
  top: 28px;
  left: 28px;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: #03100f;
  font-weight: 850;
  background: var(--accent-dim);
}

.workflow-stack p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.automation-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  max-width: 1500px;
  margin: 0 auto;
}

.automation-heading {
  max-width: 980px;
  margin-bottom: clamp(46px, 5vw, 70px);
}

.automation-heading .eyebrow {
  color: rgba(244, 247, 245, 0.7);
}

.automation-heading h2 {
  margin-bottom: 22px;
  font-size: clamp(42px, 4.7vw, 72px);
  line-height: 1.03;
  letter-spacing: -0.035em;
}

.automation-heading p {
  max-width: 940px;
  margin-inline: auto;
  font-size: clamp(17px, 1.25vw, 20px);
  line-height: 1.55;
}

.automation-card {
  display: grid;
  grid-template-rows: 60px 26px minmax(74px, auto) 1fr;
  align-items: start;
  min-height: 390px;
  padding: clamp(26px, 2.8vw, 34px);
  border-color: rgba(240, 237, 232, 0.16);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(240, 237, 232, 0.06), transparent 48%),
    rgba(255, 255, 255, 0.035);
  transition: border-color 180ms ease, background 180ms ease;
}

.automation-card:hover {
  border-color: rgba(240, 237, 232, 0.42);
  background: rgba(201, 180, 154, 0.07);
}

.automation-card span {
  align-self: end;
  color: var(--accent);
  font-size: 13px;
  font-weight: 750;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
}

.automation-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  margin: 0 auto;
  border: 1px solid rgba(240, 237, 232, 0.18);
  border-radius: 50%;
  color: var(--accent);
  background:
    radial-gradient(circle at 50% 35%, rgba(240, 237, 232, 0.18), transparent 62%),
    rgba(201, 180, 154, 0.08);
  box-shadow: 0 0 34px rgba(201, 180, 154, 0.14), inset 0 0 20px rgba(201, 180, 154, 0.08);
}

.automation-icon svg {
  display: block;
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  stroke-width: 1.8;
}

.automation-card h3 {
  align-self: start;
  margin: 0;
  font-size: clamp(24px, 1.8vw, 30px);
  line-height: 1.14;
  letter-spacing: -0.025em;
}

.automation-card p {
  max-width: 280px;
  margin: 12px 0 0;
  font-size: clamp(15px, 1.05vw, 17px);
  line-height: 1.55;
}

.automation-card.highlight {
  background:
    linear-gradient(180deg, rgba(240, 237, 232, 0.06), transparent 48%),
    rgba(255, 255, 255, 0.035);
}

.integrations-panel {
  display: grid;
  grid-template-columns: minmax(390px, 0.9fr) minmax(680px, 1.1fr);
  gap: clamp(44px, 5vw, 82px);
  align-items: center;
  position: relative;
  max-width: 1580px;
  min-height: 520px;
  margin: 0 auto;
  padding: clamp(48px, 5.4vw, 76px);
  overflow: hidden;
  border-color: rgba(240, 237, 232, 0.18);
  border-radius: 34px;
  background:
    radial-gradient(circle at 62% 58%, rgba(201, 180, 154, 0.12), transparent 25rem),
    rgba(255, 255, 255, 0.035);
}

.integrations-panel::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background-image: radial-gradient(rgba(240, 237, 232, 0.2) 0.8px, transparent 0.8px);
  background-position: right 18px center;
  background-size: 18px 18px;
  mask-image: linear-gradient(90deg, transparent 0 70%, #000 90%, transparent 100%);
  opacity: 0.45;
}

.integrations-copy {
  position: relative;
  z-index: 2;
}

.integrations-copy h2 {
  max-width: 560px;
  margin-bottom: 22px;
  font-size: clamp(40px, 4.1vw, 64px);
  line-height: 1.12;
}

.integrations-copy h2 span {
  color: var(--accent);
}

.integrations-copy p:not(.eyebrow) {
  max-width: 470px;
  color: var(--muted);
  font-size: clamp(17px, 1.25vw, 20px);
  line-height: 1.55;
}

.integration-cta {
  display: inline-flex;
  align-items: center;
  gap: 22px;
  min-height: 54px;
  margin-top: 30px;
  padding: 0 26px;
  border: 1px solid rgba(240, 237, 232, 0.6);
  border-radius: 999px;
  color: var(--accent);
  font-weight: 760;
  background: rgba(201, 180, 154, 0.04);
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.integration-cta:hover {
  background: rgba(201, 180, 154, 0.1);
  box-shadow: 0 0 34px rgba(201, 180, 154, 0.16);
  transform: translateY(-2px);
}

.integration-map {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  width: min(100%, 680px);
  min-height: 360px;
  margin-left: auto;
}

.integration-map::before {
  position: absolute;
  inset: 24px 10px;
  z-index: -1;
  content: "";
  background:
    linear-gradient(90deg, transparent 0 8%, rgba(201, 180, 154, 0.28) 8% 8.2%, transparent 8.2% 100%),
    linear-gradient(90deg, transparent 0 88%, rgba(201, 180, 154, 0.28) 88% 88.2%, transparent 88.2% 100%),
    linear-gradient(180deg, transparent 0 10%, rgba(201, 180, 154, 0.24) 10% 10.4%, transparent 10.4% 100%),
    linear-gradient(180deg, transparent 0 90%, rgba(201, 180, 154, 0.24) 90% 90.4%, transparent 90.4% 100%);
  opacity: 0.58;
  animation: integrationLines 4.8s ease-in-out infinite;
}

.integration-tile {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 126px;
  border: 1px solid rgba(240, 237, 232, 0.14);
  border-radius: 16px;
  color: rgba(244, 247, 245, 0.9);
  font-size: clamp(21px, 1.8vw, 28px);
  font-weight: 780;
  letter-spacing: -0.04em;
  background:
    radial-gradient(circle at 50% 100%, rgba(240, 237, 232, 0.08), transparent 70%),
    rgba(255, 255, 255, 0.035);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.045);
  animation: integrationFloat 5.5s ease-in-out infinite;
}

.integration-row {
  display: flex;
  justify-content: flex-end;
  gap: 16px;
  width: 100%;
}

.integration-row-top .integration-tile {
  flex: 0 0 190px;
}

.integration-row-bottom .integration-tile {
  flex: 0 0 140px;
}

.integration-row .integration-tile:nth-child(2n) {
  animation-delay: -1.2s;
}

.logo-vrbo {
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  color: #b9d8ff;
  text-shadow: 0 0 18px rgba(74, 166, 255, 0.4);
}

.logo-stripe {
  color: #8a7dff;
}

.logo-slack b {
  width: 22px;
  height: 22px;
  margin-right: 8px;
  border-radius: 6px;
  background:
    radial-gradient(circle at 25% 25%, #36c5f0 0 4px, transparent 5px),
    radial-gradient(circle at 75% 25%, #2eb67d 0 4px, transparent 5px),
    radial-gradient(circle at 25% 75%, #ecb22e 0 4px, transparent 5px),
    radial-gradient(circle at 75% 75%, #e01e5a 0 4px, transparent 5px);
}

.logo-slack {
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-google {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1px;
}

.logo-google em {
  font-style: normal;
}

.logo-google em:nth-child(1),
.logo-google em:nth-child(4) { color: #4285f4; }
.logo-google em:nth-child(2),
.logo-google em:nth-child(6) { color: #db4437; }
.logo-google em:nth-child(3) { color: #f4b400; }
.logo-google em:nth-child(5) { color: #0f9d58; }

.logo-zapier {
  letter-spacing: -0.06em;
}

.integration-path {
  position: absolute;
  z-index: -1;
  border: 1px dashed rgba(201, 180, 154, 0.28);
  border-radius: 20px;
  pointer-events: none;
}

.path-a {
  top: 8px;
  left: 24%;
  width: 28%;
  height: 76px;
  border-bottom: 0;
}

.path-b {
  right: -12px;
  top: 34%;
  width: 13%;
  height: 88px;
  border-left: 0;
}

.path-c {
  bottom: 6px;
  left: 28%;
  width: 39%;
  height: 78px;
  border-top: 0;
}

.integration-path i {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 18px rgba(201, 180, 154, 0.95);
  animation: integrationPulse 1.8s ease-in-out infinite;
}

.integration-path i:first-child {
  top: -5px;
  left: -5px;
}

.integration-path i:last-child {
  right: -5px;
  bottom: -5px;
  animation-delay: 0.7s;
}

@keyframes integrationFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@keyframes integrationPulse {
  0%,
  100% {
    opacity: 0.55;
    transform: scale(0.8);
  }

  50% {
    opacity: 1;
    transform: scale(1.2);
  }
}

@keyframes integrationLines {
  0%,
  100% {
    opacity: 0.42;
  }

  50% {
    opacity: 0.78;
  }
}

.investor-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.investor-metrics div {
  min-height: 270px;
  padding: 34px;
  border-right: 1px solid rgba(240, 237, 232, 0.12);
}

.investor-metrics div:last-child {
  border-right: 0;
}

.investor-metrics strong {
  display: block;
  color: var(--accent);
  font-size: clamp(38px, 4vw, 60px);
  font-weight: 560;
  letter-spacing: -0.04em;
}

.investor-metrics span {
  display: block;
  margin-top: 18px;
  color: var(--muted);
  line-height: 1.45;
}

.growth-wrap {
  max-width: 1440px;
  margin: 0 auto;
}

.investors {
  padding-top: 88px;
  padding-bottom: 88px;
}

.growth-top {
  display: grid;
  grid-template-columns: minmax(380px, 0.82fr) minmax(660px, 1.18fr);
  gap: clamp(42px, 5.2vw, 76px);
  align-items: start;
  margin-bottom: 38px;
}

.growth-copy {
  max-width: 560px;
}

.growth-copy h2 {
  margin-bottom: 20px;
  font-size: clamp(36px, 3.5vw, 54px);
  line-height: 1.08;
}

.growth-copy p:not(.eyebrow) {
  max-width: 430px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.58;
}

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

.growth-metrics article {
  min-height: 198px;
  padding: 24px;
  border: 1px solid rgba(240, 237, 232, 0.14);
  border-radius: 14px;
  background:
    radial-gradient(circle at 50% 100%, rgba(201, 180, 154, 0.08), transparent 72%),
    rgba(255, 255, 255, 0.032);
}

.growth-metric-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  border: 1px solid rgba(240, 237, 232, 0.22);
  border-radius: 50%;
  color: var(--text);
  background: rgba(255, 255, 255, 0.03);
}

.growth-metric-icon svg {
  display: block;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  stroke-width: 2;
}

.growth-rocket svg {
  width: 20px;
  height: 20px;
  stroke-width: 1.8;
}

.growth-metrics strong {
  display: block;
  margin-bottom: 12px;
  color: var(--accent);
  font-size: clamp(34px, 3.2vw, 44px);
  font-weight: 560;
  letter-spacing: -0.04em;
}

.growth-metrics b {
  display: block;
  margin-bottom: 10px;
  color: var(--text);
  font-size: 14px;
}

.growth-metrics p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.48;
}

.growth-accordion {
  display: grid;
  gap: 8px;
}

.growth-item {
  overflow: hidden;
  border: 1px solid rgba(240, 237, 232, 0.14);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.028);
  transition: border-color 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.growth-item.is-open {
  border-color: rgba(240, 237, 232, 0.28);
  background:
    radial-gradient(circle at 50% 100%, rgba(201, 180, 154, 0.08), transparent 52%),
    rgba(255, 255, 255, 0.036);
  box-shadow: 0 0 42px rgba(201, 180, 154, 0.06);
}

.growth-item button {
  display: grid;
  grid-template-columns: 34px 1fr 24px;
  gap: 22px;
  align-items: center;
  width: 100%;
  min-height: 58px;
  padding: 0 28px;
  border: 0;
  color: var(--text);
  text-align: left;
  background: transparent;
  cursor: pointer;
  font: inherit;
}

.growth-item.is-open button {
  min-height: 64px;
}

.growth-toggle {
  position: relative;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(240, 237, 232, 0.24);
  border-radius: 50%;
  color: var(--accent);
}

.growth-toggle::before,
.growth-toggle::after {
  position: absolute;
  width: 12px;
  height: 1px;
  content: "";
  background: currentColor;
}

.growth-toggle::after {
  transform: rotate(90deg);
  transition: transform 180ms ease;
}

.growth-item.is-open .growth-toggle {
  color: #0a0908;
  border-color: var(--accent);
  background: var(--accent);
}

.growth-item.is-open .growth-toggle::after {
  transform: rotate(0deg);
}

.growth-item button strong {
  font-size: 16px;
  letter-spacing: -0.01em;
}

.growth-item button i {
  justify-self: end;
  width: 9px;
  height: 9px;
  border-top: 2px solid rgba(244, 247, 245, 0.75);
  border-right: 2px solid rgba(244, 247, 245, 0.75);
  transform: rotate(135deg);
  transition: transform 180ms ease;
}

.growth-item.is-open button i {
  transform: rotate(-45deg);
}

.growth-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 280ms ease;
}

.growth-item.is-open .growth-answer {
  grid-template-rows: 1fr;
}

.growth-answer-inner {
  min-height: 0;
  overflow: hidden;
}

.growth-item.is-open .growth-answer-inner {
  display: grid;
  grid-template-columns: minmax(260px, 330px) minmax(0, 1fr);
  gap: 34px;
  align-items: start;
  padding: 0 34px 28px 78px;
}

.growth-answer-inner > p {
  max-width: none;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.growth-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px 24px;
  margin: 0;
  padding-left: 26px;
  border-left: 1px solid rgba(240, 237, 232, 0.1);
}

.growth-feature-grid div {
  position: relative;
  padding-left: 24px;
}

.growth-feature-grid span {
  position: absolute;
  top: 1px;
  left: 0;
  display: grid;
  place-items: center;
  width: 14px;
  height: 14px;
  border: 1px solid rgba(240, 237, 232, 0.58);
  border-radius: 50%;
  color: var(--accent);
  font-size: 9px;
}

.growth-check::before {
  width: 6px;
  height: 10px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  content: "";
  transform: translateY(-1px) rotate(42deg);
}

.growth-feature-grid b {
  display: block;
  margin-bottom: 7px;
  color: var(--text);
  font-size: 14px;
}

.growth-feature-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.52;
}

.growth-bottom {
  display: grid;
  grid-template-columns: 54px 1fr auto;
  gap: 22px;
  align-items: center;
  max-width: 760px;
  margin: 30px auto 0;
  padding-top: 2px;
}

.growth-rocket {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(240, 237, 232, 0.2);
  border-radius: 50%;
  color: var(--accent);
  background: rgba(201, 180, 154, 0.04);
}

.growth-bottom h3,
.growth-bottom p {
  margin: 0;
}

.growth-bottom h3 {
  font-size: 20px;
}

.growth-bottom p {
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
}

.growth-demo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  min-width: 170px;
  min-height: 46px;
  border: 1px solid rgba(240, 237, 232, 0.42);
  border-radius: 9px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 760;
  background: rgba(201, 180, 154, 0.04);
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.growth-demo:hover {
  border-color: rgba(240, 237, 232, 0.72);
  background: rgba(201, 180, 154, 0.1);
  transform: translateY(-2px);
}

.faq {
  padding-top: 94px;
}

.faq-heading {
  max-width: 740px;
  margin: 0 auto 46px;
  text-align: center;
}

.faq-heading h2 {
  margin-bottom: 14px;
  font-size: clamp(38px, 3.8vw, 58px);
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.faq-heading p {
  max-width: 540px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 17px;
  font-weight: 520;
  line-height: 1.55;
}

.faq-layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 820px);
  gap: 28px;
  justify-content: center;
  align-items: stretch;
  max-width: 1120px;
  margin: 0 auto;
}

.faq-contact {
  min-height: 560px;
  padding: 28px 24px;
  border: 1px solid rgba(240, 237, 232, 0.14);
  border-radius: 14px;
  background:
    radial-gradient(circle at 50% 13%, rgba(201, 180, 154, 0.12), transparent 10rem),
    rgba(255, 255, 255, 0.035);
}

.faq-contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 68px;
  height: 68px;
  margin-bottom: 70px;
  border: 1px solid rgba(240, 237, 232, 0.14);
  border-radius: 50%;
  color: var(--accent);
  background:
    radial-gradient(circle at 50% 35%, rgba(240, 237, 232, 0.18), transparent 62%),
    rgba(201, 180, 154, 0.08);
  box-shadow: 0 0 34px rgba(201, 180, 154, 0.13), inset 0 0 20px rgba(201, 180, 154, 0.08);
}

.faq-contact-icon svg {
  display: block;
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.faq-contact h3 {
  margin-bottom: 22px;
  font-size: 24px;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.faq-contact p {
  margin-bottom: 34px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.faq-contact-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-width: 164px;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid rgba(240, 237, 232, 0.62);
  border-radius: 999px;
  color: var(--accent);
  font-weight: 760;
  background: rgba(201, 180, 154, 0.04);
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-item {
  overflow: hidden;
  border: 1px solid rgba(240, 237, 232, 0.18);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
  transition: border-color 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.faq-item.is-open {
  border-color: rgba(240, 237, 232, 0.85);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 0 34px rgba(201, 180, 154, 0.08);
}

.faq-item button {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 20px;
  align-items: center;
  width: 100%;
  min-height: 60px;
  padding: 0 24px;
  border: 0;
  color: var(--text);
  text-align: left;
  background: transparent;
  cursor: pointer;
  font: inherit;
}

.faq-item.is-open button {
  min-height: 70px;
  align-items: start;
  padding-top: 22px;
}

.faq-toggle {
  position: relative;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(240, 237, 232, 0.28);
  border-radius: 50%;
  color: var(--accent);
}

.faq-toggle::before,
.faq-toggle::after {
  position: absolute;
  width: 12px;
  height: 1px;
  content: "";
  background: currentColor;
}

.faq-toggle::after {
  transform: rotate(90deg);
  transition: transform 180ms ease;
}

.faq-item.is-open .faq-toggle {
  color: #0a0908;
  background: var(--accent-dim);
  border-color: var(--accent-dim);
}

.faq-item.is-open .faq-toggle::after {
  transform: rotate(0deg);
}

.faq-item strong {
  font-size: 16px;
  letter-spacing: -0.01em;
  color: var(--text);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  transition: grid-template-rows 260ms ease;
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-answer p {
  min-height: 0;
  margin: 0;
  overflow: hidden;
  padding: 0 44px 0 78px;
  color: rgba(240, 237, 232, 0.78);
  font-size: 15px;
  line-height: 1.7;
}

.faq-item.is-open .faq-answer p {
  padding-bottom: 24px;
}

.demo {
  padding-bottom: 70px;
}

.demo-panel {
  max-width: 1160px;
  margin: 0 auto;
  padding: clamp(42px, 8vw, 94px);
  border-radius: var(--radius-xl);
  text-align: center;
  background: rgba(6, 15, 14, 0.62);
  box-shadow: var(--shadow);
}

.demo-panel p {
  max-width: 680px;
  margin: 0 auto 34px;
}

.demo-email {
  margin: 16px auto 0 !important;
  font-size: 14px !important;
  color: var(--muted) !important;
  letter-spacing: 0.02em;
}

.site-footer {
  position: relative;
  width: 100%;
  padding: 0 clamp(24px, 5vw, 80px) 34px;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: var(--max);
  min-height: 78px;
  margin: 0 auto;
  padding: 0 clamp(18px, 2.4vw, 30px);
  border: 1px solid rgba(240, 237, 232, 0.12);
  border-radius: 24px;
  color: rgba(244, 247, 245, 0.68);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 62%),
    rgba(255, 255, 255, 0.022);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 20px 60px rgba(0, 0, 0, 0.22);
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}

.brand-logo-footer {
  max-height: 14px;
  height: auto;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  opacity: 0.65;
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 34px);
  font-size: 14px;
  font-weight: 620;
}

.footer-legal a {
  transition: color 160ms ease, transform 160ms ease;
}

.footer-legal a:hover {
  color: var(--accent);
  transform: translateY(-1px);
}

.legal-page .site-header {
  position: fixed;
}

.legal-main {
  min-height: 100vh;
  padding-top: 128px;
}

.legal-hero {
  padding-top: 92px;
  padding-bottom: 44px;
}

.legal-shell {
  max-width: 1120px;
  margin: 0 auto;
  padding: clamp(34px, 5vw, 64px);
  border: 1px solid rgba(240, 237, 232, 0.13);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 75% 20%, rgba(201, 180, 154, 0.13), transparent 24rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 68%),
    rgba(255, 255, 255, 0.03);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.045), 0 26px 80px rgba(0, 0, 0, 0.28);
}

.legal-shell h1 {
  max-width: 820px;
  margin-bottom: 18px;
  font-size: clamp(44px, 5vw, 76px);
}

.legal-shell p:not(.eyebrow) {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(17px, 1.3vw, 20px);
  line-height: 1.6;
}

.legal-content {
  display: grid;
  gap: 16px;
  max-width: 1120px;
  margin: 0 auto;
  padding-top: 0;
  padding-bottom: 72px;
}

.legal-card {
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid rgba(240, 237, 232, 0.12);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.036), transparent 64%),
    rgba(255, 255, 255, 0.026);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 18px 56px rgba(0, 0, 0, 0.18);
}

.legal-card h2 {
  margin-bottom: 16px;
  font-size: clamp(24px, 2.2vw, 32px);
  letter-spacing: -0.02em;
}

.legal-card-continuous h2:not(:first-child) {
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid rgba(240, 237, 232, 0.1);
}

.legal-card p,
.legal-card dd {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.68;
}

.legal-card p:last-child {
  margin-bottom: 0;
}

.legal-card a {
  color: var(--accent);
  text-decoration: underline;
  text-decoration-color: rgba(240, 237, 232, 0.34);
  text-underline-offset: 4px;
}

.legal-card dl {
  display: grid;
  gap: 14px;
  margin: 0;
}

.legal-card dl div {
  display: grid;
  grid-template-columns: minmax(140px, 0.32fr) minmax(0, 1fr);
  gap: 20px;
  padding-top: 14px;
  border-top: 1px solid rgba(240, 237, 232, 0.1);
}

.legal-card dl div:first-child {
  padding-top: 0;
  border-top: 0;
}

.legal-card dt {
  color: var(--text);
  font-weight: 700;
}

.legal-card dd {
  margin: 0;
}

/* Global polish pass: unify CTAs, rhythm, and glass surfaces. */
:is(.header-cta, .integration-cta, .growth-demo, .faq-contact-link) {
  position: relative;
  overflow: hidden;
  border-radius: 999px;
  min-height: 50px;
  border: 1px solid rgba(240, 237, 232, 0.38);
  color: var(--accent);
  font-size: 14px;
  font-weight: 680;
  letter-spacing: -0.01em;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), transparent 58%),
    rgba(255, 255, 255, 0.026);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.055), 0 14px 34px rgba(0, 0, 0, 0.18);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

:is(.header-cta, .integration-cta, .growth-demo, .faq-contact-link):hover {
  border-color: rgba(240, 237, 232, 0.7);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 58%),
    rgba(201, 180, 154, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 18px 42px rgba(201, 180, 154, 0.12);
  transform: translateY(-2px);
}

:is(.button, .header-cta, .integration-cta, .growth-demo, .faq-contact-link) span {
  display: inline-grid;
  place-items: center;
  min-width: 18px;
  transition: transform 180ms ease;
}

:is(.button, .header-cta, .integration-cta, .growth-demo, .faq-contact-link):hover span {
  transform: translateX(3px);
}

:is(.calendar-preview, .integrations-panel, .demo-panel, .faq-contact, .faq-item, .growth-item, .growth-metrics article, .automation-card, .product-panel, .feature-card, .closing-panel) {
  background-color: rgba(255, 255, 255, 0.032);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.045), 0 24px 70px rgba(0, 0, 0, 0.24);
}

.section-heading {
  margin-bottom: 54px;
}

.platform,
.automation,
.integrations,
.faq {
  padding-top: 96px;
  padding-bottom: 96px;
}

.demo {
  padding-top: 82px;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 900ms cubic-bezier(0.22, 1, 0.36, 1), transform 900ms cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.hero .reveal {
  opacity: 1;
  transform: none;
  transition: none;
}

.delay-1 {
  transition-delay: 140ms;
}

.delay-2 {
  transition-delay: 220ms;
}

@media (max-width: 1180px) {
  .site-header {
    padding: 8px 22px;
  }

  .site-nav-panel,
  .site-header.is-scrolled .site-nav-panel {
    max-width: var(--max);
    padding: 0 18px;
  }

  .desktop-nav-wrap {
    display: none;
  }

  .menu-toggle {
    display: grid;
  }

  .site-nav-panel {
    position: relative;
  }

  .site-nav-panel:has(.header-actions.is-open) {
    border-radius: 24px 24px 0 0;
    border-color: var(--line) var(--line) transparent var(--line);
    background: rgba(3, 10, 9, 0.96);
    backdrop-filter: blur(22px);
  }

  .header-actions {
    position: absolute;
    top: calc(100% - 1px);
    left: -1px;
    right: -1px;
    z-index: 39;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 24px;
    padding: 20px 24px 24px;
    border: 1px solid var(--line);
    border-top: none;
    border-radius: 0 0 24px 24px;
    background: rgba(3, 10, 9, 0.96);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    pointer-events: none;
    transition:
      opacity 240ms ease,
      transform 240ms ease,
      visibility 0ms linear 240ms;
  }

  .header-actions.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
    transition:
      opacity 240ms ease,
      transform 240ms ease,
      visibility 0ms linear 0ms;
  }

  .mobile-nav {
    display: block;
  }

  .mobile-nav ul {
    display: grid;
    gap: 2px;
    padding: 0;
    margin: 0;
    list-style: none;
  }

  .mobile-nav a {
    display: block;
    padding: 14px 2px;
    color: var(--text);
    font-size: 22px;
    font-weight: 650;
  }

  .header-buttons {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .auth-button {
    width: 100%;
    min-height: 44px;
  }

  .hero {
    padding-top: 130px;
  }

  .hero-copy {
    max-width: 900px;
  }

  .dashboard-shell {
    min-height: auto;
  }

  .stats-band,
  .automation-grid,
  .operations-layout,
  .split-layout,
  .integrations-panel,
  .investor-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .stats-band {
    width: min(var(--max), calc(100% - 44px));
  }

  .stat-card:nth-child(2n) {
    border-right: 0;
  }

  .operations-layout,
  .split-layout,
  .control-layout,
  .integrations-panel,
  .investor-grid {
    grid-template-columns: 1fr;
  }

  .control-layout {
    min-height: auto;
  }

  .control-copy {
    max-width: 760px;
  }

  .control-visual {
    order: 2;
    min-height: 600px;
  }

  .calendar-preview {
    overflow-x: auto;
  }

  .platform-preview-panel {
    min-width: 760px;
  }

  .ops-board,
  .inbox-preview,
  .revenue-preview {
    grid-template-columns: 1fr;
  }

  .integrations-panel {
    min-height: auto;
  }

  .integration-map {
    width: 100%;
    min-height: auto;
    margin-inline: auto;
  }

  .integration-tile {
    height: 118px;
  }

  .integration-row-top .integration-tile {
    flex-basis: calc((100% - 32px) / 3);
  }

  .integration-row-bottom .integration-tile {
    flex-basis: calc((100% - 48px) / 4);
  }

  .faq-layout {
    grid-template-columns: 1fr;
    max-width: 820px;
  }

  .faq-contact {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 22px;
    align-items: center;
    min-height: auto;
  }

  .faq-contact-icon,
  .faq-contact h3,
  .faq-contact p {
    margin: 0;
  }

  .growth-top {
    grid-template-columns: 1fr;
  }

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

  .growth-feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin: 28px 0 0;
    padding-left: 0;
    border-left: 0;
  }

  .growth-item.is-open .growth-answer-inner {
    padding-left: 78px;
  }
}

@media (max-width: 760px) {
  body::after,
  .hero-lines {
    display: none;
  }

  .section {
    padding: 96px 20px;
  }

  .site-header {
    top: 18px;
    width: calc(100% - 28px);
    min-height: 58px;
    padding: 0 10px 0 14px;
  }

  .brand-logo {
    max-height: 16px;
    max-width: 180px;
  }

  .site-header {
    padding-inline: 16px;
  }

  .site-nav-row {
    min-height: 62px;
  }

  .hero {
    min-height: auto;
    padding-top: 112px;
    padding-bottom: 56px;
  }

  h1 {
    font-size: clamp(42px, 13vw, 64px);
  }

  h2 {
    font-size: clamp(30px, 9vw, 44px);
  }

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

  .button {
    width: 100%;
  }

  .hero-trust {
    margin-top: 32px;
    padding-inline: 0;
  }

  .trust-marquee-track {
    gap: 40px;
    animation-duration: 36s;
  }

  .dashboard-shell {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 10px;
    border-radius: 24px;
  }

  .dashboard-rail {
    display: none;
  }

  .dashboard-main {
    padding: 16px;
  }

  .dashboard-topbar,
  .metric-cards,
  .dashboard-grid,
  .stats-band,
  .automation-grid,
  .investor-metrics,
  .logo-cloud {
    grid-template-columns: 1fr;
  }

  .integrations-panel {
    padding: 34px 22px;
    border-radius: 24px;
  }

  .integrations-copy h2 {
    font-size: clamp(34px, 10vw, 48px);
  }

  .integration-map::before,
  .integration-path {
    display: none;
  }

  .integration-row {
    flex-direction: column;
  }

  .integration-row-top .integration-tile,
  .integration-row-bottom .integration-tile {
    flex-basis: auto;
    width: 100%;
  }

  .faq-heading h2 {
    font-size: clamp(34px, 10vw, 46px);
  }

  .faq-contact {
    grid-template-columns: 1fr;
    padding: 26px;
  }

  .faq-contact-icon {
    width: 66px;
    height: 66px;
  }

  .faq-item button {
    grid-template-columns: 28px 1fr;
    gap: 14px;
    padding-inline: 18px;
  }

  .faq-answer p {
    padding-inline: 60px 20px;
  }

  .growth-metrics,
  .growth-feature-grid,
  .growth-bottom {
    grid-template-columns: 1fr;
  }

  .growth-copy h2 {
    font-size: clamp(34px, 10vw, 48px);
  }

  .growth-metrics article {
    min-height: auto;
  }

  .growth-item button {
    grid-template-columns: 32px 1fr 18px;
    gap: 14px;
    padding-inline: 18px;
  }

  .growth-item.is-open .growth-answer-inner {
    padding: 0 20px 26px 64px;
  }

  .growth-answer-inner > p {
    max-width: none;
  }

  .growth-bottom {
    justify-items: start;
  }

  .dashboard-topbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .stats-band {
    padding: 12px;
  }

  .stat-card,
  .stat-card:nth-child(2n) {
    border-right: 0;
    border-bottom: 1px solid rgba(240, 237, 232, 0.13);
  }

  .stat-card:last-child {
    border-bottom: 0;
  }

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

  .property-column {
    display: none;
  }

  .calendar-summary {
    align-items: stretch;
    flex-direction: column;
    padding: 0;
  }

  .calendar-summary span {
    padding: 16px;
    border-right: 0;
    border-bottom: 1px solid rgba(240, 237, 232, 0.13);
  }

  .calendar-summary a {
    margin: 16px;
    text-align: center;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding: 22px;
  }

  .footer-legal {
    flex-wrap: wrap;
  }

  .legal-main {
    padding-top: 96px;
  }

  .legal-hero {
    padding-top: 56px;
  }

  .legal-card dl div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .workflow-stack article {
    padding: 78px 22px 24px;
  }

  .workflow-stack span {
    top: 22px;
    left: 22px;
  }

  .automation-card {
    min-height: 320px;
  }

  .automation-card h3 {
    margin-top: auto;
  }

  .control-visual {
    min-height: 720px;
  }

  .control-card {
    width: min(210px, 44vw);
  }

  .card-revenue { top: 4%; left: 0; }
  .card-bookings { top: 0; left: 50%; translate: -50% 0; }
  .card-occupancy { top: 15%; right: 0; }
  .card-messages { top: 28%; left: 0; }
  .card-listings { top: 31%; right: 0; }
  .card-cleanings { top: 47%; left: 2%; }
  .card-channels { top: 48%; right: 2%; }

  .control-hub {
    top: 38%;
    width: 144px;
    height: 88px;
    font-size: 54px;
  }

  .control-hub i {
    width: 190px;
  }

  .property-island {
    bottom: 0;
    width: 94%;
  }

  .control-actions article {
    grid-template-columns: 54px 1fr;
  }

  .control-actions b {
    display: none;
  }

  .automation-heading {
    margin-bottom: 56px;
  }

  .automation-heading h2 {
    font-size: clamp(40px, 10vw, 64px);
  }

  .automation-card {
    min-height: 360px;
  }

  .investor-metrics div {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(240, 237, 232, 0.12);
  }

  .investor-metrics div:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 430px) {
  .brand-logo {
    max-height: 14px;
    max-width: 160px;
  }

  .site-header {
    padding-inline: 14px;
  }

  .header-actions {
    padding: 22px;
  }

  .hero-copy p:not(.eyebrow),
  .section-heading p,
  .split-copy p,
  .investor-copy p,
  .demo-panel p {
    font-size: 17px;
  }

  .calendar-preview {
    padding: 16px;
  }

  .timeline {
    min-width: 520px;
  }

  .platform-preview-panel {
    min-width: 620px;
  }

  .preview-topline {
    align-items: flex-start;
    flex-direction: column;
  }

  .preview-metrics {
    grid-template-columns: 1fr;
  }

  .preview-metrics span {
    border-right: 0;
    border-bottom: 1px solid rgba(240, 237, 232, 0.14);
  }

  .preview-metrics span:last-child {
    border-bottom: 0;
  }

  .channel-preview {
    grid-template-columns: 1fr;
  }
}

/* ─── Tilt card animation ─────────────────────────────────────────────────── */
.metric-cards article,
.ops-main-card,
.automation-card,
.legal-card {
  position: relative;
}

.metric-cards article,
.ops-main-card,
.control-card,
.automation-card,
.legal-card {
  overflow: hidden;
  will-change: transform;
  transition: transform 0.2s ease-out, border-color 180ms ease, background 180ms ease;
}

.tilt-spotlight {
  position: absolute;
  inset: 0;
  z-index: 10;
  pointer-events: none;
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* Mobile comfort pass: keep complex desktop visuals readable on phones. */
@media (max-width: 1180px) {
  .platform-preview-panel {
    min-width: 0;
  }

  .calendar-preview {
    overflow: hidden;
  }

  .growth-item.is-open .growth-answer-inner {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-left: 34px;
  }
}

@media (max-width: 760px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }

  .section {
    padding: 82px 18px;
  }

  .site-header {
    top: 0;
    left: 0;
    width: 100%;
    min-height: 0;
    padding: 8px 12px;
  }

  .site-nav-panel,
  .site-header.is-scrolled .site-nav-panel {
    max-width: none;
    padding: 0 14px;
    border-radius: 18px;
  }

  .site-nav-row {
    min-height: 58px;
    gap: 12px;
  }

  .brand {
    min-width: 0;
  }

  .brand > span:last-child {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .menu-toggle {
    flex: 0 0 auto;
    width: 42px;
    height: 42px;
    margin-left: 8px;
  }

  .menu-toggle span:first-child {
    top: 15px;
  }

  .menu-toggle span:last-child {
    top: 24px;
  }

  .header-actions {
    left: -2px;
    right: -2px;
    max-height: calc(100vh - 86px);
    overflow-y: auto;
    padding: 18px;
    border-radius: 20px;
  }

  .mobile-nav a {
    padding: 12px 0;
    font-size: 18px;
  }

  .hero {
    padding-top: 108px;
    padding-bottom: 42px;
  }

  .hero h1 {
    margin-top: 34px;
    font-size: clamp(42px, 12vw, 58px);
    line-height: 1.08;
  }

  .hero-copy > p {
    font-size: 16px;
    line-height: 1.6;
  }

  .hero-badge {
    max-width: 100%;
    gap: 10px;
    padding-left: 12px;
    font-size: 12px;
  }

  .hero-badge span:first-child {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .hero-actions {
    gap: 12px;
    margin-top: 28px;
  }

  .hero-product {
    width: 100%;
    margin-top: 44px;
    padding: 0;
  }

  .dashboard-shell {
    padding: 8px;
    border-radius: 18px;
  }

  .hero-screen-image {
    border-radius: 14px;
  }

  .section-heading {
    margin-bottom: 36px;
    text-align: left;
  }

  .section-heading h2,
  .automation-heading h2,
  .growth-copy h2,
  .faq-heading h2,
  .integrations-copy h2,
  .control-copy h2 {
    font-size: clamp(34px, 10vw, 46px);
    line-height: 1.08;
  }

  .platform {
    padding-top: 0;
  }

  .problem-solution-flow {
    padding-bottom: 48px;
  }

  .operations-layout {
    gap: 28px;
  }

  .feature-row {
    grid-template-columns: 48px 1fr;
    gap: 14px;
    padding: 16px 0;
  }

  .feature-row.active {
    padding-left: 10px;
  }

  .feature-row span {
    width: 44px;
    height: 44px;
    font-size: 18px;
  }

  .feature-row h3 {
    font-size: 18px;
  }

  .feature-row p {
    font-size: 14px;
  }

  .calendar-preview {
    padding: 14px;
    border-radius: 18px;
  }

  .platform-preview-panel {
    min-width: 0;
    min-height: auto;
  }

  .calendar-toolbar {
    gap: 8px;
    margin-bottom: 18px;
  }

  .calendar-toolbar strong {
    flex-basis: 100%;
    margin-right: 0;
  }

  .calendar-toolbar span,
  .calendar-toolbar button {
    padding: 8px 10px;
    font-size: 12px;
  }

  .calendar-grid {
    display: block;
    min-height: auto;
  }

  .property-column {
    display: none;
  }

  .timeline {
    display: grid;
    gap: 10px;
    min-width: 0;
    min-height: auto;
    padding: 12px;
    overflow: visible;
    border: 1px solid rgba(240, 237, 232, 0.08);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.028);
  }

  .timeline::after {
    display: none;
  }

  .day-row {
    height: auto;
    min-width: 0;
    padding-bottom: 4px;
    font-size: 10px;
  }

  .booking,
  .b1,
  .b2,
  .b3,
  .b4,
  .b5,
  .b6,
  .b7 {
    position: static;
    width: auto;
    min-height: auto;
  }

  .booking {
    align-items: center;
    padding: 10px 12px;
    font-size: 12px;
  }

  .booking small {
    margin-left: 12px;
  }

  .calendar-summary {
    margin-top: 14px;
  }

  .ops-board,
  .inbox-preview,
  .revenue-preview,
  .channel-preview {
    min-height: auto;
  }

  .ops-main-card {
    padding: 24px;
  }

  .ops-main-card h3 {
    margin-top: 42px;
    font-size: clamp(24px, 8vw, 34px);
  }

  .ops-steps {
    padding: 20px;
  }

  .inbox-preview aside,
  .inbox-preview section,
  .revenue-preview article {
    padding: 18px;
  }

  .inbox-preview button {
    justify-self: stretch;
    min-height: 46px;
  }

  .revenue-preview article strong {
    font-size: clamp(48px, 18vw, 72px);
  }

  .revenue-chart {
    min-height: 240px;
  }

  .channel-preview article {
    min-height: 150px;
    padding: 22px;
  }

  .preview-metrics {
    grid-template-columns: 1fr;
  }

  .preview-metrics span {
    padding: 16px 18px;
    border-right: 0;
    border-bottom: 1px solid rgba(240, 237, 232, 0.14);
  }

  .preview-metrics span:last-child {
    border-bottom: 0;
  }

  .solutions {
    padding-top: 76px;
  }

  .control-layout {
    gap: 28px;
  }

  .control-visual {
    display: none;
  }

  .control-copy {
    max-width: none;
  }

  .control-actions {
    gap: 10px;
    margin-top: 24px;
  }

  .control-actions article {
    grid-template-columns: 42px 1fr;
    gap: 14px;
    padding: 16px;
  }

  .control-actions article > span {
    width: 38px;
    height: 38px;
  }

  .control-actions b {
    display: none;
  }

  .automation-grid {
    gap: 16px;
  }

  .automation-card {
    grid-template-rows: auto auto auto;
    min-height: auto;
    padding: 24px;
  }

  .automation-card h3 {
    margin-top: 18px;
  }

  .automation-card p {
    max-width: none;
  }

  .integrations-panel {
    gap: 30px;
    padding: 30px 18px;
    border-radius: 22px;
  }

  .integrations-copy p:not(.eyebrow) {
    max-width: none;
  }

  .integration-map {
    min-height: auto;
    gap: 10px;
  }

  .integration-row {
    gap: 10px;
  }

  .integration-tile {
    height: 76px;
    border-radius: 12px;
    font-size: clamp(16px, 6vw, 22px);
  }

  .growth-top {
    gap: 24px;
    margin-bottom: 28px;
  }

  .growth-copy,
  .growth-copy p:not(.eyebrow) {
    max-width: none;
  }

  .growth-metrics {
    gap: 12px;
  }

  .growth-metrics article {
    min-height: auto;
    padding: 20px;
  }

  .growth-item button {
    grid-template-columns: 30px 1fr;
    gap: 12px;
    min-height: 62px;
    padding: 14px 16px;
  }

  .growth-item.is-open button {
    min-height: 62px;
  }

  .growth-item button i {
    display: none;
  }

  .growth-item button strong {
    font-size: 15px;
    line-height: 1.3;
  }

  .growth-toggle {
    width: 28px;
    height: 28px;
  }

  .growth-item.is-open .growth-answer-inner {
    display: block;
    padding: 0 16px 22px;
  }

  .growth-answer-inner > p {
    font-size: 14px;
    line-height: 1.6;
  }

  .growth-feature-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 18px;
    padding-left: 0;
    border-left: 0;
  }

  .growth-bottom {
    grid-template-columns: 1fr;
    gap: 14px;
    justify-items: stretch;
    padding: 18px;
    border: 1px solid rgba(240, 237, 232, 0.12);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.026);
  }

  .growth-demo {
    width: 100%;
  }

  .faq-heading {
    text-align: left;
  }

  .faq-contact {
    padding: 22px;
  }

  .faq-contact-icon {
    margin-bottom: 0;
  }

  .faq-item button {
    grid-template-columns: 28px 1fr;
    gap: 12px;
    padding: 18px 16px;
  }

  .faq-item.is-open button {
    min-height: auto;
    padding-top: 18px;
  }

  .faq-item strong {
    font-size: 15px;
  }

  .faq-answer p {
    padding: 0 16px 0 52px;
    color: rgba(240, 237, 232, 0.88);
    font-size: 15px;
    line-height: 1.65;
  }

  .faq-item.is-open .faq-answer p {
    padding-bottom: 20px;
  }

  .demo-panel {
    padding: 34px 20px;
    border-radius: 22px;
  }

  .footer-inner {
    padding: 20px;
  }
}

@media (max-width: 430px) {
  .section {
    padding-right: 16px;
    padding-left: 16px;
  }

  .brand {
    max-width: calc(100vw - 112px);
  }

  .hero h1 {
    font-size: clamp(38px, 13vw, 52px);
  }

  .hero-badge {
    width: 100%;
    justify-content: space-between;
  }

  .calendar-preview {
    padding: 12px;
  }

  .calendar-toolbar span:nth-of-type(2) {
    display: none;
  }

  .day-row {
    grid-template-columns: repeat(7, minmax(30px, 1fr));
  }

  .booking {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .booking small {
    margin-left: 0;
  }

  .control-actions article {
    grid-template-columns: 1fr;
  }

  .control-actions article > span {
    width: 34px;
    height: 34px;
  }

  .integration-row {
    flex-direction: column;
  }

  .integration-row-top .integration-tile,
  .integration-row-bottom .integration-tile {
    width: 100%;
  }

  .faq-answer p {
    padding-left: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .trust-marquee-track {
    animation: none;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    padding-inline: 0;
  }

  .trust-marquee-track [aria-hidden="true"] {
    display: none;
  }
}
