:root {
  --vt-orange: #ff5722;
  --vt-orange-dark: #d63f12;
  --vt-ink: #111114;
  --vt-muted: #62646c;
  --vt-line: #e8e8ec;
  --vt-soft: #f7f7f8;
  --vt-card: rgba(255, 255, 255, 0.86);
  --vt-shadow: 0 24px 70px rgba(17, 17, 20, 0.12);
}

body {
  background:
    radial-gradient(circle at top left, rgba(255, 87, 34, 0.08), transparent 34rem),
    linear-gradient(180deg, #ffffff 0%, #fafafa 48%, #ffffff 100%);
  color: var(--vt-ink);
}

.mobile-tabbar,
.mobile-more-panel {
  display: none;
}

.container {
  width: min(100% - 32px, var(--container-width));
}

.header {
  background: rgba(255, 255, 255, 0.82);
  border-bottom: 1px solid rgba(17, 17, 20, 0.08);
  color: var(--vt-ink);
  padding: 0;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 34px rgba(17, 17, 20, 0.08);
}

.navbar {
  min-height: 72px;
  height: auto;
  gap: 18px;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  color: var(--vt-ink);
  flex: 0 0 auto;
  height: 46px;
  overflow: hidden;
}

.brand-mark:hover {
  color: var(--vt-ink);
}

.brand-logo {
  height: 72px;
  max-width: 188px;
  object-fit: contain;
  object-position: left center;
  width: auto;
}

.menu {
  align-items: center;
  gap: 6px;
}

.menu a {
  border-radius: 999px;
  color: #34343b;
  display: inline-flex;
  font-size: 0.94rem;
  font-weight: 650;
  padding: 9px 12px;
}

.menu a[aria-current="page"] {
  background: rgba(255, 87, 34, 0.11);
  color: var(--vt-orange-dark);
}

.menu a:hover {
  background: rgba(255, 87, 34, 0.08);
  color: var(--vt-orange-dark);
}

.nav-more {
  position: relative;
}

.nav-more-toggle {
  align-items: center;
  background: transparent;
  border: 0;
  border-radius: 999px;
  color: #34343b;
  cursor: pointer;
  display: inline-flex;
  font: inherit;
  font-size: 0.94rem;
  font-weight: 650;
  gap: 6px;
  padding: 9px 12px;
}

.nav-more-toggle::after {
  content: "⌄";
  font-size: 0.8rem;
  line-height: 1;
}

.nav-more-toggle:hover,
.nav-more.is-open .nav-more-toggle {
  background: rgba(255, 87, 34, 0.08);
  color: var(--vt-orange-dark);
}

.nav-submenu {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(17, 17, 20, 0.08);
  border-radius: 18px;
  box-shadow: 0 22px 70px rgba(17, 17, 20, 0.14);
  display: grid;
  gap: 4px;
  list-style: none;
  min-width: 190px;
  opacity: 0;
  padding: 8px;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: calc(100% + 12px);
  transform: translateY(-6px);
  transition: opacity 0.18s ease, transform 0.18s ease;
  z-index: 20;
}

.nav-more:hover .nav-submenu,
.nav-more:focus-within .nav-submenu,
.nav-more.is-open .nav-submenu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-submenu a {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.nav-submenu a::after {
  content: "→";
  opacity: 0;
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.nav-submenu a:hover::after,
.nav-submenu a[aria-current="page"]::after {
  opacity: 1;
  transform: translateX(2px);
}

.nav-toggle {
  border-color: rgba(17, 17, 20, 0.12);
  color: var(--vt-ink);
}

.nav-toggle span {
  background: var(--vt-ink);
  border-radius: 999px;
  display: block;
  height: 2px;
  width: 18px;
}

.nav-toggle {
  flex-direction: column;
  gap: 4px;
}

.btn {
  border-radius: 999px;
  font-weight: 780;
  min-height: 46px;
  padding: 12px 20px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--vt-orange), #ff7846);
  border: 1px solid rgba(255, 87, 34, 0.2);
  box-shadow: 0 14px 28px rgba(255, 87, 34, 0.22);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--vt-orange-dark), var(--vt-orange));
  color: #fff;
}

.btn-outline {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--vt-line);
  color: var(--vt-ink);
}

.btn-outline:hover {
  background: var(--vt-ink);
  border-color: var(--vt-ink);
  color: #fff;
}

.btn-light {
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: var(--vt-orange-dark);
}

.btn-light:hover {
  color: var(--vt-orange-dark);
}

.btn-dark {
  background: rgba(17, 17, 20, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #fff;
}

.btn-dark:hover {
  background: #000;
  color: #fff;
}

.hero {
  overflow: hidden;
  padding: 46px 0 72px;
}

.hero-grid {
  display: grid;
  gap: 42px;
}

.hero-copy {
  padding-top: 18px;
}

.eyebrow,
.section-kicker {
  align-items: center;
  color: var(--vt-orange-dark);
  display: inline-flex;
  font-size: 0.78rem;
  font-weight: 820;
  gap: 8px;
  letter-spacing: 0;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.status-dot {
  background: #25d366;
  border-radius: 999px;
  box-shadow: 0 0 0 6px rgba(37, 211, 102, 0.12);
  height: 8px;
  width: 8px;
}

.hero h1 {
  color: var(--vt-ink);
  font-size: clamp(2.55rem, 10vw, 4.9rem);
  line-height: 0.98;
  margin-bottom: 20px;
  max-width: 780px;
}

.hero-text {
  color: var(--vt-muted);
  font-size: clamp(1.02rem, 2.6vw, 1.22rem);
  line-height: 1.72;
  margin-bottom: 26px;
  max-width: 620px;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 22px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.trust-row span {
  background: #fff;
  border: 1px solid var(--vt-line);
  border-radius: 999px;
  color: #3f4047;
  font-size: 0.88rem;
  font-weight: 700;
  padding: 9px 12px;
}

.hero-visual {
  min-height: 480px;
  position: relative;
}

.dashboard-shell,
.phone-mockup,
.floating-card,
.analytics-panel,
.screenshot-card,
.service-card,
.why-grid article {
  border: 1px solid rgba(17, 17, 20, 0.08);
  box-shadow: var(--vt-shadow);
}

.dashboard-shell {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.82)),
    radial-gradient(circle at 80% 0%, rgba(255, 87, 34, 0.14), transparent 16rem);
  border-radius: 28px;
  padding: 14px;
  position: relative;
  width: min(100%, 660px);
}

.window-bar {
  align-items: center;
  display: flex;
  gap: 7px;
  height: 30px;
}

.window-bar span {
  background: #d8d9df;
  border-radius: 50%;
  height: 10px;
  width: 10px;
}

.window-bar span:first-child {
  background: var(--vt-orange);
}

.window-bar span:nth-child(2) {
  background: #f4c35b;
}

.window-bar span:nth-child(3) {
  background: #52c878;
}

.dashboard-top,
.panel-header {
  align-items: center;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin: 10px 0 18px;
}

.mini-label {
  color: var(--vt-muted);
  display: block;
  font-size: 0.74rem;
  font-weight: 750;
  margin-bottom: 3px;
  text-transform: uppercase;
}

.dashboard-top strong {
  font-size: 1.32rem;
}

.sync-pill {
  background: rgba(37, 211, 102, 0.12);
  border: 1px solid rgba(37, 211, 102, 0.22);
  border-radius: 999px;
  color: #168847;
  font-size: 0.78rem;
  font-weight: 800;
  padding: 8px 10px;
}

.dashboard-metrics {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(3, 1fr);
}

.dashboard-metrics article {
  background: var(--vt-soft);
  border-radius: 18px;
  padding: 14px 12px;
}

.dashboard-metrics span,
.floating-card span,
.analytics-panel p {
  color: var(--vt-muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.dashboard-metrics strong,
.floating-card strong {
  display: block;
  font-size: 1.22rem;
  margin-top: 4px;
}

.chart-card {
  align-items: end;
  background: #151519;
  border-radius: 22px;
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(6, 1fr);
  height: 180px;
  margin-top: 12px;
  padding: 18px;
}

.chart-card span {
  background: linear-gradient(180deg, #ff9a6c, var(--vt-orange));
  border-radius: 999px 999px 4px 4px;
  min-height: 38px;
}

.order-list {
  display: grid;
  gap: 8px;
  margin-top: 12px;
}

.order-list div {
  align-items: center;
  background: #fff;
  border: 1px solid var(--vt-line);
  border-radius: 16px;
  display: grid;
  gap: 8px;
  grid-template-columns: auto 1fr auto;
  padding: 10px;
}

.order-list div > span {
  background: rgba(255, 87, 34, 0.12);
  border-radius: 10px;
  height: 30px;
  width: 30px;
}

.order-list p {
  color: var(--vt-ink);
  font-size: 0.88rem;
  font-weight: 760;
}

.order-list strong {
  color: var(--vt-orange-dark);
  font-size: 0.76rem;
}

.phone-mockup {
  background: #111114;
  border: 8px solid #24242a;
  border-radius: 32px;
  bottom: 0;
  color: #fff;
  padding: 34px 16px 18px;
  position: absolute;
  right: 0;
  width: min(42%, 210px);
}

.phone-notch {
  background: #050506;
  border-radius: 999px;
  height: 6px;
  left: 50%;
  position: absolute;
  top: 14px;
  transform: translateX(-50%);
  width: 54px;
}

.phone-list {
  display: grid;
  gap: 9px;
  margin-top: 18px;
}

.phone-list span {
  background: rgba(255, 255, 255, 0.13);
  border-radius: 12px;
  height: 42px;
}

.product-device-stage {
  isolation: isolate;
  min-height: 420px;
}

.laptop-frame {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.86)),
    radial-gradient(circle at 80% 0%, rgba(255, 87, 34, 0.18), transparent 18rem);
  border: 1px solid rgba(17, 17, 20, 0.1);
  border-radius: 28px;
  box-shadow: 0 30px 90px rgba(17, 17, 20, 0.18);
  margin: 0;
  overflow: hidden;
  padding: 12px;
  position: relative;
}

a.laptop-frame,
a.mobile-frame,
.media-link {
  color: inherit;
  cursor: pointer;
  display: block;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

a.laptop-frame:hover,
a.mobile-frame:hover,
a.laptop-frame:focus-visible,
a.mobile-frame:focus-visible {
  border-color: rgba(255, 87, 34, 0.32);
  box-shadow: 0 34px 96px rgba(17, 17, 20, 0.2);
  outline: none;
  transform: translateY(-4px);
}

.laptop-frame img,
.screenshot-panel img,
.real-screenshot-card img,
.screen-card img {
  border-radius: 18px;
  display: block;
  height: auto;
  width: 100%;
}

.laptop-frame img {
  border: 1px solid rgba(17, 17, 20, 0.08);
}

.mobile-frame {
  background: #111114;
  border: 8px solid #24242a;
  border-radius: 34px;
  bottom: -18px;
  box-shadow: 0 24px 70px rgba(17, 17, 20, 0.28);
  margin: 0;
  overflow: hidden;
  padding: 8px;
  position: absolute;
  right: 0;
  width: min(35%, 190px);
  z-index: 3;
}

.mobile-frame img {
  border-radius: 24px;
  height: auto;
  width: 100%;
}

.floating-card {
  animation: floatSoft 6s ease-in-out infinite;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  padding: 14px 16px;
  position: absolute;
}

.revenue-card {
  left: 8px;
  top: 48px;
}

.sync-card {
  animation-delay: -2s;
  bottom: 54px;
  left: 26px;
}

.section {
  padding: 72px 0;
}

.proof-strip {
  margin-top: -32px;
  position: relative;
  z-index: 4;
}

.home-proof-strip {
  margin-top: -46px;
}

.proof-grid {
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(17, 17, 20, 0.08);
  border-radius: 28px;
  box-shadow: 0 24px 70px rgba(17, 17, 20, 0.1);
  display: grid;
  gap: 1px;
  overflow: hidden;
  padding: 0;
}

.proof-grid article {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.72));
  padding: 22px;
}

.proof-grid article,
.service-card,
.screen-card,
.spotlight-screen,
.benefit-stack article,
.why-grid article,
.workflow-grid article {
  position: relative;
}

.proof-grid span,
.workflow-grid span {
  color: var(--vt-orange-dark);
  display: block;
  font-size: 0.76rem;
  font-weight: 900;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.proof-grid strong {
  color: var(--vt-ink);
  display: block;
  font-size: 1rem;
  line-height: 1.35;
}

.inline-card-link,
.screen-link {
  align-items: center;
  color: var(--vt-orange-dark);
  display: inline-flex;
  font-size: 0.86rem;
  font-weight: 850;
  gap: 8px;
  margin-top: 14px;
}

.inline-card-link::after,
.card-link::after,
.screen-link::after {
  content: "→";
  font-weight: 900;
  transition: transform 0.2s ease;
}

.inline-card-link:hover::after,
.card-link:hover::after,
.screen-link:hover::after {
  transform: translateX(4px);
}

.page-hero {
  padding: 72px 0 24px;
}

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

.section-heading h1,
.section-heading h2,
.product-copy h2,
.final-cta h2 {
  color: var(--vt-ink);
  font-size: clamp(2rem, 6vw, 3.3rem);
  line-height: 1.05;
  margin-bottom: 16px;
}

.section-heading p,
.product-copy p,
.final-cta p {
  color: var(--vt-muted);
  font-size: 1.02rem;
  line-height: 1.72;
}

.services-grid {
  display: grid;
  gap: 14px;
}

.service-card,
.why-grid article {
  background: var(--vt-card);
  border-radius: 24px;
  padding: 22px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.service-card:hover,
.why-grid article:hover {
  border-color: rgba(255, 87, 34, 0.22);
  box-shadow: 0 28px 80px rgba(17, 17, 20, 0.14);
  transform: translateY(-4px);
}

.service-card:focus-within,
.screen-card:focus-within,
.spotlight-screen:focus-within {
  border-color: rgba(255, 87, 34, 0.34);
  box-shadow: 0 28px 80px rgba(17, 17, 20, 0.14);
}

.service-icon {
  align-items: center;
  background: rgba(255, 87, 34, 0.1);
  border-radius: 14px;
  color: var(--vt-orange-dark);
  display: inline-flex;
  font-size: 0.85rem;
  font-weight: 900;
  height: 42px;
  justify-content: center;
  margin-bottom: 18px;
  width: 42px;
}

.service-card h3,
.why-grid h3 {
  font-size: 1.18rem;
  margin-bottom: 10px;
}

.service-card p,
.why-grid p {
  color: var(--vt-muted);
  line-height: 1.65;
}

.card-link {
  color: var(--vt-orange-dark);
  display: inline-flex;
  gap: 8px;
  font-weight: 820;
  margin-top: 18px;
}

.stretched-link::before {
  content: "";
  inset: 0;
  position: absolute;
  z-index: 1;
}

.stretched-link {
  position: static;
}

.product-section {
  background: linear-gradient(180deg, #f7f7f8, #ffffff);
}

.spotlight-section {
  background:
    radial-gradient(circle at 12% 0%, rgba(255, 87, 34, 0.1), transparent 24rem),
    linear-gradient(180deg, #fff, #f8f8f9);
}

.spotlight-grid {
  display: grid;
  gap: 28px;
}

.spotlight-copy h2 {
  color: var(--vt-ink);
  font-size: clamp(2rem, 6vw, 3.3rem);
  line-height: 1.05;
  margin-bottom: 16px;
}

.spotlight-copy p {
  color: var(--vt-muted);
  font-size: 1.04rem;
  line-height: 1.72;
  margin-bottom: 22px;
}

.spotlight-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 24px;
}

.spotlight-points span {
  background: #fff;
  border: 1px solid var(--vt-line);
  border-radius: 999px;
  color: #33343a;
  font-size: 0.88rem;
  font-weight: 800;
  padding: 9px 12px;
}

.spotlight-screen {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.8)),
    radial-gradient(circle at 80% 0%, rgba(255, 87, 34, 0.16), transparent 18rem);
  border: 1px solid rgba(17, 17, 20, 0.08);
  border-radius: 30px;
  box-shadow: 0 28px 86px rgba(17, 17, 20, 0.14);
  margin: 0;
  overflow: hidden;
  padding: 12px;
}

.spotlight-screen img {
  border: 1px solid rgba(17, 17, 20, 0.08);
  border-radius: 20px;
  display: block;
  height: auto;
  width: 100%;
}

.spotlight-screen figcaption {
  display: grid;
  gap: 5px;
  padding: 16px 8px 6px;
}

.spotlight-screen figcaption span {
  color: var(--vt-orange-dark);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.spotlight-screen figcaption strong {
  color: var(--vt-ink);
  font-size: 1.03rem;
  line-height: 1.35;
}

.product-grid {
  display: grid;
  gap: 34px;
}

.feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0;
}

.feature-list span {
  background: #fff;
  border: 1px solid var(--vt-line);
  border-radius: 999px;
  color: #33343a;
  font-size: 0.88rem;
  font-weight: 750;
  padding: 9px 12px;
}

.product-showcase {
  display: grid;
  gap: 16px;
  position: relative;
}

.real-product-showcase {
  align-items: end;
}

.screenshot-panel,
.real-screenshot-card,
.screen-card,
.mobile-screens figure {
  margin: 0;
}

.screenshot-panel {
  color: #fff;
  overflow: hidden;
  padding: 12px;
}

.screenshot-panel img {
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.screenshot-panel figcaption,
.real-screenshot-card figcaption {
  display: grid;
  gap: 4px;
  padding: 14px 6px 4px;
}

.screenshot-panel figcaption span,
.real-screenshot-card figcaption span {
  color: var(--vt-orange);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.screenshot-panel figcaption strong,
.real-screenshot-card figcaption strong {
  font-size: 1rem;
}

.real-screenshot-card {
  display: block;
  min-height: 0;
  overflow: hidden;
}

.screens-section {
  background:
    radial-gradient(circle at 80% 0%, rgba(255, 87, 34, 0.1), transparent 24rem),
    #fff;
}

.screens-grid {
  display: grid;
  gap: 16px;
}

.screen-card {
  background: #fff;
  border: 1px solid rgba(17, 17, 20, 0.08);
  border-radius: 26px;
  box-shadow: 0 20px 60px rgba(17, 17, 20, 0.09);
  overflow: hidden;
  padding: 10px;
}

.screen-card figcaption {
  color: var(--vt-ink);
  font-weight: 850;
  padding: 14px 8px 0;
}

.screen-link {
  padding: 0 8px 8px;
}

.mobile-screens {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 24px auto 0;
  max-width: 760px;
}

.mobile-screens figure {
  background: #111114;
  border: 8px solid #24242a;
  border-radius: 34px;
  box-shadow: 0 24px 70px rgba(17, 17, 20, 0.18);
  overflow: hidden;
  padding: 8px;
}

.mobile-screens img {
  border-radius: 24px;
  display: block;
  height: auto;
  width: 100%;
}

.mobile-screen-link {
  display: block;
  border-radius: 24px;
  outline: none;
}

.mobile-screen-link:focus-visible,
.mobile-screen-link:hover {
  box-shadow: 0 0 0 3px rgba(255, 87, 34, 0.35);
}

.workflow-section {
  background:
    radial-gradient(circle at 10% 0%, rgba(255, 87, 34, 0.11), transparent 24rem),
    linear-gradient(180deg, #fff, #f8f8f9);
}

.workflow-grid {
  display: grid;
  gap: 14px;
}

.workflow-grid article {
  background: #fff;
  border: 1px solid rgba(17, 17, 20, 0.08);
  border-radius: 24px;
  box-shadow: 0 18px 54px rgba(17, 17, 20, 0.08);
  padding: 24px;
  position: relative;
}

.workflow-grid article::after {
  background: linear-gradient(135deg, var(--vt-orange), transparent);
  border-radius: 999px;
  content: "";
  height: 4px;
  inset: auto 24px 18px 24px;
  opacity: 0.45;
  position: absolute;
}

.workflow-grid h3 {
  font-size: 1.18rem;
  margin-bottom: 10px;
}

.workflow-grid p {
  color: var(--vt-muted);
  line-height: 1.65;
  padding-bottom: 20px;
}

.benefit-section {
  background: #111114;
  color: #fff;
}

.benefit-grid {
  display: grid;
  gap: 28px;
}

.benefit-grid h2 {
  color: #fff;
  font-size: clamp(2rem, 6vw, 3.3rem);
  line-height: 1.05;
  margin-bottom: 16px;
}

.benefit-grid p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.04rem;
  line-height: 1.72;
}

.benefit-stack {
  display: grid;
  gap: 12px;
}

.benefit-stack article {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  padding: 20px;
}

.benefit-stack strong {
  color: #fff;
  display: block;
  font-size: 1.08rem;
  margin-bottom: 8px;
}

.benefit-stack span {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

.analytics-panel {
  background: #111114;
  border-radius: 28px;
  color: #fff;
  padding: 24px;
}

.panel-header span {
  color: rgba(255, 255, 255, 0.74);
  font-weight: 760;
}

.panel-header strong {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  color: #fff;
  font-size: 0.8rem;
  padding: 7px 10px;
}

.big-number {
  color: var(--vt-orange);
  font-size: clamp(3.4rem, 15vw, 6rem);
  font-weight: 900;
  line-height: 1;
}

.progress-line {
  background: rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  height: 10px;
  margin-top: 20px;
  overflow: hidden;
}

.progress-line span {
  background: linear-gradient(90deg, var(--vt-orange), #ffb088);
  border-radius: inherit;
  display: block;
  height: 100%;
  width: 87%;
}

.screenshot-card {
  background: #fff;
  border-radius: 28px;
  display: grid;
  gap: 14px;
  grid-template-columns: 62px 1fr;
  min-height: 300px;
  padding: 14px;
}

.screenshot-card.real-screenshot-card {
  display: block;
  gap: 0;
  grid-template-columns: none;
  min-height: 0;
  overflow: hidden;
  padding: 12px;
}

.screenshot-card.real-screenshot-card img {
  height: auto;
  object-fit: contain;
  width: 100%;
}

.screenshot-sidebar {
  background: #151519;
  border-radius: 20px;
  display: grid;
  gap: 10px;
  padding: 16px 12px;
}

.screenshot-sidebar span {
  background: rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  height: 34px;
}

.screenshot-sidebar span:first-child {
  background: var(--vt-orange);
}

.screenshot-main {
  display: grid;
  gap: 14px;
}

.screenshot-header,
.screenshot-grid span,
.screenshot-table span {
  background: var(--vt-soft);
  border: 1px solid var(--vt-line);
  border-radius: 16px;
}

.screenshot-header {
  height: 58px;
}

.screenshot-grid {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, 1fr);
}

.screenshot-grid span {
  height: 74px;
}

.screenshot-table {
  display: grid;
  gap: 8px;
}

.screenshot-table span {
  height: 38px;
}

.why-section {
  background:
    radial-gradient(circle at 15% 10%, rgba(255, 87, 34, 0.12), transparent 22rem),
    #fff;
}

.why-grid {
  display: grid;
  gap: 14px;
}

.why-grid article span {
  background: linear-gradient(135deg, var(--vt-orange), #ffb088);
  border-radius: 999px;
  display: block;
  height: 10px;
  margin-bottom: 22px;
  width: 46px;
}

.final-cta {
  padding: 72px 0;
}

.final-cta-inner {
  background:
    radial-gradient(circle at 20% 0%, rgba(255, 255, 255, 0.24), transparent 20rem),
    linear-gradient(135deg, var(--vt-orange), #f14918 48%, #16161a);
  border-radius: 32px;
  color: #fff;
  overflow: hidden;
  padding: 42px 22px;
  position: relative;
  text-align: center;
}

.final-cta .section-kicker,
.final-cta h2,
.final-cta p {
  color: #fff;
}

.final-cta p {
  margin: 0 auto 24px;
  max-width: 680px;
  opacity: 0.88;
}

.footer {
  background: #111114;
  padding-top: 48px;
}

.footer-logo {
  background: #fff;
  border-radius: 16px;
  height: 64px;
  margin-bottom: 14px;
  object-fit: contain;
  object-position: left center;
  padding: 8px;
  width: 220px;
}

.footer-logo-link {
  display: inline-flex;
  border-radius: 16px;
  margin-bottom: 14px;
}

.footer-logo-link .footer-logo {
  margin-bottom: 0;
}

.footer-logo-link:hover,
.footer-logo-link:focus-visible {
  outline: 2px solid rgba(255, 87, 34, 0.45);
  outline-offset: 4px;
}

@keyframes floatSoft {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

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

@media (max-width: 768px) {
  body {
    padding-bottom: 92px;
  }

  .navbar {
    display: grid;
    grid-template-columns: 1fr auto;
    padding-bottom: 12px;
    padding-top: 12px;
  }

  .navbar .btn {
    margin-top: 10px;
  }

  .menu {
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid var(--vt-line);
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(17, 17, 20, 0.12);
    padding: 10px;
  }

  .menu li {
    margin-bottom: 2px;
  }

  .menu a {
    border: 0;
    display: flex;
    padding: 12px;
    width: 100%;
  }

  .nav-more-toggle {
    justify-content: space-between;
    padding: 12px;
    width: 100%;
  }

  .nav-submenu {
    background: rgba(17, 17, 20, 0.04);
    border: 0;
    box-shadow: none;
    display: none;
    margin-top: 4px;
    opacity: 1;
    padding: 6px;
    pointer-events: auto;
    position: static;
    transform: none;
  }

  .nav-more.is-open .nav-submenu,
  .nav-more:focus-within .nav-submenu {
    display: grid;
  }

  .navbar.is-open .nav-toggle span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .navbar.is-open .nav-toggle span:nth-child(2) {
    opacity: 0;
  }

  .navbar.is-open .nav-toggle span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .nav-toggle span {
    transition: transform 0.2s ease, opacity 0.2s ease;
  }

  .hero-visual {
    margin-top: 10px;
    min-height: 520px;
  }

  .product-device-stage {
    min-height: 380px;
  }

  .laptop-frame {
    border-radius: 22px;
    padding: 8px;
  }

  .laptop-frame img {
    border-radius: 14px;
  }

  .mobile-frame {
    bottom: 18px;
    right: 8px;
    width: 128px;
  }

  .brand-mark {
    height: 42px;
    max-width: 184px;
  }

  .brand-logo {
    height: 66px;
    max-width: 184px;
  }

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

  .phone-mockup {
    right: 10px;
    width: 168px;
  }

  .floating-card {
    max-width: 170px;
  }

  .screens-grid {
    gap: 12px;
  }

  .mobile-screens {
    grid-template-columns: 1fr;
    max-width: 260px;
  }

  .mobile-tabbar {
    align-items: center;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(17, 17, 20, 0.1);
    border-radius: 24px;
    bottom: 12px;
    box-shadow: 0 22px 70px rgba(17, 17, 20, 0.2);
    display: grid;
    gap: 2px;
    grid-template-columns: repeat(5, 1fr);
    left: 12px;
    padding: 8px;
    position: fixed;
    right: 12px;
    z-index: 1200;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
  }

  .mobile-tabbar a,
  .mobile-more-button {
    align-items: center;
    background: transparent;
    border: 0;
    border-radius: 18px;
    color: #4a4b52;
    cursor: pointer;
    display: grid;
    font: inherit;
    font-size: 0.68rem;
    font-weight: 780;
    gap: 4px;
    justify-items: center;
    min-height: 56px;
    padding: 7px 4px;
    text-decoration: none;
  }

  .mobile-tabbar a[aria-current="page"],
  .mobile-more-button[aria-expanded="true"] {
    background: rgba(255, 87, 34, 0.12);
    color: var(--vt-orange-dark);
  }

  .tab-icon {
    background: currentColor;
    border-radius: 10px;
    display: block;
    height: 18px;
    opacity: 0.86;
    position: relative;
    width: 18px;
  }

  .mobile-tabbar a:nth-child(1) .tab-icon {
    clip-path: polygon(50% 5%, 95% 42%, 82% 42%, 82% 95%, 58% 95%, 58% 65%, 42% 65%, 42% 95%, 18% 95%, 18% 42%, 5% 42%);
  }

  .mobile-tabbar a:nth-child(2) .tab-icon {
    clip-path: polygon(8% 12%, 92% 12%, 92% 38%, 8% 38%, 8% 12%, 8% 46%, 92% 46%, 92% 88%, 8% 88%);
  }

  .mobile-tabbar a:nth-child(3) .tab-icon {
    clip-path: polygon(12% 12%, 88% 12%, 88% 88%, 12% 88%);
  }

  .mobile-tabbar a:nth-child(4) .tab-icon {
    clip-path: polygon(8% 16%, 92% 16%, 92% 70%, 62% 70%, 50% 88%, 38% 70%, 8% 70%);
  }

  .mobile-more-button .tab-icon {
    clip-path: circle(18% at 20% 50%) circle(18% at 50% 50%) circle(18% at 80% 50%);
  }

  .mobile-more-panel {
    background: rgba(17, 17, 20, 0.32);
    display: block;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    position: fixed;
    transition: opacity 0.2s ease;
    z-index: 1190;
  }

  .mobile-more-panel.is-open {
    opacity: 1;
    pointer-events: auto;
  }

  .mobile-more-card {
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(17, 17, 20, 0.1);
    border-radius: 28px 28px 0 0;
    bottom: 0;
    box-shadow: 0 -22px 70px rgba(17, 17, 20, 0.2);
    left: 0;
    padding: 20px 18px 110px;
    position: absolute;
    right: 0;
    transform: translateY(24px);
    transition: transform 0.2s ease;
  }

  .mobile-more-panel.is-open .mobile-more-card {
    transform: translateY(0);
  }

  .mobile-more-head {
    align-items: center;
    display: flex;
    justify-content: space-between;
    margin-bottom: 16px;
  }

  .mobile-more-head strong {
    color: var(--vt-ink);
    font-size: 1.1rem;
  }

  .mobile-more-close {
    background: var(--vt-soft);
    border: 1px solid rgba(17, 17, 20, 0.08);
    border-radius: 999px;
    color: var(--vt-ink);
    cursor: pointer;
    font-weight: 800;
    padding: 9px 12px;
  }

  .mobile-more-links {
    display: grid;
    gap: 8px;
  }

  .mobile-more-links a {
    align-items: center;
    background: #fff;
    border: 1px solid rgba(17, 17, 20, 0.08);
    border-radius: 18px;
    color: var(--vt-ink);
    display: flex;
    font-weight: 820;
    justify-content: space-between;
    padding: 15px 16px;
  }

  .mobile-more-links a::after {
    color: var(--vt-orange-dark);
    content: "→";
    font-weight: 900;
  }

  .mobile-more-links a[aria-current="page"] {
    background: rgba(255, 87, 34, 0.1);
    color: var(--vt-orange-dark);
  }
}

@media (min-width: 560px) {
  .hero-actions {
    align-items: center;
    flex-direction: row;
  }

  .proof-grid,
  .spotlight-grid,
  .workflow-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-grid,
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .screens-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .hero {
    padding: 88px 0 108px;
  }

  .hero-grid {
    align-items: center;
    grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.98fr);
  }

  .hero-copy {
    padding-top: 0;
  }

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

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

  .product-grid {
    align-items: center;
    grid-template-columns: 0.88fr 1.12fr;
  }

  .spotlight-grid {
    align-items: center;
    grid-template-columns: 0.86fr 1.14fr;
  }

  .workflow-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .benefit-grid {
    align-items: center;
    grid-template-columns: 0.9fr 1.1fr;
  }

  .product-showcase {
    grid-template-columns: 0.8fr 1.2fr;
  }

  .screens-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .screen-card-large {
    grid-column: span 2;
    grid-row: span 2;
  }

  .analytics-panel {
    align-self: end;
    transform: translateY(34px);
    z-index: 2;
  }

  .why-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .final-cta-inner {
    padding: 70px 46px;
  }
}
