@font-face {
    font-family: "Rondeyvu Sans";
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url("fonts/PlusJakartaSans-Regular.ttf") format("truetype");
}

@font-face {
    font-family: "Rondeyvu Display";
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url("fonts/PlusJakartaDisplay-Bold.otf") format("opentype");
}

@font-face {
    font-family: "Rondeyvu Serif";
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url("fonts/CrimsonText-Regular.ttf") format("truetype");
}

:root {
    --blue: #0095d9;
    --blue-deep: #006b99;
    --blue-soft: #eaf7fc;
    --yellow: #ffd047;
    --ink: #032b43;
    --ink-soft: #465765;
    --paper: #f7f9f8;
    --white: #ffffff;
    --line: rgba(16, 32, 46, 0.14);
    --focus: #ffb000;
    --content: min(1180px, calc(100vw - 48px));
    --header-height: 78px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: "Rondeyvu Sans", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    text-rendering: optimizeLegibility;
}

body.menu-open {
    overflow: hidden;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

:focus-visible {
    outline: 3px solid var(--focus);
    outline-offset: 4px;
}

.skip-link {
    position: fixed;
    z-index: 100;
    top: 12px;
    left: 12px;
    padding: 10px 14px;
    color: var(--ink);
    background: var(--white);
    border-radius: 4px;
    transform: translateY(-150%);
    transition: transform 180ms ease;
}

.skip-link:focus {
    transform: translateY(0);
}

.site-header {
    position: absolute;
    z-index: 20;
    top: 0;
    right: 0;
    left: 0;
    height: var(--header-height);
    color: var(--white);
}

.nav-shell {
    width: var(--content);
    height: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.26);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    font-family: "Rondeyvu Display", sans-serif;
    font-size: 19px;
    line-height: 1;
}

.brand img {
    width: 34px;
    height: 34px;
    border-radius: 8px;
}

.nav-links,
.nav-actions {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-links a,
.nav-sign-in {
    color: rgba(255, 255, 255, 0.88);
    font-size: 14px;
    font-weight: 700;
    transition: color 160ms ease;
}

.nav-links a:hover,
.nav-sign-in:hover {
    color: var(--white);
}

.menu-button {
    display: none;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 0;
    color: inherit;
    background: transparent;
    cursor: pointer;
}

.menu-button::-webkit-details-marker {
    display: none;
}

.menu-button span,
.menu-button::before,
.menu-button::after {
    content: "";
    display: block;
    width: 24px;
    height: 2px;
    margin: 5px auto;
    background: currentColor;
    transition: transform 180ms ease, opacity 180ms ease;
}

.mobile-nav {
    display: none;
}

.mobile-nav-panel {
    position: absolute;
    top: calc(var(--header-height) - 1px);
    right: 0;
    left: 0;
    padding: 20px max(18px, calc((100vw - 720px) / 2));
    color: var(--ink);
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 40px rgba(16, 32, 46, 0.16);
}

.mobile-nav-panel a {
    min-height: 48px;
    display: flex;
    animation: none !important;
    border-bottom: 1px solid var(--line);
    font-weight: 700;
}

.mobile-nav-panel a::after {
    content: "\2192";
    color: var(--blue-deep);
}

.mobile-nav[open] .menu-button span {
    opacity: 0;
}

.mobile-nav[open] .menu-button::before {
    transform: translateY(7px) rotate(45deg);
}

.mobile-nav[open] .menu-button::after {
    transform: translateY(-7px) rotate(-45deg);
}

.button {
    min-height: 46px;
    padding: 12px 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
    transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button-light {
    color: var(--blue-deep);
    background: var(--white);
}

.button-outline-light {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.58);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
}

.button-blue {
    color: var(--white);
    background: var(--blue);
}

.eyebrow {
    margin: 0 0 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: lowercase;
}

.brand,
.nav-links a,
.nav-sign-in,
.button,
h1,
h2,
h3,
.section-index,
.editorial-point .number,
.stage-list,
.product-proof,
.product-chip,
.workflow-heading p,
.workflow-step,
.creator-tag,
.creator-marquee-track,
.creator-story-item strong,
.concept-label,
.concept-card-link,
.footer-links {
    text-transform: lowercase;
}

.eyebrow::before {
    content: "";
    width: 34px;
    height: 2px;
    background: currentColor;
}

.concept-a .hero {
    position: relative;
    min-height: 88svh;
    overflow: hidden;
    color: var(--white);
    background: var(--blue);
    isolation: isolate;
}

.concept-a .hero::before {
    content: "";
    position: absolute;
    z-index: -2;
    inset: 0;
    background-image: url("https://rondeyvu.azureedge.net/appasset/bg_image_landscape.jpg");
    background-position: center;
    background-size: cover;
    transform: scale(1.01);
    animation:
        hero-arrive 1.4s cubic-bezier(0.2, 0.7, 0.2, 1) both,
        hero-drift 18s ease-in-out 1.4s infinite alternate;
}

.concept-a .hero::after {
    content: "";
    position: absolute;
    z-index: -1;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(3, 43, 67, 0.9) 0%, rgba(3, 64, 91, 0.62) 48%, rgba(3, 64, 91, 0.08) 78%),
        linear-gradient(0deg, rgba(3, 43, 67, 0.46) 0%, transparent 38%);
    animation: hero-tone 10s ease-in-out infinite alternate;
}

.concept-a .hero-content {
    width: var(--content);
    min-height: 88svh;
    margin: 0 auto;
    padding: calc(var(--header-height) + 70px) 0 76px;
    display: flex;
    align-items: center;
}

.concept-a .hero-copy {
    width: min(690px, 68vw);
}

.concept-a h1 {
    margin: 0;
    max-width: 740px;
    font-family: "Rondeyvu Display", sans-serif;
    font-size: clamp(58px, 8vw, 112px);
    line-height: 0.9;
    letter-spacing: 0;
}

.concept-a .hero-deck {
    max-width: 610px;
    margin: 28px 0 0;
    color: rgba(255, 255, 255, 0.88);
    font-family: "Rondeyvu Serif", serif;
    font-size: clamp(22px, 2.3vw, 31px);
    line-height: 1.25;
}

.concept-a .hero-actions {
    margin-top: 36px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.concept-a .hero .eyebrow::before {
    transform-origin: left;
    animation: line-arrive 900ms cubic-bezier(0.2, 0.7, 0.2, 1) 180ms both;
}

.concept-a .button span {
    transition: transform 220ms ease;
}

.concept-a .button:hover span {
    transform: translateX(4px);
}

.concept-a .hero-note {
    position: absolute;
    right: max(24px, calc((100vw - 1180px) / 2));
    bottom: 34px;
    padding-left: 18px;
    border-left: 2px solid var(--yellow);
    color: rgba(255, 255, 255, 0.78);
    font-size: 12px;
    line-height: 1.45;
    text-transform: lowercase;
    animation: note-arrive 800ms cubic-bezier(0.2, 0.7, 0.2, 1) 520ms both;
}

.editorial-intro {
    width: var(--content);
    margin: 0 auto;
    padding: 86px 0 104px;
    display: grid;
    grid-template-columns: minmax(220px, 0.55fr) minmax(0, 1.45fr);
    gap: clamp(50px, 9vw, 130px);
}

.section-index {
    position: sticky;
    top: 28px;
    align-self: start;
    color: var(--blue-deep);
    font-size: 12px;
    font-weight: 700;
    text-transform: lowercase;
}

.section-index strong {
    display: block;
    margin-bottom: 14px;
    color: var(--ink);
    font-family: "Rondeyvu Display", sans-serif;
    font-size: 76px;
    line-height: 0.8;
}

.editorial-intro h2,
.editorial-callout h2 {
    margin: 0;
    font-family: "Rondeyvu Display", sans-serif;
    font-size: clamp(38px, 5vw, 68px);
    line-height: 1.02;
}

.editorial-intro .lead {
    margin: 28px 0 0;
    max-width: 750px;
    color: var(--ink-soft);
    font-family: "Rondeyvu Serif", serif;
    font-size: clamp(21px, 2vw, 28px);
    line-height: 1.45;
}

.editorial-points {
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--line);
}

.editorial-point {
    min-height: 200px;
    padding: 24px 24px 12px 0;
    border-right: 1px solid var(--line);
}

.editorial-point+.editorial-point {
    padding-left: 24px;
}

.editorial-point:last-child {
    border-right: 0;
}

.editorial-point .number {
    color: var(--blue-deep);
    font-size: 12px;
    font-weight: 700;
}

.editorial-point h3 {
    margin: 42px 0 8px;
    font-family: "Rondeyvu Display", sans-serif;
    font-size: 20px;
    line-height: 1.2;
}

.editorial-point p {
    margin: 0;
    color: var(--ink-soft);
    font-size: 14px;
}

.editorial-stage {
    color: var(--white);
    background: var(--blue-deep);
}

.stage-shell {
    width: var(--content);
    margin: 0 auto;
    padding: 100px 0;
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.6fr);
    align-items: center;
    gap: clamp(44px, 7vw, 96px);
}

.stage-image {
    position: relative;
    min-height: 580px;
    margin: 0;
    overflow: hidden;
    border-radius: 4px;
    background: #223445;
}

.stage-image img {
    width: auto;
    height: 100%;
    min-height: 580px;
    max-width: none;
    object-fit: contain;
    object-position: center;
}

.stage-slides {
    position: absolute;
    inset: 0;
}

.stage-slide {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    opacity: 0;
    pointer-events: none;
    transform: translateX(-50%);
    transition: opacity 700ms ease;
}

.stage-slide.is-active {
    z-index: 1;
    opacity: 1;
}

.carousel-button,
.carousel-toggle {
    border: 1px solid rgba(255, 255, 255, 0.28);
    color: var(--white);
    background: rgba(8, 18, 27, 0.72);
    font: inherit;
    cursor: pointer;
    backdrop-filter: blur(10px);
}

.carousel-button {
    position: absolute;
    z-index: 3;
    top: 50%;
    width: 42px;
    height: 42px;
    padding: 0;
    border-radius: 50%;
    font-size: 20px;
    transform: translateY(-50%);
}

.carousel-previous {
    left: 14px;
}

.carousel-next {
    right: 14px;
}

.carousel-meta {
    position: absolute;
    z-index: 3;
    top: 18px;
    right: 18px;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: rgba(255, 255, 255, 0.9);
    background: rgba(8, 18, 27, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    backdrop-filter: blur(10px);
}

.carousel-status,
.carousel-toggle {
    min-height: 34px;
    padding: 8px 11px;
    font-size: 11px;
    line-height: 1;
}

.carousel-status {
    font-variant-numeric: tabular-nums;
}

.carousel-toggle {
    border-width: 0 0 0 1px;
    border-radius: 0;
    color: rgba(255, 255, 255, 0.86);
    background: transparent;
}

.carousel-button:hover,
.carousel-button:focus-visible,
.carousel-toggle:hover,
.carousel-toggle:focus-visible {
    color: var(--blue-deep);
    background: var(--white);
    outline: none;
}

.stage-caption {
    position: absolute;
    z-index: 2;
    right: 18px;
    bottom: 18px;
    left: 18px;
    padding: 13px 15px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    color: rgba(255, 255, 255, 0.82);
    background: rgba(8, 18, 27, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 4px;
    font-size: 12px;
    backdrop-filter: blur(10px);
}

.stage-copy .eyebrow {
    color: var(--yellow);
}

.stage-copy h2 {
    margin: 0;
    font-family: "Rondeyvu Display", sans-serif;
    font-size: clamp(38px, 4vw, 61px);
    line-height: 1;
}

.stage-copy>p {
    margin: 25px 0 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 17px;
}

.stage-list {
    margin: 34px 0 0;
    padding: 0;
    list-style: none;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.stage-list li {
    padding: 17px 0;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
    font-size: 14px;
}

.stage-list span:last-child {
    color: rgba(255, 255, 255, 0.55);
}

.editorial-callout {
    padding: 110px 24px;
    text-align: center;
    background:
        linear-gradient(rgba(255, 255, 255, 0.91), rgba(255, 255, 255, 0.91)),
        url("images/caustics_soft_2.jpg") center / 620px repeat;
}

.editorial-callout h2 {
    max-width: 850px;
    margin: 0 auto;
}

.editorial-callout p {
    max-width: 580px;
    margin: 24px auto 34px;
    color: var(--ink-soft);
    font-family: "Rondeyvu Serif", serif;
    font-size: 22px;
}

.site-footer {
    color: rgba(255, 255, 255, 0.65);
    background: #07141d;
}

.footer-shell {
    width: var(--content);
    min-height: 150px;
    margin: 0 auto;
    padding: 40px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.footer-shell .brand {
    color: var(--white);
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    font-size: 13px;
}

.reveal {
    animation: reveal-up 700ms cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

.reveal-delay-1 {
    animation-delay: 120ms;
}

.reveal-delay-2 {
    animation-delay: 220ms;
}

@keyframes reveal-up {
    from {
        opacity: 0;
        transform: translateY(22px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes hero-arrive {
    from {
        opacity: 0.5;
        transform: scale(1.06);
    }

    to {
        opacity: 1;
        transform: scale(1.01);
    }
}

@keyframes hero-drift {
    from {
        transform: scale(1.01) translate3d(0, 0, 0);
    }

    to {
        transform: scale(1.045) translate3d(-0.5%, -0.35%, 0);
    }
}

@keyframes hero-tone {
    from {
        opacity: 1;
    }

    to {
        opacity: 0.88;
    }
}

@keyframes line-arrive {
    from {
        transform: scaleX(0);
    }

    to {
        transform: scaleX(1);
    }
}

@keyframes note-arrive {
    from {
        opacity: 0;
        transform: translateX(14px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes editorial-reveal {
    from {
        opacity: 0;
        transform: translateY(34px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@supports (animation-timeline: view()) {

    .concept-a .section-index,
    .concept-a .editorial-intro>div:last-child>.eyebrow,
    .concept-a .editorial-intro h2,
    .concept-a .editorial-intro .lead,
    .concept-a .editorial-point,
    .concept-a .stage-image,
    .concept-a .stage-copy>*,
    .concept-a .editorial-callout>* {
        animation: editorial-reveal linear both;
        animation-timeline: view();
        animation-range: entry 8% cover 32%;
    }

    .concept-a .editorial-point:nth-child(2),
    .concept-a .stage-copy>*:nth-child(2),
    .concept-a .editorial-callout>*:nth-child(2) {
        animation-range: entry 13% cover 37%;
    }

    .concept-a .editorial-point:nth-child(3),
    .concept-a .stage-copy>*:nth-child(3),
    .concept-a .editorial-callout>*:nth-child(3) {
        animation-range: entry 18% cover 42%;
    }

}

@media (max-width: 900px) {
    :root {
        --content: min(100% - 36px, 720px);
        --header-height: 70px;
    }

    .nav-links,
    .nav-actions .nav-sign-in {
        display: none;
    }

    .menu-button {
        display: block;
    }

    .mobile-nav {
        display: block;
    }

    .nav-actions {
        gap: 10px;
    }

    .nav-actions .button {
        min-height: 42px;
        padding: 10px 14px;
    }

    .concept-a .hero-copy {
        width: min(640px, 92vw);
    }

    .concept-a .hero-note {
        display: none;
    }

    .editorial-intro,
    .stage-shell {
        grid-template-columns: 1fr;
    }

    .section-index {
        position: static;
    }

    .stage-image,
    .stage-image img {
        min-height: 460px;
    }
}

@media (max-width: 620px) {
    :root {
        --content: calc(100% - 28px);
    }

    .brand span {
        display: none;
    }

    .concept-a .hero {
        min-height: 88svh;
    }

    .concept-a .hero::before {
        background-image: url("https://rondeyvu.azureedge.net/appasset/bg_image_landscape.jpg");
        background-position: center;
    }

    .concept-a .hero::after {
        background: linear-gradient(180deg, rgba(3, 43, 67, 0.88) 0%, rgba(3, 64, 91, 0.4) 64%, rgba(3, 43, 67, 0.74) 100%);
    }

    .concept-a .hero-content {
        min-height: 88svh;
        padding-top: calc(var(--header-height) + 52px);
        align-items: flex-start;
    }

    .concept-a h1 {
        font-size: clamp(51px, 17vw, 72px);
    }

    .concept-a .hero-deck {
        font-size: 21px;
    }

    .concept-a .hero-actions,
    .concept-a .hero-actions .button {
        width: 100%;
    }

    .editorial-intro {
        padding: 64px 0 76px;
        gap: 38px;
    }

    .section-index strong {
        font-size: 54px;
    }

    .editorial-points {
        grid-template-columns: 1fr;
    }

    .editorial-point,
    .editorial-point+.editorial-point {
        min-height: 0;
        padding: 20px 0 24px;
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .editorial-point h3 {
        margin-top: 20px;
    }

    .stage-shell {
        padding: 72px 0;
    }

    .stage-image,
    .stage-image img {
        min-height: 400px;
    }

    .stage-caption {
        align-items: flex-start;
        flex-direction: column;
        gap: 2px;
    }

    .footer-shell {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation: none !important;
        transition-duration: 0.01ms !important;
    }
}

/* Concept B: product-forward clarity */

.concept-b {
    background: var(--blue-soft);
}

.concept-b .site-header {
    color: var(--ink);
}

.concept-b .nav-shell {
    border-bottom-color: var(--line);
}

.concept-b .nav-links a,
.concept-b .nav-sign-in {
    color: var(--ink-soft);
}

.concept-b .nav-links a:hover,
.concept-b .nav-sign-in:hover {
    color: var(--ink);
}

.concept-b .button-light {
    color: var(--white);
    background: var(--blue);
}

.product-hero {
    position: relative;
    min-height: 92svh;
    padding-top: var(--header-height);
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(144, 211, 241, 0.38), rgba(234, 247, 252, 0) 60%),
        var(--blue-soft);
}

.product-hero::after {
    content: "";
    position: absolute;
    z-index: 0;
    right: -7vw;
    bottom: -12vw;
    width: 40vw;
    height: 40vw;
    border: 1px solid rgba(0, 149, 217, 0.18);
    border-radius: 50%;
    box-shadow:
        0 0 0 7vw rgba(144, 211, 241, 0.18),
        0 0 0 14vw rgba(0, 149, 217, 0.08);
}

.product-hero-shell {
    position: relative;
    z-index: 1;
    width: var(--content);
    min-height: calc(92svh - var(--header-height));
    margin: 0 auto;
    padding: 68px 0 36px;
    display: grid;
    grid-template-columns: minmax(330px, 0.72fr) minmax(520px, 1.28fr);
    align-items: center;
    gap: clamp(36px, 6vw, 86px);
}

.product-copy .eyebrow {
    color: var(--blue-deep);
}

.product-copy h1 {
    margin: 0;
    font-family: "Rondeyvu Display", sans-serif;
    font-size: clamp(52px, 6.5vw, 94px);
    line-height: 0.94;
}

.product-copy h1 span {
    display: block;
    color: var(--blue-deep);
}

.product-copy>p:not(.eyebrow) {
    max-width: 570px;
    margin: 25px 0 0;
    color: var(--ink-soft);
    font-size: 18px;
}

.product-actions {
    margin-top: 34px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.button-dark {
    color: var(--white);
    background: var(--blue);
}

.button-outline-dark {
    color: var(--blue-deep);
    border-color: rgba(0, 149, 217, 0.45);
    background: rgba(255, 255, 255, 0.5);
}

.product-proof {
    margin-top: 34px;
    padding-top: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 16px 26px;
    border-top: 1px solid var(--line);
    color: var(--ink-soft);
    font-size: 12px;
    font-weight: 700;
    text-transform: lowercase;
}

.product-proof span::before {
    content: "\2713";
    margin-right: 7px;
    color: var(--blue);
}

.product-visual {
    position: relative;
    min-width: 0;
    padding: 26px 26px 0 0;
}

.browser-frame {
    position: relative;
    height: min(640px, 67svh);
    overflow: hidden;
    border: 1px solid rgba(16, 32, 46, 0.12);
    border-radius: 8px;
    background: var(--white);
    box-shadow: 0 34px 80px rgba(16, 32, 46, 0.2);
}

.browser-bar {
    height: 42px;
    padding: 0 16px;
    display: flex;
    align-items: center;
    gap: 7px;
    border-bottom: 1px solid rgba(16, 32, 46, 0.1);
    background: #edf2f4;
}

.browser-bar span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #b7c1c8;
}

.browser-frame>img {
    width: 100%;
    height: calc(100% - 42px);
    object-fit: cover;
    object-position: top center;
}

.product-chip {
    position: absolute;
    right: 0;
    bottom: 52px;
    width: 185px;
    padding: 18px;
    color: var(--white);
    background: var(--blue-deep);
    border-radius: 6px;
    box-shadow: 0 18px 40px rgba(7, 91, 172, 0.28);
}

.product-chip strong {
    display: block;
    margin-bottom: 6px;
    font-family: "Rondeyvu Display", sans-serif;
    font-size: 22px;
    line-height: 1.1;
}

.product-chip span {
    color: rgba(255, 255, 255, 0.75);
    font-size: 12px;
}

.workflow-strip {
    color: var(--white);
    background: var(--blue-deep);
}

.workflow-shell {
    width: var(--content);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.8fr repeat(4, 1fr);
}

.workflow-heading,
.workflow-step {
    min-height: 190px;
    padding: 30px 24px;
    border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.workflow-heading {
    padding-left: 0;
}

.workflow-heading p {
    margin: 0;
    color: var(--yellow);
    font-size: 12px;
    font-weight: 700;
    text-transform: lowercase;
}

.workflow-heading h2 {
    margin: 12px 0 0;
    font-family: "Rondeyvu Display", sans-serif;
    font-size: 30px;
    line-height: 1.08;
}

.workflow-step span {
    color: var(--blue-light);
    font-size: 12px;
    font-weight: 700;
}

.workflow-step h3 {
    margin: 52px 0 0;
    font-family: "Rondeyvu Display", sans-serif;
    font-size: 18px;
}

.product-feature {
    width: var(--content);
    margin: 0 auto;
    padding: 104px 0;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.78fr);
    align-items: center;
    gap: clamp(50px, 8vw, 120px);
}

.product-feature-image {
    overflow: hidden;
    border-radius: 6px;
    box-shadow: 0 24px 65px rgba(16, 32, 46, 0.17);
}

.product-feature-image img {
    width: 100%;
    max-height: 700px;
    object-fit: cover;
    object-position: top center;
}

.product-feature-copy .eyebrow {
    color: var(--blue-deep);
}

.product-feature-copy h2 {
    margin: 0;
    font-family: "Rondeyvu Display", sans-serif;
    font-size: clamp(40px, 4.7vw, 67px);
    line-height: 1;
}

.product-feature-copy>p {
    margin: 25px 0 0;
    color: var(--ink-soft);
    font-size: 17px;
}

/* Concept C: creator energy */

.concept-c {
    color: var(--ink);
    background: var(--blue-soft);
}

.concept-c .site-header {
    color: var(--white);
    background: rgba(0, 149, 217, 0.9);
    backdrop-filter: blur(14px);
}

.concept-c .nav-shell {
    border-bottom-color: rgba(255, 255, 255, 0.24);
}

.concept-c .nav-links a,
.concept-c .nav-sign-in {
    color: rgba(255, 255, 255, 0.86);
}

.concept-c .button-light {
    color: var(--blue-deep);
    background: var(--white);
}

.creator-hero {
    min-height: 92svh;
    padding-top: var(--header-height);
    display: flex;
    flex-direction: column;
    color: var(--white);
    background: linear-gradient(145deg, var(--blue-light) 0%, var(--blue) 58%, var(--blue-deep) 100%);
}

.creator-hero-main {
    width: var(--content);
    flex: 1;
    margin: 0 auto;
    padding: 62px 0 38px;
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(500px, 1.2fr);
    align-items: center;
    gap: clamp(44px, 8vw, 120px);
}

.creator-copy .eyebrow {
    color: rgba(255, 255, 255, 0.86);
}

.creator-copy h1 {
    margin: 0;
    font-family: "Rondeyvu Display", sans-serif;
    font-size: clamp(55px, 7vw, 104px);
    line-height: 0.9;
}

.creator-copy h1 em {
    color: var(--white);
    font-family: "Rondeyvu Serif", serif;
    font-weight: 400;
}

.creator-copy>p:not(.eyebrow) {
    max-width: 520px;
    margin: 28px 0 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 18px;
}

.creator-actions {
    margin-top: 34px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.button-green {
    color: var(--blue-deep);
    background: var(--white);
}

.concept-c .button-outline-dark {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.58);
    background: rgba(255, 255, 255, 0.08);
}

.creator-collage {
    position: relative;
    height: min(650px, 67svh);
}

.creator-image-primary,
.creator-image-secondary,
.creator-product-peek {
    position: absolute;
    overflow: hidden;
    border-radius: 6px;
    box-shadow: 0 22px 55px rgba(24, 35, 24, 0.2);
}

.creator-image-primary {
    top: 0;
    right: 0;
    width: 76%;
    height: 76%;
}

.creator-image-primary img,
.creator-image-secondary img,
.creator-product-peek img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.creator-image-primary img {
    object-position: center;
}

.creator-image-secondary {
    bottom: 0;
    left: 0;
    width: 44%;
    height: 43%;
    border: 8px solid var(--blue);
}

.creator-image-secondary img {
    object-position: center;
}

.creator-product-peek {
    right: 4%;
    bottom: 1%;
    width: 44%;
    height: 35%;
    border: 8px solid var(--blue);
}

.creator-product-peek img {
    object-position: top center;
}

.creator-tag {
    position: absolute;
    z-index: 2;
    top: 52%;
    left: 6%;
    padding: 12px 15px;
    color: var(--ink);
    background: var(--yellow);
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
    transform: rotate(-3deg);
}

.creator-marquee {
    overflow: hidden;
    color: var(--white);
    background: var(--blue-deep);
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.creator-marquee-track {
    width: max-content;
    padding: 15px 0;
    display: flex;
    gap: 26px;
    font-family: "Rondeyvu Display", sans-serif;
    font-size: 16px;
    text-transform: lowercase;
    animation: marquee 26s linear infinite;
}

.creator-marquee-track span::after {
    content: "\2726";
    margin-left: 26px;
    color: var(--yellow);
}

.creator-story {
    width: var(--content);
    margin: 0 auto;
    padding: 110px 0;
    display: grid;
    grid-template-columns: minmax(280px, 0.6fr) minmax(0, 1.4fr);
    gap: clamp(50px, 10vw, 150px);
}

.creator-story h2 {
    margin: 0;
    font-family: "Rondeyvu Display", sans-serif;
    font-size: clamp(42px, 5vw, 72px);
    line-height: 0.98;
}

.creator-story-lead {
    margin: 0;
    color: #435143;
    font-family: "Rondeyvu Serif", serif;
    font-size: clamp(25px, 2.7vw, 38px);
    line-height: 1.32;
}

.creator-story-grid {
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: rgba(24, 35, 24, 0.18);
}

.creator-story-item {
    min-height: 180px;
    padding: 28px;
    background: var(--blue-soft);
}

.creator-story-item strong {
    color: var(--blue-deep);
    font-family: "Rondeyvu Display", sans-serif;
    font-size: 22px;
}

.creator-story-item p {
    margin: 24px 0 0;
    color: #536053;
    font-size: 14px;
}

.creator-cta {
    position: relative;
    min-height: 600px;
    padding: 90px 24px;
    display: grid;
    place-items: center;
    overflow: hidden;
    color: var(--white);
    text-align: center;
    background-image:
        linear-gradient(rgba(0, 83, 116, 0.38), rgba(0, 57, 82, 0.78)),
        url("https://rondeyvu.azureedge.net/backgroundimages/bg_about_01.jpg");
    background-position: center;
    background-size: cover;
}

.creator-cta-content {
    max-width: 850px;
}

.creator-cta h2 {
    margin: 0;
    font-family: "Rondeyvu Display", sans-serif;
    font-size: clamp(46px, 6vw, 82px);
    line-height: 0.95;
}

.creator-cta p {
    margin: 25px auto 34px;
    max-width: 570px;
    color: rgba(255, 255, 255, 0.82);
    font-family: "Rondeyvu Serif", serif;
    font-size: 24px;
}

@keyframes marquee {
    to {
        transform: translateX(-50%);
    }
}

/* Concept chooser */

.concept-index {
    min-height: 100svh;
    padding: 70px 24px;
    background: var(--blue-soft);
}

.concept-index-shell {
    width: min(1120px, 100%);
    margin: 0 auto;
}

.concept-index-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
}

.concept-index-header h1 {
    margin: 0;
    max-width: 700px;
    font-family: "Rondeyvu Display", sans-serif;
    font-size: clamp(48px, 7vw, 88px);
    line-height: 0.94;
}

.concept-index-header p {
    max-width: 370px;
    margin: 0;
    color: var(--ink-soft);
}

.concept-grid {
    margin-top: 60px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.concept-card {
    min-width: 0;
    overflow: hidden;
    color: var(--ink);
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 6px;
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.concept-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(16, 32, 46, 0.15);
}

.concept-preview {
    position: relative;
    height: 260px;
    overflow: hidden;
    background: #dbe5e9;
}

.concept-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.concept-preview-a::after,
.concept-preview-b::after,
.concept-preview-c::after {
    position: absolute;
    right: 16px;
    bottom: 14px;
    left: 16px;
    color: var(--white);
    font-family: "Rondeyvu Display", sans-serif;
    font-size: 31px;
    line-height: 1;
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.35);
}

.concept-preview-a::after {
    content: "shape live moments.";
}

.concept-preview-b::after {
    content: "every gathering has its place.";
}

.concept-preview-c::after {
    content: "find your people.";
}

.concept-card-body {
    padding: 24px;
}

.concept-label {
    color: var(--blue-deep);
    font-size: 11px;
    font-weight: 700;
    text-transform: lowercase;
}

.concept-card h2 {
    margin: 12px 0 8px;
    font-family: "Rondeyvu Display", sans-serif;
    font-size: 24px;
}

.concept-card p {
    min-height: 76px;
    margin: 0;
    color: var(--ink-soft);
    font-size: 14px;
}

.concept-card-link {
    margin-top: 22px;
    display: flex;
    justify-content: space-between;
    color: var(--blue-deep);
    font-size: 13px;
    font-weight: 700;
}

@media (max-width: 1040px) {
    .workflow-shell {
        grid-template-columns: repeat(2, 1fr);
    }

    .workflow-heading {
        grid-column: 1 / -1;
        min-height: 0;
    }

    .concept-grid {
        grid-template-columns: 1fr;
    }

    .concept-card {
        display: grid;
        grid-template-columns: minmax(280px, 0.9fr) minmax(300px, 1.1fr);
    }
}

@media (max-width: 960px) {

    .product-hero-shell,
    .creator-hero-main {
        padding-top: 44px;
        padding-bottom: 16px;
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .product-copy {
        max-width: 720px;
    }

    .product-visual {
        width: min(760px, 100%);
        height: 150px;
        padding: 0;
    }

    .browser-frame {
        height: 150px;
    }

    .product-chip {
        display: none;
    }

    .creator-collage {
        width: min(760px, 100%);
        height: 160px;
    }

    .creator-image-primary {
        width: 76%;
        height: 100%;
    }

    .creator-image-secondary {
        width: 38%;
        height: 70%;
    }

    .creator-product-peek {
        width: 38%;
        height: 66%;
    }
}

@media (max-width: 760px) {

    .product-hero-shell,
    .creator-hero-main {
        padding-top: 44px;
    }

    .creator-hero-main {
        padding-top: 32px;
        padding-bottom: 8px;
    }

    .product-copy h1,
    .creator-copy h1 {
        font-size: clamp(50px, 15vw, 76px);
    }

    .product-actions,
    .product-actions .button,
    .creator-actions,
    .creator-actions .button {
        width: 100%;
    }

    .product-visual {
        padding: 0;
    }

    .browser-frame {
        height: 150px;
    }

    .workflow-shell,
    .product-feature,
    .creator-story {
        grid-template-columns: 1fr;
    }

    .workflow-heading,
    .workflow-step {
        min-height: 0;
        padding: 24px 0;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    }

    .workflow-step h3 {
        margin-top: 20px;
    }

    .product-feature,
    .creator-story {
        padding: 74px 0;
    }

    .creator-collage {
        height: 140px;
    }

    .creator-image-primary {
        width: 86%;
    }

    .creator-image-secondary,
    .creator-product-peek {
        border-width: 5px;
    }

    .creator-story-grid {
        grid-template-columns: 1fr;
    }

    .creator-cta {
        min-height: 520px;
    }

    .concept-index {
        padding: 46px 18px;
    }

    .concept-index-header {
        align-items: flex-start;
        flex-direction: column;
    }

    .concept-card {
        display: block;
    }

    .concept-card p {
        min-height: 0;
    }
}