:root {
    --ink: #171328;
    --ink-soft: #5d566d;
    --paper: #fbfafc;
    --surface: #ffffff;
    --surface-soft: #f3eff8;
    --line: #e8e3ee;
    --violet: #7e56c2;
    --violet-deep: #4b2387;
    --pink: #ed3b86;
    --coral: #ff7664;
    --yellow: #ffc857;
    --mint: #4ebaa5;
    --shadow: 0 20px 60px rgba(37, 21, 61, 0.14);
    --radius: 18px;
    --max: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

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

a {
    color: inherit;
    text-decoration: none;
}

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

button {
    border: 0;
    font: inherit;
}

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

.site-header {
    position: absolute;
    z-index: 10;
    top: 0;
    right: 0;
    left: 0;
    color: #fff;
}

.site-header.light {
    position: relative;
    color: var(--ink);
    background: var(--paper);
    border-bottom: 1px solid var(--line);
}

.nav-shell {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 82px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.brand img {
    width: 36px;
    height: 36px;
    border-radius: 11px;
    box-shadow: 0 6px 18px rgba(237, 59, 134, 0.3);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 29px;
    font-size: 14px;
    font-weight: 650;
}

.nav-links a {
    opacity: 0.74;
    transition: opacity 160ms ease, color 160ms ease;
}

.nav-links a:hover,
.nav-links a.active {
    opacity: 1;
}

.site-header.light .nav-links a:hover,
.site-header.light .nav-links a.active {
    color: var(--violet-deep);
}

.nav-cta,
.button-primary,
.button-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 21px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 750;
    transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.nav-cta,
.button-primary {
    color: #fff;
    background: var(--pink);
    box-shadow: 0 12px 24px rgba(237, 59, 134, 0.23);
}

.button-secondary {
    color: #fff;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.32);
}

.button-primary:hover,
.button-secondary:hover,
.nav-cta:hover {
    transform: translateY(-2px);
}

.button-primary:hover,
.nav-cta:hover {
    background: #d92975;
    box-shadow: 0 16px 30px rgba(237, 59, 134, 0.3);
}

.button-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

.mobile-menu {
    display: none;
    width: 42px;
    height: 42px;
    color: currentColor;
    background: transparent;
    border: 1px solid currentColor;
    border-radius: 50%;
    cursor: pointer;
}

.mobile-menu span,
.mobile-menu span::before,
.mobile-menu span::after {
    display: block;
    width: 15px;
    height: 1.5px;
    margin: 0 auto;
    background: currentColor;
    content: "";
}

.mobile-menu span::before {
    transform: translateY(-5px);
}

.mobile-menu span::after {
    transform: translateY(3.5px);
}

.hero {
    position: relative;
    min-height: 740px;
    overflow: hidden;
    color: #fff;
    background: #1b142b;
}

.hero::after {
    position: absolute;
    top: 0;
    right: 0;
    width: min(46vw, 620px);
    height: 100%;
    background: #24163a;
    clip-path: polygon(30% 0, 100% 0, 100% 100%, 0 100%);
    content: "";
    opacity: 0.72;
}

.hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
    align-items: center;
    gap: 64px;
    min-height: 740px;
    padding-top: 76px;
}

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

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 25px;
    color: #f8c8e6;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.eyebrow::before {
    width: 24px;
    height: 2px;
    background: var(--pink);
    content: "";
}

.hero h1 {
    max-width: 620px;
    margin: 0;
    font-size: clamp(46px, 6vw, 78px);
    font-weight: 800;
    letter-spacing: -0.065em;
    line-height: 0.98;
}

.hero h1 em {
    color: #ff8fbc;
    font-style: normal;
}

.hero-lede {
    max-width: 495px;
    margin: 28px 0 34px;
    color: #c4bbd2;
    font-size: 17px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    margin-top: 48px;
}

.meta-item {
    display: grid;
    gap: 1px;
}

.meta-value {
    color: #fff;
    font-size: 21px;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.meta-label {
    color: #9186a5;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

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

.hero-note {
    position: absolute;
    z-index: 3;
    top: 76px;
    left: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px 10px 10px;
    color: var(--ink);
    background: #fff;
    border-radius: 999px;
    box-shadow: 0 16px 35px rgba(8, 4, 15, 0.22);
    font-size: 12px;
    font-weight: 750;
}

.hero-note::before {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--mint);
    box-shadow: 0 0 0 5px #e0f5f0;
    content: "";
}

.phone {
    position: absolute;
    width: 280px;
    overflow: hidden;
    background: #f7f4fb;
    border: 7px solid #2d243d;
    border-radius: 36px;
    box-shadow: 0 28px 70px rgba(7, 4, 15, 0.42);
}

.phone-main {
    z-index: 2;
    top: 20px;
    right: 98px;
    transform: rotate(3deg);
}

.phone-side {
    z-index: 1;
    top: 112px;
    right: -2px;
    transform: rotate(12deg) scale(0.86);
    opacity: 0.72;
}

.phone-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 16px 10px;
    color: var(--ink);
    font-size: 12px;
    font-weight: 800;
}

.phone-top span:last-child {
    color: var(--violet);
    font-size: 10px;
}

.match-card {
    position: relative;
    height: 310px;
    margin: 0 11px;
    overflow: hidden;
    border-radius: 22px;
    background: #4c375d;
}

.match-card > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.match-card::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 48%;
    background: rgba(17, 11, 27, 0.6);
    content: "";
}

.match-card-copy {
    position: absolute;
    z-index: 1;
    right: 16px;
    bottom: 16px;
    left: 16px;
    color: #fff;
}

.match-card-copy strong {
    display: block;
    font-size: 19px;
    letter-spacing: -0.03em;
}

.match-card-copy span {
    color: #e4dfea;
    font-size: 11px;
}

.phone-caption {
    padding: 16px 16px 7px;
    color: var(--ink-soft);
    font-size: 10px;
    font-weight: 700;
}

.phone-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
    padding: 9px 16px 23px;
}

.phone-action {
    display: grid;
    width: 41px;
    height: 41px;
    place-items: center;
    color: #fff;
    border-radius: 50%;
    font-size: 16px;
    font-weight: 800;
}

.phone-action.pass {
    color: var(--coral);
    background: #ffe6e4;
}

.phone-action.like {
    background: var(--pink);
    box-shadow: 0 8px 16px rgba(237, 59, 134, 0.28);
}

.phone-side .phone-top,
.phone-side .match-card,
.phone-side .phone-caption,
.phone-side .phone-actions {
    filter: saturate(0.8);
}

.phone-side .match-card {
    height: 260px;
}

.phone-side .phone-actions {
    padding-bottom: 30px;
}

.brand-strip {
    background: #fff;
    border-bottom: 1px solid var(--line);
}

.brand-strip-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    min-height: 86px;
}

.brand-strip-label {
    color: #8b8396;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.brand-strip-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 11px;
}

.strip-tag {
    padding: 7px 11px;
    color: var(--ink-soft);
    background: var(--surface-soft);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 750;
}

.section {
    padding: 112px 0;
}

.section-heading {
    max-width: 650px;
    margin-bottom: 55px;
}

.section-heading.center {
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}

.kicker {
    margin: 0 0 13px;
    color: var(--pink);
    font-size: 12px;
    font-weight: 850;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.section h2 {
    margin: 0;
    color: var(--ink);
    font-size: clamp(34px, 4vw, 52px);
    letter-spacing: -0.06em;
    line-height: 1.04;
}

.section-heading p {
    margin: 20px 0 0;
    color: var(--ink-soft);
    font-size: 17px;
}

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

.feature-card {
    min-height: 260px;
    padding: 27px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 10px 35px rgba(37, 21, 61, 0.045);
}

.feature-card:nth-child(2) {
    background: #fff6f8;
}

.feature-card:nth-child(3) {
    background: #f3f7ff;
}

.feature-card:nth-child(4) {
    background: #f3fcf8;
}

.feature-card:nth-child(5) {
    background: #fff9ed;
}

.feature-card:nth-child(6) {
    background: #f7f2ff;
}

.feature-mark {
    display: grid;
    width: 45px;
    height: 45px;
    place-items: center;
    margin-bottom: 24px;
    color: #fff;
    border-radius: 14px;
    background: var(--violet);
    font-size: 17px;
    font-weight: 850;
}

.feature-card:nth-child(2) .feature-mark {
    background: var(--pink);
}

.feature-card:nth-child(3) .feature-mark {
    background: #4d7edc;
}

.feature-card:nth-child(4) .feature-mark {
    background: var(--mint);
}

.feature-card:nth-child(5) .feature-mark {
    color: #493314;
    background: var(--yellow);
}

.feature-card h3 {
    margin: 0 0 8px;
    font-size: 21px;
    letter-spacing: -0.04em;
}

.feature-card p {
    margin: 0;
    color: var(--ink-soft);
    font-size: 14px;
}

.showcase {
    color: #fff;
    background: #211832;
}

.showcase h2 {
    color: #fff;
}

.showcase .section-heading p {
    color: #b7aec5;
}

.showcase-layout {
    display: grid;
    grid-template-columns: minmax(280px, 0.7fr) minmax(420px, 1.3fr);
    align-items: center;
    gap: 90px;
}

.tab-list {
    display: grid;
    gap: 7px;
}

.tab-button {
    display: grid;
    grid-template-columns: 42px 1fr;
    align-items: center;
    gap: 14px;
    padding: 13px 14px;
    color: #b7aec5;
    background: transparent;
    border: 1px solid transparent;
    border-radius: 13px;
    cursor: pointer;
    text-align: left;
    transition: background 160ms ease, color 160ms ease, border 160ms ease;
}

.tab-button:hover,
.tab-button.active {
    color: #fff;
    background: #302344;
    border-color: #4b3b61;
}

.tab-number {
    display: grid;
    width: 36px;
    height: 36px;
    place-items: center;
    color: #e7dff0;
    background: #443455;
    border-radius: 11px;
    font-size: 12px;
    font-weight: 800;
}

.tab-button.active .tab-number {
    color: #fff;
    background: var(--pink);
}

.tab-copy strong {
    display: block;
    margin-bottom: 2px;
    font-size: 14px;
}

.tab-copy span {
    display: block;
    color: inherit;
    font-size: 12px;
    opacity: 0.72;
}

.preview-stage {
    position: relative;
    display: grid;
    min-height: 470px;
    place-items: center;
    background: #2c2140;
    border: 1px solid #4b3b61;
    border-radius: 24px;
    overflow: hidden;
}

.preview-stage::before,
.preview-stage::after {
    position: absolute;
    width: 180px;
    height: 1px;
    background: #514261;
    content: "";
    opacity: 0.7;
}

.preview-stage::before {
    top: 20%;
    left: 0;
    transform: rotate(90deg);
}

.preview-stage::after {
    right: 0;
    bottom: 20%;
    transform: rotate(90deg);
}

.preview-phone {
    position: relative;
    z-index: 1;
    width: 272px;
    overflow: hidden;
    color: var(--ink);
    background: #f9f7fb;
    border: 7px solid #16101e;
    border-radius: 35px;
    box-shadow: 0 23px 45px rgba(5, 2, 10, 0.38);
}

.preview-view {
    display: none;
}

.preview-view.active {
    display: block;
}

.screen-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 16px 12px;
    font-size: 13px;
    font-weight: 800;
}

.screen-header small {
    color: var(--violet);
    font-size: 10px;
}

.screen-content {
    padding: 0 12px 18px;
}

.screen-photo {
    position: relative;
    height: 260px;
    overflow: hidden;
    border-radius: 20px;
}

.screen-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.screen-photo .screen-photo-copy {
    position: absolute;
    right: 14px;
    bottom: 14px;
    left: 14px;
    color: #fff;
}

.screen-photo-copy strong {
    display: block;
    font-size: 17px;
}

.screen-photo-copy span {
    color: #e8e1eb;
    font-size: 10px;
}

.screen-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    padding-top: 16px;
}

.screen-action {
    display: grid;
    width: 43px;
    height: 43px;
    place-items: center;
    color: #fff;
    background: var(--pink);
    border-radius: 50%;
    font-weight: 850;
}

.screen-action.muted {
    color: var(--coral);
    background: #ffe5e2;
}

.profile-row,
.message-row {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 11px 4px;
    border-bottom: 1px solid #ebe7ef;
}

.profile-row:last-child,
.message-row:last-child {
    border-bottom: 0;
}

.avatar {
    flex: 0 0 auto;
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 50%;
}

.profile-row strong,
.message-row strong {
    display: block;
    font-size: 12px;
}

.profile-row span,
.message-row span {
    display: block;
    overflow: hidden;
    color: #81788d;
    font-size: 10px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.online-dot {
    width: 8px;
    height: 8px;
    margin-left: auto;
    border-radius: 50%;
    background: var(--mint);
}

.message-row {
    min-height: 58px;
}

.message-row .time {
    margin-left: auto;
    color: #9a92a2;
    font-size: 9px;
}

.moments-image {
    width: 100%;
    height: 165px;
    object-fit: cover;
    border-radius: 18px;
}

.moment-copy {
    padding: 10px 4px 1px;
}

.moment-copy strong {
    display: block;
    font-size: 12px;
}

.moment-copy span {
    color: #81788d;
    font-size: 10px;
}

.safety-band {
    padding: 28px 0;
    background: #fff1f5;
    border-bottom: 1px solid #f3d9e2;
}

.safety-inner {
    display: grid;
    grid-template-columns: 50px 1fr auto;
    align-items: center;
    gap: 19px;
}

.safety-mark {
    display: grid;
    width: 50px;
    height: 50px;
    place-items: center;
    color: #fff;
    background: var(--pink);
    border-radius: 15px;
    font-size: 20px;
    font-weight: 850;
}

.safety-inner strong {
    display: block;
    margin-bottom: 2px;
    font-size: 16px;
}

.safety-inner p {
    margin: 0;
    color: var(--ink-soft);
    font-size: 13px;
}

.text-link {
    color: var(--violet-deep);
    font-size: 13px;
    font-weight: 800;
}

.cta {
    padding: 105px 0;
    color: #fff;
    background: #171128;
}

.cta-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: end;
    gap: 40px;
}

.cta h2 {
    max-width: 680px;
    margin: 0;
    color: #fff;
    font-size: clamp(37px, 5vw, 65px);
    letter-spacing: -0.065em;
    line-height: 1;
}

.cta p {
    max-width: 490px;
    margin: 20px 0 0;
    color: #b7aec5;
}

.site-footer {
    padding: 28px 0;
    color: #a89fb6;
    background: #171128;
    border-top: 1px solid #2d2440;
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}

.footer-inner .brand {
    color: #fff;
    font-size: 16px;
}

.footer-inner .brand img {
    width: 28px;
    height: 28px;
    border-radius: 9px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 21px;
    font-size: 12px;
    font-weight: 700;
}

.footer-links a:hover {
    color: #fff;
}

.footer-note {
    font-size: 11px;
}

/* Privacy page */
.policy-hero {
    padding: 86px 0 74px;
    color: #fff;
    background: #211832;
}

.policy-hero h1 {
    max-width: 680px;
    margin: 0;
    font-size: clamp(42px, 6vw, 70px);
    letter-spacing: -0.065em;
    line-height: 1;
}

.policy-hero p {
    max-width: 650px;
    margin: 22px 0 0;
    color: #c2b8d0;
    font-size: 17px;
}

.policy-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 29px;
}

.policy-meta span {
    padding: 7px 12px;
    color: #eee7f5;
    background: #342645;
    border: 1px solid #4a3a5d;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 750;
}

.policy-layout {
    display: grid;
    grid-template-columns: 235px minmax(0, 760px);
    align-items: start;
    gap: 75px;
    padding-top: 74px;
    padding-bottom: 110px;
}

.policy-toc {
    position: sticky;
    top: 25px;
    padding: 17px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.policy-toc p {
    margin: 0 0 12px;
    color: #938a9e;
    font-size: 11px;
    font-weight: 850;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.policy-toc a {
    display: block;
    padding: 6px 0;
    color: #80778c;
    font-size: 12px;
    font-weight: 700;
    transition: color 160ms ease, padding 160ms ease;
}

.policy-toc a:hover,
.policy-toc a.active {
    padding-left: 7px;
    color: var(--violet-deep);
}

.policy-main {
    min-width: 0;
}

.policy-callout {
    margin-bottom: 42px;
    padding: 24px 25px;
    color: #48355b;
    background: #f4edfb;
    border-left: 4px solid var(--violet);
    border-radius: 0 14px 14px 0;
}

.policy-callout p {
    margin: 0;
    font-size: 15px;
}

.policy-section {
    padding: 38px 0 7px;
    border-top: 1px solid var(--line);
    scroll-margin-top: 30px;
}

.policy-section:first-of-type {
    padding-top: 0;
    border-top: 0;
}

.policy-section h2 {
    display: flex;
    align-items: baseline;
    gap: 13px;
    margin: 0 0 16px;
    color: var(--ink);
    font-size: 25px;
    letter-spacing: -0.045em;
}

.policy-section h2 span {
    color: var(--pink);
    font-size: 12px;
    letter-spacing: 0.05em;
}

.policy-section h3 {
    margin: 23px 0 8px;
    color: var(--violet-deep);
    font-size: 15px;
}

.policy-section p,
.policy-section li {
    color: var(--ink-soft);
    font-size: 15px;
}

.policy-section p {
    margin: 0 0 13px;
}

.policy-section ul {
    margin: 10px 0 17px;
    padding-left: 20px;
}

.policy-section li {
    margin: 5px 0;
    padding-left: 4px;
}

.policy-section li::marker {
    color: var(--pink);
}

.policy-contact {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 20px;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    min-height: 49px;
    padding: 0 16px;
    color: var(--violet-deep);
    background: #f4effa;
    border: 1px solid #e2d6f2;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 800;
}

.contact-link:hover {
    background: #ede3f8;
}

.policy-footer {
    color: #9d94a9;
    background: #171128;
}

.policy-footer .footer-inner {
    min-height: 82px;
}

@media (max-width: 960px) {
    .hero-inner {
        grid-template-columns: 1fr 0.88fr;
        gap: 24px;
    }

    .phone-main {
        right: 70px;
    }

    .phone-side {
        right: -35px;
    }

    .showcase-layout {
        gap: 45px;
    }

    .policy-layout {
        gap: 42px;
    }
}

@media (max-width: 760px) {
    .container {
        width: min(var(--max), calc(100% - 34px));
    }

    .site-header {
        position: absolute;
    }

    .nav-shell {
        min-height: 72px;
    }

    .nav-links {
        position: absolute;
        top: 67px;
        right: 17px;
        left: 17px;
        display: none;
        align-items: stretch;
        gap: 0;
        padding: 8px;
        color: var(--ink);
        background: #fff;
        border: 1px solid var(--line);
        border-radius: 16px;
        box-shadow: var(--shadow);
    }

    .site-header.light .nav-links {
        top: 67px;
    }

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

    .nav-links a {
        padding: 11px 12px;
        opacity: 1;
    }

    .nav-links .nav-cta {
        margin-top: 6px;
    }

    .mobile-menu {
        display: block;
    }

    .hero {
        min-height: auto;
    }

    .hero::after {
        top: 58%;
        width: 100%;
        height: 42%;
        clip-path: polygon(0 19%, 100% 0, 100% 100%, 0 100%);
    }

    .hero-inner {
        display: block;
        min-height: auto;
        padding-top: 150px;
        padding-bottom: 35px;
    }

    .hero h1 {
        font-size: clamp(46px, 14vw, 70px);
    }

    .hero-lede {
        font-size: 16px;
    }

    .hero-meta {
        margin-top: 35px;
    }

    .hero-visual {
        min-height: 500px;
        margin-top: 32px;
    }

    .phone-main {
        top: 18px;
        right: calc(50% - 140px);
    }

    .phone-side {
        top: 70px;
        right: calc(50% - 180px);
    }

    .hero-note {
        top: 16px;
        left: 8px;
    }

    .brand-strip-inner {
        display: block;
        padding: 20px 0;
    }

    .brand-strip-items {
        justify-content: flex-start;
        margin-top: 12px;
    }

    .section {
        padding: 78px 0;
    }

    .section-heading {
        margin-bottom: 35px;
    }

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

    .feature-card {
        min-height: 0;
    }

    .showcase-layout {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .preview-stage {
        min-height: 460px;
    }

    .safety-inner {
        grid-template-columns: 50px 1fr;
    }

    .safety-inner .text-link {
        grid-column: 2;
    }

    .cta {
        padding: 78px 0;
    }

    .cta-inner {
        grid-template-columns: 1fr;
        align-items: start;
    }

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

    .policy-hero {
        padding: 64px 0 56px;
    }

    .policy-layout {
        display: block;
        padding-top: 38px;
        padding-bottom: 70px;
    }

    .policy-toc {
        position: relative;
        top: auto;
        margin-bottom: 38px;
    }

    .policy-toc a {
        display: inline-block;
        margin-right: 13px;
    }

    .policy-section h2 {
        font-size: 23px;
    }
}

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

    *,
    *::before,
    *::after {
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
    }
}
