* { box-sizing: border-box; }
body {
    margin: 0;
    font-family: Inter, Arial, sans-serif;
    background: #0f172a;
    color: #e2e8f0;
}
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px;
}
.card {
    background: #111827;
    border: 1px solid #1f2937;
    border-radius: 14px;
    padding: 20px;
    margin-bottom: 16px;
}
.hero h1 { margin: 0 0 8px; }
.grid-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}
.grid-form label {
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 0.95rem;
}
.grid-form .inline {
    grid-column: 1 / -1;
    flex-direction: row;
    align-items: center;
}
input, textarea, select {
    width: 100%;
    border: 1px solid #334155;
    background: #0b1220;
    color: #e2e8f0;
    border-radius: 8px;
    padding: 10px;
}
input[type="checkbox"],
input[type="radio"] {
    width: auto;
    max-width: none;
}
button {
    grid-column: 1 / -1;
    border: none;
    border-radius: 10px;
    background: #22c55e;
    color: #052e16;
    font-weight: 700;
    padding: 12px 16px;
    cursor: pointer;
}
.flash { padding: 10px 12px; border-radius: 8px; }
.success { background: #052e16; color: #bbf7d0; }
.error { background: #450a0a; color: #fecaca; }

.topbar {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
}
.filters, .actions {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
}
.table-wrap { overflow-x: auto; }
table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}
th, td {
    border-bottom: 1px solid #1f2937;
    text-align: left;
    padding: 8px;
}
a { color: #93c5fd; }

@media (max-width: 900px) {
    .grid-form, .filters, .actions {
        grid-template-columns: 1fr;
    }
}

/* --- Landing pública (www.encontrandonos.com.ar) --- */
body.landing {
    --landing-teal: #0d9488;
    --landing-teal-dark: #0f766e;
    --landing-coral: #fb7185;
    --landing-coral-soft: #fff1f2;
    --landing-violet: #8b5cf6;
    --landing-violet-soft: #f5f3ff;
    --landing-amber: #fbbf24;
    --landing-ink: #0f172a;
    --landing-muted: #475569;
    background-color: #f0f4f8;
    background-image:
        radial-gradient(ellipse 120% 80% at 100% -20%, rgba(45, 212, 191, 0.22), transparent 50%),
        radial-gradient(ellipse 90% 60% at -10% 30%, rgba(251, 113, 133, 0.14), transparent 45%),
        radial-gradient(ellipse 70% 50% at 80% 100%, rgba(139, 92, 246, 0.1), transparent 40%);
    color: var(--landing-ink);
    line-height: 1.65;
    font-family: "DM Sans", system-ui, -apple-system, sans-serif;
    font-size: 1.02rem;
}
body.landing h1,
body.landing h2,
body.landing h3 {
    font-family: "Fraunces", Georgia, "Times New Roman", serif;
    font-weight: 650;
    letter-spacing: -0.02em;
}
body.landing a {
    color: var(--landing-teal-dark);
    font-weight: 500;
}
body.landing a:hover {
    color: #115e59;
    text-decoration: underline;
}

.skip-link {
    position: absolute;
    left: -9999px;
    z-index: 999;
    padding: 0.75rem 1rem;
    background: #0f766e;
    color: #fff;
    border-radius: 8px;
}
.skip-link:focus {
    left: 1rem;
    top: 1rem;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(248, 250, 252, 0.88) 100%);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(45, 212, 191, 0.2);
    box-shadow: 0 4px 24px rgba(15, 23, 42, 0.06);
}
.site-header__inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0.75rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    position: relative;
}
.site-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}
.site-brand__logo {
    width: 150px;
    height: auto;
    object-fit: contain;
    display: block;
}
.site-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1rem;
    align-items: center;
}
.site-nav a {
    text-decoration: none;
    font-weight: 500;
    color: #334155;
    font-size: 0.95rem;
}
.site-nav a:hover {
    color: #0f766e;
}
.site-nav__cta {
    background: linear-gradient(135deg, #0d9488, #0f766e);
    color: #fff !important;
    padding: 0.5rem 1rem;
    border-radius: 999px;
    font-weight: 700;
    box-shadow: 0 4px 14px rgba(13, 148, 136, 0.35);
}
.site-nav__cta:hover {
    filter: brightness(1.06);
    text-decoration: none;
}
.site-nav-toggle {
    display: none;
    border: 1px solid #cbd5e1;
    background: #fff;
    border-radius: 8px;
    padding: 0.4rem 0.75rem;
    font-weight: 600;
    cursor: pointer;
}

@media (max-width: 768px) {
    .site-nav-toggle {
        display: inline-block;
    }
    .site-nav {
        display: none;
        position: absolute;
        left: 0;
        right: 0;
        top: 100%;
        flex-direction: column;
        align-items: stretch;
        padding: 1rem 1.25rem 1.25rem;
        background: #fff;
        border-bottom: 1px solid #e2e8f0;
        box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
    }
    .site-nav--open {
        display: flex;
    }
    .site-header {
        position: relative;
    }
}

.hero-landing--rich {
    position: relative;
    overflow: hidden;
    padding: 0;
    margin: 0;
}
.hero-landing__blobs {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}
.hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(48px);
    opacity: 0.55;
}
.hero-blob--a {
    width: min(420px, 90vw);
    height: min(420px, 90vw);
    background: linear-gradient(145deg, #5eead4, #2dd4bf);
    top: -8%;
    right: -5%;
}
.hero-blob--b {
    width: min(320px, 70vw);
    height: min(320px, 70vw);
    background: linear-gradient(200deg, #fda4af, #fb7185);
    bottom: 5%;
    left: -10%;
    opacity: 0.4;
}
.hero-blob--c {
    width: 200px;
    height: 200px;
    background: #a78bfa;
    top: 40%;
    left: 35%;
    opacity: 0.25;
    filter: blur(60px);
}
.hero-landing__shell {
    position: relative;
    z-index: 1;
    max-width: 1100px;
    margin: 0 auto;
    padding: 3rem 1.25rem 4rem;
}
.hero-landing__grid {
    display: grid;
    grid-template-columns: 1fr minmax(200px, 320px);
    gap: 2rem;
    align-items: center;
}
@media (max-width: 900px) {
    .hero-landing__grid {
        grid-template-columns: 1fr;
    }
    .hero-landing__aside {
        flex-direction: row !important;
        flex-wrap: wrap;
        justify-content: center;
    }
}
.hero-landing__inner {
    max-width: 640px;
}
.hero-landing .eyebrow {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.72rem;
    font-weight: 700;
    font-family: "DM Sans", sans-serif;
    color: #0f766e;
    margin: 0 0 0.75rem;
    padding: 0.35rem 0.75rem;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(45, 212, 191, 0.35);
    border-radius: 999px;
    box-shadow: 0 2px 12px rgba(15, 118, 110, 0.08);
}
.hero-landing h1 {
    font-size: clamp(1.85rem, 4.2vw, 2.75rem);
    line-height: 1.12;
    margin: 0 0 1rem;
    color: #0c4a44;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.8);
}
.hero-landing .lead {
    font-size: 1.12rem;
    color: var(--landing-muted);
    margin: 0 0 1.5rem;
}
.hero-landing__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}
.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem 1rem;
    list-style: none;
    margin: 1.5rem 0 0;
    padding: 0;
    font-size: 0.88rem;
    font-weight: 600;
    color: #334155;
}
.hero-badges__dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, #14b8a6, #0d9488);
    margin-right: 0.35rem;
    vertical-align: middle;
}
.hero-landing__aside {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: relative;
}
.hero-float {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 16px;
    padding: 1rem 1.15rem;
    box-shadow:
        0 4px 6px rgba(15, 23, 42, 0.04),
        0 12px 32px rgba(13, 148, 136, 0.12);
    backdrop-filter: blur(8px);
    animation: heroFloat 6s ease-in-out infinite;
}
.hero-float--two {
    animation-delay: -2s;
    margin-left: 0;
}
.hero-float--three {
    animation-delay: -4s;
}
@media (min-width: 901px) {
    .hero-float--two {
        margin-left: 1.5rem;
    }
    .hero-float--three {
        margin-left: 0.5rem;
    }
}
@keyframes heroFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}
.hero-float__icon {
    font-size: 1.5rem;
    display: block;
    margin-bottom: 0.35rem;
}
.hero-float strong {
    display: block;
    font-family: "Fraunces", serif;
    color: #0f172a;
    font-size: 1.05rem;
}
.hero-float span:last-child {
    font-size: 0.85rem;
    color: #64748b;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.65rem 1.25rem;
    border-radius: 10px;
    font-weight: 700;
    text-decoration: none;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.15s, color 0.15s, transform 0.1s;
}
.btn--primary {
    background: linear-gradient(135deg, #14b8a6 0%, #0d9488 45%, #0f766e 100%);
    color: #fff !important;
    box-shadow: 0 6px 20px rgba(13, 148, 136, 0.4);
}
.btn--primary:hover {
    text-decoration: none;
    filter: brightness(1.06);
    transform: translateY(-1px);
}
.btn--ghost {
    background: rgba(255, 255, 255, 0.95);
    color: #334155 !important;
    border: 2px solid rgba(13, 148, 136, 0.35);
    box-shadow: 0 2px 12px rgba(15, 23, 42, 0.06);
}
.btn--ghost:hover {
    background: #f0fdfa;
    border-color: #0d9488;
    text-decoration: none;
}
.btn--block {
    width: 100%;
}

.section {
    padding: 3.25rem 1.25rem;
    position: relative;
}
.section__kicker {
    font-family: "DM Sans", sans-serif;
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: #0d9488;
    margin: 0 0 0.5rem;
}
.section__kicker--light {
    color: #99f6e4;
}
.section--formula {
    background: linear-gradient(180deg, #ffffff 0%, #f0fdfa 55%, #ecfeff 100%);
    border-top: 1px solid rgba(45, 212, 191, 0.25);
    border-bottom: 1px solid rgba(45, 212, 191, 0.15);
}
.section--four-steps-bg {
    background:
        radial-gradient(ellipse 80% 60% at 100% 0%, rgba(167, 139, 250, 0.12), transparent),
        radial-gradient(ellipse 60% 50% at 0% 100%, rgba(45, 212, 191, 0.15), transparent),
        linear-gradient(165deg, #1e293b 0%, #0f172a 50%, #134e4a 100%);
    color: #e2e8f0;
}
.section--four-steps-bg h2,
.section--four-steps-bg .section__intro {
    color: #f1f5f9;
}
.section--four-steps-bg .section__intro {
    opacity: 0.92;
}
.section--diferencia {
    background: linear-gradient(180deg, #fffbeb 0%, #fff7ed 40%, #fff1f2 100%);
}
.section--como {
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
    position: relative;
}
.section--como::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #14b8a6, #a78bfa, #fb7185);
    opacity: 0.85;
}
.section--normas {
    background: linear-gradient(180deg, #faf5ff 0%, #f5f3ff 100%);
    border-top: 1px solid rgba(167, 139, 250, 0.2);
}
.section--equipo {
    background: linear-gradient(180deg, #ffffff 0%, #f0fdfa 100%);
}
.section--form-rich {
    background:
        radial-gradient(ellipse 100% 80% at 50% -20%, rgba(45, 212, 191, 0.2), transparent 55%),
        linear-gradient(180deg, #ecfdf5 0%, #f0fdfa 100%);
}
.section--privacidad {
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
}
.section--alt {
    background: rgba(255, 255, 255, 0.65);
}
.section--dark {
    background: #0f172a;
    color: #e2e8f0;
}
.section--dark-rich {
    background:
        radial-gradient(ellipse 70% 50% at 80% 20%, rgba(45, 212, 191, 0.15), transparent),
        radial-gradient(ellipse 50% 40% at 10% 80%, rgba(94, 234, 212, 0.08), transparent),
        linear-gradient(165deg, #0f172a 0%, #1e1b4b 100%);
    border-top: 1px solid rgba(94, 234, 212, 0.15);
    border-bottom: 1px solid rgba(94, 234, 212, 0.1);
}
.section--dark a {
    color: #5eead4;
}
.section--dark h2,
.section--dark h3 {
    color: #f8fafc;
}
.section__inner {
    max-width: 1100px;
    margin: 0 auto;
}
.section__inner--narrow {
    max-width: 640px;
    text-align: center;
}
.section h2 {
    font-size: 1.65rem;
    margin: 0 0 0.75rem;
    letter-spacing: -0.02em;
    color: #0f172a;
}
.section__intro {
    color: #475569;
    margin: 0 0 1.5rem;
    max-width: 720px;
}

.feature-list {
    margin: 0;
    padding-left: 1.25rem;
    color: #334155;
}
.feature-list li {
    margin-bottom: 0.65rem;
}

.feature-pillars {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.feature-pillars__item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.15rem 1.25rem;
    background: #fff;
    border-radius: 16px;
    border: 1px solid rgba(45, 212, 191, 0.25);
    box-shadow: 0 8px 30px rgba(15, 23, 42, 0.06);
}
.feature-pillars__icon {
    font-size: 1.75rem;
    line-height: 1;
    flex-shrink: 0;
}
.feature-pillars__item strong {
    display: block;
    font-family: "Fraunces", serif;
    font-size: 1.1rem;
    color: #0f172a;
    margin-bottom: 0.25rem;
}
.feature-pillars__item span {
    font-size: 0.95rem;
    color: #64748b;
}

.section--four-steps .four-steps-head-accent {
    background: linear-gradient(135deg, #5eead4, #99f6e4);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 800;
}
.section--four-steps {
    scroll-margin-top: 5rem;
}

.four-steps-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}
@media (max-width: 768px) {
    .four-steps-grid {
        grid-template-columns: 1fr;
    }
}
.section--four-steps-bg .four-step-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(94, 234, 212, 0.25);
    border-radius: 18px;
    padding: 1.35rem;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(8px);
    transition: border-color 0.2s, transform 0.2s;
}
.section--four-steps-bg .four-step-card:hover {
    border-color: rgba(94, 234, 212, 0.45);
    transform: translateY(-2px);
}
.section--four-steps-bg .four-step-card h3 {
    margin: 0 0 0.5rem;
    font-size: 1.08rem;
    color: #f8fafc;
}
.step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border-radius: 10px;
    background: linear-gradient(135deg, #14b8a6, #0d9488);
    color: #fff;
    font-family: "DM Sans", sans-serif;
    font-weight: 800;
    margin-right: 0.4rem;
    font-size: 1rem;
    box-shadow: 0 4px 12px rgba(13, 148, 136, 0.35);
}
.section--four-steps-bg .four-step-card p {
    margin: 0;
    font-size: 0.95rem;
    color: #cbd5e1;
    line-height: 1.55;
}
.section--four-steps-bg .four-step-card a {
    color: #5eead4;
    font-weight: 600;
}

.cards-3 {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}
@media (max-width: 900px) {
    .cards-3 {
        grid-template-columns: 1fr;
    }
}
.info-card {
    background: #fff;
    border-radius: 14px;
    padding: 1.25rem;
    border: 1px solid #e2e8f0;
}
.info-card--viz {
    padding: 1.5rem 1.25rem 1.35rem;
    border: none;
    position: relative;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
}
.info-card--viz::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    border-radius: 14px 14px 0 0;
}
.info-card--teal {
    background: linear-gradient(180deg, #f0fdfa 0%, #ffffff 45%);
    box-shadow: 0 10px 36px rgba(13, 148, 136, 0.12);
}
.info-card--teal::before {
    background: linear-gradient(90deg, #14b8a6, #0d9488);
}
.info-card--coral {
    background: linear-gradient(180deg, #fff1f2 0%, #ffffff 45%);
    box-shadow: 0 10px 36px rgba(251, 113, 133, 0.1);
}
.info-card--coral::before {
    background: linear-gradient(90deg, #fb7185, #f43f5e);
}
.info-card--violet {
    background: linear-gradient(180deg, #f5f3ff 0%, #ffffff 45%);
    box-shadow: 0 10px 36px rgba(139, 92, 246, 0.1);
}
.info-card--violet::before {
    background: linear-gradient(90deg, #a78bfa, #8b5cf6);
}
.info-card--viz:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(15, 23, 42, 0.12);
}
.info-card__emoji {
    display: block;
    font-size: 2rem;
    line-height: 1;
    margin-bottom: 0.65rem;
}
.info-card h3 {
    margin: 0 0 0.5rem;
    font-size: 1.1rem;
    color: #0f172a;
}
.info-card p {
    margin: 0;
    color: #64748b;
    font-size: 0.95rem;
}

.callout {
    border-radius: 14px;
    padding: 1.25rem 1.5rem;
}
.callout--age {
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
    border: 2px solid #34d399;
    color: #064e3b;
    box-shadow: 0 8px 28px rgba(16, 185, 129, 0.15);
}
.callout--age h3 {
    margin: 0 0 0.5rem;
    font-size: 1.15rem;
    font-family: "Fraunces", serif;
}

.steps {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.steps li {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1.25rem;
    align-items: start;
    background: #fff;
    border: 1px solid rgba(148, 163, 184, 0.35);
    border-radius: 18px;
    padding: 1.35rem 1.5rem;
    box-shadow: 0 8px 32px rgba(15, 23, 42, 0.06);
}
.steps__num {
    font-family: "Fraunces", serif;
    font-weight: 700;
    font-size: 1.35rem;
    color: #fff;
    line-height: 1;
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: linear-gradient(145deg, #14b8a6, #0f766e);
    box-shadow: 0 6px 16px rgba(13, 148, 136, 0.35);
}
.steps h3 {
    margin: 0 0 0.35rem;
    font-size: 1.15rem;
    color: #0f172a;
}
.steps p {
    margin: 0;
    color: #475569;
    font-size: 0.95rem;
}

.pullquote {
    font-size: 1.2rem;
    font-style: italic;
    margin: 0 0 1rem;
    color: #5eead4;
    border-left: 4px solid #2dd4bf;
    padding-left: 1rem;
}
.compact-list {
    margin: 0;
    padding-left: 1.2rem;
    color: #cbd5e1;
}
.section--dark .compact-list {
    color: #cbd5e1;
}
.section--alt .compact-list {
    color: #334155;
}
.two-col {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
}
@media (max-width: 768px) {
    .two-col {
        grid-template-columns: 1fr;
    }
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}
@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: 1fr;
    }
}
.team-card {
    background: #fff;
    border: 1px solid rgba(45, 212, 191, 0.3);
    border-radius: 20px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 12px 40px rgba(15, 23, 42, 0.07);
}
.team-card__avatar {
    width: 88px;
    height: 88px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Fraunces", serif;
    font-weight: 700;
    font-size: 1.35rem;
    color: #fff;
    border: 4px solid #fff;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.12);
}
.team-card__avatar--jg {
    background: linear-gradient(145deg, #0d9488, #0f766e);
}
.team-card__avatar--mm {
    background: linear-gradient(145deg, #a78bfa, #7c3aed);
}
.team-card h3 {
    margin: 0 0 0.5rem;
    color: #0f172a;
}
.team-card p {
    margin: 0;
    color: #475569;
    font-size: 0.95rem;
    text-align: left;
}

.section--cta {
    background:
        radial-gradient(ellipse 60% 80% at 50% 120%, rgba(251, 113, 133, 0.35), transparent),
        linear-gradient(135deg, #0f766e 0%, #134e4a 50%, #115e59 100%);
    color: #ecfdf5;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.section--cta::after {
    content: "";
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.06'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.9;
    pointer-events: none;
}
.section--cta .section__inner {
    position: relative;
    z-index: 1;
}
.section--cta h2 {
    color: #fff;
    font-size: clamp(1.5rem, 3vw, 2rem);
}
.section--cta p {
    color: #ecfdf5;
    margin: 0 0 1.25rem;
    opacity: 0.95;
}
.section--cta .btn--primary {
    background: #fff;
    color: #0f766e !important;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.2);
}
.section--cta .btn--primary:hover {
    background: #f0fdfa;
}

.section--form {
    scroll-margin-top: 5rem;
}
.grid-form--landing {
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid rgba(45, 212, 191, 0.35);
    border-radius: 20px;
    padding: 1.75rem;
    box-shadow:
        0 4px 6px rgba(15, 23, 42, 0.04),
        0 20px 50px rgba(13, 148, 136, 0.12);
}
body.landing .grid-form--landing label {
    color: #334155;
}
body.landing .grid-form--landing input:not([type="checkbox"]):not([type="radio"]),
body.landing .grid-form--landing textarea,
body.landing .grid-form--landing select {
    background: #f8fafc;
    border-color: #cbd5e1;
    color: #0f172a;
}
body.landing .grid-form--landing label.inline {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 0.65rem;
    grid-column: 1 / -1;
    width: 100%;
    max-width: 100%;
    text-align: left;
    line-height: 1.45;
}
body.landing .grid-form--landing label.inline input[type="checkbox"] {
    width: 1.125rem !important;
    min-width: 1.125rem;
    height: 1.125rem;
    margin: 0.2rem 0 0;
    padding: 0;
    flex-shrink: 0;
    cursor: pointer;
    accent-color: #0d9488;
    align-self: flex-start;
}
body.landing .grid-form--landing label.inline a {
    white-space: normal;
}
.captcha-box {
    grid-column: 1 / -1;
    background: #f0fdfa;
    border: 1px solid #99f6e4;
    border-radius: 12px;
    padding: 1rem 1.25rem;
}
.captcha-box__q {
    margin: 0 0 0.5rem;
    color: #115e59;
    font-size: 0.95rem;
}
.captcha-box .hint {
    display: block;
    font-size: 0.8rem;
    color: #64748b;
    margin-top: 0.35rem;
}

.flash--landing {
    margin-bottom: 1rem;
}
body.landing .flash.success {
    background: #ecfdf5;
    color: #065f46;
    border: 1px solid #6ee7b7;
}
body.landing .flash.error {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

.small-print {
    font-size: 0.88rem;
    color: #64748b;
}

.site-footer {
    border-top: none;
    background: linear-gradient(180deg, #1e293b 0%, #0f172a 100%);
    padding: 2.5rem 1.25rem;
    margin-top: 0;
    color: #94a3b8;
}
.site-footer__inner {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
    font-size: 0.92rem;
}
.site-footer strong {
    font-family: "Fraunces", serif;
    color: #e2e8f0;
    font-weight: 600;
}
.site-footer a {
    color: #5eead4;
}
.site-footer a:hover {
    color: #99f6e4;
}

.section--video {
    background: linear-gradient(180deg, #f8fafc 0%, #eef2ff 50%, #f0fdfa 100%);
    border-top: 1px solid rgba(139, 92, 246, 0.12);
    border-bottom: 1px solid rgba(13, 148, 136, 0.15);
}

.zoom-mock {
    max-width: 720px;
    margin: 1.5rem auto 0;
    border-radius: 12px;
    overflow: hidden;
    background: #1a1a1a;
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.08),
        0 24px 48px rgba(15, 23, 42, 0.35);
}
.zoom-mock__chrome {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.5rem 0.75rem;
    background: linear-gradient(180deg, #2d2d2d 0%, #252525 100%);
    border-bottom: 1px solid #000;
    font-size: 0.78rem;
    color: #e2e8f0;
}
.zoom-mock__dots {
    display: flex;
    gap: 5px;
}
.zoom-mock__dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #525252;
}
.zoom-mock__dots span:first-child {
    background: #ef4444;
}
.zoom-mock__dots span:nth-child(2) {
    background: #eab308;
}
.zoom-mock__dots span:nth-child(3) {
    background: #22c55e;
}
.zoom-mock__title {
    flex: 1;
    text-align: center;
    font-weight: 600;
    letter-spacing: 0.02em;
    font-size: 0.72rem;
    color: #cbd5e1;
}
.zoom-mock__pill {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    background: #dc2626;
    color: #fff;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
}
.zoom-mock__body {
    padding: 0.75rem;
    background: #111;
}
.zoom-mock__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
    min-height: 160px;
}
@media (max-width: 640px) {
    .zoom-mock__grid {
        grid-template-columns: 1fr 1fr;
    }
    .zoom-tile--host {
        grid-column: 1 / -1;
    }
}
.zoom-tile {
    position: relative;
    border-radius: 8px;
    background: linear-gradient(145deg, #2a2a2a, #1f1f1f);
    border: 1px solid #333;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 0.5rem;
    min-height: 88px;
}
.zoom-tile--host {
    background: linear-gradient(160deg, #3730a3 0%, #1e1b4b 100%);
    border-color: #4c1d95;
}
.zoom-tile--pair {
    grid-column: 1 / -1;
    background: linear-gradient(90deg, #134e4a, #115e59);
    border-color: #0d9488;
    flex-direction: row;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
    min-height: 72px;
}
.zoom-tile__avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--av, #64748b);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "DM Sans", sans-serif;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
}
.zoom-tile__name {
    font-size: 0.65rem;
    color: #94a3b8;
    margin-top: 0.35rem;
    text-align: center;
}
.zoom-tile--pair .zoom-tile__name {
    margin-top: 0;
    font-size: 0.75rem;
    color: #ccfbf1;
}
.zoom-tile__badge {
    position: absolute;
    top: 6px;
    right: 6px;
    font-size: 0.55rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    background: rgba(0, 0, 0, 0.45);
    color: #fef08a;
    padding: 0.15rem 0.35rem;
    border-radius: 3px;
}
.zoom-mock__toolbar {
    display: flex;
    justify-content: center;
    gap: 1.25rem;
    padding: 0.65rem 0.75rem;
    background: #121212;
    border-top: 1px solid #222;
}
.zoom-tool {
    font-size: 0.62rem;
    font-weight: 600;
    color: #94a3b8;
    padding: 0.35rem 0.5rem;
    border-radius: 6px;
    background: #1e1e1e;
    border: 1px solid #333;
}
.zoom-tool--leave {
    background: #dc2626;
    border-color: #b91c1c;
    color: #fff;
}
.zoom-mock__note {
    text-align: center;
    font-size: 0.88rem;
    color: #64748b;
    margin: 1rem 0 0;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.legal-page {
    padding: 2.5rem 1.25rem 4rem;
    background: linear-gradient(180deg, #f8fafc 0%, #fff 40%);
}
.legal-page__inner {
    max-width: 720px;
}
.legal-page h1 {
    font-size: clamp(1.75rem, 3vw, 2.15rem);
    color: #0f172a;
    margin: 0 0 0.5rem;
}
.legal-page__updated {
    font-size: 0.9rem;
    color: #64748b;
    margin: 0 0 1.5rem;
}
.legal-page h2 {
    font-size: 1.2rem;
    margin: 2rem 0 0.65rem;
    color: #134e4a;
}
.legal-page p,
.legal-page li {
    color: #334155;
    font-size: 0.98rem;
}
.legal-page p {
    margin: 0 0 1rem;
}
.legal-page__back {
    margin-top: 2.5rem;
}

@media (prefers-reduced-motion: reduce) {
    .hero-float {
        animation: none;
    }
    .btn--primary:hover {
        transform: none;
    }
}
