*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    font-family: inter;
}

body {
    font-family: 'Inter', sans-serif;
    overflow-x: clip;
  }

  header{
    background-color: #2E5CFF1A;
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }

  /* Content pages only: the glass effect fades in on scroll */
  .pg-page header{
    background-color: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    transition: background-color 0.2s ease, backdrop-filter 0.2s ease;
  }

  .pg-page header.is-scrolled{
    background-color: #2E5CFF1A;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-menu {
    display: contents;
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(17, 24, 39, 0.12);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.7);
    cursor: pointer;
}

.nav-toggle-bars,
.nav-toggle-bars::before,
.nav-toggle-bars::after {
    display: block;
    width: 18px;
    height: 2px;
    border-radius: 2px;
    background: #111827;
}

.nav-toggle-bars {
    position: relative;
}

.nav-toggle-bars::before,
.nav-toggle-bars::after {
    content: "";
    position: absolute;
    left: 0;
}

.nav-toggle-bars::before { top: -6px; }
.nav-toggle-bars::after { top: 6px; }

.login-btn {
    color: #000000;
    border: 1px solid transparent;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
}

.get-started-btn {
    background-color: #007bff;
    color: #fff;
    padding: 15px;
    border-radius: 0.5rem;
    margin-left: 0.5rem;
}

.logo{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #000000;
    font-size: 25px;
    font-weight: bold;
    text-decoration: none;
}

.logo-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 32px;
    flex-shrink: 0;
    color: #000000;
}

.logo-mark svg {
    width: 100%;
    height: 100%;
    display: block;
}

.nav-links a{
    color: #202020;
}

.hero-section{
    background-color: #f0f0f0;
    padding-top: 100px;
    text-align: center;
    min-height: 100vh;
    background-color: #2E5CFF1A;
}

.hero-content{
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 35px;
    align-items: center;
    justify-content: center;
}

.hero-content h1{
    font-size: clamp(32px, 5.4vw, 75px);
    font-weight: 600;
    max-width: 1100px;
}

.hero-content-text{
    max-width: 800px;
    font-size: clamp(15px, 1.4vw, 18px);
    color: #202020;
    line-height: 1.5;
}

.book-demo-btn {
    color: #000000;
    background-color: #ffffff;
    border: 1px solid rgb(226, 226, 226);
    padding: 15px;
    border-radius: 0.5rem;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 80px;
    align-items: center;
}

.hero-image {
    max-width: 1100px;
    margin: 0 auto;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

/* Scroll cue under the dashboard. Only on short phones: on taller devices the
   whole hero already fits the first screen, so the cue has nothing to hint at. */
.hero-scroll-hint {
    display: none;
}

/* Travels down *into* its resting spot rather than below it, so the lowest point
   of the motion is the arrow's laid-out position and it never crosses the fold */
@keyframes hero-scroll-bounce {
    0%,
    100% {
        transform: translateY(-7px);
    }
    50% {
        transform: translateY(0);
    }
}

@media (max-width: 640px) and (max-height: 667px) {
    .hero-scroll-hint {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 26px;
        height: 26px;
        color: #007bff;
        animation: hero-scroll-bounce 2.4s ease-in-out infinite;
    }

    .hero-scroll-hint svg {
        display: block;
        width: 16px;
        height: 16px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-scroll-hint {
        animation: none;
    }
}

.nav-logo-container{
    width: auto;
}

.logo-container{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 60px;
    margin-bottom: 100px;
    width: 100%;
    max-width: 1100px;
}

.logo-banner-text{
    width: 100%;
    max-width: 500px;
    text-align: center;
    margin-bottom: 20px;
}

.logo-banner-viewport {
    width: 100%;
    max-width: 1100px;
    overflow: hidden;
    margin: 0 auto;
    mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}

.logo-banner-track {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    width: max-content;
    animation: logo-marquee 42s linear infinite;
}

.logo-banner-set {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-shrink: 0;
    padding-right: 20px;
}

.logo-banner-set img {
    width: 150px;
    height: auto;
    flex-shrink: 0;
    object-fit: contain;
    opacity: 0.85;
}

@keyframes logo-marquee {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

@media (prefers-reduced-motion: reduce) {
    .logo-banner-viewport {
        display: flex;
        justify-content: center;
    }

    .logo-banner-track {
        animation: none;
    }
}



.marketing-section{
    min-height: 100vh;
    background-color: #f9f9fa;
    text-align: center;
    padding: 50px;
}

.marketing-section-white {
    background-color: #ffffff;
}

.marketing-content {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
}

.marketing-content h2 {
    font-size: 42px;
    font-weight: 600;
    color: #000000;
    max-width: 900px;
    line-height: 1.2;
}

.marketing-lead {
    max-width: 720px;
    font-size: 18px;
    color: #202020;
    line-height: 1.5;
}

.marketing-grid {
    display: flex;
    gap: 24px;
    justify-content: center;
    align-items: stretch;
    width: 100%;
    text-align: left;
}

.marketing-card {
    flex: 1;
    background-color: #ffffff;
    border: 1px solid rgb(226, 226, 226);
    border-radius: 10px;
    padding: 28px;
    max-width: 340px;
}

.marketing-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 12px;
}

.marketing-card p {
    font-size: 16px;
    color: #202020;
    line-height: 1.5;
}

.marketing-highlight {
    max-width: 800px;
    padding: 32px 40px;
    background-color: #2E5CFF1A;
    border-radius: 10px;
    border: 1px solid rgb(226, 226, 226);
}

.marketing-highlight-stat {
    font-size: 28px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 10px;
}

.marketing-highlight-text {
    font-size: 16px;
    color: #202020;
    line-height: 1.5;
}

.marketing-highlight-text a {
    color: #007bff;
    font-weight: 500;
}

.gamification-section {
    background:
        radial-gradient(ellipse 70% 55% at 50% 42%, rgba(170, 200, 255, 0.65) 0%, transparent 62%),
        radial-gradient(ellipse 48% 40% at 18% 78%, rgba(190, 175, 255, 0.28) 0%, transparent 55%),
        linear-gradient(180deg, #c9dcff 0%, #dce8ff 40%, #eef3ff 100%);
    padding: 96px 24px;
    text-align: center;
    overflow: hidden;
}

.orbit-scene {
    --orbit-r: min(310px, 30vw);
    --sat-size: 118px;
    --hub-size: 56px;
    /* Half the tallest orbiting card, so the scene box ends where a card
       reaches the top of its rotation and the section padding is the gap */
    --card-reach: 156px;
    position: relative;
    width: min(1240px, 100%);
    height: calc((var(--orbit-r) + 36px + var(--card-reach)) * 2);
    margin: 0 auto;
}

.orbit-deco {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.orbit-halo {
    position: absolute;
    left: 50%;
    top: 50%;
    width: calc(var(--orbit-r) * 2);
    height: calc(var(--orbit-r) * 2);
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 2px dashed rgba(255, 255, 255, 0.95);
}

/* Side connectors only — never cut through the center circle */
.orbit-spoke {
    position: absolute;
    top: 50%;
    height: var(--sat-size);
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    width: calc(var(--sat-size) * 0.5 + 118px);
}

.orbit-spoke--left {
    right: calc(50% + var(--orbit-r));
    flex-direction: row;
}

.orbit-spoke--right {
    left: calc(50% + var(--orbit-r));
    flex-direction: row-reverse;
}

.orbit-spoke-line {
    flex: 1 1 auto;
    height: 0;
    border-top: 2px dashed rgba(255, 255, 255, 0.95);
    min-width: 56px;
}

.orbit-junction {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.98);
    background: #d4e4ff;
    box-shadow: 0 0 0 4px #d4e4ff;
    flex: 0 0 auto;
    z-index: 2;
}

.orbit-junction--inner {
    margin-inline: -7px;
}

.orbit-junction--outer {
    /* Center the hollow node on the satellite ring */
    margin-inline: -7px;
}

.orbit-satellite {
    position: relative;
    width: var(--sat-size);
    height: var(--sat-size);
    flex: 0 0 auto;
    display: grid;
    place-items: center;
}

.orbit-satellite-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px dashed rgba(255, 255, 255, 0.95);
}

.orbit-satellite-hub {
    width: var(--hub-size);
    height: var(--hub-size);
    border-radius: 50%;
    background: #ffffff;
    display: grid;
    place-items: center;
    box-shadow: 0 8px 20px rgba(46, 92, 255, 0.12);
    z-index: 1;
}

.orbit-satellite-hub img {
    width: 26px;
    height: 26px;
    display: block;
    object-fit: contain;
    filter: invert(34%) sepia(98%) saturate(2400%) hue-rotate(204deg) brightness(100%) contrast(101%);
}

.orbit-center {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
    width: min(420px, 58%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    pointer-events: none;
}

.orbit-center h2 {
    font-size: clamp(18px, 2.2vw, 28px);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.15;
    letter-spacing: -0.02em;
    text-align: center;
    text-shadow: 0 1px 10px rgba(46, 92, 255, 0.18);
    white-space: nowrap;
}

.gamification-lead {
    max-width: 280px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.45;
    text-align: center;
    text-shadow: 0 1px 8px rgba(46, 92, 255, 0.15);
}

.orbit-spinner {
    position: absolute;
    inset: 0;
    animation: orbit-spin 55s linear infinite;
    z-index: 2;
}

.orbit-slot {
    position: absolute;
    inset: 0;
    transform: rotate(var(--angle));
}

.orbit-slot > .orbit-card {
    position: absolute;
    left: 50%;
    top: 50%;
    /* Sit just outside the halo so cards clear center copy */
    transform:
        translate(-50%, -50%)
        translateY(calc(var(--orbit-r) * -1 - 36px))
        rotate(calc(var(--angle) * -1));
    animation: orbit-spin-reverse 55s linear infinite;
    transform-origin: center center;
}

.orbit-card {
    background: #ffffff;
    border: 1px solid rgba(226, 226, 226, 0.95);
    border-radius: 14px;
    box-shadow: 0 14px 32px rgba(80, 70, 140, 0.12);
    padding: 10px;
    text-align: left;
}

.orbit-card--leaderboard {
    width: min(300px, 62vw);
    padding: 12px 14px;
    overflow: visible;
}

.orbit-card--progress {
    width: min(190px, 44vw);
}

.orbit-card--files {
    width: 148px;
    padding: 14px;
}

.orbit-card--files .orbit-card-title {
    margin-top: 18px;
    font-size: 13px;
    text-align: left;
}

.orbit-card--files .orbit-card-meta {
    text-align: left;
    margin-top: 4px;
}

.orbit-card--spotlight {
    width: min(260px, 56vw);
}

.orbit-card--rewards {
    width: min(250px, 56vw);
    padding: 12px;
}

.orbit-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.orbit-card-head--center {
    justify-content: center;
    text-align: center;
}

.orbit-card-title {
    font-size: 12px;
    font-weight: 700;
    color: #111827;
}

.orbit-card-head--center .orbit-card-title,
.orbit-card-title--center {
    width: 100%;
    text-align: center;
}

.orbit-card-meta--center {
    text-align: center;
}

.orbit-card-menu {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background:
        radial-gradient(circle at 20% 50%, #94a3b8 1.4px, transparent 1.5px),
        radial-gradient(circle at 50% 50%, #94a3b8 1.4px, transparent 1.5px),
        radial-gradient(circle at 80% 50%, #94a3b8 1.4px, transparent 1.5px);
}

.orbit-card-files-top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
}

.orbit-file-icon {
    width: 34px;
    height: 28px;
    border-radius: 6px;
    background: linear-gradient(165deg, #93c5fd, #2E5CFF);
    position: relative;
}

.orbit-file-icon::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 14px;
    height: 8px;
    border-radius: 4px 4px 0 0;
    background: #60a5fa;
}

.orbit-file-icon--folder {
    width: 28px;
    height: 22px;
    border-radius: 3px;
    background: #cbd5e1;
    box-shadow: none;
}

.orbit-file-icon--folder::after {
    content: "";
    position: absolute;
    left: 0;
    top: -5px;
    width: 12px;
    height: 7px;
    border-radius: 2px 2px 0 0;
    background: #94a3b8;
}

.orbit-card-link {
    width: 22px;
    height: 22px;
    border-radius: 6px;
    border: none;
    background: #f1f5f9;
    position: relative;
    flex: 0 0 auto;
}

.orbit-card-link::before {
    content: "";
    position: absolute;
    left: 6px;
    top: 6px;
    width: 7px;
    height: 7px;
    border-top: 1.6px solid #64748b;
    border-right: 1.6px solid #64748b;
    transform: rotate(45deg);
}

.orbit-card-link::after {
    content: "";
    position: absolute;
    left: 7px;
    top: 10px;
    width: 9px;
    height: 1.6px;
    background: #64748b;
    transform: rotate(-45deg);
    transform-origin: left center;
}

.orbit-card-meta {
    margin-top: 4px;
    font-size: 12px;
    color: #64748b;
}

.orbit-bar {
    display: flex;
    height: 10px;
    border-radius: 999px;
    overflow: hidden;
    background: #eef2ff;
    margin-bottom: 10px;
}

.orbit-bar-seg--a { background: #f0a35e; }
.orbit-bar-seg--b { background: #fbbf24; }
.orbit-bar-seg--c { background: #2E5CFF; }

.orbit-legend {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 12px;
    margin-bottom: 12px;
    font-size: 11px;
    color: #64748b;
}

.orbit-legend .dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    display: inline-block;
    margin-right: 4px;
}

.dot--a { background: #f0a35e; }
.dot--b { background: #fbbf24; }
.dot--c { background: #2E5CFF; }

.orbit-progress-footer {
    display: flex;
    justify-content: space-between;
    gap: 12px;
}

.orbit-big {
    font-size: 22px;
    font-weight: 800;
    color: #111827;
}

.orbit-small {
    font-size: 11px;
    color: #64748b;
}

.orbit-spotlight-chip {
    font-size: 10px;
    font-weight: 600;
    color: #007bff;
    background: #eff6ff;
    border-radius: 999px;
    padding: 4px 8px;
}

.orbit-spotlight-person {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 12px 0 14px;
}

.orbit-spotlight-avatar {
    position: relative;
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    border-radius: 50%;
    background: #007bff;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
}

.orbit-spotlight-rank {
    position: absolute;
    right: -3px;
    bottom: -3px;
    width: 17px;
    height: 17px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    color: #007bff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    font-weight: 700;
}

.orbit-spotlight-name {
    font-size: 13px;
    font-weight: 700;
    color: #111827;
}

.orbit-spotlight-role {
    font-size: 10px;
    color: #64748b;
}

.orbit-spotlight-stats {
    display: flex;
    text-align: center;
    padding: 12px 0;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
}

.orbit-spotlight-stats > div {
    flex: 1;
    min-width: 0;
}

.orbit-spotlight-stats > div + div {
    border-left: 1px solid #e5e7eb;
}

.orbit-spotlight-value {
    font-size: 16px;
    font-weight: 700;
    color: #111827;
    letter-spacing: -0.01em;
}

.orbit-spotlight-label {
    font-size: 10px;
    color: #64748b;
}

.orbit-spotlight-note {
    padding-top: 10px;
    font-size: 10px;
    color: #475569;
}

.orbit-reward-add {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 10px;
    font-weight: 600;
    color: #007bff;
    background: #eff6ff;
    border-radius: 999px;
    padding: 4px 9px;
}

.orbit-reward-plus {
    font-size: 12px;
    line-height: 1;
}

.orbit-reward-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 10px;
}

.orbit-reward-item {
    display: grid;
    grid-template-columns: 28px 1fr auto;
    align-items: center;
    gap: 10px;
    border: 1px solid #e6e9f0;
    border-radius: 10px;
    padding: 8px 10px;
}

.orbit-reward-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: #eff6ff;
}

.orbit-reward-icon img {
    width: 15px;
    height: 15px;
    object-fit: contain;
}

.orbit-reward-label {
    font-size: 11px;
    font-weight: 700;
    color: #111827;
    min-width: 0;
}

.orbit-reward-menu {
    display: inline-flex;
    color: #94a3b8;
}

.orbit-reward-menu svg {
    width: 3px;
    height: 12px;
}

@keyframes orbit-spin {
    to { transform: rotate(360deg); }
}

@keyframes orbit-spin-reverse {
    from {
        transform:
            translate(-50%, -50%)
            translateY(calc(var(--orbit-r) * -1 - 36px))
            rotate(calc(var(--angle) * -1));
    }
    to {
        transform:
            translate(-50%, -50%)
            translateY(calc(var(--orbit-r) * -1 - 36px))
            rotate(calc(var(--angle) * -1 - 360deg));
    }
}

@media (prefers-reduced-motion: reduce) {
    .orbit-spinner,
    .orbit-slot > .orbit-card {
        animation: none;
    }
}

.leaderboard {
    width: 100%;
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
}

.leaderboard--compact {
    overflow: visible;
    width: 100%;
}

.leaderboard--compact .podium {
    transform: none;
    gap: 4px;
    padding: 0;
    margin-bottom: 10px;
    min-height: 0;
}

.leaderboard--compact .podium-stage {
    width: 78px;
    height: 64px;
    /* Stage sits above the lid; no pull-down into the block */
    margin-bottom: 0;
}

.leaderboard--compact .podium-slot--1 .podium-stage {
    width: 88px;
    height: 74px;
    margin-bottom: 0;
}

.leaderboard--compact .podium-badge {
    width: 56px;
    height: 56px;
    /* Bottom edge flush with podium lid — no overlap */
    bottom: 0;
    left: 54%;
    transform: translateX(-38%);
}

.leaderboard--compact .podium-slot--1 .podium-badge {
    width: 64px;
    height: 64px;
    bottom: 0;
    left: 56%;
    transform: translateX(-36%);
}

.leaderboard--compact .podium-place {
    font-size: 30px;
    left: 2px;
    /* Align baseline/bottom with stage bottom (podium top) */
    bottom: 0;
    line-height: 1;
}

.leaderboard--compact .podium-slot--3 .podium-place {
    left: 0;
}

/* Half over the character, half clear — sit mid-overlap with the badge */
.leaderboard--compact .podium-slot--2 .podium-place {
    left: 14px;
}

.leaderboard--compact .podium-slot--1 .podium-place {
    font-size: 38px;
    left: 18px;
    bottom: 0;
    line-height: 1;
}

.leaderboard--compact .podium-block-lid {
    height: 8px;
}

.leaderboard--compact .podium-block-face {
    padding: 8px 4px 10px;
}

.leaderboard--compact .podium-slot--2 .podium-block-face {
    min-height: 44px;
}

.leaderboard--compact .podium-slot--1 .podium-block-face {
    min-height: 58px;
}

.leaderboard--compact .podium-slot--3 .podium-block-face {
    min-height: 38px;
}

.leaderboard--compact .podium-name {
    font-size: 10px;
    line-height: 1.2;
    word-break: break-word;
}

.leaderboard--compact .podium-score {
    font-size: 9px;
}

.leaderboard--compact .lb-table {
    transform: none;
    margin-top: 4px;
    width: 100%;
    gap: 6px;
}

.leaderboard--compact .lb-table-head,
.leaderboard--compact .lb-row {
    grid-template-columns: 36px minmax(0, 1fr) 58px;
    gap: 6px;
    padding: 7px 8px;
    font-size: 10px;
    width: 100%;
    box-sizing: border-box;
}

.leaderboard--compact .lb-table-head span:nth-child(2),
.leaderboard--compact .lb-row .lb-name {
    margin-left: 0;
    padding-left: 0;
    min-width: 0;
}

.leaderboard--compact .lb-place {
    font-size: 12px;
}

.leaderboard--compact .lb-name {
    font-size: 11px;
    gap: 6px;
    overflow: hidden;
}

.leaderboard--compact .lb-score {
    font-size: 10px;
    white-space: nowrap;
}

.leaderboard--compact .lb-mini-rank {
    width: 18px;
    height: 18px;
}

.leaderboard--compact .lb-row:last-child {
    display: none;
}

.podium {
    display: grid;
    grid-template-columns: 1fr 1.15fr 1fr;
    align-items: end;
    gap: 18px;
    margin-bottom: 28px;
    min-height: 0;
    padding: 0 8px;
}

.podium-slot {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.podium-stage {
    position: relative;
    width: 168px;
    height: 140px;
    z-index: 2;
    margin-bottom: -22px;
}

.podium-slot--1 .podium-stage {
    width: 188px;
    height: 158px;
    margin-bottom: -22px;
}

.podium-place {
    position: absolute;
    left: 4px;
    bottom: 10px;
    z-index: 5;
    font-size: 84px;
    font-weight: 900;
    font-style: normal;
    line-height: 0.8;
    color: #60a5fa;
    letter-spacing: -0.06em;
    text-shadow: 0 3px 0 #1e3a8a;
}

.podium-slot--1 .podium-place {
    font-size: 104px;
    left: 22px;
    bottom: 8px;
    color: #ffffff;
    text-shadow: 0 3px 0 #1e40af;
}

.podium-badge {
    position: absolute;
    left: 52%;
    bottom: 16px;
    transform: translateX(-40%);
    width: 120px;
    height: 120px;
    z-index: 2;
    display: block;
    object-fit: contain;
}

.podium-slot--1 .podium-badge {
    width: 140px;
    height: 140px;
    bottom: 8px;
}

.podium-block {
    width: 100%;
    position: relative;
    z-index: 1;
    transform: perspective(500px) rotateX(8deg);
    transform-origin: center bottom;
}

.podium-block-lid {
    height: 16px;
    background: linear-gradient(90deg, #e8f0ff 0%, #efe8ff 100%);
    border: 1px solid rgba(167, 139, 250, 0.28);
    border-bottom: none;
    border-radius: 3px 3px 0 0;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.podium-slot--1 .podium-block-lid {
    background: linear-gradient(90deg, #4aa3ff 0%, #7c6bff 50%, #a78bfa 100%);
    border-color: rgba(46, 92, 255, 0.45);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.45),
        0 0 16px rgba(46, 92, 255, 0.25);
}

.podium-block-face {
    background: linear-gradient(165deg, #eef4ff 0%, #e8e4ff 45%, #ddd6fe 100%);
    border: 1px solid rgba(167, 139, 250, 0.28);
    border-top: none;
    border-radius: 0 0 3px 3px;
    padding: 22px 12px 26px;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.7),
        0 14px 28px rgba(80, 70, 140, 0.1);
}

.podium-slot--2 .podium-block-face {
    min-height: 118px;
}

.podium-slot--1 .podium-block-face {
    min-height: 168px;
    background: linear-gradient(165deg, #2E5CFF 0%, #4f46e5 48%, #7c3aed 100%);
    border-color: rgba(46, 92, 255, 0.45);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.22),
        0 16px 36px rgba(46, 92, 255, 0.28);
}

.podium-slot--3 .podium-block-face {
    min-height: 96px;
}

.podium-slot--1 .podium-name {
    color: #ffffff;
}

.podium-slot--1 .podium-score {
    color: #dbeafe;
}

.podium-name {
    font-size: 17px;
    font-weight: 800;
    font-style: normal;
    color: #111827;
    margin-bottom: 6px;
}

.podium-score {
    font-size: 13px;
    color: #007bff;
    font-weight: 600;
}

.lb-table {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.lb-table-head {
    display: grid;
    grid-template-columns: 64px 1fr 100px;
    gap: 12px;
    padding: 12px 20px;
    background: #2E5CFF1A;
    border: 1px solid rgb(226, 226, 226);
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    font-style: normal;
    color: #007bff;
    text-align: left;
}

.lb-table-head span:nth-child(2) {
    padding-left: 0;
    margin-left: -8px;
}

.lb-table-head span:last-child {
    text-align: right;
}

.lb-row {
    display: grid;
    grid-template-columns: 64px 1fr 100px;
    gap: 12px;
    align-items: center;
    padding: 14px 20px;
    background: #ffffff;
    border: 1px solid rgb(226, 226, 226);
    border-radius: 4px;
    text-align: left;
}

.lb-row .lb-name {
    margin-left: -8px;
}

.lb-place {
    font-size: 18px;
    font-weight: 700;
    color: #111827;
}

.lb-name {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    font-weight: 600;
    color: #202020;
}

.lb-mini-rank {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    object-fit: contain;
}

.lb-score {
    font-size: 15px;
    font-weight: 600;
    color: #4b5563;
    text-align: right;
}

@media (max-width: 900px) {
    .gamification-section {
        padding: 48px 16px 56px;
    }

    .orbit-scene {
        height: auto;
        min-height: 0;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .orbit-deco {
        display: none;
    }

    .orbit-center {
        position: relative;
        left: auto;
        top: auto;
        transform: none;
        width: 100%;
        order: -1;
        margin-bottom: 8px;
    }

    .orbit-center h2 {
        font-size: 30px;
        color: #111111;
        text-shadow: none;
    }

    .gamification-lead {
        color: #334155;
        text-shadow: none;
        max-width: 36ch;
        margin: 0 auto;
    }

    .orbit-spinner {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 16px;
        position: relative;
        inset: auto;
        animation: none;
    }

    .orbit-slot {
        position: relative;
        inset: auto;
        transform: none;
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .orbit-slot > .orbit-card {
        position: relative;
        left: auto;
        top: auto;
        transform: none;
        animation: none;
    }

    .podium {
        grid-template-columns: 1fr;
        gap: 28px;
        max-width: 280px;
        margin-left: auto;
        margin-right: auto;
    }

    .podium-slot--1 {
        order: -1;
    }

    .podium-slot--2 .podium-block-face,
    .podium-slot--1 .podium-block-face,
    .podium-slot--3 .podium-block-face {
        min-height: 0;
    }

    .podium-block {
        transform: none;
    }

    .lb-table-head,
    .lb-row {
        grid-template-columns: 48px 1fr 72px;
        padding: 12px 14px;
    }
}

.spreadsheets-section {
    background-color: #ffffff;
    padding: 96px 24px;
    text-align: center;
    overflow: hidden;
}

.spreadsheets-content {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.spreadsheets-content h2 {
    font-size: 42px;
    font-weight: 700;
    color: #111111;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.spreadsheets-lead {
    max-width: 720px;
    font-size: 18px;
    color: #202020;
    line-height: 1.5;
    margin-bottom: 36px;
}

.spreadsheets-showcase {
    position: relative;
    width: 100%;
    max-width: 980px;
    height: 340px;
    margin-top: 12px;
}

.ui-card {
    position: absolute;
    width: 280px;
    background: #ffffff;
    border: 1px solid #e6e9f0;
    border-radius: 28px;
    padding: 22px 20px 18px;
    box-shadow: 0 18px 36px rgba(17, 24, 39, 0.08);
    text-align: left;
    color: #334155;
}

.ui-card--progress {
    left: 11%;
    top: 28px;
    z-index: 1;
    animation: ui-float-left 5.5s ease-in-out infinite;
}

.ui-card--tasks {
    left: 50%;
    top: 20px;
    z-index: 3;
    width: 280px;
    background: #007bff;
    border-color: #007bff;
    box-shadow: 0 20px 40px rgba(0, 123, 255, 0.22);
    color: #eaf3ff;
    animation: ui-float-center 4.8s ease-in-out infinite;
}

.ui-card--metrics {
    right: 11%;
    top: 36px;
    left: auto;
    z-index: 2;
    width: 280px;
    animation: ui-float-right 6.2s ease-in-out infinite;
}

@keyframes ui-float-left {
    0%, 100% { transform: rotate(-8deg) translateY(0); }
    50% { transform: rotate(-8deg) translateY(-14px); }
}

@keyframes ui-float-center {
    0%, 100% { transform: translateX(-50%) rotate(2deg) translateY(0); }
    50% { transform: translateX(-50%) rotate(2deg) translateY(-18px); }
}

@keyframes ui-float-right {
    0%, 100% { transform: rotate(7deg) translateY(0); }
    50% { transform: rotate(7deg) translateY(-12px); }
}

@media (prefers-reduced-motion: reduce) {
    .ui-card--progress,
    .ui-card--tasks,
    .ui-card--metrics {
        animation: none;
    }

    .ui-card--progress { transform: rotate(-8deg); }
    .ui-card--tasks { transform: translateX(-50%) rotate(2deg); }
    .ui-card--metrics { transform: rotate(7deg); }
}

.ui-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
}

.ui-card-title {
    font-size: 15px;
    font-weight: 700;
    color: #111827;
}

.ui-card--tasks .ui-card-title {
    color: #ffffff;
}

.ui-card-chip {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    font-weight: 500;
    color: #4b5563;
    background: #ffffff;
    border: 1px solid #e6e9f0;
    border-radius: 999px;
    padding: 5px 10px;
    white-space: nowrap;
}

.ui-card--tasks .ui-card-chip {
    color: #eaf3ff;
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(255, 255, 255, 0.22);
}

.ui-card-chevron {
    width: 0;
    height: 0;
    border-left: 3.5px solid transparent;
    border-right: 3.5px solid transparent;
    border-top: 4px solid #64748b;
    margin-left: 2px;
}

.ui-card--tasks .ui-card-chevron {
    border-top-color: #cfe4ff;
}

.ui-card-arrow {
    font-size: 13px;
    line-height: 1;
}

.ui-card-stats {
    display: flex;
    gap: 16px;
    font-size: 12px;
    color: #64748b;
    margin-bottom: 18px;
}

.ui-card-stats strong {
    color: #111827;
    font-weight: 700;
    margin-right: 4px;
}

.ui-bars {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 8px;
    height: 120px;
    margin-bottom: 10px;
}

.ui-bar {
    flex: 1;
    height: var(--h);
    border-radius: 999px;
    background: #dde5ef;
    opacity: 1;
    position: relative;
}

.ui-bar--active {
    background: #007bff;
}

.ui-bar-tip {
    position: absolute;
    top: -28px;
    left: 50%;
    transform: translateX(-50%);
    background: #ffffff;
    border: 1px solid #e6e9f0;
    color: #007bff;
    font-size: 10px;
    font-weight: 700;
    padding: 4px 7px;
    border-radius: 999px;
    white-space: nowrap;
    box-shadow: 0 4px 10px rgba(17, 24, 39, 0.08);
}

.ui-bar-labels {
    display: flex;
    justify-content: space-between;
    font-size: 10px;
    color: #64748b;
}

.ui-card--tasks .ui-bar-labels {
    color: #cfe4ff;
}

.ui-add-row {
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1.5px dashed rgba(255, 255, 255, 0.4);
    border-radius: 14px;
    padding: 12px 14px;
    font-size: 13px;
    color: #eaf3ff;
    margin-bottom: 12px;
}

.ui-add-plus {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.55);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    flex-shrink: 0;
    box-sizing: border-box;
    margin-left: 0;
    font-size: 0;
    color: transparent;
    line-height: 0;
}

.ui-add-plus::before,
.ui-add-plus::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    background: #ffffff;
    border-radius: 1px;
    transform: translate(-50%, -50%);
}

.ui-add-plus::before {
    width: 10px;
    height: 1.5px;
}

.ui-add-plus::after {
    width: 1.5px;
    height: 10px;
}

.ui-task-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ui-task {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 14px;
    padding: 12px 14px;
    font-size: 13px;
    color: #f8fafc;
}

.ui-card--progress .ui-task,
.ui-card--metrics .ui-task {
    background: #f7f9fc;
    border: 1px solid #e6e9f0;
    color: #1f2937;
}

.ui-task--done {
    background: rgba(255, 255, 255, 0.22);
    border-color: rgba(255, 255, 255, 0.35);
}

.ui-check {
    width: 16px;
    height: 16px;
    border-radius: 4px;
    border: 1.5px solid rgba(255, 255, 255, 0.55);
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.ui-card--progress .ui-check,
.ui-card--metrics .ui-check {
    border-color: #94a3b8;
}

.ui-check--on {
    border-color: #ffffff;
    background: #ffffff;
    box-shadow: none;
}

.ui-check--on::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 45%;
    width: 4px;
    height: 8px;
    border: solid #007bff;
    border-width: 0 1.5px 1.5px 0;
    transform: translate(-50%, -50%) rotate(45deg);
}

.ui-meter-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 4px 0 18px;
}

.ui-meter-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    font-size: 12px;
    color: #64748b;
    margin-bottom: 8px;
}

.ui-meter-head strong {
    font-size: 20px;
    font-weight: 700;
    color: #111827;
    letter-spacing: -0.01em;
}

.ui-meter-track {
    height: 8px;
    border-radius: 999px;
    background: #eef1f6;
    overflow: hidden;
}

.ui-meter-track span {
    display: block;
    width: var(--w);
    height: 100%;
    border-radius: inherit;
    background: #007bff;
}

.ui-meter-fill--soft {
    background: #a8ceff;
}

.ui-metric-split {
    display: flex;
    gap: 14px;
    padding-top: 16px;
    border-top: 1px solid #eef1f6;
}

.ui-metric {
    flex: 1;
}

.ui-metric-value {
    display: flex;
    align-items: baseline;
    gap: 6px;
    font-size: 20px;
    font-weight: 700;
    color: #111827;
    letter-spacing: -0.01em;
}

.ui-metric-delta {
    font-size: 11px;
    font-weight: 600;
    color: #16a34a;
}

.ui-metric-label {
    font-size: 11px;
    color: #64748b;
    margin-top: 2px;
}

@media (max-width: 900px) {
    .spreadsheets-content h2 {
        font-size: 32px;
    }

    .spreadsheets-section {
        padding: 72px 20px;
    }

    .spreadsheets-showcase {
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        /* Matches the lead's 36px bottom margin plus the 20px stack gap above,
           so the subheading-to-first-card gap and card-to-card gaps are equal */
        margin-top: 0;
        gap: 56px;
    }

    .ui-card {
        position: relative;
        left: auto !important;
        right: auto !important;
        top: auto !important;
        transform: none !important;
        width: 100%;
        max-width: 340px;
        animation: none !important;
    }
}

.ptypes-section {
    background-color: #f9f9fa;
    padding: 90px 24px 100px;
    text-align: center;
}

.ptypes-content {
    max-width: 1120px;
    margin: 0 auto;
}

.section-heading {
    text-align: center;
}

.section-eyebrow {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #3b82f6;
    margin: 0 0 14px;
}

.ptypes-eyebrow {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #3b82f6;
    margin-bottom: 14px;
}

.ptypes-content h2 {
    font-size: clamp(32px, 4vw, 44px);
    font-weight: 700;
    color: #0f2b5b;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.ptypes-lead {
    max-width: 460px;
    margin: 0 auto 52px;
    font-size: 16px;
    line-height: 1.6;
    color: #4a6fa5;
}

.ptypes-carousel {
    position: relative;
}

.ptypes-track {
    display: flex;
    gap: 22px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.ptypes-track::-webkit-scrollbar {
    display: none;
}

.ptypes-card {
    position: relative;
    flex: 0 0 calc((100% - 66px) / 4);
    aspect-ratio: 5 / 8;
    border-radius: 16px;
    overflow: hidden;
    scroll-snap-align: start;
    display: flex;
    align-items: flex-end;
}

/* Photos are cropped to fill the portrait card rather than letterboxed */
.ptypes-photo {
    position: absolute;
    inset: 0;
    background-image: var(--shot);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #e6ebf2;
}

.ptypes-photo--residential {
    --shot: url("images/ptypes/residential.jpg");
}

.ptypes-photo--multifamily {
    --shot: url("images/ptypes/multifamily.webp");
    background-position: 78% 35%;
}

.ptypes-photo--student {
    --shot: url("images/ptypes/student.jpg");
}

.ptypes-photo--commercial {
    --shot: url("images/ptypes/commercial.jpg");
}

.ptypes-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 45%, rgba(10, 20, 35, 0.72) 100%);
}

.ptypes-label {
    position: relative;
    z-index: 1;
    margin: 0;
    padding: 0 20px 26px;
    font-size: clamp(19px, 1.9vw, 25px);
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.01em;
}

.ptypes-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 34px;
    height: 34px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #d4dbe6;
    border-radius: 50%;
    background: transparent;
    color: #5b6b82;
    cursor: pointer;
    transition: border-color 0.15s ease, color 0.15s ease;
}

.ptypes-arrow:hover {
    border-color: #3b82f6;
    color: #3b82f6;
}

.ptypes-arrow svg {
    width: 16px;
    height: 16px;
}

.ptypes-arrow--prev {
    left: 0;
}

.ptypes-arrow--next {
    right: 0;
}

@media (max-width: 900px) {
    .ptypes-section {
        padding: 64px 20px 72px;
    }

    .ptypes-lead {
        margin-bottom: 36px;
    }

    .ptypes-lead br {
        display: none;
    }

    .ptypes-card {
        flex: 0 0 calc((100% - 22px) / 2);
    }
}

@media (max-width: 560px) {
    .ptypes-card {
        flex: 0 0 78%;
    }
}

.portfolio-section {
    background-color: #f9f9fa;
    padding: 96px 24px 100px;
    text-align: center;
}

/* Wider than other sections so the cards can hold comfortable line lengths */
.portfolio-content {
    max-width: 1360px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 64px;
}

.portfolio-content h2 {
    font-size: 42px;
    font-weight: 700;
    color: #111111;
    line-height: 1.2;
    letter-spacing: -0.02em;
    max-width: 900px;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    width: 100%;
}

.portfolio-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 22px 22px 26px;
    text-align: left;
    background-color: #ffffff;
    border: 1px solid #ececf0;
    border-radius: 18px;
    box-shadow: 0 1px 2px rgba(17, 24, 39, 0.04);
}

.portfolio-visual {
    width: 100%;
    height: 252px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    perspective: 1100px;
}

/* Tilts the screenshot onto an isometric plane so it reads as floating.
   Every card shares one plane size regardless of screenshot aspect ratio.
   The rotation projects ~1.33x wider than the source, so this deliberately
   bleeds past the card edges. */
.portfolio-visual img {
    width: 100%;
    max-width: none;
    aspect-ratio: 313 / 276;
    object-fit: contain;
    background-color: #ffffff;
    border-radius: 8px;
    transform: rotateX(48deg) rotateZ(-38deg);
    box-shadow: -14px 14px 28px rgba(17, 24, 39, 0.14);
}

.portfolio-item h3 {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
    color: #111827;
}

.portfolio-item p {
    font-size: 14px;
    line-height: 1.6;
    color: #6b7280;
}

@media (max-width: 1100px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* The tilted planes bleed past their cards, so keep the bleed from
   pushing a horizontal scrollbar onto the page. */
.portfolio-section {
    overflow-x: clip;
}

@media (max-width: 900px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 380px;
        margin: 0 auto;
    }

    /* The plane is taller than its container here, so it spills evenly above
       and below. Shift it up to keep the bleed off the card heading. */
    .portfolio-visual img {
        transform: translateY(-30px) rotateX(48deg) rotateZ(-38deg);
    }

    .portfolio-content h2 {
        font-size: 32px;
    }

    .portfolio-section {
        padding: 72px 20px 80px;
    }
}

.testimonials-section {
    background-color: #ffffff;
    padding: 96px 24px 88px;
    text-align: center;
    overflow: hidden;
}

.testimonials-content {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
}

.testimonials-content h2 {
    font-size: 42px;
    font-weight: 700;
    color: #111111;
    line-height: 1.2;
    max-width: 720px;
    letter-spacing: -0.02em;
}

.testimonials-carousel {
    width: 100%;
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent 0%, #000 4%, #000 96%, transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 4%, #000 96%, transparent 100%);
}

.testimonials-track {
    display: flex;
    gap: 24px;
    width: max-content;
    padding: 8px 0;
    animation: testimonials-marquee 58s linear infinite;
}

.testimonials-carousel:hover .testimonials-track {
    animation-play-state: paused;
}

@keyframes testimonials-marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.testimonial-card {
    --accent: #2E5CFF;
    width: 340px;
    flex: 0 0 340px;
    background-color: #ffffff;
    border-radius: 16px;
    padding: 32px 28px 28px;
    box-shadow: 0 8px 28px rgba(17, 24, 39, 0.06);
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: left;
    border: 1px solid rgba(226, 232, 240, 0.9);
}

.testimonial-quote {
    line-height: 0;
}

.testimonial-text {
    font-size: 15px;
    line-height: 1.65;
    color: #4b5563;
    flex: 1;
}

.testimonial-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 8px;
    padding-top: 4px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.testimonial-meta {
    min-width: 0;
}

.testimonial-name {
    font-size: 14px;
    font-weight: 700;
    color: #1f2937;
    line-height: 1.3;
}

.testimonial-role {
    font-size: 13px;
    color: #9ca3af;
    line-height: 1.3;
    margin-top: 2px;
}

.testimonials-see-all {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 22px;
    border-radius: 0.5rem;
    border: 1px solid #e5e7eb;
    background-color: #ffffff;
    color: #6b7280;
    font-size: 14px;
    font-weight: 500;
    box-shadow: 0 2px 8px rgba(17, 24, 39, 0.05);
    transition: border-color 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
}

.testimonials-see-all:hover {
    border-color: #d1d5db;
    color: #374151;
    box-shadow: 0 4px 12px rgba(17, 24, 39, 0.08);
}

@media (prefers-reduced-motion: reduce) {
    .testimonials-track {
        animation: none;
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;
        max-width: 1100px;
        margin: 0 auto;
    }

    .testimonials-carousel {
        mask-image: none;
        -webkit-mask-image: none;
        overflow: visible;
    }

    .testimonials-track .testimonial-card[aria-hidden="true"] {
        display: none;
    }
}

@media (max-width: 900px) {
    .testimonials-content h2 {
        font-size: 32px;
    }

    .testimonials-section {
        padding: 72px 20px 64px;
    }

    .testimonial-card {
        width: 300px;
        flex-basis: 300px;
    }
}

.pricing-section {
    position: relative;
    padding: 96px 24px 100px;
    overflow: hidden;
    background-color: #f9f9fa;
    text-align: center;
}

.pricing-content {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 36px;
    position: relative;
    z-index: 1;
}

.pricing-content h2 {
    font-size: 42px;
    font-weight: 700;
    color: #111111;
    line-height: 1.2;
    max-width: none;
    white-space: nowrap;
    letter-spacing: -0.02em;
}

.pricing-billing {
    position: relative;
}

.pricing-billing input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.pricing-toggle {
    display: inline-flex;
    align-items: center;
    padding: 4px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 4px 16px rgba(80, 70, 140, 0.08);
    gap: 2px;
}

.pricing-toggle-option {
    min-width: 96px;
    padding: 10px 18px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 500;
    color: #6b7280;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

#billing-monthly:checked ~ .pricing-toggle label[for="billing-monthly"],
#billing-annual:checked ~ .pricing-toggle label[for="billing-annual"] {
    background-color: #ffffff;
    color: #111827;
    box-shadow: 0 2px 8px rgba(17, 24, 39, 0.08);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    width: 100%;
    align-items: center;
    margin-top: 8px;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 24px;
    padding: 36px 28px 32px;
    box-shadow: 0 12px 40px rgba(80, 70, 140, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
    min-height: 100%;
}

.pricing-card--featured {
    background: linear-gradient(180deg, #4aa3ff 0%, #2f6bff 48%, #1f4fd6 100%);
    border: none;
    color: #ffffff;
    padding: 44px 30px 36px;
    box-shadow: 0 18px 48px rgba(47, 107, 255, 0.35);
    transform: scale(1.04);
    z-index: 1;
}

.pricing-plan {
    font-size: 20px;
    font-weight: 700;
    color: #111827;
}

.pricing-card--featured .pricing-plan {
    color: #ffffff;
}

.pricing-price {
    line-height: 1;
}

.pricing-amount {
    font-size: 40px;
    font-weight: 700;
    color: #111827;
    letter-spacing: -0.03em;
}

.pricing-card--featured .pricing-amount {
    color: #ffffff;
}

.pricing-period {
    font-size: 18px;
    font-weight: 600;
}

.pricing-amount--annual {
    display: none;
}

.pricing-billing:has(#billing-annual:checked) ~ .pricing-grid .pricing-amount--monthly {
    display: none;
}

.pricing-billing:has(#billing-annual:checked) ~ .pricing-grid .pricing-amount--annual {
    display: inline;
}

.pricing-desc {
    font-size: 14px;
    line-height: 1.55;
    color: #6b7280;
    max-width: 260px;
}

.pricing-card--featured .pricing-desc {
    color: rgba(255, 255, 255, 0.9);
}

.pricing-divider {
    width: 100%;
    border: none;
    border-top: 1px solid #e5e7eb;
    margin: 4px 0;
}

.pricing-card--featured .pricing-divider {
    border-top-color: rgba(255, 255, 255, 0.28);
}

.pricing-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    flex: 1;
    margin-bottom: 8px;
}

.pricing-features li {
    font-size: 14px;
    color: #4b5563;
    line-height: 1.4;
    position: relative;
    padding-left: 16px;
}

.pricing-features li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: #9ca3af;
}

.pricing-card--featured .pricing-features li {
    color: rgba(255, 255, 255, 0.95);
}

.pricing-card--featured .pricing-features li::before {
    background-color: rgba(255, 255, 255, 0.85);
}

.pricing-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 12px 20px;
    border-radius: 999px;
    border: 1px solid #d1d5db;
    background-color: #ffffff;
    color: #111827;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(17, 24, 39, 0.04);
    transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

.pricing-cta:hover {
    border-color: #9ca3af;
    box-shadow: 0 4px 12px rgba(17, 24, 39, 0.08);
    transform: translateY(-1px);
}

.pricing-cta--featured {
    border: none;
    color: #1f4fd6;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.pricing-cta--featured:hover {
    border: none;
    color: #163db0;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.16);
}

@media (max-width: 960px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 8px auto 0;
    }

    .pricing-card--featured {
        transform: none;
        order: -1;
    }

    .pricing-content h2 {
        font-size: 28px;
        white-space: normal;
    }

    .pricing-section {
        padding: 72px 20px 80px;
    }
}

.faq-section {
    padding: 96px 24px 100px;
    background-color: #ffffff;
}

.faq-shell {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 36px;
}

.faq-shell h2 {
    font-size: 40px;
    font-weight: 700;
    color: #111111;
    text-align: center;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.faq-list {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    border-radius: 14px;
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    box-shadow: 0 8px 24px rgba(80, 90, 140, 0.06);
    transition: background-color 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.faq-toggle {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.faq-item:has(.faq-toggle:checked) {
    background-color: #eef2f6;
    border-color: transparent;
    box-shadow: 0 8px 24px rgba(80, 90, 140, 0.08);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 22px 24px;
    cursor: pointer;
    font-size: 17px;
    font-weight: 700;
    color: #1f2937;
    text-align: left;
    user-select: none;
}

.faq-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1.5px solid #3b82f6;
    color: #3b82f6;
    flex-shrink: 0;
    position: relative;
}

.faq-icon::before,
.faq-icon::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    background-color: currentColor;
    border-radius: 1px;
    transform: translate(-50%, -50%);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.faq-icon::before {
    width: 10px;
    height: 1.5px;
}

.faq-icon::after {
    width: 1.5px;
    height: 10px;
}

.faq-toggle:checked + .faq-question .faq-icon::after {
    opacity: 0;
    transform: translate(-50%, -50%) scaleY(0);
}

.faq-panel {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.35s ease;
}

.faq-toggle:checked ~ .faq-panel {
    grid-template-rows: 1fr;
}

.faq-panel-inner {
    overflow: hidden;
    min-height: 0;
}

.faq-answer {
    padding: 0 24px 22px;
    font-size: 15px;
    line-height: 1.65;
    color: #6b7280;
    text-align: left;
    max-width: 92%;
    opacity: 0;
    transform: translateY(-4px);
    transition: opacity 0.25s ease 0.05s, transform 0.3s ease;
}

.faq-toggle:checked ~ .faq-panel .faq-answer {
    opacity: 1;
    transform: translateY(0);
}

.faq-see-all {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 8px;
    padding: 14px 28px;
    border-radius: 0.5rem;
    background-color: #007bff;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.2s ease;
}

.faq-see-all:hover {
    background-color: #0069d9;
}

@media (max-width: 900px) {
    .faq-shell h2 {
        font-size: 30px;
    }

    .faq-section {
        padding: 72px 16px 80px;
    }

    .faq-question {
        font-size: 16px;
        padding: 18px 16px;
    }

    .faq-answer {
        padding: 0 16px 18px;
    }
}

.features-final-section {
    background-color: #f9f9fa;
    padding: 110px 24px 120px;
    text-align: center;
}

.features-final-content {
    max-width: 1120px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
}

.features-final-content .section-heading h2 {
    font-size: 44px;
    font-weight: 700;
    color: #111111;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.features-final-lead {
    max-width: 640px;
    font-size: 18px;
    color: #4b5563;
    line-height: 1.55;
    margin-bottom: 56px;
}

/* Quiet hint that the four cards aren't the whole product */
.features-final-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 24px;
    font-size: 14px;
    font-weight: 500;
    color: #9ca3af;
}

.features-final-more-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #007bff;
    font-size: 15px;
    font-weight: 700;
    line-height: 1;
}

.features-final-content > .faq-see-all {
    margin-top: 28px;
}

.integrations-band {
    background-color: #f9f9fa;
    padding: 96px 24px 60px;
    text-align: center;
    overflow: hidden;
}

.integrations-band-inner {
    max-width: 1000px;
    margin: 0 auto;
}

.integrations-eyebrow {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #3b82f6;
    margin-bottom: 14px;
}

.integrations-band-inner h2 {
    font-size: clamp(30px, 4vw, 46px);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.025em;
    color: #1e3a5f;
    margin-bottom: 16px;
}

.integrations-band-lead {
    max-width: 560px;
    margin: 0 auto;
    font-size: 15px;
    line-height: 1.6;
    color: #5b7290;
}

/* Logos ride a shallow arc that rises toward the LeaseOps mark at center */
.int-arc {
    position: relative;
    width: 100%;
    aspect-ratio: 1000 / 240;
    margin-top: 8px;
}

.int-arc-line {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.int-core {
    position: absolute;
    left: 50%;
    top: 31.2%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: clamp(54px, 6.6vw, 72px);
    aspect-ratio: 1;
    border-radius: 26%;
    background: #007bff;
    color: #ffffff;
    z-index: 2;
}

.int-core svg {
    width: 34%;
    height: auto;
    display: block;
}

.int-nodes {
    list-style: none;
    margin: 0;
    padding: 0;
}

.int-node {
    position: absolute;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: clamp(54px, 6.6vw, 78px);
    height: clamp(32px, 3.9vw, 44px);
}

.int-node img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Depth: logos fade and shrink as they travel away from the core */
.int-node--near {
    opacity: 1;
}

.int-node--mid {
    opacity: 0.78;
    scale: 0.88;
}

.int-node--far {
    opacity: 0.5;
    scale: 0.76;
}

/* Square icon marks need a taller box than wordmarks to read at the same weight */
.int-node--icon {
    height: clamp(42px, 4.8vw, 54px);
}

/* Multiply drops the white box on raster logos */
.int-node--raster img {
    mix-blend-mode: multiply;
}

/* Combined Microsoft 365 wordmark is mobile-only; desktop keeps the three app icons */
.int-node--ms365 {
    display: none;
}

@media (max-width: 900px) {
    .integrations-band {
        padding: 72px 20px 48px;
    }

    .integrations-band-inner h2 br,
    .integrations-band-lead br {
        display: none;
    }

    /* The arc gets too cramped to read, so drop to an even row of logos */
    .int-arc {
        aspect-ratio: auto;
        margin-top: 36px;
    }

    .int-arc-line {
        display: none;
    }

    .int-core {
        position: static;
        transform: none;
        margin: 0 auto 26px;
    }

    .int-nodes {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 22px 28px;
    }

    .int-node {
        position: static;
        transform: none;
        left: auto !important;
        top: auto !important;
        opacity: 1;
        scale: 1;
    }

    .int-node--ms-app {
        display: none;
    }

    .int-node--ms365 {
        display: flex;
    }
}

.marvin-section {
    background-color: #ffffff;
    padding: 110px 24px;
    text-align: center;
}

.marvin-content {
    max-width: 1120px;
    margin: 0 auto;
}

.marvin-content h2 {
    font-size: clamp(34px, 4vw, 52px);
    font-weight: 700;
    color: #111111;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}

.marvin-accent {
    background: linear-gradient(90deg, #4f8dff 0%, #8b5cf6 55%, #ec4899 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.marvin-lead {
    max-width: 620px;
    margin: 0 auto 56px;
    font-size: 17px;
    color: #9ca3af;
    line-height: 1.6;
}

.marvin-visual {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

/* Soft prism glow bleeding out from under the chat card */
.marvin-visual::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -8px;
    height: 72px;
    border-radius: 999px;
    background: linear-gradient(
        90deg,
        #fde68a 0%,
        #86efac 16%,
        #a5f3fc 34%,
        #c7d2fe 52%,
        #f5d0fe 74%,
        #fbcfe8 100%
    );
    filter: blur(16px);
    opacity: 0.5;
    z-index: 0;
    pointer-events: none;
}

.marvin-visual img {
    position: relative;
    z-index: 1;
    width: 100%;
    display: block;
    border-radius: 16px;
    box-shadow: 0 10px 50px rgba(15, 23, 42, 0.12);
}

@media (max-width: 900px) {
    .marvin-section {
        padding: 72px 20px;
    }

    .marvin-lead {
        font-size: 16px;
        margin-bottom: 36px;
    }

    .marvin-content h2 br,
    .marvin-lead br {
        display: none;
    }

    /* The glow and shadow are fixed sizes tuned to a 1000px image; against a
       phone-width image the same values read as a heavy halo */
    .marvin-visual::before {
        left: 8%;
        right: 8%;
        bottom: -4px;
        height: 30px;
        filter: blur(11px);
        opacity: 0.42;
    }

    .marvin-visual img {
        border-radius: 12px;
        box-shadow: 0 5px 18px rgba(15, 23, 42, 0.1);
    }
}

.feature-card-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
}

.feature-card {
    background: #f9f9fa;
    border-radius: 24px;
    overflow: hidden;
    text-align: left;
    box-shadow: none;
    border: none;
}

.feature-card-visual {
    min-height: 300px;
    padding: 16px;
    background:
        radial-gradient(ellipse 80% 70% at 50% 20%, rgba(170, 200, 255, 0.35) 0%, transparent 70%),
        linear-gradient(180deg, #e8f1ff 0%, #f3f8ff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 20px;
}

.feature-card-visual img {
    width: 100%;
    display: block;
    border-radius: 12px;
    box-shadow: 0 6px 24px rgba(15, 23, 42, 0.12);
}

.feature-card-body {
    padding: 28px 30px 34px;
    background-color: #f9f9fa;    
}

.feature-card-body h3 {
    font-size: clamp(22px, 2.2vw, 28px);
    font-weight: 700;
    line-height: 1.25;
    color: #0f2b5b;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
}

.feature-card-body p {
    font-size: 16px;
    line-height: 1.65;
    color: #4a6fa5;
    margin: 0;
}

.mock-panel {
    width: min(100%, 340px);
    background: #ffffff;
    border-radius: 14px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 12px 28px rgba(17, 24, 39, 0.08);
    padding: 16px;
    text-align: left;
}

.mock-panel-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 13px;
    font-weight: 600;
    color: #111827;
}

.mock-muted {
    color: #9ca3af;
    font-weight: 500;
}

.mock-pill {
    display: inline-flex;
    align-items: center;
    height: 22px;
    padding: 0 8px;
    border-radius: 999px;
    background: #dbeafe;
    color: #1d4ed8;
    font-size: 11px;
    font-weight: 700;
}

.mock-pill--soft {
    background: #ecfdf5;
    color: #047857;
}

.mock-rank-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mock-rank-list li {
    display: grid;
    grid-template-columns: 18px 28px 1fr auto;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
    border-radius: 10px;
    background: #f9fafb;
}

.mock-rank {
    font-size: 12px;
    font-weight: 700;
    color: #6b7280;
}

.mock-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
}

.mock-avatar--a { background: linear-gradient(135deg, #93c5fd, #3b82f6); }
.mock-avatar--b { background: linear-gradient(135deg, #fdba74, #f97316); }
.mock-avatar--c { background: linear-gradient(135deg, #c4b5fd, #8b5cf6); }

.mock-name {
    font-size: 13px;
    font-weight: 600;
    color: #111827;
}

.mock-score {
    font-size: 13px;
    font-weight: 700;
    color: #2563eb;
}

.mock-contest-goal {
    margin-bottom: 14px;
}

.mock-contest-meta {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    font-size: 12px;
    color: #6b7280;
    margin-bottom: 8px;
}

.mock-contest-meta strong {
    color: #111827;
    font-size: 13px;
}

.mock-bar {
    height: 8px;
    border-radius: 999px;
    background: #e5e7eb;
    overflow: hidden;
}

.mock-bar span {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, #34d399, #059669);
}

.mock-contest-rows {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mock-contest-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 10px;
    border-radius: 10px;
    background: #f9fafb;
    font-size: 13px;
    color: #374151;
}

.mock-contest-row span:last-child {
    font-weight: 700;
    color: #059669;
}

.mock-stat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-bottom: 14px;
}

.mock-stat {
    background: #f9fafb;
    border-radius: 10px;
    padding: 10px 8px;
    text-align: center;
}

.mock-stat span {
    display: block;
    font-size: 11px;
    color: #9ca3af;
    margin-bottom: 4px;
}

.mock-stat strong {
    font-size: 18px;
    color: #111827;
}

.mock-bars {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mock-site-bar {
    position: relative;
    height: 34px;
    border-radius: 10px;
    background: #f3f4f6;
    overflow: hidden;
}

.mock-site-bar span {
    display: block;
    height: 100%;
    background: linear-gradient(90deg, #93c5fd, #3b82f6);
    opacity: 0.85;
}

.mock-site-bar em {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-style: normal;
    font-size: 12px;
    font-weight: 600;
    color: #111827;
}

.mock-logo-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 12px;
}

.mock-logo-tile {
    height: 54px;
    border-radius: 10px;
    background: #f9fafb;
    border: 1px solid #eef0f3;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.mock-logo-tile img {
    max-width: 100%;
    max-height: 28px;
    object-fit: contain;
}

.mock-sync-note {
    font-size: 12px;
    color: #9ca3af;
    text-align: center;
    margin: 0;
}

@media (max-width: 900px) {
    .features-final-section {
        padding: 80px 20px 88px;
    }

    .features-final-content .section-heading h2 {
        font-size: 32px;
    }

    .features-final-lead {
        font-size: 16px;
        margin-bottom: 40px;
    }

    .features-final-lead br {
        display: none;
    }

    .feature-card-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .feature-card-visual {
        min-height: 220px;
        padding: 14px;
    }

    .feature-card-body {
        padding: 24px 22px 28px;
    }

    .feature-card-body h3 {
        font-size: 22px;
    }
}

.final-cta-section {
    background:
        radial-gradient(ellipse 70% 55% at 50% 42%, rgba(170, 200, 255, 0.65) 0%, transparent 62%),
        radial-gradient(ellipse 48% 40% at 18% 78%, rgba(190, 175, 255, 0.28) 0%, transparent 55%),
        linear-gradient(180deg, #c9dcff 0%, #dce8ff 40%, #eef3ff 100%);
    padding: 96px 24px 100px;
    text-align: center;
}

.final-cta-inner {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
    /* Offsets the removed rating/social blocks so the section keeps its height */
    padding: 76px 0;
}

.final-cta-rating {
    display: none;
    align-items: center;
    gap: 10px;
}

.final-cta-stars {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: #f5b301;
}

.final-cta-stars svg {
    width: 18px;
    height: 18px;
    display: block;
}

.final-cta-score {
    font-size: 15px;
    font-weight: 600;
    color: #18181b;
    line-height: 1;
}

.final-cta-social {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.final-cta-avatars {
    display: flex;
    align-items: center;
}

.final-cta-avatars img,
.final-cta-count {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 3px solid #e8f0ff;
    object-fit: cover;
    display: block;
    margin-left: -12px;
    background: #ffffff;
}

.final-cta-avatars img:first-child {
    margin-left: 0;
}

.final-cta-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    color: #18181b;
    letter-spacing: -0.02em;
    box-shadow: 0 1px 2px rgba(24, 24, 27, 0.06);
}

.final-cta-trust {
    margin: 0;
    font-size: 14px;
    line-height: 1.45;
    color: #3f3f46;
    max-width: 320px;
}

.final-cta-title {
    margin: 8px 0 0;
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: #111111;
    max-width: 640px;
}

.final-cta-lead {
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
    color: #3f3f46;
    max-width: 560px;
}

.final-cta-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 8px;
}

.final-cta-primary {
    margin-left: 0;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.final-cta-arrow {
    width: 18px;
    height: 18px;
    color: #ffffff;
    flex-shrink: 0;
    display: block;
}

@media (max-width: 640px) {
    .final-cta-section {
        padding: 72px 20px 80px;
    }

    .final-cta-inner {
        gap: 22px;
        padding: 67px 0;
    }

    .final-cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .final-cta-buttons .get-started-btn,
    .final-cta-buttons .book-demo-btn {
        width: 100%;
        max-width: 320px;
        text-align: center;
        justify-content: center;
    }
}

.site-footer {
    background-color: rgb(249, 249, 250);
    border-top: 1px solid rgb(226, 226, 226);
    padding: 48px 24px 0;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 48px;
    padding-bottom: 40px;
}

.footer-brand {
    max-width: 360px;
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
}

.footer-logo {
    color: #000000;
    font-size: 22px;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    text-decoration: none;
}

.footer-tagline {
    font-size: 15px;
    color: #202020;
    line-height: 1.5;
    margin-bottom: 0;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: auto;
    padding-top: 36px;
}

.footer-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    color: #9ca3af;
    transition: color 0.15s ease, opacity 0.15s ease;
}

.footer-social-link:hover {
    color: #007bff;
}

.footer-social-link svg {
    width: 20px;
    height: 20px;
    display: block;
}

.footer-social-link--youtube,
.footer-social-link--reddit {
    width: 24px;
    height: 24px;
}

.footer-social-link--youtube svg,
.footer-social-link--reddit svg {
    width: 24px;
    height: 24px;
}

.footer-social-link--reddit svg path:last-child {
    fill: #f9f9fa;
}

@media (min-width: 901px) {
    .footer-tagline {
        /* Keep each half on one line; <br> still creates the second line */
        white-space: nowrap;
    }
}

@media (max-width: 900px) {
    .footer-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-social {
        margin-top: 32px;
        padding-top: 0;
    }

    .footer-columns {
        gap: 40px;
        flex-wrap: wrap;
    }
}

.footer-columns {
    display: flex;
    gap: 80px;
}

.footer-col-title {
    font-size: 14px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 24px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: #202020;
    font-size: 15px;
}

.footer-bottom {
    border-top: 1px solid rgb(226, 226, 226);
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0 28px;
    text-align: center;
}

.footer-copy {
    font-size: 14px;
    color: #202020;
}

/* Auth pages (login, get started) */

.app-body {
    min-height: 100vh;
    background-color: #2E5CFF1A;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.auth-main {
    width: 100%;
    max-width: 440px;
}

.auth-panel {
    background-color: #ffffff;
    border: 1px solid rgb(226, 226, 226);
    border-radius: 10px;
    padding: 40px 36px;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.auth-sign-h,
.auth-get-h {
    text-align: center;
    font-size: 28px;
    font-weight: 600;
    color: #000000;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: left;
}

.form-field label {
    font-size: 14px;
    font-weight: 500;
    color: #202020;
}

.form-field input,
.form-field select {
    width: 100%;
    padding: 12px 14px;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    color: #000000;
    background-color: #ffffff;
    border: 1px solid rgb(226, 226, 226);
    border-radius: 0.5rem;
    outline: none;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.form-field input:focus,
.form-field select:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.15);
}

.form-field select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23202020' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
}

.auth-actions {
    margin-top: 4px;
}

.auth-submit {
    display: block;
    width: 100%;
    padding: 14px;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    color: #ffffff;
    background-color: #007bff;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: background-color 0.15s ease;
}

.auth-submit:hover {
    background-color: #0069d9;
}

.auth-submit:disabled {
    background-color: #7fbcff;
    cursor: default;
}

.auth-submit-link {
    text-decoration: none;
}

.auth-error {
    margin: 0;
    padding: 10px 12px;
    font-size: 14px;
    line-height: 1.4;
    color: #991b1b;
    background-color: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 0.5rem;
}

.status-panel {
    gap: 20px;
}

.status-panel .status-eyebrow {
    margin: 0 0 -8px;
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #007bff;
}

.status-panel .status-copy {
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
    color: #4b5563;
}

.auth-alt-link {
    text-align: center;
    font-size: 15px;
    color: #202020;
}

.auth-alt-link a {
    color: #007bff;
    font-weight: 500;
}

.auth-alt-link a:hover {
    text-decoration: underline;
}

@media (max-width: 640px) {
    /* margin auto instead of align-items keeps the panel centred when it fits
       and scrollable from the top when it doesn't */
    .app-body {
        align-items: flex-start;
        padding: 20px 16px;
    }

    .auth-main {
        margin: auto;
    }

    .auth-panel {
        padding: 28px 20px 26px;
        gap: 22px;
        border-radius: 12px;
    }

    .auth-sign-h,
    .auth-get-h {
        font-size: 24px;
    }

    .auth-form {
        gap: 15px;
    }

    .form-field {
        gap: 6px;
    }

    .form-field label {
        font-size: 13px;
    }

    /* 16px keeps iOS from zooming the viewport on focus */
    .form-field input,
    .form-field select {
        padding: 11px 12px;
        font-size: 16px;
    }

    .auth-actions {
        margin-top: 2px;
    }

    .auth-submit {
        padding: 13px;
        font-size: 15px;
    }

    .auth-alt-link {
        font-size: 14px;
    }

    .status-panel .status-copy {
        font-size: 14px;
    }
}

:root {
    --font-sans: 'Inter', sans-serif;
    --radius: 0.5rem;
}

/* ===== Ported content pages (pricing, contact, faq, about) ===== */

.contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border: none;
  border-radius: var(--radius);
  background: linear-gradient(180deg, #7BB8F8 0%, #4A9AEF 100%);
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(74, 154, 239, 0.35);
  transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
}

.contact-btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.03);
  box-shadow: 0 10px 28px rgba(74, 154, 239, 0.42);
}

.pg-form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: left;
}

.pg-form-field label {
  font-size: 14px;
  font-weight: 500;
  color: #202020;
}

.pg-form-field input,
.pg-form-field select {
  width: 100%;
  padding: 12px 14px;
  font-size: 16px;
  font-family: var(--font-sans);
  color: #000000;
  background-color: #ffffff;
  border: 1px solid rgb(226, 226, 226);
  border-radius: var(--radius);
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.pg-form-field input:focus,
.pg-form-field select:focus {
  border-color: #007bff;
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.15);
}

.pg-form-field select {
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  color: #111111;
  background-color: #ffffff;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%239ca3af' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 12px 8px;
  padding-right: 40px;
}

.pg-form-field select:hover {
  border-color: #c4c9d2;
}

.pg-form-field select:focus {
  border-color: #007bff;
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.15);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23007bff' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

/* Muted “Select...” until a real choice is made */
.pg-form-field select:invalid {
  color: #9ca3af;
}

.pg-form-field select option {
  color: #111111;
}

.pg-form-field select option[value=""] {
  color: #9ca3af;
}

.pg-page {
  min-height: 100vh;
  min-height: 100dvh;
  overflow-x: hidden;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  background-color: #2E5CFF1A;
}

.pg-page > main {
  flex: 1;
}

.pg-faq-section {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 72px 24px 100px;
  width: 100%;
}

.pg-faq-shell {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
}

.pg-faq-shell h1 {
  font-size: 40px;
  font-weight: 700;
  color: #111111;
  text-align: center;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.pg-faq-list {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  align-items: start;
}

.pg-faq-item {
  position: relative;
  border-radius: 14px;
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  box-shadow: 0 8px 24px rgba(80, 90, 140, 0.06);
  transition: background-color 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.pg-faq-toggle {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.pg-faq-item:has(.pg-faq-toggle:checked) {
  background-color: #eef2f6;
  border-color: transparent;
  box-shadow: 0 8px 24px rgba(80, 90, 140, 0.08);
}

.pg-faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 24px;
  cursor: pointer;
  font-size: 17px;
  font-weight: 700;
  color: #1f2937;
  text-align: left;
  user-select: none;
}

.pg-faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid #3b82f6;
  color: #3b82f6;
  flex-shrink: 0;
  position: relative;
}

.pg-faq-icon::before,
.pg-faq-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background-color: currentColor;
  border-radius: 1px;
  transform: translate(-50%, -50%);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.pg-faq-icon::before {
  width: 10px;
  height: 1.5px;
}

.pg-faq-icon::after {
  width: 1.5px;
  height: 10px;
}

.pg-faq-toggle:checked + .pg-faq-question .pg-faq-icon::after {
  opacity: 0;
  transform: translate(-50%, -50%) scaleY(0);
}

.pg-faq-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s ease;
}

.pg-faq-toggle:checked ~ .pg-faq-panel {
  grid-template-rows: 1fr;
}

.pg-faq-panel-inner {
  overflow: hidden;
  min-height: 0;
}

.pg-faq-answer {
  padding: 0 24px 22px;
  font-size: 15px;
  line-height: 1.65;
  color: #6b7280;
  text-align: left;
  max-width: 92%;
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity 0.25s ease 0.05s, transform 0.3s ease;
}

.pg-faq-toggle:checked ~ .pg-faq-panel .pg-faq-answer {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .pg-faq-shell h1 {
    font-size: 30px;
  }

  .pg-faq-section {
    padding: 48px 16px 80px;
  }

  .pg-faq-list {
    grid-template-columns: 1fr;
  }

  .pg-faq-question {
    font-size: 16px;
    padding: 18px 16px;
  }

  .pg-faq-answer {
    padding: 0 16px 18px;
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  html:has(body.pg-page),
  body.pg-page {
    height: auto;
    max-height: none;
    overflow-x: hidden;
    overflow-y: auto;
  }

  body.pg-page {
    display: flex;
    flex-direction: column;
  }

  .pg-faq-shell {
    gap: 28px;
  }

  .pg-faq-shell h1 {
    font-size: 26px;
  }

  .pg-faq-question {
    font-size: 15px;
    gap: 14px;
  }
}

/* Legal pages (privacy policy, terms of service) */

.pg-sitemap-section {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 72px 24px 100px;
}

.pg-sitemap-shell {
  width: 100%;
  max-width: 780px;
  margin: 0 auto;
}

.pg-sitemap-container {
  width: 100%;
  padding: 32px 36px 40px;
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(80, 90, 140, 0.06);
}

.pg-sitemap-container h1 {
  margin: 0;
  font-size: 40px;
  font-weight: 700;
  color: #111111;
  text-align: center;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.pg-sitemap-container h2 {
  margin-top: 36px;
  font-size: 22px;
  font-weight: 600;
  color: #111111;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.pg-sitemap-container h2:first-of-type {
  margin-top: 28px;
}

.pg-sitemap-container ul {
  margin-top: 14px;
  padding-left: 22px;
  list-style: disc;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pg-sitemap-container li {
  font-size: 16px;
  line-height: 1.7;
  color: #4b5563;
}

.pg-sitemap-container a {
  color: #007bff;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .pg-sitemap-section {
    padding: 48px 16px 80px;
  }

  .pg-sitemap-container h1 {
    font-size: 30px;
  }

  .pg-sitemap-container {
    padding: 24px 20px 32px;
  }

  .pg-sitemap-container h2 {
    margin-top: 28px;
    font-size: 19px;
  }

  .pg-sitemap-container li {
    font-size: 15px;
  }
}

.pg-legal-section {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 72px 24px 100px;
}

.pg-legal-shell {
  width: 100%;
  max-width: 780px;
  margin: 0 auto;
}

.pg-legal-shell h1 {
  font-size: 40px;
  font-weight: 700;
  color: #111111;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.pg-legal-updated {
  margin-top: 12px;
  font-size: 14px;
  color: #6b7280;
}

.pg-legal-intro {
  margin-top: 24px;
  font-size: 17px;
  line-height: 1.7;
  color: #202020;
}

.pg-legal-shell h2 {
  margin-top: 44px;
  font-size: 22px;
  font-weight: 600;
  color: #111111;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.pg-legal-shell p {
  margin-top: 14px;
  font-size: 16px;
  line-height: 1.7;
  color: #4b5563;
}

.pg-legal-shell ul {
  margin-top: 14px;
  padding-left: 22px;
  list-style: disc;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pg-legal-shell li {
  font-size: 16px;
  line-height: 1.7;
  color: #4b5563;
}

.pg-legal-shell a {
  color: #007bff;
  text-decoration: underline;
}

.pg-legal-callout {
  margin-top: 44px;
  padding: 20px 22px;
  background-color: #ffffff;
  border: 1px solid rgb(226, 226, 226);
  border-radius: 10px;
}

.pg-legal-callout h2,
.pg-legal-callout p:first-child {
  margin-top: 0;
}

@media (max-width: 768px) {
  .pg-legal-section {
    padding: 48px 16px 80px;
  }

  .pg-legal-shell h1 {
    font-size: 30px;
  }

  .pg-legal-intro {
    font-size: 16px;
  }

  .pg-legal-shell h2 {
    margin-top: 34px;
    font-size: 19px;
  }

  .pg-legal-shell p,
  .pg-legal-shell li {
    font-size: 15px;
  }
}

/* Careers page */

.pg-careers-lead {
  margin-top: 14px;
  font-size: 16px;
  line-height: 1.6;
  color: #6b7280;
}

.pg-role-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  width: 100%;
  margin-top: 20px;
}

.pg-role-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 26px 26px 24px;
  min-width: 0;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(80, 90, 140, 0.06);
}

.pg-role-title {
  font-size: 19px;
  font-weight: 700;
  color: #111111;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.pg-role-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.pg-role-tag {
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 500;
  color: #007bff;
  background-color: #2E5CFF14;
  border-radius: 999px;
}

.pg-role-copy {
  font-size: 14px;
  line-height: 1.6;
  color: #6b7280;
}

/* auto margin keeps the apply buttons aligned when descriptions differ in length */
.pg-role-apply {
  margin-top: auto;
  padding-top: 6px;
  cursor: pointer;
}

.pg-apply {
  margin-top: 64px;
  scroll-margin-top: 96px;
}

.pg-apply-head {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 32px;
}

.pg-apply-head h2 {
  font-size: 30px;
  font-weight: 700;
  color: #111111;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.pg-apply-head p {
  margin-top: 12px;
  font-size: 15px;
  line-height: 1.6;
  color: #6b7280;
}

.pg-apply-form {
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
}

.pg-apply-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.pg-field-hint {
  font-size: 12px;
  color: #9ca3af;
}

@media (max-width: 768px) {
  .pg-role-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .pg-apply {
    margin-top: 48px;
  }

  .pg-apply-head h2 {
    font-size: 24px;
  }

  .pg-apply-row {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* Contact page */

.contact-section {
  position: relative;
  z-index: 1;
  flex: 1;
  width: 100%;
  padding: 72px 24px 100px;
}

.contact-shell {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}

.contact-intro {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 48px;
}

.contact-intro h1 {
  font-size: 40px;
  font-weight: 700;
  color: #111111;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 56px;
  align-items: start;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-name-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-form .pg-form-field label,
.contact-services legend {
  font-size: 14px;
  font-weight: 600;
  color: #344054;
}

.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  font-size: 16px;
  font-family: var(--font-sans);
  color: #000000;
  background-color: #ffffff;
  border: 1px solid rgb(226, 226, 226);
  border-radius: var(--radius);
  outline: none;
  resize: vertical;
  min-height: 120px;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.contact-form textarea:focus {
  border-color: #007bff;
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.15);
}

.contact-services {
  border: none;
  padding: 0;
  margin: 4px 0 0;
}

.contact-services legend {
  margin-bottom: 12px;
  padding: 0;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 24px;
}

.service-option {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #344054;
  cursor: pointer;
}

.service-option input {
  width: 16px;
  height: 16px;
  accent-color: #007bff;
  flex-shrink: 0;
}

.contact-submit {
  margin-top: 8px;
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: var(--radius);
  background-color: #007bff;
  color: #ffffff;
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.15s ease;
}

.contact-submit:hover {
  background-color: #0069d9;
}

.contact-status {
  margin: 0 0 12px;
  padding: 10px 12px;
  font-size: 14px;
  line-height: 1.4;
  border-radius: var(--radius);
}

.contact-status.is-success {
  color: #065f46;
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
}

.contact-status.is-error {
  color: #991b1b;
  background: #fef2f2;
  border: 1px solid #fecaca;
}

.contact-aside {
  display: flex;
  flex-direction: column;
  gap: 36px;
  padding-top: 4px;
}

.contact-aside-block h2 {
  font-size: 18px;
  font-weight: 700;
  color: #111111;
  margin-bottom: 8px;
}

.contact-aside-block > p {
  font-size: 14px;
  line-height: 1.55;
  color: #6b7280;
  margin-bottom: 16px;
}

.contact-aside-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-aside-list a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #111111;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.15s ease;
}

.contact-aside-list a:hover {
  color: #007bff;
}

.contact-aside-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  color: #111111;
  flex-shrink: 0;
}

.contact-aside-list a:hover .contact-aside-icon {
  color: #007bff;
}

@media (max-width: 900px) {
  .contact-section {
    padding: 48px 16px 80px;
  }

  .contact-intro {
    text-align: center;
    margin: 0 0 32px;
    max-width: none;
  }

  .contact-intro h1 {
    font-size: 32px;
    text-align: center;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-name-row {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .contact-aside {
    gap: 28px;
  }
}

@media (max-width: 640px) {
  .contact-intro h1 {
    font-size: 28px;
  }

  .contact-submit {
    font-size: 15px;
    padding: 13px;
  }
}

.about-section {
  position: relative;
  z-index: 1;
  flex: 1;
  width: 100%;
  padding: 72px 24px 100px;
}

.about-shell {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.about-intro {
  text-align: center;
  max-width: 520px;
  margin: 0 auto;
}

.about-intro h1 {
  font-size: 40px;
  font-weight: 700;
  color: #111111;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 14px;
}

.page-lead {
  margin: 0;
  font-size: 16px;
  line-height: 1.55;
  color: #6b7280;
  width: max-content;
  max-width: 100%;
  margin-inline: auto;
}

.page-lead span {
  display: block;
  white-space: nowrap;
}

.about-feature-carousel {
  width: 100%;
  max-width: 980px;
  margin: 16px auto 0;
  --carousel-stage-w: 440px;
  --carousel-stage-h: 313px;
  --carousel-depth: 226px;
  perspective: 1550px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.feature-carousel-stage {
  position: relative;
  width: var(--carousel-stage-w);
  height: var(--carousel-stage-h);
  transform-style: preserve-3d;
}

.feature-carousel-ring {
  position: absolute;
  inset: 0;
  transform-style: preserve-3d;
  transform: rotateY(0deg);
  transition: transform 1.6s cubic-bezier(0.33, 0.1, 0.2, 1);
  will-change: transform;
}

.feature-shot {
  position: absolute;
  inset: 0;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform-style: preserve-3d;
}

.feature-shot:nth-child(1) {
  transform: rotateY(0deg) translateZ(var(--carousel-depth));
}

.feature-shot:nth-child(2) {
  transform: rotateY(120deg) translateZ(var(--carousel-depth));
}

.feature-shot:nth-child(3) {
  transform: rotateY(240deg) translateZ(var(--carousel-depth));
}

.feature-shot-label {
  margin: 0 0 10px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #9ca3af;
  text-align: center;
  transition: opacity 0.25s ease;
}

.feature-shot-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  padding: 0;
  border: none;
  border-radius: 6px;
  box-shadow: 0 12px 28px rgba(17, 24, 39, 0.12);
  background: #ffffff;
  overflow: hidden;
  cursor: zoom-in;
  transform: translateZ(0.1px);
}

.feature-shot img {
  display: block;
  width: 100%;
  height: 100%;
  /* Fills the frame's full height instead of letterboxing; the screenshots are
     wider than the frame, so anchor them left and trim off the right */
  object-fit: cover;
  object-position: left center;
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
  pointer-events: none;
}

/* Centered compositions, so trim both sides evenly instead of only the right.
   Matched on src because the script repaints the three slots as the ring turns. */
.feature-shot img[src$="about-carousel/leaderboard.png"],
.feature-shot img[src$="about-carousel/marvin-ai.png"] {
  object-position: center;
}

.feature-shot-expand {
  position: absolute;
  right: 8px;
  bottom: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.88);
  color: #6b7280;
  box-shadow: 0 1px 4px rgba(17, 24, 39, 0.12);
  opacity: 0.5;
  pointer-events: none;
  transition: opacity 0.2s ease, color 0.2s ease, background-color 0.2s ease;
}

.feature-shot-expand svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-shot-frame:hover .feature-shot-expand,
.feature-shot-frame:focus-visible .feature-shot-expand {
  opacity: 0.95;
  color: #4b5563;
  background: rgba(255, 255, 255, 0.96);
}

@media (hover: none) {
  .feature-shot-expand {
    opacity: 0.72;
  }
}

.feature-shot-frame:focus-visible {
  outline: 2px solid #4a9aef;
  outline-offset: 3px;
}

.feature-shot.is-blank {
  pointer-events: none;
}

.feature-shot.is-blank .feature-shot-label,
.feature-shot.is-blank img,
.feature-shot.is-blank .feature-shot-expand {
  opacity: 0;
}

.feature-shot.is-revealing img {
  animation: feature-shot-feed 0.8s ease-out both;
}

@keyframes feature-shot-feed {
  from {
    opacity: 0;
    filter: blur(8px);
  }
  to {
    opacity: 1;
    filter: blur(0);
  }
}

.feature-carousel-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.feature-carousel-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  padding: 0;
  border: none;
  background: transparent;
  flex-shrink: 0;
  color: #9ca3af;
  cursor: pointer;
}

.feature-carousel-arrow svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-carousel-arrow:hover {
  color: #6b7280;
}

.feature-carousel-arrow:focus-visible {
  outline: 2px solid #4a9aef;
  outline-offset: 3px;
  border-radius: 6px;
}

.feature-carousel-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.feature-carousel-dot {
  width: 12px;
  height: 12px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: #d1d5db;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.feature-carousel-dot:hover {
  background: #9ca3af;
}

.feature-carousel-dot.is-active {
  background: #4a9aef;
  transform: scale(1.15);
}

.feature-carousel-dot:focus-visible {
  outline: 2px solid #4a9aef;
  outline-offset: 3px;
}

.feature-lightbox {
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  margin: 0;
  padding: 24px;
  border: none;
  background: transparent;
}

.feature-lightbox[open] {
  display: grid;
  place-items: center;
}

.feature-lightbox::backdrop {
  background: rgba(17, 24, 39, 0.55);
  backdrop-filter: blur(8px);
}

.feature-lightbox-panel {
  width: min(92vw, 1080px);
  max-height: min(88vh, 88dvh);
  padding: 18px 18px 16px;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 24px 60px rgba(17, 24, 39, 0.22);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feature-lightbox-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.feature-lightbox-title {
  margin: 0;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #9ca3af;
}

.feature-lightbox-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  padding: 0;
  border: none;
  border-radius: 8px;
  background: transparent;
  color: #9ca3af;
  cursor: pointer;
}

.feature-lightbox-close svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
}

.feature-lightbox-close:hover {
  color: #4b5563;
  background: #f3f4f6;
}

.feature-lightbox-close:focus-visible {
  outline: 2px solid #4a9aef;
  outline-offset: 2px;
}

.feature-lightbox-stage {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 8px;
  min-height: 0;
}

.feature-lightbox-stage img {
  display: block;
  width: 100%;
  max-height: min(74vh, 74dvh);
  object-fit: contain;
  object-position: center top;
  background: #ffffff;
  border-radius: 8px;
}

.feature-lightbox-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  padding: 0;
  border: none;
  border-radius: 8px;
  background: transparent;
  color: #9ca3af;
  cursor: pointer;
}

.feature-lightbox-arrow svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-lightbox-arrow:hover {
  color: #4b5563;
  background: #f3f4f6;
}

.feature-lightbox-arrow:focus-visible {
  outline: 2px solid #4a9aef;
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  .feature-carousel-ring {
    transition: none;
  }

  .feature-shot:nth-child(2),
  .feature-shot:nth-child(3) {
    opacity: 0;
    pointer-events: none;
  }

  .feature-shot.is-revealing img {
    animation: none;
  }
}

.about-product,
.about-story {
  display: grid;
  align-items: center;
  gap: 40px 48px;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}

.about-product {
  grid-template-columns: minmax(180px, 0.75fr) minmax(0, 1.25fr);
  grid-template-areas: "visual copy";
  max-width: 980px;
}

.about-product-visual {
  grid-area: visual;
}

.about-product-copy {
  grid-area: copy;
}

.about-story {
  grid-template-columns: minmax(0, 1.15fr) minmax(180px, 0.85fr);
  overflow: visible;
}

.about-product-copy,
.about-story-copy {
  text-align: left;
}

.about-product-copy h2,
.about-story-copy h2 {
  font-size: 22px;
  font-weight: 700;
  color: #111111;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  text-align: left;
}

.about-product-copy {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-product-copy h2 {
  margin-bottom: 0;
}

.about-story-text {
  margin: 0;
  font-size: 16px;
  line-height: 1.55;
  color: #4b5563;
  width: max-content;
  max-width: 100%;
}

.about-story-text span {
  display: block;
  white-space: nowrap;
}

.about-product-visual,
.about-story-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
}

.about-story-visual {
  overflow: visible;
  margin-bottom: -8px;
}

.product-stack-stage {
  width: 220px;
  height: 180px;
  overflow: visible;
  filter: drop-shadow(0 6px 10px rgba(74, 154, 239, 0.18));
}

.product-stack-layer,
.product-stack-top {
  transform-box: fill-box;
  transform-origin: center;
}

.product-stack-layer--3 {
  animation: product-stack-float 4.8s ease-in-out infinite;
}

.product-stack-layer--2 {
  animation: product-stack-float 4.8s ease-in-out 0.15s infinite;
}

.product-stack-layer--1 {
  animation: product-stack-float 4.8s ease-in-out 0.3s infinite;
}

.product-stack-top {
  animation: product-stack-float 4.8s ease-in-out 0.45s infinite;
}

@keyframes product-stack-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .product-stack-layer,
  .product-stack-top {
    animation: none !important;
  }
}

.story-plane-stage {
  width: 240px;
  height: 160px;
  margin-left: -12px;
  overflow: visible;
  filter: drop-shadow(0 6px 10px rgba(74, 154, 239, 0.22));
}

.story-flight--mobile {
  display: none;
}

.story-trail-path {
  stroke-dasharray: 5 8;
  animation: story-trail-dash-reverse 1.4s linear infinite;
}

.story-trail-path--desktop {
  animation-name: story-trail-dash;
}

@keyframes story-trail-dash {
  to {
    stroke-dashoffset: -26;
  }
}

@keyframes story-trail-dash-reverse {
  to {
    stroke-dashoffset: 26;
  }
}

@media (prefers-reduced-motion: reduce) {
  .story-trail-path {
    animation: none !important;
  }

  .story-plane {
    opacity: 1;
    transform: translate(100px, 120px) rotate(90deg);
  }

  .story-plane animate,
  .story-plane animateMotion {
    display: none;
  }
}

.about-block {
  max-width: 640px;
  margin: 0 auto;
  width: 100%;
}

.about-block h2 {
  font-size: 22px;
  font-weight: 700;
  color: #111111;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  text-align: center;
}

.about-block p {
  font-size: 16px;
  line-height: 1.65;
  color: #4b5563;
  margin-bottom: 12px;
}

.about-block p:last-child {
  margin-bottom: 0;
}

.about-block-lead {
  text-align: center;
  font-size: 15px !important;
  color: #6b7280 !important;
  margin-bottom: 28px !important;
}

.about-block--team {
  max-width: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 24px;
}

.about-block--team > h2,
.about-block--team > .about-block-lead {
  max-width: 640px;
}

.team-social.is-inactive,
.team-join-cta.is-inactive {
  pointer-events: none;
  cursor: default;
  opacity: 0.55;
}

.team-join-cta.is-inactive {
  display: inline-flex;
}

.team-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  width: 100%;
  max-width: 820px;
  margin: 0 auto;
}

@media (min-width: 901px) {
  .team-grid {
    grid-template-columns: repeat(4, minmax(240px, 1fr));
    max-width: 1100px;
    gap: 24px;
  }
}

.team-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  padding: 32px 28px 28px;
  min-width: 0;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(80, 90, 140, 0.06);
}

.team-avatar {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: #e8eef5;
  display: grid;
  place-items: center;
  overflow: hidden;
  margin-bottom: 6px;
}

.team-avatar img,
.team-avatar > svg {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
}

.team-name {
  font-size: 20px;
  font-weight: 700;
  color: #111111;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.team-role {
  font-size: 14px;
  font-weight: 500;
  color: #6b7280;
}

.team-bio {
  font-size: 13px;
  line-height: 1.4;
  color: #9ca3af;
  white-space: nowrap;
}

.team-socials {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 8px;
}

.team-social {
  display: inline-flex;
  color: #111111;
  transition: color 0.15s ease, opacity 0.15s ease;
}

.team-social:hover {
  color: #007bff;
}

.team-hiring {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-top: 48px;
  width: 100%;
}

.team-hiring-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #007bff;
}

.team-hiring-copy {
  font-size: 15px;
  line-height: 1.5;
  color: #6b7280;
  text-align: center;
  max-width: 42ch;
  margin-bottom: 8px;
}

.team-card--skeleton {
  pointer-events: none;
  border-style: dashed;
  background: rgba(255, 255, 255, 0.72);
}

.team-skel {
  background: linear-gradient(90deg, #e5e7eb 0%, #f3f4f6 50%, #e5e7eb 100%);
  background-size: 200% 100%;
  animation: team-skel-shimmer 1.6s ease-in-out infinite;
  border-radius: 8px;
}

.team-avatar.team-skel {
  border-radius: 50%;
  width: 88px;
  height: 88px;
}

.team-skel-line {
  height: 12px;
  width: 70%;
}

.team-skel-name {
  width: 58%;
  height: 16px;
  margin-top: 4px;
}

.team-skel-role {
  width: 46%;
  height: 12px;
}

.team-skel-bio {
  width: 78%;
  height: 10px;
}

.team-skel-socials {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.team-skel-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
}

.team-join-cta {
  margin-top: 8px;
  text-decoration: none;
}

@keyframes team-skel-shimmer {
  0% {
    background-position: 100% 0;
  }
  100% {
    background-position: -100% 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .team-skel {
    animation: none;
  }
}

@media (max-width: 900px) {
  .about-section {
    padding: 48px 16px 80px;
  }

  .about-shell {
    gap: 40px;
  }

  .about-intro h1 {
    font-size: 32px;
  }

  .about-feature-carousel {
    max-width: 100%;
    margin-top: 10px;
    --carousel-stage-w: 220px;
    --carousel-stage-h: 180px;
    --carousel-depth: 115px;
    perspective: 900px;
    gap: 18px;
  }

  .feature-carousel-stage {
    width: var(--carousel-stage-w);
    height: var(--carousel-stage-h);
  }

  .feature-shot:nth-child(1) {
    transform: rotateY(0deg) translateZ(var(--carousel-depth));
  }

  .feature-shot:nth-child(2) {
    transform: rotateY(120deg) translateZ(var(--carousel-depth));
  }

  .feature-shot:nth-child(3) {
    transform: rotateY(240deg) translateZ(var(--carousel-depth));
  }

  .feature-shot-label {
    margin-bottom: 8px;
    font-size: 10px;
  }

  .feature-shot-frame {
    border-radius: 5px;
  }

  .feature-shot-expand {
    right: 6px;
    bottom: 6px;
    width: 24px;
    height: 24px;
    border-radius: 5px;
  }

  .feature-shot-expand svg {
    width: 12px;
    height: 12px;
  }

  .feature-lightbox {
    padding: 12px;
  }

  .feature-lightbox-panel {
    width: min(96vw, 1080px);
    padding: 14px 12px 12px;
    gap: 10px;
  }

  .feature-lightbox-stage {
    gap: 4px;
  }

  .feature-lightbox-arrow {
    width: 28px;
    height: 28px;
  }

  .about-product,
  .about-story {
    grid-template-columns: 1fr;
    grid-template-areas: none;
    gap: 20px;
    max-width: 520px;
  }

  .about-product-visual,
  .about-product-copy,
  .about-story-copy,
  .about-story-visual {
    grid-area: auto;
  }

  .about-product-visual,
  .about-story-visual {
    min-height: 0;
  }

  .about-product-visual {
    margin-top: 4px;
    margin-bottom: -12px;
  }

  .about-story {
    gap: 12px;
    overflow: visible;
  }

  .about-product-copy {
    text-align: center;
    align-items: center;
  }

  .about-product-copy h2 {
    text-align: center;
  }

  .about-story-copy {
    text-align: center;
  }

  .about-story-copy h2 {
    text-align: center;
  }

  .product-stack-stage {
    width: 180px;
    height: 150px;
  }

  .about-story-visual {
    overflow: visible;
    margin-bottom: 20px;
  }

  .story-plane-stage {
    width: 200px;
    height: 140px;
    margin-left: 0;
    margin-bottom: 0;
    overflow: visible;
  }

  .story-flight--desktop {
    display: none;
  }

  .story-flight--mobile {
    display: inline;
  }

  .about-block h2 {
    font-size: 20px;
  }

  .about-block p {
    font-size: 15px;
  }

  .about-story-text {
    font-size: min(15px, calc((100vw - 32px) / 32));
    width: max-content;
    max-width: none;
    margin-inline: auto;
  }

  .about-story-text span {
    white-space: nowrap;
  }

  .about-lead,
  .page-lead {
    font-size: min(15px, calc((100vw - 32px) / 34));
    width: max-content;
    max-width: none;
  }

  .about-lead span,
  .page-lead span {
    white-space: nowrap;
  }

  .team-grid {
    grid-template-columns: 1fr;
    max-width: 360px;
    margin: 0 auto;
  }
}

@media (max-width: 640px) {
  .about-intro h1 {
    font-size: 28px;
  }

  .about-block p {
    font-size: 14px;
  }

  .team-card {
    padding: 28px 20px 24px;
  }

  .team-name {
    font-size: 18px;
  }
}

/* Pricing page */


.pg-pricing-section {
  position: relative;
  z-index: 1;
  flex: 1;
  width: 100%;
  padding: 72px 24px 100px;
}

.pg-pricing-shell {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.pg-pricing-intro {
  text-align: center;
  max-width: 720px;
}

.pg-pricing-intro h1 {
  font-size: 40px;
  font-weight: 700;
  color: #111111;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 14px;
}

.pg-pricing-billing {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border-radius: 10px;
  background: #eef1f6;
}

.pg-pricing-billing-btn {
  appearance: none;
  border: none;
  background: transparent;
  color: #6b7280;
  font: inherit;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 18px;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.pg-pricing-billing-btn.is-active {
  background: #ffffff;
  color: #111111;
  box-shadow: 0 1px 4px rgba(17, 24, 39, 0.08);
}

.pg-pricing-billing-btn:focus-visible {
  outline: 2px solid #4a9aef;
  outline-offset: 2px;
}

.pg-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  width: 100%;
  align-items: start;
  margin-top: 12px;
}

.pg-pricing-card {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 28px 24px 30px;
  background: #ffffff;
  border: 1px solid #e8ecf1;
  border-radius: 12px;
  box-shadow: 0 12px 32px rgba(80, 90, 140, 0.08);
}

/* The landing section centers its heading, so opt the cards back out */
.pricing-section .pg-pricing-card {
  text-align: left;
}

[data-pricing-enterprise] .pg-pricing-features {
  flex: 1;
}

.pg-pricing-card--featured {
  margin-top: -24px;
  margin-bottom: -24px;
  padding: 52px 26px 54px;
  background: linear-gradient(165deg, #6eb3f5 0%, #4a9aef 45%, #2f78d6 100%);
  border-color: transparent;
  color: #ffffff;
  box-shadow: 0 20px 44px rgba(47, 120, 214, 0.3);
}

.pg-pricing-card--featured .pg-pricing-features {
  flex: 1;
}

.pg-pricing-plan {
  margin: 0 0 12px;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #111111;
}

.pg-pricing-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  color: #6b7280;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1.2;
}

.pg-pricing-badge img {
  display: block;
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  opacity: 0.85;
}

/* Blue counterpart to the grey info line above the grid, centered in each card */
.pg-pricing-scope {
  align-self: center;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 0 0 16px;
  padding: 0;
  color: #2f78d6;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.2;
}

.pg-pricing-scope svg {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
}

/* Blue on the featured card's blue gradient wouldn't read */
.pg-pricing-card--featured .pg-pricing-scope {
  margin-top: -14px;
  color: #ffffff;
}

.pg-pricing-card--featured .pg-pricing-plan {
  color: #ffffff;
}

.pg-pricing-price-block {
  margin: 0 0 18px;
}

.pg-pricing-price {
  margin: 0;
  display: flex;
  align-items: baseline;
  gap: 6px;
  line-height: 1;
}

.pg-pricing-amount {
  font-size: 42px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #111111;
}

.pg-pricing-amount:not([data-price-monthly]) {
  font-size: 34px;
}

.pg-pricing-period {
  font-size: 15px;
  font-weight: 400;
  color: #6b7280;
}

.pg-pricing-note {
  margin: 8px 0 0;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.35;
  color: #9ca3af;
}

.pg-pricing-card--featured .pg-pricing-amount,
.pg-pricing-card--featured .pg-pricing-period {
  color: #ffffff;
}

.pg-pricing-card--featured .pg-pricing-note {
  color: rgba(255, 255, 255, 0.78);
}

.pg-pricing-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 46px;
  padding: 11px 16px;
  border-radius: 10px;
  border: none;
  background: linear-gradient(180deg, #7bb8f8 0%, #4a9aef 100%);
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(74, 154, 239, 0.28);
  transition: transform 0.15s ease, filter 0.15s ease, box-shadow 0.15s ease;
}

.pg-pricing-cta:hover {
  transform: translateY(-1px);
  filter: brightness(1.03);
  box-shadow: 0 10px 24px rgba(74, 154, 239, 0.36);
}

.pg-pricing-card--featured .pg-pricing-cta {
  background: #ffffff;
  color: #2f78d6;
  box-shadow: 0 8px 20px rgba(17, 24, 39, 0.1);
}

.pg-pricing-card--featured .pg-pricing-cta:hover {
  background: #f3f8ff;
  color: #2563b8;
  filter: none;
}

.pg-pricing-divider {
  width: 100%;
  height: 1px;
  margin: 22px 0 16px;
  border: none;
  background: #e5e7eb;
}

.pg-pricing-card--featured .pg-pricing-divider {
  background: rgba(255, 255, 255, 0.28);
}

.pg-pricing-included {
  margin: 0 0 14px;
  font-size: 14px;
  font-weight: 700;
  color: #111111;
}

.pg-pricing-card--featured .pg-pricing-included {
  color: #ffffff;
}

.pg-pricing-features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pg-pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.4;
  color: #374151;
}

.pg-pricing-features li::before {
  content: "";
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 1px;
  border-radius: 50%;
  background-color: #4a9aef;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M3.5 8.2L6.4 11.1L12.5 4.9' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 11px 11px;
}

.pg-pricing-card--featured .pg-pricing-features li {
  color: rgba(255, 255, 255, 0.96);
}

.pg-pricing-card--featured .pg-pricing-features li::before {
  background-color: #ffffff;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M3.5 8.2L6.4 11.1L12.5 4.9' stroke='%232f78d6' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

@media (max-width: 960px) {
  .pg-pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
    align-items: stretch;
    gap: 24px;
  }

  .pg-pricing-card--featured {
    order: -1;
    margin-top: 0;
    margin-bottom: 0;
    padding: 28px 24px 30px;
  }

  /* Stacked cards share the same padding, so the desktop nudge isn't needed */
  .pg-pricing-card--featured .pg-pricing-scope {
    margin-top: 0;
  }
}

@media (max-width: 900px) {
  .pg-pricing-section {
    padding: 48px 16px 80px;
  }

  .pg-pricing-intro h1 {
    font-size: 32px;
  }

  .pg-pricing-shell {
    gap: 28px;
  }
}

@media (max-width: 640px) {
  .pg-pricing-intro h1 {
    font-size: 28px;
  }

  .pg-pricing-amount {
    font-size: 36px;
  }

  .pg-pricing-card,
  .pg-pricing-card--featured {
    padding: 24px 20px 26px;
  }
}

/* ===== Landing page responsive pass ===== */
@media (max-width: 1200px) {
    .nav-container {
        padding: 1.25rem 20px;
    }
}

@media (max-width: 1024px) {
    .feature-card-grid {
        gap: 20px;
    }

    .int-node {
        width: clamp(42px, 6vw, 62px);
        height: clamp(26px, 3.6vw, 36px);
    }

    .int-node--icon {
        height: clamp(34px, 4.4vw, 44px);
    }
}

/* Nav collapses into a panel under the header */
@media (max-width: 900px) {
    .nav-container {
        position: relative;
        padding: 1rem 20px;
    }

    .nav-toggle {
        display: inline-flex;
    }

    .nav-menu {
        display: none;
        position: absolute;
        left: 0;
        right: 0;
        top: 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
        padding: 18px 20px 22px;
        background: #ffffff;
        border-top: 1px solid rgba(17, 24, 39, 0.08);
        box-shadow: 0 18px 32px rgba(17, 24, 39, 0.1);
    }

    header.nav-open .nav-menu {
        display: flex;
    }

    /* Solid white while open so the panel and bar read as one surface */
    header.nav-open,
    .pg-page header.nav-open {
        background-color: #ffffff;
    }

    .nav-links {
        flex-direction: column;
        gap: 2px;
    }

    .nav-links a {
        display: block;
        padding: 12px 4px;
        font-size: 16px;
    }

    .nav-buttons {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 10px;
        margin-top: 14px;
    }

    .nav-buttons .login-btn,
    .nav-buttons .get-started-btn {
        flex: 1 1 0;
        margin-left: 0;
        padding: 11px 14px;
        font-size: 14px;
        white-space: nowrap;
        text-align: center;
    }

    .nav-buttons .login-btn {
        border-color: rgba(17, 24, 39, 0.14);
    }

    .logo {
        font-size: 21px;
    }
}

@media (max-width: 1000px) {
    .hero-section {
        padding-top: 64px;
        min-height: 0;
    }

    .hero-content {
        gap: 22px;
        padding-inline: 20px;
    }

    .hero-buttons {
        flex-wrap: wrap;
        justify-content: center;
        margin-bottom: 44px;
    }

    .logo-container {
        margin-top: 40px;
        margin-bottom: 64px;
    }
}

/* Phones: tighten the stack above the dashboard so the image sits higher and the
   scroll arrow lands inside the first screen instead of below the fold */
@media (max-width: 640px) {
    .hero-content {
        gap: 18px;
    }

    .hero-buttons {
        margin-bottom: 26px;
    }
}

@media (max-width: 560px) {
    .logo-banner-set {
        gap: 14px;
        padding-right: 14px;
    }

    .logo-banner-set img {
        width: 112px;
    }
}

@media (max-width: 560px) {
    .features-final-content .section-heading h2,
    .spreadsheets-content h2,
    .portfolio-content h2,
    .testimonials-content h2,
    .pricing-content h2,
    .faq-shell h2,
    .integrations-band-inner h2,
    .marvin-content h2 {
        font-size: 27px;
    }

    .section-eyebrow {
        font-size: 11px;
    }

    .ui-card {
        max-width: 100%;
    }

    .portfolio-visual {
        height: 200px;
    }

    .portfolio-visual img {
        transform: translateY(-38px) rotateX(48deg) rotateZ(-38deg);
    }

    .orbit-card--leaderboard,
    .orbit-card--spotlight,
    .orbit-card--rewards,
    .orbit-card--progress {
        width: min(300px, 88vw);
    }

    .final-cta-avatars img,
    .final-cta-count {
        width: 38px;
        height: 38px;
    }
}

/* ===== Mobile-only copy swaps (desktop untouched) ===== */
.lead-narrow {
    display: none;
}

@media (max-width: 640px) {
    .lead-wide {
        display: none;
    }

    .lead-narrow {
        display: inline;
    }
}

/* Mobile: keep both CTAs on one line like desktop, just scaled down */
@media (max-width: 640px) {
    .hero-buttons,
    .final-cta-buttons {
        flex-direction: row;
        flex-wrap: nowrap;
        align-items: center;
        justify-content: center;
        gap: 10px;
        width: auto;
    }

    .hero-buttons .get-started-btn,
    .hero-buttons .book-demo-btn,
    .final-cta-buttons .get-started-btn,
    .final-cta-buttons .book-demo-btn {
        width: auto;
        max-width: none;
        margin-left: 0;
        padding: 11px 14px;
        font-size: 14px;
        white-space: nowrap;
        text-align: center;
        justify-content: center;
    }
}

@media (max-width: 380px) {
    .hero-buttons .get-started-btn,
    .hero-buttons .book-demo-btn,
    .final-cta-buttons .get-started-btn,
    .final-cta-buttons .book-demo-btn {
        padding: 10px 12px;
        font-size: 13px;
    }

    .final-cta-arrow {
        width: 15px;
    }
}

@media (max-width: 640px) {
    /* One line above the marquee, no wrap */
    .logo-banner-text {
        font-size: 13px;
        white-space: nowrap;
        margin-bottom: 12px;
    }

}

/* Bare icon, no boxed container, wherever the hamburger shows */
@media (max-width: 900px) {
    .nav-toggle {
        width: auto;
        height: auto;
        padding: 6px 2px;
        border: none;
        background: none;
    }
}

@media (max-width: 380px) {
    .logo-banner-text {
        font-size: 11.5px;
    }
}

/* The 900px rule flattens heading line breaks; the mobile copy needs its own */
@media (max-width: 640px) {
    .marvin-content h2 .lead-narrow br,
    .integrations-band-inner h2 .lead-narrow br,
    .integrations-band-lead .lead-narrow br,
    .lead-narrow br {
        display: inline;
    }
}

/* ===== Gamification on mobile: copy wraps, cards scatter in a square ===== */
@media (max-width: 900px) {
    .orbit-center h2 {
        /* The desktop nowrap runs off the side of a phone */
        white-space: normal;
        font-size: clamp(23px, 7.4vw, 30px);
        max-width: 19ch;
        margin: 0 auto;
    }

    .gamification-lead {
        max-width: 30ch;
    }

    .orbit-scene {
        gap: 26px;
    }

    /* Square, invisible container: four quadrants, each holding one card */
    .orbit-spinner {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 1fr 1fr;
        align-items: center;
        justify-items: center;
        gap: 8px;
        width: min(100%, 460px);
        aspect-ratio: 1;
        margin: 0 auto;
    }

    .orbit-slot {
        width: 100%;
        height: 100%;
        align-items: center;
    }

    /* zoom shrinks the layout box as well as the paint, so the cards keep their
       desktop proportions instead of overflowing their quadrant */
    .orbit-slot > .orbit-card {
        zoom: 0.5;
    }

    /* Offsets and tilts break up the grid so the cards read as scattered */
    .orbit-slot:nth-child(1) > .orbit-card {
        transform: translate(-3%, -7%) rotate(-5deg);
    }

    .orbit-slot:nth-child(2) > .orbit-card {
        transform: translate(12%, -16%) rotate(7deg);
    }

    .orbit-slot:nth-child(3) > .orbit-card {
        transform: translate(-9%, 9%) rotate(4deg);
    }

    .orbit-slot:nth-child(4) > .orbit-card {
        transform: translate(7%, 12%) rotate(-6deg);
    }

    /* Fixed widths, not viewport widths: the compact podium and table inside the
       leaderboard card are sized in fixed px, so a vw-based card lets them spill
       out past the card edge. zoom alone does the shrinking. */
    .orbit-card--leaderboard {
        width: 300px;
    }

    .orbit-card--spotlight {
        width: 260px;
    }

    .orbit-card--rewards {
        width: 250px;
    }

    .orbit-card--progress {
        width: 190px;
    }

    /* Restore the desktop podium and table inside the scattered card */
    .orbit-card .podium {
        grid-template-columns: 1fr 1.15fr 1fr;
        gap: 4px;
        max-width: none;
    }

    .orbit-card .podium-slot--1 {
        order: 0;
    }

    .orbit-card .podium-block {
        transform: perspective(500px) rotateX(8deg);
    }

    .orbit-card .podium-slot--2 .podium-block-face {
        min-height: 44px;
    }

    .orbit-card .podium-slot--1 .podium-block-face {
        min-height: 58px;
    }

    .orbit-card .podium-slot--3 .podium-block-face {
        min-height: 38px;
    }

    .orbit-card .lb-table-head,
    .orbit-card .lb-row {
        grid-template-columns: 36px minmax(0, 1fr) 58px;
        padding: 7px 8px;
    }
}

/* ===== Features page (Finexa-style overview) ===== */
.fp-page {
  background: #ffffff;
}

.fp-shell {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

.fp-shell--narrow {
  max-width: 820px;
}

.fp-hero {
  padding: 72px 0 0;
  text-align: center;
  background-color: #2E5CFF1A;
}

.fp-hero h1 {
  font-size: 40px;
  font-weight: 700;
  color: #111111;
  letter-spacing: -0.02em;
  line-height: 1.2;
  max-width: none;
  margin: 0 auto;
  white-space: nowrap;
}

.fp-hero-lead {
  margin: 18px auto 0;
  max-width: 560px;
  font-size: 17px;
  line-height: 1.6;
  color: #4b5563;
}

.fp-hero-stage {
  margin-top: 48px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 36px;
  align-items: center;
  text-align: left;
  padding: 36px 40px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 24px;
  box-shadow: 0 16px 40px rgba(80, 90, 140, 0.08);
}

.fp-branch {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(80px, 1fr) auto;
  align-items: center;
  gap: 0;
  min-height: 336px;
  padding: 12px 0;
}

.fp-branch-hub {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px 12px 12px;
  border-radius: 999px;
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(24, 24, 27, 0.08);
}

.fp-branch-hub-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #2e5cff;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  line-height: 0;
}

.fp-branch-hub-icon svg {
  width: 15px;
  height: 18px;
  display: block;
  margin: 0 auto;
}

.fp-branch-hub-label {
  font-size: 16px;
  font-weight: 700;
  color: #111111;
  letter-spacing: -0.02em;
}

.fp-branch-hub-dot {
  position: absolute;
  right: -5px;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ffffff;
  border: 2px solid #2e5cff;
  box-shadow: 0 0 0 3px rgba(46, 92, 255, 0.12);
}

.fp-branch-lines {
  width: 100%;
  height: 336px;
  display: block;
}

.fp-branch-leaves {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 336px;
  z-index: 2;
}

.fp-branch-leaves li {
  padding: 0 22px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(24, 24, 27, 0.07);
  font-size: 15px;
  font-weight: 600;
  color: #111111;
  white-space: nowrap;
  min-width: 148px;
}

.fp-hero-widget {
  position: relative;
  padding-bottom: 28px;
}

.fp-hero-widget-panel {
  background: #f3f4f6;
  border-radius: 28px;
  padding: 18px 18px 48px;
  box-shadow: 0 22px 48px rgba(24, 24, 27, 0.1);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.fp-hero-widget-row {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 6px 16px rgba(24, 24, 27, 0.04);
}

.fp-hero-widget-row--faded {
  opacity: 0.45;
}

.fp-hero-widget-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
}

.fp-hero-widget-icon svg {
  width: 20px;
  height: 20px;
}

.fp-hero-widget-icon--blue {
  background: #2e5cff;
}

.fp-hero-widget-icon--sky {
  background: #5b9dff;
}

.fp-hero-widget-icon--muted {
  background: #94a3b8;
}

.fp-hero-widget-name {
  font-size: 16px;
  font-weight: 700;
  color: #111111;
}

.fp-hero-widget-metric {
  text-align: right;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.fp-hero-widget-metric strong {
  font-size: 18px;
  font-weight: 700;
  color: #111111;
  letter-spacing: -0.02em;
}

.fp-hero-widget-metric small {
  font-size: 12px;
  color: #9ca3af;
}

.fp-hero-widget-cta {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-radius: 999px;
  background: linear-gradient(90deg, #2e5cff 0%, #4f6fff 55%, #6b8cff 100%);
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 14px 28px rgba(46, 92, 255, 0.35);
}

.fp-hero-widget-cta-plus {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.85);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 1;
  flex-shrink: 0;
}

.fp-hero-widget-cta span:nth-child(2) {
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.fp-hero-widget-cta-send {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.fp-hero-widget-cta-intel {
  width: 18px;
  height: 16px;
  flex-shrink: 0;
  display: block;
  object-fit: contain;
}

.fp-trust-banner {
  margin-top: 88px;
  width: 100%;
  padding: 40px 0 44px;
  background-color: #f9fafb;
  border-top: 1px solid #eaecf0;
  text-align: center;
}

.fp-trust-line {
  margin: 0 auto 28px;
  max-width: 580px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
  color: #667085;
}

.fp-trust-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 28px 56px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.fp-trust-logos li {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 36px;
}

.fp-trust-logos img {
  display: block;
  height: 28px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  filter: brightness(0) invert(58%);
}

.fp-trust-logos img.fp-trust-logo--pregrey {
  filter: none;
  height: 34px;
  max-width: 170px;
}

.fp-rows {
  padding: 88px 0;
  background: #ffffff;
}

.fp-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: 48px;
  align-items: center;
  margin-bottom: 72px;
  scroll-margin-top: 96px;
}

.fp-row:last-child {
  margin-bottom: 0;
}

.fp-row--flip {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
}

.fp-row-copy {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.fp-point {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.fp-point-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #eef3ff;
  color: #2e5cff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.fp-point-icon svg {
  width: 20px;
  height: 20px;
}

.fp-point h3 {
  margin: 0 0 6px;
  font-size: 18px;
  font-weight: 700;
  color: #111111;
  letter-spacing: -0.02em;
}

.fp-point p {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: #4b5563;
}

.fp-row-visual {
  border-radius: 24px;
  padding: 28px;
  border: 1px solid transparent;
  box-shadow: 0 14px 36px rgba(80, 90, 140, 0.08);
}

.fp-row-visual img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(24, 24, 27, 0.06);
}

.fp-row-visual--warm {
  background: linear-gradient(180deg, #fff4e8 0%, #ffe8d4 100%);
}

.fp-row-visual--cool {
  background: linear-gradient(180deg, #f0eaff 0%, #e4dbff 100%);
}

.fp-row-visual--blue {
  background: linear-gradient(180deg, #e8f0ff 0%, #d6e4ff 100%);
}

.fp-promise {
  padding: 88px 0;
  background: #f8faff;
  text-align: center;
}

.fp-promise h2,
.fp-faq h2,
.fp-tools-dome h2,
.fp-insights-heading h2 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  color: #111111;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 0 0 16px;
}

.fp-faq h2 {
  margin-bottom: 36px;
}

.fp-tools-dome h2,
.fp-insights-heading h2 {
  margin: 0;
}

.fp-promise-lead {
  margin: 0 auto 40px;
  max-width: 640px;
  font-size: 17px;
  line-height: 1.6;
  color: #4b5563;
}

.fp-promise-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 48px 80px;
  margin: 48px auto 0;
}

.fp-promise-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.fp-promise-stat strong {
  font-size: clamp(40px, 5vw, 52px);
  font-weight: 700;
  color: #344054;
  letter-spacing: -0.03em;
  line-height: 1;
}

.fp-promise-stat span {
  font-size: 15px;
  font-weight: 500;
  color: #667085;
}

.fp-promise-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  text-align: left;
}

.fp-promise-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 28px 26px 30px;
  background:
    linear-gradient(180deg, #ffffff 0%, #f8faff 100%);
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  box-shadow: 0 10px 28px rgba(80, 90, 140, 0.06);
  overflow: hidden;
}

.fp-promise-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #2e5cff 0%, #6b8cff 100%);
}

.fp-promise-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #eef3ff;
  color: #2e5cff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.fp-promise-icon svg {
  width: 22px;
  height: 22px;
}

.fp-promise-index {
  position: absolute;
  top: 24px;
  right: 22px;
  margin: 0;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #b6c4e0;
}

.fp-promise-card h3 {
  margin: 4px 0 0;
  font-size: 19px;
  font-weight: 700;
  color: #111111;
  letter-spacing: -0.02em;
  line-height: 1.3;
}

.fp-promise-card > p:last-child {
  margin: 0;
  font-size: 15px;
  line-height: 1.65;
  color: #4b5563;
}

.fp-faq {
  padding: 88px 0;
  background: #ffffff;
  text-align: center;
}

.fp-faq-list {
  text-align: left;
}

.fp-faq-more {
  display: inline-flex;
  margin-top: 28px;
  color: #007bff;
  font-weight: 600;
  font-size: 15px;
}

.fp-integrations {
  padding: 72px 0 0;
  background: #ffffff;
  text-align: center;
  overflow: hidden;
}

.fp-integrations-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1280px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
}

.fp-tools-hub {
  position: relative;
  width: min(100%, 900px);
  z-index: 2;
  margin-bottom: -18px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.fp-tools-icons {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
  max-width: 900px;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0;
  justify-items: center;
  position: relative;
  z-index: 2;
}

.fp-tools-icon {
  width: 76px;
  height: 76px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid #e8edf5;
  box-shadow: 0 10px 28px rgba(46, 92, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
}

.fp-tools-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: scale(1.12);
}

.fp-tools-icon--yardi {
  border-color: rgba(0, 123, 255, 0.28);
}

.fp-tools-icon--realpage {
  border-color: rgba(46, 92, 255, 0.28);
}

.fp-tools-icon--appfolio {
  border-color: rgba(59, 130, 246, 0.3);
}

.fp-tools-icon--entrata {
  border-color: rgba(37, 99, 235, 0.28);
}

.fp-tools-icon--sharepoint {
  border-color: rgba(3, 120, 124, 0.35);
}

.fp-tools-icon--excel {
  border-color: rgba(33, 115, 70, 0.35);
}

.fp-tools-connectors {
  width: 100%;
  max-width: 900px;
  margin-top: -6px;
  margin-bottom: -6px;
  line-height: 0;
}

.fp-tools-lines {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 900 / 176;
  color: #b6c8f5;
  pointer-events: none;
}

.fp-tools-lines path {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.35;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

.fp-tools-ask {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: -10px;
  padding: 10px 22px;
  border-radius: 999px;
  background: #2E5CFF;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.01em;
  box-shadow: 0 10px 24px rgba(46, 92, 255, 0.35);
  white-space: nowrap;
}

.fp-tools-dome {
  position: relative;
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding: 100px 28px 72px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background:
    radial-gradient(ellipse 65% 50% at 50% 10%, rgba(46, 92, 255, 0.16) 0%, rgba(46, 92, 255, 0.06) 45%, transparent 72%),
    linear-gradient(180deg, #f3f6ff 0%, #eef3ff 52%, #ffffff 100%);
  border-radius: 50% 50% 0 0 / 48% 48% 0 0;
}

.fp-tools-dome::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background-image: radial-gradient(rgba(46, 92, 255, 0.28) 1.35px, transparent 1.45px);
  background-size: 20px 20px;
  mask-image: radial-gradient(ellipse 62% 58% at 50% 22%, #000 0%, transparent 78%);
  opacity: 0.55;
  pointer-events: none;
}

.fp-tools-dome h2 {
  position: relative;
  max-width: 640px;
  margin: 0 0 14px;
}

.fp-integrations-lead {
  position: relative;
  margin: 0 auto 28px;
  max-width: 460px;
  font-size: 16px;
  line-height: 1.55;
  color: #6b7280;
}

.fp-int-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 999px;
  border: 1px solid #e5e7eb;
  background: #ffffff;
  color: #1f2937;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  box-shadow:
    0 12px 28px rgba(46, 92, 255, 0.12),
    0 2px 6px rgba(15, 23, 42, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.fp-int-cta:hover {
  transform: translateY(-1px);
  box-shadow:
    0 16px 32px rgba(46, 92, 255, 0.16),
    0 2px 6px rgba(15, 23, 42, 0.05);
}

.fp-resources {
  padding: 88px 0 100px;
  background: #ffffff;
  text-align: center;
}

.fp-insights-heading {
  max-width: 520px;
  margin: 0 auto 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.fp-insights-heading .section-eyebrow {
  margin: 0;
}

.fp-insights-heading h2 {
  margin: 0;
}

.fp-insights-lead {
  margin: 0;
  max-width: 480px;
  font-size: 16px;
  line-height: 1.55;
  color: #6b7280;
}

.fp-resource-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  text-align: left;
}

.fp-resource-card {
  display: flex;
  flex-direction: column;
  border-radius: 20px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #eef0f4;
  box-shadow: 0 12px 32px rgba(46, 92, 255, 0.06);
  color: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.fp-resource-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(46, 92, 255, 0.12);
}

.fp-resource-media {
  position: relative;
  overflow: hidden;
}

.fp-resource-media img {
  display: block;
  width: 100%;
  height: 200px;
  object-fit: cover;
  background: #eef3ff;
}

.fp-resource-tag {
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 5px 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: #4b5563;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.2;
  border: 1px solid rgba(229, 231, 235, 0.9);
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.06);
}

.fp-resource-body {
  padding: 22px 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.fp-resource-body h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  color: #111111;
  letter-spacing: -0.02em;
  line-height: 1.3;
}

.fp-resource-body > p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: #6b7280;
  flex: 1;
}

.fp-resource-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 12px;
}

.fp-resource-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 16px;
  border-radius: 999px;
  background: #f3f4f6;
  color: #1f2937;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.fp-resource-more:hover {
  background: #2E5CFF1A;
  color: #007bff;
}

.fp-resource-time {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #9ca3af;
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
}

.fp-resource-time svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

.fp-page .final-cta-inner {
  padding: 28px 0;
}

/* Blog */
.blog-index {
  padding: 72px 24px 100px;
  background: #ffffff;
}

.blog-index-shell {
  max-width: 1120px;
  margin: 0 auto;
  text-align: center;
}

.blog-index-shell h1 {
  margin: 0;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  color: #111111;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.blog-index-grid {
  margin-top: 8px;
  text-align: left;
}

.blog-article {
  padding: 48px 24px 96px;
  background: #ffffff;
}

.blog-article-shell {
  max-width: 720px;
  margin: 0 auto;
}

.blog-back {
  display: inline-flex;
  margin-bottom: 28px;
  color: #007bff;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

.blog-back:hover {
  text-decoration: underline;
}

.blog-article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  margin: 0 0 16px;
  color: #6b7280;
  font-size: 13px;
  font-weight: 500;
}

.blog-article-meta span:first-child {
  color: #007bff;
  font-weight: 600;
}

.blog-article-shell > h1 {
  margin: 0 0 14px;
  font-size: clamp(30px, 4vw, 42px);
  font-weight: 700;
  color: #111111;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.blog-article-dek {
  margin: 0 0 28px;
  font-size: 18px;
  line-height: 1.55;
  color: #4b5563;
}

.blog-article-hero {
  margin: 0 0 36px;
  border-radius: 18px;
  overflow: hidden;
  background: #eef3ff;
  border: 1px solid #eef0f4;
}

.blog-article-hero img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 360px;
  object-fit: cover;
}

.blog-article-body {
  font-size: 17px;
  line-height: 1.7;
  color: #374151;
}

.blog-article-body h2 {
  margin: 32px 0 12px;
  font-size: 22px;
  font-weight: 700;
  color: #111111;
  letter-spacing: -0.02em;
}

.blog-article-body p {
  margin: 0 0 16px;
}

.blog-article-cta {
  margin-top: 48px;
  padding: 32px 36px;
  border-radius: 16px;
  background: #f8faff;
  border: 1px solid #e8edf5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  text-align: center;
}

.blog-article-cta p {
  margin: 0;
  max-width: 28ch;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.4;
  color: #111111;
  letter-spacing: -0.01em;
}

.blog-article-cta .get-started-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 12px 22px;
  border-radius: 0.5rem;
  background-color: #2E5CFF;
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  box-shadow: none;
}

.blog-article-cta .get-started-btn:hover {
  background-color: #1f4de0;
}

@media (max-width: 640px) {
  .blog-article-cta {
    padding: 24px 20px;
    gap: 16px;
  }
}

.blog-more {
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid #e5e7eb;
}

.blog-more-title {
  margin: 0 0 12px;
  font-size: 14px;
  font-weight: 700;
  color: #111111;
}

.blog-more ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.blog-more a {
  color: #007bff;
  font-weight: 600;
  text-decoration: none;
}

.blog-more a:hover {
  text-decoration: underline;
}

@media (max-width: 960px) {
  .blog-index-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 960px) {
  .fp-hero h1 {
    font-size: 32px;
    white-space: normal;
  }

  .fp-hero-stage,
  .fp-row,
  .fp-row--flip,
  .fp-promise-grid,
  .fp-resource-grid {
    grid-template-columns: 1fr;
  }

  .fp-hero-stage {
    padding: 24px 20px;
    gap: 28px;
    border-radius: 18px;
  }

  .fp-row--flip .fp-row-visual {
    order: -1;
  }

  .fp-branch {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 18px;
    min-height: 0;
  }

  .fp-branch-lines {
    display: none;
  }

  .fp-branch-leaves {
    width: 100%;
    max-width: 220px;
    height: auto;
    gap: 12px;
  }

  .fp-branch-leaves li {
    min-width: 0;
    height: 44px;
  }

  .fp-hero-widget-cta span:nth-child(2) {
    font-size: 13px;
  }

  .fp-hero {
    padding: 56px 0 0;
  }

  .fp-trust-banner {
    margin-top: 64px;
    padding: 32px 0 36px;
  }

  .fp-trust-logos {
    gap: 20px 28px;
  }

  .fp-trust-logos img {
    height: 24px;
    max-width: 110px;
  }

  .fp-trust-logos img.fp-trust-logo--pregrey {
    height: 30px;
    max-width: 140px;
  }

  .fp-rows,
  .fp-promise,
  .fp-faq,
  .fp-resources {
    padding: 64px 0;
  }

  .fp-integrations {
    padding: 48px 0 0;
  }

  .fp-tools-icon {
    width: 64px;
    height: 64px;
    border-radius: 14px;
    padding: 6px;
  }

  .fp-tools-connectors {
    margin-top: -4px;
  }

  .fp-tools-ask {
    font-size: 13px;
    padding: 9px 18px;
    margin-top: -8px;
  }

  .fp-tools-dome {
    width: 100%;
    max-width: 100%;
    padding: 84px 20px 56px;
    border-radius: 50% 50% 0 0 / 42% 42% 0 0;
  }
}

@media (max-width: 640px) {
  .fp-hero h1 {
    font-size: 28px;
  }

  .fp-tools-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    padding: 5px;
  }

  .fp-tools-dome h2 {
    font-size: 26px;
  }

  .fp-point h3 {
    font-size: 16px;
  }
}
