


:root {
    --pmo-900: #060d1f;
    --pmo-800: #0b1a3a;
    --pmo-700: #0f2b5e;
    --pmo-600: #163d7a;
    --pmo-500: #1e56a0;
    --pmo-400: #2b7bd4;
    --pmo-300: #5ba3e6;
    --pmo-200: #a8d4f5;
    --pmo-100: #dbeefe;
    --pmo-50: #f0f7ff;
    --accent: #0ea5e9;
    --accent-light: #38bdf8;
    --accent-soft: #e0f2fe;
    --emerald: #059669;
    --emerald-light: #34d399;
    --emerald-soft: #d1fae5;
    --amber: #d97706;
    --amber-light: #fbbf24;
    --amber-soft: #fef3c7;
    --slate-950: #020617;
    --slate-900: #0f172a;
    --slate-800: #1e293b;
    --slate-700: #334155;
    --slate-600: #475569;
    --slate-500: #64748b;
    --slate-400: #94a3b8;
    --slate-300: #cbd5e1;
    --slate-200: #e2e8f0;
    --slate-100: #f1f5f9;
    --slate-50: #f8fafc;
    --white: #ffffff;
    --radius-sm: 0.5rem;
    --radius-md: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.25rem;
    --radius-2xl: 1.5rem;
    --radius-full: 999px;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.07), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -4px rgba(0, 0, 0, 0.04);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.08), 0 8px 10px -6px rgba(0, 0, 0, 0.04);
    --shadow-glow: 0 0 40px rgba(14, 165, 233, 0.15);
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);

    --surface-warm: #fcfbf9;
    --surface-light: #f5f3f0;
    --surface-body: #f8f7f5;

    --texture-dots: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20'%3E%3Ccircle cx='2' cy='2' r='0.8' fill='%23000' fill-opacity='0.035'/%3E%3C/svg%3E");
    --texture-diagonal: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='6' height='6'%3E%3Cpath d='M0 6L6 0' stroke='%23000' stroke-opacity='0.025' stroke-width='0.5'/%3E%3C/svg%3E");
}


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


html {
    scroll-behavior: smooth;
    overflow-x: hidden;

    overscroll-behavior-y: auto;

    background: var(--slate-900);
}

body {
    font-family:
        "Inter",
        system-ui,
        -apple-system,
        sans-serif;
    font-size: 1rem;
    color: var(--slate-800);

    background: var(--surface-body);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;

    overflow-x: clip;

    overflow-y: visible;
}

a {
    color: var(--accent);
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: var(--pmo-400);
}

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


.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition:
        opacity 0.7s var(--ease-out),
        transform 0.7s var(--ease-out);
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}


.reveal-stagger > .reveal:nth-child(2) {
    transition-delay: 0.08s;
}

.reveal-stagger > .reveal:nth-child(3) {
    transition-delay: 0.16s;
}

.reveal-stagger > .reveal:nth-child(4) {
    transition-delay: 0.24s;
}

.reveal-stagger > .reveal:nth-child(5) {
    transition-delay: 0.32s;
}

.reveal-stagger > .reveal:nth-child(6) {
    transition-delay: 0.4s;
}

.reveal-stagger > .reveal:nth-child(7) {
    transition-delay: 0.48s;
}

.reveal-stagger > .reveal:nth-child(8) {
    transition-delay: 0.56s;
}


.site-shell {
    width: 100%;
    margin: 0 auto;
}

.container {
    width: min(1200px, 90vw);
    margin: 0 auto;
    padding: 0 1rem;
}

.section-pad {
    padding-top: clamp(3rem, 6vw, 5rem);
    padding-bottom: clamp(3rem, 6vw, 5rem);
}


.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--pmo-900);
    padding: clamp(6rem, 10vw, 8rem) 0 clamp(3rem, 6vw, 5rem);
}


.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 900px 800px at 20% 30%, rgba(14, 165, 233, 0.12), transparent),
        radial-gradient(ellipse 800px 700px at 75% 65%, rgba(5, 150, 105, 0.09), transparent),
        radial-gradient(ellipse 700px 600px at 50% 10%, rgba(30, 86, 160, 0.12), transparent),
        radial-gradient(ellipse 500px 500px at 85% 15%, rgba(217, 119, 6, 0.05), transparent);
    filter: blur(40px);
    animation: meshFloat 12s ease-in-out infinite alternate;
    pointer-events: none;
    will-change: transform;
}

@keyframes meshFloat {
    0% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(-15px, 10px) scale(1.03);
    }

    100% {
        transform: translate(10px, -8px) scale(0.98);
    }
}


.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

.hero__inner {
    position: relative;
    z-index: 2;
    width: min(1200px, 90vw);
    padding: 0 1rem;
}

.hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--accent-light);
    margin-bottom: 1.25rem;
    padding: 0.4rem 1rem;
    border-radius: var(--radius-full);
    border: 1px solid rgba(14, 165, 233, 0.25);
    background: rgba(14, 165, 233, 0.08);
}

.hero h1 {
    font-family: "Plus Jakarta Sans", "Inter", sans-serif;
    font-size: clamp(2.5rem, 5.5vw, 4.5rem);
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: -0.025em;
    color: var(--white);
    margin: 0;
    max-width: 18ch;
}


.hero h1 span {
    background: linear-gradient(135deg, var(--accent-light), var(--emerald-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero__lead {
    margin: 1.5rem 0 2rem;
    max-width: 56ch;
    color: var(--slate-400);
    font-size: clamp(1.05rem, 1.5vw, 1.2rem);
    line-height: 1.8;
}

.hero__cta {
    display: flex;
    gap: 0.85rem;
    flex-wrap: wrap;
}


.hero__stats {
    display: flex;
    gap: clamp(1.5rem, 4vw, 3rem);
    margin-top: clamp(3rem, 5vw, 4rem);
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    flex-wrap: wrap;
}

.hero__stat {
    display: flex;
    flex-direction: column;
}

.hero__stat-value {
    font-family: "Plus Jakarta Sans", "Inter", sans-serif;
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--white);
}

.hero__stat-label {
    font-size: 0.82rem;
    color: var(--slate-500);
    font-weight: 500;
    margin-top: 0.15rem;
}


.hero--compact {
    min-height: auto;
    padding: clamp(7rem, 12vw, 9rem) 0 clamp(2.5rem, 4vw, 3.5rem);
}

.hero--compact h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    max-width: 24ch;
}

.hero--compact .hero__lead {
    margin-bottom: 0;
}


.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    border: 0;
    border-radius: var(--radius-md);
    padding: 0.85rem 1.75rem;
    font: inherit;
    font-weight: 700;
    font-size: 0.92rem;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.25s var(--ease-out);
    position: relative;
}

.btn--primary {
    color: var(--white);
    background: linear-gradient(135deg, var(--accent), var(--pmo-400));
    box-shadow: 0 2px 12px rgba(14, 165, 233, 0.3);
}

.btn--primary:hover {
    box-shadow: 0 6px 24px rgba(14, 165, 233, 0.4);
    transform: translateY(-2px);
    color: var(--white);
}

.btn--secondary {
    color: var(--white);
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.btn--secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.4);
    color: var(--white);
}


.btn--on-light {
    color: var(--white);
    background: linear-gradient(135deg, var(--slate-900), var(--pmo-700));
    box-shadow: var(--shadow-md);
}

.btn--on-light:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-2px);
    color: var(--white);
}

.btn--ghost {
    color: var(--slate-700);
    background: transparent;
    border: 1px solid var(--slate-300);
}

.btn--ghost:hover {
    background: var(--slate-100);
    border-color: var(--slate-400);
    color: var(--slate-900);
}


h1,
h2,
h3,
h4 {
    font-family: "Plus Jakarta Sans", "Inter", sans-serif;
    line-height: 1.15;
    letter-spacing: -0.025em;
    color: var(--slate-900);
}

h2 {
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    font-weight: 800;
}

h3 {
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    font-weight: 700;
}

h4 {
    font-size: 1.1rem;
    font-weight: 700;
}

.section__label {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 0.75rem;
}

.section__header {
    max-width: 56ch;
    margin-bottom: clamp(2rem, 4vw, 3rem);
}

.section__header h2 {
    margin-top: 0.25rem;
}

.section__header p {
    margin-top: 1rem;
    color: var(--slate-500);
    font-size: 1.05rem;
    max-width: 52ch;
}



.section--white {
    background-color: var(--surface-warm);
    background-image: var(--texture-dots);
    background-size: 20px 20px;
}

.section--light {
    background-color: var(--surface-light);
    background-image: var(--texture-diagonal);
    background-size: 6px 6px;
}


.section--white::after {
    content: "";
    position: absolute;
    top: -10%;
    right: -15%;
    width: 50%;
    height: 120%;
    background: radial-gradient(ellipse, rgba(14, 165, 233, 0.03), transparent 70%);
    pointer-events: none;
    z-index: 0;
}


.section--white {
    position: relative;
    overflow: clip;
}

.section--white > .container {
    position: relative;
    z-index: 1;
}

.section--dark {
    background: var(--slate-900);
    color: var(--slate-300);
}

.section--dark h2,
.section--dark h3 {
    color: var(--white);
}

.section--dark .section__label {
    color: var(--accent-light);
}


.license-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.25rem;
}


.license-card {
    position: relative;
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(226, 232, 240, 0.7);
    border-radius: var(--radius-xl);
    padding: 1.75rem;
    transition: all 0.3s var(--ease-out);
    overflow: hidden;
    box-shadow:
        0 1px 3px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}


.license-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--accent), var(--emerald));
    border-radius: 4px 0 0 4px;
    opacity: 0.7;
    transition:
        opacity 0.3s ease,
        width 0.3s ease;
}

.license-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl), var(--shadow-glow);
    border-color: var(--accent-soft);
}

.license-card:hover::before {
    opacity: 1;
}


.license-card__icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--accent-soft), rgba(14, 165, 233, 0.12));
    color: var(--accent);
}

.license-card__icon .lucide {
    width: 22px;
    height: 22px;
}

.license-card h3 {
    color: var(--slate-900);
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
}

.license-card p {
    color: var(--slate-500);
    font-size: 0.92rem;
    line-height: 1.65;
    flex-grow: 1;
}

.card-actions {
    margin-top: 1rem;
    padding-top: 0.85rem;
    border-top: 1px solid var(--slate-100);
}

.card-actions a {
    font-weight: 700;
    font-size: 0.88rem;
    text-decoration: none;
    color: var(--accent);
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    transition:
        gap 0.2s var(--ease-out),
        color 0.2s ease;
}

.card-actions a:hover {
    color: var(--pmo-600);
    gap: 0.55rem;
}



.detail-card {
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(226, 232, 240, 0.7);
    border-radius: var(--radius-xl);
    padding: clamp(1.75rem, 3vw, 2.5rem);
    position: relative;
    overflow: hidden;
    box-shadow:
        0 1px 3px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.detail-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--emerald));
}

.detail-card + .detail-card {
    margin-top: 1.25rem;
}

.detail-card h2 {
    color: var(--slate-900);
    font-size: clamp(1.35rem, 2.5vw, 1.75rem);
    margin-bottom: 0.75rem;
}

.detail-card h3 {
    color: var(--slate-800);
    font-size: 1.1rem;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.detail-card p {
    color: var(--slate-600);
    font-size: 0.95rem;
    line-height: 1.75;
}

.detail-card ul,
.detail-card ol {
    margin: 0.5rem 0;
    padding-left: 1.25rem;
    color: var(--slate-600);
    line-height: 1.8;
}

.detail-card li {
    margin-bottom: 0.25rem;
}


.badge-line {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.badge {
    font-weight: 700;
    font-size: 0.75rem;
    border-radius: var(--radius-full);
    padding: 0.35rem 0.85rem;
    letter-spacing: 0.02em;
}

.badge--accent {
    background: var(--accent-soft);
    color: #0369a1;
    border: 1px solid rgba(14, 165, 233, 0.15);
}

.badge--emerald {
    background: var(--emerald-soft);
    color: #065f46;
    border: 1px solid rgba(5, 150, 105, 0.15);
}

.badge--amber {
    background: var(--amber-soft);
    color: #92400e;
    border: 1px solid rgba(217, 119, 6, 0.15);
}


.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.5rem;
}

.feature-block {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.feature-block__icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    background: linear-gradient(135deg, var(--accent-soft), rgba(14, 165, 233, 0.12));
    color: var(--accent);
}

.feature-block__icon .lucide {
    width: 24px;
    height: 24px;
}

.section--dark .feature-block__icon {
    background: rgba(14, 165, 233, 0.12);
    color: var(--accent-light);
}

.feature-block h3 {
    font-size: 1.1rem;
    margin: 0;
}

.feature-block p {
    color: var(--slate-500);
    font-size: 0.92rem;
    line-height: 1.65;
}

.section--dark .feature-block p {
    color: var(--slate-400);
}


.founder-section {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: clamp(2rem, 4vw, 3.5rem);
    align-items: center;
}

.founder-section__portrait {
    width: 100%;
    aspect-ratio: 3 / 4;
    border-radius: var(--radius-2xl);
    object-fit: cover;

    object-position: 50% 18%;
    box-shadow: var(--shadow-xl);
}

.founder-section__content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.founder-section__logo {
    width: clamp(140px, 20vw, 220px);
    object-fit: contain;
    margin-top: 0.5rem;
}


.stats-bar {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1.5rem;
    text-align: center;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    padding: 1.5rem 1rem;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(226, 232, 240, 0.7);
    border-radius: var(--radius-xl);
    transition:
        transform 0.3s var(--ease-out),
        box-shadow 0.3s var(--ease-out);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.stat-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.stat-item__value {
    font-family: "Plus Jakarta Sans", "Inter", sans-serif;
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--slate-900);
    line-height: 1;
}

.stat-item__label {
    font-size: 0.82rem;
    color: var(--slate-500);
    font-weight: 500;
}



.cta-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--slate-900) 0%, var(--pmo-800) 60%, #1a2744 100%);
    padding: clamp(3rem, 6vw, 5rem) 0;
    text-align: center;
}

.cta-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 400px 400px at 30% 50%, rgba(14, 165, 233, 0.15), transparent),
        radial-gradient(ellipse 300px 300px at 70% 50%, rgba(5, 150, 105, 0.1), transparent);
    pointer-events: none;
}

.cta-section h2 {
    color: var(--white);
    position: relative;
    z-index: 1;
}

.cta-section p {
    color: var(--slate-400);
    font-size: 1.1rem;
    max-width: 48ch;
    margin: 1rem auto 2rem;
    position: relative;
    z-index: 1;
}

.cta-section .btn {
    position: relative;
    z-index: 1;
}


.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}


.partner-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(226, 232, 240, 0.7);
    border-radius: var(--radius-xl);
    padding: 2rem 1.5rem;
    transition:
        transform 0.3s var(--ease-out),
        box-shadow 0.3s var(--ease-out);
    box-shadow:
        0 1px 3px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.partner-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl), var(--shadow-glow);
    border-color: var(--accent-soft);
}


.partner-logo {
    height: 64px;
    width: auto;
    object-fit: contain;
    margin-bottom: 1.25rem;
}

.partner-card h3 {
    font-size: 1.1rem;
    color: var(--slate-900);
    margin-bottom: 0.5rem;
}

.partner-card p {
    color: var(--slate-500);
    font-size: 0.92rem;
    line-height: 1.65;
    margin: 0;
}

.contact-form-intro {
    margin: 0.45rem 0 1rem;
    color: var(--slate-600);
    font-size: 0.95rem;
    line-height: 1.65;
}


.interest-form {
    width: min(560px, 100%);
    display: grid;
    gap: 1rem;
}

label {
    font-weight: 700;
    color: var(--slate-800);
    font-size: 0.88rem;
}

input,
textarea {
    width: 100%;
    border-radius: var(--radius-md);
    border: 1px solid var(--slate-300);
    padding: 0.85rem 1rem;
    font: inherit;
    font-size: 0.95rem;
    color: var(--slate-800);
    background: var(--white);
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

input:focus,
textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.12);
}

.va-interest-form__status.message {
    margin-top: 0.75rem;
    min-height: 1.5rem;
    font-weight: 700;
    font-size: 0.9rem;
}

.va-interest-form__status.message.success {
    color: var(--emerald);
}

.va-interest-form__status.message.error {
    color: #dc2626;
}

.va-interest-form__status.message.processing {
    color: var(--accent);
}


.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 4vw, 3.5rem);
    align-items: start;
}

.contact-divider {
    border: 0;
    border-top: 1px solid var(--slate-200);
    margin: 1.25rem 0;
}

.contact-list {
    padding-left: 0;
    list-style: none;
    color: var(--slate-600);
    display: grid;
    gap: 0.95rem;
}

.contact-list li {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: start;
    gap: 0.7rem;
}

.contact-list i {
    margin-top: 0.18rem;
    color: var(--slate-500);
}

.contact-item {
    display: grid;
    gap: 0.2rem;
    line-height: 1.45;
}

.contact-item__label {
    font-weight: 700;
    color: var(--slate-800);
}

.contact-list a {
    color: var(--slate-600);
    word-break: break-word;
}

.contact-list a:hover {
    color: var(--accent);
}


.strategy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.25rem;
}


.strategy-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(226, 232, 240, 0.7);
    border-radius: var(--radius-xl);
    padding: 1.75rem;
    position: relative;
    transition:
        transform 0.3s var(--ease-out),
        box-shadow 0.3s var(--ease-out);
    box-shadow:
        0 1px 3px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.strategy-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.strategy-card__number {
    font-family: "Plus Jakarta Sans", "Inter", sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--slate-200);
    line-height: 1;
    margin-bottom: 0.75rem;
}

.strategy-card h3 {
    margin-bottom: 0.5rem;
}

.strategy-card p {
    color: var(--slate-500);
    font-size: 0.92rem;
    line-height: 1.65;
}


.footer {
    background: var(--slate-900);
    padding: clamp(2.5rem, 4vw, 4rem) 0 1.5rem;
    color: var(--slate-400);
}

.footer__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer__brand {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--white);
    text-decoration: none;
    font-family: "Plus Jakarta Sans", "Inter", sans-serif;
    font-weight: 800;
    font-size: 0.95rem;
}

.footer__brand img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.footer small {
    font-size: 0.82rem;
    color: var(--slate-500);
}

.powered-by-link {
    color: inherit;
    font-weight: inherit;
    text-decoration: none;
}

.powered-by-link:hover,
.powered-by-link:focus {
    color: inherit;
    text-decoration: none;
}


.content-placeholder {
    margin-top: 1.5rem;
    padding: 1.25rem 1.5rem;
    border: 2px dashed var(--slate-300);
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, var(--slate-50), var(--white));
}

.content-placeholder h3 {
    margin: 0.15rem 0 0.65rem;
    font-size: clamp(1rem, 1.8vw, 1.3rem);
    color: var(--slate-700);
}

.content-placeholder ul {
    margin: 0;
    padding-left: 1.1rem;
    color: var(--slate-500);
    line-height: 1.8;
}

.content-placeholder .section__label {
    color: var(--slate-400);
}


.page-header h1 {
    font-size: clamp(1.5rem, 2.8vw, 2.25rem);
    margin-top: 0.25rem;
}


.lucide {
    width: 1em;
    height: 1em;
    stroke-width: 2;
}


.template-shell {
    margin: 0;
    min-height: 100vh;
    min-height: 100dvh;
    display: grid;
    place-items: center;
    padding: 1.2rem;
    font-family:
        "Inter",
        system-ui,
        -apple-system,
        sans-serif;
    background:
        radial-gradient(ellipse at 20% 30%, rgba(14, 165, 233, 0.06), transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(5, 150, 105, 0.05), transparent 50%), var(--slate-50);
    color: var(--slate-800);
}

.template-card {
    width: min(520px, 94vw);
    border-radius: var(--radius-xl);
    border: 1px solid var(--slate-200);
    background: var(--white);
    box-shadow: var(--shadow-xl);
    padding: clamp(1.5rem, 3vw, 2.5rem);
}

.template-link {
    color: var(--accent);
    font-weight: 700;
    text-decoration: none;
}

.template-link:hover,
.template-link:focus {
    text-decoration: underline;
}


.secure-access-container {
    max-width: 520px;
}

.secure-access-title {
    margin: 0 0 0.5rem;
    text-align: center;
    font-family: "Plus Jakarta Sans", "Inter", sans-serif;
    font-size: clamp(1.5rem, 3.5vw, 2rem);
    color: var(--slate-900);
    letter-spacing: -0.02em;
}

.secure-access-subtitle {
    margin: 0 0 1.5rem;
    text-align: center;
    color: var(--slate-500);
    font-size: 0.95rem;
}

.secure-access-label {
    display: block;
    margin-bottom: 0.4rem;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--slate-800);
}

.secure-access-input {
    width: 100%;
    box-sizing: border-box;
    padding: 0.85rem 1rem;
    border: 1px solid var(--slate-300);
    border-radius: var(--radius-md);
    font-size: 0.95rem;
    margin-bottom: 1rem;
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.secure-access-input:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.12);
}

.secure-access-button {
    width: 100%;
    border: none;
    border-radius: var(--radius-md);
    padding: 0.85rem;
    background: linear-gradient(135deg, var(--slate-900), var(--pmo-700));
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 800;
    cursor: pointer;
    transition:
        box-shadow 0.25s var(--ease-out),
        transform 0.25s var(--ease-out);
}

.secure-access-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(15, 43, 94, 0.25);
}

.secure-access-footnote {
    margin: 1.25rem 0 0;
    text-align: center;
    color: var(--slate-400);
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}


.confirmation-page {
    margin: 0;
}

.confirmation-page--success,
.confirmation-page--error {
    display: grid;
    place-items: center;
    min-height: 100vh;
    min-height: 100dvh;
    font-family:
        "Inter",
        system-ui,
        -apple-system,
        sans-serif;
    margin: 0;
}

.confirmation-page--success {
    background: #f0fdf4;
    color: #14532d;
}

.confirmation-page--error {
    background: #fef2f2;
    color: #450a0a;
}

.confirmation-page--success .container,
.confirmation-page--error .container {
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-xl);
    width: min(580px, 90vw);
    padding: 2.5rem;
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.confirmation-page--success h1,
.confirmation-page--error h1 {
    font-family: "Plus Jakarta Sans", "Inter", sans-serif;
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
}


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

.license-grid-cta {
    text-align: center;
    margin-top: 2.5rem;
}


.founder-section__prose {
    color: var(--slate-500);
    font-size: 1.05rem;
    line-height: 1.8;
}


@media (max-width: 1024px) {
    .license-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .founder-section {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .founder-section__portrait {
        max-width: 320px;
        margin: 0 auto;
    }

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

@media (max-width: 900px) {
    .license-grid {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .hero__stats {
        gap: 1rem;
    }

    .stats-bar {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

@media (max-width: 480px) {
    .hero {
        padding-top: 5rem;
    }

    .hero--compact {
        padding-top: 5rem;
    }

    .hero__stats {
        flex-direction: column;
        gap: 1rem;
    }

    .stats-bar {
        grid-template-columns: 1fr;
    }
}
