:root {
    --bg: #f6f8f9;
    --bg-soft: #eef6f5;
    --line: rgba(30, 138, 138, 0.16);
    --text: #0f172a;
    --muted: #475569;
    --muted-strong: #234154;
    --primary: #1e8a8a;
    --primary-strong: #28a8a8;
    --secondary: #86d2d2;
    --accent: #0f6f6f;
    --danger: #dc4f74;
    --shadow: 0 24px 70px rgba(15, 23, 42, 0.10);
    --radius-lg: 32px;
    --radius-md: 24px;
    --radius-sm: 18px;
    --container: 1240px;
}

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

html {
    scroll-behavior: smooth;
}

body.claris-body {
    min-height: 100vh;
    margin: 0;
    font-family: "Rubik", sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(30, 138, 138, 0.16), transparent 28%),
        radial-gradient(circle at 85% 18%, rgba(40, 168, 168, 0.12), transparent 24%),
        radial-gradient(circle at 50% 100%, rgba(134, 210, 210, 0.22), transparent 26%),
        linear-gradient(180deg, #f7fafb 0%, #f3f7f8 42%, #eef3f5 100%);
    overflow-x: hidden;
}

body.claris-body::before {
    content: "";
    position: fixed;
    inset: 0;
    background-image:
        linear-gradient(rgba(30, 138, 138, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(30, 138, 138, 0.05) 1px, transparent 1px);
    background-size: 70px 70px;
    mask-image: radial-gradient(circle at center, black 30%, transparent 82%);
    pointer-events: none;
    opacity: 0.45;
    z-index: -2;
}

.site-noise {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -1;
    opacity: 0.05;
    background-image:
        radial-gradient(circle at 20% 20%, rgba(30, 138, 138, 0.14) 0, transparent 18%),
        radial-gradient(circle at 70% 0%, rgba(40, 168, 168, 0.12) 0, transparent 18%),
        radial-gradient(circle at 80% 60%, rgba(15, 111, 111, 0.08) 0, transparent 20%);
}

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

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

.container {
    max-width: var(--container);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 18px 0 0;
}

.site-nav {
    margin: 0 16px;
    padding: 12px 0;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.84);
    backdrop-filter: blur(18px);
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.06);
    transition: transform 0.35s ease, border-color 0.35s ease, background 0.35s ease;
}

.site-nav.is-scrolled {
    transform: translateY(-4px);
    border-color: rgba(30, 138, 138, 0.2);
    background: rgba(255, 255, 255, 0.94);
}

.brand-lockup img,
.footer-logo {
    width: 158px;
}

.nav-link {
    position: relative;
    padding: 0.8rem 1rem !important;
    color: var(--muted-strong);
    font-size: 0.96rem;
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 1rem;
    right: 1rem;
    bottom: 8px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    transform: scaleX(0);
    transition: transform 0.35s ease;
}

.nav-link:hover,
.nav-link:focus-visible {
    color: var(--text);
}

.nav-link:hover::after,
.nav-link:focus-visible::after {
    transform: scaleX(1);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 52px;
    height: 52px;
    border: 1px solid rgba(15, 23, 42, 0.1);
    border-radius: 50%;
    box-shadow: none;
}

.nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 0 auto;
    background: var(--text);
    border-radius: 999px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 999px;
    font-weight: 500;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.btn:hover,
.btn:focus-visible {
    transform: translateY(-2px);
}

.btn-primary-glow {
    border: 1px solid rgba(30, 138, 138, 0.34);
    color: #ffffff;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    box-shadow: 0 18px 40px rgba(15, 111, 111, 0.20);
}

.btn-primary-glow:hover,
.btn-primary-glow:focus-visible {
    color: #ffffff;
    box-shadow: 0 24px 44px rgba(15, 111, 111, 0.26);
}

.btn-ghost {
    border: 1px solid rgba(15, 23, 42, 0.12);
    color: var(--text);
    background: rgba(255, 255, 255, 0.7);
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
    border-color: rgba(30, 138, 138, 0.28);
    color: var(--text);
    background: rgba(255, 255, 255, 0.95);
}

.btn-lg {
    min-height: 58px;
    padding: 0 28px;
}

.hero-section {
    position: relative;
    padding: 108px 0 70px;
    overflow: hidden;
}

.hero-people{
    background-image: url("../images/landing/all_rights_reserved_1.png");
    background-size: cover;
    width: 400px;
    height: 500px;
}
.conversion-hero {
    padding-top: 112px;
    min-height: 88vh;
}

.particles-layer {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0.9;
}

.hero-orb {
    position: absolute;
    width: 34rem;
    height: 34rem;
    border-radius: 50%;
    filter: blur(28px);
    opacity: 0.13;
    animation: floatOrb 11s ease-in-out infinite;
}

.orb-left {
    top: -10rem;
    left: -9rem;
    background: radial-gradient(circle, rgba(30, 138, 138, 0.75), transparent 62%);
}

.orb-right {
    right: -8rem;
    top: 8rem;
    background: radial-gradient(circle, rgba(40, 168, 168, 0.62), transparent 62%);
    animation-delay: -3s;
}

.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: "Outfit", sans-serif;
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--primary);
}

.section-kicker::before {
    content: "";
    width: 34px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.display-title,
.section-title {
    font-family: "Outfit", sans-serif;
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin: 18px 0 18px;
}

.display-title {
    font-size: clamp(2.7rem, 6vw, 5.4rem);
    max-width: 13ch;
}

.display-title span,
.section-title span {
    color: var(--primary-strong);
}

.lead-copy,
.section-copy {
    max-width: 62ch;
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--muted);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin: 32px 0 34px;
}

.hero-metrics {
    display: grid;
    gap: 14px;
}

.metric-chip {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 14px;
    align-items: center;
    padding: 15px 18px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(15, 23, 42, 0.07);
    background: rgba(255, 255, 255, 0.76);
    backdrop-filter: blur(16px);
}

.metric-chip strong {
    min-width: 52px;
    font-family: "Outfit", sans-serif;
    font-size: 2rem;
    line-height: 1;
    color: var(--primary-strong);
}

.metric-chip span {
    color: var(--muted-strong);
    line-height: 1.6;
}

.glass-card,
.hero-stage,
.media-frame,
.cta-banner,
.footer-shell,
.proof-chip,
.info-pill {
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(248, 251, 251, 0.88));
    box-shadow: var(--shadow);
    backdrop-filter: blur(20px);
}

.hero-stage {
    position: relative;
    min-height: 620px;
    padding: 40px;
    overflow: hidden;
    border-radius: 40px;
}

.hero-grid {
    position: absolute;
    inset: 20px;
    border-radius: 28px;
    border: 1px solid rgba(30, 138, 138, 0.08);
    background-image:
        linear-gradient(rgba(30, 138, 138, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(30, 138, 138, 0.04) 1px, transparent 1px);
    background-size: 36px 36px;
    mask-image: radial-gradient(circle at center, black 46%, transparent 94%);
}

.hero-dashboard,
.dashboard-panel {
    position: relative;
    overflow: hidden;
    border-radius: 26px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: rgba(255, 255, 255, 0.9);
}

.dashboard-main {
    width: 100%;
    max-width: 470px;
    margin-left: auto;
    margin-top: 48px;
}

.dashboard-main img,
.dashboard-panel img {
    width: 100%;
    object-fit: cover;
}

.dashboard-topline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 18px;
    padding: 9px 14px;
    border-radius: 999px;
    color: var(--muted-strong);
    background: rgba(30, 138, 138, 0.08);
    font-size: 0.92rem;
}

.status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 0 8px rgba(30, 138, 138, 0.10);
}

.floating-panel {
    position: absolute;
    max-width: 290px;
    padding: 18px 20px;
    border-radius: 22px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: rgba(255, 255, 255, 0.86);
    backdrop-filter: blur(20px);
}

.floating-panel-top {
    top: 74px;
    left: 16px;
    animation: drift 6s ease-in-out infinite;
}

.floating-panel-bottom {
    right: 18px;
    bottom: 26px;
    animation: drift 8s ease-in-out infinite reverse;
}

.floating-label,
.mini-label,
.story-tag {
    display: inline-flex;
    margin-bottom: 10px;
    color: var(--primary-strong);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.floating-panel strong,
.mini-card strong,
.proof-chip strong {
    display: block;
    margin-bottom: 8px;
    font-size: 1.02rem;
    line-height: 1.4;
}

.floating-panel small,
.mini-card small,
.story-card p,
.feature-card p,
.flow-card p,
.result-card p,
.cta-banner p,
.footer-shell p,
.proof-chip span {
    color: var(--muted);
    line-height: 1.7;
}

.floating-pulse {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(30, 138, 138, 0.22);
}

.pulse-a {
    right: 12%;
    top: 16%;
    width: 120px;
    height: 120px;
    animation: pulseRing 3.4s linear infinite;
}

.pulse-b {
    left: 16%;
    bottom: 20%;
    width: 180px;
    height: 180px;
    animation: pulseRing 4.1s linear infinite;
    animation-delay: 1s;
}

.logo-marquee {
    margin-top: 56px;
    padding: 18px 0;
    overflow: hidden;
    border-top: 1px solid rgba(15, 23, 42, 0.08);
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.marquee-track {
    display: flex;
    align-items: center;
    gap: 54px;
    width: max-content;
    animation: marquee 26s linear infinite;
}

.marquee-track img {
    width: 72px;
    opacity: 0.6;
    filter: grayscale(1) brightness(0.85);
}

.section-shell {
    position: relative;
    padding: 72px 0;
}

.section-head {
    margin-bottom: 34px;
}

.section-title {
    max-width: 18ch;
    font-size: clamp(2rem, 4vw, 3.6rem);
}

.feature-card,
.result-card,
.flow-card,
.story-card,
.form-panel,
.mini-card,
.proof-chip,
.info-pill {
    position: relative;
    height: 100%;
    padding: 28px;
    border-radius: var(--radius-lg);
}

.feature-card h3,
.result-card h3,
.flow-card h3,
.story-card h3,
.form-panel h3,
.cta-banner h2 {
    font-family: "Outfit", sans-serif;
    margin: 0 0 12px;
}

.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    margin-bottom: 22px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(30, 138, 138, 0.16), rgba(134, 210, 210, 0.26));
    color: var(--primary);
    font-size: 1.8rem;
}

.experience-stack {
    display: grid;
    gap: 18px;
}

.media-frame {
    position: relative;
    overflow: hidden;
    border-radius: 38px;
}



.frame-overlay {
    position: absolute;
    left: 26px;
    right: 26px;
    bottom: 26px;
    padding: 18px 20px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid rgba(15, 23, 42, 0.08);
    backdrop-filter: blur(20px);
}

.frame-overlay span {
    display: inline-flex;
    margin-bottom: 8px;
    color: var(--primary-strong);
    font-size: 0.84rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.frame-overlay strong {
    font-family: "Outfit", sans-serif;
    font-size: 1.15rem;
}

.flow-list {
    display: grid;
    gap: 16px;
    margin-top: 20px;
}

.flow-card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 18px;
    align-items: start;
}

.flow-index {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    border-radius: 18px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    font-family: "Outfit", sans-serif;
    font-weight: 700;
}

.result-card {
    min-height: 300px;
}

.result-number {
    display: inline-flex;
    font-family: "Outfit", sans-serif;
    font-size: clamp(3.2rem, 5vw, 4.6rem);
    line-height: 1;
    color: var(--primary-strong);
}

.result-suffix {
    display: inline-flex;
    margin-left: 4px;
    font-family: "Outfit", sans-serif;
    font-size: 2rem;
    color: var(--accent);
}

.pricing-grid {
    margin-top: 8px;
}

.plan-card {
    position: relative;
    height: 100%;
    padding: 30px;
    border-radius: var(--radius-lg);
}

.plan-card.is-featured {
    border-color: rgba(30, 138, 138, 0.28);
    box-shadow: 0 24px 70px rgba(15, 111, 111, 0.14);
}

.plan-price {
    margin: 8px 0 12px;
    font-family: "Outfit", sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
}

.plan-list {
    margin: 18px 0 24px;
    padding-left: 1.1rem;
    color: var(--muted);
}

.plan-list li {
    margin-bottom: 10px;
}

.story-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    margin-top: 28px;
}

.story-card {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 24px;
    align-items: center;
}

.story-card img {
    width: 100%;
    height: 100%;
    min-height: 220px;
    object-fit: cover;
    border-radius: 22px;
}

.sticky-panel {
    position: sticky;
    top: 124px;
}

.contact-info-grid {
    display: grid;
    gap: 14px;
    margin-top: 24px;
}

.info-pill {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 22px;
    border-radius: 20px;
}

.info-pill i {
    color: var(--primary-strong);
    font-size: 1.5rem;
}

.form-panel::after,
.hero-stage::after,
.feature-card::after,
.result-card::after,
.flow-card::after,
.story-card::after,
.cta-banner::after {
    content: "";
    position: absolute;
    inset: 1px;
    border-radius: inherit;
    border: 1px solid rgba(15, 23, 42, 0.04);
    pointer-events: none;
}

.form-panel-head {
    margin-bottom: 24px;
}

.form-panel-head h3 {
    font-size: clamp(1.8rem, 3vw, 2.3rem);
}

.field-label {
    display: inline-flex;
    margin-bottom: 10px;
    color: var(--muted-strong);
    font-size: 0.92rem;
}

.futuristic-input {
    min-height: 58px;
    border: 1px solid rgba(15, 23, 42, 0.1);
    border-radius: 18px;
    color: var(--text);
    background: rgba(255, 255, 255, 0.78);
    box-shadow: none;
}

.futuristic-input:focus {
    color: var(--text);
    border-color: rgba(30, 138, 138, 0.36);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 0 0 4px rgba(30, 138, 138, 0.10);
}

.futuristic-input::placeholder {
    color: rgba(71, 85, 105, 0.55);
}

.futuristic-input option {
    color: #0f172a;
}

.futuristic-textarea {
    min-height: 146px;
    resize: vertical;
    padding-top: 16px;
}

.form-footer,
.step-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 24px;
}

.consent-check {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--muted);
    line-height: 1.6;
}

.consent-check input {
    margin-top: 0.3rem;
}

.form-feedback {
    min-height: 32px;
    margin-top: 18px;
    color: var(--primary-strong);
    font-size: 0.96rem;
}

.form-feedback.is-success {
    color: #8af9da;
}

.form-feedback.is-error {
    color: #ff9ac4;
}

.cta-banner {
    display: grid;
    grid-template-columns: 1.7fr auto;
    gap: 24px;
    align-items: center;
    padding: 34px;
    border-radius: 34px;
}

.site-footer {
    padding: 0 0 40px;
}

.footer-shell {
    display: grid;
    grid-template-columns: 1.6fr auto;
    gap: 24px;
    align-items: center;
    padding: 28px 30px;
    border-radius: 30px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 18px 22px;
    color: var(--muted-strong);
}

.footer-links a:hover,
.footer-links a:focus-visible {
    color: var(--primary-strong);
}

.mini-proof-strip {
    display: grid;
    gap: 14px;
    margin-top: 26px;
}

.proof-chip {
    border-radius: 22px;
}

.tall-panel {
    max-width: 460px;
    margin-left: auto;
}

.stepper-meta {
    margin-bottom: 24px;
}

.progress-track {
    position: relative;
    width: 100%;
    height: 8px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    overflow: hidden;
}

.progress-bar {
    position: absolute;
    inset: 0 auto 0 0;
    width: 33.333%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transition: width 0.35s ease;
}

.step-indicator {
    display: flex;
    justify-content: flex-end;
    margin-top: 10px;
    color: var(--muted-strong);
    font-size: 0.92rem;
}

.form-step {
    display: none;
}

.form-step.is-active {
    display: block;
    animation: revealUp 0.45s ease;
}

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.in-view {
    opacity: 1;
    transform: translateY(0);
}

[data-tilt] {
    transform-style: preserve-3d;
    will-change: transform;
}

@keyframes pulseRing {
    0% {
        transform: scale(0.7);
        opacity: 0.7;
    }
    70% {
        transform: scale(1.1);
        opacity: 0;
    }
    100% {
        transform: scale(1.18);
        opacity: 0;
    }
}

@keyframes floatOrb {
    0%,
    100% {
        transform: translate3d(0, 0, 0);
    }
    50% {
        transform: translate3d(0, 28px, 0);
    }
}

@keyframes drift {
    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-10px) rotate(0.8deg);
    }
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

@keyframes revealUp {
    from {
        opacity: 0;
        transform: translateY(16px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1199px) {
    .display-title {
        max-width: 100%;
    }

    .hero-stage {
        min-height: 540px;
        padding: 28px;
    }

    .floating-panel {
        max-width: 250px;
    }

    .story-card {
        grid-template-columns: 1fr;
    }

    .story-card img {
        min-height: 260px;
    }
}

@media (max-width: 991px) {
    .site-nav {
        border-radius: 28px;
    }

    .navbar-collapse {
        margin-top: 18px;
        padding-top: 12px;
        border-top: 1px solid rgba(15, 23, 42, 0.08);
    }

    .nav-actions {
        margin-top: 18px;
        flex-wrap: wrap;
    }

    .hero-section {
        padding-top: 84px;
    }

    .hero-stage {
        min-height: 500px;
    }

    .sticky-panel {
        position: static;
    }

    .cta-banner,
    .footer-shell,
    .story-grid {
        grid-template-columns: 1fr;
    }

    .footer-links {
        justify-content: flex-start;
    }
}

@media (max-width: 767px) {
    .site-header {
        padding-top: 12px;
    }

    .site-nav {
        margin: 0 10px;
        padding: 10px 0;
    }

    .hero-section,
    .section-shell {
        padding: 56px 0;
    }

    .display-title {
        font-size: clamp(2.3rem, 11vw, 3.4rem);
    }

    .hero-actions,
    .form-footer,
    .step-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-stage {
        min-height: 460px;
        padding: 18px;
        border-radius: 30px;
    }

    .dashboard-main,
    .tall-panel {
        max-width: 100%;
        margin-top: 88px;
    }

    .floating-panel {
        position: relative;
        inset: auto;
        max-width: none;
        margin-top: 14px;
    }

    .media-frame video {
        min-height: 360px;
    }

    .feature-card,
    .result-card,
    .flow-card,
    .story-card,
    .form-panel,
    .cta-banner,
    .footer-shell {
        padding: 22px;
        border-radius: 24px;
    }
}

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

    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}
