/* =====================================================
   LineUp — Bento + Soft Modern Theme (2026 redesign)
   Cream backdrop · indigo + coral accents · Fraunces + Inter
   ===================================================== */

:root {
    /* ---- Palette ---- */
    --cream: #F7F4EC;
    --cream-deep: #EFE9D7;
    --cream-soft: #FAF7EF;
    --surface: #FFFFFF;
    --ink: #131431;
    --ink-soft: #4A4A57;
    --ink-muted: #7B7B86;
    --line: #DDD7C5;
    --line-soft: #E8E2CF;

    --indigo: #4F46E5;
    --indigo-deep: #3730A3;
    --indigo-soft: #EEF0FF;
    --indigo-ink: #1E1B4B;
    --indigo-gradient: linear-gradient(135deg, #4F46E5 0%, #7C3AED 100%);

    --coral: #FF6B5B;
    --coral-deep: #E63946;
    --coral-soft: #FFE4DF;

    --butter: #FCE38A;
    --butter-soft: #FFF6D6;
    --butter-ink: #92400E;
    --sage: #BFE8C5;
    --sage-soft: #ECF8EF;
    --sage-deep: #047857;
    --sky: #C5E2FF;
    --sky-deep: #1E40AF;
    --lilac: #E0D4F7;
    --lilac-bright: #B5AFEC;
    --lilac-deep: #6B21A8;

    --coral-tint: #FFCDC4;
    --indigo-gradient-deep: linear-gradient(135deg, #4338CA 0%, #6D28D9 100%);

    /* ---- Shadows ---- */
    --shadow-xs: 0 1px 2px rgba(15, 16, 21, 0.06);
    --shadow-sm: 0 4px 10px -2px rgba(15, 16, 21, 0.08), 0 2px 4px rgba(15, 16, 21, 0.06);
    --shadow-md: 0 10px 24px -4px rgba(15, 16, 21, 0.10), 0 4px 8px -1px rgba(15, 16, 21, 0.06);
    --shadow-lg: 0 20px 40px -8px rgba(15, 16, 21, 0.14), 0 8px 16px -4px rgba(15, 16, 21, 0.08);
    --shadow-xl: 0 32px 64px -12px rgba(15, 16, 21, 0.22), 0 12px 20px -6px rgba(15, 16, 21, 0.10);
    --shadow-indigo: 0 12px 32px -8px rgba(79, 70, 229, 0.45);
    --shadow-coral: 0 12px 32px -8px rgba(255, 107, 91, 0.40);

    /* ---- Radii ---- */
    --r-xs: 6px;
    --r-sm: 10px;
    --r-md: 16px;
    --r-lg: 24px;
    --r-xl: 32px;
    --r-2xl: 40px;
    --r-full: 999px;

    /* ---- Spacing ---- */
    --s-3xs: 4px;
    --s-2xs: 8px;
    --s-xs: 12px;
    --s-sm: 16px;
    --s-md: 24px;
    --s-lg: 36px;
    --s-xl: 56px;
    --s-2xl: 88px;
    --s-3xl: 128px;

    /* ---- Type ---- */
    --font-display: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
    --font-mono: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    color: var(--ink);
    background: var(--cream);
    line-height: 1.55;
    font-size: 16.5px;
    font-feature-settings: 'cv11', 'ss01', 'ss03';
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

/* Subtle dot grid texture on the cream */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: radial-gradient(rgba(15, 16, 21, 0.045) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
    z-index: 0;
}

main, nav, section, footer, .container { position: relative; z-index: 1; }

/* ---- Container ---- */
.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 var(--s-md);
}

/* ---- Typography ---- */
h1, h2, h3, h4, h5 {
    font-family: var(--font-display);
    font-weight: 700;
    letter-spacing: -0.025em;
    line-height: 1.15;
    color: var(--ink);
}

h1 {
    font-size: clamp(2.5rem, 4.5vw + 0.5rem, 4.5rem);
    font-weight: 800;
    letter-spacing: -0.035em;
    line-height: 1.05;
}
h2 {
    font-size: clamp(1.85rem, 2.5vw + 0.75rem, 2.75rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.1;
}
h3 {
    font-size: clamp(1.25rem, 0.6vw + 1rem, 1.5rem);
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.02em;
}
h4 {
    font-size: 1.0625rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    line-height: 1.35;
}
p { color: var(--ink-soft); line-height: 1.65; }

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

em, .italic-serif {
    font-family: var(--font-body);
    font-style: italic;
    font-weight: 500;
}

/* ---- Eyebrow / mono labels ---- */
.eyebrow,
.mono-label {
    font-family: var(--font-mono);
    font-size: 0.78rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--ink-muted);
}

/* ---- Buttons ---- */
.btn-primary, .btn-secondary, .btn-large, .btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: var(--s-2xs);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 12px 22px;
    border-radius: var(--r-full);
    border: 1.5px solid transparent;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
    white-space: nowrap;
}

.btn-primary {
    background: var(--indigo-gradient);
    color: var(--surface);
    box-shadow: var(--shadow-indigo);
}
.btn-primary:hover {
    background: var(--indigo-gradient-deep);
    color: var(--surface);
    transform: translateY(-2px);
    box-shadow: var(--shadow-indigo);
}

.btn-secondary {
    background: transparent;
    color: var(--ink);
    border-color: var(--ink);
}
.btn-secondary:hover {
    background: var(--ink);
    color: var(--cream);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-ghost {
    background: transparent;
    color: var(--ink);
    padding: 8px 16px;
}
.btn-ghost:hover { color: var(--indigo); }

.btn-large {
    padding: 16px 28px;
    font-size: 1rem;
}

/* ---- Navbar ---- */
.navbar {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(250, 246, 238, 0.85);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s ease, background 0.2s ease;
}
.navbar.scrolled {
    border-bottom-color: var(--line);
    background: rgba(250, 246, 238, 0.92);
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    gap: var(--s-md);
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}
.logo img { width: 28px; height: 28px; }
.logo-text {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.3rem;
    letter-spacing: -0.02em;
    color: var(--ink);
}

.nav-links {
    display: flex;
    gap: var(--s-md);
    align-items: center;
}
.nav-links a {
    color: var(--ink-soft);
    font-weight: 500;
    font-size: 0.92rem;
    position: relative;
    padding: 4px 0;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a.active { color: var(--ink); }
.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--coral);
    border-radius: 2px;
}

.nav-actions {
    display: flex;
    gap: var(--s-2xs);
    align-items: center;
}
.nav-actions .btn-primary,
.nav-actions .btn-secondary {
    padding: 9px 18px;
    font-size: 0.88rem;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
}
.mobile-menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--ink);
    transition: transform 0.2s ease, opacity 0.2s ease;
    border-radius: 2px;
}
.mobile-menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-menu-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    padding: var(--s-md);
    flex-direction: column;
    gap: var(--s-sm);
    z-index: 99;
    box-shadow: var(--shadow-lg);
}
.mobile-menu.active { display: flex; }
.mobile-menu a {
    color: var(--ink);
    font-weight: 500;
    font-size: 1rem;
    padding: 10px 0;
    border-bottom: 1px solid var(--line-soft);
}
.mobile-menu .btn-primary,
.mobile-menu .btn-secondary {
    width: 100%;
    justify-content: center;
    padding: 14px;
    margin-top: var(--s-2xs);
}

/* ---- Pilot announcement bar (top) ---- */
.pilot-banner {
    background: var(--coral-soft);
    color: var(--ink);
    padding: 10px 0;
    font-size: 0.85rem;
    border-bottom: 1px solid var(--coral-tint);
}
.pilot-banner .container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--s-sm);
    text-align: center;
}
.pilot-banner-tag {
    background: var(--coral-tint);
    color: var(--coral-deep);
    padding: 2px 10px;
    border-radius: var(--r-full);
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: 0.72rem;
    letter-spacing: 0.12em;
}
.pilot-banner-text { color: var(--ink-soft); }
.pilot-banner-cta {
    color: var(--coral-deep);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
}
.pilot-banner-cta:hover { color: var(--ink); }

/* =====================================================
   HERO — bento layout
   ===================================================== */
.hero {
    padding: var(--s-2xl) 0 var(--s-3xl);
    position: relative;
}

.hero .container {
    position: relative;
}

.hero-content {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    gap: var(--s-lg);
    align-items: center;
}

.hero-text {
    display: flex;
    flex-direction: column;
    gap: var(--s-md);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--s-2xs);
    background: var(--surface);
    border: 1px solid var(--line);
    padding: 6px 14px;
    border-radius: var(--r-full);
    font-family: var(--font-mono);
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--ink-soft);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    width: fit-content;
    box-shadow: var(--shadow-xs);
}
.hero-badge::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: var(--r-full);
    background: var(--coral);
    box-shadow: 0 0 0 3px var(--coral-soft);
}

.hero-title {
    font-family: var(--font-display);
    font-weight: 800;
    line-height: 1.02;
    letter-spacing: -0.04em;
    color: var(--ink);
}

.gradient-text {
    display: inline-block;
    color: var(--coral);
    font-weight: 800;
    position: relative;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--ink-soft);
    line-height: 1.6;
    max-width: 540px;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: var(--s-xs);
    margin-top: var(--s-2xs);
}

/* Bento visual cards */
.hero-visual {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto auto auto;
    gap: var(--s-sm);
    position: relative;
}

.visual-card {
    background: var(--surface);
    border-radius: var(--r-lg);
    padding: var(--s-md);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--line);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    display: flex;
    flex-direction: column;
    gap: 8px;
    overflow: hidden;
    position: relative;
}
.visual-card:hover {
    transform: translateY(-4px) rotate(-0.4deg);
    box-shadow: var(--shadow-xl);
}

.visual-card .card-icon {
    font-size: 1.75rem;
    width: 44px;
    height: 44px;
    border-radius: var(--r-md);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--cream-deep);
}
.visual-card .card-title {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--ink-muted);
    font-weight: 500;
}
.visual-card .card-value {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--ink);
    line-height: 1.25;
    letter-spacing: -0.015em;
}

/* Asymmetric bento: card-1 spans two columns, card-2 + card-3 stack */
.visual-card.card-1 {
    grid-column: 1 / -1;
    background: var(--indigo-soft);
    border-color: var(--indigo-soft);
    color: var(--indigo);
}
.visual-card.card-1 .card-title { color: var(--ink-muted); }
.visual-card.card-1 .card-value { color: var(--indigo-ink); }
.visual-card.card-1 .card-icon {
    background: var(--surface);
    color: var(--indigo);
}

.visual-card.card-2 {
    background: var(--coral-soft);
    border-color: var(--coral-soft);
}
.visual-card.card-2 .card-icon {
    background: var(--surface);
    color: var(--coral-deep);
}

.visual-card.card-3 {
    background: var(--butter-soft);
    border-color: var(--butter-soft);
}
.visual-card.card-3 .card-icon {
    background: var(--surface);
    color: var(--butter-ink);
}

/* Old hero stats / background — disabled */
.hero-background { display: none; }

/* =====================================================
   VALUE PROPS
   ===================================================== */
.value-props {
    padding: var(--s-2xl) 0;
    background: var(--cream-deep);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}
.value-props-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--s-md);
    margin-top: var(--s-xl);
}
.value-prop {
    background: var(--surface);
    padding: var(--s-lg);
    border-radius: var(--r-lg);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    gap: var(--s-xs);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.value-prop:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}
.value-prop-icon {
    font-size: 1.6rem;
    width: 56px;
    height: 56px;
    border-radius: var(--r-md);
    background: var(--indigo-soft);
    display: flex;
    align-items: center;
    justify-content: center;
}
.value-prop:nth-child(2) .value-prop-icon { background: var(--coral-soft); }
.value-prop:nth-child(3) .value-prop-icon { background: var(--butter-soft); }

.value-prop h3 { color: var(--ink); }
.value-prop p { color: var(--ink-soft); font-size: 0.98rem; }

.section-title {
    text-align: center;
    color: var(--ink);
    margin-bottom: var(--s-2xs);
}
.section-subtitle {
    text-align: center;
    color: var(--ink-soft);
    font-size: 1.1rem;
    max-width: 640px;
    margin: 0 auto;
}
.section-header { margin-bottom: var(--s-xl); }

/* =====================================================
   TRUSTED BY / industry strip
   ===================================================== */
.trusted-by {
    padding: var(--s-xl) 0;
    text-align: center;
}
.trusted-text {
    font-family: var(--font-mono);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--ink-muted);
    margin-bottom: var(--s-md);
}
.trusted-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--s-sm);
}
.logo-item {
    background: var(--surface);
    border: 1px solid var(--line);
    padding: 10px 18px;
    border-radius: var(--r-full);
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--ink);
    transition: transform 0.2s ease, border-color 0.2s ease;
}
.logo-item:hover {
    transform: translateY(-2px);
    border-color: var(--coral);
}

/* =====================================================
   CORE CONCEPTS — Four building blocks
   ===================================================== */
.core-concepts {
    padding: var(--s-2xl) 0;
}
.concepts-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--s-sm);
}
.concept-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    padding: var(--s-lg);
    display: flex;
    flex-direction: column;
    gap: var(--s-xs);
    position: relative;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.concept-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}
.concept-card { box-shadow: var(--shadow-sm); }
.concept-card::after { display: none; }

.concept-card > * { position: relative; z-index: 1; }

.concept-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--r-md);
    background: var(--cream-deep);
    color: var(--ink);
    display: flex;
    align-items: center;
    justify-content: center;
}
.concept-icon .ti { font-size: 1.75rem; }
.concept-card:nth-child(1) .concept-icon { background: var(--indigo-soft); color: var(--indigo); }
.concept-card:nth-child(2) .concept-icon { background: var(--coral-soft); color: var(--coral-deep); }
.concept-card:nth-child(3) .concept-icon { background: var(--butter-soft); color: var(--butter-ink); }
.concept-card:nth-child(4) .concept-icon { background: var(--sage); color: var(--sage-deep); }
.concept-icon svg { width: 28px; height: 28px; }

.concept-card h3 { color: var(--ink); font-size: 1.35rem; }
.concept-card p { color: var(--ink-soft); font-size: 0.95rem; }
.feature-list {
    list-style: none;
    padding: 0;
    margin-top: var(--s-2xs);
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.feature-list li {
    font-size: 0.88rem;
    color: var(--ink-soft);
    padding-left: 18px;
    position: relative;
}
.feature-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    width: 6px;
    height: 6px;
    background: var(--coral);
    border-radius: 2px;
}

/* =====================================================
   FOUR APPS — bento grid (vary tile sizes)
   ===================================================== */
.four-apps {
    padding: var(--s-2xl) 0;
    background: var(--cream-deep);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}
.four-apps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--s-sm);
}
.app-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    padding: var(--s-lg);
    display: flex;
    flex-direction: column;
    gap: var(--s-xs);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.app-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}
.app-card { box-shadow: var(--shadow-sm); }
.app-card:nth-child(1) .app-card-icon { background: var(--indigo-soft); color: var(--indigo); }
.app-card:nth-child(2) .app-card-icon { background: var(--coral-soft); color: var(--coral-deep); }
.app-card:nth-child(3) .app-card-icon { background: var(--butter-soft); color: var(--butter-ink); }
.app-card:nth-child(4) .app-card-icon { background: var(--sage); color: var(--sage-deep); }

.app-card-icon {
    font-size: 1.8rem;
    width: 52px;
    height: 52px;
    border-radius: var(--r-md);
    background: var(--cream-deep);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--s-2xs);
}
.app-card-tag {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--ink-soft);
}
.app-card h3 { color: var(--ink); font-size: 1.2rem; }
.app-card p { color: var(--ink-soft); font-size: 0.92rem; }
.app-card-features {
    list-style: none;
    padding: 0;
    margin-top: auto;
    padding-top: var(--s-xs);
    border-top: 1px dashed rgba(15, 16, 21, 0.15);
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.app-card-features li {
    font-size: 0.85rem;
    color: var(--ink-soft);
    padding-left: 16px;
    position: relative;
}
.app-card-features li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--ink);
    font-weight: 600;
}

/* =====================================================
   SOLUTIONS — industry cards (bento mix)
   ===================================================== */
.solutions { padding: var(--s-2xl) 0; }
.solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--s-sm);
}
.solution-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    padding: var(--s-lg);
    display: flex;
    flex-direction: column;
    gap: var(--s-xs);
    box-shadow: var(--shadow-sm);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.solution-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}
.solution-header {
    display: flex;
    align-items: center;
    gap: var(--s-xs);
}
.solution-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--r-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    background: var(--cream-deep);
    flex-shrink: 0;
}
.solution-icon.healthcare { background: var(--coral-soft); }
.solution-icon.beauty { background: var(--lilac); }
.solution-icon.restaurant { background: var(--butter-soft); }
.solution-icon.automotive { background: var(--sky); }
.solution-icon.public { background: var(--butter-soft); }
.solution-icon.professional { background: var(--indigo-soft); }
.solution-card h3 { color: var(--ink); font-size: 1.25rem; }
.solution-card p { color: var(--ink-soft); font-size: 0.95rem; }
.solution-examples {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: auto;
    padding-top: var(--s-xs);
}
.example-tag {
    background: var(--cream-deep);
    color: var(--ink-soft);
    padding: 4px 10px;
    border-radius: var(--r-full);
    font-size: 0.8rem;
    font-weight: 500;
}
.solutions-cta { text-align: center; margin-top: var(--s-xl); }

/* =====================================================
   BENEFITS — split layout with mockup
   ===================================================== */
.benefits {
    padding: var(--s-2xl) 0;
    background: var(--cream-deep);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}
.benefits-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: var(--s-xl);
    align-items: center;
}
.benefits-text {
    display: flex;
    flex-direction: column;
    gap: var(--s-md);
}
.benefits-text .section-title { text-align: left; }
.benefit-item {
    display: flex;
    gap: var(--s-sm);
    align-items: flex-start;
}
.benefit-icon {
    font-size: 1.4rem;
    width: 48px;
    height: 48px;
    border-radius: var(--r-md);
    background: var(--surface);
    border: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.benefit-item h4 { font-size: 1.1rem; color: var(--ink); margin-bottom: 4px; }
.benefit-item p { color: var(--ink-soft); font-size: 0.95rem; }

.stats-dashboard {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--r-xl);
    padding: var(--s-md);
    box-shadow: var(--shadow-lg);
    transform: rotate(-1deg);
    transition: transform 0.3s ease;
}
.stats-dashboard:hover { transform: rotate(0); }
.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: var(--s-xs);
    border-bottom: 1px solid var(--line);
    margin-bottom: var(--s-sm);
}
.dashboard-header h4 { font-size: 0.95rem; color: var(--ink); }
.live-indicator {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--sage-deep);
    background: var(--sage);
    padding: 2px 8px;
    border-radius: var(--r-full);
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}
.dashboard-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--s-2xs);
    margin-bottom: var(--s-sm);
}
.metric {
    background: var(--cream-soft);
    padding: var(--s-xs);
    border-radius: var(--r-md);
    text-align: left;
}
.metric-label {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    color: var(--ink-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 4px;
}
.metric-value-text, .metric-big-text {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 700;
    color: var(--ink);
    letter-spacing: -0.015em;
}
.metric-sublabel {
    font-size: 0.7rem;
    color: var(--ink-muted);
    margin-top: 2px;
}
.dashboard-chart {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    height: 80px;
    padding: var(--s-2xs);
    background: var(--cream-soft);
    border-radius: var(--r-md);
}
.chart-bar {
    flex: 1;
    background: linear-gradient(180deg, var(--lilac-bright) 0%, var(--coral-tint) 100%);
    border-radius: var(--r-xs) var(--r-xs) 2px 2px;
    transition: opacity 0.2s ease;
}
.chart-bar:hover { opacity: 0.75; }
.dashboard-caption {
    margin-top: var(--s-2xs);
    font-size: 0.72rem;
    color: var(--ink-muted);
    font-style: italic;
    text-align: center;
}

/* =====================================================
   PRICING
   ===================================================== */
.pricing { padding: var(--s-2xl) 0; }
.pilot-pricing-banner {
    max-width: 880px;
    margin: 0 auto var(--s-xl);
    background: var(--coral-soft);
    color: var(--ink);
    border: 1px solid var(--coral-tint);
    border-radius: var(--r-lg);
    padding: var(--s-xs) var(--s-md);
    display: flex;
    align-items: center;
    gap: var(--s-sm);
    flex-wrap: wrap;
    box-shadow: var(--shadow-sm);
}
.pilot-pricing-tag {
    background: var(--coral-tint);
    color: var(--coral-deep);
    padding: 4px 12px;
    border-radius: var(--r-full);
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    white-space: nowrap;
}
.pilot-pricing-text { flex: 1 1 240px; font-size: 0.95rem; color: var(--ink-soft); }
.pilot-pricing-text strong { color: var(--coral-deep); }
.pilot-pricing-cta {
    color: var(--coral-deep);
    font-weight: 700;
    text-decoration: underline;
    white-space: nowrap;
}
.pilot-pricing-cta:hover { color: var(--ink); }

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--s-sm);
}
.pricing-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    padding: var(--s-lg);
    display: flex;
    flex-direction: column;
    gap: var(--s-md);
    position: relative;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}
.pricing-card.featured {
    background: var(--cream-deep);
    color: var(--ink);
    border: 2px solid var(--coral-tint);
    transform: scale(1.02);
}
.pricing-card.featured:hover { transform: scale(1.02) translateY(-4px); }
.pricing-card.featured h3,
.pricing-card.featured .amount,
.pricing-card.featured .currency,
.pricing-card.featured .period { color: var(--ink); }
.pricing-card.featured .price-subtitle { color: var(--ink-muted); }
.pricing-card.featured .pricing-features li { color: var(--ink-soft); }
.pricing-card.featured .check { color: var(--coral-deep); }

.popular-badge {
    position: absolute;
    top: -10px;
    right: var(--s-md);
    background: var(--coral-tint);
    color: var(--coral-deep);
    padding: 4px 12px;
    border-radius: var(--r-full);
    font-family: var(--font-mono);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    border: 1px solid var(--coral-soft);
}
.pricing-header h3 {
    font-size: 1.4rem;
    margin-bottom: var(--s-2xs);
}
.price {
    display: flex;
    align-items: baseline;
    gap: 2px;
    margin-bottom: 6px;
}
.currency { font-size: 1.25rem; color: var(--ink-soft); font-weight: 600; }
.amount {
    font-family: var(--font-display);
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--ink);
    letter-spacing: -0.04em;
}
.period { font-size: 0.9rem; color: var(--ink-muted); }
.price-subtitle { font-size: 0.88rem; color: var(--ink-muted); }

.pricing-features {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: var(--s-2xs);
    margin-bottom: var(--s-2xs);
}
.pricing-features li {
    font-size: 0.9rem;
    color: var(--ink-soft);
    display: flex;
    align-items: flex-start;
    gap: 8px;
}
.check {
    color: var(--indigo);
    font-weight: 700;
    flex-shrink: 0;
}
.pricing-card .btn-primary,
.pricing-card .btn-secondary {
    margin-top: auto;
    justify-content: center;
    width: 100%;
}
.pricing-card.featured .btn-primary {
    background: var(--ink);
    color: var(--cream);
}
.pricing-card.featured .btn-primary:hover { background: var(--coral-deep); color: var(--surface); }

/* =====================================================
   CTA section
   ===================================================== */
.cta {
    padding: var(--s-2xl) 0;
    position: relative;
}
.cta-content {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
    background: var(--cream-deep);
    color: var(--ink);
    padding: var(--s-xl) var(--s-md);
    border-radius: var(--r-xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--line);
    position: relative;
    overflow: hidden;
}
.cta-content::before,
.cta-content::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.4;
    z-index: 0;
}
.cta-content::before {
    background: var(--coral-soft);
    width: 280px;
    height: 280px;
    top: -100px;
    right: -100px;
}
.cta-content::after {
    background: var(--indigo-soft);
    width: 320px;
    height: 320px;
    bottom: -120px;
    left: -120px;
}
.cta-content > * { position: relative; z-index: 1; }

.cta h2 { color: var(--ink); font-size: clamp(1.75rem, 2vw + 1rem, 2.75rem); }
.cta p { color: var(--ink-soft); font-size: 1.05rem; margin: var(--s-xs) 0 var(--s-md); }
.cta-buttons {
    display: flex;
    gap: var(--s-xs);
    justify-content: center;
    flex-wrap: wrap;
}
.cta .btn-primary {
    background: var(--ink);
    color: var(--cream);
}
.cta .btn-primary:hover {
    background: var(--coral-deep);
    color: var(--surface);
}
.cta .btn-secondary {
    color: var(--ink);
    border-color: var(--ink);
}
.cta .btn-secondary:hover {
    background: var(--ink);
    color: var(--cream);
}
.cta-note {
    margin-top: var(--s-sm);
    font-size: 0.85rem;
    color: var(--ink-muted);
}
.cta-note a { color: var(--coral-deep); text-decoration: underline; }

/* =====================================================
   FOOTER
   ===================================================== */
.footer {
    background: var(--cream-deep);
    border-top: 1px solid var(--line);
    padding: var(--s-2xl) 0 var(--s-md);
}
.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--s-lg);
    padding-bottom: var(--s-xl);
    border-bottom: 1px solid var(--line);
}
.footer-section .logo { margin-bottom: var(--s-xs); }
.footer-section h4 {
    font-family: var(--font-mono);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--ink-muted);
    margin-bottom: var(--s-xs);
    font-weight: 500;
}
.footer-section ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--s-2xs);
}
.footer-section a {
    color: var(--ink);
    font-size: 0.95rem;
    transition: color 0.2s ease;
}
.footer-section a:hover { color: var(--coral); }
.footer-description {
    color: var(--ink-soft);
    font-size: 0.95rem;
    max-width: 320px;
}
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--s-md);
    flex-wrap: wrap;
    gap: var(--s-sm);
}
.footer-bottom p {
    color: var(--ink-muted);
    font-size: 0.85rem;
}
.social-links { display: flex; gap: var(--s-2xs); }
.social-links a {
    width: 36px;
    height: 36px;
    border-radius: var(--r-full);
    background: var(--surface);
    border: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ink);
    font-weight: 600;
    font-size: 0.9rem;
}
.social-links a:hover { background: var(--ink); color: var(--cream); }

/* =====================================================
   PAGE HEADERS (interior pages)
   ===================================================== */
.page-header {
    padding: var(--s-2xl) 0 var(--s-xl);
    text-align: center;
}
.page-header-content { max-width: 820px; margin: 0 auto; }
.page-header h1 {
    font-size: clamp(2.5rem, 4vw + 1rem, 4.5rem);
    color: var(--ink);
    margin-bottom: var(--s-xs);
}
.page-subtitle {
    font-size: 1.15rem;
    color: var(--ink-soft);
    max-width: 660px;
    margin: 0 auto;
}
.page-disclaimer {
    font-family: var(--font-mono);
    font-size: 0.78rem;
    color: var(--ink-muted);
    margin-top: var(--s-sm);
    font-style: italic;
}

/* =====================================================
   FEATURE DETAIL pages
   ===================================================== */
.feature-detail {
    padding: var(--s-2xl) 0;
    background: var(--cream);
}
.feature-detail.alternate { background: var(--cream-deep); }
.feature-detail-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--s-xl);
    align-items: center;
}
.feature-detail.alternate .feature-detail-content {
    grid-template-columns: 1fr 1fr;
}
.feature-badge {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--indigo);
    background: var(--indigo-soft);
    padding: 4px 12px;
    border-radius: var(--r-full);
    margin-bottom: var(--s-xs);
    width: fit-content;
}
.feature-detail-text h2 {
    margin-bottom: var(--s-xs);
}
.lead-text {
    font-family: var(--font-body);
    font-size: 1.2rem;
    color: var(--ink);
    line-height: 1.45;
    margin: var(--s-xs) 0 var(--s-sm);
    font-weight: 500;
    letter-spacing: -0.01em;
}
.feature-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--s-sm);
    margin: var(--s-md) 0;
}
.highlight-item {
    display: flex;
    gap: var(--s-2xs);
    align-items: flex-start;
}
.highlight-icon {
    font-size: 1.25rem;
    width: 40px;
    height: 40px;
    border-radius: var(--r-md);
    background: var(--surface);
    border: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.highlight-item h4 { font-size: 1rem; margin-bottom: 2px; }
.highlight-item p { font-size: 0.88rem; color: var(--ink-soft); }
.feature-specs {
    margin-top: var(--s-md);
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    padding: var(--s-md);
}
.feature-specs h3 { font-size: 1.1rem; margin-bottom: var(--s-xs); font-family: var(--font-body); font-weight: 700; }
.specs-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 6px;
}
.specs-list li {
    font-size: 0.92rem;
    color: var(--ink-soft);
    padding-left: 22px;
    position: relative;
}
.specs-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--coral);
    font-weight: 600;
}

/* Feature mockup card */
.visual-mockup {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--r-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transform: rotate(-0.8deg);
    transition: transform 0.3s ease;
}
.visual-mockup:hover { transform: rotate(0); }
.mockup-header {
    background: var(--cream-deep);
    padding: var(--s-2xs) var(--s-sm);
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--line);
}
.mockup-title {
    font-family: var(--font-mono);
    font-size: 0.78rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--ink-soft);
}
.dashboard-subtitle { font-size: 0.75rem; color: var(--ink-muted); display: block; }
.status-badge {
    padding: 3px 10px;
    border-radius: var(--r-full);
    font-size: 0.7rem;
    font-family: var(--font-mono);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.status-badge.active, .status-badge.available {
    background: var(--sage);
    color: var(--sage-deep);
}
.status-badge.in-progress { background: var(--butter); color: var(--butter-ink); }
.status-dot { width: 6px; height: 6px; border-radius: 50%; background: currentColor; }

.mockup-content { padding: var(--s-sm); }
.dashboard-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--s-2xs);
}
.metric-card {
    display: flex;
    gap: var(--s-2xs);
    align-items: center;
    padding: var(--s-2xs);
    background: var(--cream-soft);
    border-radius: var(--r-md);
}
.metric-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--r-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.queue-icon { background: var(--indigo-soft); color: var(--indigo); }
.time-icon { background: var(--coral-soft); color: var(--coral); }
.capacity-icon { background: var(--butter-soft); color: var(--butter-ink); }
.metric-content { flex: 1; min-width: 0; }
.metric-trend {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    color: var(--ink-muted);
    margin-top: 2px;
}
.metric-trend.positive { color: var(--sage-deep); }
.metric-progress {
    height: 4px;
    background: var(--cream);
    border-radius: var(--r-full);
    margin-top: 4px;
    overflow: hidden;
}
.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--lilac-bright), var(--coral-tint));
    border-radius: var(--r-full);
}

/* Job timeline mockup */
.job-timeline {
    display: flex;
    flex-direction: column;
    gap: var(--s-2xs);
    padding: var(--s-sm);
}
.timeline-step {
    display: flex;
    gap: var(--s-xs);
    align-items: center;
    padding: var(--s-2xs);
    border-radius: var(--r-md);
    background: var(--cream-soft);
}
.timeline-step.completed { background: var(--sage-soft); }
.timeline-step.active {
    background: var(--coral-soft);
    border: 1.5px solid var(--coral-tint);
}
.step-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--cream-soft);
    border: 1.5px dashed var(--line);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ink-muted);
    flex-shrink: 0;
}
.step-icon .ti { font-size: 1rem; }
.timeline-step.completed .step-icon {
    background: var(--sage);
    color: var(--sage-deep);
    border: 1.5px solid var(--sage);
}
.timeline-step.active .step-icon {
    background: var(--coral-tint);
    color: var(--coral-deep);
    border: 1.5px solid var(--coral-tint);
}
.step-label { font-weight: 600; font-size: 0.92rem; }
.step-time { font-family: var(--font-mono); font-size: 0.78rem; color: var(--ink-muted); }

/* Station view mockup */
.station-view { padding: var(--s-sm); }
.current-job {
    background: var(--cream-soft);
    border-radius: var(--r-md);
    padding: var(--s-sm);
    margin-bottom: var(--s-sm);
    text-align: center;
}
.job-label {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--ink-muted);
    margin-bottom: 4px;
}
.job-token {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--coral);
    letter-spacing: -0.03em;
    line-height: 1;
}
.job-customer { font-size: 0.9rem; color: var(--ink-soft); margin-top: 4px; }
.station-actions {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}
.action-btn {
    flex: 1;
    padding: 8px 12px;
    border-radius: var(--r-md);
    background: var(--surface);
    border: 1px solid var(--line);
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--ink);
    cursor: pointer;
    transition: all 0.18s ease;
}
.action-btn.primary { background: var(--ink); color: var(--cream); border-color: var(--ink); }
.action-btn.secondary { background: var(--coral-tint); color: var(--coral-deep); border-color: var(--coral-tint); }
.action-btn:hover { transform: translateY(-1px); }

/* Tags display mockup */
.tags-display {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: var(--s-sm);
}
.tag-item {
    padding: 6px 14px;
    border-radius: var(--r-full);
    font-size: 0.85rem;
    font-weight: 500;
    background: var(--cream-soft);
    border: 1px solid var(--line);
}
.tag-item.cardiology { background: var(--coral-soft); color: var(--coral-deep); border-color: var(--coral-soft); }
.tag-item.emergency { background: var(--coral-tint); color: var(--coral-deep); border-color: var(--coral-tint); }
.tag-item.vip { background: var(--butter-soft); color: var(--butter-ink); border-color: var(--butter-soft); }
.tag-item.pediatrics { background: var(--sky); color: var(--sky-deep); border-color: var(--sky); }
.tag-item.senior { background: var(--lilac); color: var(--lilac-deep); border-color: var(--lilac); }
.tag-item.premium { background: var(--cream-deep); color: var(--ink); border-color: var(--line); }

/* Additional features grid */
.additional-features {
    padding: var(--s-2xl) 0;
    background: var(--cream-deep);
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--s-sm);
}
.feature-box {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    padding: var(--s-md);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.feature-box:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.feature-box-icon {
    font-size: 1.6rem;
    width: 48px;
    height: 48px;
    border-radius: var(--r-md);
    background: var(--indigo-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--s-xs);
}
.feature-box:nth-child(2) .feature-box-icon { background: var(--coral-soft); }
.feature-box:nth-child(3) .feature-box-icon { background: var(--butter-soft); }
.feature-box:nth-child(4) .feature-box-icon { background: var(--sky); }
.feature-box:nth-child(5) .feature-box-icon { background: var(--lilac); }
.feature-box:nth-child(6) .feature-box-icon { background: var(--sage); }
.feature-box h3 { font-size: 1.15rem; margin-bottom: 4px; }
.feature-box p { font-size: 0.92rem; }

/* Roadmap section */
.roadmap-section {
    padding: var(--s-2xl) 0;
}
.roadmap-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--s-sm);
}
.roadmap-item {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    padding: var(--s-md);
}
.roadmap-status {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    padding: 3px 10px;
    border-radius: var(--r-full);
    margin-bottom: var(--s-xs);
}
.roadmap-status.shipped { background: var(--sage); color: var(--sage-deep); }
.roadmap-status.in-flight { background: var(--butter); color: var(--butter-ink); }
.roadmap-status.next { background: var(--cream-deep); color: var(--ink-soft); }
.roadmap-item h4 { font-size: 1.05rem; margin-bottom: 4px; }
.roadmap-item p { font-size: 0.9rem; color: var(--ink-soft); }

/* =====================================================
   SOLUTIONS DETAIL (industry pages)
   ===================================================== */
.solution-detail {
    padding: var(--s-2xl) 0;
}
.solution-detail.alternate { background: var(--cream-deep); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.solution-detail-content {
    max-width: 920px;
    margin: 0 auto;
}
.solution-badge {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 5px 14px;
    border-radius: var(--r-full);
    margin-bottom: var(--s-sm);
}
.solution-badge.healthcare-badge { background: var(--coral-soft); color: var(--coral-deep); }
.solution-badge.beauty-badge { background: var(--lilac); color: var(--lilac-deep); }
.solution-badge.restaurant-badge { background: var(--butter); color: var(--butter-ink); }
.solution-badge.automotive-badge { background: var(--sky); color: var(--sky-deep); }
.solution-badge.public-badge { background: var(--butter-soft); color: var(--butter-ink); }
.solution-badge.professional-badge { background: var(--indigo-soft); color: var(--indigo); }

.use-cases h3,
.key-benefits h3,
.solution-challenge h3,
.solution-challenge h4 {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1.1rem;
    margin: var(--s-md) 0 var(--s-xs);
}
.use-case-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--s-sm);
}
.use-case-item {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--r-md);
    padding: var(--s-sm);
}
.use-case-icon { font-size: 1.6rem; margin-bottom: 6px; }
.use-case-item h4 { font-size: 1rem; margin-bottom: 4px; }
.use-case-item p { font-size: 0.88rem; color: var(--ink-soft); }
.key-benefits ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px var(--s-sm);
}
.key-benefits li {
    font-size: 0.95rem;
    color: var(--ink-soft);
    padding-left: 22px;
    position: relative;
}
.key-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--coral);
    font-weight: 700;
}
.solution-challenge {
    margin-top: var(--s-lg);
    background: var(--surface);
    border-left: 4px solid var(--coral);
    border-radius: var(--r-md);
    padding: var(--s-md);
}

/* =====================================================
   ABOUT page
   ===================================================== */
.mission-section { padding: var(--s-2xl) 0; }
.mission-content { max-width: 760px; margin: 0 auto; }
.mission-text { text-align: center; }
.mission-text .section-title { text-align: center; margin-bottom: var(--s-sm); }
.mission-text p { font-size: 1.05rem; margin-bottom: var(--s-sm); }

.pilot-callout {
    padding: 0 0 var(--s-2xl);
}
.pilot-callout-inner {
    max-width: 880px;
    margin: 0 auto;
    background: var(--cream-deep);
    color: var(--ink);
    border: 1px solid var(--line);
    border-radius: var(--r-xl);
    padding: var(--s-xl) var(--s-lg);
    text-align: center;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}
.pilot-callout-inner::after {
    content: '';
    position: absolute;
    width: 240px;
    height: 240px;
    background: var(--coral-soft);
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
    top: -80px;
    right: -80px;
    z-index: 0;
}
.pilot-callout-inner > * { position: relative; z-index: 1; }
.pilot-callout-tag {
    display: inline-block;
    background: var(--coral-tint);
    color: var(--coral-deep);
    padding: 4px 14px;
    border-radius: var(--r-full);
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    margin-bottom: var(--s-sm);
}
.pilot-callout-inner h2 { color: var(--ink); margin-bottom: var(--s-xs); }
.pilot-callout-inner p {
    color: var(--ink-soft);
    max-width: 580px;
    margin: 0 auto var(--s-md);
}
.pilot-callout-actions {
    display: flex;
    gap: var(--s-xs);
    justify-content: center;
    flex-wrap: wrap;
}
.pilot-callout-inner .btn-primary {
    background: var(--ink);
    color: var(--cream);
}
.pilot-callout-inner .btn-primary:hover { background: var(--coral-deep); color: var(--surface); }
.pilot-callout-inner .btn-secondary {
    color: var(--ink);
    border-color: var(--ink);
}
.pilot-callout-inner .btn-secondary:hover {
    background: var(--ink);
    color: var(--cream);
}

.values-section { padding: var(--s-2xl) 0; background: var(--cream-deep); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--s-sm);
}
.value-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    padding: var(--s-md);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.value-icon {
    font-size: 1.75rem;
    width: 56px;
    height: 56px;
    border-radius: var(--r-md);
    background: var(--indigo-soft);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: var(--s-xs);
}
.value-card:nth-child(2) .value-icon { background: var(--coral-soft); }
.value-card:nth-child(3) .value-icon { background: var(--butter-soft); }
.value-card:nth-child(4) .value-icon { background: var(--sky); }
.value-card:nth-child(5) .value-icon { background: var(--lilac); }
.value-card:nth-child(6) .value-icon { background: var(--sage); }
.value-card h3 { font-size: 1.15rem; margin-bottom: 4px; }
.value-card p { font-size: 0.95rem; }

.story-section { padding: var(--s-2xl) 0; }
.story-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--s-xl);
    align-items: center;
}
.story-image {
    background: var(--ink);
    border-radius: var(--r-xl);
    aspect-ratio: 4 / 5;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--butter);
    overflow: hidden;
    position: relative;
}
.story-placeholder { text-align: center; padding: var(--s-md); }
.placeholder-icon { font-size: 3rem; margin-bottom: var(--s-2xs); }
.story-placeholder p { color: var(--butter); font-family: var(--font-display); font-size: 1.25rem; font-weight: 600; letter-spacing: -0.02em; }

.timeline {
    display: flex;
    flex-direction: column;
    gap: var(--s-md);
    margin-top: var(--s-md);
}
.timeline-item {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: var(--s-sm);
    padding-bottom: var(--s-md);
    border-bottom: 1px solid var(--line);
}
.timeline-item:last-child { border-bottom: 0; }
.timeline-year {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--coral);
    letter-spacing: -0.03em;
}
.timeline-content h4 { font-size: 1.1rem; margin-bottom: 4px; }
.timeline-content p { color: var(--ink-soft); font-size: 0.95rem; }

.team-section { padding: var(--s-2xl) 0; background: var(--cream-deep); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--s-md);
}
.team-member {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    padding: var(--s-md);
    text-align: center;
}
.member-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: var(--cream-deep);
    margin: 0 auto var(--s-xs);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--coral);
}
.photo-placeholder {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--coral);
    letter-spacing: -0.02em;
}
.team-member h3 { font-size: 1.2rem; margin-bottom: 4px; }
.member-role {
    font-family: var(--font-mono);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--coral);
    margin-bottom: var(--s-xs);
}
.member-bio { font-size: 0.92rem; color: var(--ink-soft); }

/* =====================================================
   CONTACT page
   ===================================================== */
.contact-pilot-callout {
    padding: 0 0 var(--s-lg);
}
.contact-pilot-inner {
    max-width: 820px;
    margin: 0 auto;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    padding: var(--s-md);
    text-align: center;
    box-shadow: var(--shadow-sm);
}
.contact-pilot-tag {
    display: inline-block;
    background: var(--coral-tint);
    color: var(--coral-deep);
    padding: 4px 14px;
    border-radius: var(--r-full);
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    margin-bottom: var(--s-xs);
}
.contact-pilot-inner p { color: var(--ink-soft); margin: 0; }

.contact-section { padding: var(--s-2xl) 0; }
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--s-xl);
    align-items: flex-start;
}
.contact-info h2 { margin-bottom: var(--s-xs); }
.contact-info > p { margin-bottom: var(--s-md); font-size: 1rem; }
.contact-methods {
    display: flex;
    flex-direction: column;
    gap: var(--s-sm);
}
.contact-method {
    display: flex;
    gap: var(--s-xs);
    align-items: flex-start;
    padding: var(--s-xs);
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--r-md);
}
.method-icon {
    font-size: 1.3rem;
    width: 44px;
    height: 44px;
    border-radius: var(--r-md);
    background: var(--cream-deep);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.contact-method h4 { font-size: 0.95rem; margin-bottom: 2px; }
.contact-method a, .contact-method p { color: var(--ink-soft); font-size: 0.9rem; }
.contact-method a:hover { color: var(--indigo); }

.contact-form-container {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--r-xl);
    padding: var(--s-lg);
    box-shadow: var(--shadow-sm);
}
.contact-form { display: flex; flex-direction: column; gap: var(--s-sm); }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--ink-muted);
    font-weight: 500;
}
.form-group input,
.form-group select,
.form-group textarea {
    font-family: var(--font-body);
    font-size: 0.98rem;
    padding: 12px 14px;
    border: 1px solid var(--line);
    border-radius: var(--r-md);
    background: var(--cream-soft);
    color: var(--ink);
    transition: border-color 0.2s ease, background 0.2s ease;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--indigo);
    background: var(--surface);
    box-shadow: 0 0 0 4px var(--indigo-soft);
}
.form-group textarea { resize: vertical; min-height: 120px; font-family: var(--font-body); }
.contact-form button[type="submit"] {
    margin-top: var(--s-xs);
    background: var(--ink);
    color: var(--cream);
    border: 1.5px solid var(--ink);
    padding: 14px 24px;
    border-radius: var(--r-full);
    font-weight: 600;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all 0.2s ease;
}
.contact-form button[type="submit"]:hover {
    background: var(--indigo);
    border-color: var(--indigo);
    transform: translateY(-2px);
    box-shadow: var(--shadow-indigo);
}

/* =====================================================
   HOW IT WORKS page
   ===================================================== */
.hiw-steps { padding: var(--s-xl) 0 var(--s-2xl); }
.hiw-step {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: var(--s-lg);
    margin-bottom: var(--s-2xl);
    align-items: flex-start;
}
.hiw-step.alternate {
    background: var(--cream-deep);
    padding: var(--s-lg);
    border-radius: var(--r-xl);
    border: 1px solid var(--line);
}
.hiw-step-marker {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--s-2xs);
    position: sticky;
    top: 100px;
}
.hiw-step-num {
    width: 64px;
    height: 64px;
    border-radius: var(--r-md);
    background: var(--ink);
    color: var(--butter);
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    letter-spacing: -0.03em;
}
.hiw-step-role {
    font-family: var(--font-mono);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--coral);
}
.hiw-step-body h2 { margin-bottom: var(--s-xs); font-size: clamp(1.75rem, 2.5vw + 0.5rem, 2.5rem); }
.hiw-step-body .lead-text { margin-bottom: var(--s-sm); }
.hiw-bullets {
    list-style: none;
    padding: 0;
    margin: var(--s-sm) 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.hiw-bullets li {
    padding-left: 24px;
    position: relative;
    color: var(--ink-soft);
}
.hiw-bullets li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 12px;
    height: 2px;
    background: var(--coral);
}
.hiw-mockup {
    margin-top: var(--s-sm);
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}
.hiw-mockup-header {
    background: var(--cream-deep);
    padding: var(--s-2xs) var(--s-sm);
    font-family: var(--font-mono);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--ink-soft);
    font-weight: 500;
    border-bottom: 1px solid var(--line);
}
.hiw-mockup-body, .hiw-station-body { padding: var(--s-sm); }
.hiw-line-row {
    display: flex;
    align-items: center;
    gap: var(--s-2xs);
    padding: 10px var(--s-xs);
    border-radius: var(--r-md);
    background: var(--cream-soft);
    margin-bottom: 6px;
}
.hiw-line-row:last-child { margin-bottom: 0; }
.hiw-line-icon { font-size: 1.2rem; }
.hiw-line-mode {
    margin-left: auto;
    background: var(--indigo-soft);
    color: var(--indigo);
    padding: 2px 10px;
    border-radius: var(--r-full);
    font-family: var(--font-mono);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.ticket-mockup .ticket-body {
    padding: var(--s-md);
    background: linear-gradient(180deg, var(--coral-soft) 0%, var(--surface) 100%);
    text-align: center;
}
.ticket-line {
    font-family: var(--font-mono);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--ink-muted);
    margin-bottom: var(--s-2xs);
}
.ticket-token {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--coral-deep);
    margin-bottom: var(--s-2xs);
    letter-spacing: -0.02em;
}
.ticket-position, .ticket-eta, .ticket-status {
    font-size: 0.92rem;
    color: var(--ink-soft);
    padding: 3px 0;
}
.hiw-station-card {
    background: var(--cream-soft);
    padding: var(--s-sm);
    border-radius: var(--r-md);
}
.hiw-station-label {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--ink-muted);
    font-weight: 600;
}
.hiw-station-customer {
    margin: 6px 0 var(--s-sm);
    color: var(--ink);
    font-weight: 600;
}
.hiw-station-actions { display: flex; gap: 6px; flex-wrap: wrap; }
.hiw-btn {
    padding: 6px 14px;
    border-radius: var(--r-md);
    background: var(--surface);
    border: 1px solid var(--line);
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--ink);
}
.hiw-btn.primary { background: var(--ink); color: var(--cream); border-color: var(--ink); }
.hiw-board-row {
    display: grid;
    grid-template-columns: 140px 1fr auto;
    align-items: center;
    gap: var(--s-xs);
    padding: 10px var(--s-sm);
    border-bottom: 1px solid var(--line);
}
.hiw-board-row:last-child { border-bottom: 0; }
.hiw-board-label { font-weight: 600; font-size: 0.9rem; }
.hiw-bar {
    height: 10px;
    border-radius: var(--r-full);
    background: var(--cream-deep);
}
.hiw-bar.short { width: 25%; background: var(--sage); }
.hiw-bar.medium { width: 50%; background: var(--lilac-bright); }
.hiw-bar.long { width: 90%; background: var(--coral-tint); }
.hiw-board-tag {
    padding: 3px 10px;
    border-radius: var(--r-full);
    font-family: var(--font-mono);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.hiw-board-tag.warn { background: var(--coral-tint); color: var(--coral-deep); }
.hiw-board-tag.ok { background: var(--sage); color: var(--sage-deep); }
.hiw-report-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: var(--s-2xs);
    padding: var(--s-sm);
}
.hiw-report-card {
    background: var(--cream-soft);
    padding: var(--s-2xs);
    border-radius: var(--r-md);
    text-align: center;
}
.hiw-report-label {
    font-family: var(--font-mono);
    font-size: 0.68rem;
    color: var(--ink-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.hiw-report-value {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--coral);
    margin-top: 4px;
    letter-spacing: -0.01em;
}

.hiw-bridge {
    padding: var(--s-2xl) 0;
    background: var(--cream-deep);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}
.hiw-bridge-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--s-sm);
}
.hiw-bridge-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    padding: var(--s-md);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.hiw-bridge-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.hiw-bridge-emoji { font-size: 2rem; display: block; margin-bottom: var(--s-2xs); }
.hiw-bridge-card h4 { font-size: 1.1rem; margin-bottom: 4px; }
.hiw-bridge-card p { font-size: 0.92rem; color: var(--ink-soft); }
.hiw-bridge-cta { text-align: center; margin-top: var(--s-xl); }

/* =====================================================
   FOR CUSTOMERS page
   ===================================================== */
.fc-jobs { padding: var(--s-2xl) 0; }
.fc-jobs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--s-sm);
}
.fc-job-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--r-xl);
    padding: var(--s-lg);
    position: relative;
    box-shadow: var(--shadow-sm);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.fc-job-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.fc-job-num {
    position: absolute;
    top: -18px;
    left: var(--s-lg);
    width: 40px;
    height: 40px;
    background: var(--coral-tint);
    color: var(--coral-deep);
    border: 1px solid var(--coral-soft);
    border-radius: var(--r-md);
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
    letter-spacing: -0.02em;
}
.fc-job-icon {
    font-size: 2.5rem;
    margin: var(--s-sm) 0;
}
.fc-job-card h3 { font-size: 1.4rem; margin-bottom: var(--s-2xs); }
.fc-job-card > p { margin-bottom: var(--s-sm); }
.fc-job-features {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding-top: var(--s-xs);
    border-top: 1px dashed var(--line);
}
.fc-job-features li {
    font-size: 0.92rem;
    color: var(--ink-soft);
    padding-left: 16px;
    position: relative;
}
.fc-job-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 2px;
    background: var(--coral);
}

.fc-apps {
    padding: var(--s-2xl) 0;
    background: var(--cream-deep);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}
.fc-apps-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--s-md);
}
.fc-app-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--r-xl);
    padding: var(--s-lg);
    position: relative;
    box-shadow: var(--shadow-sm);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.fc-app-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.fc-app-card:nth-child(1) { background: linear-gradient(180deg, var(--indigo-soft) 0%, var(--surface) 100%); }
.fc-app-card:nth-child(2) { background: linear-gradient(180deg, var(--coral-soft) 0%, var(--surface) 100%); }
.fc-app-badge {
    position: absolute;
    top: var(--s-sm);
    right: var(--s-sm);
    background: var(--cream-deep);
    color: var(--ink-soft);
    border: 1px solid var(--line);
    padding: 4px 12px;
    border-radius: var(--r-full);
    font-family: var(--font-mono);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.fc-app-icon { font-size: 2.5rem; margin-bottom: var(--s-xs); }
.fc-app-card h3 { font-size: 1.5rem; margin-bottom: var(--s-2xs); }
.fc-app-card > p { margin-bottom: var(--s-sm); }
.fc-app-features { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 6px; }
.fc-app-features li {
    font-size: 0.92rem;
    color: var(--ink-soft);
    padding-left: 20px;
    position: relative;
}
.fc-app-features li::before {
    content: '✓';
    position: absolute; left: 0;
    color: var(--coral);
    font-weight: 700;
}

.fc-privacy { padding: var(--s-2xl) 0; }
.fc-privacy-content {
    max-width: 880px;
    margin: 0 auto;
    text-align: center;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--r-xl);
    padding: var(--s-xl);
    box-shadow: var(--shadow-md);
}
.fc-privacy-icon { font-size: 2.5rem; margin-bottom: var(--s-xs); }
.fc-privacy-content h2 { margin-bottom: var(--s-xs); }
.fc-privacy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--s-sm);
    margin-top: var(--s-md);
    text-align: left;
}
.fc-privacy-item {
    background: var(--cream-soft);
    padding: var(--s-sm);
    border-radius: var(--r-md);
    border-left: 3px solid var(--coral);
}
.fc-privacy-item h4 { font-size: 1rem; margin-bottom: 4px; }
.fc-privacy-item p { font-size: 0.92rem; color: var(--ink-soft); }

/* =====================================================
   FAQ page
   ===================================================== */
.faq-section {
    padding: var(--s-2xl) 0;
    max-width: 880px;
    margin: 0 auto;
}
.faq-cat { margin-bottom: var(--s-xl); }
.faq-cat-title {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: var(--s-sm);
    padding-bottom: var(--s-2xs);
    border-bottom: 2px solid var(--line);
    display: flex;
    align-items: center;
    gap: var(--s-2xs);
    letter-spacing: -0.02em;
}
.faq-item {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--r-md);
    margin-bottom: var(--s-2xs);
    transition: box-shadow 0.2s ease, border-color 0.2s ease;
}
.faq-item[open] {
    border-color: var(--coral);
    box-shadow: var(--shadow-md);
}
.faq-q {
    padding: var(--s-sm) var(--s-md);
    font-weight: 600;
    color: var(--ink);
    cursor: pointer;
    list-style: none;
    position: relative;
    padding-right: 50px;
    font-size: 1rem;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q::after {
    content: '+';
    position: absolute;
    right: var(--s-md);
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: var(--coral);
    font-weight: 300;
    transition: transform 0.2s ease;
}
.faq-item[open] .faq-q::after { content: '−'; }
.faq-a {
    padding: 0 var(--s-md) var(--s-sm);
    color: var(--ink-soft);
    line-height: 1.65;
}
.faq-a a { color: var(--indigo); text-decoration: underline; text-underline-offset: 3px; }

/* =====================================================
   SECURITY page
   ===================================================== */
.security-overview { padding: var(--s-xl) 0 0; }
.security-intro {
    max-width: 760px;
    margin: 0 auto var(--s-xl);
    text-align: center;
}
.security-intro .lead-text { font-style: normal; font-family: var(--font-body); font-size: 1.1rem; color: var(--ink-soft); }
.security-badges {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--s-sm);
}
.security-badge {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    padding: var(--s-md);
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.security-badge:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.badge-icon { font-size: 2rem; margin-bottom: var(--s-2xs); }
.badge-title { font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; margin-bottom: 2px; letter-spacing: -0.01em; }
.badge-desc { font-family: var(--font-mono); font-size: 0.78rem; color: var(--ink-muted); text-transform: uppercase; letter-spacing: 0.08em; }

.security-commitment { padding: var(--s-2xl) 0; }
.commitment-content { max-width: 920px; margin: 0 auto; }
.commitment-content h2 { margin-bottom: var(--s-xs); }
.commitment-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--s-sm);
    margin-top: var(--s-md);
}
.commitment-item {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--r-md);
    padding: var(--s-sm);
}
.commitment-item h4 { font-size: 1rem; margin-bottom: 4px; }
.commitment-item p { font-size: 0.92rem; color: var(--ink-soft); }

.security-features { padding: var(--s-2xl) 0; background: var(--cream-deep); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.security-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--s-sm);
}
.security-feature {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    padding: var(--s-md);
}
.security-feature .feature-icon { font-size: 1.6rem; margin-bottom: var(--s-2xs); }
.security-feature h3 { font-size: 1.15rem; margin-bottom: var(--s-2xs); }
.security-feature ul {
    list-style: none;
    padding: 0;
    margin-top: var(--s-2xs);
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.security-feature ul li { font-size: 0.88rem; color: var(--ink-soft); padding-left: 14px; position: relative; }
.security-feature ul li::before { content: '·'; position: absolute; left: 4px; color: var(--coral); font-weight: 700; }

.security-practices { padding: var(--s-2xl) 0; }
.practices-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--s-sm);
}
.practice-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    padding: var(--s-md);
}

.transparency-section { padding: var(--s-2xl) 0; background: var(--cream-deep); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.transparency-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--s-sm);
}
.transparency-item {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--r-md);
    padding: var(--s-sm);
    display: flex;
    gap: var(--s-2xs);
    align-items: flex-start;
}

.contact-security { padding: var(--s-2xl) 0; }
.contact-security-content { max-width: 720px; margin: 0 auto; text-align: center; }

/* =====================================================
   LEGAL pages
   ===================================================== */
.legal-content { padding: var(--s-xl) 0 var(--s-2xl); }
.legal-content .container {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 280px;
    gap: var(--s-lg);
    align-items: start;
}
.legal-document {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    padding: var(--s-xl);
    box-shadow: var(--shadow-sm);
    min-width: 0;
}
.legal-intro { padding-bottom: var(--s-md); border-bottom: 1px solid var(--line); margin-bottom: var(--s-md); }
.legal-section { margin-bottom: var(--s-lg); }
.legal-section h2 {
    font-size: 1.5rem;
    margin-bottom: var(--s-xs);
    padding-bottom: 6px;
    border-bottom: 2px solid var(--line);
}
.legal-section h3 { font-size: 1.1rem; margin: var(--s-md) 0 var(--s-2xs); font-family: var(--font-body); font-weight: 700; }
.legal-section p, .legal-section li { color: var(--ink-soft); margin-bottom: var(--s-2xs); font-size: 0.95rem; }
.legal-section ul { padding-left: var(--s-md); margin-bottom: var(--s-xs); }
.legal-section a { color: var(--indigo); text-decoration: underline; }

.contact-info-box {
    background: var(--cream-soft);
    border: 1px solid var(--line);
    border-radius: var(--r-md);
    padding: var(--s-md);
    margin-top: var(--s-xs);
}
.contact-info-box p { margin: 0 0 6px; font-size: 0.95rem; }
.contact-info-box p:last-child { margin-bottom: 0; }

.legal-footer {
    margin-top: var(--s-lg);
    padding-top: var(--s-md);
    border-top: 1px solid var(--line);
    color: var(--ink-muted);
    font-size: 0.875rem;
}
.legal-footer p { margin: 0 0 4px; color: var(--ink-muted); }

.legal-sidebar {
    position: sticky;
    top: calc(72px + var(--s-md));
    display: flex;
    flex-direction: column;
    gap: var(--s-md);
    min-width: 0;
}
.sidebar-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--r-md);
    padding: var(--s-md);
    box-shadow: var(--shadow-sm);
}
.sidebar-card h3 {
    font-size: 1rem;
    font-weight: 700;
    margin: 0 0 var(--s-xs);
    font-family: var(--font-body);
}
.sidebar-card p {
    font-size: 0.875rem;
    color: var(--ink-soft);
    margin: 0 0 var(--s-xs);
}
.sidebar-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.sidebar-links a {
    font-size: 0.875rem;
    color: var(--indigo);
    text-decoration: none;
}
.sidebar-links a:hover { text-decoration: underline; }
.sidebar-card .btn-primary {
    display: inline-block;
    width: 100%;
    text-align: center;
    font-size: 0.875rem;
    padding: 10px 16px;
}

@media (max-width: 968px) {
    .legal-content .container { grid-template-columns: 1fr; }
    .legal-sidebar { position: static; }
}

/* =====================================================
   Tabler Icons — sizing + color per container
   ===================================================== */
.ti {
    line-height: 1;
    vertical-align: -0.125em;
}

/* Hero visual cards */
.visual-card .card-icon .ti { font-size: 1.5rem; }

/* Hero badge */
.hero-badge .ti { font-size: 0.95rem; color: var(--coral); }

/* Pilot tags */
.pilot-banner-tag .ti,
.pilot-pricing-tag .ti,
.pilot-callout-tag .ti,
.contact-pilot-tag .ti { font-size: 0.85rem; }

/* Value props */
.value-prop-icon .ti { font-size: 1.6rem; color: var(--indigo); }
.value-prop:nth-child(2) .value-prop-icon .ti { color: var(--coral); }
.value-prop:nth-child(3) .value-prop-icon .ti { color: var(--butter-ink); }

/* Trusted-by industry pills */
.logo-item .ti {
    font-size: 1.05rem;
    margin-right: 6px;
    color: var(--coral);
}

/* Four-apps */
.app-card-icon .ti { font-size: 1.6rem; color: var(--indigo); }
.app-card:nth-child(2) .app-card-icon .ti { color: var(--coral); }
.app-card:nth-child(3) .app-card-icon .ti { color: var(--butter-ink); }
.app-card:nth-child(4) .app-card-icon .ti { color: var(--ink); }

/* Solutions */
.solution-icon .ti { font-size: 1.45rem; color: var(--ink); }
.solution-icon.healthcare .ti { color: var(--coral-deep); }
.solution-icon.beauty .ti { color: var(--lilac-deep); }
.solution-icon.restaurant .ti { color: var(--butter-ink); }
.solution-icon.automotive .ti { color: var(--sky-deep); }
.solution-icon.public .ti { color: var(--butter-ink); }
.solution-icon.professional .ti { color: var(--indigo); }

/* Use-case sub-cards in solutions */
.use-case-icon .ti { font-size: 1.5rem; color: var(--coral); }

/* Benefits */
.benefit-icon .ti { font-size: 1.3rem; color: var(--indigo); }

/* Features highlights / specs */
.highlight-icon .ti { font-size: 1.15rem; color: var(--indigo); }

/* Additional features grid */
.feature-box-icon .ti { font-size: 1.5rem; color: var(--indigo); }
.feature-box:nth-child(2) .feature-box-icon .ti { color: var(--coral); }
.feature-box:nth-child(3) .feature-box-icon .ti { color: var(--butter-ink); }
.feature-box:nth-child(4) .feature-box-icon .ti { color: var(--sky-deep); }
.feature-box:nth-child(5) .feature-box-icon .ti { color: var(--lilac-deep); }
.feature-box:nth-child(6) .feature-box-icon .ti { color: var(--sage-deep); }

/* Feature page mockup icons */
.metric-icon .ti { font-size: 1.15rem; }

/* HIW step body lines */
.hiw-line-icon .ti { font-size: 1.1rem; color: var(--ink-soft); vertical-align: -0.18em; }
.hiw-bridge-emoji .ti { font-size: 1.85rem; color: var(--coral); }

/* HIW step marker — number remains a number, no icon */

/* For-customers */
.fc-job-icon .ti { font-size: 2.2rem; color: var(--coral); }
.fc-job-card:nth-child(2) .fc-job-icon .ti { color: var(--indigo); }
.fc-job-card:nth-child(3) .fc-job-icon .ti { color: var(--butter-ink); }
.fc-app-icon .ti { font-size: 2.2rem; color: var(--indigo); }
.fc-app-card:nth-child(2) .fc-app-icon .ti { color: var(--coral); }
.fc-privacy-icon .ti { font-size: 2.2rem; color: var(--coral); }

/* FAQ section titles */
.faq-cat-title .ti {
    font-size: 1.5rem;
    color: var(--coral);
    margin-right: 6px;
}

/* About — values */
.value-icon .ti { font-size: 1.6rem; color: var(--indigo); }
.value-card:nth-child(2) .value-icon .ti { color: var(--coral); }
.value-card:nth-child(3) .value-icon .ti { color: var(--butter-ink); }
.value-card:nth-child(4) .value-icon .ti { color: var(--sky-deep); }
.value-card:nth-child(5) .value-icon .ti { color: var(--lilac-deep); }
.value-card:nth-child(6) .value-icon .ti { color: var(--sage-deep); }

/* About — story placeholder */
.story-placeholder .placeholder-icon .ti { font-size: 3rem; color: var(--butter); }

/* About — team avatars */
.photo-placeholder .ti { font-size: 2.5rem; color: var(--coral); }

/* Contact — methods */
.method-icon .ti { font-size: 1.2rem; color: var(--indigo); }

/* Security badges */
.badge-icon .ti { font-size: 1.9rem; color: var(--indigo); }
.security-badge:nth-child(2) .badge-icon .ti { color: var(--coral); }
.security-badge:nth-child(3) .badge-icon .ti { color: var(--butter-ink); }
.security-badge:nth-child(4) .badge-icon .ti { color: var(--sky-deep); }

/* Security commitment items — heading icons */
.commitment-item h4 .ti,
.security-feature h3 .ti,
.transparency-item h4 .ti,
.practice-card h3 .ti {
    color: var(--coral);
    margin-right: 6px;
    font-size: 1.1rem;
    vertical-align: -0.15em;
}

/* Security feature icon container */
.security-feature .feature-icon .ti { font-size: 1.4rem; color: var(--coral); }

/* Tag display in features.html mockup — inline icon */
.tag-item .ti {
    font-size: 0.9rem;
    margin-right: 4px;
    vertical-align: -0.15em;
}

/* =====================================================
   Entrance animations — content visible by default,
   subtle fade-in only on initial paint
   ===================================================== */
@keyframes lineupFadeIn {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}
.fade-in, .fade-in-up {
    opacity: 1;
    transform: translateY(0);
}
@media (prefers-reduced-motion: no-preference) {
    .hero .fade-in-up,
    .hero .fade-in,
    .page-header .fade-in-up,
    .page-header .fade-in {
        animation: lineupFadeIn 0.55s ease both;
    }
}

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 1080px) {
    .concepts-grid,
    .four-apps-grid,
    .hiw-bridge-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .solutions-grid,
    .features-grid,
    .roadmap-grid,
    .fc-jobs-grid,
    .team-grid,
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .security-badges {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 880px) {
    .nav-links, .nav-actions { display: none; }
    .mobile-menu-toggle { display: flex; }

    .hero { padding: var(--s-xl) 0 var(--s-2xl); }
    .hero-content { grid-template-columns: 1fr; }
    .hero-text { gap: var(--s-sm); }
    .hero-visual { grid-template-columns: repeat(2, 1fr); }

    .benefits-content,
    .feature-detail-content,
    .contact-grid,
    .story-content {
        grid-template-columns: 1fr;
        gap: var(--s-lg);
    }

    .footer-content { grid-template-columns: 1fr 1fr; }

    .hiw-step { grid-template-columns: 1fr; gap: var(--s-sm); }
    .hiw-step-marker { position: static; flex-direction: row; align-items: center; }
    .hiw-step-num { width: 52px; height: 52px; font-size: 1.4rem; }

    .pilot-pricing-banner { flex-direction: column; text-align: center; }
    .pilot-banner .container { flex-direction: column; gap: 4px; }

    .use-case-grid,
    .feature-highlights,
    .key-benefits ul,
    .commitment-grid,
    .transparency-items,
    .practices-grid {
        grid-template-columns: 1fr;
    }

    .stats-dashboard, .visual-mockup { transform: none; }
}

@media (max-width: 640px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 1.85rem; }

    .container { padding: 0 var(--s-sm); }

    .concepts-grid,
    .four-apps-grid,
    .hiw-bridge-grid,
    .solutions-grid,
    .features-grid,
    .roadmap-grid,
    .fc-jobs-grid,
    .team-grid,
    .values-grid,
    .pricing-grid,
    .security-badges,
    .fc-apps-grid,
    .fc-privacy-grid,
    .dashboard-metrics {
        grid-template-columns: 1fr;
    }

    .footer-content { grid-template-columns: 1fr; }

    .hero-visual { grid-template-columns: 1fr; }
    .visual-card.card-1 { grid-column: auto; }

    .timeline-item { grid-template-columns: 1fr; }

    .legal-document { padding: var(--s-md); }

    .pricing-card.featured { transform: none; }
}
