:root {
    color-scheme: light;
    --ink: #141722;
    --muted: #626b7c;
    --soft: #f4f2ff;
    --paper: #f8f6ff;
    --white: #fffefa;
    --line: #dfe3ee;
    --purple: #245cff;
    --purple-dark: #1744c8;
    --purple-soft: #edf3ff;
    --accent: var(--purple);
    --accent-strong: var(--purple-dark);
    --accent-soft: var(--purple-soft);
    --violet-ink: #27215f;
    --danger: #dc5f5f;
    --shadow: 0 24px 70px rgba(35, 42, 72, 0.12);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans SC", sans-serif;
    line-height: 1.55;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 30;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 18px clamp(18px, 4vw, 56px);
    background: rgba(248, 246, 255, 0.92);
    border-bottom: 1px solid rgba(223, 227, 238, 0.82);
    backdrop-filter: blur(16px);
}

.public-nav {
    position: sticky;
    top: 0;
    z-index: 30;
    background: rgba(255, 255, 255, 0.94);
    border-bottom: 1px solid rgba(21, 29, 59, 0.08);
    backdrop-filter: blur(18px);
    box-shadow: 0 1px 0 rgba(21, 29, 59, 0.03);
}

.public-nav-inner {
    max-width: 1180px;
    min-height: 70px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.public-nav .brand {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--ink);
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 0;
}

.brand-mark {
    width: 32px;
    height: 32px;
    display: block;
    flex: 0 0 auto;
    overflow: hidden;
    border-radius: 8px;
    background: #fff;
    border: 1px solid rgba(21, 29, 59, 0.1);
    box-shadow: 0 6px 14px rgba(21, 29, 59, 0.06);
}

.brand-mark img {
    width: 100%;
    height: 100%;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 20px;
    color: var(--muted);
    font-size: 14px;
    font-weight: 700;
}

.nav-links a {
    padding: 8px 0;
}

.nav-links a:hover {
    color: var(--accent);
}

.nav-menu {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.nav-menu-trigger {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.nav-menu-trigger i {
    color: currentColor;
    font-size: 10px;
    opacity: 0.72;
}

.nav-tools-dropdown {
    position: absolute;
    left: 50%;
    top: calc(100% + 12px);
    min-width: 230px;
    display: grid;
    gap: 4px;
    padding: 9px;
    border: 1px solid rgba(21, 29, 59, 0.1);
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 18px 42px rgba(21, 29, 59, 0.14);
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, -4px);
    transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

.nav-tools-dropdown::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -14px;
    height: 14px;
}

.nav-menu:hover .nav-tools-dropdown,
.nav-menu:focus-within .nav-tools-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
}

.nav-tools-dropdown a {
    display: block;
    padding: 8px 10px;
    border-radius: 7px;
    color: var(--ink);
    font-size: 13px;
    font-weight: 800;
    line-height: 1.25;
    white-space: nowrap;
}

.nav-tools-dropdown a:hover,
.nav-tools-dropdown a:focus-visible {
    background: var(--accent-soft);
    color: var(--accent-strong);
    outline: 0;
}

.language-switch {
    width: 38px;
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 !important;
    border-radius: 7px;
    font-size: 17px;
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    max-width: 220px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    border: 1px solid rgba(79, 70, 229, 0.18);
    background: var(--accent);
    color: #fff !important;
    padding: 8px 14px !important;
    border-radius: 7px;
    font-weight: 800;
    box-shadow: 0 8px 18px rgba(79, 70, 229, 0.18);
}

.nav-toggle {
    display: none;
    border: 1px solid var(--line);
    background: #fff;
    width: 40px;
    height: 40px;
    border-radius: 7px;
    color: var(--ink);
    font-size: 20px;
}

.brand {
    color: var(--ink);
    font-size: 20px;
    font-weight: 900;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 28px;
    color: var(--muted);
    font-size: 15px;
    font-weight: 650;
}

.desktop-nav a:hover {
    color: var(--ink);
}

.header-cta,
.primary-cta,
.mobile-sticky-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 22px;
    border-radius: 8px;
    background: var(--purple);
    color: var(--white);
    font-weight: 850;
    white-space: nowrap;
    box-shadow: 0 12px 28px rgba(79, 70, 229, 0.22);
}

.header-cta:hover,
.primary-cta:hover,
.mobile-sticky-cta:hover {
    background: var(--purple-dark);
}

.header-cta:active,
.primary-cta:active,
.mobile-sticky-cta:active {
    transform: translateY(1px);
}

.header-cta:focus-visible,
.primary-cta:focus-visible,
.mobile-sticky-cta:focus-visible,
.desktop-nav a:focus-visible {
    outline: 3px solid rgba(36, 92, 255, 0.28);
    outline-offset: 3px;
}

.hero {
    display: grid;
    grid-template-columns: minmax(360px, 0.78fr) minmax(620px, 1.22fr);
    gap: clamp(18px, 3vw, 44px);
    align-items: center;
    width: min(1420px, calc(100% - 32px));
    min-height: min(720px, calc(100vh - 78px));
    margin: 0 auto;
    padding: clamp(46px, 6vw, 82px) 0 clamp(34px, 5vw, 60px);
}

.hero > * {
    min-width: 0;
}

.eyebrow,
.section-kicker {
    margin-bottom: 12px;
    color: var(--purple);
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 0;
}

h1 {
    width: 100%;
    max-width: 620px;
    margin-bottom: 22px;
    font-size: clamp(42px, 4.65vw, 70px);
    line-height: 1.02;
    letter-spacing: 0;
    overflow-wrap: anywhere;
}

h1 span {
    display: block;
}

.hero-lead span,
.proof-line span {
    display: block;
}

.hero-lead {
    max-width: 590px;
    margin-bottom: 18px;
    color: #394154;
    font-size: clamp(18px, 1.5vw, 21px);
    font-weight: 650;
}

.proof-line {
    max-width: 590px;
    margin-bottom: 28px;
    color: var(--violet-ink);
    font-size: 16px;
    font-weight: 800;
}

.hero-basic {
    grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
    gap: clamp(34px, 6vw, 88px);
    width: min(1180px, calc(100% - 36px));
    min-height: min(620px, calc(100vh - 78px));
    padding: clamp(56px, 7vw, 90px) 0 clamp(44px, 6vw, 74px);
}

.hero-basic .hero-copy {
    max-width: 760px;
}

.hero-basic h1 {
    max-width: 760px;
    margin-bottom: 18px;
    font-size: clamp(44px, 5.2vw, 72px);
    line-height: 1.03;
}

.hero-basic .hero-lead {
    max-width: 650px;
    margin-bottom: 26px;
    font-size: clamp(18px, 1.35vw, 21px);
    line-height: 1.56;
}

.hero-basic .hero-mega-cta {
    min-height: 58px;
    padding: 0 30px;
    font-size: 17px;
}

.hero-proof-panel {
    align-self: center;
    width: 100%;
    max-width: 360px;
    padding: 26px 28px;
    border: 1px solid rgba(98, 107, 124, 0.16);
    border-radius: 8px;
    background: rgba(255, 254, 250, 0.78);
    box-shadow: 0 24px 70px rgba(39, 33, 95, 0.1);
}

.hero-proof-panel div {
    padding: 22px 0;
    border-top: 1px solid rgba(223, 227, 238, 0.9);
}

.hero-proof-panel div:first-child {
    padding-top: 0;
    border-top: 0;
}

.hero-proof-panel div:last-child {
    padding-bottom: 0;
}

.hero-proof-panel span {
    display: block;
    margin-bottom: 4px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 800;
}

.hero-proof-panel strong {
    display: block;
    color: var(--ink);
    font-size: clamp(28px, 2.6vw, 38px);
    line-height: 1.05;
}

.hero-visual {
    position: relative;
    margin: 0;
    min-width: 0;
}

.hero-flow-visual {
    isolation: isolate;
    min-height: clamp(430px, 43vw, 620px);
    overflow: visible;
}

.hero-flow-visual::before {
    content: "";
    position: absolute;
    left: 4%;
    right: 4%;
    top: 14%;
    bottom: 8%;
    z-index: -1;
    background:
        radial-gradient(circle at 45% 45%, rgba(36, 92, 255, 0.12), transparent 32%),
        radial-gradient(circle at 76% 60%, rgba(118, 100, 255, 0.12), transparent 28%);
    filter: blur(28px);
    opacity: 0.72;
}

.source-stack,
.curated-stack,
.selection-gate,
.asset-river,
.upload-mini-board {
    position: absolute;
}

.source-stack {
    left: 0;
    top: 15%;
    z-index: 4;
    display: grid;
    gap: clamp(8px, 0.9vw, 13px);
    width: min(210px, 25%);
}

.source-card {
    position: relative;
    display: grid;
    grid-template-columns: 34px 1fr 18px;
    gap: 11px;
    align-items: center;
    min-height: 48px;
    padding: 9px 12px;
    border: 1px solid rgba(118, 138, 182, 0.16);
    border-radius: 8px;
    background: rgba(255, 254, 250, 0.92);
    box-shadow: 0 14px 34px rgba(49, 58, 93, 0.11);
}

.source-card::before,
.source-card::after {
    content: "";
    position: absolute;
    right: -64px;
    height: 1px;
    background: linear-gradient(90deg, rgba(36, 92, 255, 0.55), rgba(36, 92, 255, 0));
    transform-origin: left center;
}

.source-card::before {
    top: 48%;
    width: 64px;
    transform: rotate(9deg);
}

.source-card::after {
    top: 52%;
    width: 52px;
    opacity: 0.42;
    transform: rotate(-10deg);
}

.source-card span {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.48), transparent),
        var(--card-color);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.45);
}

.source-card i {
    display: block;
    height: 22px;
    border-radius: 999px;
    background:
        linear-gradient(90deg, var(--card-line) 0 54%, #dfe5f1 54% 100%);
}

.source-card b {
    width: 18px;
    height: 18px;
    border-radius: 999px;
    background: #15a5bd;
    box-shadow: inset 0 0 0 4px rgba(255, 255, 255, 0.92);
}

.source-card-business { --card-color: #5f8cff; --card-line: #2e66ff; }
.source-card-food { --card-color: #f6a544; --card-line: #28bdd6; }
.source-card-travel { --card-color: #40a9e8; --card-line: #2e66ff; }
.source-card-wellness { --card-color: #8cbf46; --card-line: #28bdd6; }
.source-card-tech { --card-color: #6687e8; --card-line: #2e66ff; }
.source-card-seasonal { --card-color: #f1913a; --card-line: #28bdd6; }

.selection-gate {
    left: 26.5%;
    top: 26%;
    z-index: 3;
    width: 92px;
    height: 230px;
    border: 1px solid rgba(36, 92, 255, 0.28);
    border-radius: 26px;
    background:
        linear-gradient(180deg, rgba(255, 254, 250, 0.86), rgba(237, 243, 255, 0.78));
    box-shadow: 0 18px 38px rgba(36, 92, 255, 0.12);
}

.selection-gate::before,
.selection-gate::after {
    content: "";
    position: absolute;
    inset: 22px auto 22px 50%;
    width: 1px;
    background: linear-gradient(180deg, transparent, rgba(36, 92, 255, 0.45), transparent);
}

.selection-gate::after {
    left: calc(50% + 14px);
    opacity: 0.42;
}

.selection-gate span {
    position: absolute;
    left: 50%;
    top: 48%;
    width: 42px;
    height: 42px;
    transform: translate(-50%, -50%);
    background: linear-gradient(180deg, #4b7cff, #1f5aff);
    clip-path: polygon(10% 12%, 90% 12%, 62% 52%, 62% 82%, 38% 95%, 38% 52%);
    filter: drop-shadow(0 10px 18px rgba(36, 92, 255, 0.22));
}

.curated-stack {
    left: 34%;
    top: 13%;
    z-index: 5;
    display: grid;
    gap: 10px;
    width: min(260px, 30%);
}

.curated-card {
    position: relative;
    display: grid;
    grid-template-columns: 88px 1fr 22px;
    gap: 11px;
    align-items: center;
    min-height: 67px;
    padding: 8px 10px;
    border: 1px solid rgba(36, 92, 255, 0.2);
    border-radius: 10px;
    background: rgba(255, 254, 250, 0.92);
    box-shadow: 0 18px 38px rgba(49, 58, 93, 0.14);
}

.curated-card img {
    width: 88px;
    height: 50px;
    border-radius: 7px;
    object-fit: cover;
}

.curated-card span {
    display: block;
    height: 28px;
    border-radius: 999px;
    background:
        linear-gradient(90deg, #2762ff 0 58%, #dfe5f1 58% 100%);
}

.curated-card b {
    width: 21px;
    height: 21px;
    border-radius: 999px;
    background: #12a8b8;
    box-shadow: inset 0 0 0 5px rgba(255, 255, 255, 0.9);
}

.curated-card::after {
    content: "";
    position: absolute;
    right: -92px;
    top: 50%;
    width: 92px;
    height: 2px;
    background: linear-gradient(90deg, rgba(36, 92, 255, 0.55), rgba(36, 92, 255, 0));
}

.asset-river {
    left: 48%;
    top: 15%;
    z-index: 2;
    width: 42%;
    height: 60%;
    perspective: 840px;
}

.asset-river::before,
.asset-river::after {
    content: "";
    position: absolute;
    left: -4%;
    right: 2%;
    top: 31%;
    height: 44%;
    border-radius: 999px;
    background:
        repeating-linear-gradient(8deg, rgba(53, 140, 255, 0.18) 0 2px, transparent 2px 18px);
    filter: blur(1px);
    transform: rotate(6deg) skewX(-12deg);
    opacity: 0.82;
}

.asset-river::after {
    top: 44%;
    opacity: 0.28;
    transform: rotate(-2deg) skewX(-12deg);
}

.river-tile {
    position: absolute;
    width: clamp(34px, 4.5vw, 72px);
    aspect-ratio: 1.42;
    border: 2px solid rgba(255, 254, 250, 0.92);
    border-radius: 6px;
    object-fit: cover;
    box-shadow: 0 9px 20px rgba(49, 58, 93, 0.14);
    transform: translate3d(var(--x), var(--y), 0) rotate(var(--r)) scale(var(--s));
}

.river-tile:nth-child(4n+1) { object-position: 18% 50%; }
.river-tile:nth-child(4n+2) { object-position: 50% 18%; }
.river-tile:nth-child(4n+3) { object-position: 80% 52%; }
.river-tile:nth-child(4n) { object-position: 46% 80%; }

.tile-1 { --x: -4%; --y: 12%; --r: -2deg; --s: 1.08; }
.tile-2 { --x: 6%; --y: 3%; --r: 2deg; --s: 0.98; }
.tile-3 { --x: 12%; --y: 24%; --r: -3deg; --s: 1.04; }
.tile-4 { --x: 19%; --y: 10%; --r: 2deg; --s: 0.96; }
.tile-5 { --x: 25%; --y: 30%; --r: -1deg; --s: 1.02; }
.tile-6 { --x: 33%; --y: 16%; --r: 3deg; --s: 0.94; }
.tile-7 { --x: 40%; --y: 37%; --r: -2deg; --s: 0.92; }
.tile-8 { --x: 48%; --y: 21%; --r: 1deg; --s: 0.86; }
.tile-9 { --x: 56%; --y: 44%; --r: -3deg; --s: 0.82; }
.tile-10 { --x: 64%; --y: 27%; --r: 2deg; --s: 0.76; }
.tile-11 { --x: 72%; --y: 50%; --r: -2deg; --s: 0.68; }
.tile-12 { --x: 80%; --y: 34%; --r: 1deg; --s: 0.62; }
.tile-13 { --x: 3%; --y: 45%; --r: 2deg; --s: 1.0; }
.tile-14 { --x: 15%; --y: 54%; --r: -2deg; --s: 0.94; }
.tile-15 { --x: 27%; --y: 61%; --r: 1deg; --s: 0.86; }
.tile-16 { --x: 39%; --y: 66%; --r: -2deg; --s: 0.78; }
.tile-17 { --x: 52%; --y: 70%; --r: 2deg; --s: 0.7; }
.tile-18 { --x: 66%; --y: 73%; --r: -1deg; --s: 0.62; }
.tile-19 { --x: 76%; --y: 66%; --r: 2deg; --s: 0.56; }
.tile-20 { --x: 88%; --y: 55%; --r: -2deg; --s: 0.5; }
.tile-21 { --x: 21%; --y: -5%; --r: -1deg; --s: 0.7; opacity: 0.82; }
.tile-22 { --x: 39%; --y: -8%; --r: 2deg; --s: 0.62; opacity: 0.72; }
.tile-23 { --x: 58%; --y: -2%; --r: -2deg; --s: 0.54; opacity: 0.62; }
.tile-24 { --x: 74%; --y: 8%; --r: 1deg; --s: 0.48; opacity: 0.52; }
.tile-25 { --x: 88%; --y: 18%; --r: -1deg; --s: 0.42; opacity: 0.42; }
.tile-26 { --x: 94%; --y: 30%; --r: 2deg; --s: 0.38; opacity: 0.36; }
.tile-27 { --x: 98%; --y: 42%; --r: -2deg; --s: 0.34; opacity: 0.3; }
.tile-28 { --x: 101%; --y: 52%; --r: 1deg; --s: 0.3; opacity: 0.25; }
.tile-29 { --x: 43%; --y: 5%; --r: 2deg; --s: 0.78; }
.tile-30 { --x: 51%; --y: 31%; --r: -1deg; --s: 0.72; }
.tile-31 { --x: 61%; --y: 12%; --r: 2deg; --s: 0.66; }
.tile-32 { --x: 69%; --y: 39%; --r: -2deg; --s: 0.6; }

.upload-mini-board {
    right: 0;
    top: 45%;
    z-index: 6;
    width: min(330px, 38%);
    overflow: hidden;
    border: 1px solid rgba(98, 107, 124, 0.18);
    border-radius: 13px;
    background: rgba(255, 254, 250, 0.95);
    box-shadow: 0 24px 54px rgba(49, 58, 93, 0.15);
}

.upload-mini-board::before {
    content: "";
    position: absolute;
    left: -118px;
    top: 37%;
    width: 134px;
    height: 96px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(36, 92, 255, 0.2), transparent 68%);
    filter: blur(4px);
}

.mini-topbar {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 34px;
    padding: 0 12px;
    background: #171a20;
}

.mini-topbar span,
.mini-topbar i {
    display: block;
    height: 5px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.48);
}

.mini-topbar span {
    width: 46px;
}

.mini-topbar i {
    width: 18px;
    margin-left: auto;
}

.mini-topbar i + i {
    width: 8px;
    margin-left: 0;
}

.mini-tabs {
    display: grid;
    grid-template-columns: 0.9fr 1fr 0.8fr 0.7fr;
    gap: 12px;
    padding: 10px 14px;
    border-bottom: 1px solid rgba(223, 227, 238, 0.9);
}

.mini-tabs span {
    height: 6px;
    border-radius: 999px;
    background: #c8cfdd;
}

.mini-tabs span:first-child {
    background: #2762ff;
}

.mini-body {
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    gap: 12px;
    padding: 14px;
}

.mini-gallery {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 7px;
    align-content: start;
}

.mini-gallery img {
    width: 100%;
    aspect-ratio: 1.18;
    border-radius: 5px;
    object-fit: cover;
}

.mini-gallery img:nth-child(1) {
    box-shadow: 0 0 0 2px #2762ff;
}

.mini-inspector {
    display: grid;
    gap: 8px;
    align-content: start;
}

.mini-inspector img {
    width: 74%;
    aspect-ratio: 1.6;
    border-radius: 7px;
    object-fit: cover;
    justify-self: center;
}

.mini-inspector span,
.mini-inspector b,
.mini-inspector em {
    display: block;
    height: 18px;
    border: 1px solid rgba(223, 227, 238, 0.95);
    border-radius: 5px;
    background: #fffefa;
}

.mini-inspector b {
    height: 42px;
}

.mini-inspector em {
    width: 78%;
    height: 8px;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(90deg, #2762ff 0 68%, #dfe5f1 68% 100%);
}

.hero-system {
    display: grid;
    grid-template-columns: minmax(170px, 0.68fr) 54px minmax(300px, 1.2fr);
    gap: 14px;
    align-items: center;
    min-width: 0;
}

.queue-panel,
.adobe-board,
.csv-card,
.system-flow > div,
.faq-list details {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
}

.queue-panel {
    padding: 16px;
}

.panel-topline {
    display: grid;
    gap: 3px;
    margin-bottom: 14px;
}

.panel-topline span,
.csv-title span,
.queue-task span,
.adobe-tabs span,
.metadata-panel span,
.system-flow span {
    color: var(--muted);
    font-size: 12px;
    font-weight: 850;
}

.panel-topline strong {
    color: var(--ink);
    font-size: 18px;
    line-height: 1.2;
}

.queue-task {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 4px 10px;
    align-items: center;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fafbff;
}

.queue-task + .queue-task {
    margin-top: 8px;
}

.queue-task::before {
    content: "";
    grid-row: span 2;
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: var(--purple);
    box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.12);
}

.queue-task.is-uploading::before {
    background: var(--purple-dark);
    box-shadow: 0 0 0 4px rgba(55, 48, 163, 0.12);
}

.queue-task:not(.is-active):not(.is-uploading)::before {
    background: #9aa3b8;
    box-shadow: 0 0 0 4px rgba(154, 163, 184, 0.12);
}

.queue-task strong {
    color: var(--ink);
    font-size: 16px;
}

.task-name {
    color: var(--purple-dark) !important;
}

.transfer-lanes {
    display: grid;
    gap: 24px;
}

.transfer-lanes span {
    position: relative;
    display: block;
    height: 2px;
    background: linear-gradient(90deg, rgba(79, 70, 229, 0.15), rgba(79, 70, 229, 0.85));
}

.transfer-lanes span::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -1px;
    width: 9px;
    height: 9px;
    border-top: 2px solid var(--purple);
    border-right: 2px solid var(--purple);
    transform: translateY(-50%) rotate(45deg);
}

.adobe-board {
    overflow: hidden;
}

.adobe-nav {
    display: flex;
    align-items: center;
    gap: 18px;
    min-height: 44px;
    padding: 10px 14px;
    background: #202124;
    color: var(--white);
}

.adobe-nav span {
    color: #c8ccd6;
    font-size: 13px;
}

.adobe-tabs {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px 14px 10px;
    border-bottom: 1px solid var(--line);
}

.adobe-tabs strong {
    color: var(--purple);
    font-size: 14px;
}

.adobe-content {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 160px;
    gap: 14px;
    padding: 14px;
    background: #f7f8fb;
}

.adobe-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
}

.adobe-grid img {
    width: 100%;
    aspect-ratio: 1;
    border: 3px solid #ffffff;
    object-fit: cover;
    box-shadow: 0 4px 14px rgba(21, 24, 39, 0.08);
}

.metadata-panel {
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
}

.metadata-panel strong {
    display: block;
    margin: 4px 0 12px;
    color: var(--ink);
    font-size: 13px;
    line-height: 1.28;
}

.metadata-panel p {
    margin: 4px 0 0;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.4;
}

.section-inner {
    width: min(1160px, calc(100% - 40px));
    margin: 0 auto;
    padding: clamp(64px, 8vw, 104px) 0;
}

.section-head {
    max-width: 860px;
    margin-bottom: 30px;
}

.section-head h2,
.bottom-cta-section h2 {
    margin-bottom: 12px;
    font-size: clamp(30px, 4vw, 52px);
    line-height: 1.12;
    letter-spacing: 0;
    overflow-wrap: anywhere;
}

.section-subtitle {
    max-width: 780px;
    color: var(--muted);
    font-size: 18px;
    font-weight: 650;
}

.comparison-section,
.system-section {
    background: var(--soft);
    border-top: 1px solid rgba(223, 227, 238, 0.72);
    border-bottom: 1px solid rgba(223, 227, 238, 0.72);
}

.system-section .section-head,
.system-section .section-subtitle {
    max-width: none;
}

.system-section .section-subtitle {
    white-space: nowrap;
}

.comparison-table-section {
    padding-top: clamp(46px, 6vw, 78px);
    padding-bottom: clamp(46px, 6vw, 78px);
}

.comparison-table-shell {
    overflow-x: auto;
    border: 1px solid rgba(98, 107, 124, 0.2);
    border-radius: 8px;
    background: var(--white);
    box-shadow: 0 18px 48px rgba(39, 33, 95, 0.08);
    -webkit-overflow-scrolling: touch;
}

.upload-comparison-table {
    width: 100%;
    min-width: 860px;
    border-collapse: collapse;
    table-layout: fixed;
}

.upload-comparison-table caption {
    padding: 22px 24px;
    border-bottom: 1px solid var(--line);
    color: var(--ink);
    font-size: clamp(24px, 2.7vw, 38px);
    font-weight: 950;
    line-height: 1.12;
    text-align: left;
}

.upload-comparison-table th,
.upload-comparison-table td {
    padding: 18px 20px;
    border-bottom: 1px solid rgba(223, 227, 238, 0.92);
    text-align: left;
    vertical-align: top;
}

.upload-comparison-table tr:last-child th,
.upload-comparison-table tr:last-child td {
    border-bottom: 0;
}

.upload-comparison-table thead th {
    background: #f7f8fb;
    color: var(--muted);
    font-size: 12px;
    font-weight: 900;
}

.upload-comparison-table tbody th {
    color: var(--ink);
    font-size: 15px;
    font-weight: 900;
    line-height: 1.35;
}

.upload-comparison-table td {
    color: #444d60;
    font-size: 15px;
    font-weight: 720;
    line-height: 1.45;
    overflow-wrap: anywhere;
}

.upload-comparison-table .auto-cell {
    background: rgba(237, 243, 255, 0.72);
    color: var(--violet-ink);
    font-weight: 900;
}

.metric-col {
    width: 24%;
}

.manual-col {
    width: 38%;
}

.auto-col {
    width: 38%;
}

.deliverable-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
    gap: 24px;
    align-items: stretch;
}

.asset-gallery {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.asset-gallery figure {
    overflow: hidden;
    margin: 0;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: 0 14px 36px rgba(39, 33, 95, 0.08);
}

.asset-gallery img {
    width: 100%;
    aspect-ratio: 1.18;
    object-fit: cover;
}

.asset-gallery figcaption {
    min-height: 58px;
    padding: 10px 12px;
    color: var(--ink);
    font-size: 13px;
    font-weight: 750;
    line-height: 1.32;
}

.csv-card {
    display: grid;
    align-content: start;
    padding: 20px;
    box-shadow: 0 16px 44px rgba(39, 33, 95, 0.08);
}

.csv-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 16px;
}

.csv-title strong {
    color: var(--ink);
    font-size: 22px;
}

.csv-table {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
}

.csv-row {
    display: grid;
    grid-template-columns: 1fr 1.4fr 1.5fr 0.92fr;
    min-width: 0;
}

.csv-row + .csv-row {
    border-top: 1px solid var(--line);
}

.csv-row span {
    min-width: 0;
    padding: 12px;
    border-right: 1px solid var(--line);
    color: #3e4658;
    font-size: 13px;
    line-height: 1.35;
    overflow-wrap: anywhere;
}

.csv-row span:last-child {
    border-right: 0;
}

.csv-head span {
    background: var(--purple-soft);
    color: var(--violet-ink);
    font-weight: 900;
}

.system-flow {
    display: flex;
    gap: 0;
    overflow-x: auto;
    overflow-y: visible;
    padding: 12px 2px 18px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
}

.system-flow > div {
    position: relative;
    flex: 0 0 206px;
    min-height: 188px;
    margin-right: 32px;
    padding: 18px 16px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: 0 14px 32px rgba(39, 33, 95, 0.08);
    scroll-snap-align: start;
}

.system-flow > div::before {
    content: "";
    position: absolute;
    top: 36px;
    right: -32px;
    z-index: 1;
    width: 32px;
    height: 2px;
    background: rgba(36, 92, 255, 0.42);
}

.system-flow > div::after {
    content: "";
    position: absolute;
    top: 31px;
    right: -33px;
    z-index: 2;
    width: 10px;
    height: 10px;
    border-top: 2px solid rgba(36, 92, 255, 0.58);
    border-right: 2px solid rgba(36, 92, 255, 0.58);
    background: transparent;
    transform: rotate(45deg);
}

.system-flow > div:last-child {
    margin-right: 0;
}

.system-flow > div:last-child::before,
.system-flow > div:last-child::after {
    display: none;
}

.system-flow span {
    color: var(--purple);
}

.system-flow strong {
    display: block;
    margin: 10px 0 8px;
    color: var(--ink);
    font-size: 18px;
    line-height: 1.18;
}

.system-flow p {
    margin-bottom: 0;
    color: var(--muted);
    font-size: 14px;
    font-weight: 650;
    line-height: 1.48;
}

.bottom-cta-section {
    background: #f2f3fb;
    text-align: center;
}

.bottom-cta-section .section-inner {
    padding-bottom: clamp(92px, 12vw, 132px);
}

.bottom-cta-section p {
    max-width: 760px;
    margin-right: auto;
    margin-left: auto;
    color: #394154;
    font-size: 18px;
    font-weight: 650;
}

.faq-list {
    max-width: 820px;
    margin: 34px auto 0;
    display: grid;
    gap: 10px;
    text-align: left;
}

.faq-list details {
    box-shadow: none;
}

.faq-list summary {
    cursor: pointer;
    padding: 15px 16px;
    color: var(--ink);
    font-weight: 850;
    list-style: none;
}

.faq-list summary::-webkit-details-marker {
    display: none;
}

.faq-list summary::after {
    content: "+";
    float: right;
    color: var(--purple);
}

.faq-list details[open] summary::after {
    content: "-";
}

.faq-list p {
    margin: 0;
    padding: 0 16px 16px;
    color: var(--muted);
    font-size: 15px;
}

.mobile-sticky-cta {
    display: none;
}

@media (max-width: 1120px) {
    .hero,
    .deliverable-grid {
        grid-template-columns: 1fr;
    }

    .hero-basic {
        min-height: 0;
        gap: 28px;
        padding-top: 56px;
    }

    .hero-proof-panel {
        width: min(100%, 620px);
    }

    .hero-flow-visual {
        width: min(940px, 100%);
        margin: 10px auto 0;
    }

    .hero-system {
        max-width: 860px;
    }

}

@media (max-width: 920px) {
    .upload-comparison-table {
        min-width: 780px;
    }

    .system-section .section-subtitle {
        white-space: normal;
    }

    .hero-system {
        grid-template-columns: 1fr;
    }

    .transfer-lanes {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }

    .transfer-lanes span {
        transform: rotate(90deg);
        transform-origin: center;
    }
}

@media (max-width: 760px) {
    .public-nav-inner {
        min-height: 62px;
        padding: 0 16px;
    }

    .nav-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        position: absolute;
        left: 16px;
        right: 16px;
        top: 64px;
        padding: 16px;
        background: #fff;
        border: 1px solid var(--line);
        border-radius: 8px;
        box-shadow: 0 16px 36px rgba(21, 29, 59, 0.12);
        align-items: stretch;
        flex-direction: column;
    }

    .nav-links.open {
        display: flex;
    }

    .nav-menu {
        display: grid;
        gap: 4px;
        align-items: stretch;
    }

    .nav-menu-trigger {
        justify-content: space-between;
    }

    .nav-tools-dropdown {
        position: static;
        min-width: 0;
        padding: 4px 0 0 12px;
        border: 0;
        border-left: 1px solid var(--line);
        border-radius: 0;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
    }

    .nav-tools-dropdown::before {
        display: none;
    }

    .nav-tools-dropdown a {
        white-space: normal;
    }
}

@media (max-width: 720px) {
    body {
        padding-bottom: 72px;
    }

    .site-header {
        position: static;
        padding: 16px 18px;
    }

    .desktop-nav,
    .header-cta {
        display: none;
    }

    .hero,
    .section-inner {
        width: calc(100vw - 48px);
        max-width: 640px;
    }

    .hero {
        padding-top: 42px;
    }

    .hero-basic {
        width: calc(100vw - 48px);
        max-width: 640px;
        padding-top: 44px;
        padding-bottom: 42px;
    }

    .hero-basic h1 {
        max-width: 100%;
        font-size: clamp(31px, 9vw, 36px);
        line-height: 1.06;
        overflow-wrap: anywhere;
        word-break: break-word;
    }

    .hero-basic .hero-lead {
        font-size: 17px;
        overflow-wrap: anywhere;
        word-break: break-word;
    }

    .hero-basic .hero-mega-cta {
        width: 100%;
        min-height: 56px;
    }

    .hero-proof-panel {
        padding: 18px 18px;
        overflow-wrap: anywhere;
    }

    .comparison-table-shell {
        max-width: 100%;
        overflow-x: visible;
    }

    .upload-comparison-table {
        max-width: 100%;
        min-width: 0;
        table-layout: auto;
    }

    .upload-comparison-table colgroup,
    .upload-comparison-table thead {
        display: none;
    }

    .upload-comparison-table,
    .upload-comparison-table tbody,
    .upload-comparison-table tr,
    .upload-comparison-table th,
    .upload-comparison-table td {
        display: block;
        width: 100%;
    }

    .upload-comparison-table tbody tr {
        border-bottom: 1px solid rgba(223, 227, 238, 0.92);
    }

    .upload-comparison-table tbody tr:last-child {
        border-bottom: 0;
    }

    .upload-comparison-table tbody th {
        padding: 16px 16px 7px;
        border-bottom: 0;
        font-size: 16px;
    }

    .upload-comparison-table tbody td {
        padding: 9px 16px 12px;
        border-bottom: 0;
        word-break: break-word;
    }

    .upload-comparison-table tbody td::before {
        content: attr(data-label);
        display: block;
        margin-bottom: 4px;
        color: var(--muted);
        font-size: 11px;
        font-weight: 900;
        line-height: 1.2;
    }

    .upload-comparison-table .auto-cell {
        background: rgba(237, 243, 255, 0.82);
    }

    .hero-flow-visual {
        min-height: 370px;
        transform: translateX(-4%);
    }

    .source-stack {
        top: 12%;
        width: 29%;
        gap: 7px;
    }

    .source-card {
        grid-template-columns: 26px 1fr 14px;
        min-height: 38px;
        padding: 7px 8px;
        gap: 8px;
    }

    .source-card span {
        width: 25px;
        height: 25px;
        border-radius: 7px;
    }

    .source-card b {
        width: 14px;
        height: 14px;
    }

    .selection-gate {
        left: 25%;
        top: 25%;
        width: 58px;
        height: 160px;
        border-radius: 18px;
    }

    .selection-gate span {
        width: 30px;
        height: 30px;
    }

    .curated-stack {
        left: 33%;
        top: 16%;
        width: 30%;
        gap: 7px;
    }

    .curated-card {
        grid-template-columns: 56px 1fr 15px;
        min-height: 48px;
        padding: 6px 7px;
        gap: 7px;
    }

    .curated-card img {
        width: 56px;
        height: 34px;
    }

    .curated-card b {
        width: 15px;
        height: 15px;
    }

    .asset-river {
        left: 47%;
        top: 17%;
        width: 41%;
        height: 55%;
    }

    .river-tile {
        width: 34px;
        border-width: 1px;
    }

    .upload-mini-board {
        top: 50%;
        width: 40%;
        border-radius: 10px;
    }

    .mini-tabs,
    .mini-body {
        padding: 8px;
        gap: 7px;
    }

    .hero-copy,
    .hero-lead,
    .proof-line,
    .queue-panel,
    .adobe-board {
        max-width: calc(100vw - 48px);
    }

    h1 {
        font-size: 34px;
        line-height: 1.12;
        word-break: break-word;
    }

    .hero-lead {
        font-size: 17px;
        overflow-wrap: anywhere;
    }

    .proof-line {
        font-size: 15px;
        overflow-wrap: anywhere;
    }

    .adobe-content,
    .asset-gallery {
        grid-template-columns: 1fr;
    }

    .system-flow {
        display: grid;
        grid-template-columns: 1fr;
        gap: 14px;
        overflow: visible;
        padding: 8px 0 0 22px;
        border-left: 2px solid rgba(36, 92, 255, 0.28);
        scroll-snap-type: none;
    }

    .system-flow > div {
        flex: none;
        min-height: 0;
        margin-right: 0;
        padding: 16px;
    }

    .upload-comparison-table caption {
        padding: 18px;
        font-size: 24px;
    }

    .upload-comparison-table th,
    .upload-comparison-table td {
        padding: 14px 16px;
    }

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

    .csv-table {
        overflow-x: auto;
    }

    .csv-row {
        min-width: 720px;
    }

    .system-flow > div::before {
        display: none;
    }

    .system-flow > div::after {
        top: 20px;
        left: -30px;
        right: auto;
        display: block;
        width: 12px;
        height: 12px;
        border: 3px solid var(--soft);
        border-radius: 999px;
        background: var(--purple);
        transform: none;
    }

    .system-flow > div:last-child::after {
        display: block;
    }

    .mobile-sticky-cta {
        position: fixed;
        left: 14px;
        right: 14px;
        bottom: 14px;
        z-index: 40;
        display: inline-flex;
        min-height: 52px;
    }
}
