/* Converted from SsnitChatbot.vue (chat UI styles omitted). */
body {
    margin: 0;
}

a.btn-fill,
a.btn-ghost {
    display: inline-block;
    text-align: center;
    text-decoration: none;
}

.ssnit-public {
    font-family: 'DM Sans', sans-serif;
    background: var(--cream);
    color: var(--dark);
    overflow-x: hidden;
    min-height: 100vh;
    scroll-behavior: smooth;
    position: relative;
    /* Must match .ssnit-header-bar outer height so no cream gap shows under fixed header */
    --ssnit-header-offset: 80px;
    --orange: #e8621a;
    --orange-dark: #c4511a;
    --orange-headline: #c55621;
    --orange-pale: #fef3ec;
    --cream: #fcfaf7;
    --dark: #1a1108;
    --mid: #6b5a4f;
    --light: #f5ede4;
    --peach: #f5e6d8;
    --border: rgba(232, 98, 26, 0.15);
    --brand-vivid: #f16e22;
}

.page-layer {
    position: relative;
    z-index: 1;
}

.ambient-bg {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.ambient-bg-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.45s ease-in-out;
    z-index: 0;
}

.ambient-bg-slide.is-visible {
    opacity: 1;
    z-index: 1;
}

.ambient-bg-img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

@media (prefers-reduced-motion: no-preference) {
    .ambient-bg-slide.is-visible .ambient-bg-img {
        animation: ambientKenburns 26s ease-in-out infinite alternate;
    }
}

@keyframes ambientKenburns {
    0% {
        transform: scale(1.05) translate(0, 0);
    }
    100% {
        transform: scale(1.1) translate(-0.6%, 0.35%);
    }
}

.ambient-bg-scrim {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(
        105deg,
        rgba(252, 250, 247, 0.78) 0%,
        rgba(252, 250, 247, 0.52) 28%,
        rgba(252, 250, 247, 0.22) 52%,
        rgba(26, 17, 8, 0.06) 100%
    );
}

.ambient-bg-brand-glow {
    position: absolute;
    inset: 0;
    z-index: 3;
    background: radial-gradient(
        ellipse 90% 60% at 72% 32%,
        rgba(241, 110, 34, 0.09) 0%,
        transparent 58%
    );
    mix-blend-mode: soft-light;
    opacity: 0.85;
}

.ambient-bg-vignette {
    position: absolute;
    inset: 0;
    z-index: 4;
    box-shadow: inset 0 0 120px rgba(0, 0, 0, 0.12);
    opacity: 0.5;
}

@media (prefers-reduced-motion: reduce) {
    .ambient-bg-slide {
        transition: none;
    }
    .ambient-bg-slide.is-visible .ambient-bg-img {
        animation: none !important;
    }
}

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

/* Full-width orange top bar */
.ssnit-header-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    box-sizing: border-box;
    height: var(--ssnit-header-offset);
    min-height: var(--ssnit-header-offset);
    padding: 0 44px;
    background: var(--orange);
    border-radius: 14px 14px 16px 16px;
    box-shadow:
        0 1px 0 rgba(0, 0, 0, 0.08),
        0 4px 20px rgba(26, 17, 8, 0.12);
}

.ssnit-header-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #fff;
    min-width: 0;
}

.ssnit-header-seal {
    position: relative;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    overflow: hidden;
    background: #fff;
    border: 2px solid rgba(255, 255, 255, 0.85);
    flex-shrink: 0;
    box-sizing: border-box;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

.ssnit-header-brand-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    line-height: 1.15;
    min-width: 0;
}

.ssnit-header-title {
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.02em;
}

.ssnit-header-sub {
    font-size: 11px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.92);
    letter-spacing: 0.15px;
    max-width: min(280px, 46vw);
}

.ssnit-header-contact {
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #fff;
    text-decoration: none;
    white-space: nowrap;
    padding: 8px 4px;
    transition: opacity 0.2s;
}

.ssnit-header-contact:hover {
    opacity: 0.88;
}

.logo-img-seal {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    pointer-events: none;
}

.hero {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding-top: var(--ssnit-header-offset);
    overflow: hidden;
}

/* Fills the band below the fixed header (same height as padding-top) so no cream gap shows */
.hero::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: var(--ssnit-header-offset);
    background: var(--orange);
    z-index: 0;
    pointer-events: none;
}

.hero > .hero-left,
.hero > .hero-right {
    position: relative;
    z-index: 1;
}
.hero-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 48px 80px 72px;
    background: linear-gradient(
        118deg,
        rgba(252, 250, 247, 0.82) 0%,
        rgba(252, 250, 247, 0.52) 55%,
        rgba(252, 250, 247, 0.12) 100%
    );
    backdrop-filter: blur(8px) saturate(1.08);
    -webkit-backdrop-filter: blur(8px) saturate(1.08);
    border-right: 1px solid rgba(255, 255, 255, 0.38);
}
.hero-bg-indicators {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 5;
    padding: 8px 14px;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.55);
    box-shadow: 0 8px 28px rgba(26, 17, 8, 0.08);
}
.hero-bg-dot {
    width: 8px;
    height: 8px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: rgba(26, 17, 8, 0.2);
    cursor: pointer;
    transition:
        transform 0.25s ease,
        background 0.25s ease,
        box-shadow 0.25s ease;
}
.hero-bg-dot:hover {
    background: rgba(232, 98, 26, 0.55);
    transform: scale(1.15);
}
.hero-bg-dot.active {
    background: var(--orange);
    box-shadow: 0 0 0 3px rgba(232, 98, 26, 0.28);
    transform: scale(1.2);
}
.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--orange-pale);
    border: 1px solid rgba(232, 98, 26, 0.25);
    color: var(--orange);
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 28px;
    width: fit-content;
}
.hero-eyebrow::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--orange);
    animation: blink 2s ease-in-out infinite;
}
@keyframes blink {
    0%,
    100% {
        opacity: 1;
    }
    50% {
        opacity: 0.3;
    }
}
.hero-title {
    font-family: 'Fraunces', serif;
    font-size: 58px;
    font-weight: 600;
    line-height: 1.08;
    margin-bottom: 24px;
    letter-spacing: -1.5px;
    text-shadow:
        0 2px 32px rgba(252, 250, 247, 0.95),
        0 1px 2px rgba(26, 17, 8, 0.04);
}
.hero-title-accent {
    color: var(--orange-headline);
    font-weight: 600;
}
.hero-title-dark {
    color: var(--dark);
    font-weight: 600;
}
.hero-desc {
    font-size: 16px;
    color: var(--mid);
    line-height: 1.75;
    max-width: 420px;
    margin-bottom: 40px;
}
.hero-actions {
    display: flex;
    gap: 14px;
    align-items: center;
    flex-wrap: wrap;
}
.btn-fill {
    background: var(--orange);
    color: #fff;
    border: none;
    padding: 14px 30px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 500;
    font-family: 'DM Sans', sans-serif;
    cursor: pointer;
    transition:
        background 0.2s,
        transform 0.1s;
}
.btn-fill:hover {
    background: var(--orange-dark);
    transform: translateY(-1px);
}
.btn-ghost {
    background: transparent;
    color: var(--dark);
    border: 1.5px solid rgba(26, 17, 8, 0.2);
    padding: 13px 28px;
    border-radius: 100px;
    font-size: 14px;
    font-family: 'DM Sans', sans-serif;
    cursor: pointer;
    transition:
        border-color 0.2s,
        color 0.2s,
        transform 0.1s;
}
.btn-ghost:hover {
    border-color: var(--orange);
    color: var(--orange);
    transform: translateY(-1px);
}
.hero-right {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(
        200deg,
        rgba(255, 255, 255, 0.1) 0%,
        rgba(252, 250, 247, 0.22) 45%,
        rgba(241, 110, 34, 0.05) 100%
    );
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    overflow: hidden;
}
.hero-right::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(232, 98, 26, 0.04);
}
.hero-right::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -40px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
}
.hero-illustration {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    padding: 40px;
}
.hero-logo-display {
    position: relative;
    width: 188px;
    height: 188px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    border: 5px solid var(--orange);
    box-shadow:
        0 24px 56px rgba(232, 98, 26, 0.22),
        0 0 0 1px rgba(255, 255, 255, 0.8) inset;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
    animation: float 4s ease-in-out infinite;
    box-sizing: border-box;
}
@keyframes float {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-12px);
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-logo-display {
        animation: none;
    }
}

.hero-cards {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 280px;
}
.hero-card {
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(232, 98, 26, 0.12);
    border-radius: 14px;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 4px 20px rgba(26, 17, 8, 0.06);
}
.hero-card-icon {
    width: 38px;
    height: 38px;
    background: var(--orange-pale);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.hero-card-text strong {
    display: block;
    font-weight: 500;
    font-size: 13px;
    color: var(--dark);
}
.hero-card-text span {
    color: var(--mid);
    font-size: 11px;
}

footer {
    position: relative;
    z-index: 2;
    background: var(--dark);
    padding: 48px 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.footer-copy {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.35);
}
.footer-links {
    display: flex;
    gap: 24px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.footer-links a {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
}
.footer-links a:hover {
    color: var(--orange);
}


@media (max-width: 768px) {
    .ssnit-public {
        --ssnit-header-offset: 68px;
    }
    .ssnit-header-bar {
        padding: 0 18px;
        border-radius: 12px 12px 14px 14px;
    }
    .ssnit-header-seal {
        width: 38px;
        height: 38px;
    }
    .ssnit-header-title {
        font-size: 15px;
    }
    .ssnit-header-sub {
        font-size: 10px;
        max-width: 200px;
    }
    .hero {
        grid-template-columns: 1fr;
    }
    .hero-right {
        display: none;
    }
    .hero-left {
        padding: 60px 24px 72px;
        border-right: none;
    }
    .hero-bg-indicators {
        bottom: 16px;
        padding: 6px 12px;
    }
    .hero-title {
        font-size: 38px;
    }
    footer {
        flex-direction: column;
        gap: 16px;
        text-align: center;
        padding: 36px 24px;
    }
}