/* ==========================================================================
   SKAY-NET HR360 — LANDING / PUBLIC MARKETING SURFACE
   --------------------------------------------------------------------------
   Aesthetic: "instrument panel". The platform sells precision over warmth, so
   the page is built like a control surface — a measured hairline grid, mono
   technical labels, dense readouts, and one deep teal field that everything
   else is cut out of. Marketing chrome lives in the `land-` namespace and
   never touches the `hr-` (app shell) or `pub-` (portal) namespaces.

   Type: IBM Plex Sans / IBM Plex Mono. Chosen for full Latin-Extended *and*
   Cyrillic coverage — the product ships TR / EN / RU — plus the engineering
   register that fits an ERP module. Never falls back to a generic UI sans.
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@400;500;600;700&family=IBM+Plex+Mono:wght@400;500;600&display=swap');

.land {
    /* ── Field ──────────────────────────────────────────────────────────── */
    --land-void: #04201d;          /* deepest teal-black, hero field         */
    --land-deep: #072a26;
    --land-panel: #0b3630;         /* raised console surface                 */
    --land-panel-2: #0e423b;
    --land-hair: rgba(94, 234, 212, .16);   /* hairline rules                */
    --land-hair-soft: rgba(94, 234, 212, .08);
    --land-glow: #14b8a6;
    --land-glow-soft: #5eead4;

    /* ── Ink on dark ────────────────────────────────────────────────────── */
    --land-on-dark: #eafaf7;
    --land-on-dark-dim: #9fc4bf;
    --land-on-dark-faint: #6d9691;

    /* ── Ink on light ───────────────────────────────────────────────────── */
    --land-ink: #051f1c;
    --land-ink-2: #33544f;
    --land-ink-3: #6c8b87;
    --land-paper: #f4f8f7;
    --land-paper-2: #ffffff;
    --land-rule: #d9e6e3;

    --land-header-h: 68px;
    --land-max: 1240px;
    --land-gutter: clamp(20px, 4vw, 56px);

    --land-sans: 'IBM Plex Sans', 'Segoe UI', system-ui, sans-serif;
    --land-mono: 'IBM Plex Mono', ui-monospace, 'Cascadia Mono', Consolas, monospace;

    --h6-ease: cubic-bezier(.16, 1, .3, 1);

    font-family: var(--land-sans);
    color: var(--land-ink);
    background: var(--land-paper);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

/* `--land-header-h` is read by the anchor-scroll JS, which looks at :root. */
:root { --land-header-h: 68px; }

.land *, .land *::before, .land *::after { box-sizing: border-box; }
.land img, .land svg, .land video { display: block; max-width: 100%; }

.land-shell { overflow-x: clip; }

/* ── Shared layout primitives ─────────────────────────────────────────────── */
.land-wrap {
    max-width: var(--land-max);
    margin-inline: auto;
    padding-inline: var(--land-gutter);
    width: 100%;
}

.land-section { padding-block: clamp(64px, 9vw, 128px); position: relative; }
.land-section--tight { padding-block: clamp(48px, 6vw, 84px); }
.land-section--dark { background: var(--land-void); color: var(--land-on-dark); }
.land-section--paper { background: var(--land-paper-2); }

/* Hairline measurement grid — the page's signature texture. */
.land-grid-bg { position: relative; isolation: isolate; }
.land-grid-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    background-image:
        linear-gradient(to right, var(--land-hair-soft) 1px, transparent 1px),
        linear-gradient(to bottom, var(--land-hair-soft) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, #000 40%, transparent 100%);
    pointer-events: none;
}

/* Fine film grain, so large flat teal fields do not band on wide monitors. */
.land-grain::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    opacity: .035;
    mix-blend-mode: overlay;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ── Type scale ───────────────────────────────────────────────────────────── */
.land-kicker {
    font-family: var(--land-mono);
    font-size: 11.5px;
    font-weight: 500;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--land-glow-soft);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 18px;
}
.land-kicker::before {
    content: '';
    width: 26px;
    height: 1px;
    background: currentColor;
    opacity: .6;
}
.land-kicker--ink { color: var(--hr-primary); }

.land-h1 {
    font-size: clamp(38px, 6.2vw, 78px);
    line-height: .98;
    letter-spacing: -.035em;
    font-weight: 600;
    margin: 0 0 22px;
    text-wrap: balance;
}
.land-h2 {
    font-size: clamp(28px, 3.6vw, 47px);
    line-height: 1.06;
    letter-spacing: -.028em;
    font-weight: 600;
    margin: 0 0 16px;
    text-wrap: balance;
}
.land-h3 {
    font-size: clamp(19px, 1.6vw, 23px);
    line-height: 1.24;
    letter-spacing: -.018em;
    font-weight: 600;
    margin: 0 0 10px;
}
.land-lede {
    font-size: clamp(15.5px, 1.35vw, 19px);
    line-height: 1.62;
    color: var(--land-ink-2);
    margin: 0 0 30px;
    max-width: 60ch;
}
.land-section--dark .land-lede { color: var(--land-on-dark-dim); }
.land-body { font-size: 14.5px; line-height: 1.68; color: var(--land-ink-2); margin: 0; }
.land-section--dark .land-body { color: var(--land-on-dark-dim); }

.land-mono {
    font-family: var(--land-mono);
    font-variant-numeric: tabular-nums;
    font-feature-settings: 'tnum' 1;
}

/* Section heading block with a numbered mono index, like a spec sheet. */
.land-head { max-width: 68ch; margin-bottom: clamp(34px, 4vw, 56px); }
.land-head--center { margin-inline: auto; text-align: center; }
.land-head--center .land-kicker::before { display: none; }
.land-head--center .land-lede { margin-inline: auto; }

/* Heading plus a trailing action, e.g. "Newsroom … All news →" */
.land-head--split {
    max-width: none;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}
.land-head--split > div { max-width: 62ch; }

.land-kicker--center { justify-content: center; }
.land-kicker--center::before { display: none; }

/* ── Buttons ──────────────────────────────────────────────────────────────── */
.land-btn {
    --_bg: var(--hr-primary);
    --_fg: #fff;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 13px 22px;
    border: 1px solid transparent;
    border-radius: 10px;
    background: var(--_bg);
    color: var(--_fg);
    font-family: var(--land-sans);
    font-size: 14.5px;
    font-weight: 600;
    letter-spacing: -.01em;
    text-decoration: none;
    cursor: pointer;
    overflow: hidden;
    transition: transform .28s var(--h6-ease), box-shadow .28s var(--h6-ease), background .2s, color .2s, border-color .2s;
}
.land-btn > * { position: relative; z-index: 1; }
.land-btn:hover { transform: translateY(-2px); box-shadow: 0 12px 28px -10px rgba(15, 118, 110, .55); color: var(--_fg); }
.land-btn:active { transform: translateY(0); }
.land-btn:focus-visible { outline: 2px solid var(--land-glow); outline-offset: 3px; }

/* Accent sweep on hover — the one flourish the buttons get. */
.land-btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, transparent 20%, rgba(255, 255, 255, .22) 50%, transparent 80%);
    transform: translateX(-120%);
    transition: transform .7s var(--h6-ease);
}
.land-btn:hover::after { transform: translateX(120%); }

.land-btn--accent { --_bg: var(--hr-accent); --_fg: #04201d; }
.land-btn--ghost-dark {
    --_bg: transparent; --_fg: var(--land-on-dark);
    border-color: rgba(234, 250, 247, .26);
    backdrop-filter: blur(6px);
}
.land-btn--ghost-dark:hover { background: rgba(234, 250, 247, .1); box-shadow: none; }
.land-btn--ghost {
    --_bg: transparent; --_fg: var(--hr-primary);
    border-color: var(--land-rule);
}
.land-btn--ghost:hover { background: var(--hr-primary-light); box-shadow: none; }
.land-btn--sm { padding: 9px 15px; font-size: 13px; border-radius: 8px; }
.land-btn--lg { padding: 16px 28px; font-size: 15.5px; }

/* ── Header ───────────────────────────────────────────────────────────────── */
.land-header {
    position: sticky;
    top: 0;
    z-index: 60;
    height: var(--land-header-h);
    display: flex;
    align-items: center;
    background: color-mix(in srgb, var(--land-void) 72%, transparent);
    backdrop-filter: blur(18px) saturate(140%);
    border-bottom: 1px solid transparent;
    transition: background .3s, border-color .3s, box-shadow .3s;
}
.land-header.is-scrolled {
    background: color-mix(in srgb, var(--land-void) 94%, transparent);
    border-bottom-color: var(--land-hair);
    box-shadow: 0 12px 30px -22px rgba(0, 0, 0, .9);
}
.land-header-inner {
    display: flex;
    align-items: center;
    gap: 20px;
    width: 100%;
}

.land-brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    text-decoration: none;
    flex-shrink: 0;
    margin-right: auto;
}
.land-brand img { width: 34px; height: 34px; }
.land-brand-name {
    font-size: 15.5px;
    font-weight: 600;
    letter-spacing: -.02em;
    color: var(--land-on-dark);
    line-height: 1.1;
}
.land-brand-name b { color: var(--land-glow-soft); font-weight: 600; }
.land-brand-sub {
    font-family: var(--land-mono);
    font-size: 9.5px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--land-on-dark-faint);
}

.land-nav { display: flex; align-items: center; gap: 2px; }
.land-nav a {
    position: relative;
    padding: 8px 13px;
    border-radius: 8px;
    font-size: 13.5px;
    font-weight: 500;
    color: var(--land-on-dark-dim);
    text-decoration: none;
    transition: color .2s, background .2s;
    white-space: nowrap;
}
.land-nav a:hover { color: var(--land-on-dark); background: rgba(234, 250, 247, .07); }
.land-nav a.is-current { color: var(--land-glow-soft); }
.land-nav a.is-current::after {
    content: '';
    position: absolute;
    left: 13px; right: 13px; bottom: 2px;
    height: 1.5px;
    background: currentColor;
    border-radius: 2px;
}

.land-header-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.land-header-cta { flex-shrink: 0; }

/* Sign-in inside the mobile drop-down; suppressed while the header CTA is shown. */
.land-nav-signin { display: none; }

/* Language selector — mono, segmented, reads as a hardware switch. */
.land-lang {
    display: inline-flex;
    padding: 2px;
    border: 1px solid var(--land-hair);
    border-radius: 8px;
    background: rgba(4, 32, 29, .5);
}
.land-lang button {
    appearance: none;
    border: 0;
    background: transparent;
    cursor: pointer;
    padding: 5px 9px;
    border-radius: 6px;
    font-family: var(--land-mono);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .06em;
    color: var(--land-on-dark-faint);
    transition: color .2s, background .2s;
}
.land-lang button:hover { color: var(--land-on-dark); }
.land-lang button.is-active { background: var(--hr-primary); color: #fff; }

.land-nav-toggle {
    display: none;
    appearance: none;
    border: 1px solid var(--land-hair);
    background: transparent;
    color: var(--land-on-dark);
    width: 38px; height: 38px;
    border-radius: 9px;
    cursor: pointer;
    font-size: 17px;
}

/* ── Hero ─────────────────────────────────────────────────────────────────── */
.land-hero {
    position: relative;
    background: var(--land-void);
    color: var(--land-on-dark);
    padding-block: clamp(56px, 8vw, 104px) clamp(72px, 9vw, 120px);
    overflow: hidden;
    isolation: isolate;
}

/* Two offset radial fields give the flat void depth without a literal blob. */
.land-hero::before {
    content: '';
    position: absolute;
    z-index: -2;
    width: 120vw; height: 120vh;
    top: -55%; right: -35%;
    background:
        radial-gradient(closest-side, rgba(20, 184, 166, .30), transparent 72%),
        radial-gradient(closest-side, rgba(2, 132, 199, .20), transparent 70%);
    background-position: 30% 40%, 70% 65%;
    background-size: 62% 62%, 55% 55%;
    background-repeat: no-repeat;
    filter: blur(10px);
}

.land-hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(0, .98fr);
    gap: clamp(32px, 5vw, 68px);
    align-items: center;
}

.land-hero-copy { position: relative; z-index: 2; }

/* Availability pill — small, factual, mono. */
.land-pill {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 6px 13px 6px 10px;
    border: 1px solid var(--land-hair);
    border-radius: 999px;
    background: rgba(11, 54, 48, .6);
    font-family: var(--land-mono);
    font-size: 11px;
    letter-spacing: .07em;
    color: var(--land-on-dark-dim);
    margin-bottom: 24px;
    text-decoration: none;
}
.land-pill:hover { color: var(--land-on-dark); border-color: var(--land-glow); }
.land-dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--hr-success);
    box-shadow: 0 0 0 0 rgba(22, 163, 74, .7);
    animation: land-pulse 2.4s infinite;
    flex-shrink: 0;
}
@keyframes land-pulse {
    70% { box-shadow: 0 0 0 9px rgba(22, 163, 74, 0); }
    100% { box-shadow: 0 0 0 0 rgba(22, 163, 74, 0); }
}

.land-h1 .land-h1-accent {
    color: var(--land-glow-soft);
    /* Underlay rule that draws in on load, tying the headline to the grid. */
    background: linear-gradient(currentColor, currentColor) left bottom / 0% 2px no-repeat;
    padding-bottom: 4px;
    animation: land-rule 1.1s .7s var(--h6-ease) forwards;
}
@keyframes land-rule { to { background-size: 100% 2px; } }

.land-hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 34px; }

/* Trust row: logos are typographic, not fake client marks. */
.land-trust { border-top: 1px solid var(--land-hair); padding-top: 22px; }
.land-trust-label {
    font-family: var(--land-mono);
    font-size: 10.5px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--land-on-dark-faint);
    margin-bottom: 14px;
}
.land-trust-row { display: flex; flex-wrap: wrap; gap: 10px 26px; }
.land-trust-item {
    display: flex;
    align-items: baseline;
    gap: 7px;
    font-size: 13px;
    color: var(--land-on-dark-dim);
}
.land-trust-item b {
    font-family: var(--land-mono);
    font-size: 16px;
    font-weight: 600;
    color: var(--land-on-dark);
}

/* ── Hero console ─────────────────────────────────────────────────────────
   The centrepiece: a mock HR360 readout. It exists so the hero *demonstrates*
   the product instead of describing it.                                      */
.land-console {
    position: relative;
    perspective: 1400px;
    z-index: 1;
    /* Head-room for the annotation chip, which sits fully above the frame so it
       never covers the console's title bar. */
    padding-top: 34px;
}
.land-console-frame {
    border: 1px solid var(--land-hair);
    border-radius: 16px;
    background: linear-gradient(165deg, var(--land-panel) 0%, var(--land-deep) 100%);
    box-shadow:
        0 1px 0 rgba(234, 250, 247, .06) inset,
        0 50px 90px -50px rgba(0, 0, 0, .9),
        0 0 0 1px rgba(4, 32, 29, .6);
    overflow: hidden;
    transform: rotateX(var(--h6-rx, 0deg)) rotateY(var(--h6-ry, 0deg));
    transform-style: preserve-3d;
    transition: transform .5s var(--h6-ease);
}

.land-console-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 15px;
    border-bottom: 1px solid var(--land-hair);
    background: rgba(4, 32, 29, .45);
}
.land-console-lamps { display: flex; gap: 6px; }
.land-console-lamps i {
    width: 9px; height: 9px;
    border-radius: 50%;
    background: rgba(234, 250, 247, .18);
    display: block;
}
.land-console-lamps i:first-child { background: var(--hr-accent); }
.land-console-title {
    font-family: var(--land-mono);
    font-size: 11px;
    letter-spacing: .08em;
    color: var(--land-on-dark-faint);
}
.land-console-live {
    margin-left: auto;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--land-mono);
    font-size: 10px;
    letter-spacing: .12em;
    color: var(--hr-accent);
}

.land-console-body { padding: 18px; display: grid; gap: 14px; }

/* KPI readout grid */
.land-readouts {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}
.land-readout {
    padding: 13px 13px 11px;
    border: 1px solid var(--land-hair-soft);
    border-radius: 11px;
    background: rgba(4, 32, 29, .42);
    position: relative;
    overflow: hidden;
}
.land-readout-label {
    font-family: var(--land-mono);
    font-size: 9.5px;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--land-on-dark-faint);
    margin-bottom: 6px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.land-readout-value {
    font-family: var(--land-mono);
    font-variant-numeric: tabular-nums;
    font-size: clamp(19px, 2vw, 25px);
    font-weight: 600;
    line-height: 1;
    color: var(--land-on-dark);
    letter-spacing: -.02em;
}
.land-readout-delta {
    font-family: var(--land-mono);
    font-size: 10.5px;
    margin-top: 5px;
    display: inline-flex;
    align-items: center;
    gap: 3px;
}
.land-readout-delta.up { color: var(--land-glow-soft); }
.land-readout-delta.down { color: #fca5a5; }
.land-readout-spark { height: 34px; margin-top: 8px; }
.land-readout-spark svg { width: 100%; height: 100%; overflow: visible; }

/* Pipeline bars — recruitment funnel as a stacked readout */
.land-pipe { display: grid; gap: 8px; }
.land-pipe-row { display: grid; grid-template-columns: 108px 1fr 46px; gap: 10px; align-items: center; }
.land-pipe-name {
    font-size: 11.5px;
    color: var(--land-on-dark-dim);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.land-pipe-track {
    height: 7px;
    border-radius: 4px;
    background: rgba(234, 250, 247, .08);
    overflow: hidden;
}
.land-pipe-fill {
    /* The track is a grid item, not a grid container, so this span would stay inline
       and silently ignore width/height — leaving the funnel bars invisible. */
    display: block;
    height: 100%;
    border-radius: 4px;
    background: linear-gradient(90deg, var(--hr-primary), var(--hr-accent));
    width: 0;
    animation: land-fill 1.5s var(--h6-ease) forwards;
    animation-delay: var(--h6-delay, 0ms);
}
@keyframes land-fill { to { width: var(--_w, 50%); } }
.land-pipe-val {
    font-family: var(--land-mono);
    font-variant-numeric: tabular-nums;
    font-size: 11.5px;
    color: var(--land-on-dark);
    text-align: right;
}

/* Rotating activity feed */
.land-feed {
    border-top: 1px solid var(--land-hair-soft);
    padding-top: 12px;
    min-height: 46px;
    position: relative;
}
.land-feed-item {
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity .5s var(--h6-ease), transform .5s var(--h6-ease);
    position: absolute;
    inset: 12px 0 auto 0;
    pointer-events: none;
}
.land-feed-item.is-active { opacity: 1; transform: none; }
.land-feed-avatar { width: 26px; height: 26px; border-radius: 50%; flex-shrink: 0; }
.land-feed-text { font-size: 12.5px; color: var(--land-on-dark-dim); line-height: 1.35; }
.land-feed-text b { color: var(--land-on-dark); font-weight: 600; }
.land-feed-time {
    margin-left: auto;
    font-family: var(--land-mono);
    font-size: 10px;
    color: var(--land-on-dark-faint);
    flex-shrink: 0;
}

/* Floating annotation chips pinned to the console */
.land-chip {
    position: absolute;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 13px;
    border: 1px solid var(--land-hair);
    border-radius: 11px;
    background: rgba(11, 54, 48, .9);
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 40px -22px rgba(0, 0, 0, .9);
    font-size: 12px;
    color: var(--land-on-dark);
    white-space: nowrap;
}
.land-chip i { color: var(--land-glow-soft); font-size: 14px; }
.land-chip--tl { top: 0; left: -12px; animation: land-float 6s ease-in-out infinite; }
.land-chip--br { bottom: -18px; right: -14px; animation: land-float 7.5s ease-in-out .8s infinite; }
@keyframes land-float {
    50% { transform: translateY(-9px); }
}

/* ── Metric band ──────────────────────────────────────────────────────────── */
.land-band {
    border-block: 1px solid var(--land-hair);
    background: var(--land-deep);
    color: var(--land-on-dark);
}
.land-band-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}
.land-band-cell {
    padding: clamp(22px, 3vw, 34px) clamp(14px, 2vw, 26px);
    border-right: 1px solid var(--land-hair-soft);
}
.land-band-cell:last-child { border-right: 0; }
.land-band-value {
    font-family: var(--land-mono);
    font-variant-numeric: tabular-nums;
    font-size: clamp(28px, 3.6vw, 44px);
    font-weight: 600;
    letter-spacing: -.03em;
    line-height: 1;
    color: var(--land-on-dark);
    display: block;
}
.land-band-label {
    font-size: 13px;
    color: var(--land-on-dark-dim);
    margin-top: 9px;
    line-height: 1.4;
}
.land-band-note {
    font-family: var(--land-mono);
    font-size: 10px;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--land-on-dark-faint);
    margin-top: 4px;
}

/* ── Module grid ──────────────────────────────────────────────────────────── */
.land-modules {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(268px, 1fr));
    gap: 1px;
    background: var(--land-rule);
    border: 1px solid var(--land-rule);
    border-radius: 16px;
    overflow: hidden;
}
.land-module {
    appearance: none;
    text-align: left;
    border: 0;
    background: var(--land-paper-2);
    padding: 26px 24px 24px;
    cursor: pointer;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-height: 196px;
    transition: background .3s var(--h6-ease);
    font-family: inherit;
    color: inherit;
}
.land-module::after {
    /* Accent rule that grows from the left edge on hover. */
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 3px;
    background: var(--_accent, var(--hr-primary));
    transform: scaleY(0);
    transform-origin: top;
    transition: transform .38s var(--h6-ease);
}
.land-module:hover, .land-module:focus-visible { background: var(--land-paper); outline: none; }
.land-module:hover::after, .land-module:focus-visible::after { transform: scaleY(1); }
.land-module:focus-visible { box-shadow: inset 0 0 0 2px var(--hr-primary); }

.land-module-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; }
.land-module-icon {
    width: 42px; height: 42px;
    border-radius: 11px;
    display: grid;
    place-items: center;
    font-size: 19px;
    color: var(--_accent, var(--hr-primary));
    background: color-mix(in srgb, var(--_accent, var(--hr-primary)) 11%, transparent);
    flex-shrink: 0;
}
.land-module-idx {
    font-family: var(--land-mono);
    font-size: 10.5px;
    letter-spacing: .1em;
    color: var(--land-ink-3);
}
.land-module-name {
    font-size: 16.5px;
    font-weight: 600;
    letter-spacing: -.018em;
    color: var(--land-ink);
    margin: 2px 0 0;
}
.land-module-desc { font-size: 13.5px; line-height: 1.58; color: var(--land-ink-2); margin: 0; }
.land-module-more {
    margin-top: auto;
    font-family: var(--land-mono);
    font-size: 10.5px;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--_accent, var(--hr-primary));
    display: inline-flex;
    align-items: center;
    gap: 6px;
    opacity: 0;
    transform: translateX(-4px);
    transition: opacity .3s var(--h6-ease), transform .3s var(--h6-ease);
}
.land-module:hover .land-module-more,
.land-module:focus-visible .land-module-more { opacity: 1; transform: none; }

/* ── Product tour (tabs) ──────────────────────────────────────────────────── */
.land-tabs { }
.land-tablist {
    position: relative;
    display: flex;
    gap: 4px;
    overflow-x: auto;
    scrollbar-width: none;
    border-bottom: 1px solid var(--land-hair);
    margin-bottom: clamp(24px, 3vw, 40px);
    padding-bottom: 2px;
}
.land-tablist::-webkit-scrollbar { display: none; }
.land-tablist button {
    appearance: none;
    border: 0;
    background: transparent;
    cursor: pointer;
    padding: 12px 17px;
    font-family: var(--land-sans);
    font-size: 13.5px;
    font-weight: 500;
    color: var(--land-on-dark-dim);
    white-space: nowrap;
    border-radius: 8px 8px 0 0;
    transition: color .22s, background .22s;
}
.land-tablist button:hover { color: var(--land-on-dark); background: rgba(234, 250, 247, .05); }
.land-tablist button.is-active { color: var(--land-on-dark); font-weight: 600; }
.land-tab-indicator {
    position: absolute;
    bottom: -1px; left: 0;
    height: 2px;
    background: var(--hr-accent);
    border-radius: 2px;
    transition: transform .42s var(--h6-ease), width .42s var(--h6-ease);
    pointer-events: none;
}

.land-tabpanel[hidden] { display: none; }
.land-tour {
    display: grid;
    grid-template-columns: minmax(0, .88fr) minmax(0, 1.12fr);
    gap: clamp(28px, 4vw, 56px);
    align-items: center;
    animation: land-fade-up .5s var(--h6-ease) both;
}
@keyframes land-fade-up {
    from { opacity: 0; transform: translateY(14px); }
}
.land-tour-list { list-style: none; margin: 22px 0 0; padding: 0; display: grid; gap: 13px; }
.land-tour-list li {
    display: grid;
    grid-template-columns: 20px 1fr;
    gap: 12px;
    font-size: 14px;
    line-height: 1.55;
    color: var(--land-on-dark-dim);
}
.land-tour-list i { color: var(--hr-accent); font-size: 15px; line-height: 1.4; }

/* Video frame used across the tour and the video library */
.land-videoframe {
    position: relative;
    border: 1px solid var(--land-hair);
    border-radius: 14px;
    overflow: hidden;
    background: var(--land-deep);
    box-shadow: 0 40px 80px -44px rgba(0, 0, 0, .95);
    aspect-ratio: 16 / 9;
}
.land-videoframe video, .land-videoframe img { width: 100%; height: 100%; object-fit: cover; }
.land-videoframe-bar {
    position: absolute;
    inset: auto 0 0 0;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: linear-gradient(transparent, rgba(4, 32, 29, .92));
    font-family: var(--land-mono);
    font-size: 10.5px;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--land-on-dark-dim);
}
.land-videoframe-play {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    appearance: none;
    border: 0;
    background: transparent;
    cursor: pointer;
    padding: 0;
}
.land-videoframe-play span {
    width: 68px; height: 68px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(234, 250, 247, .94);
    color: var(--hr-primary);
    font-size: 24px;
    padding-left: 4px;
    box-shadow: 0 0 0 0 rgba(20, 184, 166, .5);
    transition: transform .32s var(--h6-ease), box-shadow .32s;
}
.land-videoframe-play:hover span { transform: scale(1.09); box-shadow: 0 0 0 14px rgba(20, 184, 166, .18); }
.land-videoframe-play:focus-visible span { outline: 3px solid var(--hr-accent); outline-offset: 4px; }

/* ── Analytics showcase ───────────────────────────────────────────────────── */
/* Two columns rather than auto-fit: with four cards, a three-up grid strands the
   fourth alone on its own row. A 2×2 also gives the charts more width to read in. */
.land-analytics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(440px, 1fr));
    gap: 18px;
}
.land-chartcard {
    border: 1px solid var(--land-rule);
    border-radius: 14px;
    background: var(--land-paper-2);
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.land-chartcard-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; }
.land-chartcard-title { font-size: 14px; font-weight: 600; color: var(--land-ink); margin: 0; }
.land-chartcard-sub {
    font-family: var(--land-mono);
    font-size: 10px;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--land-ink-3);
    margin-top: 3px;
}
.land-chartcard-value {
    font-family: var(--land-mono);
    font-variant-numeric: tabular-nums;
    font-size: 26px;
    font-weight: 600;
    letter-spacing: -.025em;
    color: var(--land-ink);
    line-height: 1;
}
.land-chip-delta {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 3px 8px;
    border-radius: 999px;
    font-family: var(--land-mono);
    font-size: 10.5px;
    font-weight: 500;
}
.land-chip-delta.up { background: #dcfce7; color: #15803d; }
.land-chip-delta.down { background: #fee2e2; color: #b91c1c; }
.land-chip-delta.flat { background: #f1f5f9; color: #475569; }

/* Column chart built from divs — no chart library on the marketing page. */
.land-cols { display: flex; align-items: flex-end; gap: 6px; height: 128px; }
.land-col { flex: 1; display: flex; flex-direction: column; justify-content: flex-end; gap: 6px; height: 100%; }
.land-col-bar {
    border-radius: 5px 5px 2px 2px;
    background: linear-gradient(180deg, var(--hr-accent), var(--hr-primary));
    height: 0;
    animation: land-grow 1.1s var(--h6-ease) forwards;
    animation-delay: var(--h6-delay, 0ms);
    min-height: 3px;
}
@keyframes land-grow { to { height: var(--_h, 40%); } }
.land-col-tick {
    font-family: var(--land-mono);
    font-size: 9.5px;
    color: var(--land-ink-3);
    text-align: center;
}

/* Donut for diversity / composition splits */
.land-donut { display: flex; align-items: center; gap: 18px; }
.land-donut svg { width: 112px; height: 112px; flex-shrink: 0; transform: rotate(-90deg); }
.land-donut circle { fill: none; stroke-width: 13; stroke-linecap: round; }
.land-donut-legend { display: grid; gap: 8px; font-size: 12.5px; }
.land-donut-legend div { display: flex; align-items: center; gap: 8px; color: var(--land-ink-2); }
.land-donut-legend i { width: 9px; height: 9px; border-radius: 3px; flex-shrink: 0; }
.land-donut-legend b { margin-left: auto; font-family: var(--land-mono); color: var(--land-ink); }

/* 9-box talent grid */
.land-ninebox { display: grid; grid-template-columns: repeat(3, 1fr); gap: 5px; }
.land-ninebox div {
    aspect-ratio: 1.55;
    border-radius: 7px;
    display: grid;
    place-items: center;
    font-family: var(--land-mono);
    font-size: 12.5px;
    font-weight: 600;
    color: #04201d;
}

/* ── Newsroom (modal-driven, no page navigation) ──────────────────────────── */
.land-news {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}
.land-newscard {
    appearance: none;
    border: 1px solid var(--land-rule);
    border-radius: 14px;
    background: var(--land-paper-2);
    padding: 0;
    overflow: hidden;
    cursor: pointer;
    text-align: left;
    display: flex;
    flex-direction: column;
    font-family: inherit;
    transition: transform .34s var(--h6-ease), box-shadow .34s var(--h6-ease), border-color .3s;
}
.land-newscard:hover, .land-newscard:focus-visible {
    transform: translateY(-4px);
    box-shadow: 0 26px 50px -30px rgba(5, 31, 28, .5);
    border-color: color-mix(in srgb, var(--hr-primary) 40%, transparent);
    outline: none;
}
.land-newscard-media { aspect-ratio: 16 / 9; overflow: hidden; background: var(--land-deep); }
.land-newscard-media img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform .6s var(--h6-ease);
}
.land-newscard:hover .land-newscard-media img { transform: scale(1.045); }
.land-newscard-body { padding: 18px; display: flex; flex-direction: column; gap: 9px; flex: 1; }
.land-newscard-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--land-mono);
    font-size: 10px;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--land-ink-3);
}
.land-newscard-title {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.34;
    letter-spacing: -.018em;
    color: var(--land-ink);
    margin: 0;
}
.land-newscard-excerpt { font-size: 13.5px; line-height: 1.6; color: var(--land-ink-2); margin: 0; }
.land-newscard-foot {
    margin-top: auto;
    padding-top: 4px;
    font-family: var(--land-mono);
    font-size: 10.5px;
    letter-spacing: .09em;
    text-transform: uppercase;
    color: var(--hr-primary);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.land-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 3px 9px;
    border-radius: 6px;
    background: var(--hr-primary-100);
    color: var(--hr-primary-dark);
    font-family: var(--land-mono);
    font-size: 10px;
    letter-spacing: .08em;
    text-transform: uppercase;
    font-weight: 500;
}
.land-tag--dark { background: rgba(20, 184, 166, .16); color: var(--land-glow-soft); }

/* ── Jobs ─────────────────────────────────────────────────────────────────── */
.land-jobs { border: 1px solid var(--land-rule); border-radius: 14px; overflow: hidden; background: var(--land-paper-2); }
.land-job {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 16px;
    align-items: center;
    padding: 18px 22px;
    border-bottom: 1px solid var(--land-rule);
    transition: background .25s;
}
.land-job:last-child { border-bottom: 0; }
.land-job:hover { background: var(--hr-primary-light); }
.land-job-title { font-size: 15.5px; font-weight: 600; color: var(--land-ink); margin: 0 0 6px; letter-spacing: -.015em; }
.land-job-meta { display: flex; flex-wrap: wrap; gap: 6px 16px; font-size: 12.5px; color: var(--land-ink-3); }
.land-job-meta span { display: inline-flex; align-items: center; gap: 5px; }

/* ── Comparison table ─────────────────────────────────────────────────────── */
.land-tablewrap {
    overflow-x: auto;
    border: 1px solid var(--land-hair);
    border-radius: 14px;
    background: var(--land-deep);
}
.land-table { width: 100%; border-collapse: collapse; min-width: 720px; }
.land-table th, .land-table td {
    padding: 14px 16px;
    text-align: left;
    border-bottom: 1px solid var(--land-hair-soft);
    font-size: 13.5px;
}
.land-table thead th {
    font-family: var(--land-mono);
    font-size: 10.5px;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--land-on-dark-faint);
    font-weight: 500;
    background: rgba(4, 32, 29, .5);
    position: sticky;
    top: 0;
}
.land-table tbody th { font-weight: 500; color: var(--land-on-dark-dim); }
.land-table td { text-align: center; color: var(--land-on-dark-dim); }
.land-table .is-us { background: rgba(20, 184, 166, .09); color: var(--land-on-dark); }
.land-table thead th.is-us { background: rgba(20, 184, 166, .16); color: var(--land-glow-soft); }
.land-table tr:last-child th, .land-table tr:last-child td { border-bottom: 0; }
.land-yes { color: var(--hr-accent); font-size: 16px; }
.land-no { color: rgba(234, 250, 247, .22); font-size: 15px; }
.land-partial { color: var(--hr-warning); font-size: 15px; }

/* ── FAQ ──────────────────────────────────────────────────────────────────── */
.land-faq { border-top: 1px solid var(--land-rule); max-width: 860px; }
.land-faq-item { border-bottom: 1px solid var(--land-rule); }
.land-faq-trigger {
    appearance: none;
    width: 100%;
    border: 0;
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 22px 4px;
    text-align: left;
    font-family: inherit;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: -.015em;
    color: var(--land-ink);
    transition: color .2s;
}
.land-faq-trigger:hover { color: var(--hr-primary); }
.land-faq-trigger:focus-visible { outline: 2px solid var(--hr-primary); outline-offset: 2px; border-radius: 6px; }
.land-faq-num {
    font-family: var(--land-mono);
    font-size: 11px;
    color: var(--land-ink-3);
    flex-shrink: 0;
    letter-spacing: .08em;
}
.land-faq-icon {
    margin-left: auto;
    flex-shrink: 0;
    width: 28px; height: 28px;
    border: 1px solid var(--land-rule);
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 13px;
    color: var(--hr-primary);
    transition: transform .38s var(--h6-ease), background .25s, border-color .25s;
}
.land-faq-item.is-open .land-faq-icon {
    transform: rotate(45deg);
    background: var(--hr-primary);
    border-color: var(--hr-primary);
    color: #fff;
}
.land-faq-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height .45s var(--h6-ease);
}
.land-faq-panel > div { padding: 0 4px 24px 45px; font-size: 14.5px; line-height: 1.72; color: var(--land-ink-2); }

/* ── Final CTA ────────────────────────────────────────────────────────────── */
.land-cta {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    background: linear-gradient(140deg, var(--land-panel) 0%, var(--land-void) 55%, #0b3f4a 100%);
    border: 1px solid var(--land-hair);
    padding: clamp(36px, 6vw, 72px);
    text-align: center;
    color: var(--land-on-dark);
}
.land-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(to right, var(--land-hair-soft) 1px, transparent 1px),
        linear-gradient(to bottom, var(--land-hair-soft) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: radial-gradient(ellipse 70% 80% at 50% 50%, #000, transparent 75%);
    pointer-events: none;
}
.land-cta > * { position: relative; }
.land-cta .land-h2 { margin-inline: auto; max-width: 22ch; }
.land-cta .land-lede { margin-inline: auto; max-width: 54ch; }
.land-cta-actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.land-cta-note {
    margin-top: 22px;
    font-family: var(--land-mono);
    font-size: 11px;
    letter-spacing: .08em;
    color: var(--land-on-dark-faint);
}

/* ── Footer ───────────────────────────────────────────────────────────────── */
.land-footer { background: var(--land-void); color: var(--land-on-dark-dim); padding-block: clamp(44px, 6vw, 72px) 28px; border-top: 1px solid var(--land-hair); }
.land-footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) repeat(3, minmax(0, 1fr));
    gap: clamp(24px, 4vw, 48px);
    padding-bottom: 34px;
    border-bottom: 1px solid var(--land-hair-soft);
}
.land-footer-col h4 {
    font-family: var(--land-mono);
    font-size: 10.5px;
    letter-spacing: .13em;
    text-transform: uppercase;
    color: var(--land-on-dark-faint);
    margin: 0 0 15px;
    font-weight: 500;
}
.land-footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.land-footer-col a { color: var(--land-on-dark-dim); text-decoration: none; font-size: 13.5px; transition: color .2s; }
.land-footer-col a:hover { color: var(--land-glow-soft); }
.land-footer-bottom {
    padding-top: 22px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px 24px;
    align-items: center;
    justify-content: space-between;
    font-family: var(--land-mono);
    font-size: 11px;
    color: var(--land-on-dark-faint);
    letter-spacing: .05em;
}
/* Product-family strip — makes the Skay-Net ERP context explicit. */
.land-family { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.land-family span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 10px;
    border: 1px solid var(--land-hair-soft);
    border-radius: 7px;
    font-family: var(--land-mono);
    font-size: 10.5px;
    letter-spacing: .06em;
    color: var(--land-on-dark-faint);
}
.land-family span i { width: 7px; height: 7px; border-radius: 2px; flex-shrink: 0; }
.land-family span.is-current { border-color: var(--hr-accent); color: var(--land-glow-soft); }

/* ── Modal ────────────────────────────────────────────────────────────────── */
.land-modal {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: grid;
    place-items: center;
    padding: clamp(12px, 3vw, 40px);
    background: rgba(4, 20, 18, .74);
    backdrop-filter: blur(7px);
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s var(--h6-ease), visibility .3s;
}
.land-modal.is-open { opacity: 1; visibility: visible; }
.land-modal-panel {
    position: relative;
    width: min(100%, 760px);
    max-height: min(88vh, 900px);
    display: flex;
    flex-direction: column;
    background: var(--land-paper-2);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 60px 120px -40px rgba(0, 0, 0, .7);
    transform: translateY(20px) scale(.985);
    opacity: 0;
    transition: transform .42s var(--h6-ease), opacity .42s var(--h6-ease);
}
.land-modal.is-open .land-modal-panel { transform: none; opacity: 1; }
.land-modal-panel--wide { width: min(100%, 1000px); }
.land-modal-panel--dark { background: var(--land-deep); color: var(--land-on-dark); }

.land-modal-media { flex-shrink: 0; aspect-ratio: 16 / 9; background: var(--land-deep); overflow: hidden; }
.land-modal-media img, .land-modal-media video { width: 100%; height: 100%; object-fit: cover; }

.land-modal-body { padding: clamp(22px, 3vw, 34px); overflow-y: auto; }
.land-modal-kicker {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--land-mono);
    font-size: 10.5px;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--land-ink-3);
    margin-bottom: 12px;
}
.land-modal-title {
    font-size: clamp(21px, 2.4vw, 29px);
    font-weight: 600;
    letter-spacing: -.026em;
    line-height: 1.16;
    color: var(--land-ink);
    margin: 0 0 16px;
}
.land-modal-panel--dark .land-modal-title { color: var(--land-on-dark); }
.land-modal-text { font-size: 15px; line-height: 1.76; color: var(--land-ink-2); white-space: pre-wrap; }
.land-modal-panel--dark .land-modal-text { color: var(--land-on-dark-dim); }
.land-modal-foot {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    justify-content: space-between;
    padding: 16px clamp(22px, 3vw, 34px);
    border-top: 1px solid var(--land-rule);
    background: var(--land-paper);
    flex-shrink: 0;
}
.land-modal-panel--dark .land-modal-foot { border-color: var(--land-hair); background: rgba(4, 32, 29, .5); }

.land-modal-close {
    position: absolute;
    top: 12px; right: 12px;
    z-index: 4;
    appearance: none;
    width: 38px; height: 38px;
    border: 0;
    border-radius: 50%;
    background: rgba(4, 32, 29, .62);
    backdrop-filter: blur(6px);
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    display: grid;
    place-items: center;
    transition: background .22s, transform .22s;
}
.land-modal-close:hover { background: var(--hr-danger); transform: rotate(90deg); }
.land-modal-close:focus-visible { outline: 2px solid var(--hr-accent); outline-offset: 2px; }

/* Feature list inside module modals */
.land-modal-features { list-style: none; margin: 20px 0 0; padding: 0; display: grid; gap: 11px; }
.land-modal-features li {
    display: grid;
    grid-template-columns: 18px 1fr;
    gap: 12px;
    font-size: 14px;
    line-height: 1.55;
    color: var(--land-ink-2);
}
.land-modal-features i { color: var(--hr-primary); font-size: 14px; line-height: 1.5; }

body.h6-scroll-lock { overflow: hidden; }

/* ── Small shared pieces ──────────────────────────────────────────────────── */

/* Empty state reusing the chart-card frame, for sections with no seeded rows. */
.land-empty { text-align: center; padding: 48px 24px; }
.land-empty .land-h3 { margin-bottom: 6px; }

.land-module-icon--sm { width: 34px; height: 34px; font-size: 16px; border-radius: 9px; }

.land-modal-foot-note {
    font-size: 11px;
    color: var(--land-ink-3);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.land-modal-panel--dark .land-modal-foot-note { color: var(--land-on-dark-faint); }

.land-job-meta--modal { margin-bottom: 18px; }

.land-refer { margin-top: 18px; text-align: center; }
.land-refer a { color: var(--hr-primary); font-weight: 600; text-decoration: none; }
.land-refer a:hover { text-decoration: underline; }

.land-legend { display: flex; flex-wrap: wrap; gap: 8px 22px; margin-top: 16px; }
.land-legend .land-trust-item { align-items: center; }

/* ── Reveal animation ─────────────────────────────────────────────────────── */
[data-reveal] {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .72s var(--h6-ease), transform .72s var(--h6-ease);
}
[data-reveal].is-in { opacity: 1; transform: none; }
[data-reveal].is-in .h6-stagger-item {
    animation: land-fade-up .68s var(--h6-ease) both;
    animation-delay: var(--h6-delay, 0ms);
}

/* ── Responsive ───────────────────────────────────────────────────────────── */
@media (max-width: 1080px) {
    .land-hero-inner { grid-template-columns: 1fr; gap: 46px; }
    .land-console { max-width: 620px; }
    .land-tour { grid-template-columns: 1fr; }
    .land-band-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .land-band-cell:nth-child(2) { border-right: 0; }
    .land-band-cell:nth-child(-n+2) { border-bottom: 1px solid var(--land-hair-soft); }
    .land-footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
    .land-nav-toggle { display: grid; place-items: center; }
    .land-nav {
        position: fixed;
        inset: var(--land-header-h) 0 auto 0;
        flex-direction: column;
        align-items: stretch;
        gap: 2px;
        padding: 16px var(--land-gutter) 24px;
        background: var(--land-void);
        border-bottom: 1px solid var(--land-hair);
        transform: translateY(-12px);
        opacity: 0;
        visibility: hidden;
        transition: opacity .28s var(--h6-ease), transform .28s var(--h6-ease), visibility .28s;
    }
    .land-header.is-nav-open .land-nav { opacity: 1; transform: none; visibility: visible; }
    .land-nav a { padding: 13px 12px; font-size: 15px; }
    .land-nav a.is-current::after { display: none; }

    /* The header CTA cannot fit next to the brand, language switch and menu button
       at this width — it would compress until its label clipped. Move it into the panel. */
    .land-header-cta { display: none; }
    .land-nav-signin {
        display: flex;
        align-items: center;
        gap: 8px;
        margin-top: 10px;
        padding: 13px 14px;
        border-radius: 10px;
        background: var(--hr-accent);
        color: #04201d !important;
        font-weight: 600;
    }
    .land-nav-signin:hover { background: var(--hr-accent-soft); }
    .land-brand-sub { display: none; }
    .land-chip { display: none; }
    .land-readouts { grid-template-columns: 1fr 1fr; }
    .land-readouts > :last-child { grid-column: span 2; }
}

@media (max-width: 560px) {
    .land-band-grid { grid-template-columns: 1fr; }
    .land-band-cell { border-right: 0; border-bottom: 1px solid var(--land-hair-soft); }
    .land-footer-grid { grid-template-columns: 1fr; }
    .land-job { grid-template-columns: 1fr; }
    .land-pipe-row { grid-template-columns: 84px 1fr 38px; }
    .land-modal-panel { max-height: 92vh; }
}

/* Fall back to no motion where the platform asks for it. */
@media (prefers-reduced-motion: reduce) {
    .land-chip, .land-dot { animation: none; }
    .land-h1 .land-h1-accent { animation: none; background-size: 100% 2px; }
    .land-pipe-fill { animation: none; width: var(--_w, 50%); }
    .land-col-bar { animation: none; height: var(--_h, 40%); }
    [data-reveal] { opacity: 1; transform: none; }
}


/* Örnek veri etiketi — açılış sayfasındaki konsol ve grafikler gerçek bir müşteriye ait değil.
   Rakamların gerçek sanılması, en kolay düşülen güven hatası. */
.land-sample-note {
    display: inline-flex; align-items: center; gap: 7px;
    font-size: 11.5px; font-weight: 600; letter-spacing: .04em;
    padding: 5px 11px; margin-bottom: 12px;
    border: 1px solid rgba(255,255,255,.22); border-radius: 20px;
    color: rgba(255,255,255,.72);
}
.land-section--paper .land-sample-note {
    border-color: #d5e3df; color: #6b8078;
}
