:root {
    color-scheme: light;
}

body.sv-site {
    --sv-blue: #1769e8;
    --sv-blue-dark: #0b3f91;
    --sv-navy: #10244a;
    --sv-text: #263957;
    --sv-muted: #667691;
    --sv-line: #dbe8f8;
    --sv-ice: #f4f8ff;
    --sv-sky: #eaf3ff;
    --sv-green: #19a66a;
    margin: 0;
    min-width: 320px;
    color: var(--sv-text);
    background: #fff;
    font-family: "Heebo", "Segoe UI", Arial, sans-serif;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
}

body.sv-site a {
    color: inherit;
}

body.sv-site img {
    display: block;
    max-width: 100%;
}

.sv-shell {
    width: min(1220px, calc(100% - 40px));
    margin-inline: auto;
}

.sv-header {
    position: sticky;
    z-index: 20;
    top: 0;
    border-bottom: 1px solid rgba(219, 232, 248, 0.85);
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(18px);
}

.sv-header-inner {
    min-height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.sv-brand {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--sv-blue) !important;
    text-decoration: none;
    font-size: 22px;
    font-weight: 850;
    letter-spacing: -0.04em;
}

.sv-logo-wave {
    height: 25px;
    display: inline-flex;
    align-items: center;
    gap: 2px;
    direction: ltr;
}

.sv-logo-wave i {
    width: 2px;
    border-radius: 3px;
    background: currentColor;
}

.sv-logo-wave i:nth-child(1),
.sv-logo-wave i:nth-child(6) { height: 7px; }
.sv-logo-wave i:nth-child(2),
.sv-logo-wave i:nth-child(5) { height: 13px; }
.sv-logo-wave i:nth-child(3) { height: 23px; }
.sv-logo-wave i:nth-child(4) { height: 17px; }

.sv-nav,
.sv-header-actions,
.sv-hero-actions,
.sv-hero-notes {
    display: flex;
    align-items: center;
}

.sv-nav {
    gap: 30px;
}

.sv-nav a {
    color: #405172;
    text-decoration: none;
    font-size: 14px;
    font-weight: 650;
}

.sv-nav a:hover,
.sv-text-link:hover {
    color: var(--sv-blue);
}

.sv-header-actions {
    gap: 9px;
}

.sv-button {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
    border-radius: 11px;
    padding: 0 18px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 800;
    transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.sv-button-primary {
    color: #fff !important;
    background: var(--sv-blue);
    box-shadow: 0 9px 24px rgba(23, 105, 232, 0.2);
}

.sv-button-primary:hover {
    background: #0e5ed8;
    box-shadow: 0 12px 30px rgba(23, 105, 232, 0.27);
}

.sv-button-quiet {
    color: var(--sv-navy) !important;
    background: #fff;
    border-color: var(--sv-line);
}

.sv-button-large {
    min-height: 52px;
    border-radius: 13px;
    padding-inline: 26px;
    font-size: 15px;
}

.sv-status,
.sv-product-label,
.sv-footer-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.sv-status {
    width: fit-content;
    margin-bottom: 20px;
    border-radius: 999px;
    padding: 7px 12px;
    color: #24704f;
    background: #f0faf5;
    font-size: 12px;
    font-weight: 750;
}

.sv-status.error,
.sv-footer-status.error {
    color: #a64a53;
    background: #fff2f3;
}

.sv-status .status-dot,
.sv-footer-status .status-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--sv-green);
    box-shadow: 0 0 0 4px rgba(25, 166, 106, 0.08);
}

.sv-status.error .status-dot,
.sv-footer-status.error .status-dot {
    background: #d95d69;
}

.sv-hero {
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid #e5eefb;
    background:
        radial-gradient(circle at 16% 20%, rgba(219, 235, 255, 0.58), transparent 25rem),
        linear-gradient(180deg, #fff 0%, #fbfdff 72%, #f5f9ff 100%);
}

.sv-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.7) 48%, #fff 75%);
    opacity: 0.5;
}

.sv-hero > .sv-shell {
    position: relative;
    z-index: 1;
    padding-block: 54px 66px;
}

.sv-hero-top {
    position: relative;
    min-height: 430px;
    display: flex;
    align-items: center;
    gap: 24px;
}

.sv-hero-copy {
    position: relative;
    z-index: 3;
    flex: 0 0 46%;
    padding-block: 24px 84px;
}

.sv-hero-copy h1 {
    margin: 0;
    color: var(--sv-navy);
    font-size: clamp(48px, 5.5vw, 76px);
    line-height: 1.02;
    letter-spacing: -0.065em;
}

.sv-hero-copy h1 span {
    color: var(--sv-blue-dark);
}

.sv-hero-copy > p {
    max-width: 560px;
    margin: 22px 0 0;
    color: var(--sv-muted);
    font-size: 18px;
}

.sv-hero-actions {
    gap: 19px;
    margin-top: 29px;
}

.sv-text-link {
    color: var(--sv-blue-dark) !important;
    text-decoration: none;
    font-size: 14px;
    font-weight: 800;
}

.sv-hero-notes {
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 25px;
}

.sv-hero-notes span {
    border: 1px solid var(--sv-line);
    border-radius: 999px;
    padding: 5px 10px;
    color: #55708f;
    background: rgba(255, 255, 255, 0.76);
    font-size: 11px;
    font-weight: 700;
}

.sv-speaker-scene {
    position: relative;
    flex: 1;
    align-self: stretch;
    min-width: 0;
    margin: 0;
    overflow: hidden;
    border-radius: 30px;
}

.sv-speaker-scene::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent 0%, transparent 58%, rgba(255, 255, 255, 0.96) 96%);
}

.sv-speaker-scene > img {
    width: 100%;
    height: 100%;
    min-height: 430px;
    object-fit: cover;
    object-position: 31% center;
}

.sv-speaker-scene figcaption {
    position: absolute;
    z-index: 2;
    left: 30px;
    bottom: 31px;
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(219, 232, 248, 0.95);
    border-radius: 13px;
    padding: 10px 13px;
    color: var(--sv-navy);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 12px 35px rgba(31, 79, 144, 0.12);
    backdrop-filter: blur(10px);
    font-size: 12px;
}

.sv-speaker-scene figcaption time {
    direction: ltr;
    color: var(--sv-muted);
}

.sv-live-dot {
    width: 8px;
    height: 8px;
    display: inline-block;
    border-radius: 50%;
    background: var(--sv-green);
    box-shadow: 0 0 0 5px rgba(25, 166, 106, 0.08);
}

.sv-speech-path {
    position: absolute;
    z-index: 4;
    left: 31%;
    right: 37%;
    bottom: 82px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    direction: ltr;
}

.sv-speech-path span {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, #66a6ff);
}

.sv-speech-path span:last-child {
    background: linear-gradient(90deg, #66a6ff, transparent);
}

.sv-speech-path i {
    width: 2px;
    height: 18px;
    border-radius: 3px;
    background: var(--sv-blue);
    animation: sv-wave 1.25s ease-in-out infinite alternate;
}

.sv-speech-path i:nth-of-type(2n) { height: 32px; animation-delay: -0.3s; }
.sv-speech-path i:nth-of-type(3n) { height: 12px; animation-delay: -0.65s; }

@keyframes sv-wave {
    from { transform: scaleY(0.55); opacity: 0.55; }
    to { transform: scaleY(1); opacity: 1; }
}

.sv-live-product {
    position: relative;
    z-index: 5;
    width: min(1120px, 95%);
    margin: -66px auto 0;
    transform: perspective(1600px) rotateX(1.6deg);
    transform-origin: center top;
}

.sv-product-label {
    position: relative;
    z-index: 2;
    width: fit-content;
    margin: 0 18px -18px 0;
    border: 1px solid var(--sv-line);
    border-radius: 999px;
    padding: 8px 13px;
    color: #41705d;
    background: #fff;
    box-shadow: 0 8px 28px rgba(32, 75, 132, 0.1);
    font-size: 11px;
}

.sv-product-label span:last-child {
    color: var(--sv-muted);
}

.sv-product-frame {
    aspect-ratio: 1440 / 760;
    overflow: hidden;
    border: 1px solid #d7e5f7;
    border-radius: 25px;
    background: #fff;
    box-shadow: 0 34px 80px rgba(29, 72, 127, 0.17), 0 3px 10px rgba(29, 72, 127, 0.08);
}

.sv-product-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.sv-proof {
    border-bottom: 1px solid #e7effb;
    background: #fff;
}

.sv-proof-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding-block: 28px;
}

.sv-proof article {
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 5px 24px;
    border-inline-start: 1px solid var(--sv-line);
}

.sv-proof article:last-child {
    border-inline-start: 0;
}

.sv-proof article > span {
    width: 39px;
    height: 39px;
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    border-radius: 12px;
    color: var(--sv-blue);
    background: var(--sv-ice);
    font-size: 21px;
}

.sv-proof h2,
.sv-proof p {
    margin: 0;
}

.sv-proof h2 {
    color: var(--sv-navy);
    font-size: 14px;
}

.sv-proof p {
    margin-top: 3px;
    color: var(--sv-muted);
    font-size: 11px;
    line-height: 1.5;
}

.sv-process,
.sv-uses,
.sv-connect {
    padding-block: 94px;
}

.sv-process {
    background: linear-gradient(180deg, #fff, #f7faff);
}

.sv-uses {
    border-block: 1px solid #e7effb;
    background: #fff;
}

.sv-connect {
    background: linear-gradient(180deg, #f8fbff, #fff);
}

.sv-section-heading {
    max-width: 700px;
    margin-bottom: 40px;
}

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

.sv-section-heading > span,
.sv-mobile-copy > span,
.sv-api-copy > span,
.sv-trial > div > span {
    color: var(--sv-blue);
    font-size: 11px;
    font-weight: 850;
    letter-spacing: 0.13em;
}

.sv-section-heading h2 {
    margin: 8px 0 0;
    color: var(--sv-navy);
    font-size: clamp(31px, 4vw, 48px);
    line-height: 1.12;
    letter-spacing: -0.045em;
}

.sv-section-heading p {
    margin: 12px 0 0;
    color: var(--sv-muted);
    font-size: 16px;
}

.sv-process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border: 1px solid var(--sv-line);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 18px 50px rgba(41, 85, 145, 0.06);
}

.sv-process-grid article {
    position: relative;
    padding: 30px 25px;
    text-align: center;
}

.sv-process-grid article:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 50px;
    inset-inline-end: -18px;
    width: 36px;
    height: 1px;
    background: #8ebcff;
}

.sv-step-icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    margin: 0 auto 16px;
    border: 1px solid #cfe1fa;
    border-radius: 14px;
    color: var(--sv-blue);
    background: var(--sv-ice);
    font-weight: 850;
}

.sv-step-done {
    color: #24875d;
    background: #effaf5;
    border-color: #cceee0;
}

.sv-process-grid h3,
.sv-process-grid p {
    margin: 0;
}

.sv-process-grid h3 {
    color: var(--sv-navy);
    font-size: 16px;
}

.sv-process-grid p {
    margin-top: 7px;
    color: var(--sv-muted);
    font-size: 12px;
}

.sv-use-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.sv-use-grid article {
    overflow: hidden;
    border: 1px solid var(--sv-line);
    border-radius: 21px;
    background: #fff;
    box-shadow: 0 14px 40px rgba(37, 82, 140, 0.07);
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.sv-use-grid article:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 48px rgba(37, 82, 140, 0.11);
}

.sv-use-grid img {
    width: 100%;
    aspect-ratio: 1.65;
    object-fit: cover;
}

.sv-use-grid article > div {
    padding: 21px 22px 24px;
}

.sv-use-grid span {
    color: var(--sv-blue);
    font-size: 11px;
    font-weight: 800;
}

.sv-use-grid h3 {
    margin: 6px 0 0;
    color: var(--sv-navy);
    font-size: 20px;
}

.sv-use-grid p {
    margin: 8px 0 0;
    color: var(--sv-muted);
    font-size: 13px;
}

.sv-connect-grid {
    display: grid;
    gap: 22px;
}

.sv-mobile-card,
.sv-api-card {
    display: grid;
    align-items: center;
    gap: 46px;
    overflow: hidden;
    border: 1px solid var(--sv-line);
    border-radius: 25px;
    background: #fff;
    box-shadow: 0 20px 56px rgba(38, 82, 142, 0.07);
}

.sv-mobile-card {
    grid-template-columns: 0.85fr 1.15fr;
    min-height: 390px;
    padding: 42px 72px 0;
}

.sv-api-card {
    grid-template-columns: 0.82fr 1.18fr;
    padding: 38px 46px;
}

.sv-mobile-copy,
.sv-api-copy {
    padding-bottom: 34px;
}

.sv-mobile-copy h3,
.sv-api-copy h3 {
    margin: 8px 0 0;
    color: var(--sv-navy);
    font-size: 30px;
    line-height: 1.15;
    letter-spacing: -0.035em;
}

.sv-mobile-copy p,
.sv-api-copy p {
    margin: 12px 0 0;
    color: var(--sv-muted);
    font-size: 14px;
}

.sv-mobile-copy ul,
.sv-api-copy ul {
    display: grid;
    gap: 8px;
    margin: 20px 0;
    padding: 0;
    list-style: none;
    color: #526884;
    font-size: 13px;
}

.sv-mobile-copy li::before,
.sv-api-copy li::before {
    content: "✓";
    margin-inline-end: 8px;
    color: var(--sv-green);
    font-weight: 900;
}

.sv-mobile-copy a,
.sv-api-copy a {
    color: var(--sv-blue) !important;
    text-decoration: none;
    font-size: 13px;
    font-weight: 800;
}

.sv-phone {
    position: relative;
    width: 270px;
    height: 370px;
    justify-self: center;
    overflow: hidden;
    border: 7px solid #101722;
    border-bottom: 0;
    border-radius: 38px 38px 0 0;
    background: #fff;
    box-shadow: 0 14px 32px rgba(17, 36, 68, 0.18);
}

.sv-phone-camera {
    position: absolute;
    z-index: 2;
    top: 9px;
    left: 50%;
    width: 74px;
    height: 19px;
    transform: translateX(-50%);
    border-radius: 12px;
    background: #101722;
}

.sv-phone-app {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 46px 22px 22px;
    color: var(--sv-navy);
}

.sv-phone-app > div:first-child {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--sv-blue);
    font-size: 12px;
}

.sv-phone-app h4 {
    margin: 34px 0 0;
    font-size: 20px;
}

.sv-phone-app time {
    direction: ltr;
    margin-top: 14px;
    font-size: 31px;
    font-weight: 850;
}

.sv-phone-wave {
    height: 42px;
    display: flex;
    align-items: center;
    gap: 4px;
    margin-top: 10px;
}

.sv-phone-wave i {
    width: 3px;
    height: 13px;
    border-radius: 3px;
    background: var(--sv-blue);
}

.sv-phone-wave i:nth-child(2n) { height: 27px; }
.sv-phone-wave i:nth-child(3n) { height: 19px; }

.sv-phone-app p {
    height: 55px;
    margin: 12px 0 0;
    color: var(--sv-muted);
    text-align: center;
    font-size: 12px;
}

.sv-phone-app button {
    width: 100%;
    min-height: 42px;
    border: 0;
    border-radius: 11px;
    color: var(--sv-blue-dark);
    background: #e3efff;
    font-weight: 800;
}

.sv-api-card pre {
    margin: 0;
    overflow: auto;
    border: 1px solid #dbe7f6;
    border-radius: 17px;
    padding: 28px;
    color: #28466c;
    background: #fbfdff;
    direction: ltr;
    font: 12px/1.9 Consolas, "Courier New", monospace;
    text-align: left;
    box-shadow: inset 0 1px 0 #fff;
}

.sv-api-card code span {
    color: #16885e;
    font-weight: 800;
}

.sv-api-status {
    width: fit-content;
    display: flex;
    align-items: center;
    gap: 7px;
    margin: 18px 0;
    border-radius: 999px;
    padding: 7px 11px;
    color: #24704f;
    background: #f0faf5;
    font-size: 11px;
    font-weight: 800;
}

.sv-api-status i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--sv-green);
}

.sv-trial {
    min-height: 170px;
    display: grid;
    grid-template-columns: 0.7fr 2fr 0.8fr;
    align-items: center;
    gap: 36px;
    margin-block: 0 92px;
    overflow: hidden;
    border: 1px solid #cfe2fb;
    border-radius: 24px;
    padding: 34px 50px;
    background: linear-gradient(120deg, #f7fbff, #edf5ff 48%, #fff);
}

.sv-trial-wave {
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.sv-trial-wave i {
    width: 3px;
    height: 17px;
    border-radius: 3px;
    background: var(--sv-blue);
}

.sv-trial-wave i:nth-child(2n) { height: 38px; }
.sv-trial-wave i:nth-child(3n) { height: 26px; }

.sv-trial h2,
.sv-trial p {
    margin: 0;
}

.sv-trial h2 {
    margin-top: 6px;
    color: var(--sv-navy);
    font-size: 31px;
    letter-spacing: -0.035em;
}

.sv-trial p {
    margin-top: 5px;
    color: var(--sv-muted);
    font-size: 13px;
}

.sv-trial > div:last-child {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 7px;
    text-align: center;
}

.sv-trial small {
    color: var(--sv-muted);
    font-size: 9px;
}

.sv-footer {
    border-top: 1px solid #e3edf9;
    background: #f9fbfe;
}

.sv-footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 0.7fr 0.7fr;
    gap: 50px;
    padding-block: 50px 40px;
}

.sv-footer-grid > div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 9px;
}

.sv-footer-grid p {
    margin: 4px 0 0;
    color: var(--sv-muted);
    font-size: 13px;
}

.sv-footer-grid strong {
    margin-bottom: 4px;
    color: var(--sv-navy);
    font-size: 13px;
}

.sv-footer-grid > div > a:not(.sv-brand) {
    color: var(--sv-muted);
    text-decoration: none;
    font-size: 12px;
}

.sv-footer-status {
    margin-top: 5px;
    border-radius: 999px;
    padding: 5px 9px;
    color: #24704f;
    background: #effaf5;
    font-size: 10px;
}

.sv-footer-bottom {
    min-height: 55px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #e3edf9;
    color: #7b89a1;
    font-size: 10px;
}

@media (max-width: 980px) {
    .sv-nav { display: none; }
    .sv-hero-top { min-height: 380px; }
    .sv-hero-copy { flex-basis: 50%; }
    .sv-hero-copy h1 { font-size: clamp(43px, 6.8vw, 62px); }
    .sv-speaker-scene > img { min-height: 380px; }
    .sv-speech-path { left: 29%; right: 42%; }
    .sv-proof-grid { grid-template-columns: repeat(2, 1fr); row-gap: 20px; }
    .sv-proof article:nth-child(2) { border-inline-start: 0; }
    .sv-process-grid { grid-template-columns: repeat(2, 1fr); }
    .sv-process-grid article:nth-child(2)::after { display: none; }
    .sv-use-grid { grid-template-columns: 1fr; }
    .sv-use-grid article { display: grid; grid-template-columns: 0.9fr 1.1fr; }
    .sv-use-grid img { height: 100%; aspect-ratio: auto; }
    .sv-mobile-card { padding-inline: 42px; }
    .sv-api-card { grid-template-columns: 1fr; }
    .sv-api-copy { padding-bottom: 0; }
    .sv-trial { grid-template-columns: 0.5fr 1.7fr 0.8fr; padding-inline: 32px; }
}

@media (max-width: 720px) {
    .sv-shell { width: min(100% - 28px, 620px); }
    .sv-header-inner { min-height: 62px; }
    .sv-brand { font-size: 19px; }
    .sv-header-actions .sv-button-quiet { display: none; }
    .sv-header-actions .sv-button-primary { min-height: 38px; padding-inline: 13px; font-size: 12px; }
    .sv-hero > .sv-shell { padding-block: 30px 42px; }
    .sv-hero-top { display: block; min-height: 0; }
    .sv-hero-copy { padding: 15px 0 30px; text-align: center; }
    .sv-status { margin-inline: auto; }
    .sv-hero-copy h1 { font-size: clamp(42px, 13vw, 58px); }
    .sv-hero-copy > p { margin-inline: auto; font-size: 16px; }
    .sv-hero-actions { justify-content: center; flex-direction: column; }
    .sv-hero-actions .sv-button { width: min(100%, 320px); }
    .sv-hero-notes { justify-content: center; }
    .sv-speaker-scene { height: 330px; border-radius: 22px; }
    .sv-speaker-scene > img { min-height: 330px; object-position: 26% center; }
    .sv-speaker-scene::after { background: linear-gradient(180deg, transparent 65%, rgba(255,255,255,0.8)); }
    .sv-speech-path { left: 24%; right: 24%; bottom: 285px; }
    .sv-live-product { width: 100%; margin-top: -32px; transform: none; }
    .sv-product-label { margin-right: 10px; }
    .sv-product-label span:last-child { display: none; }
    .sv-product-frame { aspect-ratio: 1.35; border-radius: 17px; }
    .sv-proof-grid { grid-template-columns: 1fr; padding-block: 22px; }
    .sv-proof article { border-inline-start: 0; border-top: 1px solid var(--sv-line); padding: 15px 5px; }
    .sv-proof article:first-child { border-top: 0; }
    .sv-process, .sv-uses, .sv-connect { padding-block: 68px; }
    .sv-section-heading { margin-bottom: 29px; }
    .sv-section-heading h2 { font-size: 34px; }
    .sv-process-grid { grid-template-columns: 1fr; }
    .sv-process-grid article:not(:last-child)::after { top: auto; bottom: -18px; inset-inline-end: 50%; width: 1px; height: 36px; }
    .sv-use-grid article { display: block; }
    .sv-use-grid img { aspect-ratio: 1.6; }
    .sv-mobile-card, .sv-api-card { grid-template-columns: 1fr; gap: 20px; padding: 30px 24px 0; }
    .sv-mobile-copy, .sv-api-copy { padding-bottom: 0; }
    .sv-mobile-copy h3, .sv-api-copy h3 { font-size: 27px; }
    .sv-api-card { padding-bottom: 26px; }
    .sv-api-card pre { padding: 18px; font-size: 10px; }
    .sv-trial { grid-template-columns: 1fr; gap: 18px; margin-bottom: 64px; padding: 30px 24px; text-align: center; }
    .sv-trial-wave { height: 38px; }
    .sv-footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
    .sv-footer-grid > div:first-child { grid-column: 1 / -1; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .sv-speech-path i { animation: none; }
    .sv-button,
    .sv-use-grid article { transition: none; }
}
