:root {
    --brand: #fd7e14;
    --brand-dark: #d96a0e;
    --brand-soft: rgba(253, 126, 20, 0.08);
    --ink: #1a1d21;
    --ink-soft: #5b6168;
    --line: rgba(0, 0, 0, 0.08);
    --bg: #ffffff;
    --bg-soft: #fafafa;
}
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
    font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, 'Helvetica Neue', Arial, sans-serif;
    color: var(--ink);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
h1, h2, h3, h4 { font-weight: 700; letter-spacing: -0.02em; color: var(--ink); }
h1 { font-size: clamp(2.25rem, 5vw, 3.75rem); line-height: 1.05; }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); line-height: 1.15; }
p.lead { font-size: 1.2rem; color: var(--ink-soft); line-height: 1.55; }
.text-brand { color: var(--brand); }
.btn-brand {
    background: var(--brand); border-color: var(--brand); color: #fff;
    font-weight: 600; padding: .65rem 1.3rem; border-radius: .55rem;
    transition: background .15s, transform .15s;
}
.btn-brand:hover { background: var(--brand-dark); border-color: var(--brand-dark); color: #fff; transform: translateY(-1px); }
.btn-brand-outline {
    background: transparent; border: 2px solid var(--brand); color: var(--brand);
    font-weight: 600; padding: calc(.65rem - 1px) 1.3rem; border-radius: .55rem;
}
.btn-brand-outline:hover { background: var(--brand-soft); color: var(--brand-dark); border-color: var(--brand-dark); }

/* ── Top nav ─────────────────────────────────────────── */
.site-nav {
    position: sticky; top: 0; z-index: 50;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: saturate(150%) blur(8px);
    -webkit-backdrop-filter: saturate(150%) blur(8px);
    border-bottom: 1px solid var(--line);
}
.site-nav .inner {
    display: flex; align-items: center; gap: 2rem;
    padding: .8rem 0;
}
.site-nav .brand { display: inline-flex; align-items: center; text-decoration: none; }
.site-nav .brand img { height: 36px; }
.site-nav .anchor-nav { display: flex; gap: 1.6rem; margin: 0 auto; }
.site-nav .anchor-nav a {
    color: var(--ink); text-decoration: none; font-weight: 500; font-size: .95rem;
    padding: .25rem 0; border-bottom: 2px solid transparent;
    transition: border-color .15s, color .15s;
}
.site-nav .anchor-nav a:hover { color: var(--brand); border-bottom-color: var(--brand); }
@media (max-width: 880px) { .site-nav .anchor-nav { display: none; } }

/* ── Parallax bars (decorative) ──────────────────────
   Three depth layers:
   • pl-deep — palest peach, thick, slowest (atmospheric distance)
   • pl-mid  — brand orange, medium speed
   • pl-near — burnt orange, thin, fastest (foreground)
   Positions / widths / heights / speeds are generated server-side
   with a seeded RNG so the layout is deterministic but varied. */
.parallax-layer { position: fixed; inset: 0; pointer-events: none; overflow: hidden; z-index: 0; }
.pb { position: absolute; border-radius: 3px; will-change: transform; }
.pl-deep .pb { background: rgba(255, 196, 142, 0.045); }
.pl-mid  .pb { background: rgba(253, 126, 20,  0.06);  }
.pl-near .pb { background: rgba(199,  88,  5,  0.07);  }

/* ── Hero ────────────────────────────────────────────── */
.hero {
    position: relative; z-index: 1;
    padding: clamp(4rem, 9vw, 8rem) 0 clamp(3rem, 6vw, 5rem);
}
.hero .eyebrow {
    display: inline-block; padding: .35rem .75rem; border-radius: 999px;
    background: var(--brand-soft); color: var(--brand-dark);
    font-weight: 600; font-size: .8rem; letter-spacing: .04em; text-transform: uppercase;
    margin-bottom: 1.25rem;
}
.hero h1 span { color: var(--brand); }
.hero .cta-row { margin-top: 2rem; display: flex; gap: .75rem; flex-wrap: wrap; }
.hero-mock {
    margin-top: 3.5rem;
    background: linear-gradient(135deg, #fff 0%, #fdf6ee 100%);
    border: 1px solid var(--line); border-radius: 14px;
    box-shadow: 0 30px 60px -20px rgba(253, 126, 20, 0.18),
                0 8px 24px -10px rgba(0, 0, 0, 0.08);
    padding: 2.5rem 2rem; aspect-ratio: 16 / 7;
    display: flex; align-items: center; justify-content: center;
    color: var(--ink-soft);
}
.hero-mock .placeholder-grid {
    width: 100%; display: flex; flex-direction: column; gap: .45rem;
    position: relative;
}
.hero-mock .ph-row {
    display: grid; grid-template-columns: 12% 1fr; gap: .5rem; align-items: center;
}
.hero-mock .ph-label {
    color: #b3812d; font-size: .75rem; font-weight: 600;
}
.hero-mock .ph-track {
    position: relative; height: 18px;
    background: rgba(253, 126, 20, 0.08);
    border-radius: 3px;
}
.hero-mock .ph-bar {
    position: absolute; top: 0; bottom: 0;
    background: rgba(253, 126, 20, 0.55);
    border-radius: 3px;
}
/* Placeholder bar positions — order matches the .ph-row sequence Mo/Di/Mi/Do/Fr in landing.blade.php */
.hero-mock .ph-row:nth-of-type(1) .ph-bar:nth-of-type(1) { left: 8%;  width: 28%; }
.hero-mock .ph-row:nth-of-type(1) .ph-bar:nth-of-type(2) { left: 50%; width: 22%; }
.hero-mock .ph-row:nth-of-type(2) .ph-bar:nth-of-type(1) { left: 0%;  width: 20%; }
.hero-mock .ph-row:nth-of-type(2) .ph-bar:nth-of-type(2) { left: 33%; width: 30%; }
.hero-mock .ph-row:nth-of-type(3) .ph-bar:nth-of-type(1) { left: 17%; width: 34%; }
.hero-mock .ph-row:nth-of-type(3) .ph-bar:nth-of-type(2) { left: 67%; width: 17%; }
.hero-mock .ph-row:nth-of-type(4) .ph-bar:nth-of-type(1) { left: 0%;  width: 9%; }
.hero-mock .ph-row:nth-of-type(4) .ph-bar:nth-of-type(2) { left: 25%; width: 42%; }
.hero-mock .ph-row:nth-of-type(5) .ph-bar:nth-of-type(1) { left: 8%;  width: 17%; }
.hero-mock .ph-row:nth-of-type(5) .ph-bar:nth-of-type(2) { left: 42%; width: 42%; }

/* ── Sections ────────────────────────────────────────── */
section { position: relative; z-index: 1; }
section.padded { padding: clamp(4rem, 7vw, 6rem) 0; }
section.tinted { background: var(--bg-soft); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-eyebrow {
    font-size: .85rem; font-weight: 700; letter-spacing: .12em;
    text-transform: uppercase; color: var(--brand); margin-bottom: .75rem;
}
.section-intro { max-width: 700px; margin: 0 auto 3rem; text-align: center; }

/* ── Features ────────────────────────────────────────── */
.feature {
    background: #fff; border: 1px solid var(--line); border-radius: 12px;
    padding: 1.75rem; height: 100%;
    transition: transform .2s, box-shadow .2s, border-color .2s;
}
.feature:hover { transform: translateY(-2px); box-shadow: 0 12px 30px -10px rgba(0,0,0,.08); border-color: rgba(253, 126, 20, 0.35); }
.feature .icon {
    display: inline-flex; align-items: center; justify-content: center;
    width: 44px; height: 44px; border-radius: 10px;
    background: var(--brand-soft); color: var(--brand);
    font-size: 1.4rem; margin-bottom: 1rem;
}
.feature h3 { font-size: 1.15rem; margin-bottom: .5rem; }
.feature p { color: var(--ink-soft); margin: 0; font-size: .95rem; }

/* ── Stats ───────────────────────────────────────────── */
.stat-card {
    text-align: center; padding: 2.25rem 1rem;
    background: #fff; border: 1px solid var(--line); border-radius: 14px;
}
.stat-card .num {
    display: block;
    font-size: clamp(2.4rem, 4.5vw, 3.25rem); font-weight: 800;
    color: var(--brand); letter-spacing: -0.03em; line-height: 1;
    font-variant-numeric: tabular-nums;
}
.stat-card .label { display: block; margin-top: .9rem; color: var(--ink-soft); font-weight: 500; }
.stat-card .sub { display: block; margin-top: .35rem; color: var(--ink-soft); font-size: .82rem; opacity: .75; }

/* ── Pricing ─────────────────────────────────────────── */
.price-card {
    background: #fff; border: 1px solid var(--line); border-radius: 16px;
    padding: 2rem 1.75rem; height: 100%;
    display: flex; flex-direction: column;
}
.price-card.featured {
    border: 2px solid var(--brand);
    box-shadow: 0 20px 50px -20px rgba(253, 126, 20, 0.35);
    transform: scale(1.02);
    position: relative;
}
.price-card .tier-badge {
    position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
    background: var(--brand); color: #fff;
    padding: .3rem .85rem; border-radius: 999px;
    font-size: .75rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
}
.price-card h3 { font-size: 1.4rem; margin-bottom: .35rem; }
.price-card .tagline { color: var(--ink-soft); margin-bottom: 1.5rem; font-size: .95rem; }
.price-card .price { font-size: 2.5rem; font-weight: 800; color: var(--ink); letter-spacing: -0.03em; }
.price-card .price .unit { font-size: .95rem; font-weight: 500; color: var(--ink-soft); }
.price-card ul { list-style: none; padding: 0; margin: 1.75rem 0; flex-grow: 1; }
.price-card ul li { padding: .45rem 0; color: var(--ink-soft); display: flex; align-items: flex-start; gap: .55rem; font-size: .95rem; }
.price-card ul li .bi { color: var(--brand); margin-top: .2rem; flex-shrink: 0; }

/* ── Testimonials ────────────────────────────────────── */
.quote-card {
    background: #fff; border: 1px solid var(--line); border-radius: 14px;
    padding: 1.85rem; height: 100%; position: relative;
}
.quote-card::before {
    content: '\201C'; position: absolute; top: -10px; left: 14px;
    font-size: 4rem; color: var(--brand); line-height: 1; font-family: Georgia, serif;
    opacity: .25;
}
.quote-card blockquote { margin: 0 0 1.25rem; padding: 0; font-size: 1.02rem; color: var(--ink); line-height: 1.55; font-style: italic; }
.quote-card .author { display: flex; align-items: center; gap: .75rem; }
.quote-card .avatar {
    width: 42px; height: 42px; border-radius: 50%;
    background: var(--brand-soft); color: var(--brand);
    display: inline-flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: .95rem;
}
.quote-card .who { line-height: 1.2; }
.quote-card .who strong { display: block; color: var(--ink); }
.quote-card .who span { color: var(--ink-soft); font-size: .85rem; }

/* ── Footer ──────────────────────────────────────────── */
.site-footer {
    position: relative; z-index: 1;
    background: #15171b; color: #c5cbd2;
    padding: 4rem 0 1.5rem;
}
.site-footer h4 { color: #fff; font-size: 1rem; margin-bottom: 1rem; text-transform: uppercase; letter-spacing: .08em; }
.site-footer a { color: #c5cbd2; text-decoration: none; }
.site-footer a:hover { color: var(--brand); }
.site-footer .legal {
    margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.1);
    display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
    font-size: .85rem; color: #8a929b;
}
.site-footer .legal a { color: #8a929b; }
.site-footer .legal a:hover { color: var(--brand); }
/* Mirrors logo.svg bar geometry: x=10/22/34, w=28/34/24 → staggered Gantt cascade. */
.site-footer .brand-bars { display: inline-flex; flex-direction: column; gap: 3px; margin-right: .6rem; align-items: flex-start; }
.site-footer .brand-bars span { display: block; height: 4px; background: var(--brand); border-radius: 1.5px; }
.site-footer .brand-bars span:nth-child(1) { width: 14px; margin-left: 0; }
.site-footer .brand-bars span:nth-child(2) { width: 17px; margin-left: 6px; }
.site-footer .brand-bars span:nth-child(3) { width: 12px; margin-left: 12px; }
.site-footer .brand-strong { color: #fff; font-size: 1.1rem; }
.site-footer .footer-blurb { color: #8a929b; font-size: .95rem; max-width: 320px; }
.site-footer .footer-imprint { font-style: normal; color: #8a929b; font-size: .92rem; }
.site-footer .footer-imprint-note { color: #8a929b; font-size: .85rem; margin-top: .5rem; }
.site-footer .footer-contact-list { font-size: .95rem; }

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .pb { transform: none !important; }
}
