:root {
    --ink: #191429;
    --ink-soft: #686177;
    --muted: #958da2;
    --paper: #fbf9ff;
    --surface: #ffffff;
    --line: #e9e4ef;
    --purple: #7142f4;
    --purple-dark: #4b2bbb;
    --violet: #9a35ef;
    --pink: #ff3d84;
    --orange: #ff923d;
    --blue: #5b99ff;
    --shadow: 0 24px 70px rgba(45, 24, 83, 0.12);
    --max-width: 1160px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--paper);
    color: var(--ink);
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", sans-serif;
    line-height: 1.5;
    text-rendering: optimizeLegibility;
}

a {
    color: inherit;
}

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

button {
    font: inherit;
}

.container {
    margin: 0 auto;
    max-width: var(--max-width);
    width: calc(100% - 48px);
}

.sr-only {
    clip: rect(0, 0, 0, 0);
    clip-path: inset(50%);
    height: 1px;
    overflow: hidden;
    position: absolute;
    white-space: nowrap;
    width: 1px;
}

.skip-link {
    background: var(--surface);
    border-radius: 0 0 10px 10px;
    left: 16px;
    padding: 9px 14px;
    position: fixed;
    top: -60px;
    z-index: 20;
}

.skip-link:focus {
    top: 0;
}

.site-header {
    background: rgba(251, 249, 255, 0.88);
    border-bottom: 1px solid rgba(233, 228, 239, 0.7);
    position: relative;
    z-index: 10;
}

.nav-wrap {
    align-items: center;
    display: flex;
    height: 80px;
    justify-content: space-between;
}

.brand {
    align-items: center;
    display: inline-flex;
    gap: 11px;
    text-decoration: none;
}

.brand img {
    border-radius: 11px;
    box-shadow: 0 6px 18px rgba(94, 38, 205, 0.2);
    display: block;
}

.brand span {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.04em;
}

.site-nav {
    align-items: center;
    display: flex;
    gap: 27px;
}

.site-nav > a:not(.button) {
    color: var(--ink-soft);
    font-size: 14px;
    text-decoration: none;
    transition: color 180ms ease;
}

.site-nav > a:not(.button):hover,
.site-nav > a[aria-current="page"] {
    color: var(--ink);
}

.language-switcher {
    position: relative;
}

.language-trigger {
    -webkit-appearance: none;
    appearance: none;
    align-items: center;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--ink-soft);
    cursor: pointer;
    font-family: inherit;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    min-height: 40px;
    padding: 0 38px 0 13px;
    text-align: start;
    transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
    width: 100%;
}

.language-trigger:hover,
.language-trigger[aria-expanded="true"] {
    background: #f5f1ff;
    border-color: #cabaff;
    color: var(--ink);
}

.language-switcher::after {
    border-bottom: 1px solid currentColor;
    border-right: 1px solid currentColor;
    color: var(--ink-soft);
    content: "";
    height: 5px;
    pointer-events: none;
    position: absolute;
    right: 13px;
    top: 50%;
    transform: translateY(-65%) rotate(45deg);
    width: 5px;
}

.language-switcher.is-open::after {
    transform: translateY(-35%) rotate(225deg);
}

.language-menu {
    background: rgba(255, 255, 255, 0.99);
    border: 1px solid var(--line);
    border-radius: 15px;
    box-shadow: 0 18px 36px rgba(30, 17, 63, 0.16);
    display: none;
    gap: 2px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    left: 0;
    min-width: 220px;
    padding: 6px;
    position: absolute;
    top: calc(100% + 8px);
    z-index: 20;
}

.language-menu.is-open {
    display: grid;
}

.language-option {
    align-items: center;
    background: transparent;
    border: 0;
    border-radius: 10px;
    color: var(--ink-soft);
    cursor: pointer;
    display: flex;
    font: inherit;
    font-size: 12px;
    justify-content: space-between;
    min-height: 34px;
    padding: 0 10px;
    text-align: start;
    white-space: nowrap;
    width: 100%;
}

.language-option:hover,
.language-option:focus-visible,
.language-option.is-selected {
    background: #f1edff;
    color: var(--ink);
}

.language-option.is-selected {
    font-weight: 650;
}

.language-option.is-selected::after {
    color: var(--purple);
    content: "✓";
    font-size: 14px;
    font-weight: 700;
}

[dir="rtl"] .language-trigger {
    padding-left: 38px;
    padding-right: 13px;
    text-align: right;
}

[dir="rtl"] .language-switcher::after {
    left: 13px;
    right: auto;
}

[dir="rtl"] .language-menu {
    left: auto;
    right: 0;
}

.menu-toggle {
    background: none;
    border: 0;
    cursor: pointer;
    display: none;
    height: 40px;
    padding: 8px;
    width: 40px;
}

.menu-toggle > span:not(.sr-only) {
    background: var(--ink);
    display: block;
    height: 2px;
    margin: 4px 0;
    transition: transform 180ms ease, opacity 180ms ease;
    width: 24px;
}

.button {
    align-items: center;
    border-radius: 999px;
    display: inline-flex;
    font-size: 14px;
    font-weight: 650;
    gap: 9px;
    justify-content: center;
    min-height: 52px;
    padding: 0 22px;
    text-decoration: none;
    transition: box-shadow 180ms ease, transform 180ms ease, background 180ms ease;
}

.button:hover {
    box-shadow: 0 12px 26px rgba(37, 18, 91, 0.18);
    transform: translateY(-2px);
}

.button-small {
    min-height: 40px;
    padding: 0 17px;
}

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

.button-light {
    background: #fff;
    color: var(--ink);
}

.eyebrow {
    align-items: center;
    color: var(--purple-dark);
    display: flex;
    font-size: 11px;
    font-weight: 750;
    gap: 9px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.eyebrow-light {
    color: rgba(255, 255, 255, 0.74);
}

.eyebrow-dot {
    background: currentColor;
    border-radius: 50%;
    box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.09);
    display: inline-block;
    height: 6px;
    width: 6px;
}

.hero {
    background: linear-gradient(120deg, #1a1229 0%, #34206f 50%, #a82b86 100%);
    color: #fff;
    min-height: 690px;
    overflow: hidden;
    padding: 104px 0 116px;
    position: relative;
}

.hero-glow {
    border-radius: 50%;
    filter: blur(4px);
    pointer-events: none;
    position: absolute;
}

.hero-glow-one {
    background: rgba(255, 61, 132, 0.46);
    height: 460px;
    right: -125px;
    top: -200px;
    width: 460px;
}

.hero-glow-two {
    background: rgba(119, 59, 255, 0.42);
    bottom: -260px;
    height: 560px;
    left: 17%;
    width: 560px;
}

.hero-grid {
    align-items: center;
    display: grid;
    gap: 50px;
    grid-template-columns: minmax(0, 0.89fr) minmax(470px, 1.11fr);
    position: relative;
    z-index: 1;
}

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

.hero h1 {
    font-size: clamp(52px, 6.1vw, 82px);
    font-weight: 680;
    letter-spacing: -0.075em;
    line-height: 0.99;
    margin: 25px 0 27px;
    max-width: 600px;
}

.hero-lede {
    color: rgba(255, 255, 255, 0.76);
    font-size: 18px;
    line-height: 1.65;
    max-width: 495px;
}

.hero-actions {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 36px;
}

.text-link {
    font-size: 14px;
    font-weight: 650;
    text-decoration: none;
}

.text-link-light {
    color: rgba(255, 255, 255, 0.8);
}

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

.hero-note {
    color: rgba(255, 255, 255, 0.53);
    font-size: 12px;
    margin-top: 69px;
}

.hero-note span {
    color: #ffb45b;
    margin-right: 6px;
}

.hero-visual {
    min-height: 500px;
    position: relative;
}

.visual-orbit {
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50%;
    height: 590px;
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%) rotate(-16deg);
    width: 590px;
}

.visual-orbit-one::after,
.visual-orbit-two::after {
    background: #ffaf5b;
    border-radius: 50%;
    box-shadow: 0 0 0 9px rgba(255, 175, 91, 0.12), 0 0 28px rgba(255, 175, 91, 0.55);
    content: "";
    height: 7px;
    position: absolute;
    right: 8%;
    top: 15%;
    width: 7px;
}

.visual-orbit-two {
    border-color: rgba(255, 255, 255, 0.09);
    height: 470px;
    transform: translate(-50%, -50%) rotate(34deg);
    width: 470px;
}

.visual-orbit-two::after {
    background: #ff579b;
    bottom: 12%;
    left: 4%;
    right: auto;
    top: auto;
}

.editor-card {
    background: rgba(255, 255, 255, 0.98);
    border: 7px solid rgba(255, 255, 255, 0.12);
    border-radius: 28px;
    box-shadow: 0 35px 85px rgba(10, 4, 31, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.13);
    color: var(--ink);
    left: 50%;
    overflow: hidden;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%) rotate(3deg);
    width: min(100%, 525px);
}

.editor-bar,
.editor-toolbar,
.editor-actions,
.timeline-tools {
    align-items: center;
    display: flex;
}

.editor-bar {
    background: #fff;
    font-size: 10px;
    justify-content: space-between;
    padding: 13px 17px;
}

.editor-project {
    align-items: center;
    display: flex;
    font-weight: 700;
    gap: 7px;
}

.status-dot {
    background: #67d79a;
    border-radius: 50%;
    height: 6px;
    width: 6px;
}

.editor-actions {
    color: #a59cab;
    gap: 13px;
}

.editor-actions strong {
    background: var(--ink);
    border-radius: 9px;
    color: #fff;
    font-size: 9px;
    font-weight: 650;
    padding: 6px 10px;
}

.editor-canvas {
    aspect-ratio: 1.55;
    background: linear-gradient(152deg, #fbd4b8, #fac1cd 47%, #d0b3f3);
    overflow: hidden;
    position: relative;
}

.canvas-light {
    background: rgba(255, 255, 255, 0.49);
    border-radius: 50%;
    filter: blur(14px);
    height: 140px;
    position: absolute;
    right: -26px;
    top: 11px;
    width: 140px;
}

.canvas-sun {
    background: #ffcf8f;
    border-radius: 50%;
    box-shadow: 0 0 0 18px rgba(255, 225, 185, 0.25);
    height: 61px;
    position: absolute;
    right: 18%;
    top: 18%;
    width: 61px;
}

.canvas-hill {
    border-radius: 50% 50% 0 0;
    bottom: -35%;
    position: absolute;
    transform: rotate(-7deg);
    width: 115%;
}

.canvas-hill-back {
    background: #a984c8;
    height: 58%;
    right: -16%;
}

.canvas-hill-front {
    background: linear-gradient(110deg, #7761ae, #584299);
    height: 48%;
    left: -17%;
}

.canvas-card-label {
    color: #fff;
    font-size: clamp(16px, 2vw, 23px);
    font-weight: 650;
    left: 10%;
    letter-spacing: -0.055em;
    line-height: 1.06;
    position: absolute;
    text-shadow: 0 2px 16px rgba(47, 24, 83, 0.24);
    top: 19%;
}

.canvas-card-label em {
    color: #ffe1bd;
    font-style: normal;
}

.canvas-caption {
    background: rgba(19, 14, 36, 0.71);
    border-radius: 6px;
    bottom: 11%;
    color: #fff;
    font-size: 9px;
    left: 50%;
    padding: 5px 8px;
    position: absolute;
    transform: translateX(-50%);
}

.editor-timeline {
    background: #fcfbfe;
    padding: 10px 13px 11px;
}

.timeline-tools {
    color: #a49cae;
    font-size: 8px;
    justify-content: space-between;
    margin-bottom: 7px;
}

.timeline-tool-active {
    color: var(--pink);
    font-size: 13px;
}

.timeline-track {
    background: #edeaf1;
    border-radius: 5px;
    display: flex;
    gap: 3px;
    height: 29px;
    overflow: hidden;
    position: relative;
}

.timeline-clip {
    background: linear-gradient(145deg, #b1c6dd, #6a8cbd);
    border-radius: 4px;
    display: block;
    height: 100%;
}

.clip-one { width: 29%; }
.clip-two { background: linear-gradient(145deg, #ecc1b2, #bd7c8d); width: 23%; }
.clip-three { background: linear-gradient(145deg, #a1c9b8, #5c9d8d); width: 35%; }

.timeline-playhead {
    background: var(--pink);
    height: 51px;
    left: 38%;
    position: absolute;
    top: -3px;
    width: 2px;
}

.timeline-playhead::before {
    background: var(--pink);
    border-radius: 50%;
    content: "";
    height: 7px;
    left: -2.5px;
    position: absolute;
    top: 0;
    width: 7px;
}

.timeline-lanes {
    align-items: center;
    display: flex;
    gap: 8px;
    margin-top: 7px;
}

.audio-wave {
    align-items: center;
    background: #ebe8fb;
    border-radius: 4px;
    display: flex;
    gap: 2px;
    height: 17px;
    padding: 0 6px;
    width: 68%;
}

.audio-wave i {
    background: #8f79e5;
    border-radius: 2px;
    display: block;
    height: 5px;
    opacity: 0.77;
    width: 3px;
}

.audio-wave i:nth-child(2n) { height: 11px; }
.audio-wave i:nth-child(3n) { height: 7px; }
.audio-wave i:nth-child(5n) { height: 14px; }

.caption-lane {
    background: #ffe3ed;
    border-radius: 4px;
    color: #ce567d;
    font-size: 7px;
    padding: 4px 6px;
}

.editor-toolbar {
    border-top: 1px solid #eeeaf2;
    color: #98919f;
    font-size: 8px;
    justify-content: space-around;
    padding: 9px 5px 10px;
}

.editor-toolbar span {
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.editor-toolbar span:first-child { color: var(--purple); }
.editor-toolbar b { font-size: 14px; font-weight: 500; }

.floating-chip {
    align-items: center;
    backdrop-filter: blur(12px);
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.23);
    border-radius: 999px;
    box-shadow: 0 12px 30px rgba(18, 5, 45, 0.23);
    color: #fff;
    display: flex;
    font-size: 10px;
    gap: 6px;
    padding: 9px 12px;
    position: absolute;
    z-index: 2;
}

.floating-chip span { color: #a9f6c8; }
.floating-chip-top { right: -8px; top: 19%; }
.floating-chip-bottom { bottom: 11%; left: -5px; }
.floating-chip-bottom span { color: #ffd399; }

.section {
    padding: 135px 0;
}

.section-intro {
    background: var(--paper);
}

.section-heading-split {
    align-items: end;
    display: grid;
    gap: 80px;
    grid-template-columns: 1fr 0.75fr;
    margin-bottom: 62px;
}

.section-heading h2,
.local-copy h2,
.download-card h2 {
    font-size: clamp(44px, 5.2vw, 69px);
    font-weight: 650;
    letter-spacing: -0.075em;
    line-height: 0.98;
    margin-top: 18px;
}

.section-heading h2 em,
.local-copy h2 em,
.download-card h2 em {
    color: var(--purple);
    font-style: normal;
}

.section-lede {
    color: var(--ink-soft);
    font-size: 17px;
    line-height: 1.68;
    max-width: 370px;
}

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

.feature-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 22px;
    min-height: 310px;
    overflow: hidden;
    padding: 29px;
    position: relative;
    transition: box-shadow 180ms ease, transform 180ms ease;
}

.feature-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-4px);
}

.feature-card-tall {
    grid-row: span 2;
    min-height: 637px;
}

.feature-card-wide {
    grid-column: span 2;
}

.feature-icon {
    align-items: center;
    border-radius: 13px;
    display: flex;
    font-size: 19px;
    height: 47px;
    justify-content: center;
    margin-bottom: 50px;
    width: 47px;
}

.feature-icon-purple { background: #eee9ff; color: var(--purple); }
.feature-icon-orange { background: #fff0df; color: #e97824; }
.feature-icon-pink { background: #ffe5ef; color: #ea4f84; font-weight: 700; }
.feature-icon-blue { background: #e6f0ff; color: #477fda; }

.card-kicker {
    color: var(--muted);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.feature-card h3 {
    font-size: 25px;
    letter-spacing: -0.045em;
    line-height: 1.1;
    margin: 12px 0 13px;
}

.feature-card > p:last-of-type {
    color: var(--ink-soft);
    font-size: 14px;
    line-height: 1.66;
    max-width: 330px;
}

.feature-card-audio > p:last-of-type {
    padding-bottom: 84px;
}

.feature-card-export > p:last-of-type {
    padding-bottom: 84px;
}

.mini-timeline {
    bottom: 30px;
    display: flex;
    gap: 4px;
    height: 91px;
    left: 29px;
    position: absolute;
    right: 29px;
}

.mini-timeline span {
    background: linear-gradient(150deg, #9cbbd6, #7b83c4);
    border-radius: 7px;
    display: block;
    height: 100%;
}

.mini-timeline span:nth-child(1) { width: 33%; }
.mini-timeline span:nth-child(2) { background: linear-gradient(150deg, #f0c5bc, #c18a9d); width: 25%; }
.mini-timeline span:nth-child(3) { background: linear-gradient(150deg, #b5d6c8, #6caa99); width: 37%; }
.mini-timeline i { background: var(--pink); height: 108px; left: 44%; position: absolute; top: -8px; width: 2px; }

.mini-timeline i::before { background: var(--pink); border-radius: 50%; content: ""; height: 8px; left: -3px; position: absolute; top: -1px; width: 8px; }

.mini-wave {
    align-items: center;
    bottom: 29px;
    display: flex;
    gap: 5px;
    height: 45px;
    left: 29px;
    position: absolute;
    right: 29px;
}

.mini-wave i {
    background: linear-gradient(#ffb460, #ff764f);
    border-radius: 3px;
    display: block;
    height: 17px;
    width: 7px;
}

.mini-wave i:nth-child(2n) { height: 33px; }
.mini-wave i:nth-child(3n) { height: 25px; }
.mini-wave i:nth-child(5n) { height: 42px; }

.mini-type {
    bottom: 31px;
    color: #ed79a0;
    display: flex;
    flex-direction: column;
    font-size: 12px;
    letter-spacing: 0.15em;
    line-height: 1;
    position: absolute;
    right: 33px;
    text-align: right;
}

.mini-type strong { color: var(--ink); font-size: 30px; letter-spacing: -0.08em; }

.export-pill {
    align-items: center;
    background: #f4f1f7;
    border-radius: 999px;
    bottom: 30px;
    display: flex;
    font-size: 12px;
    gap: 8px;
    padding: 8px 11px;
    position: absolute;
    right: 29px;
}

.export-pill span:not(.export-check) { background: #fff; border-radius: 999px; color: var(--ink-soft); padding: 5px 9px; }
.export-check { align-items: center; background: #68cf91; border-radius: 50%; color: #fff; display: flex; height: 25px; justify-content: center; width: 25px; }

.workflow-section {
    background: var(--ink);
    color: #fff;
    overflow: hidden;
    padding: 130px 0 138px;
    position: relative;
}

.workflow-section::before {
    background: radial-gradient(circle, rgba(137, 73, 255, 0.42), transparent 67%);
    content: "";
    height: 700px;
    left: -15%;
    position: absolute;
    top: -40%;
    width: 700px;
}

.section-heading-center {
    text-align: center;
}

.section-heading-center .eyebrow { justify-content: center; }
.section-heading-dark { position: relative; z-index: 1; }
.section-heading-dark h2 em { color: #ff9f64; }

.workflow-grid {
    display: grid;
    gap: 50px;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 80px;
    position: relative;
    z-index: 1;
}

.workflow-step {
    border-top: 1px solid rgba(255, 255, 255, 0.21);
    padding-top: 21px;
}

.step-number {
    color: #ff9f64;
    display: block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: 55px;
}

.step-line {
    background: linear-gradient(90deg, #ff9f64, rgba(255, 159, 100, 0.05));
    height: 2px;
    margin-bottom: 26px;
    width: 70px;
}

.workflow-step h3 {
    font-size: 25px;
    letter-spacing: -0.05em;
    margin-bottom: 14px;
}

.workflow-step p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    line-height: 1.7;
    max-width: 280px;
}

.local-section {
    background: #f2effc;
    padding: 143px 0;
}

.local-grid {
    align-items: center;
    display: grid;
    gap: 95px;
    grid-template-columns: 1fr 0.92fr;
}

.local-copy > p:not(.eyebrow) {
    color: var(--ink-soft);
    font-size: 17px;
    line-height: 1.7;
    margin-top: 31px;
    max-width: 465px;
}

.local-points {
    display: grid;
    gap: 20px;
    margin-top: 40px;
}

.local-points > div {
    align-items: flex-start;
    display: flex;
    gap: 13px;
}

.local-points > div > span {
    align-items: center;
    background: #fff;
    border-radius: 50%;
    color: var(--purple);
    display: flex;
    flex: 0 0 auto;
    font-size: 12px;
    height: 23px;
    justify-content: center;
    margin-top: 2px;
    width: 23px;
}

.local-points strong,
.local-points small {
    display: block;
}

.local-points strong { font-size: 14px; }
.local-points small { color: var(--ink-soft); font-size: 13px; margin-top: 2px; }

.local-art {
    min-height: 440px;
    position: relative;
}

.local-ring {
    border: 1px solid rgba(113, 66, 244, 0.22);
    border-radius: 50%;
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%) rotate(-24deg);
}

.local-ring-one { height: 375px; width: 375px; }
.local-ring-two { border-color: rgba(255, 61, 132, 0.22); height: 265px; transform: translate(-50%, -50%) rotate(48deg); width: 265px; }

.local-note-card {
    background: var(--ink);
    border-radius: 18px;
    box-shadow: 0 20px 40px rgba(36, 19, 78, 0.2);
    color: #fff;
    left: 50%;
    padding: 22px 23px;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%) rotate(-5deg);
    width: 230px;
}

.local-note-icon { color: #ffab6a; display: block; font-size: 24px; margin-bottom: 29px; }
.local-note-card strong, .local-note-card small { display: block; }
.local-note-card strong { font-size: 11px; letter-spacing: 0.14em; }
.local-note-card small { color: rgba(255, 255, 255, 0.58); font-size: 13px; line-height: 1.4; margin-top: 7px; }

.local-icon-card {
    background: #fff;
    border-radius: 20px;
    bottom: 28px;
    box-shadow: 0 18px 34px rgba(64, 37, 126, 0.16);
    padding: 10px;
    position: absolute;
    right: 9%;
    transform: rotate(10deg);
}

.local-icon-card img { border-radius: 12px; display: block; height: 74px; width: 74px; }

.download-section {
    background: linear-gradient(120deg, #6838de, #bb3386 65%, #eb6c54);
    color: #fff;
    padding: 87px 0;
}

.download-card {
    align-items: center;
    display: flex;
    justify-content: space-between;
}

.download-card h2 { font-size: clamp(42px, 4.8vw, 63px); margin-top: 16px; }
.download-card h2 em { color: #ffd49b; }
.download-card > div:first-child > p:last-child { color: rgba(255, 255, 255, 0.74); font-size: 16px; margin-top: 24px; }

.download-action { align-items: center; display: flex; flex-direction: column; gap: 13px; }
.download-action small { color: rgba(255, 255, 255, 0.6); font-size: 11px; }

.site-footer {
    background: var(--ink);
    color: #fff;
    padding: 40px 0 25px;
}

.footer-top {
    align-items: center;
    display: grid;
    gap: 22px;
    grid-template-columns: 1fr 1fr 1fr;
}

.brand-footer span { color: #fff; }
.footer-top > p { color: rgba(255, 255, 255, 0.53); font-size: 13px; text-align: center; }
.footer-links { display: flex; gap: 20px; justify-content: flex-end; }
.footer-links a { color: rgba(255, 255, 255, 0.62); font-size: 12px; text-decoration: none; }
.footer-links a:hover { color: #fff; }

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.38);
    display: flex;
    font-size: 11px;
    justify-content: space-between;
    margin-top: 35px;
    padding-top: 18px;
}

@media (max-width: 920px) {
    .hero-grid { grid-template-columns: 1fr; }
    .hero-copy { margin: 0 auto; max-width: 650px; text-align: center; }
    .hero-copy .eyebrow, .hero-actions { justify-content: center; }
    .hero-lede { margin: 0 auto; }
    .hero-note { margin-top: 38px; }
    .hero-visual { margin: 0 auto; max-width: 620px; width: 100%; }
    .feature-grid { grid-template-columns: repeat(2, 1fr); }
    .feature-card-tall { grid-row: span 1; min-height: 420px; }
    .feature-card-wide { grid-column: span 2; }
    .local-grid { gap: 35px; grid-template-columns: 1fr 0.8fr; }
}

@media (max-width: 700px) {
    .container { width: calc(100% - 36px); }
    .nav-wrap { flex-wrap: wrap; height: 70px; }
    .menu-toggle { display: block; }
    .site-nav {
        align-items: stretch;
        background: rgba(255, 255, 255, 0.98);
        border: 1px solid var(--line);
        border-radius: 16px;
        box-shadow: 0 18px 35px rgba(30, 17, 63, 0.12);
        display: none;
        flex-basis: 100%;
        flex-direction: column;
        gap: 0;
        margin-top: 8px;
        padding: 8px;
        position: static;
        width: 100%;
    }
    .site-header.menu-open .nav-wrap { height: auto; padding-bottom: 8px; }
    .site-nav.is-open { display: flex; }
    .site-nav > a:not(.button) { padding: 11px 12px; }
    .site-nav .language-switcher { padding: 5px 0; }
    .site-nav .language-menu { min-width: 0; width: 100%; }
    .site-nav .button { margin-top: 5px; }
    .section { padding: 90px 0; }
    .hero { min-height: 0; padding: 77px 0 88px; }
    .hero h1 { font-size: clamp(48px, 14vw, 70px); }
    .hero-lede { font-size: 16px; }
    .hero-visual { min-height: 370px; }
    .visual-orbit { height: 420px; width: 420px; }
    .visual-orbit-two { height: 330px; width: 330px; }
    .editor-card { border-width: 5px; border-radius: 22px; }
    .floating-chip { font-size: 9px; padding: 8px 10px; }
    .floating-chip-top { right: -2px; top: 12%; }
    .floating-chip-bottom { bottom: 8%; left: -2px; }
    .section-heading-split { display: block; margin-bottom: 42px; }
    .section-lede { font-size: 16px; margin-top: 28px; }
    .feature-grid { display: block; }
    .feature-card, .feature-card-tall, .feature-card-wide { min-height: 310px; margin-bottom: 14px; }
    .feature-card-tall { min-height: 405px; }
    .workflow-section { padding: 90px 0; }
    .workflow-grid { display: block; margin-top: 58px; }
    .workflow-step { margin-bottom: 42px; }
    .workflow-step:last-child { margin-bottom: 0; }
    .step-number { margin-bottom: 26px; }
    .local-section { padding: 90px 0; }
    .local-grid { display: flex; flex-direction: column; }
    .local-art { min-height: 370px; width: 100%; }
    .local-ring-one { height: 310px; width: 310px; }
    .local-ring-two { height: 220px; width: 220px; }
    .download-section { padding: 72px 0; }
    .download-card { align-items: flex-start; display: block; }
    .download-action { align-items: flex-start; margin-top: 32px; }
    .footer-top { align-items: flex-start; display: flex; flex-direction: column; }
    .footer-top > p { text-align: left; }
    .footer-links { justify-content: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { transition-duration: 0.01ms !important; }
}
