:root {
    --bg: #07111f;
    --bg-elevated: rgba(15, 23, 42, 0.72);
    --bg-card: rgba(255, 255, 255, 0.06);
    --bg-card-strong: rgba(255, 255, 255, 0.1);
    --text: #f8fafc;
    --text-soft: #cbd5e1;
    --text-muted: #94a3b8;
    --line: rgba(255, 255, 255, 0.1);
    --primary: #60a5fa;
    --primary-strong: #3b82f6;
    --accent: #38bdf8;
    --shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
    --radius-lg: 24px;
    --radius-md: 18px;
    --radius-sm: 12px;
    --max-width: 1200px;
    --nav-height: 84px;
    --transition: 220ms ease;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    background-color: var(--bg);
}

body {
    margin: 0;
    font-family: "Sora", "Segoe UI", Helvetica, Arial, sans-serif;
    background-color: var(--bg);
    background:
        radial-gradient(circle at top, rgba(56, 189, 248, 0.18), transparent 28%),
        radial-gradient(circle at 80% 20%, rgba(96, 165, 250, 0.18), transparent 24%),
        linear-gradient(180deg, #081120 0%, #091423 35%, #07111f 100%);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

body::before,
body::after {
    content: "";
    position: fixed;
    width: 40vw;
    height: 40vw;
    border-radius: 999px;
    pointer-events: none;
    z-index: -1;
    filter: blur(58px);
    opacity: 0.2;
}

body::before {
    top: -10vw;
    left: -6vw;
    background: rgba(56, 189, 248, 0.25);
}

body::after {
    right: -12vw;
    bottom: -14vw;
    background: rgba(14, 165, 233, 0.22);
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

section {
    padding: 96px 24px;
}

nav,
section,
footer {
    position: relative;
    z-index: 1;
}

.site-nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 16px 24px;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    background: rgba(7, 17, 31, 0.55);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-inner {
    max-width: var(--max-width);
    min-height: calc(var(--nav-height) - 32px);
    margin: 0 auto;
    padding: 8px 12px 8px 20px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.65);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    box-shadow: var(--shadow);
}

.brand {
    font-family: "Space Grotesk", "Sora", sans-serif;
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-links a {
    color: var(--text-soft);
    font-size: 0.96rem;
    font-weight: 500;
    transition: color var(--transition);
}

.nav-links a:hover {
    color: var(--text);
}

.nav-links a.is-active {
    color: var(--text);
}

.nav-cta,
.signup-button,
.secondary-button,
.contact-button,
#mc-embedded-subscribe {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 20px;
    border-radius: 999px;
    font-weight: 700;
    transition: transform var(--transition), background var(--transition), border-color var(--transition), color var(--transition), box-shadow var(--transition);
    cursor: pointer;
    border: none;
}
.nav-cta {
    min-height: 40px;
    padding: 0 16px;
    font-size: 0.95rem;
    line-height: 1;
    white-space: nowrap;
    flex-shrink: 0;
}
.nav-cta,
.signup-button,
#mc-embedded-subscribe {
    color: white;
    background: linear-gradient(135deg, var(--accent), var(--primary-strong));
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.28);
}

.nav-cta:hover,
.signup-button:hover,
#mc-embedded-subscribe:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 36px rgba(59, 130, 246, 0.35);
}

.secondary-button {
    background: rgba(255, 255, 255, 0.04);
    color: var(--text);
    border: 1px solid var(--line);
}

.secondary-button:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.08);
}

.middle-section {
    padding-top: 64px;
    padding-bottom: 72px;
    position: relative;
}

.middle-content {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 28px;
    align-items: center;
}

.text-content {
    max-width: 620px;
    transition: transform 260ms ease;
}

.text-content > .eyebrow,
.text-content > p,
.text-content > .hero-actions {
    opacity: 0;
    transform: translateY(24px);
    filter: blur(10px);
    transition: opacity 820ms cubic-bezier(0.22, 1, 0.36, 1), transform 1040ms cubic-bezier(0.22, 1, 0.36, 1), filter 1040ms ease;
}

.text-content > .eyebrow {
    transition-delay: 120ms;
}

.text-content > p {
    transition-delay: 460ms;
}

.text-content > .hero-actions {
    transition-delay: 620ms;
}

.middle-section.hero-copy-ready .text-content > .eyebrow,
.middle-section.hero-copy-ready .text-content > p,
.middle-section.hero-copy-ready .text-content > .hero-actions {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

.text-content > h2 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-title-line,
.hero-title-focus {
    display: block;
    opacity: 0;
    transform: translateY(24px);
    filter: blur(10px);
    transition: opacity 900ms cubic-bezier(0.22, 1, 0.36, 1), transform 1120ms cubic-bezier(0.22, 1, 0.36, 1), filter 1120ms ease;
}

.hero-title-line {
    transition-delay: 280ms;
}

.hero-title-focus {
    margin-top: 0.06em;
    transition-delay: 430ms;
}

.hero-title-focus .hero-rotate {
    opacity: 0;
    transform: translateY(10px);
    filter: blur(8px);
    transition: opacity 760ms cubic-bezier(0.22, 1, 0.36, 1), transform 920ms cubic-bezier(0.22, 1, 0.36, 1), filter 920ms ease;
    transition-delay: 620ms;
}

.middle-section.hero-copy-ready .hero-title-line,
.middle-section.hero-copy-ready .hero-title-focus,
.middle-section.hero-copy-ready .hero-title-focus .hero-rotate {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

.hero-rotate {
    display: inline-flex;
    align-items: center;
    color: #dbeafe;
    text-shadow: 0 0 18px rgba(147, 197, 253, 0.24);
}

.hero-rotate::after {
    content: "";
    display: inline-block;
    width: 2px;
    height: 0.95em;
    margin-left: 8px;
    background: currentColor;
    opacity: 0.8;
    animation: cursorBlink 1s steps(1, end) infinite;
}

.eyebrow,
.section-kicker,
.feature-label {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(96, 165, 250, 0.12);
    border: 1px solid rgba(96, 165, 250, 0.18);
    color: #bfdbfe;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.text-content h2 {
    font-family: "Space Grotesk", "Sora", sans-serif;
    margin: 18px 0 18px;
    font-size: clamp(2.8rem, 5vw, 4.8rem);
    line-height: 1.02;
    letter-spacing: -0.04em;
    font-weight: 800;
}

.text-content p {
    margin: 0;
    font-size: 1.12rem;
    color: var(--text-soft);
    max-width: 56ch;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 28px;
}

.image-content {
    display: grid;
    align-items: center;
    justify-items: end;
    margin-top: -60px;
    position: relative;
    transition: transform 280ms ease;
}

.image-content::before {
    content: "";
    position: absolute;
    width: min(95%, 640px);
    aspect-ratio: 1;
    border-radius: 999px;
    background: radial-gradient(circle at 35% 35%, rgba(96, 165, 250, 0.42), rgba(14, 165, 233, 0.1) 52%, transparent 70%);
    filter: blur(24px);
    z-index: -1;
    animation: heroGlow 6.2s ease-in-out infinite;
}

.image-content img,
.image-content video,
.hero-sequence {
    width: min(100%, 820px);
    display: block;
    border: none;
    box-shadow: none;

    mask-image: linear-gradient(to bottom, black 92%, rgba(0,0,0,0.6) 96%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 92%, rgba(0,0,0,0.6) 96%, transparent 100%);
}

.hero-sequence {
    aspect-ratio: auto;
    height: auto;
    object-fit: contain;
    background: transparent;
    opacity: 0;
    visibility: hidden;
    transform: translate(30px, -6px) scale(1.68);
    filter: blur(3px);
    transition: opacity 520ms cubic-bezier(0.22, 1, 0.36, 1), transform 620ms cubic-bezier(0.22, 1, 0.36, 1), filter 620ms ease;
}

.hero-sequence-fallback {
    object-fit: contain;
    background: transparent;
    transition-delay: 220ms;
}

.hero-sequence.is-ready {
    transform: translate(30px, -16px) scale(1.75);
    filter: blur(0);
}

.middle-section.hero-copy-ready .hero-sequence.is-ready {
    opacity: 1;
    visibility: visible;
}

.middle-section.hero-copy-ready .hero-sequence-fallback.is-ready {
    opacity: 1;
    visibility: visible;
}

.hero-scroll-cue {
    position: absolute;
    left: 50%;
    bottom: 14px;
    transform: translateX(-50%);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: rgba(15, 23, 42, 0.55);
    color: var(--text-soft);
    font-size: 0.9rem;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: transform var(--transition), border-color var(--transition), color var(--transition);
}

.hero-scroll-cue:hover {
    transform: translateX(-50%) translateY(-2px);
    border-color: rgba(96, 165, 250, 0.35);
    color: var(--text);
}

.scroll-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #93c5fd;
    box-shadow: 0 0 0 0 rgba(147, 197, 253, 0.45);
    animation: dotPulse 1.8s ease-out infinite;
}

.proof-strip {
    padding: 0 24px 24px;
}

.proof-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 18px 28px;
    background: rgba(255, 255, 255, 0.04);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    color: var(--text-soft);
    box-shadow: var(--shadow);
}

.proof-inner span {
    position: relative;
    font-weight: 600;
    white-space: nowrap;
}

.countup {
    font-family: "Space Grotesk", "Sora", sans-serif;
    font-size: 1.05em;
    margin-right: 6px;
    color: #dbeafe;
}

.proof-inner span:not(:last-child)::after {
    content: "";
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    position: absolute;
    right: -15px;
    top: 50%;
    transform: translateY(-50%);
}

.section-heading {
    max-width: 760px;
    margin: 0 auto 48px;
    text-align: center;
}

.section-heading h2,
.showcase-copy h2,
.newsletter-copy h2 {
    font-family: "Space Grotesk", "Sora", sans-serif;
    margin: 16px 0 14px;
    font-size: clamp(2rem, 3vw, 3rem);
    line-height: 1.08;
    letter-spacing: -0.03em;
}

.section-heading p,
.showcase-copy p,
.newsletter-copy p,
.footer-brand p {
    margin: 0;
    color: var(--text-soft);
    font-size: 1.04rem;
}

.features-section {
    padding-top: 56px;
    padding-bottom: 44px;
    position: relative;
}

.features-section .section-heading {
    margin-bottom: 32px;
}

.why-spotty-layout {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    align-items: start;
}

.why-spotty-visual-wrap {
    display: block;
}

.why-spotty-visual {
    position: relative;
    padding: 16px;
    border-radius: 26px;
    border: 1px solid rgba(191, 219, 254, 0.14);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(8, 17, 31, 0.2));
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.why-spotty-visual img {
    width: 100%;
    display: block;
    border-radius: 16px;
}

.why-spotty-metrics {
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 16px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    padding: 10px 12px;
    border: 1px solid rgba(191, 219, 254, 0.2);
    border-radius: 14px;
    background: rgba(8, 17, 31, 0.74);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.why-spotty-metrics > div {
    padding: 2px 10px;
    border-top: none;
    display: grid;
    gap: 4px;
}

.why-spotty-metrics > div:not(:first-child) {
    border-left: 1px solid rgba(191, 219, 254, 0.18);
}

.why-spotty-metrics strong {
    font-family: "Space Grotesk", "Sora", sans-serif;
    font-size: 1.24rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: #f8fafc;
}

.why-spotty-metrics span {
    color: #bfdbfe;
    font-size: 0.82rem;
    letter-spacing: 0.02em;
}

.bento-grid {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.bento-card {
    border-radius: 24px;
    border: 1px solid var(--line);
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03) 60%);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
    min-height: 260px;
}

.bento-card-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
    mask-image: linear-gradient(to bottom, transparent 0%, black 18%, black 60%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 18%, black 60%, transparent 100%);
    opacity: 0.72;
}

.bento-card-body {
    position: relative;
    z-index: 1;
    margin-top: auto;
    padding: 28px;
    background: linear-gradient(to top, rgba(7, 17, 31, 0.96) 0%, rgba(7, 17, 31, 0.72) 60%, transparent 100%);
}

.bento-card h3 {
    font-family: "Space Grotesk", "Sora", sans-serif;
    margin: 10px 0 8px;
    font-size: 1.18rem;
    letter-spacing: -0.02em;
}

.bento-card p {
    margin: 0;
    color: var(--text-soft);
    font-size: 0.97rem;
}

.why-item-index {
    color: rgba(191, 219, 254, 0.64);
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    font-weight: 700;
}

/* Bento placement: staggered diagonal rhythm */
/* Bento placement: 1-2-1 */
.bento-card--a {
    grid-column: 1 / 3;
    grid-row: 1;
    min-height: 320px;
}

.bento-card--tap {
    isolation: isolate;
    border-color: rgba(148, 197, 253, 0.28);
    background:
    linear-gradient(164deg, rgba(7, 17, 31, 0.58), rgba(7, 17, 31, 0.3) 62%),
        radial-gradient(120% 140% at -8% 92%, rgba(59, 130, 246, 0.34), transparent 58%),
        radial-gradient(90% 140% at 110% 4%, rgba(56, 189, 248, 0.22), transparent 62%),
    url("/content/bento-bg.png") 50% 8% / cover no-repeat;
}

.bento-card--tap::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(7, 17, 31, 0.06), rgba(7, 17, 31, 0.48));
}

.bento-tap-layout {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: center;
    gap: 22px;
    height: 100%;
    position: relative;
    z-index: 1;
}

.bento-card--tap .bento-card-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-top: 0;
    align-self: stretch;
    max-width: none;
    padding: 28px 30px;
    background: linear-gradient(90deg, rgba(7, 17, 31, 0.72) 0%, rgba(7, 17, 31, 0.44) 52%, rgba(7, 17, 31, 0) 100%);
}

.bento-card--tap .bento-card-body h3 {
    font-size: clamp(1.8rem, 2.7vw, 2.4rem);
    line-height: 1.04;
    margin: 0 0 10px;
}

.tap-period {
    display: inline-block;
    margin-right: 0.02em;
    color: #bfdbfe;
    text-shadow: 0 0 0 rgba(191, 219, 254, 0.2);
    transform-origin: 50% 70%;
    animation: tapPeriodPulse 1.9s ease-in-out infinite;
}

@keyframes tapPeriodPulse {
    0%,
    100% {
        transform: scale(1);
        opacity: 0.9;
        text-shadow: 0 0 0 rgba(191, 219, 254, 0.15);
    }
    45% {
        transform: scale(1.36);
        opacity: 1;
        text-shadow: 0 0 12px rgba(191, 219, 254, 0.6);
    }
}

.bento-card--tap .bento-card-body p {
    font-size: clamp(1rem, 1.1vw, 1.12rem);
    line-height: 1.36;
    max-width: 38ch;
    color: rgba(226, 232, 240, 0.95);
}

.bento-tap-preview {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    justify-self: stretch;
    align-self: stretch;
    width: 100%;
    padding: 12px 0;
    transform: translateX(0);
    overflow: hidden;
}

.bento-tap-preview::before {
    content: none;
}

.bento-card-sequence {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    max-height: 320px;
    max-width: 398px;
    aspect-ratio: 10 / 11;
    object-fit: contain;
    object-position: center;
    border-radius: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    display: block;
    mask-image: linear-gradient(to bottom, transparent 0%, black 12%, black 88%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 12%, black 88%, transparent 100%);
}

.bento-card-sequence-fallback {
    height: auto;
}

.bento-card--b {
    grid-column: 1 / 2;
    grid-row: 2;
}

.bento-card--b .bento-card-img {
    object-position: 50% 32%;
}

.bento-card--c {
    grid-column: 1 / 2;
    grid-column: 2 / 3;
    grid-row: 2;
}

.bento-card--c .bento-card-img {
    object-position: 50% 32%;
}

.bento-card--fleet {
    grid-column: 1 / 3;
    grid-row: 3;
    min-height: 360px;
    padding: 0;
    overflow: hidden;
    border-color: rgba(148, 197, 253, 0.22);
    background:
        radial-gradient(80% 140% at 12% 50%, rgba(30, 64, 175, 0.22), transparent 60%),
        linear-gradient(105deg, rgba(3, 14, 32, 0.92), rgba(3, 14, 32, 0.72) 52%, rgba(10, 26, 54, 0.86));
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.28);
    position: relative;
}

.bento-card--fleet::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(2, 6, 23, 0) 40%, rgba(56, 189, 248, 0.07));
    pointer-events: none;
}

.fleet-highlight-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(200px, 280px);
    gap: 12px;
    align-items: center;
    padding: 30px 30px 22px;
    position: relative;
    z-index: 1;
    height: 100%;
}

.fleet-highlight-copy {
    max-width: 30ch;
}

.fleet-highlight-copy h3 {
    margin: 10px 0 8px;
    font-size: clamp(1.72rem, 2.3vw, 2.2rem);
    line-height: 1.08;
}

.fleet-highlight-copy p {
    max-width: 32ch;
    font-size: clamp(1.06rem, 1.2vw, 1.24rem);
    line-height: 1.36;
    color: rgba(226, 232, 240, 0.9);
}

.fleet-highlight-preview {
    justify-self: end;
    width: min(100%, 380px);
    max-width: 100%;
    position: relative;
    overflow: hidden;
}

.fleet-highlight-preview::before {
    display: none;
}

.fleet-highlight-preview::after {
    display: none;
}

.fleet-highlight-preview img {
    width: 100%;
    height: auto;
    display: block;
    transform: translateY(0);
    filter: drop-shadow(0 10px 24px rgba(2, 6, 23, 0.34));
    mask-image: linear-gradient(to bottom, transparent 0%, black 12%, black 88%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 12%, black 88%, transparent 100%);
}

.feature-grid {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
    gap: 42px;
    align-items: stretch;
}

.feature-card {
    min-height: 220px;
    padding: 28px;
    border-radius: 26px;
    border: 1px solid var(--line);
    background: linear-gradient(170deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.03) 58%, rgba(56, 189, 248, 0.08));
    box-shadow: var(--shadow);
    transition: transform var(--transition), border-color var(--transition), background var(--transition), box-shadow var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: "";
    position: absolute;
    inset: -35% -20% auto auto;
    width: 260px;
    height: 260px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(147, 197, 253, 0.2), transparent 62%);
    pointer-events: none;
}

.feature-card::after {
    content: "";
    position: absolute;
    inset: auto 20px 18px auto;
    width: 58px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(56, 189, 248, 0), rgba(56, 189, 248, 0.62));
    pointer-events: none;
}

.feature-card:hover {
    transform: translateY(-4px);
    border-color: rgba(96, 165, 250, 0.28);
    background: linear-gradient(170deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.05) 60%, rgba(56, 189, 248, 0.14));
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.38);
}

.feature-card h3 {
    font-family: "Space Grotesk", "Sora", sans-serif;
    margin: 16px 0 10px;
    font-size: 1.35rem;
    letter-spacing: -0.02em;
}

.feature-card p {
    margin: 0;
    color: var(--text-soft);
}

.feature-spotlight {
    min-height: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 0;
    border: none;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    overflow: visible;
}

.feature-spotlight h3 {
    font-size: clamp(1.6rem, 2.2vw, 2.1rem);
    margin-top: 14px;
}

.feature-spotlight::before,
.feature-spotlight::after {
    display: none;
}

.feature-spotlight:hover {
    transform: none;
    border-color: transparent;
    background: transparent;
    box-shadow: none;
}

.spotlight-media {
    margin-top: 8px;
    max-width: 520px;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding: 20px;
    border-radius: 34px;
    border: 1px solid rgba(191, 219, 254, 0.16);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(8, 17, 31, 0.16));
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.28);
}

.spotlight-media img {
    width: 100%;
    height: auto;
    border-radius: 24px;
    object-fit: contain;
    object-position: center;
    display: block;
    transition: opacity 220ms ease, transform 220ms ease;
}

.spotlight-stats {
    margin-top: 6px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.stat-block {
    padding: 16px 0 0;
    border-radius: 0;
    border: none;
    border-top: 1px solid rgba(191, 219, 254, 0.16);
    background: transparent;
    display: grid;
    gap: 4px;
}

.stat-value {
    font-family: "Space Grotesk", "Sora", sans-serif;
    font-size: 1.22rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: #f8fafc;
    font-weight: 700;
}

.stat-label {
    font-size: 0.8rem;
    color: #bfdbfe;
    letter-spacing: 0.02em;
}

.spotlight-foot {
    margin-top: auto;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.spotlight-foot span {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    padding: 0;
    border-radius: 0;
    border: none;
    background: transparent;
    color: #e0f2fe;
    font-size: 0.84rem;
    font-weight: 600;
    letter-spacing: 0.01em;
}

.feature-stack {
    display: grid;
    gap: 0;
    align-content: start;
    padding-top: 12px;
    padding-left: 28px;
    border-left: 1px solid rgba(191, 219, 254, 0.12);
}

.feature-stack-heading {
    margin: 0 0 18px;
    color: #bae6fd;
    font-size: 0.86rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    opacity: 0.82;
}

.feature-panel {
    min-height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    cursor: pointer;
    user-select: none;
    padding: 22px 0 24px 20px;
    border: none;
    border-bottom: 1px solid rgba(191, 219, 254, 0.12);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    overflow: visible;
}

.feature-panel::before,
.feature-panel::after {
    display: none;
}

.feature-panel:hover {
    transform: translateX(6px);
    background: transparent;
    box-shadow: none;
}

.feature-panel:focus-visible {
    outline: 2px solid rgba(125, 211, 252, 0.8);
    outline-offset: 2px;
}

.feature-panel.is-active {
    transform: translateX(10px);
    border-bottom-color: rgba(125, 211, 252, 0.28);
    background: transparent;
    box-shadow: none;
}

.feature-panel .feature-label {
    padding: 0;
    border: none;
    border-radius: 0;
    background: transparent;
    color: rgba(191, 219, 254, 0.64);
    font-size: 0.78rem;
}

.feature-panel h3 {
    margin: 10px 0 8px;
    font-size: 1.2rem;
}

.feature-panel p {
    max-width: 34ch;
}

.panel-cta {
    margin-top: 16px;
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    min-height: 22px;
    padding: 0;
    border-radius: 0;
    border: none;
    background: transparent;
    color: rgba(191, 219, 254, 0.84);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.panel-cta::after {
    content: "";
    width: 32px;
    height: 1px;
    margin-left: 10px;
    background: currentColor;
    opacity: 0.55;
}

.feature-panel.is-active .panel-cta {
    color: #e0f2fe;
}

.panel-b {
    border-radius: 34px 24px 20px 22px;
    background: linear-gradient(170deg, rgba(255, 255, 255, 0.09), rgba(186, 230, 253, 0.04) 58%, rgba(56, 189, 248, 0.1));
}

.panel-c {
    border-radius: 22px 22px 34px 24px;
}

.panel-d {
    border-radius: 26px 20px 32px 18px;
}

.showcase-section {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 460px);
    gap: 40px;
    align-items: center;
}

.showcase-points {
    margin: 24px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 14px;
}

.showcase-points li {
    position: relative;
    overflow: hidden;
    padding: 16px 18px;
    border-radius: var(--radius-md);
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-soft);
    font-weight: 600;
    transition: transform 260ms ease, border-color 260ms ease, background 260ms ease, color 260ms ease, box-shadow 260ms ease;
}

.showcase-points li::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg, rgba(148, 197, 253, 0) 0%, rgba(148, 197, 253, 0.22) 45%, rgba(148, 197, 253, 0) 100%);
    transform: translateX(-135%);
    opacity: 0;
    pointer-events: none;
}

.showcase-points li.is-feature-focus {
    border-color: rgba(125, 211, 252, 0.44);
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.18), rgba(56, 189, 248, 0.08));
    color: #eaf4ff;
    transform: translateX(6px);
    box-shadow: 0 8px 22px rgba(3, 105, 161, 0.24);
}

.showcase-points li.is-feature-focus::after {
    opacity: 1;
    animation: showcaseSweep 1.5s ease;
}

@keyframes showcaseSweep {
    from {
        transform: translateX(-135%);
    }
    to {
        transform: translateX(135%);
    }
}

.device-shell {
    padding: 18px;
    border-radius: 36px;
    border: 1px solid var(--line);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
    box-shadow: var(--shadow);
}

.device-shell img {
    width: 100%;
    border-radius: 24px;
}

.newsletter-section {
    padding-top: 40px;
    padding-bottom: 96px;
}

.newsletter-card {
    max-width: 980px;
    margin: 0 auto;
    padding: 36px;
    border-radius: 30px;
    border: 1px solid var(--line);
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.72));
    box-shadow: var(--shadow);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: center;
}

#mc_embed_shell {
    width: 100%;
}

#mc_embed_signup_scroll {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

#mc_embed_signup .mc-field-group {
    width: 100%;
    padding: 0;
    margin: 0;
}

#mc_embed_signup label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-soft);
    font-weight: 600;
}

#mce-EMAIL {
    width: 100%;
    min-height: 54px;
    border-radius: 16px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.06);
    color: var(--text);
    padding: 0 16px;
    font-size: 1rem;
    outline: none;
    transition: border-color var(--transition), background var(--transition), box-shadow var(--transition);
}

#mce-EMAIL::placeholder {
    color: var(--text-muted);
}

#mce-EMAIL:focus {
    border-color: rgba(96, 165, 250, 0.45);
    background: rgba(255, 255, 255, 0.09);
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.16);
}

#mc-embedded-subscribe {
    width: 100%;
    min-height: 54px;
    margin: 0 !important;
    font-size: 1rem;
}

#mce-responses {
    margin: 0 !important;
    padding: 0 !important;
}

.response {
    color: var(--text-soft);
    font-size: 0.95rem;
}

.site-footer {
    padding: 0 24px 40px;
}

.footer-inner,
.footer-bottom {
    max-width: var(--max-width);
    margin: 0 auto;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
    padding: 28px 0 22px;
    border-top: 1px solid var(--line);
}

.footer-brand h3 {
    font-family: "Space Grotesk", "Sora", sans-serif;
    margin: 0 0 8px;
    font-size: 1.2rem;
}

.reveal-ready {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 520ms ease, transform 520ms ease;
}

.reveal-ready.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes heroGlow {
    0%, 100% { transform: translateY(0) scale(1); opacity: 0.74; }
    50% { transform: translateY(-8px) scale(1.04); opacity: 0.96; }
}

@keyframes cursorBlink {
    0%, 49% { opacity: 1; }
    50%, 100% { opacity: 0; }
}


@keyframes rowDrift {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(3px); }
}

.footer-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text-soft);
    transition: color var(--transition);
}

.footer-links a:hover {
    color: var(--text);
}

.footer-bottom {
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-bottom p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.92rem;
}

.privacy-main {
    padding: 56px 24px 96px;
}

.privacy-container {
    max-width: 900px;
    margin: 0 auto;
    border: 1px solid var(--line);
    border-radius: 30px;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.72));
    box-shadow: var(--shadow);
    padding: 36px;
}

.privacy-header h1 {
    margin: 14px 0 12px;
    font-family: "Space Grotesk", "Sora", sans-serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
    line-height: 1.08;
    letter-spacing: -0.03em;
}

.privacy-updated {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.privacy-section {
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.privacy-section h2 {
    margin: 0 0 10px;
    font-family: "Space Grotesk", "Sora", sans-serif;
    font-size: 1.3rem;
    letter-spacing: -0.02em;
}

.privacy-section p,
.privacy-section li {
    color: var(--text-soft);
}

.privacy-section ul {
    margin: 10px 0 0;
    padding-left: 20px;
}

.privacy-back {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 16px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-soft);
    font-weight: 600;
    transition: transform var(--transition), background var(--transition), border-color var(--transition), color var(--transition);
}

.privacy-back:hover {
    transform: translateY(-2px);
    border-color: rgba(96, 165, 250, 0.35);
    background: rgba(255, 255, 255, 0.08);
    color: var(--text);
}

/* Hide old layout pieces if they still exist in the HTML */
.navbar,
.features-header,
.photo-album-section,
.footer,
.phone-frame,
.slideshow,
.feature-text-container,
.photo-container {
    display: none;
}

/* Mailchimp cleanup */
#mc_embed_signup h2,
#mc_embed_signup p,
.asterisk {
    display: none;
}

.optionalParent,
.clear.foot {
    width: 100%;
}

/* Responsive */
@media (max-width: 920px) {
    .showcase-section,
    .newsletter-card {
        grid-template-columns: 1fr;
    }

    .middle-content {
        grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
        gap: 20px;
    }

    .feature-grid,
    .why-spotty-layout {
        grid-template-columns: 1fr;
    }

    .feature-spotlight {
        min-height: auto;
    }

    .spotlight-stats {
        grid-template-columns: 1fr 1fr 1fr;
    }

    .text-content,
    .showcase-copy,
    .newsletter-copy {
        max-width: none;
    }

    .image-content {
        justify-items: center;
        margin-top: -20px;
    }

    .image-content img,
    .image-content video,
    .hero-sequence {
        width: min(100%, 620px);
    }

    .hero-sequence {
        transform: translate(0, -6px) scale(1.22);
    }

    .hero-sequence.is-ready {
        transform: translate(0, -12px) scale(1.3);
    }
}

@media (max-width: 760px) {
    section {
        padding: 64px 20px;
    }

    .site-nav {
        padding: 10px 14px;
    }

    .nav-inner {
        display: grid;
        grid-template-columns: 1fr auto;
        align-items: center;
        gap: 12px;
        min-height: auto;
        padding: 12px 14px;
        border-radius: 20px;
    }

    .nav-links {
        display: none;
    }

    .nav-cta {
        width: auto;
        min-height: 40px;
        padding: 0 14px;
        font-size: 0.9rem;
    }

    .middle-section {
        padding-top: 24px;
        padding-bottom: 32px;
    }

    .middle-content {
        grid-template-columns: 1fr;
        gap: 20px;
        align-items: start;
    }

    .image-content {
        order: 2;
        margin-top: 0;
        overflow: hidden;
        justify-items: center;
    }

    .text-content {
        order: 1;
    }

    .image-content::before {
        display: none;
    }

    .image-content img,
    .image-content video,
    .hero-sequence {
        width: 100%;
        max-width: 320px;
    }

    .image-content img:not(.hero-sequence):not(.hero-sequence-fallback),
    .image-content video:not(.hero-sequence) {
        mask-image: none;
        -webkit-mask-image: none;
    }

    .hero-sequence,
    .hero-sequence-fallback {
        mask-image: linear-gradient(to bottom, black 90%, rgba(0, 0, 0, 0.64) 95%, transparent 100%);
        -webkit-mask-image: linear-gradient(to bottom, black 90%, rgba(0, 0, 0, 0.64) 95%, transparent 100%);
    }

    .hero-sequence,
    .hero-sequence.is-ready {
        transform: none;
        margin: 0 auto;
        display: block;
    }

    .hero-scroll-cue {
        position: static;
        left: auto;
        bottom: auto;
        transform: none;
        margin: 12px auto 0;
        width: fit-content;
        font-size: 0.84rem;
    }

    .hero-scroll-cue:hover {
        transform: translateY(-2px);
    }

    .text-content h2 {
        font-size: clamp(2.4rem, 6.4vw, 4.2rem);
    }

    .hero-rotate::after {
        margin-left: 4px;
    }

    .text-content p,
    .section-heading p,
    .showcase-copy p,
    .newsletter-copy p {
        font-size: 1rem;
    }

    .hero-actions {
        margin-top: 28px;
        gap: 14px;
        flex-direction: column;
        align-items: stretch;
        flex-wrap: nowrap;
    }

    .signup-button,
    .secondary-button {
        width: 100%;
    }

    .proof-inner {
        border-radius: 24px;
        padding: 18px;
        gap: 10px;
        justify-content: flex-start;
    }

    .proof-inner span {
        white-space: normal;
        width: 100%;
        font-size: 0.95rem;
        line-height: 1.35;
    }

    .proof-inner .countup {
        margin-right: 5px;
    }

    .proof-inner span:not(:last-child)::after {
        display: none;
    }

    .why-spotty-layout {
        gap: 28px;
    }

    .why-spotty-visual {
        padding: 14px;
        border-radius: 22px;
    }

    .why-spotty-visual img {
        border-radius: 14px;
    }

    .why-spotty-metrics {
        position: static;
        grid-template-columns: 1fr;
        gap: 12px;
        margin-top: 12px;
        padding: 0;
        border: none;
        border-radius: 0;
        background: transparent;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }

    .why-spotty-metrics > div {
        padding: 10px 0 0;
        border-top: 1px solid rgba(191, 219, 254, 0.14);
    }

    .why-spotty-metrics > div:not(:first-child) {
        border-left: none;
    }

    .bento-grid {
        grid-template-columns: 1fr;
        justify-items: center;
    }

    .bento-card--a,
    .bento-card--b,
    .bento-card--c,
    .bento-card--fleet {
        grid-column: 1 / 2;
        grid-row: auto;
    }

    .bento-card--b,
    .bento-card--c,
    .bento-card--fleet {
        width: min(390px, 100%);
        max-width: min(390px, 100%);
        margin-inline: auto;
        justify-self: center;
    }

    .bento-card--b,
    .bento-card--c {
        min-height: 280px;
        height: 280px;
    }

    .bento-card--fleet {
        min-height: 360px;
        height: 360px;
    }

    .bento-card--b .bento-card-img,
    .bento-card--c .bento-card-img {
        object-position: 50% 32%;
    }

    .bento-tap-layout {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .bento-card--tap .bento-card-body {
        order: 2;
        max-width: none;
        padding: 0 22px 20px;
        background: none;
    }

    .bento-card--tap .bento-card-body h3 {
        font-size: clamp(1.24rem, 5.2vw, 1.65rem);
    }

    .bento-card--tap .bento-card-body p {
        font-size: 0.98rem;
    }

    .bento-tap-preview {
        order: 1;
        justify-self: center;
        width: min(100%, 300px);
        padding: 14px 10px 0;
        transform: none;
    }

    .bento-card-sequence {
        max-height: 300px;
    }

    .fleet-highlight-layout {
        grid-template-columns: 1fr;
        gap: 18px;
        align-items: start;
        padding: 24px 22px 16px;
        height: 100%;
    }

    .fleet-highlight-copy {
        max-width: none;
    }

    .fleet-highlight-copy h3 {
        font-size: clamp(1.3rem, 5vw, 1.75rem);
    }

    .fleet-highlight-copy p {
        font-size: 1rem;
    }

    .fleet-highlight-preview {
        justify-self: center;
        width: min(100%, 300px);
        max-width: 100%;
    }

    .newsletter-card {
        padding: 24px;
        border-radius: 24px;
    }

    .newsletter-section {
        padding-top: 28px;
        padding-bottom: 80px;
    }

    .footer-inner {
        flex-direction: column;
    }

    .privacy-main {
        padding: 36px 20px 72px;
    }

    .privacy-container {
        padding: 24px;
        border-radius: 24px;
    }
}

@media (max-width: 480px) {
    .middle-section {
        padding-bottom: 34px;
    }

    .middle-content {
        gap: 14px;
    }

    .image-content img,
    .image-content video,
    .hero-sequence {
        max-width: 300px;
    }

    .hero-actions {
        gap: 12px;
    }

    .hero-scroll-cue {
        margin-top: 10px;
    }

    .bento-grid {
        grid-template-columns: 1fr;
        justify-items: center;
    }

    .bento-card--a,
    .bento-card--b,
    .bento-card--c,
    .bento-card--fleet {
        grid-column: 1 / 2;
        grid-row: auto;
    }

    .bento-card--b,
    .bento-card--c,
    .bento-card--fleet {
        width: min(390px, 100%);
        max-width: min(390px, 100%);
        margin-inline: auto;
        justify-self: center;
    }

    .bento-card--b,
    .bento-card--c {
        min-height: 280px;
        height: 280px;
    }

    .bento-card--fleet {
        min-height: 360px;
        height: 360px;
    }

    .bento-tap-preview {
        width: min(100%, 300px);
    }

    .nav-links {
        gap: 14px;
    }

    .nav-links a {
        font-size: 0.92rem;
    }

    .feature-card,
    .showcase-points li {
        padding: 22px;
    }

    .feature-spotlight {
        padding: 24px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
        scroll-behavior: auto !important;
    }

    .reveal-ready {
        opacity: 1;
        transform: none;
    }

    .showcase-points li,
    .showcase-points li.is-feature-focus {
        transform: none !important;
        box-shadow: none !important;
    }

    .showcase-points li::after,
    .showcase-points li.is-feature-focus::after {
        opacity: 0 !important;
        animation: none !important;
    }

    .hero-scroll-cue {
        transform: translateX(-50%);
    }
}