@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Manrope:wght@600;700;800&display=swap");

:root {
  --ink: #111a3e;
  --violet: #5c3df4;
  --violet-2: #8b45e6;
  --soft: #f7f8ff;
  --line: #e3e5f3;
  --muted: #63708e;
  --mint: #e9fbf1;
  --blue: #1579d4;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: "DM Sans", Arial, sans-serif;
}
a {
  color: inherit;
  text-decoration: none;
}
.container {
  width: min(1180px, calc(100% - 48px));
  margin: auto;
}
.nav {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  position: relative;
}
.wordmark {
  font:
    800 23px Manrope,
    sans-serif;
  letter-spacing: -1.4px;
  display: flex;
  align-items: center;
  gap: 7px;
}
.mark {
  width: 27px;
  height: 27px;
  border: 6px solid var(--violet);
  border-right-color: #93d7ff;
  border-radius: 50%;
  transform: rotate(-30deg);
  box-shadow: inset 0 0 0 3px white;
}
.wordmark span {
  color: var(--blue);
}
.wordmark--image {
  gap: 6px;
}
.wordmark--image img {
  width: 142px;
  height: auto;
}
.wordmark--image span {
  font-size: 21px;
  letter-spacing: -1px;
}
.navlinks {
  display: flex;
  gap: 30px;
  align-items: center;
  font-size: 13px;
  font-weight: 700;
}
.navlinks a { position: relative; padding: 11px 0; }
.navlinks a:hover { color: var(--violet); }
.navlinks a:hover::after { content: ""; position: absolute; right: 0; bottom: 3px; left: 0; height: 2px; border-radius: 3px; background: var(--violet); }
.navright {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 13px;
  font-weight: 700;
}
.studio-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 17px;
  border: 1px solid var(--violet);
  border-radius: 8px;
  background: var(--violet);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 10px 20px rgba(92, 61, 244, .22);
  transition: background .2s ease, transform .2s ease;
}
.studio-button:hover { background: var(--violet-2); transform: translateY(-1px); }
.studio-button b { font-size: 14px; }
.mobile-nav {
  display: none;
}
.button {
  border: 1px solid var(--violet);
  background: var(--violet);
  color: #fff;
  padding: 13px 22px;
  border-radius: 7px;
  font-weight: 700;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  box-shadow: 0 8px 18px rgba(91, 61, 244, 0.18);
}
.button--outline {
  color: var(--ink);
  background: #fff;
  border-color: #bfc7de;
  box-shadow: none;
}
.button--green {
  color: #127943;
  background: white;
  border-color: #62d49e;
  box-shadow: none;
}
.back-to-top { position:fixed;right:24px;bottom:24px;z-index:20;display:inline-flex;align-items:center;gap:8px;padding:11px 14px;border:1px solid #c8c5fb;border-radius:99px;background:#fff;color:#4124d8;font:800 12px "DM Sans",Arial,sans-serif;box-shadow:0 12px 28px rgba(29,31,80,.18);cursor:pointer;opacity:0;visibility:hidden;transform:translateY(10px);transition:opacity .2s ease,visibility .2s ease,transform .2s ease,background .2s ease; }
.back-to-top.is-visible { opacity:1;visibility:visible;transform:translateY(0); }
.back-to-top:hover { background:#f0efff; }
.back-to-top span { font-size:17px;line-height:.7; }
.eyebrow {
  display: inline-block;
  padding: 7px 12px;
  border-radius: 22px;
  background: #edf0ff;
  color: var(--violet);
  font-size: 11px;
  font-weight: 700;
  margin: 0 0 20px;
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1 {
  font:
    800 clamp(45px, 5.3vw, 72px)/1.03 Manrope,
    sans-serif;
  letter-spacing: -3px;
  margin-bottom: 19px;
}
h1 em {
  font-style: normal;
  background: linear-gradient(95deg, #396df3, #a63dde);
  color: transparent;
  background-clip: text;
}
h2 {
  font:
    800 clamp(30px, 3.7vw, 48px)/1.1 Manrope,
    sans-serif;
  letter-spacing: -2px;
}
h3 {
  font:
    800 17px Manrope,
    sans-serif;
  letter-spacing: -0.6px;
}
p {
  color: var(--muted);
  line-height: 1.65;
  font-size: 15px;
}
.hero {
  padding: 50px 0 40px;
  background:
    radial-gradient(circle at 62% 55%, #eeecff 0, transparent 31%),
    linear-gradient(180deg, #fff, #fbfbff);
}
.hero-grid {
  display: grid;
  grid-template-columns: 0.79fr 1.21fr;
  gap: 56px;
  align-items: center;
}
.hero-copy p {
  max-width: 420px;
}
.ticks {
  display: flex;
  gap: 20px;
  margin: 22px 0 28px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
}
.ticks span::before {
  content: "✓";
  color: var(--violet);
  font-weight: 800;
  margin-right: 7px;
}
.hero-actions {
  display: flex;
  gap: 13px;
}
.tour-shell {
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 24px 42px rgba(32, 35, 100, 0.2);
  background: #141421;
  border: 1px solid #d9d7e9;
}
.tour-shell iframe {
  width: 100%;
  height: 468px;
  border: 0;
  display: block;
}
.tour-caption {
  padding: 12px 16px;
  font-size: 11px;
  color: #d8ddf7;
  background: #171724;
}
.band {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
  padding: 25px 0;
  text-align: center;
}
.band p {
  margin: 0;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
}
.service-section {
  padding: 70px 0 48px;
}
.section-kicker {
  color: var(--violet);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.9px;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 34px;
}
.feature {
  min-height: 245px;
  padding: 20px;
  border: 1px solid #e7e9f4;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(18, 27, 62, .035);
  display: flex;
  flex-direction: column;
}
.feature-icon {
  margin: 0 0 17px;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--violet);
  background: #eeeaff;
  font: 800 16px Manrope;
}
.feature-icon .material-symbols-outlined { font-size: 31px; line-height: 1; }
.feature-icon img { width: 29px; height: 29px; object-fit: contain; }
.feature-icon svg {
  width: 29px;
  height: 29px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.feature--maps .feature-icon { background: #e7f3ff; }
.feature--websites .feature-icon { color: #1478c9; background: #e7f3ff; }
.feature--design .feature-icon { color: #d67522; background: #fff1dc; }
.feature h3 { margin: 0 0 9px; }
.feature p {
  font-size: 13px;
  line-height: 1.55;
  margin: 0 0 16px;
}
.feature-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--violet);
  font-size: 12px;
  font-weight: 800;
  margin-top: auto;
}
.feature-link span { transition: transform .2s ease; }
.feature-link:hover span { transform: translateX(3px); }
.routes {
  padding: 38px;
  border-radius: 18px;
  background: #f8f9ff;
  border: 1px solid #ececf8;
}
.routes > h2 {
  max-width: 680px;
  font-size: 31px;
  letter-spacing: -1.4px;
  margin: 4px 0 25px;
}
.route-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.route-card {
  padding: 0;
  border: 1px solid #c9bcff;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
}
.route-card { display:grid; grid-template-columns: 29% 71%; background:#071a29; color:#fff; border-color:#17394d; min-height:330px; }
.route-card--managed { border-color:#17394d; }
.route-card .route-copy { padding:30px; display:flex; flex-direction:column; align-items:flex-start; }
.route-card .route-copy > p:not(.route-kicker) { color:#c7d4dc; min-height:0; }
.route-card .route-kicker { color:#7fddae; }
.route-card h3 { color:#fff; }
.route-card .button--outline { border-color:#fff; color:#fff; background:transparent; }
.route-card .button--green { background:#2dba75; border-color:#2dba75; color:#062618; }
.studio-build { position:relative; min-height:330px; background:#0d1119; overflow:hidden; }
.studio-bar { height:40px; display:flex; align-items:center; gap:20px; padding:0 16px; color:#c9d1d9; font-size:10px; border-bottom:1px solid #24303c; }
.studio-bar b { margin-left:auto; padding:5px 9px; border-radius:4px; background:#8167ed; color:#fff; }
.studio-build aside { position:absolute; top:40px; bottom:0; width:110px; padding:14px; display:flex; flex-direction:column; gap:12px; background:#111a24; color:#9da9b3; font-size:10px; }
.studio-build aside small { color:#697684; font-size:8px; }
.studio-build aside strong { padding:8px; border-radius:4px; background:#54418f; color:#fff; }
.studio-stage { position:absolute; left:110px; right:0; top:40px; bottom:0; background:linear-gradient(#0004,#0004),url('../images/hero-360-wide.jpg') center/cover; }
.hotspot,.tour-point { position:absolute; width:24px; height:24px; border:2px solid #fff; border-radius:50%; box-shadow:0 0 0 6px #ffffff22; }
.h1{left:30%;top:31%}.h2{left:68%;top:25%}.h3{left:49%;top:67%}
.studio-card { position:absolute; right:18px; bottom:18px; width:150px; padding:13px; border-radius:8px; background:#f7f8fa; color:#15202b; display:flex; flex-direction:column; gap:5px; font-size:9px; }
.studio-card small { color:#7361c5; font-weight:800; }
.route-media { position:relative; min-height:330px; background:#0d1119; overflow:hidden; display:grid; place-items:center; }
.route-media img { display:block; width:100%; height:100%; object-fit:contain; }
.route-card--managed .route-media { background:linear-gradient(90deg,#071a29 0%,#102c3d 100%); }
@media (max-width: 820px) { .route-card { grid-template-columns:1fr; } .route-media { min-height:210px; } }
.tour-pill { position:absolute; left:20px; bottom:20px; padding:8px 10px; border-radius:20px; background:#071a29df; color:#fff; font-size:10px; font-weight:800; }
.p1{left:37%;top:42%}.p2{right:21%;top:32%}
.route-card--managed {
  border-color: #a8e5c8;
}
.route-media { background: #101814; line-height: 0; }
.route-media img { display: block; width: 100%; height: auto; }
.route-media--capture { background: #f3eee6; }
.route-copy { padding: 24px 26px 27px; }
.route-kicker {
  margin: 0 0 8px;
  color: var(--violet);
  font-size: 10px !important;
  font-weight: 800;
  letter-spacing: .9px;
  text-transform: uppercase;
}
.route-card--managed .route-kicker { color: #189454; }
.route-card h3 { margin: 0 0 9px; }
.route-card .route-copy > p:not(.route-kicker) {
  min-height: 61px;
  font-size: 13px;
  line-height: 1.55;
  margin: 0 0 19px;
}
.route-card .button {
  padding: 11px 16px;
}
.pricing {
  padding: 75px 0;
  text-align: center;
}
.pricing > p {
  margin-top: -12px;
}
.price-grid {
  margin-top: 33px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: left;
  gap: 14px;
}
.price-card {
  min-height: 410px;
  border: 1px solid #e0e1ed;
  border-radius: 11px;
  padding: 25px 19px;
  position: relative;
  background: white;
}
.price-card--featured {
  border: 2px solid var(--violet);
  box-shadow: 0 18px 36px rgba(92, 61, 244, 0.24), 0 0 44px rgba(92, 61, 244, 0.12);
}
.price-card h3 {
  margin-bottom: 4px;
}
.price {
  font: 800 31px Manrope;
  letter-spacing: -1.5px;
  margin: 27px 0 4px;
}
.price-card ul {
  padding: 0;
  list-style: none;
  font-size: 12px;
  line-height: 1.9;
  color: var(--muted);
}
.price-card li::before {
  content: "✓";
  color: var(--violet);
  font-weight: 800;
  margin-right: 7px;
}
.price-card .button {
  position: absolute;
  bottom: 20px;
  left: 19px;
  right: 19px;
  padding: 10px;
}
.popular-badge {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: -38px;
  padding: 10px 12px;
  border-radius: 0 0 10px 10px;
  background: rgba(92, 61, 244, .82);
  box-shadow: 0 14px 28px rgba(92, 61, 244, .35), 0 0 22px rgba(92, 61, 244, .24);
  text-align: center;
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .35px;
  text-transform: uppercase;
  z-index: 1;
}
.new-favourite-badge {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: -38px;
  padding: 10px 12px;
  border-radius: 0 0 10px 10px;
  background: rgba(21, 121, 212, .78);
  box-shadow: 0 14px 28px rgba(21, 121, 212, .3), 0 0 22px rgba(21, 121, 212, .2);
  color: #fff;
  text-align: center;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .35px;
  text-transform: uppercase;
  z-index: 1;
}
.price-card--featured .button {
  background: var(--violet);
}
.footer {
  background: #071a29;
  color: #fff;
  padding: 62px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.25fr;
  gap: 52px;
  padding-bottom: 46px;
}
.footer p {
  color: #cbd1e9;
  font-size: 13px;
}
.footer a {
  display: block;
  color: #e1e5fb;
  font-size: 13px;
  margin: 10px 0;
}
.footer b { display:block; margin-bottom:16px; font-size:12px; letter-spacing:.7px; text-transform:uppercase; color:#8fd2ff; }
.footer small { color:#8fa3b0; font-size:11px; }
.footer-logo { display:block; margin:0 0 21px; }
.footer-logo img { width:188px; height:auto; }
.footer-brand p { max-width:275px; font-size:14px; line-height:1.6; }
.footer-lower { border-top:1px solid #294354; min-height:80px; display:flex; align-items:center; justify-content:space-between; gap:24px; }
.footer-legal { display:flex; align-items:center; gap:22px; flex-wrap:wrap; color:#8fa3b0; font-size:11px; }
.footer-legal a { margin:0; color:#b9c9d2; font-size:11px; }
.core-credit { display:flex !important; align-items:center; gap:11px; margin:0 !important; color:#d8e3e9 !important; }
.core-credit img { width:66px; height:66px; object-fit:contain; }
.core-credit span { display:flex; flex-direction:column; font-size:11px; line-height:1.4; }
.core-credit b { display:inline; margin:0; font-size:11px; letter-spacing:0; text-transform:none; color:#fff; }
.core-credit small { color:#7fddae; font-size:10px; }
@media (max-width:820px) { .footer-lower { align-items:flex-start; flex-direction:column; padding:20px 0; } .core-credit img { width:54px; height:54px; } }
.footer .wordmark {
  font-size: 20px;
}
@media (max-width: 820px) {
  .container {
    width: min(100% - 32px, 1180px);
  }
  .hero {
    padding-top: 30px;
  }
  .hero-grid,
  .route-grid,
  .price-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .tour-shell {
    margin-top: 10px;
  }
  .tour-shell iframe {
    height: 410px;
  }
  .feature-grid {
    grid-template-columns: 1fr 1fr;
  }
  .ticks {
    flex-wrap: wrap;
    gap: 9px 14px;
  }
  .price-card {
    min-height: 300px;
  }
  h1 {
    letter-spacing: -2px;
  }
}

/* One shared mobile navigation component. */
@media (max-width: 820px) {
  .nav {
    min-height: 70px;
    gap: 12px;
  }
  .wordmark--image img {
    width: 132px;
  }
  .wordmark--image span {
    font-size: 19px;
  }
  .navright {
    display: none;
  }
  .navlinks {
    display: none;
  }
  .mobile-nav {
    display: block;
    margin-left: auto;
  }
  .mobile-nav__toggle {
    display: grid;
    width: 44px;
    height: 44px;
    padding: 11px 10px;
    border: 1px solid #dce1f0;
    border-radius: 9px;
    background: #fff;
    cursor: pointer;
    place-content: center;
    gap: 4px;
  }
  .mobile-nav__toggle span {
    display: block;
    width: 21px;
    height: 2px;
    border-radius: 999px;
    background: var(--violet);
    transition: transform .2s ease, opacity .2s ease;
  }
  .mobile-nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .mobile-nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .mobile-nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
  .mobile-nav__panel {
    position: absolute;
    z-index: 100;
    top: calc(100% - 2px);
    right: 0;
    display: grid;
    width: min(354px, calc(100vw - 32px));
    max-height: calc(100vh - 86px);
    overflow: auto;
    padding: 17px;
    border: 1px solid #d8ddef;
    border-radius: 14px;
    background: rgba(255, 255, 255, .98);
    box-shadow: 0 22px 45px rgba(21, 31, 74, .18);
  }
  .mobile-nav__panel[hidden] { display: none; }
  .mobile-nav__panel > p {
    margin: 0 0 9px;
    color: var(--violet);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;
  }
  .mobile-nav__panel > a:not(.mobile-nav__studio) {
    padding: 13px 4px;
    border-bottom: 1px solid #edf0f7;
    color: var(--ink);
    font-size: 15px;
    font-weight: 700;
  }
  .mobile-nav__studio {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 16px;
    padding: 14px 16px;
    border-radius: 9px;
    background: #6243ed;
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    box-shadow: 0 10px 20px rgba(92, 61, 244, .22);
  }
}

@media (max-width: 620px) {
  .price-grid {
    gap: 22px;
  }
  .price-card {
    min-height: 0;
    padding: 23px 19px;
  }
  .price-card .button {
    position: static;
    width: 100%;
    margin: 18px 0 0;
  }
  .popular-badge,
  .new-favourite-badge {
    position: static;
    display: block;
    margin: 18px 0 0;
    border-radius: 8px;
  }
}
