@font-face {
    font-family: "Poppins";
    src: url("../fonts/poppins-v24-latin_latin-ext-regular.woff2") format("woff2");
    font-style: normal;
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: "Poppins";
    src: url("../fonts/poppins-v24-latin_latin-ext-600.woff2") format("woff2");
    font-style: normal;
    font-weight: 600;
    font-display: swap;
}

@font-face {
    font-family: "Poppins";
    src: url("../fonts/poppins-v24-latin_latin-ext-800.woff2") format("woff2");
    font-style: normal;
    font-weight: 800;
    font-display: swap;
}

:root {
    --ink: #182237;
    --muted: #667085;
    --line: #e3e7ef;
    --surface: #ffffff;
    --surface-soft: #f5f6fa;
    --purple: #6d3ce8;
    --purple-dark: #5625cb;
    --purple-pale: #eee9ff;
    --pink: #d93280;
    --navy: #17223a;
    --shadow: 0 22px 55px rgba(40, 31, 78, 0.14);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--surface);
    font-family: "Poppins", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
}

button,
input {
    font: inherit;
}

.page-shell {
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
}

.site-header {
    position: relative;
    z-index: 10;
    background: #f8f7fc;
}

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

.wordmark {
    color: var(--ink);
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -0.06em;
    text-decoration: none;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.main-nav > a:not(.button) {
    color: #4b5568;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
}

.main-nav > a:not(.button):hover {
    color: var(--purple);
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 52px;
    padding: 13px 22px;
    border: 1px solid transparent;
    border-radius: 13px;
    font-weight: 600;
    line-height: 1.25;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

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

.button-small {
    min-height: 42px;
    padding: 9px 17px;
    border-radius: 11px;
    font-size: 14px;
}

.button-primary {
    color: #fff;
    background: var(--purple);
    box-shadow: 0 9px 20px rgba(109, 60, 232, 0.24);
}

.button-primary:hover {
    background: var(--purple-dark);
    box-shadow: 0 12px 26px rgba(109, 60, 232, 0.3);
}

.button-secondary {
    color: #fff;
    background: var(--navy);
}

.button-secondary:hover {
    background: #25324d;
}

.button-quiet {
    border-color: #d7dbe5;
    background: rgba(255, 255, 255, 0.72);
}

.button-quiet:hover {
    border-color: #bbb2dc;
    background: #fff;
}

.hero {
    position: relative;
    overflow: hidden;
    padding: 58px 0 82px;
    background:
        radial-gradient(circle at 13% 25%, rgba(109, 60, 232, 0.11), transparent 26%),
        radial-gradient(circle at 87% 18%, rgba(217, 50, 128, 0.08), transparent 23%),
        #f8f7fc;
}

.hero::after {
    position: absolute;
    right: -110px;
    bottom: -210px;
    width: 420px;
    height: 420px;
    border: 1px solid rgba(109, 60, 232, 0.12);
    border-radius: 50%;
    content: "";
}

.product-demo-section {
    padding: 92px 0;
    overflow: hidden;
    background:
        radial-gradient(circle at 10% 18%, rgba(109, 60, 232, .09), transparent 25rem),
        radial-gradient(circle at 92% 78%, rgba(217, 50, 128, .07), transparent 24rem),
        #fff;
}

.product-demo-heading {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(18rem, .65fr);
    align-items: end;
    gap: 50px;
    margin-bottom: 32px;
}

.product-demo-heading h2 {
    max-width: 760px;
    margin: 10px 0 0;
    color: var(--ink);
    font-size: clamp(32px, 4.4vw, 58px);
    line-height: 1.08;
    letter-spacing: -.045em;
}

.product-demo-heading p {
    margin: 0 0 7px;
    color: var(--muted);
    font-size: 15px;
}

.product-demo-frame-wrap {
    overflow: hidden;
    border: 1px solid #d9dced;
    border-radius: 25px;
    background: #f8f7fc;
    box-shadow: 0 30px 80px rgba(40, 31, 78, .16);
}

.product-demo-frame {
    display: block;
    width: 100%;
    height: 730px;
    border: 0;
    background: transparent;
}

.product-demo-action {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
    margin-top: 30px;
}

.product-demo-action span {
    color: var(--muted);
    font-size: 14px;
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(340px, 0.9fr) minmax(460px, 1.1fr);
    gap: clamp(54px, 8vw, 104px);
    align-items: center;
}

.join-column {
    min-width: 0;
}

.join-card {
    padding: clamp(30px, 4vw, 46px);
    border: 1px solid rgba(109, 60, 232, 0.11);
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow);
}

.eyebrow {
    margin-bottom: 10px;
    color: var(--purple);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.join-card h1,
.hero-copy h2,
.section-heading h2,
.features-intro h2,
.use-cases h2,
.final-cta h2 {
    margin: 0;
    font-weight: 800;
    letter-spacing: -0.045em;
    line-height: 1.13;
}

.join-card h1 {
    font-size: clamp(38px, 5vw, 58px);
}

.join-intro {
    margin: 12px 0 27px;
    color: var(--muted);
}

.form-message {
    margin: 0 0 18px;
    padding: 12px 14px;
    border: 1px solid #f3b9c4;
    border-radius: 10px;
    color: #9f1933;
    background: #fff1f3;
    font-size: 14px;
}

.join-form label {
    display: block;
    margin-bottom: 8px;
    font-size: 13px;
    font-weight: 600;
}

.join-form input {
    width: 100%;
    height: 72px;
    padding: 0 20px;
    border: 2px solid #ccd2de;
    border-radius: 15px;
    outline: none;
    color: var(--ink);
    background: #fff;
    font-size: clamp(24px, 4vw, 32px);
    font-weight: 800;
    letter-spacing: 0.12em;
    text-align: center;
    transition: border-color 150ms ease, box-shadow 150ms ease;
}

.join-form input::placeholder {
    color: #a8afbd;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.join-form input:focus {
    border-color: var(--purple);
    box-shadow: 0 0 0 5px rgba(109, 60, 232, 0.12);
}

.button-join {
    width: 100%;
    min-height: 58px;
    margin-top: 13px;
    font-size: 17px;
}

.button-join span {
    font-size: 22px;
    line-height: 1;
}

.form-help {
    margin: 18px 0 0;
    color: #7b8495;
    font-size: 12px;
    line-height: 1.55;
}

.quick-facts {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px 24px;
    margin-top: 22px;
    color: #586276;
    font-size: 12px;
    font-weight: 600;
}

.quick-facts span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.quick-facts span::before {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--pink);
    content: "";
}

.hero-copy h2 {
    max-width: 660px;
    font-size: clamp(40px, 5vw, 67px);
}

.hero-copy > p {
    max-width: 620px;
    margin: 24px 0 0;
    color: #5e687a;
    font-size: clamp(16px, 2vw, 19px);
}

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

.text-link {
    color: var(--purple-dark);
    font-size: 14px;
    font-weight: 600;
    text-underline-offset: 4px;
}

.hero-preview {
    width: min(100%, 510px);
    margin-top: 39px;
    padding: 22px;
    border: 1px solid rgba(91, 74, 150, 0.13);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.7);
    box-shadow: 0 18px 38px rgba(41, 34, 71, 0.08);
    transform: rotate(-1deg);
}

.preview-topline,
.preview-status {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #737c8e;
    font-size: 11px;
    font-weight: 600;
}

.preview-topline strong {
    color: var(--purple);
    font-size: 16px;
}

.preview-question {
    margin: 13px 0 17px;
    font-size: 16px;
    font-weight: 800;
}

.preview-answers {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 9px;
}

.answer {
    height: 28px;
    border-radius: 8px;
}

.answer-red {
    background: #d94a58;
}

.answer-blue {
    background: #3979c4;
}

.answer-amber {
    background: #d88a19;
}

.answer-green {
    background: #2f8f6d;
}

.preview-status {
    justify-content: flex-start;
    gap: 9px;
    margin-top: 15px;
}

.status-dots {
    display: flex;
}

.status-dots i {
    display: block;
    width: 17px;
    height: 17px;
    margin-left: -4px;
    border: 2px solid #fff;
    border-radius: 50%;
    background: #b9afd9;
}

.status-dots i:first-child {
    margin-left: 0;
    background: var(--purple);
}

.status-dots i:last-child {
    background: var(--pink);
}

.podium-preview {
    position: relative;
    overflow: hidden;
    padding-bottom: 0;
    transform: rotate(-1deg);
}

.podium-preview-topline {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #737c8e;
    font-size: 11px;
    font-weight: 700;
}

.podium-preview-topline strong {
    color: var(--purple);
}

.podium-players {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 8px;
    margin-top: 13px;
}

.podium-player {
    position: relative;
    display: flex;
    width: 29%;
    min-width: 0;
    flex-direction: column;
    align-items: center;
    color: var(--navy);
    text-align: center;
}

.podium-avatar {
    display: grid;
    place-items: center;
    width: 43px;
    height: 43px;
    margin-bottom: 5px;
    border: 3px solid #fff;
    border-radius: 50%;
    background: #ede9fe;
    font-size: 23px;
    box-shadow: 0 6px 16px rgba(52, 39, 98, 0.16);
}

.podium-avatar img {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: contain;
}

.podium-player strong {
    overflow: hidden;
    max-width: 100%;
    font-size: 12px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.podium-player small {
    margin: 1px 0 7px;
    color: #7b8495;
    font-size: 9px;
}

.podium-player > div {
    display: grid;
    place-items: start center;
    width: 100%;
    height: 51px;
    padding-top: 9px;
    border-radius: 9px 9px 0 0;
    background: #d9dce6;
    color: #737c8e;
    font-size: 18px;
}

.podium-first > div {
    height: 73px;
    background: linear-gradient(180deg, #8b5cf6, #6d3dd1);
    color: #fff;
}

.podium-third > div {
    height: 38px;
    background: #e9c6af;
    color: #9b5e37;
}

.podium-crown {
    position: absolute;
    top: -17px;
    color: #e9a91a;
    font-size: 18px;
    transform: rotate(-8deg);
}

.podium-confetti i {
    position: absolute;
    z-index: 1;
    width: 6px;
    height: 11px;
    border-radius: 2px;
    background: var(--purple);
    transform: rotate(24deg);
}

.podium-confetti i:nth-child(1) { top: 42px; left: 8%; background: var(--pink); transform: rotate(-35deg); }
.podium-confetti i:nth-child(2) { top: 72px; left: 20%; background: #f2b526; transform: rotate(55deg); }
.podium-confetti i:nth-child(3) { top: 39px; left: 39%; background: #3979c4; transform: rotate(18deg); }
.podium-confetti i:nth-child(4) { top: 61px; right: 35%; background: #2f8f6d; transform: rotate(-48deg); }
.podium-confetti i:nth-child(5) { top: 36px; right: 18%; background: #f2b526; transform: rotate(42deg); }
.podium-confetti i:nth-child(6) { top: 77px; right: 7%; background: var(--pink); transform: rotate(-18deg); }

.feature-question-preview {
    margin: 43px -7px -73px 38px;
    padding: 24px;
    border: 1px solid #dfe2ea;
    border-radius: 18px;
    background: #fafafd;
    box-shadow: 0 18px 35px rgba(34, 40, 62, 0.09);
    transform: rotate(2deg);
}

.how-section,
.features-section,
.final-cta {
    padding: 100px 0;
}

.section-heading {
    max-width: 660px;
    margin-bottom: 44px;
}

.section-heading h2,
.features-intro h2,
.use-cases h2,
.final-cta h2 {
    font-size: clamp(32px, 4vw, 48px);
}

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

.step {
    position: relative;
    min-height: 250px;
    padding: 33px 42px 15px 0;
}

.step:not(:last-child) {
    border-right: 1px solid var(--line);
}

.step:not(:first-child) {
    padding-left: 42px;
}

.step-number {
    display: inline-flex;
    margin-bottom: 42px;
    color: var(--purple);
    font-size: 13px;
    font-weight: 800;
}

.step h3,
.feature h3 {
    margin: 0 0 10px;
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -0.025em;
    line-height: 1.3;
}

.step p,
.feature p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
}

.features-section {
    background: var(--surface-soft);
}

.features-intro {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 70px;
    align-items: end;
    margin-bottom: 46px;
}

.features-intro > p {
    margin: 0 0 4px;
    color: var(--muted);
}

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

.feature {
    min-height: 240px;
    padding: 31px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: #fff;
}

.feature-large {
    grid-row: span 2;
    min-height: 498px;
    overflow: hidden;
}

.feature-label {
    display: block;
    margin-bottom: 46px;
    color: var(--purple);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.feature-large p {
    max-width: 500px;
}

.mini-editor {
    margin: 47px -7px -80px 38px;
    padding: 29px;
    border: 1px solid #dfe2ea;
    border-radius: 18px;
    background: #fafafd;
    box-shadow: 0 18px 35px rgba(34, 40, 62, 0.09);
    transform: rotate(2deg);
}

.editor-line {
    display: block;
    width: 55%;
    height: 10px;
    margin-bottom: 12px;
    border-radius: 8px;
    background: #dadde5;
}

.editor-line-long {
    width: 82%;
    background: #c9c2e7;
}

.editor-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 9px;
    margin-top: 25px;
}

.editor-options i {
    height: 48px;
    border-radius: 9px;
    background: #d94a58;
}

.editor-options i:nth-child(2) {
    background: #3979c4;
}

.editor-options i:nth-child(3) {
    background: #d88a19;
}

.editor-options i:nth-child(4) {
    background: #2f8f6d;
}

.feature-accent {
    color: #fff;
    border-color: var(--purple);
    background: var(--purple);
}

.feature-accent .feature-label,
.feature-accent p {
    color: #e8e1ff;
}

.use-cases {
    padding: 92px 0;
    color: #fff;
    background: var(--navy);
}

.pricing-section {
    padding: 105px 0;
    background: #fff;
}

.pricing-heading {
    max-width: 760px;
    margin: 0 auto 48px;
    text-align: center;
}

.pricing-heading h2 {
    margin: 0;
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    letter-spacing: -0.045em;
    line-height: 1.13;
}

.pricing-heading > p {
    margin: 18px 0 0;
    color: var(--muted);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    width: min(100%, 960px);
    margin: 0 auto;
    align-items: stretch;
}

.pricing-card {
    position: relative;
    display: flex;
    min-width: 0;
    padding: 35px;
    flex-direction: column;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 14px 35px rgba(35, 39, 61, .07);
}

.pricing-card-plus {
    border: 2px solid var(--purple);
    box-shadow: 0 22px 50px rgba(91, 33, 182, .14);
}

.pricing-badge {
    position: absolute;
    top: 0;
    right: 28px;
    padding: 8px 14px;
    border-radius: 0 0 10px 10px;
    color: #fff;
    background: var(--purple);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.pricing-card-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 25px;
    min-height: 105px;
}

.pricing-name {
    display: block;
    margin-bottom: 8px;
    font-size: 23px;
    font-weight: 800;
    letter-spacing: -.035em;
}

.pricing-card-top p {
    max-width: 260px;
    margin: 0;
    color: var(--muted);
    font-size: 12px;
}

.pricing-price {
    flex: 0 0 auto;
    text-align: right;
}

.pricing-price strong {
    display: block;
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -.04em;
    white-space: nowrap;
}

.pricing-price span {
    color: var(--muted);
    font-size: 10px;
}

.annual-price {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin: 20px 0 2px;
    padding: 13px 15px;
    border-radius: 11px;
    color: #5130af;
    background: var(--purple-pale);
    font-size: 11px;
}

.annual-price span {
    padding: 4px 7px;
    border-radius: 6px;
    color: #fff;
    background: var(--purple);
    font-size: 9px;
    font-weight: 800;
    white-space: nowrap;
}

.pricing-features {
    display: grid;
    gap: 13px;
    margin: 28px 0 32px;
    padding: 0;
    list-style: none;
}

.pricing-features li {
    position: relative;
    padding-left: 26px;
    color: #4f596b;
    font-size: 13px;
}

.pricing-features li::before {
    position: absolute;
    left: 0;
    top: 1px;
    display: grid;
    width: 18px;
    height: 18px;
    place-items: center;
    border-radius: 50%;
    color: var(--purple);
    background: var(--purple-pale);
    content: "✓";
    font-size: 10px;
    font-weight: 800;
}

.pricing-features .is-unavailable {
    color: #9aa1ad;
}

.pricing-features .is-unavailable::before {
    color: #8c94a2;
    background: #eef0f4;
    content: "–";
}

.pricing-button {
    width: 100%;
    margin-top: auto;
}

.pricing-button-quiet {
    border-color: #d8dce5;
    color: var(--ink);
    background: #f7f8fa;
}

.pricing-button-quiet:hover {
    border-color: #bbb2dc;
    background: #fff;
}

.pricing-footnote {
    margin: 14px 0 0;
    color: #8a92a1;
    font-size: 9px;
    text-align: center;
}

.use-cases-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 90px;
    align-items: center;
}

.eyebrow-light {
    color: #bdabff;
}

.case-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.case-list span {
    padding: 18px 20px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 12px;
    color: #dce1ea;
    background: rgba(255, 255, 255, 0.04);
    font-size: 14px;
    font-weight: 600;
}

.final-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    padding: 50px 56px;
    border: 1px solid #ded8f4;
    border-radius: 24px;
    background: #f5f1ff;
}

.final-cta-inner h2 {
    max-width: 710px;
}

.final-cta-inner .button {
    flex: 0 0 auto;
}

.site-footer {
    border-top: 1px solid var(--line);
}

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

.wordmark-footer {
    font-size: 21px;
}

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

.footer-brand {
    display: grid;
    gap: 5px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 12px 22px;
}

.footer-links a,
.legal-back-link {
    color: var(--muted);
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
}

.footer-links a:hover,
.legal-back-link:hover {
    color: var(--purple);
}

.legal-page {
    background:
        radial-gradient(circle at 85% 10%, rgba(109, 60, 232, .08), transparent 28%),
        #f8f7fc;
}

.legal-header {
    background: rgba(248, 247, 252, .9);
}

.legal-main {
    padding: 52px 0 90px;
}

.legal-layout {
    display: grid;
    grid-template-columns: 230px minmax(0, 820px);
    justify-content: center;
    gap: clamp(48px, 7vw, 92px);
    align-items: start;
}

.legal-nav {
    position: sticky;
    top: 28px;
    display: grid;
    gap: 18px;
    padding: 22px;
    border: 1px solid #e2def0;
    border-radius: 17px;
    background: rgba(255, 255, 255, .8);
}

.legal-nav > span {
    color: var(--purple);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.legal-nav nav {
    display: grid;
    gap: 6px;
}

.legal-nav nav a {
    padding: 9px 11px;
    border-radius: 9px;
    color: #5f6879;
    font-size: 12px;
    font-weight: 650;
    text-decoration: none;
}

.legal-nav nav a:hover,
.legal-nav nav a.is-active {
    color: var(--purple-dark);
    background: var(--purple-pale);
}

.legal-contact {
    display: grid;
    gap: 3px;
    padding-top: 15px;
    border-top: 1px solid #e5e1f0;
}

.legal-contact small {
    color: var(--muted);
    font-size: 10px;
}

.legal-contact a {
    color: var(--purple-dark);
    font-size: 12px;
    font-weight: 700;
}

.legal-document {
    padding: clamp(30px, 5vw, 58px);
    border: 1px solid rgba(109, 60, 232, .1);
    border-radius: 25px;
    background: #fff;
    box-shadow: 0 24px 70px rgba(36, 28, 68, .08);
}

.legal-document-header {
    margin-bottom: 42px;
    padding-bottom: 32px;
    border-bottom: 1px solid #e7e4ee;
}

.legal-document-header h1 {
    margin: 9px 0 13px;
    font-size: clamp(34px, 5vw, 54px);
    letter-spacing: -.045em;
    line-height: 1.04;
}

.legal-document-header p {
    max-width: 650px;
    margin: 0 0 14px;
    color: var(--muted);
    font-size: 15px;
}

.legal-document-header small {
    color: #858d9c;
    font-size: 11px;
}

.legal-document section + section {
    margin-top: 38px;
}

.legal-document h2 {
    margin: 0 0 13px;
    color: var(--ink);
    font-size: 21px;
    letter-spacing: -.025em;
}

.legal-document p,
.legal-document li {
    color: #515c70;
    font-size: 14px;
    line-height: 1.75;
}

.legal-document p {
    margin: 0 0 12px;
}

.legal-document ul {
    display: grid;
    gap: 7px;
    margin: 12px 0;
    padding-left: 22px;
}

.legal-document a {
    color: var(--purple-dark);
    text-underline-offset: 3px;
}

.legal-document code {
    padding: 2px 6px;
    border-radius: 5px;
    color: var(--purple-dark);
    background: var(--purple-pale);
    font-size: .92em;
}

@media (max-width: 900px) {
    .legal-layout {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .legal-nav {
        position: static;
    }

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

@media (max-width: 900px) {
    .product-demo-heading {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .product-demo-heading p {
        max-width: 650px;
    }

    .hero {
        padding-top: 38px;
    }

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

    .join-column {
        width: min(100%, 610px);
        margin: 0 auto;
    }

    .hero-copy {
        text-align: center;
    }

    .hero-copy h2,
    .hero-copy > p,
    .hero-preview {
        margin-right: auto;
        margin-left: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .features-intro,
    .use-cases-inner {
        grid-template-columns: 1fr;
        gap: 28px;
    }

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

    .step {
        min-height: auto;
        padding: 30px 0;
        border-right: 0 !important;
        border-bottom: 1px solid var(--line);
    }

    .step:not(:first-child) {
        padding-left: 0;
    }

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

    .final-cta-inner {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 680px) {
    .page-shell {
        width: min(100% - 30px, 1180px);
    }

    .header-inner {
        min-height: 70px;
    }

    .main-nav > a:not(.button) {
        display: none;
    }

    .hero {
        padding: 23px 0 62px;
    }

    .product-demo-section {
        padding: 72px 0;
    }

    .product-demo-frame-wrap {
        border-radius: 16px;
    }

    .product-demo-frame {
        height: 720px;
    }

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

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

    .hero-grid {
        gap: 54px;
    }

    .join-card {
        padding: 27px 22px;
        border-radius: 20px;
    }

    .join-form input {
        height: 66px;
    }

    .hero-copy {
        text-align: left;
    }

    .hero-copy h2,
    .hero-copy > p,
    .hero-preview {
        margin-left: 0;
    }

    .hero-actions {
        align-items: stretch;
        justify-content: flex-start;
        flex-direction: column;
    }

    .text-link {
        text-align: center;
    }

    .hero-preview {
        transform: none;
    }

    .how-section,
    .features-section,
    .pricing-section,
    .final-cta {
        padding: 72px 0;
    }

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

    .feature,
    .feature-large {
        min-height: auto;
    }

    .feature-large {
        grid-row: auto;
    }

    .feature-label {
        margin-bottom: 30px;
    }

    .mini-editor,
    .feature-question-preview {
        margin: 40px -35px -65px 20px;
    }

    .use-cases {
        padding: 72px 0;
    }

    .case-list {
        grid-template-columns: 1fr;
    }

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

    .pricing-card {
        padding: 30px 23px;
    }

    .pricing-card-top {
        flex-direction: column;
        gap: 18px;
    }

    .pricing-price {
        text-align: left;
    }

    .final-cta-inner {
        padding: 35px 25px;
    }

    .final-cta-inner .button {
        width: 100%;
    }

    .footer-inner {
        align-items: flex-start;
        flex-direction: column;
        justify-content: center;
        gap: 18px;
        padding: 24px 0;
    }

    .footer-links {
        justify-content: flex-start;
    }

    .legal-nav nav {
        grid-template-columns: 1fr;
    }
}

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

    .button {
        transition: none;
    }
}
