:root {
    --color-bg: #050507;
    --color-bg-alt: #0b0b10;
    --color-accent: #ff7a24;
    --color-accent-soft: #ffb067;
    --color-accent-deep: #ff4b1f;
    --color-text: #f8f5f2;
    --color-muted: #b5b0a8;
    --color-border: rgba(255, 255, 255, 0.08);
    --shadow-soft: 0 18px 60px rgba(0, 0, 0, 0.75);
    --radius-lg: 18px;
    --radius-pill: 999px;
    --transition-fast: 0.22s ease-out;
    --transition-med: 0.35s ease-out;
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: radial-gradient(circle at top left, #1b1410 0, #050507 48%, #000000 100%);
    color: var(--color-text);
    -webkit-font-smoothing: antialiased;
    position: relative;
}

body::before {
    content: "";
    position: fixed;
    inset: -40%;
    background:
        radial-gradient(circle at 0% 0%, rgba(255, 122, 36, 0.12), transparent 55%),
        radial-gradient(circle at 100% 100%, rgba(255, 176, 103, 0.14), transparent 55%),
        radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.05), transparent 60%);
    opacity: 0.55;
    mix-blend-mode: soft-light;
    pointer-events: none;
    z-index: -1;
    animation: orbitGlow 26s ease-in-out infinite alternate;
}

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

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

button {
    font-family: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
}

.scroll-progress {
    position: fixed;
    inset: 0 0 auto 0;
    height: 3px;
    z-index: 60;
    pointer-events: none;
}

.scroll-progress-bar {
    width: 100%;
    height: 100%;
    transform-origin: left;
    transform: scaleX(0);
    background: linear-gradient(90deg, var(--color-accent-deep), var(--color-accent), var(--color-accent-soft));
    box-shadow: 0 0 14px rgba(255, 122, 36, 0.8);
    opacity: 0;
    transition: opacity 0.25s ease-out;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 5vw;
    background: linear-gradient(to bottom, rgba(5, 5, 7, 0.98), rgba(5, 5, 7, 0.7));
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: background var(--transition-med), box-shadow var(--transition-med), transform 0.2s ease-out;
}

.site-header.nav-scrolled .navbar {
    background: rgba(5, 5, 7, 0.98);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.85);
    transform: translateY(0);
}

.nav-left,
.nav-center,
.nav-right {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-size: 0.78rem;
}

.brand-mark {
    width: 26px;
    height: 26px;
    border-radius: 32% 68% 45% 55%;
    background: conic-gradient(from 210deg, #ffb067, #ff4b1f, #ff7a24, #ffb067);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #050507;
    font-weight: 800;
    font-size: 0.9rem;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12), 0 0 24px rgba(255, 122, 36, 0.8);
    animation: floatPulse 3.8s ease-in-out infinite alternate;
}

.brand-text {
    color: var(--color-text);
}

.nav-center {
    gap: 1.5rem;
}

.nav-link {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-muted);
    position: relative;
    padding: 0.25rem 0;
    transition: color var(--transition-fast);
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.2rem;
    width: 0;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--color-accent), var(--color-accent-soft));
    transition: width var(--transition-fast);
}

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

.nav-link:hover::after {
    width: 100%;
}

.nav-link-highlight {
    color: var(--color-accent-soft);
}

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

.nav-link-active::after {
    width: 100%;
}

.nav-right {
    gap: 0.75rem;
}

.pill-tag {
    border-radius: var(--radius-pill);
    padding: 0.35rem 0.9rem;
    font-size: 0.7rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    background: rgba(255, 122, 36, 0.14);
    border: 1px solid rgba(255, 122, 36, 0.5);
    color: var(--color-accent-soft);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 0.2rem;
    background: none;
    border: none;
    padding: 0.25rem;
    cursor: pointer;
}

.nav-toggle span {
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: var(--color-text);
    transition: transform var(--transition-fast), opacity var(--transition-fast);
}

.navbar.open .nav-toggle span:nth-child(1) {
    transform: translateY(3px) rotate(45deg);
}

.navbar.open .nav-toggle span:nth-child(2) {
    transform: translateY(-3px) rotate(-45deg);
}

/* Hero */

.hero-section {
    position: relative;
    min-height: 90vh;
    padding: 5.25rem 5vw 5rem;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: -20%;
    background:
        radial-gradient(circle at 10% 0%, rgba(255, 176, 103, 0.32) 0%, transparent 45%),
        radial-gradient(circle at 80% 10%, rgba(255, 75, 31, 0.22) 0%, transparent 46%),
        radial-gradient(circle at 100% 100%, rgba(255, 122, 36, 0.28) 0%, transparent 48%),
        radial-gradient(ellipse at 40% 40%, rgba(255, 255, 255, 0.04) 0%, transparent 55%);
    opacity: 0.95;
    z-index: -2;
}

.hero-bg::before {
    content: "";
    position: absolute;
    top: 12%;
    right: 10%;
    width: 420px;
    height: 420px;
    background:
        radial-gradient(circle at 20% 0%, rgba(255, 244, 230, 0.8) 0, transparent 58%),
        conic-gradient(from 160deg, rgba(255, 176, 103, 0.9), rgba(255, 75, 31, 0.9), rgba(255, 122, 36, 0.7), rgba(255, 176, 103, 0.9));
    filter: blur(16px);
    mix-blend-mode: screen;
    opacity: 0.52;
    border-radius: 56% 44% 70% 30% / 46% 76% 24% 54%;
    animation: heroGlow 22s ease-in-out infinite alternate;
}

.hero-inner {
    max-width: 1120px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.7fr) minmax(0, 1.1fr);
    gap: 3.5rem;
    align-items: center;
}

.hero-copy {
    max-width: 640px;
}

.eyebrow {
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-size: 0.7rem;
    color: var(--color-accent-soft);
    margin-bottom: 0.9rem;
}

.hero-title {
    font-size: clamp(2.4rem, 3vw + 1.6rem, 3.4rem);
    line-height: 1.1;
    margin: 0 0 0.75rem;
}

.hero-title span {
    display: block;
}

.hero-title span:nth-child(1),
.hero-title span:nth-child(3) {
    font-weight: 700;
}

.hero-title span:nth-child(2) {
    background: linear-gradient(90deg, #ffffff, #ffe0c4, #ffb067);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-subtitle {
    font-size: 1.05rem;
    margin: 0 0 0.9rem;
    color: var(--color-accent-soft);
}

.hero-text {
    font-size: 0.98rem;
    color: var(--color-muted);
    max-width: 34rem;
    margin-bottom: 1.6rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.9rem;
    margin-bottom: 0.9rem;
}

.hero-note {
    font-size: 0.8rem;
    color: var(--color-muted);
}

.hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-top: 0.9rem;
}

.hero-tag {
    font-size: 0.78rem;
    padding: 0.28rem 0.7rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(8, 8, 10, 0.8);
    color: var(--color-muted);
}

.hero-panel {
    display: flex;
    justify-content: flex-end;
}

.hero-card {
    width: 100%;
    max-width: 360px;
    padding: 1.4rem 1.5rem 1.3rem;
    position: relative;
    overflow: hidden;
    animation: floatCard 14s ease-in-out infinite alternate;
}

.hero-card-label {
    font-size: 0.8rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--color-accent-soft);
    margin-bottom: 0.7rem;
}

.hero-metrics {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
}

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

.metric-label {
    font-size: 0.8rem;
    color: var(--color-muted);
}

.metric-value {
    font-weight: 700;
    font-size: 1.1rem;
}

.metric-pill {
    padding: 0.25rem 0.7rem;
    border-radius: var(--radius-pill);
    background: rgba(6, 184, 133, 0.14);
    border: 1px solid rgba(15, 210, 156, 0.4);
    color: #a9f9df;
    font-size: 0.78rem;
}

.hero-footnote {
    font-size: 0.76rem;
    color: var(--color-muted);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 0.7rem;
}

/* Generic sections */

.section {
    padding: 4.5rem 5vw 4.2rem;
}

.section-header {
    max-width: 720px;
    margin: 0 auto 2.5rem;
    text-align: center;
}

.section-header h2 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.section-header p {
    margin: 0;
    color: var(--color-muted);
    font-size: 0.98rem;
}

.section-problem {
    background: radial-gradient(circle at top, rgba(255, 122, 36, 0.08), transparent 55%);
}

.problem-metrics {
    max-width: 1120px;
    margin: 0 auto 1.8rem;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.problem-chip {
    border-radius: var(--radius-lg);
    padding: 0.9rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: radial-gradient(circle at 0 0, rgba(255, 122, 36, 0.22), rgba(7, 7, 11, 0.96));
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.85);
}

.chip-label {
    display: block;
    font-size: 0.74rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--color-accent-soft);
    margin-bottom: 0.2rem;
}

.chip-value {
    font-size: 0.88rem;
    color: var(--color-muted);
}

.problem-grid {
    max-width: 1120px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.6fr) minmax(0, 1.1fr);
    gap: 2.5rem;
    align-items: flex-start;
}

.problem-copy p {
    color: var(--color-muted);
    font-size: 0.96rem;
}

.problem-copy p + p {
    margin-top: 0.9rem;
}

.problem-copy h3 {
    font-size: 1.02rem;
    margin-top: 1.4rem;
}

.problem-list {
    margin: 0.6rem 0 0;
    padding-left: 1.2rem;
    color: var(--color-muted);
    font-size: 0.95rem;
}

.problem-list li {
    margin-bottom: 0.4rem;
}
 
.problem-accent {
    padding: 1.6rem 1.7rem 1.4rem;
}

.problem-accent-header {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 0.9rem;
}

.accent-pill {
    font-size: 0.76rem;
    padding: 0.2rem 0.6rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    background: rgba(5, 5, 8, 0.9);
    color: var(--color-muted);
}

.accent-pill-soft {
    border-color: rgba(255, 122, 36, 0.7);
    background: rgba(255, 122, 36, 0.16);
    color: var(--color-accent-soft);
}

.problem-accent h3 {
    margin-top: 0;
    font-size: 1.08rem;
}

.problem-accent p {
    font-size: 0.95rem;
    color: var(--color-muted);
}

.accent-highlight {
    margin-top: 0.9rem;
    color: var(--color-text);
}

.section-staff {
    background: radial-gradient(circle at 10% 10%, rgba(255, 122, 36, 0.18), transparent 55%);
}

.section-managers {
    background: radial-gradient(circle at 90% 10%, rgba(255, 122, 36, 0.18), transparent 55%);
}

.card-grid {
    max-width: 1120px;
    margin: 0 auto;
    display: grid;
    gap: 1.6rem;
}

.staff-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.manager-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.info-card {
    padding: 1.3rem 1.4rem;
    font-size: 0.96rem;
    color: var(--color-muted);
    min-height: 120px;
}

.staff-layout {
    max-width: 1120px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.8fr);
    gap: 2rem;
    align-items: flex-start;
}

.staff-meta {
    padding: 1.4rem 1.5rem 1.3rem;
}

.staff-meta-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
    margin-bottom: 0.6rem;
}

.staff-pill {
    padding: 0.2rem 0.7rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 122, 36, 0.7);
    font-size: 0.76rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--color-accent-soft);
}

.staff-shift-label {
    font-size: 0.8rem;
    color: var(--color-muted);
}

.staff-meta-text {
    font-size: 0.9rem;
    color: var(--color-muted);
    margin: 0.4rem 0 0.8rem;
}

.staff-highlights {
    list-style: disc;
    padding-left: 1.2rem;
    margin: 0;
    font-size: 0.9rem;
    color: var(--color-muted);
}

.staff-highlights li {
    margin-bottom: 0.4rem;
}

.staff-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.staff-bubble {
    position: relative;
    padding: 0.9rem 1rem;
    border-radius: 16px;
    background: radial-gradient(circle at 0 0, rgba(255, 122, 36, 0.24), rgba(8, 8, 12, 0.96));
}

.staff-bubble::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 18px;
    width: 18px;
    height: 14px;
    background: radial-gradient(circle at 0 0, rgba(255, 122, 36, 0.24), rgba(8, 8, 12, 0.96));
    clip-path: polygon(0 0, 100% 0, 0 100%);
}

.staff-bubble p {
    margin: 0;
    font-size: 0.9rem;
}

.staff-role {
    display: inline-block;
    margin-top: 0.7rem;
    font-size: 0.78rem;
    color: var(--color-muted);
}

.manager-rail {
    max-width: 1120px;
    margin: 0 auto 1.6rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.rail-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--color-muted);
}

.rail-chips {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.rail-chip {
    font-size: 0.78rem;
    padding: 0.26rem 0.7rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(6, 6, 10, 0.96);
    color: var(--color-muted);
}

.rail-chip-active {
    border-color: rgba(255, 122, 36, 0.8);
    background: rgba(255, 122, 36, 0.16);
    color: var(--color-accent-soft);
}

.manager-card h3 {
    margin-top: 0;
    margin-bottom: 0.4rem;
    font-size: 0.98rem;
}

.manager-card p {
    margin: 0;
}

.section-solution {
    background: radial-gradient(circle at center, rgba(255, 122, 36, 0.08), transparent 60%);
}

.solution-layout {
    max-width: 1120px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.2fr);
    gap: 2.8rem;
    align-items: center;
}

.solution-copy p {
    color: var(--color-muted);
    font-size: 0.96rem;
}
 
.solution-copy p + p {
    margin-top: 0.8rem;
}

.solution-quote {
    position: relative;
    margin-top: 1.1rem;
    padding: 0.9rem 1rem 0.9rem 1.8rem;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(5, 5, 9, 0.94);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.8);
    font-size: 0.9rem;
    color: var(--color-muted);
}

.solution-quote-mark {
    position: absolute;
    left: 0.6rem;
    top: 0.3rem;
    font-size: 1.8rem;
    line-height: 1;
    color: var(--color-accent-soft);
}

.solution-benefits {
    display: flex;
    justify-content: flex-end;
}

.benefit-grid {
    list-style: none;
    margin: 0;
    padding: 1.4rem 1.5rem 1.4rem;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, rgba(10, 10, 12, 0.95), rgba(23, 12, 8, 0.94));
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(255, 255, 255, 0.06);
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 0.8rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.94rem;
    color: var(--color-muted);
}

.benefit-icon {
    width: 26px;
    height: 26px;
    border-radius: 40%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.88rem;
    background: radial-gradient(circle at 0 0, var(--color-accent-soft), var(--color-accent-deep));
    box-shadow: 0 0 18px rgba(255, 122, 36, 0.7);
}

.section-how {
    background: radial-gradient(circle at 20% 0%, rgba(255, 122, 36, 0.2), transparent 60%);
}

.how-layout {
    max-width: 1120px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.1fr);
    gap: 3rem;
    align-items: flex-start;
}

.steps-flow {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.4rem 1.2rem;
}

.step {
    position: relative;
    padding: 1.1rem 1.2rem 1rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: radial-gradient(circle at top, rgba(255, 122, 36, 0.12), rgba(10, 10, 14, 0.98));

    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.8);
}

.step h3 {
    margin: 0 0 0.4rem;
    font-size: 0.98rem;
}

.step p {
    margin: 0;
    font-size: 0.85rem;
    color: var(--color-muted);
}

.step-badge {
    position: absolute;
    top: -0.65rem;
    left: 1rem;
    width: 24px;
    height: 24px;
    border-radius: var(--radius-pill);
    background: linear-gradient(135deg, var(--color-accent-deep), var(--color-accent));
    box-shadow: 0 0 18px rgba(255, 122, 36, 0.8);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 600;
}

.how-stats {
    display: flex;
    flex-direction: column;
    gap: 1.3rem;
}

.stat-card {
    padding: 1.3rem 1.4rem 1.1rem;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
    background: linear-gradient(120deg, #ffffff, #ffd1a0, #ff7a24);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.stat-card p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--color-muted);
}

.stat-source {
    font-size: 0.78rem;
    color: var(--color-muted);
}

.how-journey {
    grid-column: 1 / -1;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 0.8rem;
    border-radius: 999px;
    background: rgba(4, 4, 8, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 1.4rem;
    width: max-content;
}

.journey-pill {
    font-size: 0.78rem;
    padding: 0.18rem 0.7rem;
    border-radius: 999px;
    background: rgba(9, 9, 14, 0.96);
    color: var(--color-muted);
}

.journey-pill-soft {
    background: rgba(255, 122, 36, 0.14);
    color: var(--color-accent-soft);
}

.journey-divider {
    width: 24px;
    height: 1px;
    background: linear-gradient(90deg, rgba(255, 122, 36, 0), rgba(255, 122, 36, 0.8), rgba(255, 122, 36, 0));
}

.steps-flow {
    position: relative;
}

.steps-flow::before {
    content: "";
    position: absolute;
    top: 4px;
    left: 18px;
    width: 2px;
    height: calc(100% - 8px);
    background: linear-gradient(to bottom, rgba(255, 122, 36, 0.5), rgba(255, 122, 36, 0));
    opacity: 0.6;
    pointer-events: none;
}

.section-early {
    background:
        radial-gradient(circle at 0 0, rgba(255, 122, 36, 0.35), transparent 65%),
        radial-gradient(circle at 100% 100%, rgba(255, 122, 36, 0.18), transparent 55%);
}

.early-layout {
    max-width: 1120px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.6fr) minmax(0, 1.1fr);
    gap: 2.5rem;
    align-items: flex-start;
}

.early-form-wrapper {
    padding: 1.7rem 1.8rem 1.6rem;
}

.early-intro {
    margin-top: 0;
    margin-bottom: 0.9rem;
    font-size: 0.96rem;
    color: var(--color-muted);
}

.early-benefits {
    list-style: disc;
    padding-left: 1.2rem;
    margin: 0 0 1.3rem;
    font-size: 0.92rem;
    color: var(--color-muted);
}

.early-form {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.form-row {
    display: flex;
    gap: 0.9rem;
    flex-wrap: wrap;
}

.form-field {
    flex: 1;
    min-width: min(220px, 100%);
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.form-field label {
    font-size: 0.8rem;
    color: var(--color-muted);
}

.form-field input,
.form-field textarea {
    padding: 0.6rem 0.75rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(6, 6, 10, 0.85);
    color: var(--color-text);
    font-size: 0.9rem;
    outline: none;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
    color: rgba(181, 176, 168, 0.6);
}

.form-field input:focus,
.form-field textarea:focus {
    border-color: var(--color-accent-soft);
    box-shadow: 0 0 0 1px rgba(255, 122, 36, 0.4);
    background: rgba(3, 3, 7, 0.98);
}

.form-disclaimer {
    margin: 0.1rem 0 0;
    font-size: 0.76rem;
    color: var(--color-muted);
}

.btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    padding: 0.75rem 1.4rem;
    border-radius: var(--radius-pill);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    outline: none;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast), background-position 0.35s ease-out, opacity 0.15s ease-out;
}

.btn-primary {
    background-image: linear-gradient(120deg, var(--color-accent-deep), var(--color-accent), var(--color-accent-soft));
    background-size: 200% 100%;
    color: #050507;
    box-shadow:
        0 0 0 1px rgba(255, 181, 119, 0.6),
        0 16px 40px rgba(255, 122, 36, 0.7);
}

.btn-primary:hover {
    transform: translateY(-1px) scale(1.02);
    box-shadow:
        0 0 0 1px rgba(255, 195, 140, 0.9),
        0 20px 54px rgba(255, 122, 36, 0.85);
    background-position: 100% 0;
}

.btn-primary:active {
    transform: translateY(0) scale(0.99);
    box-shadow:
        0 0 0 1px rgba(255, 195, 140, 0.9),
        0 10px 26px rgba(255, 122, 36, 0.7);
}

.btn-ghost {
    background: rgba(3, 3, 5, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: var(--color-text);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
}

.btn-ghost:hover {
    transform: translateY(-1px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.9);
    background: rgba(6, 6, 8, 0.9);
}

.btn-ghost:active {
    transform: translateY(0) scale(0.99);
}

.btn-full {
    width: 100%;
    margin-top: 0.4rem;
}

.early-aside {
    display: flex;
    justify-content: flex-end;
}

.qr-card {
    padding: 1.6rem 1.5rem 1.4rem;
    max-width: 360px;
}

.qr-label {
    font-size: 0.86rem;
    color: var(--color-muted);
    margin-bottom: 0.6rem;
}

.qr-placeholder {
    border-radius: 18px;
    background: radial-gradient(circle at top, rgba(255, 122, 36, 0.32), rgba(3, 3, 7, 0.98));
    padding: 0.7rem;
    box-shadow: var(--shadow-soft);
}

.qr-inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.25rem;
    background: #050507;
    padding: 0.8rem;
    border-radius: 12px;
}

.qr-block {
    width: 100%;
    padding-top: 100%;
    border-radius: 4px;
    background:
        linear-gradient(135deg, #ff7a24, #ffb067);
    opacity: 0.2;
}

.qr-block:nth-child(2),
.qr-block:nth-child(4),
.qr-block:nth-child(6),
.qr-block:nth-child(8) {
    opacity: 0.65;
}

.qr-caption {
    margin-top: 0.8rem;
    font-size: 0.86rem;
    color: var(--color-muted);
}

.early-badge-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-bottom: 0.8rem;
}

.early-badge {
    font-size: 0.78rem;
    padding: 0.18rem 0.7rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(8, 8, 12, 0.96);
    color: var(--color-muted);
}

.early-badge-soft {
    border-color: rgba(255, 122, 36, 0.8);
    background: rgba(255, 122, 36, 0.16);
    color: var(--color-accent-soft);
}

.early-steps {
    margin: 1rem 0 0;
    padding-left: 1.2rem;
    font-size: 0.88rem;
    color: var(--color-muted);
}

.early-steps li {
    margin-bottom: 0.3rem;
}

.early-steps span {
    color: var(--color-accent-soft);
    font-weight: 500;
    margin-right: 0.2rem;
}

.glass-card {
    border-radius: var(--radius-lg);
    background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.06), rgba(6, 6, 10, 0.94));
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(18px);
}

/* Reveal animations */

.reveal {
    opacity: 0;
    transform: translate3d(0, 26px, 0) scale(0.98);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.reveal.visible {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
}

.reveal-left {
    transform: translate3d(-32px, 8px, 0) scale(0.98);
}

.reveal-right {
    transform: translate3d(32px, 8px, 0) scale(0.98);
}

.reveal-up {
    transform: translate3d(0, 36px, 0) scale(0.98);
}

.reveal-left.visible,
.reveal-right.visible,
.reveal-up.visible {
    transform: translate3d(0, 0, 0) scale(1);
}

/* Hover effects for cards */

.glass-card,
.info-card,
.step {
    transition: transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast), background var(--transition-fast);
}

.glass-card:hover,
.info-card:hover,
.step:hover {
    transform: translateY(-4px);
    box-shadow:
        0 18px 44px rgba(0, 0, 0, 0.9),
        0 0 32px rgba(255, 122, 36, 0.2);
    border-color: rgba(255, 255, 255, 0.2);
}

/* Subtle staggered reveals */

.staff-grid .info-card.reveal:nth-child(1),
.manager-grid .info-card.reveal:nth-child(1) {
    transition-delay: 0.05s;
}

.staff-grid .info-card.reveal:nth-child(2),
.manager-grid .info-card.reveal:nth-child(2) {
    transition-delay: 0.12s;
}

.staff-grid .info-card.reveal:nth-child(3),
.manager-grid .info-card.reveal:nth-child(3) {
    transition-delay: 0.18s;
}

.manager-grid .info-card.reveal:nth-child(4) {
    transition-delay: 0.22s;
}

.manager-grid .info-card.reveal:nth-child(5) {
    transition-delay: 0.26s;
}

.steps-flow .step {
    transition-delay: 0.04s;
}

.steps-flow .step:nth-child(2) {
    transition-delay: 0.08s;
}

.steps-flow .step:nth-child(3) {
    transition-delay: 0.12s;
}

.steps-flow .step:nth-child(4) {
    transition-delay: 0.16s;
}

.steps-flow .step:nth-child(5) {
    transition-delay: 0.2s;
}

.steps-flow .step:nth-child(6) {
    transition-delay: 0.24s;
}

.benefit-item {
    position: relative;
    overflow: hidden;
}

.benefit-item::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 0 0, rgba(255, 122, 36, 0.18), transparent 55%);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease-out;
}

.benefit-item:hover::before {
    opacity: 1;
}

.btn-primary::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(circle at 10% 0, rgba(255, 255, 255, 0.58), transparent 55%);
    mix-blend-mode: soft-light;
    opacity: 0;
    transition: opacity 0.35s ease-out;
}

.btn-primary:hover::before {
    opacity: 1;
}

.hero-card::before {
    content: "";
    position: absolute;
    top: -40%;
    left: -20%;
    width: 160%;
    height: 60%;
    background: radial-gradient(circle at 0 0, rgba(255, 255, 255, 0.18), transparent 65%);
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.hero-card.visible::before {
    opacity: 1;
    transform: translateY(0);
}

.solution-ecosystem {
    max-width: 880px;
    margin: 2.4rem auto 0;
    padding: 0.7rem 1rem;
    border-radius: var(--radius-pill);
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: radial-gradient(circle at 0 0, rgba(255, 122, 36, 0.2), rgba(5, 5, 9, 0.98));
    display: grid;
    grid-template-columns: auto 40px auto 40px auto;
    align-items: center;
    gap: 0.5rem;
}

.ecosystem-node {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.ecosystem-node-center {
    align-items: center;
}

.ecosystem-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--color-accent-soft);
}

.ecosystem-text {
    font-size: 0.82rem;
    color: var(--color-muted);
}

.ecosystem-connector {
    height: 1px;
    background: linear-gradient(90deg, rgba(255, 122, 36, 0), rgba(255, 122, 36, 0.7), rgba(255, 122, 36, 0));
}

.site-footer {
    padding: 2.2rem 5vw 2.4rem;
    background: #050507;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-inner {
    max-width: 1120px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.2fr);
    gap: 0.6rem;
    align-items: center;
}

.footer-brand {
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-size: 0.8rem;
}

.footer-links {
    justify-self: end;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.8rem;
}

.footer-links a {
    color: var(--color-muted);
    position: relative;
}

.footer-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.18rem;
    width: 0;
    height: 1px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--color-accent), var(--color-accent-soft));
    transition: width var(--transition-fast);
}

.footer-links a:hover::after {
    width: 100%;
}

.footer-meta {
    grid-column: 1 / -1;
    font-size: 0.78rem;
    color: var(--color-muted);
}

.footer-subcopy {
    grid-column: 1 / -1;
    font-size: 0.78rem;
    color: rgba(181, 176, 168, 0.76);
}

/* Responsive */

@media (max-width: 960px) {
    .hero-inner {
        grid-template-columns: minmax(0, 1.1fr);
        gap: 2.4rem;
    }

    .hero-panel {
        justify-content: flex-start;
    }

    .problem-grid,
    .solution-layout,
    .how-layout,
    .early-layout {
        grid-template-columns: minmax(0, 1fr);
    }

    .solution-benefits,
    .early-aside {
        justify-content: flex-start;
    }

    .steps-flow {
        grid-template-columns: minmax(0, 1fr);
    }

    .staff-grid,
    .manager-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-inner {
        grid-template-columns: minmax(0, 1fr);
        gap: 0.4rem;
    }

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

@media (max-width: 720px) {
    .navbar {
        padding-inline: 1.25rem;
    }

    .nav-center {
        position: absolute;
        inset: 3.4rem 1rem auto;
        padding: 0.7rem 0.9rem;
        border-radius: 14px;
        background: rgba(5, 5, 7, 0.98);
        box-shadow: 0 18px 40px rgba(0, 0, 0, 0.95);
        flex-direction: column;
        align-items: flex-start;
        gap: 0.4rem;
        opacity: 0;
        pointer-events: none;
        transform: translateY(-8px);
        transition: opacity var(--transition-fast), transform var(--transition-fast);
    }

    .navbar.open .nav-center {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .nav-toggle {
        display: inline-flex;
    }

    .nav-right {
        margin-left: auto;
        margin-right: 0.4rem;
    }

    .hero-section {
        padding-inline: 1.5rem;
        padding-top: 4.5rem;
    }

    .section {
        padding-inline: 1.5rem;
    }

    .staff-grid,
    .manager-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .staff-layout {
        grid-template-columns: minmax(0, 1fr);
    }

    .problem-metrics {
        grid-template-columns: minmax(0, 1fr);
    }

    .solution-ecosystem {
        grid-template-columns: minmax(0, 1fr);
        border-radius: 18px;
    }

    .how-journey {
        max-width: 100%;
    }

    .hero-card {
        max-width: 100%;
    }

    .early-form-wrapper {
        padding-inline: 1.35rem;
    }
}

@media (max-width: 520px) {
    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .form-row {
        flex-direction: column;
    }

    .footer-links {
        flex-wrap: wrap;
    }
}

/* Keyframes */

@keyframes orbitGlow {
    from {
        transform: translate3d(0, 0, 0) scale(1);
    }
    to {
        transform: translate3d(-30px, 20px, 0) scale(1.08);
    }
}

@keyframes heroGlow {
    from {
        transform: translate3d(0, 0, 0) rotate(0deg);
    }
    to {
        transform: translate3d(16px, -18px, 0) rotate(8deg);
    }
}

@keyframes floatPulse {
    from {
        transform: translate3d(0, 0, 0) scale(1);
        box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12), 0 0 24px rgba(255, 122, 36, 0.8);
    }
    to {
        transform: translate3d(0, -2px, 0) scale(1.06);
        box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.2), 0 0 32px rgba(255, 176, 103, 1);
    }
}

@keyframes floatCard {
    from {
        transform: translate3d(0, 0, 0);
    }
    to {
        transform: translate3d(0, -14px, 0);
    }
}
