:root {
    --re-ink: #0b0f14;
    --re-ink-soft: #111820;
    --re-surface: #171f28;
    --re-paper: #f4f5f2;
    --re-white: #ffffff;
    --re-line: rgba(15, 31, 35, 0.13);
    --re-line-dark: rgba(255, 255, 255, 0.12);
    --re-teal: #3a8f95;
    --re-teal-bright: #64b6b8;
    --re-teal-pale: #dcebea;
    --re-muted: #657176;
    --re-muted-dark: #a8b2b6;
    --re-radius-sm: 14px;
    --re-radius: 22px;
    --re-radius-lg: 32px;
    --re-shadow: 0 24px 70px rgba(7, 18, 20, 0.13);
    --re-max: 1180px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body.re-landing {
    margin: 0;
    color: var(--re-ink);
    background: var(--re-paper);
    font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

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

.re-landing a {
    color: inherit;
    text-decoration: none;
}

.re-landing button,
.re-landing input {
    font: inherit;
}

.re-skip {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 1000;
    padding: 10px 14px;
    color: var(--re-white);
    background: var(--re-teal);
    border-radius: 8px;
    transform: translateY(-180%);
}

.re-skip:focus {
    transform: translateY(0);
}

.re-container {
    width: min(calc(100% - 48px), var(--re-max));
    margin-inline: auto;
}

.re-section {
    padding: 118px 0;
}

.re-section--dark {
    color: var(--re-white);
    background: var(--re-ink);
}

.re-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 22px;
    color: var(--re-teal);
    font-size: 12px;
    font-weight: 750;
    line-height: 1.2;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.re-section--dark .re-eyebrow,
.re-hero .re-eyebrow {
    color: var(--re-teal-bright);
}

.re-eyebrow::before {
    width: 30px;
    height: 1px;
    background: currentColor;
    content: "";
}

.re-heading {
    max-width: 780px;
    margin: 0;
    font-size: clamp(38px, 5vw, 62px);
    font-weight: 580;
    line-height: 1.02;
    letter-spacing: -0.045em;
}

.re-heading--small {
    font-size: clamp(34px, 4vw, 49px);
}

.re-lead {
    max-width: 680px;
    margin: 24px 0 0;
    color: var(--re-muted);
    font-size: 18px;
    line-height: 1.75;
}

.re-section--dark .re-lead {
    color: var(--re-muted-dark);
}

.re-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 100;
    border-bottom: 1px solid transparent;
    transition: background 180ms ease, border-color 180ms ease, backdrop-filter 180ms ease;
}

.re-header.is-scrolled,
.re-header.is-open {
    border-color: var(--re-line-dark);
    background: rgba(11, 15, 20, 0.9);
    backdrop-filter: blur(18px);
}

.re-nav {
    display: flex;
    min-height: 82px;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.re-brand {
    flex: 0 0 auto;
}

.re-brand img {
    width: 290px;
    height: auto;
}

.re-nav__links {
    display: flex;
    align-items: center;
    gap: 32px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
    font-weight: 550;
}

.re-nav__links a {
    transition: color 160ms ease;
}

.re-nav__links a:hover,
.re-nav__links a:focus-visible {
    color: var(--re-white);
}

.re-nav__actions {
    display: flex;
    align-items: center;
    gap: 13px;
}

.re-currency-switch {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    padding: 3px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.045);
}

.re-nav__links .re-currency-switch a {
    padding: 6px 8px;
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.58);
    font-size: 10px;
    font-weight: 750;
    letter-spacing: 0.06em;
}

.re-nav__links .re-currency-switch a:hover,
.re-nav__links .re-currency-switch a:focus-visible,
.re-nav__links .re-currency-switch a.is-active {
    color: #0b0f14;
    background: var(--re-teal-bright);
}

.re-menu-button {
    display: none;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 1px solid var(--re-line-dark);
    border-radius: 50%;
    color: var(--re-white);
    background: transparent;
    cursor: pointer;
}

.re-menu-button svg {
    width: 20px;
    height: 20px;
}

.re-button {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 21px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: -0.01em;
    transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.re-button:hover {
    transform: translateY(-2px);
}

.re-button:focus-visible,
.re-nav__links a:focus-visible,
.re-footer a:focus-visible,
.re-faq summary:focus-visible {
    outline: 3px solid rgba(100, 182, 184, 0.45);
    outline-offset: 4px;
}

.re-button--primary {
    color: #071214;
    background: var(--re-teal-bright);
}

.re-button--primary:hover {
    background: #78c3c5;
}

.re-button--outline {
    border-color: var(--re-line-dark);
    color: var(--re-white);
    background: rgba(255, 255, 255, 0.025);
}

.re-button--outline:hover {
    border-color: rgba(255, 255, 255, 0.32);
    background: rgba(255, 255, 255, 0.08);
}

.re-button--dark {
    color: #ffffff !important;
    background: var(--re-ink);
}

.re-button--dark:hover {
    color: #ffffff !important;
    background: var(--re-surface);
}

.re-button--wide {
    width: 100%;
}

.re-hero {
    position: relative;
    min-height: 920px;
    overflow: hidden;
    padding: 182px 0 94px;
    color: var(--re-white);
    background:
        radial-gradient(circle at 83% 8%, rgba(58, 143, 149, 0.2), transparent 33%),
        linear-gradient(155deg, #0b0f14 0%, #0f151c 58%, #0b1116 100%);
}

.re-hero::before {
    position: absolute;
    inset: 0;
    opacity: 0.16;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: linear-gradient(to bottom, black, transparent 80%);
    content: "";
}

.re-hero__content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 0.88fr) minmax(520px, 1.12fr);
    align-items: center;
    gap: 74px;
}

.re-hero h1 {
    max-width: 660px;
    margin: 0;
    font-size: clamp(50px, 6.25vw, 82px);
    font-weight: 560;
    line-height: 0.98;
    letter-spacing: -0.055em;
}

.re-hero h1 span {
    color: var(--re-teal-bright);
}

.re-hero__copy > p {
    max-width: 610px;
    margin: 28px 0 0;
    color: rgba(255, 255, 255, 0.67);
    font-size: 18px;
    line-height: 1.72;
}

.re-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 36px;
}

.re-hero__proof {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 22px;
    margin-top: 38px;
    color: rgba(255, 255, 255, 0.55);
    font-size: 12px;
    font-weight: 650;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.re-hero__proof span {
    display: inline-flex;
    align-items: center;
    gap: 9px;
}

.re-hero__proof span::before {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--re-teal-bright);
    content: "";
}

.re-product-stage {
    position: relative;
    padding: 22px 0 40px;
}

.re-product-frame {
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 22px;
    background: #dfe3e4;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.42);
    transform: perspective(1500px) rotateY(-4deg) rotateX(1deg);
}

.re-product-frame__bar {
    display: flex;
    height: 42px;
    align-items: center;
    gap: 7px;
    padding: 0 16px;
    background: #151c23;
}

.re-product-frame__bar i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
}

.re-product-frame img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    object-position: left top;
}

.re-float-card {
    position: absolute;
    z-index: 3;
    min-width: 190px;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 16px;
    color: var(--re-white);
    background: rgba(18, 25, 32, 0.92);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(14px);
}

.re-float-card--one {
    right: -34px;
    bottom: 0;
}

.re-float-card--two {
    top: 0;
    left: -28px;
}

.re-float-card small {
    display: block;
    color: var(--re-muted-dark);
    font-size: 11px;
    font-weight: 650;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.re-float-card strong {
    display: block;
    margin-top: 7px;
    font-size: 24px;
    font-weight: 600;
    letter-spacing: -0.04em;
}

.re-float-card em {
    color: var(--re-teal-bright);
    font-size: 12px;
    font-style: normal;
}

.re-signal {
    border-bottom: 1px solid var(--re-line-dark);
    color: var(--re-white);
    background: var(--re-ink);
}

.re-signal__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-inline: 1px solid var(--re-line-dark);
}

.re-signal__item {
    min-height: 140px;
    padding: 31px 28px;
    border-right: 1px solid var(--re-line-dark);
}

.re-signal__item:last-child {
    border-right: 0;
}

.re-signal__item strong {
    display: block;
    font-size: 17px;
    font-weight: 650;
}

.re-signal__item span {
    display: block;
    margin-top: 8px;
    color: var(--re-muted-dark);
    font-size: 13px;
}

.re-capability-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 62px;
}

.re-capability {
    position: relative;
    min-height: 350px;
    overflow: hidden;
    padding: 34px;
    border: 1px solid var(--re-line);
    border-radius: var(--re-radius);
    background: rgba(255, 255, 255, 0.52);
    transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.re-capability:hover {
    background: var(--re-white);
    box-shadow: var(--re-shadow);
    transform: translateY(-5px);
}

.re-capability__number {
    color: var(--re-teal);
    font-size: 12px;
    font-weight: 750;
    letter-spacing: 0.14em;
}

.re-capability__icon {
    display: grid;
    width: 54px;
    height: 54px;
    margin-top: 54px;
    place-items: center;
    border-radius: 16px;
    color: var(--re-teal);
    background: var(--re-teal-pale);
}

.re-capability__icon svg {
    width: 23px;
    height: 23px;
}

.re-capability h3 {
    margin: 25px 0 0;
    font-size: 24px;
    font-weight: 620;
    letter-spacing: -0.035em;
}

.re-capability p {
    margin: 13px 0 0;
    color: var(--re-muted);
    font-size: 15px;
}

.re-showcase {
    overflow: hidden;
    background: #e9ebe7;
}

.re-showcase__head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 50px;
}

.re-showcase__head .re-lead {
    max-width: 420px;
}

.re-showcase__grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 22px;
    margin-top: 64px;
}

.re-showcase-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 620px;
    overflow: hidden;
    border-radius: var(--re-radius-lg);
    background: var(--re-white);
    box-shadow: 0 18px 55px rgba(10, 24, 28, 0.08);
}

.re-showcase-card--dark {
    color: var(--re-white);
    background: var(--re-ink-soft);
}

.re-showcase-card__copy {
    padding: 42px;
}

.re-showcase-card__copy span {
    color: var(--re-teal);
    font-size: 12px;
    font-weight: 750;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.re-showcase-card--dark .re-showcase-card__copy span {
    color: var(--re-teal-bright);
}

.re-showcase-card h3 {
    max-width: 430px;
    margin: 16px 0 0;
    font-size: 32px;
    font-weight: 590;
    line-height: 1.12;
    letter-spacing: -0.04em;
}

.re-showcase-card p {
    max-width: 500px;
    margin: 17px 0 0;
    color: var(--re-muted);
}

.re-showcase-card--dark p {
    color: var(--re-muted-dark);
}

.re-showcase-card__image {
    position: relative;
    width: calc(100% - 56px);
    height: auto;
    aspect-ratio: 16 / 9;
    margin-top: 32px;
    margin-right: 28px;
    margin-bottom: 28px;
    margin-left: 28px;
    overflow: hidden;
    border: 1px solid var(--re-line);
    border-radius: 18px;
    padding: 10px 10px 0;
    background: linear-gradient(145deg, #f7faf8, #dfe8e4);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
}

.re-showcase-card--dark .re-showcase-card__image {
    background: linear-gradient(145deg, #26363d, #101a20);
}

.re-showcase-card__image img {
    width: 100%;
    height: 100%;
    border-radius: 10px 10px 0 0;
    /* Preserve the complete product capture; never crop or zoom the UI. */
    object-fit: contain;
    object-position: center center;
    background: #f7faf8;
    box-shadow: 0 8px 24px rgba(5, 18, 22, 0.16);
}

.re-showcase-card--dark .re-showcase-card__image img {
    background: #101a20;
}

.re-workflow__grid {
    display: grid;
    grid-template-columns: 0.72fr 1.28fr;
    gap: 90px;
    align-items: start;
}

.re-workflow__intro {
    position: sticky;
    top: 130px;
}

.re-workflow__list {
    border-top: 1px solid var(--re-line-dark);
}

.re-workflow__item {
    display: grid;
    grid-template-columns: 70px 1fr;
    gap: 25px;
    padding: 34px 0;
    border-bottom: 1px solid var(--re-line-dark);
}

.re-workflow__item > span {
    color: var(--re-teal-bright);
    font-size: 12px;
    font-weight: 750;
    letter-spacing: 0.15em;
}

.re-workflow__item h3 {
    margin: 0;
    font-size: 22px;
    font-weight: 600;
    letter-spacing: -0.025em;
}

.re-workflow__item p {
    margin: 9px 0 0;
    color: var(--re-muted-dark);
    font-size: 15px;
}

.re-pricing__head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 50px;
}

.re-pricing__note {
    max-width: 390px;
    margin: 0;
    color: var(--re-muted);
    font-size: 14px;
}

.re-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 62px;
}

.re-price-card {
    position: relative;
    display: flex;
    min-height: 590px;
    flex-direction: column;
    padding: 35px;
    border: 1px solid var(--re-line);
    border-radius: var(--re-radius);
    background: rgba(255, 255, 255, 0.55);
}

.re-price-card--featured {
    color: var(--re-white);
    border-color: var(--re-ink);
    background: var(--re-ink);
    box-shadow: var(--re-shadow);
    transform: translateY(-10px);
}

.re-price-card__badge {
    position: absolute;
    top: 21px;
    right: 21px;
    padding: 6px 10px;
    border-radius: 999px;
    color: #071214;
    background: var(--re-teal-bright);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.re-price-card__name {
    color: var(--re-teal);
    font-size: 13px;
    font-weight: 750;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.re-price-card--featured .re-price-card__name {
    color: var(--re-teal-bright);
}

.re-price-card__price {
    display: flex;
    align-items: end;
    gap: 8px;
    margin-top: 23px;
}

.re-price-card__price strong {
    font-size: 50px;
    font-weight: 590;
    line-height: 1;
    letter-spacing: -0.055em;
}

.re-price-card__price span {
    padding-bottom: 7px;
    color: var(--re-muted);
    font-size: 13px;
}

.re-price-card--featured .re-price-card__price span,
.re-price-card--featured .re-price-card__desc {
    color: var(--re-muted-dark);
}

.re-price-card__desc {
    min-height: 50px;
    margin: 22px 0 0;
    color: var(--re-muted);
    font-size: 14px;
}

.re-price-card ul {
    display: grid;
    gap: 16px;
    margin: 30px 0 34px;
    padding: 27px 0 0;
    border-top: 1px solid var(--re-line);
    list-style: none;
}

.re-price-card--featured ul {
    border-color: var(--re-line-dark);
}

.re-price-card li {
    display: flex;
    align-items: center;
    gap: 11px;
    font-size: 14px;
}

.re-price-card li svg {
    width: 17px;
    height: 17px;
    flex: 0 0 auto;
    color: var(--re-teal);
}

.re-price-card--featured li svg {
    color: var(--re-teal-bright);
}

.re-price-card .re-button {
    margin-top: auto;
}

.re-price-card--featured .re-button--dark {
    color: #071214;
    background: var(--re-teal-bright);
}

.re-faq__grid {
    display: grid;
    grid-template-columns: 0.75fr 1.25fr;
    gap: 90px;
}

.re-faq__list {
    border-top: 1px solid var(--re-line);
}

.re-faq details {
    border-bottom: 1px solid var(--re-line);
}

.re-faq summary {
    position: relative;
    padding: 28px 50px 28px 0;
    font-size: 18px;
    font-weight: 620;
    letter-spacing: -0.02em;
    list-style: none;
    cursor: pointer;
}

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

.re-faq summary::after {
    position: absolute;
    z-index: 1;
    top: 35px;
    right: 14px;
    width: 9px;
    height: 9px;
    border-right: 2px solid var(--re-teal);
    border-bottom: 2px solid var(--re-teal);
    color: var(--re-teal);
    content: "";
    transform: rotate(45deg);
    transition: transform 220ms ease;
}

.re-faq summary::before {
    position: absolute;
    top: 25px;
    right: 4px;
    display: grid;
    width: 30px;
    height: 30px;
    place-items: center;
    border: 1px solid var(--re-line);
    border-radius: 50%;
    content: "";
}

.re-faq details[open] summary::after {
    transform: rotate(225deg);
}

.re-faq details p {
    max-width: 700px;
    margin: -6px 0 27px;
    padding-right: 45px;
    color: var(--re-muted);
}

.re-cta {
    padding: 0 0 28px;
    background: var(--re-paper);
}

.re-cta__inner {
    position: relative;
    overflow: hidden;
    padding: 84px;
    border-radius: var(--re-radius-lg);
    color: var(--re-white);
    background:
        radial-gradient(circle at 88% 20%, rgba(100, 182, 184, 0.25), transparent 32%),
        var(--re-ink);
}

.re-cta__inner::after {
    position: absolute;
    right: -90px;
    bottom: -180px;
    width: 430px;
    height: 430px;
    border: 1px solid rgba(100, 182, 184, 0.24);
    border-radius: 50%;
    box-shadow: 0 0 0 50px rgba(100, 182, 184, 0.04), 0 0 0 100px rgba(100, 182, 184, 0.03);
    content: "";
}

.re-cta__inner h2 {
    position: relative;
    z-index: 2;
    max-width: 740px;
    margin: 0;
    font-size: clamp(40px, 5vw, 64px);
    font-weight: 570;
    line-height: 1.02;
    letter-spacing: -0.05em;
}

.re-cta__inner p {
    position: relative;
    z-index: 2;
    max-width: 610px;
    margin: 23px 0 33px;
    color: var(--re-muted-dark);
    font-size: 17px;
}

.re-cta__inner .re-button {
    position: relative;
    z-index: 2;
}

.re-footer {
    padding: 58px 0 34px;
    color: var(--re-muted-dark);
    background: var(--re-ink);
}

.re-footer__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding-bottom: 45px;
    border-bottom: 1px solid var(--re-line-dark);
}

.re-footer__top img {
    width: 290px;
}

.re-footer__links {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    font-size: 13px;
}

.re-footer__links a:hover {
    color: var(--re-white);
}

.re-footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-top: 29px;
    font-size: 12px;
}

.re-footer__bottom p {
    margin: 0;
}

.re-footer__bottom a {
    color: inherit;
    text-decoration: none;
}

.re-footer__bottom a:hover {
    color: var(--re-teal-bright);
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

@media (max-width: 1100px) {
    .re-nav__links {
        gap: 20px;
    }

    .re-brand img {
        width: 245px;
    }

    .re-hero {
        min-height: auto;
    }

    .re-hero__content {
        grid-template-columns: 1fr;
    }

    .re-hero__copy {
        max-width: 770px;
    }

    .re-product-stage {
        width: 88%;
        margin-inline: auto;
    }

    .re-showcase__grid,
    .re-workflow__grid,
    .re-faq__grid {
        gap: 44px;
    }
}

@media (max-width: 860px) {
    .re-container {
        width: min(calc(100% - 36px), var(--re-max));
    }

    .re-section {
        padding: 88px 0;
    }

    .re-nav {
        min-height: 74px;
    }

    .re-menu-button {
        display: grid;
    }

    .re-nav__links {
        position: absolute;
        top: 74px;
        left: 0;
        display: none;
        width: 100%;
        align-items: stretch;
        flex-direction: column;
        gap: 0;
        padding: 12px 18px 23px;
        border-bottom: 1px solid var(--re-line-dark);
        background: rgba(11, 15, 20, 0.98);
    }

    .re-header.is-open .re-nav__links {
        display: flex;
    }

    .re-nav__links a {
        padding: 13px 7px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    }

    .re-nav__links .re-button {
        margin-top: 14px;
        border-bottom: 0;
    }

    .re-currency-switch {
        align-self: flex-start;
        margin-top: 14px;
    }

    .re-nav__actions .re-button {
        display: none;
    }

    .re-hero {
        padding-top: 145px;
    }

    .re-hero__content {
        gap: 55px;
    }

    .re-product-stage {
        width: 95%;
    }

    .re-signal__grid,
    .re-capability-grid,
    .re-pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .re-signal__item:nth-child(2) {
        border-right: 0;
    }

    .re-signal__item:nth-child(-n+2) {
        border-bottom: 1px solid var(--re-line-dark);
    }

    .re-capability:last-child,
    .re-price-card:last-child {
        grid-column: 1 / -1;
    }

    .re-showcase__head,
    .re-pricing__head,
    .re-footer__top {
        align-items: start;
        flex-direction: column;
    }

    .re-showcase__grid,
    .re-workflow__grid,
    .re-faq__grid {
        grid-template-columns: 1fr;
    }

    .re-workflow__intro {
        position: static;
    }

    .re-showcase-card {
        min-height: 580px;
    }

    .re-cta__inner {
        padding: 64px 46px;
    }
}

@media (max-width: 620px) {
    .re-container {
        width: min(calc(100% - 28px), var(--re-max));
    }

    .re-section {
        padding: 72px 0;
    }

    .re-brand img,
    .re-footer__top img {
        width: 225px;
    }

    .re-hero {
        padding: 128px 0 70px;
    }

    .re-hero h1 {
        font-size: clamp(45px, 14vw, 62px);
    }

    .re-hero__actions {
        align-items: stretch;
        flex-direction: column;
    }

    .re-hero__actions .re-button {
        width: 100%;
    }

    .re-product-stage {
        width: 100%;
    }

    .re-product-frame {
        transform: none;
    }

    .re-float-card {
        display: none;
    }

    .re-signal__grid,
    .re-capability-grid,
    .re-pricing-grid {
        grid-template-columns: 1fr;
    }

    .re-signal__item,
    .re-signal__item:nth-child(2) {
        border-right: 0;
        border-bottom: 1px solid var(--re-line-dark);
    }

    .re-capability:last-child,
    .re-price-card:last-child {
        grid-column: auto;
    }

    .re-capability {
        min-height: 310px;
    }

    .re-price-card--featured {
        transform: none;
    }

    .re-showcase-card {
        min-height: 0;
    }

    .re-showcase-card__copy,
    .re-price-card {
        padding: 28px;
    }

    .re-showcase-card__image {
        width: calc(100% - 36px);
        height: auto;
        margin-top: 28px;
        margin-right: 18px;
        margin-bottom: 18px;
        margin-left: 18px;
        aspect-ratio: 16 / 10;
    }

    .re-workflow__item {
        grid-template-columns: 44px 1fr;
        gap: 12px;
    }

    .re-cta__inner {
        padding: 50px 28px;
        border-radius: var(--re-radius);
    }

    .re-footer__bottom {
        align-items: start;
        flex-direction: column;
    }
}
