@charset "UTF-8";

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
}

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

a {
    color: inherit;
}

body.landing-page {
    --page-bg: #2b1120;
    --panel-bg: rgba(88, 34, 58, 0.78);
    --panel-strong: rgba(113, 42, 73, 0.92);
    --panel-soft: rgba(255, 255, 255, 0.04);
    --line-soft: rgba(255, 255, 255, 0.08);
    --line-strong: rgba(255, 110, 176, 0.4);
    --text-main: #fde7ef;
    --text-muted: #eab7c8;
    --text-dim: #c88fa6;
    --accent: #ff4fa3;
    --accent-strong: #ff6db3;
    --accent-alt: #6be9ff;
    --shadow-main: 0 24px 70px rgba(7, 2, 6, 0.38);
    --shadow-soft: 0 18px 40px rgba(12, 4, 9, 0.22);
    min-height: 100vh;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-main);
    background:
        radial-gradient(circle at top left, rgba(255, 109, 179, 0.16), transparent 34%),
        radial-gradient(circle at right 14%, rgba(107, 233, 255, 0.12), transparent 24%),
        linear-gradient(180deg, #381427 0%, #2b1120 35%, #220c19 100%);
    overflow-x: hidden;
}

body.landing-page::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: radial-gradient(circle at center, black 45%, transparent 85%);
    opacity: 0.45;
}

.landing-page p,
.landing-page li,
.landing-page summary,
.landing-page label,
.landing-page input,
.landing-page textarea {
    font-size: 1rem;
    line-height: 1.7;
}

.landing-page ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.landing-page h1,
.landing-page h2,
.landing-page h3,
.landing-page h4,
.landing-page blockquote,
.landing-page cite {
    margin: 0;
}

.landing-page h2 {
    font-size: clamp(2rem, 3vw, 2.8rem);
    line-height: 1.12;
    margin-bottom: 1.4rem;
    color: #fff4f8;
    letter-spacing: -0.03em;
}

.landing-page h3,
.landing-page h4 {
    color: #fff0f6;
}

.landing-page p {
    margin: 0 0 1rem;
    color: var(--text-muted);
}

.landing-page section[id] {
    scroll-margin-top: 110px;
}

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

.landing-page .site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(18px);
    background: rgba(34, 12, 25, 0.82);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.landing-page .site-header > .YzAbCdEfGhIj {
    height: 3px;
    width: 100%;
    background: linear-gradient(90deg, var(--accent), var(--accent-alt), var(--accent));
    background-size: 200% 100%;
    animation: beamyAccentShift 8s linear infinite;
}

.landing-page .header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 18px 0;
}

.landing-page .brand-mark {
    font-size: clamp(1.6rem, 2.8vw, 2rem);
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #fff4f8;
    text-shadow: 0 0 24px rgba(255, 79, 163, 0.32);
}

.landing-page .site-nav {
    position: relative;
}

.landing-page .nav-toggle {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.landing-page .nav-burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    cursor: pointer;
}

.landing-page .nav-burger span {
    width: 28px;
    height: 2px;
    border-radius: 999px;
    background: #ffd4e4;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.landing-page .nav-menu {
    display: flex;
    align-items: center;
    gap: 18px;
    margin: 0;
    padding: 0;
}

.landing-page .nav-menu a {
    text-decoration: none;
    color: #f6cadc;
    font-size: 0.95rem;
    font-weight: 600;
    transition: color 0.2s ease, opacity 0.2s ease;
}

.landing-page .nav-menu a:hover {
    color: #ffffff;
}

.landing-page .site-main {
    position: relative;
    z-index: 1;
}

.landing-page .section-shell,
.landing-page .section-tone,
.landing-page .contact-section,
.landing-page .site-footer {
    padding: clamp(56px, 8vw, 92px) 0;
}

.landing-page .section-tone,
.landing-page .contact-section {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0.015));
    border-top: 1px solid var(--line-soft);
    border-bottom: 1px solid var(--line-soft);
}

.landing-page .hero-section {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
    padding: clamp(36px, 6vw, 72px) 0 40px;
}

.landing-page .hero-grid {
    display: grid;
    grid-template-columns: minmax(280px, 0.92fr) minmax(320px, 1.08fr);
    gap: clamp(28px, 4vw, 54px);
    align-items: center;
}

.landing-page .hero-media img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    border-radius: 30px;
    box-shadow: var(--shadow-main);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.landing-page .hero-copy {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.landing-page .hero-copy > .YzAbCdEfGhIj {
    font-size: clamp(2.5rem, 5vw, 4.4rem);
    line-height: 0.96;
    letter-spacing: -0.05em;
    margin-bottom: 1.3rem;
    background: linear-gradient(135deg, #ffffff, #ff9dca 60%, #6be9ff 110%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.landing-page .hero-copy > .KlMnOpQrStUv {
    font-size: 1.08rem;
    color: var(--text-main);
}

.landing-page .hero-copy > .WxYzAbCdEfGh {
    margin: 1rem 0 1.1rem;
    padding: 20px 22px;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(255, 79, 163, 0.11), rgba(255, 255, 255, 0.03));
    border: 1px solid rgba(255, 79, 163, 0.22);
    color: #ffd4e6;
    font-weight: 600;
}

.landing-page .hero-copy > .IjKlMnOpQrSt {
    color: var(--text-dim);
}

.landing-page .hero-copy > .UvWxYzAbCdEf {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    margin-top: 12px;
    padding: 14px 26px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    color: #1b0912;
    background: linear-gradient(135deg, #ff9aca, #ff4fa3);
    box-shadow: 0 16px 32px rgba(255, 79, 163, 0.25);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.landing-page .hero-copy > .UvWxYzAbCdEf:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 36px rgba(255, 79, 163, 0.32);
}

.landing-page .hero-logos-shell {
    margin-top: 30px;
}

.landing-page .hero-logos {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.landing-page .hero-logos img {
    width: 100%;
    height: 72px;
    object-fit: contain;
    padding: 18px 20px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    filter: grayscale(0.15);
}

.landing-page .story-section .site-shell,
.landing-page .pricing-section .site-shell {
    display: block;
}

.landing-page .two-column-layout,
.landing-page .split-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.9fr);
    gap: clamp(24px, 4vw, 36px);
    align-items: start;
}

.landing-page .prose-column,
.landing-page .content-panel,
.landing-page .quote-panel,
.landing-page .contact-shell {
    min-width: 0;
}

.landing-page .tips-column {
    display: grid;
    gap: 16px;
}

.landing-page .tips-column > .KlMnOpQrStUv {
    padding: 22px 24px;
    border-radius: 24px;
    background: var(--panel-bg);
    border: 1px solid var(--line-soft);
    box-shadow: var(--shadow-soft);
}

.landing-page .tips-column > .KlMnOpQrStUv > .WxYzAbCdEfGh {
    margin-bottom: 8px;
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #ffc4de;
    font-weight: 700;
}

.landing-page .tips-column > .KlMnOpQrStUv > p:last-child {
    margin-bottom: 0;
}

.landing-page .narrative-section {
    width: min(980px, calc(100% - 40px));
    margin: 0 auto;
}

.landing-page .narrow-shell {
    padding: clamp(30px, 5vw, 42px);
    border-radius: 30px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015));
    border: 1px solid var(--line-soft);
    box-shadow: var(--shadow-soft);
}

.landing-page .feature-list {
    display: grid;
    gap: 12px;
    margin: 26px 0;
}

.landing-page .feature-list li {
    position: relative;
    padding: 14px 18px 14px 44px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: #ffdcea;
}

.landing-page .feature-list li::before {
    content: "";
    position: absolute;
    top: 21px;
    left: 18px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--accent-alt));
    box-shadow: 0 0 18px rgba(255, 79, 163, 0.4);
}

.landing-page .practice-section {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.landing-page .benefit-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-top: 24px;
}

.landing-page .practice-section .benefit-grid > .QrStUvWxYzAb {
    padding: 22px;
    border-radius: 24px;
    background: var(--panel-bg);
    border: 1px solid var(--line-soft);
    box-shadow: var(--shadow-soft);
}

.landing-page .practice-section .benefit-grid .CdEfGhIjKlMn {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.landing-page .practice-section .media-panel img {
    width: 100%;
    min-height: 420px;
    object-fit: cover;
    border-radius: 28px;
    box-shadow: var(--shadow-main);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.landing-page .audience-section .site-shell {
    display: block;
}

.landing-page .audience-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    margin-top: 30px;
}

.landing-page .audience-grid > .UvWxYzAbCdEf {
    padding: 24px 20px;
    border-radius: 24px;
    text-align: center;
    background: var(--panel-bg);
    border: 1px solid var(--line-soft);
    box-shadow: var(--shadow-soft);
}

.landing-page .audience-grid > .UvWxYzAbCdEf > .GhIjKlMnOpQr {
    width: 84px;
    height: 84px;
    margin: 0 auto 18px;
    padding: 14px;
    object-fit: contain;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.05);
}

.landing-page .audience-grid > .UvWxYzAbCdEf > .StUvWxYzAbCd {
    margin-bottom: 10px;
    font-size: 1.08rem;
}

.landing-page .audience-grid > .UvWxYzAbCdEf > p:last-child {
    margin-bottom: 0;
}

.landing-page .faq-section {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.landing-page .faq-shell {
    width: min(860px, 100%);
    margin: 0 auto;
}

.landing-page .faq-list {
    display: grid;
    gap: 14px;
}

.landing-page .faq-list > .YzAbCdEfGhIj,
.landing-page .faq-list > details {
    overflow: hidden;
    border-radius: 22px;
    background: var(--panel-bg);
    border: 1px solid var(--line-soft);
    box-shadow: var(--shadow-soft);
}

.landing-page .faq-list summary {
    position: relative;
    padding: 20px 58px 20px 22px;
    cursor: pointer;
    font-weight: 700;
    color: #ffe7f0;
    list-style: none;
}

.landing-page .faq-list summary::-webkit-details-marker {
    display: none;
}

.landing-page .faq-list summary::after {
    content: "+";
    position: absolute;
    right: 22px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.4rem;
    color: var(--accent-alt);
}

.landing-page .faq-list details[open] summary::after {
    content: "−";
}

.landing-page .faq-list .IjKlMnOpQrSt {
    padding: 0 22px 22px;
    color: var(--text-muted);
}

.landing-page .pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    margin-top: 30px;
}

.landing-page .pricing-grid > .QrStUvWxYzAb {
    display: flex;
    flex-direction: column;
    gap: 14px;
    min-width: 0;
    padding: 26px 24px;
    border-radius: 28px;
    background: var(--panel-bg);
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: var(--shadow-soft);
}

.landing-page .pricing-grid > .highlighted {
    background: linear-gradient(180deg, rgba(255, 79, 163, 0.18), rgba(255, 255, 255, 0.03));
    border-color: var(--line-strong);
    transform: translateY(-6px);
}

.landing-page .pricing-grid > .QrStUvWxYzAb > .CdEfGhIjKlMn {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff1f6;
}

.landing-page .pricing-grid > .QrStUvWxYzAb > .OpQrStUvWxYz {
    font-size: clamp(2rem, 4vw, 2.6rem);
    font-weight: 800;
    color: #ff92c6;
    line-height: 1;
}

.landing-page .pricing-grid details {
    margin-top: 6px;
    padding: 0;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.landing-page .pricing-grid details summary {
    padding: 14px 18px;
    cursor: pointer;
    font-weight: 600;
    color: #ffe0ec;
    list-style: none;
}

.landing-page .pricing-grid details summary::-webkit-details-marker {
    display: none;
}

.landing-page .pricing-grid details[open] summary {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.landing-page .pricing-grid details > .KlMnOpQrStUv {
    padding: 0 18px 16px;
    display: grid;
    gap: 8px;
}

.landing-page .pricing-grid details li {
    position: relative;
    padding-left: 18px;
    color: var(--text-muted);
}

.landing-page .pricing-grid details li::before {
    content: "";
    position: absolute;
    top: 11px;
    left: 0;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--accent-alt);
}

.landing-page .pricing-grid > .QrStUvWxYzAb > .WxYzAbCdEfGh {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: auto;
    min-height: 48px;
    padding: 12px 18px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    color: #fff6fa;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: background 0.2s ease, transform 0.2s ease;
}

.landing-page .pricing-grid > .QrStUvWxYzAb > .WxYzAbCdEfGh:hover {
    background: linear-gradient(135deg, var(--accent), var(--accent-strong));
    transform: translateY(-2px);
}

.landing-page .expert-section {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.landing-page .expert-layout {
    align-items: center;
}

.landing-page .quote-panel {
    position: relative;
    padding: 34px 30px 34px 34px;
    border-radius: 30px;
    background: var(--panel-bg);
    border: 1px solid var(--line-soft);
    box-shadow: var(--shadow-main);
}

.landing-page .quote-panel > .StUvWxYzAbCd {
    position: absolute;
    left: 0;
    top: 26px;
    bottom: 26px;
    width: 4px;
    border-radius: 999px;
    background: linear-gradient(180deg, var(--accent), var(--accent-alt));
}

.landing-page .quote-panel > .EfGhIjKlMnOp {
    font-size: clamp(1.4rem, 2.6vw, 2rem);
    line-height: 1.45;
    color: #fff6fa;
}

.landing-page .quote-panel > .QrStUvWxYzAb {
    display: block;
    margin-top: 20px;
    color: #ffc8de;
    font-style: normal;
    font-weight: 600;
}

.landing-page .expert-media img {
    width: 100%;
    min-height: 420px;
    object-fit: cover;
    border-radius: 30px;
    box-shadow: var(--shadow-main);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.landing-page .contact-shell {
    width: min(760px, calc(100% - 40px));
    margin: 0 auto;
    padding: clamp(30px, 5vw, 42px);
    border-radius: 32px;
    background: var(--panel-strong);
    border: 1px solid var(--line-strong);
    box-shadow: var(--shadow-main);
}

.landing-page .contact-form {
    display: grid;
    gap: 18px;
    margin-top: 28px;
}

.landing-page .form-group {
    display: grid;
    gap: 8px;
}

.landing-page .form-group label {
    color: #ffd9e8;
    font-weight: 600;
}

.landing-page .contact-form input[type="text"],
.landing-page .contact-form input[type="email"],
.landing-page .contact-form textarea {
    width: 100%;
    padding: 14px 16px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(24, 7, 15, 0.38);
    color: #fff7fb;
    resize: vertical;
}

.landing-page .contact-form input::placeholder,
.landing-page .contact-form textarea::placeholder {
    color: #b78598;
}

.landing-page .contact-form input:focus,
.landing-page .contact-form textarea:focus {
    outline: none;
    border-color: rgba(255, 79, 163, 0.75);
    box-shadow: 0 0 0 4px rgba(255, 79, 163, 0.14);
}

.landing-page .checkbox-row {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    color: #ffd8e6;
}

.landing-page .checkbox-row input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 5px;
    accent-color: var(--accent);
}

.landing-page .checkbox-row label {
    margin: 0;
}

.landing-page .checkbox-row a {
    color: #ffeef5;
}

.landing-page .contact-form > .GhIjKlMnOpQr {
    min-height: 52px;
    padding: 14px 20px;
    border: 0;
    border-radius: 18px;
    font-weight: 700;
    font-size: 1rem;
    color: #170510;
    background: linear-gradient(135deg, #ff9cc9, #ff4fa3);
    cursor: pointer;
    box-shadow: 0 16px 28px rgba(255, 79, 163, 0.25);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.landing-page .contact-form > .GhIjKlMnOpQr:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 34px rgba(255, 79, 163, 0.32);
}

.landing-page .site-footer {
    background: rgba(20, 7, 14, 0.8);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.landing-page .footer-shell {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    text-align: center;
}

.landing-page .site-footer .QrStUvWxYzAb {
    max-width: 840px;
    font-size: clamp(1.15rem, 2vw, 1.45rem);
    color: #fff4f8;
    font-weight: 700;
}

.landing-page .site-footer .CdEfGhIjKlMn,
.landing-page .site-footer .OpQrStUvWxYz {
    color: #f4c8da;
}

.landing-page .site-footer .OpQrStUvWxYz a {
    text-decoration: none;
    color: #fff6fb;
}

.landing-page .site-footer .disclaimer {
    max-width: 900px;
    margin: 10px auto 0;
    color: #c894a8;
    font-size: 0.92rem;
}

.landing-page .footer-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 18px;
    margin-top: 8px;
}

.landing-page .footer-nav a {
    text-decoration: none;
    color: #ffd8e6;
}

.landing-page .footer-nav a:hover {
    color: #ffffff;
}

.landing-page.thank-page .thank-section {
    width: min(980px, calc(100% - 40px));
    margin: 0 auto;
}

.landing-page.thank-page .thank-shell {
    display: grid;
    gap: 24px;
    padding: clamp(28px, 5vw, 40px);
    border-radius: 32px;
    background: var(--panel-bg);
    border: 1px solid var(--line-soft);
    box-shadow: var(--shadow-main);
}

.landing-page.thank-page .thank-copy > .YzAbCdEfGhIj {
    font-size: clamp(2.1rem, 4vw, 3.2rem);
    line-height: 1.05;
    margin-bottom: 1rem;
    color: #fff5fa;
}

.landing-page.thank-page .thank-copy > .KlMnOpQrStUv,
.landing-page.thank-page .thank-copy > .WxYzAbCdEfGh {
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

.landing-page.thank-page .thank-copy a.UvWxYzAbCdEf {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 24px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    color: #170510;
    background: linear-gradient(135deg, #ff9cc9, #ff4fa3);
}

.landing-page.thank-page .thank-media img {
    margin: 0 auto;
    box-shadow: var(--shadow-main);
}

@keyframes beamyAccentShift {
    from {
        background-position: 0 50%;
    }
    to {
        background-position: 200% 50%;
    }
}

@media (max-width: 1080px) {
    .landing-page .hero-logos {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .landing-page .audience-grid,
    .landing-page .pricing-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .landing-page .hero-grid,
    .landing-page .two-column-layout,
    .landing-page .split-layout {
        grid-template-columns: 1fr;
    }

    .landing-page .pricing-grid > .highlighted {
        transform: none;
    }
}

@media (max-width: 760px) {
    .landing-page .header-inner {
        padding: 16px 0;
    }

    .landing-page .nav-burger {
        display: flex;
    }

    .landing-page .nav-menu {
        display: none;
        position: absolute;
        top: calc(100% + 12px);
        right: 0;
        min-width: min(320px, calc(100vw - 32px));
        padding: 18px;
        border-radius: 22px;
        flex-direction: column;
        align-items: stretch;
        gap: 14px;
        background: rgba(33, 10, 22, 0.96);
        border: 1px solid rgba(255, 255, 255, 0.08);
        box-shadow: var(--shadow-main);
    }

    .landing-page .nav-toggle:checked ~ .nav-menu {
        display: flex;
    }

    .landing-page .nav-toggle:checked + .nav-burger span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .landing-page .nav-toggle:checked + .nav-burger span:nth-child(2) {
        opacity: 0;
    }

    .landing-page .nav-toggle:checked + .nav-burger span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .landing-page .hero-copy > .YzAbCdEfGhIj {
        font-size: clamp(2rem, 11vw, 3.2rem);
    }

    .landing-page .benefit-grid,
    .landing-page .audience-grid,
    .landing-page .pricing-grid {
        grid-template-columns: 1fr;
    }

    .landing-page .hero-logos {
        grid-template-columns: 1fr;
    }

    .landing-page .quote-panel,
    .landing-page .contact-shell,
    .landing-page .narrow-shell {
        padding: 24px;
    }
}

@media (max-width: 520px) {
    .landing-page .site-shell,
    .landing-page .hero-section,
    .landing-page .narrative-section,
    .landing-page .practice-section,
    .landing-page .faq-section,
    .landing-page.thank-page .thank-section {
        width: min(100%, calc(100% - 24px));
    }

    .landing-page .section-shell,
    .landing-page .section-tone,
    .landing-page .contact-section,
    .landing-page .site-footer {
        padding: 44px 0;
    }
}
