@font-face {
    font-family: "DM Sans";
    src: url("fonts/dm-sans-400.woff2") format("woff2");
    font-style: normal;
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: "DM Sans";
    src: url("fonts/dm-sans-700.woff2") format("woff2");
    font-style: normal;
    font-weight: 700;
    font-display: swap;
}

@font-face {
    font-family: "Manrope";
    src: url("fonts/manrope-600.woff2") format("woff2");
    font-style: normal;
    font-weight: 600;
    font-display: swap;
}

@font-face {
    font-family: "Manrope";
    src: url("fonts/manrope-800.woff2") format("woff2");
    font-style: normal;
    font-weight: 800;
    font-display: swap;
}

:root {
    --accent: #6750a4;
    --accent-strong: #52358f;
    --accent-soft: #eaddff;
    --accent-ink: #21005d;
    --peach: #ffb59e;
    --mint: #74d4b5;
    --ink: #17151b;
    --ink-soft: #514d56;
    --paper: #fbf9fd;
    --surface: #ffffff;
    --surface-alt: #f2eef7;
    --line: #ded8e5;
    --dark: #17131e;
    --dark-soft: #241d2d;
    --white: #ffffff;
    --success: #1d7658;
    --max-width: 1180px;
    --radius-sm: 6px;
    --radius-md: 8px;
    --shadow: 0 22px 70px rgba(33, 0, 93, 0.12);
    --nav-height: 72px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    /* Keep hash targets flush with the fixed header. Extra padding exposes the previous
       full-width band's background when adjacent sections use different colors. */
    scroll-padding-top: var(--nav-height);
}

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: "DM Sans", sans-serif;
    line-height: 1.6;
    text-rendering: optimizeLegibility;
}

body.menu-open {
    overflow: hidden;
}

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

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

a {
    color: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

:focus-visible {
    outline: 3px solid var(--peach);
    outline-offset: 3px;
}

.skip-link {
    position: fixed;
    left: 16px;
    top: -64px;
    z-index: 1000;
    background: var(--white);
    color: var(--accent-ink);
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    transition: top 160ms ease;
}

.skip-link:focus {
    top: 12px;
}

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 100;
    min-height: var(--nav-height);
    background: rgba(251, 249, 253, 0.9);
    border-bottom: 1px solid rgba(222, 216, 229, 0.8);
    backdrop-filter: blur(18px);
}

.site-header--dark {
    background: rgba(23, 19, 30, 0.9);
    border-color: rgba(255, 255, 255, 0.12);
    color: var(--white);
}

.nav-shell {
    width: min(calc(100% - 40px), var(--max-width));
    min-height: var(--nav-height);
    margin-inline: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    text-decoration: none;
    font-family: "Manrope", sans-serif;
    font-size: 1.12rem;
    font-weight: 800;
}

.brand-mark {
    width: 34px;
    height: 34px;
    display: block;
    flex-shrink: 0;
    border-radius: var(--radius-sm);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links a {
    color: inherit;
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 600;
}

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

.site-header--dark .nav-links a:hover {
    color: var(--peach);
}

.nav-toggle {
    width: 44px;
    height: 44px;
    display: none;
    place-items: center;
    border: 0;
    background: transparent;
    color: inherit;
    cursor: pointer;
}

.nav-toggle svg {
    width: 24px;
    height: 24px;
}

.button {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 0 20px;
    border: 1px solid transparent;
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-weight: 700;
    cursor: pointer;
    transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

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

.button--primary {
    background: var(--accent);
    color: var(--white);
}

.button--primary:hover {
    background: var(--accent-strong);
}

.button--light {
    background: var(--white);
    color: var(--accent-ink);
}

.button--outline {
    border-color: currentColor;
    background: transparent;
}

.button svg {
    width: 19px;
    height: 19px;
    flex: none;
}

.hero {
    min-height: min(860px, 94svh);
    position: relative;
    display: grid;
    align-items: end;
    overflow: hidden;
    background: var(--dark);
    color: var(--white);
}

.hero-media,
.hero-scrim {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero-media {
    object-fit: cover;
}

.hero-scrim {
    background:
        linear-gradient(90deg, rgba(17, 12, 23, 0.93) 0%, rgba(17, 12, 23, 0.68) 44%, rgba(17, 12, 23, 0.18) 78%),
        linear-gradient(0deg, rgba(17, 12, 23, 0.88) 0%, transparent 48%);
}

.hero-content {
    width: min(calc(100% - 40px), var(--max-width));
    position: relative;
    z-index: 2;
    margin: 0 auto;
    padding: calc(var(--nav-height) + 76px) 0 72px;
}

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

.eyebrow {
    margin: 0 0 16px;
    color: var(--accent);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.hero .eyebrow,
.band--dark .eyebrow,
.page-hero .eyebrow {
    color: var(--peach);
}

h1,
h2,
h3 {
    margin-top: 0;
    font-family: "Manrope", sans-serif;
    line-height: 1.08;
    letter-spacing: 0;
}

h1 {
    margin-bottom: 22px;
    font-size: clamp(3rem, 8vw, 6.4rem);
    font-weight: 800;
}

.hero-lead {
    max-width: 610px;
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: clamp(1.05rem, 2vw, 1.3rem);
}

.hero-actions,
.action-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 32px;
}

.hero-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 24px;
    margin: 38px 0 0;
    padding: 22px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    list-style: none;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.88rem;
    font-weight: 600;
}

.hero-proof li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.hero-proof svg {
    width: 17px;
    color: var(--mint);
}

.hero-next {
    position: absolute;
    right: max(20px, calc((100vw - var(--max-width)) / 2));
    bottom: 34px;
    z-index: 2;
    color: rgba(255, 255, 255, 0.72);
    text-decoration: none;
}

.hero-next svg {
    width: 28px;
    height: 28px;
}

.band {
    padding: 104px 0;
}

.band--tight {
    padding: 64px 0;
}

.band--surface {
    background: var(--surface);
}

.band--alt {
    background: var(--surface-alt);
}

.band--dark {
    background: var(--dark);
    color: var(--white);
}

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

.section-heading {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(280px, 0.45fr);
    align-items: end;
    gap: 48px;
    margin-bottom: 52px;
}

.section-heading h2,
.page-hero h1 {
    margin-bottom: 0;
    font-size: clamp(2.25rem, 5vw, 4.4rem);
    font-weight: 800;
}

.section-heading p {
    margin: 0;
    color: var(--ink-soft);
}

.band--dark .section-heading p {
    color: rgba(255, 255, 255, 0.68);
}

.workflow {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.workflow-step {
    min-height: 250px;
    padding: 34px;
    border-right: 1px solid var(--line);
}

.workflow-step:last-child {
    border-right: 0;
}

.step-number {
    display: block;
    margin-bottom: 54px;
    color: var(--accent);
    font-family: "Manrope", sans-serif;
    font-size: 0.86rem;
    font-weight: 800;
}

.workflow-step h3 {
    margin-bottom: 12px;
    font-size: 1.45rem;
}

.workflow-step p {
    margin: 0;
    color: var(--ink-soft);
}

.product-stage {
    display: grid;
    grid-template-columns: minmax(280px, 0.42fr) minmax(0, 1fr);
    align-items: center;
    gap: 60px;
}

.product-copy h2 {
    margin-bottom: 20px;
    font-size: clamp(2.1rem, 4.5vw, 4rem);
}

.product-copy p {
    color: rgba(255, 255, 255, 0.7);
}

.feature-list {
    display: grid;
    gap: 0;
    margin: 34px 0 0;
    padding: 0;
    list-style: none;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.feature-list li {
    display: grid;
    grid-template-columns: 32px 1fr;
    gap: 12px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.82);
}

.feature-list svg {
    width: 20px;
    color: var(--peach);
}

.editor-demo {
    min-width: 0;
    overflow: hidden;
    background: #0d0b10;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius-md);
    box-shadow: 0 36px 100px rgba(0, 0, 0, 0.45);
}

.editor-topbar,
.editor-transport {
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 0 16px;
    background: #19151f;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.66);
    font-size: 0.74rem;
}

.editor-preview {
    aspect-ratio: 16 / 8.5;
    position: relative;
    overflow: hidden;
    background: #09080a;
}

.editor-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
}

.editor-preview::after {
    content: "9:16  •  00:12.4";
    position: absolute;
    left: 14px;
    bottom: 12px;
    padding: 5px 8px;
    background: rgba(0, 0, 0, 0.65);
    color: var(--white);
    border-radius: 4px;
    font-size: 0.68rem;
}

.transport-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.transport-dot {
    width: 22px;
    height: 22px;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
}

.transport-dot--accent {
    background: var(--accent);
    color: var(--white);
}

.transport-dot svg {
    width: 13px;
    height: 13px;
}

.editor-selection {
    text-align: center;
    line-height: 1.25;
}

.editor-zoom {
    display: flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
}

.editor-zoom svg {
    width: 15px;
    height: 15px;
}

.timeline {
    position: relative;
    padding: 22px 14px 16px 58px;
    background: #121016;
}

.timeline::before {
    content: "";
    position: absolute;
    top: 18px;
    bottom: 12px;
    left: 40%;
    width: 1px;
    background: var(--peach);
    box-shadow: 0 0 12px rgba(255, 181, 158, 0.7);
    z-index: 3;
}

.timeline-row {
    height: 34px;
    position: relative;
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 5px;
}

.timeline-row:last-child {
    margin-bottom: 0;
}

.timeline-label {
    width: 48px;
    position: absolute;
    right: calc(100% + 8px);
    overflow: hidden;
    color: rgba(255, 255, 255, 0.48);
    font-size: 0.58rem;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.timeline-clip {
    height: 100%;
    border-radius: 3px;
    background: rgba(103, 80, 164, 0.82);
    border: 1px solid rgba(234, 221, 255, 0.35);
}

.timeline-clip--peach {
    background: rgba(255, 181, 158, 0.78);
    border-color: rgba(255, 229, 220, 0.5);
}

.timeline-clip--mint {
    background: rgba(116, 212, 181, 0.72);
    border-color: rgba(201, 255, 238, 0.45);
}

.timeline-width--25 {
    width: 25%;
}

.timeline-width--26 {
    width: 26%;
}

.timeline-width--30 {
    width: 30%;
}

.timeline-width--34 {
    width: 34%;
}

.timeline-width--38 {
    width: 38%;
}

.timeline-width--76 {
    width: 76%;
}

.timeline-space--12 {
    width: 12%;
}

.timeline-space--21 {
    width: 21%;
}

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

.feature {
    min-height: 270px;
    grid-column: span 4;
    position: relative;
    overflow: hidden;
    padding: 30px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
}

.feature--wide {
    grid-column: span 8;
}

.feature--accent {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--white);
}

.feature--dark {
    background: var(--dark-soft);
    border-color: var(--dark-soft);
    color: var(--white);
}

.feature-icon {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    margin-bottom: 64px;
    background: var(--accent-soft);
    border-radius: var(--radius-sm);
    color: var(--accent-ink);
}

.feature-icon svg {
    width: 24px;
    height: 24px;
}

.feature--accent .feature-icon,
.feature--dark .feature-icon {
    background: rgba(255, 255, 255, 0.14);
    color: var(--white);
}

.feature h3 {
    margin-bottom: 11px;
    font-size: 1.45rem;
}

.feature p {
    max-width: 46ch;
    margin: 0;
    color: var(--ink-soft);
}

.feature--accent p,
.feature--dark p {
    color: rgba(255, 255, 255, 0.76);
}

.export-formats {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 26px;
}

.format-chip {
    padding: 7px 10px;
    border: 1px solid rgba(255, 255, 255, 0.26);
    border-radius: 4px;
    font-size: 0.72rem;
    font-weight: 700;
}

.template-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-top: 30px;
}

.template-frame {
    aspect-ratio: 3 / 4;
    position: relative;
    overflow: hidden;
    border-radius: 5px;
    background: var(--dark);
}

.template-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.template-frame span {
    position: absolute;
    inset: auto 8px 8px;
    padding: 5px 7px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 3px;
    color: var(--white);
    font-size: 0.62rem;
    font-weight: 700;
}

.values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.value {
    padding: 34px 32px;
    border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.value:last-child {
    border-right: 0;
}

.value strong {
    display: block;
    margin-bottom: 14px;
    color: var(--peach);
    font-family: "Manrope", sans-serif;
    font-size: 1.18rem;
}

.value p {
    margin: 0;
    color: rgba(255, 255, 255, 0.68);
}

.cta-band {
    background: var(--accent);
    color: var(--white);
}

.cta-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 42px;
}

.cta-layout h2 {
    max-width: 760px;
    margin-bottom: 0;
    font-size: clamp(2.15rem, 5vw, 4.6rem);
}

.site-footer {
    padding: 56px 0 34px;
    background: var(--dark);
    color: rgba(255, 255, 255, 0.72);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 42px;
    align-items: start;
}

.footer-copy {
    max-width: 420px;
    margin: 16px 0 0;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(100px, 1fr));
    gap: 10px 32px;
}

.footer-links a {
    text-decoration: none;
}

.footer-links a:hover {
    color: var(--peach);
}

.footer-meta {
    margin-top: 42px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    justify-content: space-between;
    gap: 20px;
    font-size: 0.78rem;
}

.page-hero {
    padding: calc(var(--nav-height) + 84px) 0 72px;
    background: var(--dark);
    color: var(--white);
}

/* WHY: In-app Settings WebView loads privacy/terms/faqs with ?embed=1.
   Site chrome would let users leave the document into full site navigation.
   Early html.app-embed class (head script) + this CSS hide header/footer before paint.
   RELIANCE: privacy.html, terms.html, faqs.html head script; AppConfig.WEBSITE_*_URL. */
html.app-embed .skip-link,
html.app-embed .site-header,
html.app-embed .site-footer {
    display: none !important;
    visibility: hidden !important;
    pointer-events: none !important;
    height: 0 !important;
    max-height: 0 !important;
    overflow: hidden !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
}

html.app-embed {
    scroll-padding-top: 0;
}

html.app-embed .page-hero {
    padding-top: 32px;
    padding-bottom: 40px;
}

.page-hero p {
    max-width: 680px;
    margin: 22px 0 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.08rem;
}

.prose {
    width: min(calc(100% - 40px), 820px);
    margin-inline: auto;
    padding: 76px 0 104px;
}

.prose h2 {
    margin: 54px 0 16px;
    font-size: 1.55rem;
}

.prose h2:first-child {
    margin-top: 0;
}

.prose p,
.prose li {
    color: var(--ink-soft);
}

.prose a {
    color: var(--accent-strong);
    font-weight: 700;
}

.prose ul {
    padding-left: 22px;
}

.prose-note {
    padding: 24px;
    background: var(--accent-soft);
    border-left: 4px solid var(--accent);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    color: var(--accent-ink);
}

.faq-list {
    display: grid;
    gap: 12px;
}

.faq-item {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
}

.faq-item summary {
    position: relative;
    padding: 22px 54px 22px 22px;
    list-style: none;
    cursor: pointer;
    font-family: "Manrope", sans-serif;
    font-weight: 700;
}

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

.faq-item summary::after {
    content: "+";
    position: absolute;
    right: 22px;
    top: 17px;
    color: var(--accent);
    font-size: 1.5rem;
}

.faq-item[open] summary::after {
    content: "−";
}

.faq-answer {
    padding: 0 22px 22px;
    color: var(--ink-soft);
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.65fr) minmax(320px, 1fr);
    gap: 64px;
    align-items: start;
}

.contact-aside h2 {
    font-size: 2.2rem;
}

.contact-aside p {
    color: var(--ink-soft);
}

.contact-direct {
    display: inline-block;
    margin-top: 18px;
    color: var(--accent-strong);
    font-weight: 800;
}

.contact-form {
    padding: 32px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow);
}

.form-field {
    display: grid;
    gap: 7px;
    margin-bottom: 20px;
}

.form-field label {
    font-size: 0.86rem;
    font-weight: 700;
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    min-height: 48px;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: var(--paper);
    color: var(--ink);
    padding: 11px 13px;
}

.form-field textarea {
    min-height: 150px;
    resize: vertical;
}

.form-note {
    margin: 16px 0 0;
    color: var(--ink-soft);
    font-size: 0.78rem;
}

/* WHY: Hide honeypot from humans (incl. screen readers via aria-hidden on the node).
   IMPORTANCE: Visible trap fields get filled by real users and block contact.
   RELIANCE: contact.html .hp-field + site.js FormData("website") check. */
.hp-field {
    position: absolute;
    left: -10000px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
}

.not-found {
    min-height: 100svh;
    display: grid;
    place-items: center;
    padding: 40px 20px;
    background: var(--dark);
    color: var(--white);
    text-align: center;
}

.not-found strong {
    display: block;
    color: var(--peach);
    font-family: "Manrope", sans-serif;
    font-size: clamp(5rem, 20vw, 12rem);
    line-height: 0.85;
}

.not-found h1 {
    margin: 24px 0 14px;
    font-size: clamp(2rem, 6vw, 4rem);
}

.not-found p {
    max-width: 500px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.7);
}

.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 500ms ease, transform 500ms ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Hash targets must not move after the browser computes their scroll position. Keep the
   opacity reveal, but suppress translation on elements that are directly addressable. */
.reveal[id] {
    transform: none;
}

@media (max-width: 920px) {

    .section-heading,
    .product-stage,
    .contact-layout {
        grid-template-columns: 1fr;
    }

    .feature {
        grid-column: span 6;
    }

    .feature--wide {
        grid-column: span 12;
    }

    .product-stage {
        gap: 42px;
    }

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

@media (max-width: 720px) {
    :root {
        --nav-height: 64px;
    }

    .nav-toggle {
        display: grid;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
        height: calc(100dvh - var(--nav-height));
        display: none;
        align-content: start;
        background: var(--paper);
        color: var(--ink);
        padding: 28px 20px;
        border-top: 1px solid var(--line);
    }

    .site-header--dark .nav-links {
        background: var(--dark);
        color: var(--white);
    }

    .nav-links.is-open {
        display: grid;
    }

    .nav-links a {
        display: block;
        padding: 13px 0;
        font-size: 1.05rem;
    }

    .nav-links .button {
        width: 100%;
        min-height: 0;
        justify-content: flex-start;
        margin-top: 8px;
        padding: 21px 0 13px;
        border: 0;
        border-top: 1px solid currentColor;
        border-radius: 0;
    }

    .hero {
        min-height: 780px;
    }

    .hero-scrim {
        background:
            linear-gradient(0deg, rgba(17, 12, 23, 0.94) 0%, rgba(17, 12, 23, 0.58) 70%, rgba(17, 12, 23, 0.34) 100%);
    }

    .hero-content {
        padding-bottom: 52px;
    }

    .hero-copy {
        max-width: none;
    }

    .hero-next {
        display: none;
    }

    .band {
        padding: 76px 0;
    }

    .band--tight {
        padding: 48px 0;
    }

    .section-heading {
        gap: 22px;
        margin-bottom: 34px;
    }

    .workflow,
    .values {
        grid-template-columns: 1fr;
    }

    .workflow-step,
    .value {
        min-height: 0;
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .value {
        border-color: rgba(255, 255, 255, 0.16);
    }

    .workflow-step:last-child,
    .value:last-child {
        border-bottom: 0;
    }

    .step-number {
        margin-bottom: 28px;
    }

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

    .feature,
    .feature--wide {
        grid-column: auto;
    }

    .feature-icon {
        margin-bottom: 42px;
    }

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

    .footer-grid,
    .footer-meta {
        grid-template-columns: 1fr;
        display: grid;
    }

    .footer-links {
        margin-top: 8px;
    }

    .editor-preview {
        aspect-ratio: 4 / 3;
    }
}

@media (max-width: 430px) {

    .hero-actions,
    .action-row {
        display: grid;
    }

    .button {
        width: 100%;
    }

    .hero-proof {
        display: grid;
    }

    .workflow-step,
    .feature,
    .contact-form {
        padding: 24px;
    }

    .timeline {
        padding-left: 46px;
    }

    .timeline-label {
        width: 38px;
    }
}

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

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

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