:root {
    --ink: #10131b;
    --ink-2: #171c28;
    --ink-3: #232a38;
    --paper: #fffdf9;
    --cream: #f6f1e9;
    --cream-2: #ede5d9;
    --orange: #ff5b22;
    --orange-dark: #df4010;
    --orange-soft: #ffe4d8;
    --green: #22b66f;
    --green-dark: #11834d;
    --blue: #2684ff;
    --purple: #7b58e8;
    --text: #262c37;
    --muted: #6d7480;
    --line: rgba(16, 19, 27, .12);
    --line-light: rgba(255, 255, 255, .14);
    --shadow-sm: 0 12px 32px rgba(16, 19, 27, .08);
    --shadow-md: 0 28px 70px rgba(16, 19, 27, .15);
    --shadow-dark: 0 38px 90px rgba(0, 0, 0, .35);
    --radius-sm: 14px;
    --radius-md: 22px;
    --radius-lg: 34px;
    --shell: min(1200px, calc(100% - 48px));
    --header-height: 78px;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
    margin: 0;
    color: var(--text);
    background: var(--paper);
    font-family: "Manrope", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body.menu-open {
    overflow: hidden;
}

body.menu-open .site-header {
    z-index: 1000;
    background: var(--paper);
    backdrop-filter: none;
}

body.menu-open .mobile-conversion-bar {
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateY(100%);
}

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

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

button,
input,
select,
textarea {
    font: inherit;
}

button {
    color: inherit;
}

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

h1,
h2,
h3 {
    font-family: "Space Grotesk", "Manrope", sans-serif;
    letter-spacing: -.045em;
    line-height: 1.02;
}

h1 em,
h2 em {
    color: var(--orange);
    font-style: normal;
}

::selection {
    color: #fff;
    background: var(--orange);
}

:focus-visible {
    outline: 3px solid rgba(255, 91, 34, .5);
    outline-offset: 4px;
}

[hidden] {
    display: none !important;
}

.shell {
    width: var(--shell);
    margin-inline: auto;
}

.section {
    padding-block: 112px;
}

.skip-link {
    position: fixed;
    z-index: 1000;
    top: 10px;
    left: 10px;
    padding: 10px 16px;
    border-radius: 10px;
    color: #fff;
    background: var(--ink);
    transform: translateY(-160%);
    transition: transform .2s ease;
}

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

.eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 22px;
    color: var(--orange-dark);
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .14em;
    line-height: 1.2;
    text-transform: uppercase;
}

.eyebrow > span {
    width: 28px;
    height: 2px;
    background: currentColor;
}

.eyebrow--light {
    color: #ff956e;
}

.button {
    display: inline-flex;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px 22px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: .9rem;
    font-weight: 800;
    line-height: 1.2;
    text-align: center;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}

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

.button--compact {
    min-height: 44px;
    padding: 10px 18px;
    font-size: .8rem;
}

.button--large {
    min-height: 58px;
    padding: 16px 26px;
}

.button--primary {
    color: #fff;
    background: var(--ink);
    box-shadow: 0 10px 24px rgba(16, 19, 27, .18);
}

.button--primary:hover {
    background: var(--ink-3);
    box-shadow: 0 14px 30px rgba(16, 19, 27, .22);
}

.button--whatsapp {
    color: #fff;
    background: var(--green);
    box-shadow: 0 12px 28px rgba(34, 182, 111, .23);
}

.button--whatsapp:hover {
    background: var(--green-dark);
    box-shadow: 0 16px 34px rgba(34, 182, 111, .3);
}

.button--whatsapp img {
    flex: 0 0 auto;
    color: currentColor;
}

.button--block {
    width: 100%;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 4px;
    border-bottom: 1px solid currentColor;
    color: var(--ink);
    font-size: .9rem;
    font-weight: 800;
    line-height: 1.3;
    transition: color .2s ease, gap .2s ease;
}

.text-link:hover {
    gap: 16px;
    color: var(--orange-dark);
}

.text-link--light {
    color: #fff;
}

.text-link--light:hover {
    color: #ff9b76;
}

.reveal {
    opacity: 1;
    transform: none;
}

.js .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .7s ease, transform .7s cubic-bezier(.22, 1, .36, 1);
}

.js .reveal.is-visible {
    opacity: 1;
    transform: none;
}

/* Header */
.site-header {
    position: sticky;
    z-index: 100;
    top: 0;
    height: var(--header-height);
    border-bottom: 1px solid rgba(16, 19, 27, .08);
    background: rgba(255, 253, 249, .92);
    backdrop-filter: blur(18px);
    transition: box-shadow .25s ease, background .25s ease;
}

.site-header.is-scrolled {
    background: rgba(255, 253, 249, .98);
    box-shadow: 0 10px 30px rgba(16, 19, 27, .08);
}

.header-inner {
    display: flex;
    height: 100%;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.brand {
    display: inline-flex;
    width: 154px;
    flex: 0 0 auto;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: clamp(18px, 2vw, 30px);
}

.desktop-nav a,
.portal-link {
    position: relative;
    color: #424955;
    font-size: .78rem;
    font-weight: 700;
}

.desktop-nav a::after {
    position: absolute;
    right: 0;
    bottom: -8px;
    left: 0;
    height: 2px;
    background: var(--orange);
    content: "";
    transform: scaleX(0);
    transition: transform .2s ease;
}

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

.desktop-nav a:hover::after {
    transform: scaleX(1);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 18px;
}

.portal-link:hover {
    color: var(--orange-dark);
}

.menu-button {
    position: relative;
    z-index: 3;
    display: none;
    width: 46px;
    height: 46px;
    padding: 11px;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: #fff;
    cursor: pointer;
}

.menu-button span {
    display: block;
    width: 100%;
    height: 2px;
    margin: 4px 0;
    border-radius: 2px;
    background: var(--ink);
    transition: transform .2s ease, opacity .2s ease;
}

.menu-button[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.menu-button[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.menu-button[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

.mobile-menu {
    position: fixed;
    z-index: 2;
    inset: var(--header-height) 0 0;
    width: 100%;
    height: calc(100dvh - var(--header-height));
    max-height: calc(100dvh - var(--header-height));
    overflow-y: auto;
    padding: 24px;
    background: rgba(255, 253, 249, .99);
    box-shadow: 0 24px 60px rgba(16, 19, 27, .16);
    overscroll-behavior: contain;
}

.mobile-menu nav {
    display: flex;
    max-width: 520px;
    margin: 0 auto;
    flex-direction: column;
}

.mobile-menu nav > a:not(.button) {
    padding: 15px 4px;
    border-bottom: 1px solid var(--line);
    font-size: 1rem;
    font-weight: 700;
}

.mobile-menu .button {
    margin-top: 26px;
}

.mobile-menu .mobile-portal {
    border-bottom: 0 !important;
    color: var(--muted);
    font-size: .84rem !important;
    text-align: center;
}

/* Hero */
.hero {
    position: relative;
    min-height: 750px;
    overflow: hidden;
    color: #fff;
    background: var(--ink);
    isolation: isolate;
}

.hero-grid,
.final-cta__grid {
    position: absolute;
    z-index: -2;
    inset: 0;
    opacity: .22;
    background-image:
        linear-gradient(rgba(255, 255, 255, .08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .08) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: linear-gradient(to bottom, #000, transparent 85%);
}

.hero::after {
    position: absolute;
    z-index: -1;
    right: -10%;
    bottom: -45%;
    width: 70%;
    height: 75%;
    border-radius: 50%;
    background: rgba(255, 91, 34, .14);
    content: "";
    filter: blur(100px);
}

.hero-orb {
    position: absolute;
    z-index: -1;
    border-radius: 50%;
    filter: blur(4px);
}

.hero-orb--one {
    top: 75px;
    right: 5%;
    width: 280px;
    height: 280px;
    border: 1px solid rgba(255, 255, 255, .12);
}

.hero-orb--two {
    right: 21%;
    bottom: 50px;
    width: 110px;
    height: 110px;
    background: rgba(255, 91, 34, .2);
    filter: blur(45px);
}

.hero-layout {
    display: grid;
    min-height: 750px;
    align-items: center;
    grid-template-columns: .94fr 1.06fr;
    gap: 70px;
    padding-block: 80px;
}

.hero-copy {
    position: relative;
    z-index: 2;
}

.hero h1 {
    max-width: 680px;
    margin-bottom: 28px;
    color: #fff;
    font-size: clamp(3.4rem, 5.7vw, 6.15rem);
    letter-spacing: -.065em;
}

.hero h1 em {
    display: block;
}

.hero-lead {
    max-width: 650px;
    margin-bottom: 34px;
    color: #bfc5cf;
    font-size: clamp(1rem, 1.3vw, 1.17rem);
    line-height: 1.75;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 26px;
    margin-bottom: 42px;
}

.hero-assurances {
    display: grid;
    max-width: 680px;
    margin: 0;
    padding: 28px 0 0;
    border-top: 1px solid var(--line-light);
    list-style: none;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.hero-assurances li {
    display: flex;
    flex-direction: column;
}

.hero-assurances strong {
    color: #fff;
    font-size: .78rem;
}

.hero-assurances span {
    color: #878f9d;
    font-size: .7rem;
}

.hero-product {
    position: relative;
    z-index: 1;
    width: min(740px, 54vw);
    margin-right: -11vw;
}

.product-window {
    overflow: hidden;
    border: 1px solid rgba(16, 19, 27, .1);
    border-radius: 18px;
    background: #fff;
    box-shadow: var(--shadow-md);
}

.product-window--hero {
    border-color: rgba(255, 255, 255, .16);
    box-shadow: var(--shadow-dark);
    transform: perspective(1400px) rotateY(-4deg) rotateX(1deg);
    transform-origin: center left;
}

.window-bar {
    display: grid;
    min-height: 43px;
    align-items: center;
    padding: 0 16px;
    border-bottom: 1px solid rgba(16, 19, 27, .08);
    color: #737a85;
    background: #fbfbfc;
    font-size: .63rem;
    grid-template-columns: 1fr auto 1fr;
}

.window-dots {
    display: flex;
    gap: 6px;
}

.window-dots span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #d5d8dd;
}

.window-dots span:first-child {
    background: #ff7d55;
}

.window-address {
    padding: 5px 18px;
    border-radius: 999px;
    background: #eff1f4;
    text-align: center;
}

.window-status {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 6px;
}

.window-status > span,
.live-dot {
    display: inline-block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 0 4px rgba(34, 182, 111, .13);
}

.product-window > img {
    width: 100%;
}

.product-note {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 220px;
    padding: 14px 16px;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 16px;
    background: rgba(25, 30, 42, .92);
    box-shadow: 0 18px 45px rgba(0, 0, 0, .28);
    backdrop-filter: blur(16px);
}

.product-note--top {
    top: -45px;
    right: 12%;
}

.product-note--bottom {
    right: 11%;
    bottom: -54px;
}

.product-note__icon {
    display: grid;
    width: 36px;
    height: 36px;
    flex: 0 0 36px;
    place-items: center;
    border-radius: 10px;
    color: #fff;
    background: var(--orange);
    font-weight: 800;
}

.product-note .live-dot {
    width: 10px;
    height: 10px;
    margin: 0 11px;
}

.product-note div {
    display: flex;
    flex-direction: column;
}

.product-note strong {
    color: #fff;
    font-size: .7rem;
}

.product-note small {
    color: #8f97a5;
    font-size: .62rem;
}

/* Proof */
.client-proof {
    padding-block: 32px;
    border-bottom: 1px solid var(--line);
    background: var(--paper);
}

.client-proof__inner {
    display: grid;
    align-items: center;
    grid-template-columns: 1fr auto;
    gap: 40px;
}

.client-proof p {
    max-width: 340px;
    margin: 0;
    color: #6f7681;
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .08em;
    line-height: 1.5;
    text-transform: uppercase;
}

.client-logos {
    display: flex;
    align-items: center;
    gap: 30px;
}

.client-logos figure {
    display: grid;
    width: 72px;
    height: 72px;
    margin: 0;
    overflow: hidden;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #fff;
    filter: grayscale(.15);
}

.client-logos img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Positioning */
.position-section {
    background: var(--paper);
}

.editorial-heading {
    display: grid;
    align-items: end;
    margin-bottom: 62px;
    grid-template-columns: 1.3fr .7fr;
    gap: 80px;
}

.editorial-heading h2,
.section-heading h2,
.demo-heading h2,
.cycle-copy h2,
.pricing-copy h2,
.onboarding-copy h2,
.seo-heading h2,
.faq-heading h2 {
    margin-bottom: 0;
    color: var(--ink);
    font-size: clamp(2.6rem, 4.6vw, 5.1rem);
}

.editorial-heading > p {
    margin-bottom: 5px;
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.85;
}

.position-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 20px;
}

.position-card {
    display: flex;
    min-height: 420px;
    flex-direction: column;
    justify-content: space-between;
    padding: 34px;
    border-radius: var(--radius-md);
}

.position-card:nth-child(1) {
    grid-column: span 5;
}

.position-card:nth-child(2) {
    grid-column: span 4;
}

.position-card:nth-child(3) {
    grid-column: span 3;
}

.position-card--dark {
    color: #fff;
    background: var(--ink);
}

.position-card--orange {
    color: #fff;
    background: var(--orange);
}

.position-card--light {
    color: var(--ink);
    border: 1px solid var(--line);
    background: var(--cream);
}

.card-index {
    align-self: flex-start;
    padding: 7px 11px;
    border: 1px solid currentColor;
    border-radius: 999px;
    font-family: "Space Grotesk", sans-serif;
    font-size: .7rem;
    font-weight: 700;
    opacity: .65;
}

.card-kicker {
    margin-bottom: 16px;
    font-size: .67rem;
    font-weight: 800;
    letter-spacing: .12em;
    opacity: .65;
    text-transform: uppercase;
}

.position-card h3 {
    margin-bottom: 18px;
    color: inherit;
    font-size: clamp(1.75rem, 2.5vw, 2.7rem);
    line-height: 1.06;
}

.position-card p:not(.card-kicker) {
    margin: 0;
    font-size: .88rem;
    line-height: 1.75;
    opacity: .75;
}

.card-tag {
    align-self: flex-start;
    margin-top: 30px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .12);
    font-size: .66rem;
    font-weight: 800;
}

.position-card--light .card-tag {
    background: rgba(16, 19, 27, .07);
}

/* Audience */
.audience-section {
    border-block: 1px solid var(--line);
    background: var(--cream);
}

.section-heading {
    max-width: 900px;
    margin-bottom: 60px;
}

.section-heading--center {
    margin-inline: auto;
    text-align: center;
}

.section-heading--center .eyebrow {
    justify-content: center;
}

.section-heading p {
    max-width: 680px;
    margin: 24px auto 0;
    color: var(--muted);
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.audience-card {
    display: grid;
    min-height: 270px;
    align-items: start;
    padding: 32px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--paper);
    grid-template-columns: 88px minmax(0, 1fr);
    gap: 24px;
    transition: transform .25s ease, box-shadow .25s ease;
}

.audience-card > div:last-child {
    display: flex;
    min-width: 0;
    min-height: 100%;
    align-self: stretch;
    flex-direction: column;
}

.audience-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-sm);
}

.audience-symbol {
    display: grid;
    width: 82px;
    height: 82px;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    font-family: "Space Grotesk", sans-serif;
    font-size: 2.15rem;
    font-weight: 700;
    letter-spacing: -.08em;
}

.audience-card--salon .audience-symbol {
    background: var(--orange);
}

.audience-card--barber .audience-symbol {
    background: var(--ink);
}

.audience-card--clinic .audience-symbol {
    background: var(--purple);
}

.audience-card--studio .audience-symbol {
    color: var(--ink);
    background: #a8efce;
    font-size: 2rem;
}

.audience-card h3 {
    margin-bottom: 14px;
    color: var(--ink);
    font-size: 2rem;
}

.audience-card p {
    flex: 1;
    margin-bottom: 20px;
    color: var(--muted);
    font-size: .84rem;
}

.audience-card a {
    color: var(--ink);
    font-size: .75rem;
    font-weight: 800;
}

.audience-card a span {
    margin-left: 7px;
    color: var(--orange);
}

/* Product demo */
.product-demo {
    color: #fff;
    background: var(--ink);
}

.demo-heading {
    display: grid;
    align-items: end;
    margin-bottom: 62px;
    grid-template-columns: 1.2fr .8fr;
    gap: 70px;
}

.demo-heading h2 {
    color: #fff;
}

.demo-heading > p {
    margin-bottom: 4px;
    color: #a5adba;
}

.demo-layout {
    display: grid;
    align-items: start;
    grid-template-columns: 340px 1fr;
    gap: 30px;
}

.demo-tabs {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.demo-tab {
    display: grid;
    width: 100%;
    align-items: center;
    padding: 18px 16px;
    border: 0;
    border-left: 2px solid rgba(255, 255, 255, .13);
    color: #737c8a;
    background: transparent;
    cursor: pointer;
    text-align: left;
    grid-template-columns: 34px 1fr;
    gap: 12px;
    transition: color .2s ease, border-color .2s ease, background .2s ease;
}

.demo-tab:hover {
    color: #fff;
}

.demo-tab.is-active {
    border-left-color: var(--orange);
    color: #fff;
    background: rgba(255, 255, 255, .055);
}

.demo-tab > span {
    color: var(--orange);
    font-family: "Space Grotesk", sans-serif;
    font-size: .68rem;
    font-weight: 700;
}

.demo-tab div {
    display: flex;
    flex-direction: column;
}

.demo-tab strong {
    font-size: .83rem;
}

.demo-tab small {
    margin-top: 3px;
    color: #6f7784;
    font-size: .65rem;
}

.demo-stage .product-window {
    border-color: rgba(255, 255, 255, .14);
    box-shadow: var(--shadow-dark);
}

#demo-image {
    aspect-ratio: 1912 / 937;
    object-fit: cover;
    object-position: top left;
    opacity: 1;
    transition: opacity .18s ease;
}

#demo-image.is-changing {
    opacity: .25;
}

.demo-caption {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 18px 4px 0;
}

.demo-caption p {
    margin: 0;
    color: #c8ced7;
    font-size: .76rem;
}

.demo-caption span {
    flex: 0 0 auto;
    color: #747d8a;
    font-size: .62rem;
    font-weight: 700;
    text-transform: uppercase;
}

.demo-action {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 24px;
    margin-top: 46px;
}

.demo-action p {
    margin: 0;
    color: #a5adba;
    font-size: .8rem;
}

/* Cycle */
.cycle-section {
    background: var(--paper);
}

.cycle-layout {
    display: grid;
    grid-template-columns: .78fr 1.22fr;
    gap: 110px;
}

.cycle-copy {
    position: sticky;
    top: calc(var(--header-height) + 42px);
    align-self: start;
}

.cycle-copy h2 {
    margin-bottom: 26px;
    font-size: clamp(2.7rem, 4.4vw, 4.9rem);
}

.cycle-copy > p {
    margin-bottom: 32px;
    color: var(--muted);
}

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

.cycle-list li {
    display: grid;
    min-height: 160px;
    align-items: start;
    padding: 34px 0;
    border-bottom: 1px solid var(--line);
    grid-template-columns: 64px 1fr;
    gap: 20px;
}

.cycle-list li:first-child {
    border-top: 1px solid var(--line);
}

.cycle-list > li > span {
    display: grid;
    width: 46px;
    height: 46px;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: var(--ink);
    font-family: "Space Grotesk", sans-serif;
    font-size: .72rem;
    font-weight: 700;
}

.cycle-list div {
    display: flex;
    flex-direction: column;
}

.cycle-list strong {
    margin-bottom: 7px;
    color: var(--ink);
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.45rem;
    letter-spacing: -.03em;
}

.cycle-list small {
    max-width: 590px;
    color: var(--muted);
    font-size: .86rem;
    line-height: 1.7;
}

/* Capabilities */
.capabilities {
    border-block: 1px solid var(--line);
    background: var(--cream);
}

.capabilities .section-heading {
    max-width: 980px;
}

.experience-grid {
    display: grid;
    margin-bottom: 58px;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.experience-card {
    min-height: 430px;
    padding: 30px;
    border-radius: var(--radius-md);
}

.experience-card--manager {
    color: #fff;
    background: var(--ink);
}

.experience-card--professional {
    color: var(--ink);
    background: var(--orange-soft);
}

.experience-card--client {
    color: var(--ink);
    background: #c7f5df;
}

.experience-topline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 78px;
}

.experience-topline span {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border: 1px solid currentColor;
    border-radius: 50%;
    font-size: .66rem;
    font-weight: 800;
    opacity: .65;
}

.experience-topline small {
    font-size: .65rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    opacity: .65;
}

.experience-card h3 {
    margin-bottom: 18px;
    color: inherit;
    font-size: 2.2rem;
}

.experience-card > p {
    min-height: 96px;
    margin-bottom: 24px;
    font-size: .84rem;
    opacity: .72;
}

.experience-card ul {
    margin: 0;
    padding: 20px 0 0;
    border-top: 1px solid currentColor;
    list-style: none;
    opacity: .72;
}

.experience-card li {
    padding: 4px 0;
    font-size: .75rem;
    font-weight: 700;
}

.experience-card li::before {
    margin-right: 8px;
    content: "↳";
}

.feature-board {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--line);
}

.feature-tile {
    min-height: 250px;
    padding: 28px;
    background: var(--paper);
}

.feature-tile--wide {
    display: grid;
    align-items: end;
    grid-column: span 2;
    grid-template-columns: 70px 1fr;
    gap: 22px;
}

.feature-code {
    display: grid;
    width: 54px;
    height: 54px;
    place-items: center;
    border-radius: 15px;
    color: #fff;
    background: var(--orange);
    font-family: "Space Grotesk", sans-serif;
    font-size: .75rem;
    font-weight: 700;
}

.feature-tile h3 {
    margin: 70px 0 12px;
    color: var(--ink);
    font-size: 1.35rem;
    line-height: 1.18;
}

.feature-tile--wide h3 {
    margin-top: 0;
    font-size: 1.7rem;
}

.feature-tile p {
    margin: 0;
    color: var(--muted);
    font-size: .76rem;
    line-height: 1.7;
}

/* Onboarding */
.onboarding {
    padding-bottom: 0;
    background: var(--paper);
}

.onboarding-card {
    display: grid;
    padding: 62px;
    overflow: hidden;
    border-radius: var(--radius-lg);
    color: #fff;
    background:
        radial-gradient(circle at 82% 12%, rgba(255, 91, 34, .38), transparent 31%),
        var(--ink);
    grid-template-columns: .9fr 1.1fr;
    gap: 80px;
}

.onboarding-copy h2 {
    margin-bottom: 24px;
    color: #fff;
    font-size: clamp(2.45rem, 3.9vw, 4.1rem);
}

.onboarding-copy p {
    margin: 0;
    color: #aab1bd;
}

.onboarding-steps {
    display: flex;
    flex-direction: column;
}

.onboarding-steps > div {
    display: grid;
    min-height: 110px;
    align-items: center;
    padding: 22px 0;
    border-bottom: 1px solid var(--line-light);
    grid-template-columns: 48px 1fr;
    column-gap: 18px;
}

.onboarding-steps > div:first-child {
    border-top: 1px solid var(--line-light);
}

.onboarding-steps span {
    grid-row: span 2;
    color: var(--orange);
    font-family: "Space Grotesk", sans-serif;
    font-size: .73rem;
    font-weight: 700;
}

.onboarding-steps strong {
    align-self: end;
    color: #fff;
    font-size: .87rem;
}

.onboarding-steps small {
    align-self: start;
    color: #8d95a2;
    font-size: .68rem;
}

/* Pricing */
.pricing-section {
    background: var(--paper);
}

.pricing-layout {
    display: grid;
    align-items: center;
    grid-template-columns: 1fr .78fr;
    gap: 110px;
}

.pricing-copy h2 {
    margin-bottom: 26px;
    font-size: clamp(3rem, 4.8vw, 5rem);
}

.pricing-copy > p {
    max-width: 650px;
    margin-bottom: 32px;
    color: var(--muted);
}

.pricing-copy ul {
    display: grid;
    margin: 0;
    padding: 28px 0 0;
    border-top: 1px solid var(--line);
    list-style: none;
    grid-template-columns: repeat(2, 1fr);
    gap: 13px 24px;
}

.pricing-copy li {
    color: #535a65;
    font-size: .78rem;
    font-weight: 700;
}

.pricing-copy li span {
    margin-right: 9px;
    color: var(--green-dark);
}

.price-card {
    position: relative;
    padding: 38px;
    border: 1px solid rgba(16, 19, 27, .08);
    border-radius: 28px;
    background: var(--cream);
    box-shadow: var(--shadow-md);
}

.price-card::before {
    position: absolute;
    top: 0;
    right: 30px;
    left: 30px;
    height: 4px;
    border-radius: 0 0 8px 8px;
    background: var(--orange);
    content: "";
}

.price-card__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 54px;
}

.price-card__top > span,
.price-card__top > small {
    padding: 7px 11px;
    border-radius: 999px;
    font-size: .63rem;
    font-weight: 800;
}

.price-card__top > span {
    color: var(--orange-dark);
    background: var(--orange-soft);
}

.price-card__top > small {
    color: var(--green-dark);
    background: #d9f6e8;
}

.price-card__label {
    margin-bottom: 6px;
    color: var(--muted);
    font-size: .75rem;
    font-weight: 700;
}

.price {
    display: flex;
    align-items: flex-start;
    margin-bottom: 18px;
    color: var(--ink);
    line-height: 1;
}

.price sup {
    margin: 13px 8px 0 0;
    font-size: 1rem;
    font-weight: 800;
}

.price strong {
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(4.2rem, 6vw, 6.5rem);
    letter-spacing: -.08em;
}

.price > span {
    align-self: flex-end;
    margin: 0 0 12px 7px;
    color: var(--muted);
    font-size: .75rem;
    font-weight: 700;
}

.price-card__description {
    margin-bottom: 28px;
    color: var(--muted);
    font-size: .82rem;
}

.price-card__assurance {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-top: 24px;
    padding: 18px 3px 0;
    border-top: 1px solid var(--line);
}

.price-card__assurance p {
    margin: 0;
    color: var(--muted);
    font-size: .68rem;
    line-height: 1.5;
}

.price-card__assurance strong {
    display: block;
    color: var(--ink);
}

/* SEO */
.seo-section {
    border-block: 1px solid var(--line);
    background: var(--cream);
}

.seo-layout {
    display: grid;
    grid-template-columns: .95fr 1.05fr;
    gap: 90px;
}

.seo-heading h2 {
    font-size: clamp(2.5rem, 4.2vw, 4.5rem);
}

.seo-copy {
    padding-left: 60px;
    border-left: 1px solid var(--line);
}

.seo-copy p {
    color: #5e6570;
    line-height: 1.9;
}

.seo-copy p:last-child {
    margin-bottom: 0;
}

/* FAQ */
.faq-section {
    background: var(--paper);
}

.faq-layout {
    display: grid;
    grid-template-columns: .72fr 1.28fr;
    gap: 100px;
}

.faq-heading {
    position: sticky;
    top: calc(var(--header-height) + 42px);
    align-self: start;
}

.faq-heading h2 {
    margin-bottom: 24px;
    font-size: clamp(2.7rem, 4.2vw, 4.5rem);
}

.faq-heading > p {
    margin-bottom: 28px;
    color: var(--muted);
}

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

.faq-item:first-child {
    border-top: 1px solid var(--line);
}

.faq-item summary {
    display: grid;
    align-items: center;
    padding: 25px 0;
    color: var(--ink);
    cursor: pointer;
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: -.025em;
    list-style: none;
    grid-template-columns: 1fr 28px;
    gap: 20px;
}

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

.faq-item summary span {
    position: relative;
    width: 26px;
    height: 26px;
    border: 1px solid var(--line);
    border-radius: 50%;
}

.faq-item summary span::before,
.faq-item summary span::after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 9px;
    height: 1px;
    background: var(--ink);
    content: "";
    transform: translate(-50%, -50%);
}

.faq-item summary span::after {
    transform: translate(-50%, -50%) rotate(90deg);
    transition: transform .2s ease;
}

.faq-item[open] summary span::after {
    transform: translate(-50%, -50%) rotate(0);
}

.faq-item > p {
    max-width: 690px;
    margin: -4px 42px 26px 0;
    color: var(--muted);
    font-size: .86rem;
    line-height: 1.8;
}

/* Final */
.final-cta {
    position: relative;
    overflow: hidden;
    color: #fff;
    background:
        radial-gradient(circle at 86% 30%, rgba(255, 91, 34, .38), transparent 28%),
        var(--ink);
    isolation: isolate;
}

.final-cta::after {
    position: absolute;
    z-index: -1;
    right: -70px;
    bottom: -150px;
    width: 430px;
    height: 430px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 50%;
    content: "";
}

.final-cta__inner {
    padding-block: 110px;
    text-align: center;
}

.final-cta__eyebrow {
    margin-bottom: 18px;
    color: #ff9b76;
    font-size: .7rem;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.final-cta h2 {
    max-width: 920px;
    margin: 0 auto 22px;
    color: #fff;
    font-size: clamp(3rem, 6.3vw, 6.8rem);
}

.final-cta__inner > p:not(.final-cta__eyebrow) {
    max-width: 650px;
    margin: 0 auto 34px;
    color: #aab1bd;
}

.final-cta__actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
}

/* Footer */
.site-footer {
    padding-top: 72px;
    color: #9aa2af;
    background: #090b10;
}

.footer-grid {
    display: grid;
    padding-bottom: 62px;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 60px;
}

.brand--footer {
    width: 175px;
    margin-bottom: 24px;
}

.footer-brand p {
    max-width: 380px;
    font-size: .78rem;
}

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

.footer-column h2 {
    margin-bottom: 13px;
    color: #fff;
    font-family: "Manrope", sans-serif;
    font-size: .72rem;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.footer-column a {
    font-size: .76rem;
    transition: color .2s ease;
}

.footer-column a:hover {
    color: #fff;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-block: 22px;
    border-top: 1px solid rgba(255, 255, 255, .09);
}

.footer-bottom p {
    margin: 0;
    font-size: .67rem;
}

.mobile-conversion-bar {
    display: none;
}

@media (max-width: 1120px) {
    :root {
        --shell: min(100% - 40px, 1040px);
    }

    .desktop-nav {
        gap: 17px;
    }

    .desktop-nav a:nth-last-child(-n + 2) {
        display: none;
    }

    .hero-layout {
        min-height: 700px;
        gap: 42px;
    }

    .hero-product {
        margin-right: -18vw;
    }

    .position-card:nth-child(1),
    .position-card:nth-child(2) {
        grid-column: span 6;
    }

    .position-card:nth-child(3) {
        min-height: 320px;
        grid-column: span 12;
    }

    .cycle-layout,
    .pricing-layout {
        gap: 65px;
    }

    .feature-board {
        grid-template-columns: repeat(2, 1fr);
    }

    .onboarding-card {
        padding: 50px;
        gap: 48px;
    }
}

@media (max-width: 900px) {
    :root {
        --header-height: 72px;
    }

    .section {
        padding-block: 86px;
    }

    .desktop-nav,
    .portal-link,
    .header-actions > .button {
        display: none;
    }

    .menu-button {
        display: block;
    }

    .hero {
        min-height: auto;
    }

    .hero-layout {
        min-height: auto;
        grid-template-columns: 1fr;
        gap: 76px;
        padding-block: 72px 108px;
    }

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

    .hero h1 {
        font-size: clamp(3.7rem, 10.5vw, 6rem);
    }

    .hero-product {
        width: 96%;
        margin: 0 auto;
    }

    .product-window--hero {
        transform: none;
    }

    .client-proof__inner,
    .editorial-heading,
    .demo-heading,
    .cycle-layout,
    .pricing-layout,
    .seo-layout,
    .faq-layout {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .client-proof__inner {
        text-align: center;
    }

    .client-proof p {
        margin-inline: auto;
    }

    .client-logos {
        justify-content: center;
    }

    .editorial-heading {
        align-items: start;
    }

    .audience-card {
        min-height: 260px;
        padding: 28px;
        grid-template-columns: 76px minmax(0, 1fr);
        gap: 20px;
    }

    .audience-symbol {
        width: 70px;
        height: 70px;
        font-size: 1.85rem;
    }

    .demo-layout {
        grid-template-columns: 1fr;
    }

    .demo-tabs {
        display: grid;
        overflow-x: auto;
        padding-bottom: 8px;
        grid-auto-columns: minmax(170px, 1fr);
        grid-auto-flow: column;
        scrollbar-width: thin;
    }

    .demo-tab {
        border-bottom: 2px solid rgba(255, 255, 255, .13);
        border-left: 0;
    }

    .demo-tab.is-active {
        border-bottom-color: var(--orange);
    }

    .cycle-copy,
    .faq-heading {
        position: static;
    }

    .experience-grid {
        grid-template-columns: 1fr;
    }

    .experience-card {
        min-height: auto;
    }

    .experience-topline {
        margin-bottom: 56px;
    }

    .experience-card > p {
        min-height: auto;
    }

    .onboarding-card {
        grid-template-columns: 1fr;
    }

    .pricing-layout {
        align-items: start;
    }

    .price-card {
        max-width: 620px;
    }

    .seo-copy {
        padding-top: 40px;
        padding-left: 0;
        border-top: 1px solid var(--line);
        border-left: 0;
    }

    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr;
    }

    .footer-column:last-child {
        grid-column: 2;
    }
}

@media (max-width: 820px) {
    .audience-grid {
        grid-template-columns: 1fr;
    }

    .audience-card {
        min-height: 230px;
    }
}

@media (max-width: 680px) {
    :root {
        --shell: calc(100% - 30px);
        --radius-md: 18px;
        --radius-lg: 24px;
    }

    body {
        padding-bottom: 76px;
        font-size: 15px;
    }

    .section {
        padding-block: 72px;
    }

    .brand {
        width: 139px;
    }

    .hero-layout {
        gap: 58px;
        padding-block: 58px 92px;
    }

    .hero h1 {
        margin-bottom: 22px;
        font-size: clamp(3.1rem, 15vw, 4.6rem);
    }

    .hero-lead {
        font-size: .96rem;
    }

    .hero-actions {
        align-items: stretch;
        flex-direction: column;
        gap: 18px;
    }

    .hero-actions .text-link {
        align-self: center;
        text-align: center;
    }

    .hero-assurances {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .hero-assurances li {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .hero-assurances span {
        text-align: right;
    }

    .hero-product {
        width: 100%;
    }

    .window-bar {
        min-height: 35px;
        padding: 0 10px;
        grid-template-columns: auto 1fr;
    }

    .window-address {
        display: none;
    }

    .window-status {
        grid-column: 2;
    }

    .product-note {
        min-width: 0;
        padding: 10px 12px;
    }

    .product-note--top {
        top: -38px;
        right: 7%;
    }

    .product-note--bottom {
        right: 3%;
        bottom: -44px;
    }

    .product-note__icon {
        width: 30px;
        height: 30px;
        flex-basis: 30px;
    }

    .product-note strong {
        font-size: .62rem;
    }

    .product-note small {
        font-size: .55rem;
    }

    .client-proof {
        padding-block: 28px;
    }

    .client-proof__inner {
        gap: 24px;
    }

    .client-logos {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 10px;
    }

    .client-logos figure {
        width: 58px;
        height: 58px;
        border-radius: 14px;
    }

    .editorial-heading h2,
    .section-heading h2,
    .demo-heading h2,
    .cycle-copy h2,
    .pricing-copy h2,
    .onboarding-copy h2,
    .seo-heading h2,
    .faq-heading h2 {
        font-size: clamp(2.45rem, 12vw, 3.45rem);
    }

    .editorial-heading {
        margin-bottom: 42px;
    }

    .position-card:nth-child(n) {
        min-height: 360px;
        padding: 27px;
        grid-column: span 12;
    }

    .position-card h3 {
        font-size: 2.15rem;
    }

    .audience-grid {
        grid-template-columns: 1fr;
    }

    .audience-card {
        min-height: 0;
        padding: 24px;
        grid-template-columns: 66px minmax(0, 1fr);
        gap: 18px;
    }

    .audience-symbol {
        width: 60px;
        height: 60px;
        font-size: 1.55rem;
    }

    .audience-card--studio .audience-symbol {
        font-size: 1.3rem;
    }

    .audience-card h3 {
        margin-bottom: 10px;
        font-size: 1.55rem;
    }

    .audience-card p {
        margin-bottom: 16px;
        font-size: .8rem;
    }

    .demo-heading {
        margin-bottom: 42px;
    }

    .demo-stage {
        margin-inline: -8px;
    }

    .demo-stage .product-window {
        border-radius: 12px;
    }

    .demo-caption {
        align-items: flex-start;
        flex-direction: column;
        gap: 4px;
        padding-inline: 8px;
    }

    .demo-action {
        align-items: stretch;
        flex-direction: column;
    }

    .demo-action .button {
        width: 100%;
    }

    .cycle-list li {
        grid-template-columns: 52px 1fr;
    }

    .cycle-list strong {
        font-size: 1.25rem;
    }

    .experience-card {
        padding: 27px;
    }

    .experience-card h3 {
        font-size: 2rem;
    }

    .feature-board {
        grid-template-columns: 1fr;
    }

    .feature-tile,
    .feature-tile--wide {
        min-height: 220px;
        grid-column: span 1;
    }

    .feature-tile--wide {
        grid-template-columns: 60px 1fr;
    }

    .onboarding {
        padding-inline: 0;
    }

    .onboarding-card {
        width: 100%;
        padding: 38px 24px;
        border-radius: 0;
    }

    .onboarding-steps > div {
        grid-template-columns: 36px 1fr;
    }

    .pricing-copy ul {
        grid-template-columns: 1fr;
    }

    .price-card {
        padding: 28px 23px;
    }

    .price-card__top {
        margin-bottom: 42px;
    }

    .price strong {
        font-size: clamp(4.15rem, 20vw, 5.2rem);
    }

    .faq-item summary {
        font-size: .96rem;
    }

    .final-cta__inner {
        padding-block: 84px;
    }

    .final-cta h2 {
        font-size: clamp(3.1rem, 14vw, 4.4rem);
    }

    .final-cta__actions {
        align-items: stretch;
        flex-direction: column;
    }

    .final-cta__actions .text-link {
        align-self: center;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 38px 24px;
    }

    .footer-brand {
        grid-column: span 2;
    }

    .footer-column:last-child {
        grid-column: auto;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }

    .mobile-conversion-bar {
        position: fixed;
        z-index: 120;
        right: 0;
        bottom: 0;
        left: 0;
        display: flex;
        min-height: 76px;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        padding: 10px 14px;
        border-top: 1px solid var(--line);
        background: rgba(255, 253, 249, .98);
        box-shadow: 0 -12px 32px rgba(16, 19, 27, .12);
        backdrop-filter: blur(16px);
        transition: opacity .2s ease, visibility .2s ease, transform .2s ease;
    }

    .mobile-conversion-bar > div {
        display: flex;
        min-width: 0;
        flex-direction: column;
    }

    .mobile-conversion-bar small {
        color: var(--muted);
        font-size: .58rem;
    }

    .mobile-conversion-bar strong {
        color: var(--ink);
        font-size: .76rem;
        white-space: nowrap;
    }

    .mobile-conversion-bar .button {
        min-height: 48px;
        padding: 11px 16px;
        font-size: .7rem;
        white-space: nowrap;
    }
}

@media (max-width: 390px) {
    .mobile-conversion-bar > div {
        display: none;
    }

    .mobile-conversion-bar .button {
        width: 100%;
    }

    .client-logos {
        grid-template-columns: repeat(2, 1fr);
    }

    .client-logos figure {
        width: 72px;
        height: 72px;
    }
}

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

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
    }

    .js .reveal {
        opacity: 1;
        transform: none;
    }
}
