.container {
    width: 100%;
    max-width: var(--container-max);
    padding-inline: 1rem;
    margin-inline: auto;
}

.section {
    padding-block: var(--spacer-6);
}

.section-muted {
    background-color: var(--surface-subtle);
}

.section-heading {
    max-width: 820px;
    margin-bottom: var(--spacer-5);
}

.stack {
    display: grid;
    gap: var(--spacer-3);
}

.stack-large {
    display: grid;
    gap: var(--spacer-5);
}

.hero {
    margin-top: calc(-1 * var(--header-height));
    padding-block: var(--spacer-6);
    padding-top: calc(var(--header-height) + var(--header-height) + var(--header-offset) + var(--hero-header-gap));
}

.hero-home {
    background: var(--surface-subtle);
    padding-bottom: var(--spacer-4);
}

.hero-silver-split {
    background: var(--surface-subtle);
}

.hero-home .hero-media {
    height: 34rem;
}

.hero-proof-strip {
    display: grid;
    gap: clamp(0.75rem, 1.5vw, 1.5rem);
    width: 100%;
    margin: var(--spacer-5) 0 0;
    padding: 0;
    list-style: none;
}

.hero-proof-strip li {
    display: grid;
    gap: 0.35rem;
    min-width: 0;
}

.hero-proof-link {
    display: grid;
    gap: 0.35rem;
    width: fit-content;
    color: inherit;
    text-decoration: none;
}

.hero-proof-link:hover strong {
    text-decoration: underline;
    text-underline-offset: 0.18em;
}

.hero-proof-strip span,
.hero-proof-strip strong {
    line-height: 1.25;
}

.hero-proof-strip span {
    color: var(--muted-color);
    font-size: 1rem;
    opacity: 0.8;
}

.hero-proof-label {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.hero-proof-icon {
    width: 1rem;
    height: 1rem;
    flex: 0 0 auto;
    color: var(--gold);
    fill: currentColor;
}

.hero-proof-icon-default {
    color: inherit;
}

.hero-proof-strip strong {
    color: var(--heading-color);
    font-size: clamp(0.95rem, 1.1vw, 1.05rem);
    font-weight: 600;
}

.hero-grid,
.pricing-grid,
.footer-grid {
    display: grid;
    gap: var(--spacer-4);
}

.hero-grid {
    column-gap: var(--spacer-6);
    padding-inline: 0;
}

.hero-lede {
    max-width: 720px;
    margin: 40px 0;
    line-height: 2rem;
}

.hero-page-content h1 {
    max-width: 980px;
}

.hero-page .hero-lede {
    margin-bottom: 0;
}

.hero-centered {
    background-color: var(--surface);
    padding-bottom: var(--spacer-5);
}

.hero-centered .hero-page-content {
    display: grid;
    justify-items: center;
    max-width: 980px;
    text-align: center;
}

.hero-centered .hero-page-content h1 {
    max-width: 900px;
}

.hero-centered .hero-lede {
    max-width: 760px;
    margin: 2rem 0 2rem;
}

.features-hero {
    background:
        radial-gradient(circle at 50% 0%, rgba(107, 102, 95, 0.46), rgba(107, 102, 95, 0) 34rem),
        linear-gradient(180deg, #123047 0%, #002238 72%);
    overflow: hidden;
    padding-top: calc(var(--header-height) + var(--header-offset) + 10rem);
    padding-bottom: var(--spacer-6);
}

.features-hero-inner {
    display: grid;
    align-content: space-between;
    gap: var(--spacer-6);
    padding-inline: 0;
}

.features-hero-copy {
    display: grid;
    justify-items: center;
    max-width: 900px;
    margin-inline: auto;
    text-align: center;
}

.features-hero-copy .hero-lede {
    max-width: 820px;
    margin: 2rem 0 0;
    color: var(--surface-dark-muted-color);
}

.feature-strip-section {
    overflow: hidden;
    background: radial-gradient(circle at 50% 0%, rgba(107, 102, 95, 0.46), rgba(107, 102, 95, 0) 34rem), linear-gradient(180deg, #123047 0%, #002238 72%);
}

.feature-strip-section-inner {
    display: grid;
    gap: var(--spacer-6);
    padding-inline: 0;
}

.feature-strip-section-copy {
    display: grid;
    justify-items: center;
    max-width: 960px;
    margin-inline: auto;
    text-align: center;
}

.feature-strip-section-copy h2 {
    margin-bottom: -30px;
}

.feature-strip {
    position: relative;
    --feature-item-width: 8.5rem;
    --feature-item-height: 6rem;
    --feature-item-gap: 2.5rem;
    --feature-item-step: calc(var(--feature-item-width) + var(--feature-item-gap));
    width: 100vw;
    height: 8.5rem;
    margin-left: calc(50% - 50vw);
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
    mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
}

.feature-strip::before,
.feature-strip::after {
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 1;
    width: min(18vw, 16rem);
    pointer-events: none;
    content: "";
}

.feature-strip::before {
    left: 0;
    background: linear-gradient(to right, rgb(0 34 56 / 0.92), rgb(0 34 56 / 0));
}

.feature-strip::after {
    right: 0;
    background: linear-gradient(to left, rgb(0 34 56 / 0.88), rgb(0 34 56 / 0));
}

.feature-strip-track {
    position: relative;
    width: 100%;
    height: 100%;
}

.feature-strip-item:hover{
    color: rgba(255, 255, 255, 1);
}
.feature-strip-item {
    position: absolute;
    top: 50%;
    left: 50%;
    display: grid;
    width: var(--feature-item-width);
    height: var(--feature-item-height);
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    background-color: rgba(255, 255, 255, 0.07);
    color: rgba(255, 255, 255, 0.48);
    font-size: 0.9rem;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    opacity: 0.58;
    transform: translate(-50%, -50%);
    transition:
        width 0.45s ease,
        height 0.45s ease,
        opacity 0.45s ease,
        color 0.45s ease,
        background-color 0.45s ease,
        transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
    white-space: nowrap;
}

.feature-strip-item[data-feature-position="-5"] {
    opacity: 0.22;
    transform: translate(calc(-50% - var(--feature-item-step) - var(--feature-item-step) - var(--feature-item-step) - var(--feature-item-step) - var(--feature-item-step)), -50%);
}

.feature-strip-item[data-feature-position="-4"] {
    opacity: 0.34;
    transform: translate(calc(-50% - var(--feature-item-step) - var(--feature-item-step) - var(--feature-item-step) - var(--feature-item-step)), -50%);
}

.feature-strip-item[data-feature-position="-3"] {
    opacity: 0.46;
    transform: translate(calc(-50% - var(--feature-item-step) - var(--feature-item-step) - var(--feature-item-step)), -50%);
}

.feature-strip-item[data-feature-position="-2"] {
    transform: translate(calc(-50% - var(--feature-item-step) - var(--feature-item-step)), -50%);
}

.feature-strip-item[data-feature-position="-1"] {
    transform: translate(calc(-50% - var(--feature-item-step)), -50%);
}

.feature-strip-item[data-feature-position="1"] {
    transform: translate(calc(-50% + var(--feature-item-step)), -50%);
}

.feature-strip-item[data-feature-position="2"] {
    transform: translate(calc(-50% + var(--feature-item-step) + var(--feature-item-step)), -50%);
}

.feature-strip-item[data-feature-position="3"] {
    opacity: 0.46;
    transform: translate(calc(-50% + var(--feature-item-step) + var(--feature-item-step) + var(--feature-item-step)), -50%);
}

.feature-strip-item[data-feature-position="4"] {
    opacity: 0.34;
    transform: translate(calc(-50% + var(--feature-item-step) + var(--feature-item-step) + var(--feature-item-step) + var(--feature-item-step)), -50%);
}

.feature-strip-item[data-feature-position="5"] {
    opacity: 0.22;
    transform: translate(calc(-50% + var(--feature-item-step) + var(--feature-item-step) + var(--feature-item-step) + var(--feature-item-step) + var(--feature-item-step)), -50%);
}

.feature-strip-item.is-featured {
    width: 10.5rem;
    height: 8rem;
    background-color: rgba(255, 255, 255, 0.13);
    color: var(--surface-dark-color);
    font-size: 1rem;
    opacity: 1;
    z-index: 2;
}

.hero-contact {
    background-color: var(--surface);
}

.support-center {
    padding-top: calc(var(--header-height) + var(--header-offset) + var(--spacer-6));
}

.pricing-section {
    padding-top: 0;
}

.pricing-comparison-section {
    padding-top: var(--spacer-5);
}

.workflow-preview-section {
    position: relative;
    overflow: hidden;
    background-color: var(--surface-subtle);
}

.workflow-preview-section::before {
    position: absolute;
    inset: 0 0 45%;
    background: radial-gradient(circle at 50% 0%, rgba(255, 193, 6, 0.16), transparent 48%);
    content: "";
    pointer-events: none;
}

.workflow-preview {
    position: relative;
    display: grid;
    justify-items: center;
    gap: var(--spacer-4);
}

.workflow-preview-heading {
    margin-inline: auto;
    text-align: center;
    margin-bottom: 0;
}

.workflow-preview-screen {
    width: min(100%, 1120px);
    padding: 0.75rem;
    border-radius: var(--radius-lg);
    background-color: rgba(255, 255, 255, 0.72);
    box-shadow: 2px 2px 10px #0000001a;
}

.workflow-preview-window {
    overflow: hidden;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    background-color: var(--surface);
}

.workflow-preview-panel[hidden] {
    display: none;
}

.workflow-preview-window-bar {
    display: flex;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid var(--border-color);
    background-color: var(--surface);
}

.workflow-preview-window-bar span {
    width: 0.55rem;
    height: 0.55rem;
    border-radius: var(--radius-pill);
    background-color: var(--border-color);
}

.workflow-preview-window-bar span:nth-child(1) {
    background-color: var(--color-coral);
}

.workflow-preview-window-bar span:nth-child(2) {
    background-color: var(--gold);
}

.workflow-preview-window-bar span:nth-child(3) {
    background-color: var(--accent);
}

.workflow-preview-panel {
    margin: 0;
}

.workflow-preview-panel.is-entering {
    animation: workflow-panel-enter 420ms ease;
}

@keyframes workflow-panel-enter {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.workflow-preview-panel img {
    display: block;
    width: 100%;
    height: 36rem;
    object-fit: cover;
    object-position: top center;
}

.workflow-preview-panel figcaption {
    padding: 1rem 1.25rem;
    border-top: 1px solid var(--border-color);
    color: var(--muted-color);
    font-size: 0.9rem;
    text-align: center;
}

.workflow-preview-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.35rem;
    width: min(100%, 590px);
    padding: 0.35rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-pill);
    background-color: var(--surface);
    box-shadow: 2px 2px 10px #0000001a;
}

.workflow-preview-tabs button {
    flex: 1 1 auto;
    min-width: 5rem;
    padding: 0.65rem 1rem;
    border: 0;
    border-radius: var(--radius-pill);
    background: transparent;
    color: var(--muted-color);
    cursor: pointer;
    font-size: 0.9rem;
    text-align: center;
    transition: background-color var(--transition-base), color var(--transition-base);
}

.workflow-preview-tabs button:hover,
.workflow-preview-tabs .is-active {
    background-color: var(--button-dark);
    color: var(--surface-dark-color);
}

.workflow-preview > p {
    max-width: 760px;
    margin-bottom: 0;
    color: var(--muted-color);
    text-align: center;
}

.hero-media {
    height: 430px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    background-color: var(--surface);
}

.hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-keyword-wall {
    --keyword-gap: 1rem;
    --keyword-shift: 4rem;
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--keyword-gap);
    justify-content: center;
    min-height: 100%;
    padding: 0;
    border: 0;
    background-color: var(--surface-subtle);
}

.hero-keyword-wall::before,
.hero-keyword-wall::after {
    position: absolute;
    right: 0;
    left: 0;
    z-index: 1;
    height: 10.5rem;
    pointer-events: none;
    content: "";
}

.hero-keyword-wall::before {
    top: 0;
    background: linear-gradient(to bottom, var(--surface-subtle) 0%, rgba(244, 242, 241, 0.92) 28%, rgba(244, 242, 241, 0) 100%);
}

.hero-keyword-wall::after {
    bottom: 0;
    background: linear-gradient(to top, var(--surface-subtle) 0%, rgba(244, 242, 241, 0.92) 28%, rgba(244, 242, 241, 0) 100%);
}

.keyword-column {
    display: grid;
    grid-template-rows: repeat(4, minmax(0, 1fr));
    gap: var(--keyword-gap);
    height: calc(100% - var(--keyword-shift));
    min-width: 0;
}

.keyword-column:nth-child(1),
.keyword-column:nth-child(3) {
    margin-top: var(--keyword-shift);
}

.keyword-card {
    display: grid;
    min-width: 0;
    min-height: 0;
    place-items: center;
    padding: 1rem;
    border-radius: var(--radius-lg);
    background-color: rgba(255, 255, 255, 0.94);
    color: rgba(4, 24, 24, 0.32);
    font-size: 1.15rem;
    line-height: 1.1;
    text-align: center;
    white-space: nowrap;
    font-weight: var(--font-weight-bold);
}

.keyword-strong {
    color: rgba(4, 24, 24, 0.58);
    font-weight: var(--font-weight-extra-bold);
    font-size: 1.4rem;
}

.product-showcase {
    background-color: var(--surface);
}

.product-showcase-heading {
    max-width: 900px;
    margin-bottom: var(--spacer-6);
    text-align: center;
}

.product-showcase-heading p {
    max-width: 720px;
    margin-inline: auto;
}

.product-showcase-grid {
    display: grid;
    gap: var(--spacer-6);
}

.product-showcase-item {
    display: grid;
    align-items: center;
    gap: var(--spacer-5);
}

.product-showcase-media {
    width: 100%;
    aspect-ratio: 1513 / 977;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background-color: var(--surface-subtle);
}

.product-showcase-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-showcase-copy {
    max-width: 560px;
}

.product-showcase-item[id] {
    scroll-margin-top: calc(var(--header-height) + var(--header-offset) + var(--spacer-4));
}

.product-showcase-copy h3 {
    margin-top: var(--spacer-3);
}

.product-showcase-copy .button {
    display: inline-flex;
    margin-top: var(--spacer-3);
}

.feature-bullet-list {
    display: grid;
    gap: var(--spacer-2);
    margin: var(--spacer-4) 0 0;
    padding: 0;
    list-style: none;
}

.feature-bullet-list li {
    position: relative;
    padding-left: 1.6rem;
    color: var(--text-muted);
    font-weight: var(--font-weight-normal);
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
    margin-bottom: 5px;
}

.feature-bullet-list li::before {
    position: absolute;
    top: 0.14em;
    left: 0;
    display: grid;
    width: 1rem;
    height: 1rem;
    place-items: center;
    color: var(--color-gold);
    content: "✓";
    font-size: 0.72rem;
    line-height: 1;
}

.time-tracking-section {
    overflow: hidden;
    background-color: var(--surface-subtle);
}

.time-tracking-heading {
    max-width: 900px;
    margin-bottom: var(--spacer-4);
    text-align: center;
}

.time-tracking-visual {
    position: relative;
    display: grid;
    min-height: 36rem;
    place-items: center;
}

.time-tracking-visual::after {
    position: absolute;
    z-index: 2;
    right: 0;
    bottom: 30px;
    left: 0;
    height: 12rem;
    background: linear-gradient(to bottom, rgba(244, 242, 241, 0), var(--surface-subtle));
    content: "";
    pointer-events: none;
}

.tracking-orbit {
    position: absolute;
    inset: 2.6rem -4% 4rem;
    pointer-events: none;
}

.tracking-orbit span {
    position: absolute;
    inset: auto 50% 0;
    width: min(92vw, 66rem);
    aspect-ratio: 2 / 1;
    border: 1px solid rgba(4, 24, 24, 0.075);
    border-bottom: 0;
    border-radius: 999rem 999rem 0 0;
    transform: translateX(-50%);
}

.tracking-orbit span:nth-child(2) {
    width: min(74vw, 52rem);
    bottom: 2.6rem;
}

.tracking-orbit span:nth-child(3) {
    width: min(58vw, 39rem);
    bottom: 4.1rem;
}

.tracking-node {
    position: absolute;
    z-index: 3;
    display: grid;
    width: 3rem;
    height: 3rem;
    place-items: center;
    border-radius: var(--radius-sm);
    background-color: var(--primary);
    color: var(--gold);
    box-shadow: 2px 2px 10px #0000001a;
}

.tracking-node svg,
.tracking-chip svg,
.tracking-point-icon svg {
    width: 1.25rem;
    height: 1.25rem;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
}

.tracking-node svg {
    width: 1.5rem;
    height: 1.5rem;
    fill: currentColor;
    stroke: none;
}

.tracking-node-top {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.tracking-connector {
    position: absolute;
    z-index: 1;
    left: 50%;
    width: 1px;
    background-color: rgba(4, 24, 24, 0.14);
    transform: translateX(-50%);
}

.tracking-connector::after {
    position: absolute;
    bottom: -0.3rem;
    left: 50%;
    width: 0.6rem;
    height: 0.6rem;
    border: 2px solid #fff;
    border-radius: var(--radius-pill);
    background-color: rgba(4, 24, 24, 0.2);
    content: "";
    transform: translateX(-50%);
}

.tracking-connector-top {
    top: 3.05rem;
    height: 1.9rem;
}

.tracking-connector-mid {
    top: 10.35rem;
    height: 3.45rem;
}

.tracking-summary-card,
.tracking-add-slot {
    position: absolute;
    left: 50%;
    z-index: 3;
    transform: translateX(-50%);
}

.tracking-summary-card {
    top: 5.25rem;
    display: grid;
    width: min(92%, 19rem);
    gap: 0.7rem;
    padding: 0.65rem 0.75rem;
    border-radius: var(--radius-sm);
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 2px 2px 10px #0000001a;
}

.tracking-summary-title {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    font-weight: var(--font-weight-semibold);
    font-size: 0.8rem;
}

.tracking-summary-icon {
    display: inline-flex;
    width: 1.5rem;
    height: 1.5rem;
    align-items: center;
    justify-content: center;
    border-radius: 0.35rem;
    background-color: rgba(119, 92, 255, 0.18);
    color: #6c4ff6;
}

.tracking-summary-icon svg {
    width: 1rem;
    height: 1rem;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
}

.tracking-avatar-row {
    display: flex;
    align-items: center;
}

.tracking-avatar {
    display: inline-flex;
    width: 1.65rem;
    height: 1.65rem;
    margin-left: -0.35rem;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff;
    border-radius: var(--radius-pill);
    background-color: rgba(125, 221, 96, 0.3);
    font-weight: var(--font-weight-semibold);
    font-size: 0.7rem;
}

.tracking-avatar:nth-child(2n) {
    background-color: rgba(255, 193, 6, 0.28);
}

.tracking-avatar:nth-child(3n) {
    background-color: rgba(12, 44, 78, 0.15);
}

.tracking-avatar:first-child {
    margin-left: 0;
}

.tracking-avatar-more {
    background-color: var(--surface-subtle);
    color: var(--muted-color);
}

.tracking-add-slot {
    top: 13.55rem;
    display: grid;
    width: min(48%, 10.5rem);
    height: 2rem;
    place-items: center;
    border: 1px dashed rgba(42, 198, 205, 0.7);
    border-radius: var(--radius-sm);
    background-color: rgba(42, 198, 205, 0.12);
    color: #21aeb5;
    font-size: 1.2rem;
}

.tracking-chip {
    position: absolute;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.6rem 0.8rem;
    border-radius: var(--radius-sm);
    background-color: rgba(255, 255, 255, 0.94);
    box-shadow: 2px 2px 10px #0000001a;
    font-weight: var(--font-weight-semibold);
    font-size: 0.85rem;
    white-space: nowrap;
}

.tracking-chip-icon,
.tracking-point-icon {
    display: inline-flex;
    width: 2.2rem;
    height: 2.2rem;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    background-color: rgba(255, 193, 6, 0.24);
    color: var(--primary);
}

.tracking-chip-icon-gold {
    background-color: rgba(255, 193, 6, 0.2);
}

.tracking-chip-left {
    top: 31%;
    left: 16%;
}

.tracking-chip-right {
    top: 39%;
    right: 14%;
}

.tracking-chip-bottom-left {
    bottom: 28%;
    left: 17%;
}

.tracking-chip-bottom-right {
    right: 13%;
    bottom: 25%;
}

.tracking-panel {
    position: relative;
    z-index: 2;
    width: min(100%, 22rem);
    overflow: hidden;
    border: 1px solid rgba(4, 24, 24, 0.08);
    border-radius: var(--radius-md);
    background-color: rgba(255, 255, 255, 0.96);
    box-shadow: 0 1.25rem 3.5rem rgba(4, 24, 24, 0.11);
    transform: translateY(5.25rem);
}

.tracking-panel-bar {
    display: flex;
    gap: 0.35rem;
    padding: 0.55rem 0.75rem;
    border-bottom: 1px solid rgba(4, 24, 24, 0.08);
}

.tracking-panel-bar span {
    width: 0.4rem;
    height: 0.4rem;
    border-radius: var(--radius-pill);
    background-color: var(--color-coral);
}

.tracking-panel-bar span:nth-child(2) {
    background-color: var(--gold);
}

.tracking-panel-bar span:nth-child(3) {
    background-color: var(--accent);
}

.tracking-panel-body {
    display: grid;
    gap: 0.75rem;
    padding: var(--spacer-3);
}

.tracking-panel-kicker {
    margin: 0;
    color: var(--muted-color);
    font-size: 0.9rem;
}

.tracking-panel-body h3 {
    margin: 0;
    font-size: 1rem;
}

.tracking-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--spacer-2);
}

.tracking-metrics div {
    padding: 0.55rem;
    border-radius: var(--radius-sm);
    background-color: var(--surface-subtle);
}

.tracking-metrics span,
.tracking-metrics strong {
    display: block;
}

.tracking-metrics span {
    color: var(--muted-color);
    font-size: 0.75rem;
}

.tracking-metrics strong {
    margin-top: 0.35rem;
    font-weight: var(--font-weight-semibold);
}

.tracking-bars {
    display: grid;
    gap: 0.5rem;
}

.tracking-bars span {
    display: block;
    width: var(--bar-width);
    height: 0.5rem;
    border-radius: var(--radius-pill);
    background-color: rgba(4, 24, 24, 0.12);
}

.tracking-bars span:nth-child(2) {
    background-color: rgba(125, 221, 96, 0.4);
}

.tracking-bars span:nth-child(3) {
    background-color: rgba(255, 193, 6, 0.45);
}

.time-tracking-points {
    display: grid;
    gap: var(--spacer-4);
    margin-top: -30px;
}

.time-tracking-points article {
    display: grid;
    gap: var(--spacer-2);
    align-content: start;
}

.time-tracking-points h3,
.time-tracking-points p {
    margin: 0;
}

.time-tracking-points p {
    color: var(--muted-color);
    font-size: 0.95rem;
    line-height: 1.55rem;
}

.media-split-heading {
    max-width: 900px;
    margin-bottom: var(--spacer-6);
    text-align: center;
}

.media-split-heading p {
    max-width: 720px;
    margin-inline: auto;
}

.media-split-grid {
    display: grid;
    gap: var(--spacer-6);
    align-items: center;
}

.media-split-media {
    aspect-ratio: 1513 / 977;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background-color: var(--surface);
}

.media-split-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.media-split-copy {
    display: grid;
    gap: var(--spacer-4);
    max-width: 560px;
}

.audience-heading {
    max-width: 920px;
    margin-bottom: var(--spacer-6);
    text-align: center;
}

.audience-heading p {
    max-width: 760px;
    margin-inline: auto;
}

.audience-layout {
    display: grid;
    gap: var(--spacer-5);
    align-items: center;
}

.audience-accordion {
    display: grid;
}

.audience-panel {
    border-top: 1px solid rgba(4, 24, 24, 0.18);
}

.audience-panel:last-child {
    border-bottom: 1px solid rgba(4, 24, 24, 0.18);
}

.audience-trigger {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacer-3);
    padding: 1.75rem 0;
    border: 0;
    background: transparent;
    color: inherit;
    font: inherit;
    font-size: 1.75rem;
    line-height: 1.25;
    text-align: left;
}

.audience-trigger::after {
    content: "+";
    flex: 0 0 auto;
    font-size: 2rem;
    line-height: 1;
}

.audience-trigger[aria-expanded="true"]::after {
    content: "-";
}

.audience-content {
    max-width: 620px;
    padding: 0 0 1.75rem;
}

.audience-media {
    overflow: hidden;
    border-radius: var(--radius-lg);
    background-color: var(--surface-subtle);
}

.audience-media img {
    display: block;
    width: 100%;
    aspect-ratio: 3 / 2;
    object-fit: cover;
}

.insight-cta {
    padding: 0 0 var(--spacer-6);
}

.insight-cta-media {
    height: 24rem;
    overflow: hidden;
}

.insight-cta-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.insight-cta .container {
    position: relative;
    z-index: 1;
}

.insight-cta-panel {
    margin-top: -15rem;
    padding: var(--spacer-5);
    border-radius: var(--radius-lg);
    background-color: var(--surface-subtle);
}

.insight-cta-heading {
    max-width: 820px;
    margin-inline: auto;
    text-align: center;
}

.insight-cta-heading h2 {
    margin-bottom: var(--spacer-3);
}

.insight-cta-heading > :last-child {
    margin-bottom: 0;
}

.insight-cta-grid {
    display: grid;
    gap: var(--spacer-5);
    margin-top: var(--spacer-5);
}

.insight-cta-grid h3 {
    margin-bottom: var(--spacer-2);
}

.insight-cta-grid p {
    margin-bottom: 0;
}

.getting-started-heading {
    max-width: 720px;
    margin-bottom: var(--spacer-6);
    text-align: center;
}

.getting-started-grid {
    display: grid;
    gap: var(--spacer-4);
}

.getting-started-card {
    display: flex;
    flex-direction: column;
    min-height: 270px;
    padding: var(--spacer-5);
    border-radius: var(--radius-lg);
    background-color: var(--surface-subtle);
}

.getting-started-card h3 {
    margin-top: auto;
}

.process-steps .getting-started-card {
    position: relative;
    display: grid;
    min-height: 270px;
    align-content: start;
    gap: var(--spacer-4);
    border: 1px solid rgba(12, 44, 78, 0.16);
    background-color: var(--surface);
}

.process-steps .getting-started-card h3 {
    margin-top: 0;
}

.process-step-number {
    display: grid;
    gap: 0.75rem;
    color: #6554ff;
    font-size: 1.2rem;
    font-weight: var(--font-weight-semibold);
    line-height: 1;
}

.process-step-number::after {
    display: block;
    width: 1.8rem;
    height: 2px;
    background-color: currentColor;
    content: "";
}

.step-icon {
    width: 1.75rem;
    height: 1.75rem;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.6;
}

.getting-started-action {
    display: flex;
    justify-content: center;
    margin-top: var(--spacer-5);
}

.pricing-work-heading {
    max-width: 820px;
    margin-bottom: var(--spacer-6);
    text-align: center;
}

.pricing-work-heading p {
    max-width: 720px;
    margin: var(--spacer-3) auto 0;
}

.pricing-work-grid {
    display: grid;
    gap: var(--spacer-4);
}

.pricing-work-card {
    display: grid;
    min-height: 250px;
    align-content: start;
    gap: var(--spacer-4);
    padding: var(--spacer-5);
    border-radius: var(--radius-lg);
    background-color: var(--surface-subtle);
}

.pricing-work-icon {
    display: inline-grid;
    width: 3rem;
    height: 3rem;
    place-items: center;
    border-radius: var(--radius-md);
}

.pricing-work-icon-coral {
    background-color: #ffe8e2;
    color: #d96f4f;
}

.pricing-work-icon-violet {
    background-color: #e5e3ff;
    color: #6554ff;
}

.pricing-work-icon-mint {
    background-color: #def8e9;
    color: #3f8f72;
}

.pricing-work-icon-indigo {
    background-color: #e1e1ff;
    color: #5d46ff;
}

.pricing-work-icon-teal {
    background-color: #cff3ed;
    color: #3f8f83;
}

.pricing-work-icon-sky {
    background-color: #dff2ff;
    color: #3d7fa8;
}

.pricing-work-card h3,
.pricing-work-card p {
    margin-bottom: 0;
}

.faq-heading {
    margin-bottom: var(--spacer-4);
    text-align: center;
}

.faq-list {
    max-width: 860px;
}

.faq-item {
    border-bottom: 1px solid rgba(4, 24, 24, 0.18);
}

.faq-item:last-child {
    border-bottom: 0;
}

.faq-trigger {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacer-4);
    padding: 1.75rem 0;
    border: 0;
    background: transparent;
    color: inherit;
    font: inherit;
    font-size: 1rem;
    font-weight: var(--font-weight-medium);
    text-align: left;
}

.faq-trigger::after {
    content: "+";
    flex: 0 0 auto;
    font-size: 1.75rem;
    font-weight: var(--font-weight-extra-light);
    line-height: 1;
}

.faq-trigger[aria-expanded="true"]::after {
    content: "-";
}

.faq-content {
    max-width: 680px;
    padding-bottom: 1.75rem;
}

.check-icon {
    display: inline-grid;
    width: 1rem;
    height: 1rem;
    place-items: center;
    border: 1px solid currentColor;
    border-radius: var(--radius-pill);
    color: var(--muted-color);
}

.check-icon::before {
    width: 0.45rem;
    height: 0.25rem;
    border-bottom: 1.5px solid currentColor;
    border-left: 1.5px solid currentColor;
    content: "";
    transform: rotate(-45deg) translateY(-0.05rem);
}

@media (max-width: 991.98px) {
    .features-hero {
        min-height: auto;
    }
    .hero-home .hero-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .hero-home .hero-media {
        height: 28rem;
    }

    .hero-ui-preview {
        display: none;
    }

    .hero-silver-split .hero-split-grid {
        grid-template-columns: minmax(0, 1fr);
    }
}

@media (max-width: 575.98px) {
    .hero-proof-strip {
        gap: 0;
    }

    .hero-proof-strip li {
        grid-template-columns: minmax(6.5rem, 0.7fr) minmax(0, 1.3fr);
        align-items: baseline;
        gap: 1rem;
        padding-block: 0.85rem;
        border-bottom: 1px solid var(--border-color);
    }

    .hero-proof-strip li:last-child {
        border-bottom: 0;
    }

    .keyword-card {
        padding: 0.65rem;
        font-size: 0.75rem;
    }

    .time-tracking-visual {
        min-height: 44rem;
    }

    .tracking-orbit {
        right: -55%;
        left: -55%;
    }

    .tracking-node-top {
        top: 0.4rem;
    }

    .tracking-summary-card {
        top: 4.9rem;
        width: min(100%, 18rem);
    }

    .tracking-connector-top {
        top: 3.35rem;
        height: 1.8rem;
    }

    .tracking-connector-mid,
    .tracking-add-slot {
        display: none;
    }

    .tracking-panel {
        width: min(100%, 22rem);
        transform: translateY(7rem);
    }

    .tracking-chip {
        padding: 0.7rem 0.8rem;
        font-size: 0.85rem;
    }

    .tracking-chip-left,
    .tracking-chip-bottom-left {
        left: 0.5rem;
    }

    .tracking-chip-right,
    .tracking-chip-bottom-right {
        right: 0.5rem;
    }

    .tracking-metrics {
        grid-template-columns: minmax(0, 1fr);
    }

    .workflow-preview-screen {
        padding: 0.5rem;
    }

    .workflow-preview-panel img {
        height: 20rem;
    }

    .workflow-preview-tabs button {
        min-width: 4rem;
        padding-inline: 0.75rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .workflow-preview-panel.is-entering {
        animation: none;
    }
}

@media (min-width: 768px) {
    .hero-home .hero-copy {
        display: flex;
        flex-direction: column;
    }

    .hero-home .hero-copy .hero-proof-strip {
        margin-top: 50px;
    }

    .hero-proof-strip {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

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

    .pricing-grid,
    .benefits-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

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

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

    .getting-started-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .insight-cta-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .process-steps .getting-started-card:not(:last-child)::after {
        position: absolute;
        top: 50%;
        right: calc(-1 * var(--spacer-4));
        width: var(--spacer-4);
        height: 1px;
        background-color: rgba(12, 44, 78, 0.18);
        content: "";
    }

    .pricing-work-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .time-tracking-points {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

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

    .form-field-wide {
        grid-column: 1 / -1;
    }

    .support-collection-summary {
        grid-template-columns: 4.25rem minmax(0, 1fr);
    }

    .audience-layout {
        grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
        gap: var(--spacer-6);
    }

}

@media (min-width: 992px) {
    .hero-split-grid {
        grid-template-columns: minmax(0, 0.95fr) minmax(22rem, 0.75fr);
    }

    .support-collections {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .product-showcase-item {
        grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
        gap: var(--spacer-6);
    }

    .media-split-grid {
        grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
    }

    .product-showcase-item-reverse {
        grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
    }

    .product-showcase-item-reverse .product-showcase-media {
        order: 2;
    }

    .product-showcase-item-reverse .product-showcase-copy {
        order: 1;
    }
}

@media (min-width: 1280px) {
    .container {
        padding-inline: 0;
    }
}
