/* ============================================================
   IT-Solution — Martin Šabata
   Aesthetic: Modern Tech · Black ink + sunshine yellow
   Type: Geist (display + body) + JetBrains Mono (technical)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Geist:wght@100..900&family=JetBrains+Mono:wght@400;500;600&display=swap');

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

:root {
    /* ───── Color ───── */
    --paper: #FAFAF7;
    --paper-card: #FFFFFF;
    --ink: #0A0A0A;
    --ink-muted: #4A4A48;
    --ink-faint: #9C9C99;
    --accent: #FFD60A;
    --accent-hover: #FFC700;
    --accent-soft: #FFF5C2;
    --rule: rgba(10, 10, 10, 0.12);
    --rule-strong: rgba(10, 10, 10, 0.85);

    /* ───── Type ───── */
    --display: 'Geist', system-ui, -apple-system, 'Segoe UI', sans-serif;
    --body: 'Geist', system-ui, -apple-system, 'Segoe UI', sans-serif;
    --mono: 'JetBrains Mono', 'SF Mono', Menlo, monospace;

    /* ───── Spacing ───── */
    --max: 1440px;
    --gutter-sm: 24px;
    --gutter: 48px;
    --gutter-lg: 96px;

    /* ───── Motion ───── */
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    background: var(--paper);
    color: var(--ink);
    font-family: var(--body);
    font-size: 16px;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    font-feature-settings: 'ss01', 'cv01';
    overflow-x: hidden;
}

::selection {
    background: var(--accent);
    color: var(--ink);
}

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

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

/* ============================================================
   TICKER (top edge)
   ============================================================ */

.ticker {
    background: var(--ink);
    color: var(--paper);
    overflow: hidden;
    border-bottom: 1px solid var(--ink);
    font-family: var(--mono);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.ticker__track {
    display: flex;
    gap: 64px;
    padding: 10px 0;
    width: max-content;
    animation: ticker 38s linear infinite;
}

.ticker__item {
    display: flex;
    align-items: center;
    gap: 64px;
    white-space: nowrap;
}

.ticker__dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
}

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

/* ============================================================
   NAV
   ============================================================ */

.nav {
    position: sticky;
    top: 0;
    z-index: 50;
    background: var(--paper);
    border-bottom: 1px solid var(--rule);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.nav__inner {
    max-width: var(--max);
    margin: 0 auto;
    padding: 18px var(--gutter);
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 40px;
}

.nav__logo {
    font-family: var(--display);
    font-weight: 700;
    font-size: 19px;
    letter-spacing: -0.02em;
    line-height: 1;
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.nav__logo-mark {
    display: inline-block;
    width: 14px;
    height: 14px;
    background: var(--accent);
    transform: rotate(45deg);
    margin-right: 4px;
}

.nav__logo-em {
    font-style: italic;
    font-weight: 400;
    color: var(--ink-muted);
    font-size: 13px;
    font-family: var(--body);
    letter-spacing: 0;
    text-transform: none;
}

.nav__menu {
    display: flex;
    gap: 32px;
    justify-content: center;
    font-family: var(--mono);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.nav__menu a {
    position: relative;
    padding: 6px 0;
    transition: color 0.2s var(--ease);
}

.nav__menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s var(--ease-out);
}

.nav__menu a:hover::after {
    transform: scaleX(1);
}

.nav__right {
    display: flex;
    align-items: center;
    gap: 14px;
}

.lang {
    font-family: var(--mono);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    display: flex;
    gap: 4px;
    padding: 2px;
    border: 1px solid var(--rule);
    border-radius: 999px;
}

.lang a {
    padding: 4px 10px;
    border-radius: 999px;
    transition: all 0.2s var(--ease);
    color: var(--ink-muted);
}

.lang a.is-active {
    background: var(--ink);
    color: var(--paper);
}

.nav__cta {
    font-family: var(--mono);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 10px 18px;
    background: var(--ink);
    color: var(--paper);
    border-radius: 999px;
    transition: all 0.2s var(--ease);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.nav__cta:hover {
    background: var(--accent);
    color: var(--ink);
}

.nav__cta-dot {
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    transition: background 0.2s var(--ease);
}

.nav__cta:hover .nav__cta-dot {
    background: var(--ink);
}

/* ============================================================
   HERO
   ============================================================ */

.hero {
    max-width: var(--max);
    margin: 0 auto;
    padding: var(--gutter-lg) var(--gutter) 80px;
    position: relative;
}

.hero__grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 80px;
    align-items: start;
}

.hero__eyebrow {
    font-family: var(--mono);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--ink-muted);
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.hero__eyebrow::before {
    content: '';
    width: 32px;
    height: 1px;
    background: var(--ink);
}

.hero__headline {
    font-family: var(--display);
    font-weight: 500;
    font-size: clamp(48px, 7.5vw, 104px);
    line-height: 0.98;
    letter-spacing: -0.04em;
    color: var(--ink);
    margin-bottom: 32px;
}

.hero__headline em {
    font-style: normal;
    font-weight: 400;
    color: var(--ink-muted);
}

.hero__headline .accent-mark {
    background: linear-gradient(180deg, transparent 62%, var(--accent) 62%, var(--accent) 94%, transparent 94%);
    padding: 0 6px;
    font-style: normal;
    font-weight: 600;
}

.hero__sub {
    font-size: 18px;
    line-height: 1.6;
    color: var(--ink-muted);
    max-width: 520px;
    margin-bottom: 40px;
    font-weight: 400;
}

.hero__sub strong {
    color: var(--ink);
    font-weight: 600;
}

.hero__cta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    align-items: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    border-radius: 999px;
    font-family: var(--body);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.01em;
    transition: all 0.25s var(--ease);
    border: 1px solid transparent;
    cursor: pointer;
}

.btn--primary {
    background: var(--ink);
    color: var(--paper);
}

.btn--primary:hover {
    background: var(--accent);
    color: var(--ink);
    transform: translateY(-1px);
}

.btn--ghost {
    background: transparent;
    color: var(--ink);
    border-color: var(--rule);
}

.btn--ghost:hover {
    border-color: var(--ink);
    background: var(--ink);
    color: var(--paper);
}

.btn__arrow {
    transition: transform 0.25s var(--ease-out);
}

.btn:hover .btn__arrow {
    transform: translateX(3px);
}

.hero__side {
    position: relative;
    padding-top: 88px;
    padding-left: 24px;
    border-left: 1px solid var(--rule);
}

.hero__side::before {
    content: '';
    position: absolute;
    top: 0;
    left: -1px;
    width: 3px;
    height: 56px;
    background: var(--accent);
}

.hero__intro {
    font-family: var(--body);
    font-size: 15px;
    line-height: 1.65;
    color: var(--ink-muted);
    max-width: 380px;
}

.hero__intro-label {
    font-family: var(--mono);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--ink);
    margin-bottom: 16px;
    display: block;
}

.hero__intro-sig {
    font-family: var(--display);
    font-weight: 500;
    font-size: 17px;
    color: var(--ink);
    margin-top: 18px;
    display: block;
    letter-spacing: -0.01em;
}

/* Hero stats strip */
.hero__stats {
    margin-top: 80px;
    border-top: 1px solid var(--ink);
    border-bottom: 1px solid var(--ink);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 28px 0;
}

.hero__stat {
    padding: 0 24px;
    border-right: 1px solid var(--rule);
}

.hero__stat:last-child { border-right: none; }

.hero__stat-num {
    font-family: var(--display);
    font-weight: 600;
    font-size: 44px;
    line-height: 1;
    letter-spacing: -0.02em;
    color: var(--ink);
}

.hero__stat-num sup {
    font-size: 18px;
    color: var(--accent-hover);
    margin-left: 2px;
    vertical-align: super;
    font-weight: 700;
}

.hero__stat-label {
    margin-top: 10px;
    font-family: var(--mono);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ink-muted);
}

/* ============================================================
   SECTION SCAFFOLD
   ============================================================ */

.section {
    padding: var(--gutter-lg) 0;
    border-top: 1px solid var(--rule);
    position: relative;
}

.section__inner {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 var(--gutter);
}

.section__head {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 80px;
    margin-bottom: 64px;
    align-items: end;
}

.section__num {
    font-family: var(--mono);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--ink-muted);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.section__num::before {
    content: '';
    width: 24px;
    height: 1px;
    background: var(--ink);
}

.section__title {
    font-family: var(--display);
    font-weight: 500;
    font-size: clamp(36px, 5vw, 64px);
    line-height: 1.02;
    letter-spacing: -0.025em;
    color: var(--ink);
}

.section__title em {
    font-style: italic;
    color: var(--ink-muted);
}

.section__lede {
    font-size: 17px;
    line-height: 1.55;
    color: var(--ink-muted);
    max-width: 540px;
    align-self: end;
}

.section__lede strong {
    color: var(--ink);
}

/* ============================================================
   PILLARS (3 services)
   ============================================================ */

.pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-top: 1px solid var(--ink);
}

.pillar {
    padding: 48px 36px 56px;
    border-right: 1px solid var(--rule);
    background: var(--paper);
    position: relative;
    transition: background 0.3s var(--ease);
    cursor: default;
}

.pillar:last-child { border-right: none; }

.pillar:hover {
    background: var(--paper-card);
}

.pillar:hover .pillar__num {
    color: var(--accent-hover);
}

.pillar__num {
    font-family: var(--display);
    font-size: 76px;
    line-height: 1;
    font-weight: 400;
    color: var(--ink-faint);
    transition: color 0.3s var(--ease);
    letter-spacing: -0.04em;
    margin-bottom: 32px;
}

.pillar__title {
    font-family: var(--display);
    font-weight: 600;
    font-size: 28px;
    line-height: 1.1;
    letter-spacing: -0.015em;
    color: var(--ink);
    margin-bottom: 16px;
}

.pillar__desc {
    font-size: 15px;
    line-height: 1.6;
    color: var(--ink-muted);
    margin-bottom: 24px;
}

.pillar__list {
    list-style: none;
    border-top: 1px solid var(--rule);
}

.pillar__list li {
    padding: 12px 0;
    border-bottom: 1px solid var(--rule);
    font-family: var(--mono);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: var(--ink);
    display: flex;
    align-items: center;
    gap: 12px;
}

.pillar__list li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--accent);
    flex-shrink: 0;
}

/* ============================================================
   TEAM
   ============================================================ */

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-top: 1px solid var(--ink);
}

.team-card {
    padding: 36px 32px 36px;
    border-right: 1px solid var(--rule);
    background: var(--paper);
    display: flex;
    flex-direction: column;
    transition: background 0.3s var(--ease);
}

.team-card:last-child { border-right: none; }

.team-card:hover { background: var(--paper-card); }

.team-card__photo-wrap {
    aspect-ratio: 4 / 5;
    margin-bottom: 24px;
    position: relative;
    overflow: hidden;
    background: var(--accent-soft);
}

.team-card__photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    filter: grayscale(12%) contrast(1.05);
    transition: filter 0.4s var(--ease);
}

.team-card:hover .team-card__photo { filter: grayscale(0%) contrast(1.05); }

/* AI persona — no photo, geometric ascii pattern on black */
.team-card__photo-wrap--ai {
    background: var(--ink);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.team-card__photo-wrap--ai::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255,214,10,0.06) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(255,214,10,0.06) 1px, transparent 1px);
    background-size: 16px 16px;
    pointer-events: none;
}

.team-card__ai-mark {
    font-family: var(--mono);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    line-height: 1.3;
    color: var(--accent);
    z-index: 2;
    white-space: pre;
    text-align: left;
}

.team-card__ai-tag {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 3;
    font-family: var(--mono);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--accent);
    padding: 4px 8px;
    border: 1px solid var(--accent);
}

.team-card__ai-pulse {
    position: absolute;
    bottom: 14px;
    right: 14px;
    z-index: 3;
    width: 10px;
    height: 10px;
    background: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(255, 214, 10, 0.7);
    animation: pulse 2s var(--ease) infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 214, 10, 0.7); }
    70% { box-shadow: 0 0 0 14px rgba(255, 214, 10, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 214, 10, 0); }
}

.team-card__role {
    font-family: var(--mono);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ink-muted);
    margin-bottom: 10px;
}

.team-card__name {
    font-family: var(--display);
    font-weight: 600;
    font-size: 26px;
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: var(--ink);
    margin-bottom: 10px;
}

.team-card__location {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.06em;
    color: var(--ink-muted);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.team-card__desc {
    font-size: 14px;
    line-height: 1.6;
    color: var(--ink-muted);
    margin-bottom: auto;
}

.team-card__contact {
    margin-top: 24px;
    padding-top: 16px;
    border-top: 1px solid var(--rule);
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-family: var(--mono);
    font-size: 11px;
    color: var(--ink);
}

.team-card__contact a { transition: color 0.2s var(--ease); }
.team-card__contact a:hover { color: var(--accent-hover); }

.team-card__contact-line {
    display: flex;
    align-items: center;
    gap: 8px;
}

.team-card__contact-label {
    color: var(--ink-faint);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 9px;
    font-weight: 600;
    flex-shrink: 0;
    width: 36px;
}

/* ============================================================
   MANIFESTO
   ============================================================ */

.manifesto {
    background: var(--ink);
    color: var(--paper);
    padding: var(--gutter-lg) 0;
    position: relative;
    overflow: hidden;
}

.manifesto::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 360px;
    height: 360px;
    background: var(--accent);
    border-radius: 50%;
    filter: blur(0px);
    opacity: 1;
    z-index: 0;
    transform: rotate(0deg);
}

.manifesto__inner {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 var(--gutter);
    position: relative;
    z-index: 2;
}

.manifesto__grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 80px;
    align-items: start;
}

.manifesto__label {
    font-family: var(--mono);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.manifesto__label::before {
    content: '';
    width: 24px;
    height: 1px;
    background: var(--accent);
}

.manifesto__title {
    font-family: var(--display);
    font-weight: 500;
    font-size: clamp(40px, 5.5vw, 76px);
    line-height: 1;
    letter-spacing: -0.03em;
    color: var(--paper);
}

.manifesto__title em {
    font-style: italic;
    color: var(--accent);
}

.manifesto__body {
    font-family: var(--display);
    font-weight: 400;
    font-size: 22px;
    line-height: 1.45;
    color: var(--paper);
    letter-spacing: -0.005em;
}

.manifesto__body p {
    margin-bottom: 18px;
}

.manifesto__body strong {
    font-weight: 600;
    color: var(--accent);
    font-style: italic;
}

/* ============================================================
   WORK (case studies)
   ============================================================ */

.work__grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0;
    border-top: 1px solid var(--ink);
    border-left: 1px solid var(--rule);
}

.case {
    grid-column: span 2;
    padding: 36px 32px 40px;
    border-right: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
    position: relative;
    transition: all 0.3s var(--ease);
    background: var(--paper);
    cursor: default;
    min-height: 320px;
    display: flex;
    flex-direction: column;
}

/* asymmetric arrangement */
.case--wide { grid-column: span 3; }
.case--featured { grid-column: span 3; background: var(--accent-soft); }

.case:hover {
    background: var(--paper-card);
}

.case--featured:hover {
    background: var(--accent);
}

.case__meta {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 24px;
    font-family: var(--mono);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ink-muted);
}

.case__sector {
    padding: 4px 10px;
    background: var(--ink);
    color: var(--paper);
    border-radius: 2px;
}

.case--featured .case__sector {
    background: var(--ink);
    color: var(--accent);
}

.case__year {
    color: var(--ink-muted);
}

.case__title {
    font-family: var(--display);
    font-weight: 600;
    font-size: 32px;
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: var(--ink);
    margin-bottom: 16px;
}

.case--featured .case__title {
    font-size: 44px;
    font-weight: 500;
}

.case--featured .case__title em {
    font-style: italic;
    color: var(--ink);
}

.case__desc {
    font-size: 14px;
    line-height: 1.55;
    color: var(--ink-muted);
    margin-bottom: auto;
    max-width: 420px;
}

.case--featured .case__desc {
    color: var(--ink);
    font-size: 16px;
}

.case__tags {
    margin-top: 28px;
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.case__tag {
    font-family: var(--mono);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 4px 8px;
    border: 1px solid var(--rule);
    border-radius: 2px;
    color: var(--ink-muted);
}

.case--featured .case__tag {
    border-color: var(--rule-strong);
    color: var(--ink);
}

.case__link {
    margin-top: 24px;
    font-family: var(--mono);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--ink);
    border-bottom: 1px solid transparent;
    padding-bottom: 2px;
    transition: border-color 0.2s var(--ease);
    align-self: flex-start;
}

.case__link:hover {
    border-bottom-color: var(--accent-hover);
}

/* ============================================================
   PRICING
   ============================================================ */

.pricing__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-top: 1px solid var(--ink);
}

.price {
    padding: 40px 32px 44px;
    border-right: 1px solid var(--rule);
    background: var(--paper);
    display: flex;
    flex-direction: column;
    position: relative;
    transition: background 0.3s var(--ease);
}

.price:last-child { border-right: none; }
.price:hover { background: var(--paper-card); }

.price--featured {
    background: var(--ink);
    color: var(--paper);
}

.price--featured:hover { background: var(--ink); }

.price__label {
    font-family: var(--mono);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ink-muted);
    margin-bottom: 12px;
}

.price--featured .price__label { color: var(--accent); }

.price__name {
    font-family: var(--display);
    font-weight: 600;
    font-size: 28px;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--ink);
    margin-bottom: 8px;
}

.price--featured .price__name { color: var(--paper); }

.price__tagline {
    font-size: 14px;
    line-height: 1.5;
    color: var(--ink-muted);
    margin-bottom: 28px;
    min-height: 42px;
}

.price--featured .price__tagline { color: rgba(250, 250, 247, 0.7); }

.price__amount {
    display: flex;
    align-items: baseline;
    gap: 8px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--rule);
    margin-bottom: 24px;
}

.price--featured .price__amount { border-color: rgba(255, 255, 255, 0.15); }

.price__amount-prefix {
    font-family: var(--mono);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ink-muted);
}

.price--featured .price__amount-prefix { color: rgba(250, 250, 247, 0.55); }

.price__amount-big {
    font-family: var(--display);
    font-weight: 600;
    font-size: 44px;
    line-height: 1;
    letter-spacing: -0.025em;
    color: var(--ink);
}

.price--featured .price__amount-big { color: var(--accent); }

.price__amount-unit {
    font-family: var(--mono);
    font-size: 12px;
    font-weight: 500;
    color: var(--ink-muted);
    margin-left: 2px;
}

.price--featured .price__amount-unit { color: rgba(250, 250, 247, 0.6); }

.price__includes {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: auto;
}

.price__includes li {
    font-size: 13px;
    line-height: 1.5;
    color: var(--ink-muted);
    padding-left: 18px;
    position: relative;
}

.price--featured .price__includes li { color: rgba(250, 250, 247, 0.78); }

.price__includes li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 1px;
    background: var(--ink);
}

.price--featured .price__includes li::before { background: var(--accent); }

.price__note {
    margin-top: 28px;
    padding-top: 18px;
    border-top: 1px solid var(--rule);
    font-family: var(--mono);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ink-faint);
}

.price--featured .price__note {
    border-color: rgba(255, 255, 255, 0.15);
    color: rgba(250, 250, 247, 0.5);
}

/* ============================================================
   CURRENTLY (Now page-style)
   ============================================================ */

.currently {
    background: var(--paper-card);
}

.currently__head {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 80px;
    margin-bottom: 56px;
    align-items: end;
}

.currently__updated {
    font-family: var(--mono);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ink-muted);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    background: var(--paper);
    border: 1px solid var(--rule);
    border-radius: 999px;
    margin-bottom: 24px;
}

.currently__updated-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #10b981;
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.6);
    animation: livedot 2.2s var(--ease) infinite;
}

@keyframes livedot {
    0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.6); }
    70% { box-shadow: 0 0 0 10px rgba(16, 185, 129, 0); }
    100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.activity {
    border-top: 1px solid var(--ink);
}

.activity__item {
    display: grid;
    grid-template-columns: 120px 1fr 220px;
    gap: 40px;
    padding: 28px 0;
    border-bottom: 1px solid var(--rule);
    align-items: baseline;
}

.activity__index {
    font-family: var(--mono);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent-hover);
}

.activity__title {
    font-family: var(--display);
    font-weight: 500;
    font-size: 22px;
    line-height: 1.3;
    letter-spacing: -0.015em;
    color: var(--ink);
}

.activity__title em {
    font-style: normal;
    color: var(--ink-muted);
    font-weight: 400;
}

.activity__meta {
    font-family: var(--mono);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.06em;
    color: var(--ink-muted);
    text-align: right;
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: flex-end;
}

.activity__tag {
    padding: 3px 8px;
    background: var(--ink);
    color: var(--paper);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 10px;
    border-radius: 2px;
}

.activity__tag--ai { background: var(--accent); color: var(--ink); }
.activity__tag--infra { background: #0f766e; color: var(--paper); }
.activity__tag--saas { background: #7c2d12; color: var(--paper); }

/* ============================================================
   PROCESS
   ============================================================ */

.process {
    background: var(--paper-card);
}

.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border-top: 1px solid var(--ink);
    counter-reset: step;
}

.step {
    padding: 40px 28px 48px;
    border-right: 1px solid var(--rule);
    position: relative;
    counter-increment: step;
}

.step:last-child { border-right: none; }

.step::before {
    content: counter(step, decimal-leading-zero);
    font-family: var(--mono);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.16em;
    color: var(--accent-hover);
    display: block;
    margin-bottom: 32px;
}

.step__arrow {
    position: absolute;
    top: 32px;
    right: 24px;
    color: var(--ink-faint);
}

.step:last-child .step__arrow { display: none; }

.step__title {
    font-family: var(--display);
    font-weight: 600;
    font-size: 26px;
    line-height: 1.1;
    letter-spacing: -0.015em;
    color: var(--ink);
    margin-bottom: 16px;
}

.step__title em {
    font-style: italic;
    color: var(--ink-muted);
}

.step__desc {
    font-size: 14px;
    line-height: 1.6;
    color: var(--ink-muted);
}

/* ============================================================
   CONTACT
   ============================================================ */

.contact {
    background: var(--accent);
    color: var(--ink);
    padding: var(--gutter-lg) 0 80px;
    position: relative;
    overflow: hidden;
}

.contact::after {
    content: '';
    position: absolute;
    bottom: -120px;
    left: -80px;
    width: 280px;
    height: 280px;
    background: var(--ink);
    border-radius: 50%;
    z-index: 0;
}

.contact__inner {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 var(--gutter);
    position: relative;
    z-index: 2;
}

.contact__head {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 80px;
    align-items: end;
    margin-bottom: 80px;
}

.contact__label {
    font-family: var(--mono);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ink);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact__label::before {
    content: '';
    width: 24px;
    height: 1px;
    background: var(--ink);
}

.contact__title {
    font-family: var(--display);
    font-weight: 500;
    font-size: clamp(56px, 9vw, 144px);
    line-height: 0.92;
    letter-spacing: -0.035em;
    color: var(--ink);
}

.contact__title em {
    font-style: italic;
    font-weight: 500;
}

.contact__lede {
    font-size: 17px;
    line-height: 1.55;
    color: var(--ink);
    max-width: 360px;
}

.contact__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
    border-top: 1px solid var(--ink);
    padding-top: 48px;
}

.contact__group {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact__group-label {
    font-family: var(--mono);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ink);
    opacity: 0.65;
    margin-bottom: 4px;
}

.contact__group a,
.contact__group span {
    font-family: var(--display);
    font-weight: 500;
    font-size: 22px;
    line-height: 1.2;
    color: var(--ink);
    letter-spacing: -0.01em;
    transition: opacity 0.2s var(--ease);
}

.contact__group a:hover {
    opacity: 0.6;
}

.contact__cta {
    margin-top: 64px;
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.contact__cta .btn--primary {
    background: var(--ink);
    color: var(--accent);
}

.contact__cta .btn--primary:hover {
    background: var(--paper);
    color: var(--ink);
}

.contact__cta .btn--ghost {
    border-color: var(--ink);
    color: var(--ink);
}

.contact__cta .btn--ghost:hover {
    background: var(--ink);
    color: var(--accent);
}

/* ============================================================
   FOOTER
   ============================================================ */

.footer {
    background: var(--ink);
    color: var(--paper);
    padding: 56px 0 32px;
}

.footer__inner {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 var(--gutter);
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 64px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer__brand {
    font-family: var(--display);
    font-weight: 500;
    font-size: 36px;
    line-height: 1;
    letter-spacing: -0.025em;
    margin-bottom: 16px;
}

.footer__brand em {
    font-style: italic;
    color: var(--accent);
}

.footer__tagline {
    font-size: 13px;
    line-height: 1.55;
    color: var(--ink-faint);
    max-width: 320px;
}

.footer__col-title {
    font-family: var(--mono);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 16px;
}

.footer__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer__list a {
    font-size: 13px;
    color: var(--paper);
    opacity: 0.78;
    transition: opacity 0.2s var(--ease);
}

.footer__list a:hover {
    opacity: 1;
    color: var(--accent);
}

.footer__bottom {
    margin-top: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.06em;
    color: var(--ink-faint);
}

.footer__bottom a:hover {
    color: var(--accent);
}

/* ============================================================
   ANIMATIONS
   ============================================================ */

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal:nth-child(2) { transition-delay: 0.08s; }
.reveal:nth-child(3) { transition-delay: 0.16s; }
.reveal:nth-child(4) { transition-delay: 0.24s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1024px) {
    :root { --gutter: 32px; --gutter-lg: 72px; }
    .hero__grid,
    .section__head,
    .manifesto__grid,
    .contact__head { grid-template-columns: 1fr; gap: 48px; }
    .hero__side {
        padding-top: 0;
        padding-left: 0;
        border-left: none;
        border-top: 1px solid var(--rule);
        padding-top: 32px;
    }
    .hero__side::before {
        top: -1px; left: 0;
        width: 56px; height: 3px;
    }
    .hero__intro { max-width: 100%; }
    .pillars,
    .steps,
    .team-grid,
    .pricing__grid { grid-template-columns: 1fr; }
    .pillar,
    .step,
    .team-card,
    .price { border-right: none; border-bottom: 1px solid var(--rule); }
    .pillar:last-child,
    .step:last-child,
    .team-card:last-child,
    .price:last-child { border-bottom: none; }
    .currently__head { grid-template-columns: 1fr; gap: 32px; }
    .activity__item { grid-template-columns: 1fr; gap: 8px; padding: 20px 0; }
    .activity__meta { text-align: left; align-items: flex-start; flex-direction: row; gap: 12px; flex-wrap: wrap; }
    .step__arrow { display: none; }
    .work__grid { grid-template-columns: 1fr; }
    .case,
    .case--wide,
    .case--featured { grid-column: span 1; border-right: none; }
    .contact__grid { grid-template-columns: 1fr; gap: 32px; }
    .footer__grid { grid-template-columns: 1fr 1fr; }
    .hero__stats { grid-template-columns: repeat(2, 1fr); gap: 0; }
    .hero__stat { padding: 20px 16px; border-bottom: 1px solid var(--rule); }
    .hero__stat:nth-child(2) { border-right: none; }
}

@media (max-width: 640px) {
    :root { --gutter: 20px; --gutter-lg: 56px; }
    .nav__inner { grid-template-columns: auto auto; gap: 12px; padding: 14px var(--gutter); }
    .nav__menu { display: none; }
    .nav__logo { font-size: 16px; }
    .nav__cta { padding: 8px 14px; font-size: 10px; }
    .hero { padding: 56px var(--gutter) 56px; }
    .hero__portrait-wrap { max-width: 100%; }
    .footer__grid { grid-template-columns: 1fr; }
    .footer__bottom { flex-direction: column; gap: 16px; align-items: flex-start; }
    .contact__cta { flex-direction: column; align-items: stretch; }
    .contact__cta .btn { justify-content: center; }
    .hero__stat-num { font-size: 36px; }
}
