:root {
  --royal: #1644db;
  --royal-2: #2468ee;
  --royal-3: #4bb7e8;
  --navy: #06143f;
  --navy-2: #0a1e63;
  --ink: #101828;
  --text: #24324a;
  --muted: #66758f;
  --line: #d8e3f4;
  --soft: #f4f8ff;
  --soft-2: #edf4ff;
  --white: #ffffff;
  --gold: #bc8212;
  --green: #11734d;
  --red: #b42318;
  --shadow: 0 24px 80px rgba(6, 20, 63, .16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, #ffffff 0%, #f8fbff 38%, #ffffff 100%);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, textarea { font: inherit; }
:focus-visible { outline: 3px solid #f0bd38; outline-offset: 4px; }
.skip-link {
  position: fixed;
  top: 14px;
  left: 14px;
  z-index: 300;
  transform: translateY(-150%);
  background: var(--navy);
  color: var(--white);
  padding: 10px 14px;
  border-radius: 6px;
}
.skip-link:focus { transform: translateY(0); }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .68);
  border-bottom: 1px solid rgba(216, 227, 244, .62);
  backdrop-filter: blur(22px) saturate(1.15);
  transition: background 220ms ease, box-shadow 220ms ease;
}
.site-header.scrolled {
  background: rgba(255, 255, 255, .86);
  box-shadow: 0 12px 42px rgba(6, 20, 63, .1);
}
.nav-shell {
  width: min(1240px, calc(100% - 40px));
  min-height: 58px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}
.brand img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}
.brand-text {
  display: grid;
  line-height: 1.05;
}
.brand-text strong {
  color: var(--navy);
  font-size: .98rem;
  letter-spacing: 0;
}
.brand-text span {
  color: #53647f;
  font-size: .68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  border: 1px solid rgba(216, 227, 244, .82);
  border-radius: 999px;
  background: rgba(255, 255, 255, .64);
  padding: 4px;
}
.nav-links a {
  border-radius: 999px;
  color: #2d3d58;
  font-size: .88rem;
  font-weight: 800;
  padding: 8px 13px;
}
.nav-links a:hover,
.nav-links a.active {
  background: var(--navy);
  color: var(--white);
}
.menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, .88);
  cursor: pointer;
}
.menu-toggle span:not(.sr-only) {
  width: 19px;
  height: 2px;
  background: var(--navy);
}

.hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 85% 15%, rgba(75, 183, 232, .34), transparent 31%),
    radial-gradient(circle at 9% 88%, rgba(36, 104, 238, .48), transparent 34%),
    linear-gradient(126deg, #040c28 0%, #071c62 46%, #1644db 100%);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .055) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, black, transparent 88%);
}
.hero::after {
  content: "";
  position: absolute;
  width: 740px;
  height: 740px;
  right: -310px;
  top: 8%;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .16);
  box-shadow: inset 0 0 80px rgba(255, 255, 255, .05);
  animation: slowRotate 34s linear infinite;
}
.hero-grid {
  position: relative;
  z-index: 1;
  width: min(1240px, calc(100% - 40px));
  min-height: calc(100vh - 58px);
  margin: 0 auto;
  padding: 70px 0 82px;
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(510px, 1.05fr);
  align-items: center;
  gap: 54px;
}
.eyebrow {
  margin: 0 0 13px;
  color: #8be0ff;
  font-size: .76rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}
.hero h1,
.section h1,
.section h2,
.contact-strip h2,
.footer h2 {
  margin: 0;
  letter-spacing: 0;
  line-height: 1.04;
}
.hero h1 {
  max-width: 820px;
  font-size: clamp(3.55rem, 8.4vw, 7.2rem);
}
.hero-lede {
  max-width: 720px;
  margin: 24px 0 0;
  color: #e3ebff;
  font-size: 1.16rem;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}
.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 12px 18px;
  font-weight: 900;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary {
  color: var(--navy);
  background: var(--white);
  box-shadow: 0 16px 34px rgba(0, 0, 0, .2);
}
.button-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, .38);
  background: rgba(255, 255, 255, .08);
}
.blue-button {
  color: var(--white);
  background: var(--royal);
  box-shadow: 0 16px 34px rgba(22, 68, 219, .2);
}
.trust-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 740px;
  margin: 38px 0 0;
}
.trust-row div {
  border: 1px solid rgba(255, 255, 255, .17);
  border-radius: 10px;
  padding: 16px;
  background: rgba(255, 255, 255, .075);
  backdrop-filter: blur(12px);
}
.trust-row dt {
  color: var(--white);
  font-size: 1.48rem;
  font-weight: 900;
}
.trust-row dd {
  margin: 2px 0 0;
  color: #d9e5ff;
  font-size: .88rem;
}

.command-center {
  position: relative;
  display: grid;
  gap: 14px;
  transform: perspective(1200px) rotateX(2deg) rotateY(-4deg);
}
.command-center::before {
  content: "";
  position: absolute;
  inset: 12% -5% -5% 8%;
  background: rgba(75, 183, 232, .12);
  filter: blur(44px);
}
.product-shell {
  position: relative;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 14px;
  background: rgba(255, 255, 255, .96);
  color: var(--ink);
  box-shadow: 0 32px 95px rgba(0, 0, 0, .36);
  overflow: hidden;
  animation: glassFloat 8s ease-in-out infinite;
}
.product-top {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, #fff, #f6f9ff);
}
.product-name {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
  font-weight: 900;
}
.product-name img {
  width: 30px;
  height: 30px;
}
.status-pill {
  border-radius: 999px;
  background: #e8f7f1;
  color: var(--green);
  padding: 6px 10px;
  font-size: .76rem;
  font-weight: 900;
}
.product-layout {
  display: grid;
  grid-template-columns: 150px 1fr;
  min-height: 490px;
}
.product-sidebar {
  border-right: 1px solid var(--line);
  background: #f5f8ff;
  padding: 14px;
  display: grid;
  align-content: start;
  gap: 9px;
}
.product-sidebar span {
  border-radius: 8px;
  padding: 9px 10px;
  color: #32425d;
  font-size: .8rem;
  font-weight: 900;
}
.product-sidebar span:first-child {
  color: var(--white);
  background: var(--royal);
}
.product-main {
  padding: 16px;
  display: grid;
  gap: 14px;
}
.metric-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}
.metric-grid article {
  min-height: 104px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: linear-gradient(180deg, #fff, #f7faff);
  padding: 13px;
}
.metric-grid span,
.metric-grid small,
.activity time {
  color: var(--muted);
  font-size: .78rem;
}
.metric-grid strong {
  display: block;
  margin: 8px 0 2px;
  color: var(--navy);
  font-size: 1.7rem;
  line-height: 1;
}
.ops-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 12px;
}
.room-board,
.activity {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  padding: 13px;
}
.room-board h2,
.activity h2 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: .94rem;
}
.room-map {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
}
.room-map span {
  min-height: 42px;
  border-radius: 7px;
  animation: tileGlow 5s ease-in-out infinite;
}
.available { background: #dff6eb; }
.occupied { background: #dce7ff; }
.reserved { background: #fff1d2; }
.cleaning { background: #e7edf7; }
.activity {
  display: grid;
  gap: 9px;
}
.activity div {
  display: grid;
  grid-template-columns: 10px 1fr auto;
  gap: 9px;
  align-items: center;
}
.activity p {
  margin: 0;
  color: #33435d;
  font-size: .82rem;
}
.dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--royal);
  box-shadow: 0 0 0 5px rgba(22, 68, 219, .1);
}
.dot.gold { background: var(--gold); box-shadow: 0 0 0 5px rgba(188, 130, 18, .12); }
.dot.green { background: var(--green); box-shadow: 0 0 0 5px rgba(17, 115, 77, .12); }
.mini-panels {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: -8px 24px 0;
}
.mini-panels article {
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 12px;
  background: rgba(255, 255, 255, .13);
  color: var(--white);
  padding: 14px;
  backdrop-filter: blur(14px);
}
.mini-panels strong {
  display: block;
  font-size: 1rem;
}
.mini-panels span {
  color: #dce7ff;
  font-size: .82rem;
}

.section {
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto;
  padding: 92px 0;
}
.section-heading {
  max-width: 820px;
}
.section h1,
.section h2,
.contact-strip h2 {
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 3.6rem);
}
.section-heading p:not(.eyebrow),
.lead-copy {
  color: var(--muted);
  margin: 18px 0 0;
  font-size: 1.06rem;
}
.executive-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 38px;
}
.executive-card,
.feature-card,
.security-grid article,
.suite-card,
.workflow-card {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 14px 44px rgba(6, 20, 63, .07);
  padding: 22px;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}
.executive-card:hover,
.feature-card:hover,
.security-grid article:hover,
.suite-card:hover,
.workflow-card:hover {
  transform: translateY(-5px);
  border-color: #aec4ef;
  box-shadow: var(--shadow);
}
.executive-card strong {
  display: block;
  color: var(--royal);
  font-size: 1.7rem;
  line-height: 1;
  margin-bottom: 8px;
}
.executive-card span,
.feature-card p,
.operations-copy p,
.security-grid p,
.suite-card p,
.workflow-card p,
.footer p {
  color: var(--muted);
}
.screenshot-band {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.screenshot-frame {
  margin: 40px 0 0;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #07165f;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.screenshot-frame img { width: 100%; }
.screenshot-frame figcaption {
  padding: 15px 18px;
  color: #e3ebff;
  background: #06143f;
  font-weight: 800;
}
.feature-grid,
.security-grid,
.suite-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 40px;
}
.feature-icon {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: var(--soft-2);
  color: var(--royal);
  font-weight: 900;
}
.feature-card h3,
.security-grid h3,
.suite-card h2,
.suite-card h3,
.workflow-card h2 {
  margin: 18px 0 9px;
  color: var(--navy);
  font-size: 1.08rem;
  line-height: 1.24;
}
.operations {
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  gap: 50px;
  align-items: start;
}
.operations-list,
.process-list {
  display: grid;
  gap: 12px;
}
.operations-list div,
.process-list div {
  display: grid;
  grid-template-columns: 168px 1fr;
  gap: 20px;
  align-items: start;
  border: 1px solid var(--line);
  border-left: 4px solid var(--royal);
  border-radius: 0 12px 12px 0;
  background: var(--soft);
  padding: 18px 20px;
}
.operations-list strong {
  color: var(--navy);
}
.operations-list span,
.process-list p {
  color: #52637f;
}
.capability-band {
  background:
    radial-gradient(circle at 20% 0%, rgba(75, 183, 232, .18), transparent 31%),
    linear-gradient(135deg, #06143f, #09206c);
  color: var(--white);
  padding: 86px 0;
}
.capability-shell {
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 42px;
  align-items: center;
}
.capability-panel h2 {
  color: var(--white);
  font-size: clamp(2rem, 3.6vw, 3rem);
}
.capability-panel p {
  color: #dbe7ff;
  margin: 18px 0 0;
}
.capability-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}
.capability-grid span {
  min-height: 54px;
  display: flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 10px;
  background: rgba(255, 255, 255, .08);
  color: #f4f8ff;
  padding: 12px 14px;
  font-weight: 900;
}
.security-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.contact-strip {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: linear-gradient(135deg, #f8fbff, #edf4ff);
  box-shadow: var(--shadow);
  padding: clamp(28px, 5vw, 52px);
}

.sub-hero {
  background:
    radial-gradient(circle at 86% 12%, rgba(75, 183, 232, .27), transparent 32%),
    linear-gradient(126deg, #040c28, #0a1e63 52%, #1644db);
  color: var(--white);
}
.sub-hero .section { padding: 82px 0; }
.sub-hero h1 {
  color: var(--white);
  max-width: 940px;
}
.sub-hero p {
  max-width: 780px;
  color: #e3ebff;
  font-size: 1.13rem;
}
.suite-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.process-list { counter-reset: steps; margin-top: 36px; }
.process-list div {
  counter-increment: steps;
  position: relative;
  grid-template-columns: 1fr;
  padding-left: 74px;
}
.process-list div::before {
  content: counter(steps);
  position: absolute;
  left: 20px;
  top: 22px;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: var(--royal);
  color: var(--white);
  font-weight: 900;
}
.process-list h2 { font-size: 1.16rem; }

.contact-card {
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  gap: 42px;
  align-items: start;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: linear-gradient(135deg, #f8fbff, #edf4ff);
  box-shadow: var(--shadow);
  padding: clamp(28px, 5vw, 54px);
}
.contact-form {
  display: grid;
  gap: 14px;
}
.contact-form label {
  display: grid;
  gap: 6px;
  color: var(--navy);
  font-weight: 900;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid #b8c8e3;
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  padding: 12px 14px;
}
.contact-form textarea {
  min-height: 124px;
  resize: vertical;
}
.form-note {
  min-height: 24px;
  margin: 0;
  color: var(--green);
  font-weight: 900;
}

.footer {
  background:
    linear-gradient(180deg, #f7faff, #eef4ff);
  border-top: 1px solid var(--line);
}
.footer-grid {
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto;
  padding: 54px 0 38px;
  display: grid;
  grid-template-columns: 1.25fr repeat(3, 1fr);
  gap: 34px;
}
.footer-brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  margin-bottom: 14px;
}
.footer h2 {
  color: var(--navy);
  font-size: 1rem;
  margin-bottom: 14px;
}
.footer a,
.footer span {
  display: block;
  color: #52637f;
  margin: 8px 0;
  font-weight: 800;
}
.footer a:hover { color: var(--royal); }
.footer-bottom {
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto;
  border-top: 1px solid var(--line);
  padding: 18px 0 28px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: #62708a;
  font-weight: 800;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: none;
  place-items: center;
  padding: 20px;
  background: rgba(6, 20, 63, .58);
}
.modal.open { display: grid; }
.modal-card {
  width: min(520px, 100%);
  position: relative;
  border-radius: 14px;
  background: var(--white);
  box-shadow: var(--shadow);
  padding: 34px;
}
.modal-card h2 {
  margin: 0 0 12px;
  color: var(--navy);
}
.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  cursor: pointer;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 650ms ease, transform 650ms ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
@keyframes slowRotate { to { transform: rotate(360deg); } }
@keyframes glassFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes tileGlow { 0%, 100% { filter: brightness(1); } 50% { filter: brightness(1.08); } }

@media (max-width: 1080px) {
  .hero-grid,
  .operations,
  .capability-shell,
  .contact-card {
    grid-template-columns: 1fr;
  }
  .hero-grid { min-height: auto; }
  .command-center { max-width: 760px; transform: none; }
  .feature-grid,
  .executive-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 760px) {
  .nav-shell,
  .hero-grid,
  .section,
  .capability-shell,
  .footer-grid,
  .footer-bottom {
    width: min(100% - 28px, 1240px);
  }
  .menu-toggle { display: inline-flex; }
  .nav-links {
    position: absolute;
    top: 58px;
    left: 14px;
    right: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    border-radius: 14px;
    background: rgba(255, 255, 255, .96);
    box-shadow: var(--shadow);
    padding: 10px;
  }
  .nav-links.open { display: flex; }
  .brand-text span { display: none; }
  .hero-grid { padding-top: 56px; }
  .hero h1 { font-size: 3.08rem; }
  .hero-lede { font-size: 1rem; }
  .trust-row,
  .metric-grid,
  .feature-grid,
  .security-grid,
  .capability-grid,
  .suite-grid,
  .executive-grid,
  .footer-grid,
  .mini-panels,
  .ops-grid {
    grid-template-columns: 1fr;
  }
  .product-layout { grid-template-columns: 1fr; }
  .product-sidebar {
    grid-template-columns: repeat(2, 1fr);
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .room-map { grid-template-columns: repeat(4, 1fr); }
  .operations-list div { grid-template-columns: 1fr; gap: 6px; }
  .contact-strip,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
  .reveal { opacity: 1; transform: none; }
}


/* new */
/* ===========================
   WhatsApp Live Chat
=========================== */

.whatsapp-chat{
    position:fixed;
    right:25px;
    bottom:25px;
    z-index:9999;

    display:flex;
    align-items:center;
    gap:12px;

    background:#25D366;
    color:#fff;

    text-decoration:none;

    padding:14px 18px;
    border-radius:60px;

    font-weight:600;
    box-shadow:0 15px 35px rgba(0,0,0,.25);

    transition:.3s ease;
}

.whatsapp-chat:hover{
    transform:translateY(-4px);
    background:#1ebe5d;
}

.whatsapp-chat svg{
    flex-shrink:0;
}

@media(max-width:700px){

.whatsapp-chat{
    width:62px;
    height:62px;
    justify-content:center;
    padding:0;
}

.whatsapp-chat span{
    display:none;
}

}
.footer-divider{
    border:0;
    height:1px;
    background:rgba(255,255,255,.12);
    margin:35px 0 25px;
}


/* =====================================================
   HERO SECTION OVERRIDES
===================================================== */

.hero{
    padding:40px 0 70px;
}

.hero-grid{
    min-height:auto;
    gap:80px;
    align-items:center;
    grid-template-columns:1fr 1.1fr;
}

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

.hero h1{
    max-width:560px;
    font-size:clamp(2.9rem,5vw,4.5rem);
    line-height:1.08;
    font-weight:800;
    letter-spacing:-1px;
    margin:18px 0;
}

.hero-lede{
    max-width:540px;
    margin:0;
    color:#dce7ff;
    font-size:1.08rem;
    line-height:1.75;
}

.hero-actions{
    margin-top:34px;
    margin-bottom:32px;
}

.hero .button{
    min-height:50px;
    padding:14px 24px;
    border-radius:10px;
}

.hero .button-primary{
    box-shadow:0 18px 45px rgba(0,0,0,.22);
}

.eyebrow{
    display:inline-block;
    margin-bottom:10px;
    padding:8px 16px;
    border-radius:999px;
    background:rgba(255,255,255,.12);
    border:1px solid rgba(255,255,255,.18);
    color:#8be0ff;
    font-size:.78rem;
    font-weight:700;
    text-transform:uppercase;
}

.trust-row{
    margin-top:0;
    max-width:520px;
    gap:14px;
}

.trust-row div{
    text-align:center;
    padding:18px;
    border-radius:14px;
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.14);
    backdrop-filter:blur(10px);
}

.trust-row dt{
    font-size:2rem;
    font-weight:800;
    margin-bottom:4px;
}

.trust-row dd{
    font-size:.9rem;
    color:#dce7ff;
}

/* Screenshot */

.command-center{
    transform:none !important;
    gap:0;
}

.command-center::before{
    display:none;
}

.product-shell{
    overflow:hidden;
    border-radius:18px;
    background:#fff;
    border:1px solid rgba(255,255,255,.25);
    box-shadow:0 35px 90px rgba(0,0,0,.28);
}

.screenshot-frame{
    margin:0;
    border:none;
    background:none;
    box-shadow:none;
}

.screenshot-frame img{
    display:block;
    width:100%;
    border-radius:18px;
}

.screenshot-frame figcaption{
    display:none;
}

/* Optional:
   Hide the floating cards under the screenshot.
   They don't add much value.
*/

.mini-panels{
    display:none;
}

/* Mobile */

@media (max-width:1080px){

.hero-grid{
    grid-template-columns:1fr;
    gap:50px;
    text-align:center;
}

.hero-copy{
    max-width:100%;
    margin:auto;
}

.hero h1{
    margin-left:auto;
    margin-right:auto;
}

.hero-lede{
    margin:auto;
}

.hero-actions{
    justify-content:center;
}

.trust-row{
    margin:auto;
}

.command-center{
    max-width:750px;
    margin:auto;
}

}

@media (max-width:760px){

.hero{
    padding:30px 0 50px;
}

.hero h1{
    font-size:2.5rem;
}

.hero-lede{
    font-size:1rem;
}

.trust-row{
    grid-template-columns:repeat(3,1fr);
}

.trust-row dt{
    font-size:1.4rem;
}

.trust-row dd{
    font-size:.78rem;
}

}