:root {
  --bg: #070908;
  --bg-soft: #0b0e0d;
  --panel: #0f1211;
  --panel-2: #141817;
  --line: rgba(255, 255, 255, 0.1);
  --line-strong: rgba(255, 255, 255, 0.18);
  --text: #f5f7f4;
  --muted: #9ba29e;
  --accent: #baff35;
  --accent-2: #76f2b7;
  --danger: #ff776e;
  --radius: 22px;
  --radius-sm: 14px;
  --container: 1180px;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 75% 0%, rgba(97, 127, 115, .14), transparent 28rem),
    var(--bg);
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 99;
  opacity: .025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
::selection { background: var(--accent); color: #0b0d0b; }

.skip-link {
  position: fixed; left: 1rem; top: -5rem; z-index: 200; background: var(--accent);
  color: #071006; padding: .75rem 1rem; border-radius: 999px; font-weight: 700;
}
.skip-link:focus { top: 1rem; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.narrow { width: min(calc(100% - 40px), 820px); margin-inline: auto; }
.section { padding: 112px 0; position: relative; border-top: 1px solid rgba(255,255,255,.055); }
.section-tight { padding: 72px 0; }
.section-dark { background: linear-gradient(180deg, rgba(255,255,255,.018), transparent); }
.eyebrow {
  display: flex; align-items: center; gap: .65rem; margin: 0 0 14px; color: #c0c5c2;
  font-size: .72rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 24px; height: 1px; background: var(--accent); }
h1,h2,h3,h4,p { margin-top: 0; }
h1,h2,h3 { font-family: "Manrope", sans-serif; letter-spacing: -.045em; line-height: 1.04; }
h1 { font-size: clamp(3.7rem, 7.6vw, 7.2rem); font-weight: 680; }
h2 { font-size: clamp(2.4rem, 4.3vw, 4.5rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.65rem); }
.display { max-width: 950px; }
.section-head {
  display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(240px, .6fr); gap: 5rem;
  align-items: end; margin-bottom: 48px;
}
.section-head h2 { margin-bottom: 0; }
.section-head p { color: var(--muted); margin-bottom: 0; }
.muted { color: var(--muted); }
.accent { color: var(--accent); }
.serif { font-family: "Instrument Serif", serif; font-style: italic; font-weight: 400; }

/* Navigation */
.site-header {
  position: fixed; z-index: 80; top: 0; left: 0; right: 0; padding: 18px 0;
  transition: background .35s, border .35s, padding .35s;
}
.site-header.scrolled { padding: 10px 0; background: rgba(7,9,8,.82); border-bottom: 1px solid var(--line); backdrop-filter: blur(18px); }
.nav-shell { display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.logo { display: inline-flex; align-items: center; gap: .7rem; font: 800 1rem/1 "Manrope"; letter-spacing: -.03em; }
.logo-mark { width: 34px; height: 34px; position: relative; display: grid; place-items: center; }
.logo-mark::before, .logo-mark::after { content: ""; position: absolute; inset: 7px 4px; background: var(--text); clip-path: polygon(0 0, 28% 0, 50% 55%, 72% 0, 100% 0, 72% 100%, 50% 100%, 28% 100%); }
.logo-mark::after { transform: rotate(180deg) scale(.52); background: var(--accent); }
.site-nav { display: flex; align-items: center; gap: .15rem; }
.site-nav a { color: #bdc3bf; padding: .62rem .82rem; font-size: .83rem; border-radius: 999px; transition: .25s; }
.site-nav a:hover, .site-nav a[aria-current="page"] { color: #fff; background: rgba(255,255,255,.07); }
.header-actions { display: flex; align-items: center; gap: .6rem; }
.menu-toggle { display: none; width: 44px; height: 44px; background: var(--panel); border: 1px solid var(--line); border-radius: 50%; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem; min-height: 48px;
  padding: .85rem 1.25rem; border-radius: 999px; border: 1px solid var(--line-strong);
  background: transparent; color: #fff; font-weight: 700; font-size: .86rem; cursor: pointer;
  transition: transform .25s var(--ease), background .25s, border .25s, color .25s;
}
.btn svg { width: 17px; height: 17px; }
.btn:hover { transform: translateY(-2px); border-color: rgba(255,255,255,.45); }
.btn-primary { color: #0b0d0b; background: var(--text); border-color: var(--text); }
.btn-primary:hover { background: var(--accent); border-color: var(--accent); }
.btn-accent { color: #0b0d0b; background: var(--accent); border-color: var(--accent); }
.btn-small { min-height: 42px; padding: .7rem 1.05rem; }
.text-link { display: inline-flex; align-items: center; gap: .55rem; font-size: .86rem; font-weight: 700; }
.text-link svg { width: 16px; transition: transform .2s; }
.text-link:hover svg { transform: translateX(4px); }

/* Hero */
.hero { min-height: 800px; padding: 155px 0 72px; display: grid; align-items: end; position: relative; overflow: hidden; }
.hero::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, #070908 4%, rgba(7,9,8,.9) 42%, rgba(7,9,8,.15) 76%, #070908 100%); z-index: 1; }
.hero-media { position: absolute; inset: 0; left: 30%; overflow: hidden; }
.hero-media img { width: 100%; height: 110%; object-fit: cover; object-position: 54% 30%; filter: saturate(.72) contrast(1.07); }
.hero-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(7,9,8,.15), transparent 50%, #070908); }
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr .8fr; align-items: end; }
.hero-copy { padding-bottom: 38px; }
.hero h1 { max-width: 760px; margin: 0 0 24px; }
.hero h1 .serif { color: #d7dbd7; }
.hero-lead { max-width: 530px; color: #b9bfbb; font-size: 1.1rem; margin-bottom: 32px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .75rem; }
.hero-note { justify-self: end; align-self: center; width: 245px; padding: 20px; border-radius: var(--radius-sm); background: rgba(18,22,20,.7); border: 1px solid var(--line-strong); backdrop-filter: blur(18px); }
.hero-note strong { display: block; margin-bottom: 5px; }
.hero-note span { color: var(--muted); font-size: .8rem; }
.floating-badge { position: absolute; z-index: 3; right: max(5vw, 30px); top: 150px; width: 132px; height: 132px; border: 1px solid var(--line-strong); border-radius: 50%; display: grid; place-items: center; text-align: center; background: rgba(11,14,13,.55); backdrop-filter: blur(16px); font-size: .78rem; }
.floating-badge i { display: block; color: var(--accent); font-family: "Instrument Serif"; font-size: 2rem; line-height: .7; }
.trust-row { position: relative; z-index: 2; padding-top: 42px; margin-top: 35px; border-top: 1px solid var(--line); }
.trust-row > span { display: block; color: var(--muted); font-size: .75rem; margin-bottom: 20px; }
.brand-row { display: flex; flex-wrap: wrap; gap: 2.4rem; align-items: center; }
.brand-logo { height: 23px; max-width: 94px; opacity: .5; filter: grayscale(1); transition: opacity .2s, filter .2s; }
.brand-logo:hover { opacity: 1; filter: grayscale(0); }

.page-hero { padding: 180px 0 90px; min-height: 560px; display: flex; align-items: end; position: relative; overflow: hidden; }
.page-hero::after { content: ""; position: absolute; width: 680px; height: 680px; border-radius: 50%; right: -260px; top: -250px; background: radial-gradient(circle at 40% 40%, rgba(186,255,53,.15), rgba(74,106,93,.05) 45%, transparent 68%); }
.page-hero h1 { max-width: 1000px; margin: 0 0 24px; font-size: clamp(3.5rem, 7vw, 6.8rem); }
.page-hero p { color: var(--muted); max-width: 620px; font-size: 1.1rem; }
.page-kicker { display: flex; justify-content: space-between; align-items: end; gap: 2rem; }
.page-number { font: 400 clamp(5rem, 13vw, 12rem)/.8 "Instrument Serif"; color: rgba(255,255,255,.05); }

/* Cards and grids */
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.service-card, .value-card, .quote-card, .article-card, .faq-item, .contact-panel {
  border: 1px solid var(--line); border-radius: var(--radius); background: linear-gradient(145deg, rgba(255,255,255,.045), rgba(255,255,255,.015));
}
.service-card { min-height: 305px; padding: 24px; display: flex; flex-direction: column; position: relative; overflow: hidden; transition: border .3s, transform .3s var(--ease); }
.service-card::after { content: ""; position: absolute; inset: auto -30% -50% 30%; height: 180px; background: radial-gradient(circle, rgba(186,255,53,.09), transparent 65%); opacity: 0; transition: opacity .3s; }
.service-card:hover { transform: translateY(-8px); border-color: rgba(186,255,53,.35); }
.service-card:hover::after { opacity: 1; }
.service-icon { width: 44px; height: 44px; display: grid; place-items: center; color: #0b0d0b; border-radius: 13px; margin-bottom: auto; background: var(--accent); box-shadow: 0 0 30px rgba(186,255,53,.14); }
.service-icon svg { width: 21px; }
.service-index { position: absolute; top: 25px; right: 25px; color: #555b57; font-size: .75rem; }
.service-card h3 { margin: 28px 0 9px; }
.service-card p { color: var(--muted); font-size: .86rem; }
.chip-row { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 12px; }
.chip, .filter-btn { border: 1px solid var(--line); border-radius: 999px; padding: .35rem .65rem; background: rgba(255,255,255,.025); color: #aeb5b1; font-size: .68rem; }

.filters { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 26px; }
.filter-btn { padding: .62rem .95rem; font-size: .78rem; cursor: pointer; transition: .25s; }
.filter-btn.active, .filter-btn:hover { background: #fff; color: #0b0d0b; }
.work-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 14px; }
.project-card { grid-column: span 4; min-height: 360px; border-radius: var(--radius); overflow: hidden; position: relative; border: 1px solid var(--line); isolation: isolate; cursor: pointer; }
.project-card.wide { grid-column: span 8; }
.project-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease), filter .8s; }
.project-card::before { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(4,6,5,.08) 24%, rgba(4,6,5,.92)); }
.project-card::after { content: ""; position: absolute; inset: 0; z-index: 1; box-shadow: inset 0 0 80px rgba(0,0,0,.25); }
.project-card:hover img { transform: scale(1.055); filter: saturate(1.12); }
.project-card:focus-visible { outline: 2px solid var(--accent); outline-offset: 4px; }
.project-content { position: absolute; z-index: 2; inset: auto 24px 22px; }
.project-content h3 { margin: 9px 0 4px; font-size: 1.6rem; }
.project-content p { margin-bottom: 16px; color: #c2c8c4; font-size: .82rem; }
.project-tag { display: inline-flex; padding: .32rem .6rem; color: #111; background: rgba(255,255,255,.88); font-size: .68rem; border-radius: 999px; }
.project-card.is-hidden { display: none; }

.split-feature { display: grid; grid-template-columns: .9fr 1.1fr; min-height: 620px; }
.feature-image { position: relative; overflow: hidden; min-height: 560px; }
.feature-image img { width: 100%; height: 115%; object-fit: cover; }
.feature-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, transparent 65%, var(--bg)), linear-gradient(0deg, rgba(7,9,8,.55), transparent 50%); }
.image-quote { position: absolute; z-index: 2; bottom: 36px; left: 36px; width: min(310px, calc(100% - 72px)); padding: 22px; border-radius: 16px; background: rgba(7,9,8,.65); border: 1px solid var(--line-strong); backdrop-filter: blur(15px); }
.image-quote p { font: 400 1.35rem/1.25 "Instrument Serif"; margin: 0 0 10px; }
.feature-copy { padding: 85px 6vw; display: flex; flex-direction: column; justify-content: center; }
.feature-copy h2 { max-width: 650px; }
.feature-copy > p { color: var(--muted); max-width: 620px; }
.benefit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 36px; }
.benefit { display: grid; grid-template-columns: 44px 1fr; gap: 13px; }
.benefit-icon { width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid var(--line-strong); border-radius: 50%; }
.benefit h4 { margin: 0 0 3px; font-size: .9rem; }
.benefit p { margin: 0; color: var(--muted); font-size: .76rem; }
.stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; margin-top: 55px; padding-top: 35px; border-top: 1px solid var(--line); }
.stat strong { display: block; font: 600 2.2rem/1 "Manrope"; letter-spacing: -.05em; }
.stat span { color: var(--muted); font-size: .72rem; }

.tools-grid { display: grid; grid-template-columns: repeat(8, 1fr); gap: 10px; }
.tool { min-height: 125px; display: grid; place-items: center; gap: 10px; align-content: center; background: var(--panel); border: 1px solid var(--line); border-radius: 16px; transition: transform .25s, border .25s; }
.tool:hover { transform: translateY(-5px); border-color: var(--line-strong); }
.tool img { width: 34px; height: 34px; object-fit: contain; }
.tool span { color: #b8beba; font-size: .72rem; }

.process-grid { display: grid; grid-template-columns: repeat(4,1fr); }
.process-step { min-height: 225px; padding: 24px 28px 24px 0; border-right: 1px solid var(--line); position: relative; }
.process-step + .process-step { padding-left: 28px; }
.process-step:last-child { border-right: 0; }
.step-number { width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; background: #e7eae6; color: #111; font: 500 1.2rem/1 "Instrument Serif"; margin-bottom: 36px; }
.process-step h3 { margin-bottom: 9px; }
.process-step p { color: var(--muted); font-size: .85rem; }
.process-step::after { content: "→"; position: absolute; right: -7px; top: 31px; width: 14px; color: #bec4c0; background: var(--bg); }
.process-step:last-child::after { display: none; }

.testimonial-wrap { position: relative; overflow: hidden; }
.testimonial-track { display: flex; transition: transform .55s var(--ease); }
.quote-card { min-width: calc((100% - 28px) / 3); margin-right: 14px; min-height: 245px; padding: 25px; display: flex; flex-direction: column; }
.quote-card blockquote { margin: 0 0 28px; color: #d8ddd9; font-size: .92rem; }
.quote-author { display: flex; align-items: center; gap: 11px; margin-top: auto; }
.avatar { width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; background: linear-gradient(135deg, #fff, #83948b); color: #111; font-weight: 800; }
.quote-author strong { display: block; font-size: .8rem; }
.quote-author span { color: var(--muted); font-size: .68rem; }
.slider-actions { display: flex; gap: 8px; }
.circle-btn { width: 43px; height: 43px; display: grid; place-items: center; border-radius: 50%; border: 1px solid var(--line-strong); background: transparent; cursor: pointer; }
.circle-btn:hover { background: #fff; color: #111; }

.articles { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
.article-card { overflow: hidden; transition: transform .3s var(--ease); cursor: pointer; }
.article-card:hover { transform: translateY(-7px); }
.article-card:focus-visible { outline: 2px solid var(--accent); outline-offset: 4px; }
.article-media { height: 220px; overflow: hidden; }
.article-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.article-card:hover .article-media img { transform: scale(1.06); }
.article-body { padding: 22px; }
.article-meta { display: flex; justify-content: space-between; color: var(--muted); font-size: .7rem; }
.article-body h3 { margin: 16px 0 12px; }

.cta-panel { min-height: 320px; padding: 48px; border: 1px solid var(--line-strong); border-radius: 28px; overflow: hidden; display: grid; grid-template-columns: 1.25fr .75fr; align-items: center; position: relative; background: linear-gradient(110deg, #151a18, #0b0e0d); }
.cta-panel::after { content: ""; position: absolute; width: 390px; height: 390px; right: -55px; bottom: -235px; border-radius: 50%; border: 1px solid rgba(255,255,255,.18); box-shadow: inset 0 0 90px rgba(186,255,53,.08), 0 0 100px rgba(98,120,110,.16); }
.cta-panel h2 { margin-bottom: 17px; max-width: 650px; }
.cta-panel p { color: var(--muted); max-width: 520px; }
.cta-action { z-index: 2; justify-self: center; text-align: center; }
.status { color: #bdc4c0; font-size: .72rem; margin-top: 14px; }
.status::before { content: ""; display: inline-block; width: 7px; height: 7px; margin-right: 7px; border-radius: 50%; background: #55eb7e; box-shadow: 0 0 12px #55eb7e; }

/* Inner page patterns */
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.value-card { padding: 30px; min-height: 230px; }
.value-card .service-icon { margin-bottom: 34px; }
.value-card p { color: var(--muted); }
.detail-process { display: grid; gap: 0; }
.detail-step { display: grid; grid-template-columns: 110px 1fr .8fr; gap: 48px; padding: 48px 0; border-top: 1px solid var(--line); align-items: start; }
.detail-step:last-child { border-bottom: 1px solid var(--line); }
.detail-step .big-no { font: 400 3.5rem/1 "Instrument Serif"; color: var(--accent); }
.detail-step h3 { font-size: 2rem; }
.detail-step p { color: var(--muted); }
.detail-list { margin: 0; padding: 0; list-style: none; }
.detail-list li { padding: 7px 0 7px 18px; position: relative; color: #ccd1cd; font-size: .88rem; }
.detail-list li::before { content: ""; position: absolute; width: 5px; height: 5px; left: 0; top: 16px; border-radius: 50%; background: var(--accent); }

.timeline { position: relative; padding-left: 34px; }
.timeline::before { content: ""; position: absolute; top: 0; bottom: 0; left: 6px; width: 1px; background: var(--line-strong); }
.timeline-item { position: relative; padding: 0 0 42px; }
.timeline-item::before { content: ""; position: absolute; left: -33px; top: 7px; width: 11px; height: 11px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 7px rgba(186,255,53,.07); }
.timeline-item span { color: var(--accent); font-size: .75rem; }
.timeline-item h3 { margin: 7px 0; }
.timeline-item p { color: var(--muted); }

.faq-list { display: grid; gap: 10px; }
.faq-item { overflow: hidden; }
.faq-question { width: 100%; display: flex; justify-content: space-between; text-align: left; align-items: center; padding: 23px 25px; background: none; border: 0; cursor: pointer; font-weight: 700; }
.faq-question svg { transition: transform .25s; }
.faq-answer { max-height: 0; overflow: hidden; color: var(--muted); transition: max-height .4s var(--ease); }
.faq-answer p { padding: 0 25px 24px; margin: 0; }
.faq-item.open .faq-answer { max-height: 260px; }
.faq-item.open .faq-question svg { transform: rotate(45deg); }

.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 20px; }
.contact-panel { padding: 34px; }
.contact-panel h2 { font-size: 2rem; }
.contact-details { display: grid; gap: 13px; margin-top: 35px; }
.contact-item { display: flex; align-items: center; gap: 12px; color: #d3d8d4; }
.contact-item svg { width: 18px; color: var(--accent); }
.socials { display: flex; gap: 9px; margin-top: 30px; }
.socials a { width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; transition: .2s; }
.socials a:hover { background: var(--accent); color: #0b0d0b; transform: translateY(-3px); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.field { display: grid; gap: 8px; }
.field.full { grid-column: 1/-1; }
.field label { color: #c7cdc9; font-size: .78rem; }
.field input, .field textarea, .field select { width: 100%; padding: 14px 16px; color: #fff; background: #0b0e0d; border: 1px solid var(--line); border-radius: 12px; outline: none; }
.field textarea { min-height: 140px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(186,255,53,.08); }
.form-message { margin: 15px 0 0; color: var(--accent); min-height: 24px; }

.legal h2 { font-size: 2rem; margin-top: 48px; }
.legal p, .legal li { color: #b1b8b3; }

/* Single article */
.reading-progress { position: fixed; z-index: 100; top: 0; left: 0; right: 0; height: 2px; pointer-events: none; }
.reading-progress span { display: block; width: 0; height: 100%; background: var(--accent); box-shadow: 0 0 14px rgba(186,255,53,.7); }
.article-hero { padding: 160px 0 72px; position: relative; overflow: hidden; }
.article-hero::after { content: ""; position: absolute; width: 600px; height: 600px; right: -240px; top: -260px; border-radius: 50%; background: radial-gradient(circle, rgba(186,255,53,.11), transparent 66%); pointer-events: none; }
.article-back { margin-bottom: 76px; color: #b8bfba; }
.article-heading { width: min(100%, 960px); }
.article-heading h1 { font-size: clamp(3.6rem, 7.4vw, 7.4rem); margin: 0 0 26px; }
.article-dek { max-width: 770px; color: #b8bfba; font-size: clamp(1.05rem, 1.6vw, 1.3rem); }
.article-byline { display: flex; flex-wrap: wrap; align-items: center; gap: 16px 28px; margin-top: 38px; color: var(--muted); font-size: .78rem; }
.article-author { display: flex; align-items: center; gap: 11px; color: #e5e9e6; }
.article-author .avatar { width: 36px; height: 36px; font-size: .7rem; }
.article-cover { height: min(68vw, 720px); min-height: 420px; overflow: hidden; border-block: 1px solid var(--line); }
.article-cover img { width: 100%; height: 118%; object-fit: cover; filter: saturate(.83); }
.article-layout { display: grid; grid-template-columns: 220px minmax(0, 740px); gap: 90px; justify-content: center; align-items: start; }
.article-aside { position: sticky; top: 110px; padding-top: 6px; }
.article-aside strong { display: block; margin-bottom: 16px; font-size: .74rem; text-transform: uppercase; letter-spacing: .13em; color: #8f9792; }
.article-aside a { display: block; padding: 7px 0; color: #aeb5b1; font-size: .78rem; transition: color .2s; }
.article-aside a:hover { color: var(--accent); }
.share-row { display: flex; gap: 8px; margin-top: 28px; padding-top: 22px; border-top: 1px solid var(--line); }
.share-row button { width: 38px; height: 38px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; background: transparent; cursor: pointer; }
.share-row button:hover { border-color: var(--accent); color: var(--accent); }
.share-row svg { width: 15px; }
.article-prose { color: #c1c7c3; font-size: 1.08rem; line-height: 1.85; }
.article-prose > p:first-child { color: #edf0ed; font-size: 1.35rem; line-height: 1.65; }
.article-prose h2 { scroll-margin-top: 110px; margin: 76px 0 22px; font-size: clamp(2rem, 3.6vw, 3rem); color: var(--text); }
.article-prose h3 { margin: 44px 0 16px; color: var(--text); }
.article-prose ul { padding-left: 1.1rem; }
.article-prose li { margin: 10px 0; padding-left: 8px; }
.article-prose li::marker { color: var(--accent); }
.article-prose blockquote { margin: 64px 0; padding: 8px 0 8px 34px; border-left: 2px solid var(--accent); color: #f1f4f1; font: 400 clamp(1.8rem, 3.5vw, 3rem)/1.2 "Instrument Serif"; }
.article-callout { margin: 48px 0; padding: 28px; border: 1px solid rgba(186,255,53,.2); border-radius: 18px; background: rgba(186,255,53,.04); }
.article-callout strong { display: block; margin-bottom: 8px; color: var(--accent); }
.copy-status { min-height: 18px; margin-top: 8px; color: var(--accent); font-size: .68rem; }

/* Project case study */
.project-hero { min-height: 780px; padding: 170px 0 72px; display: flex; align-items: flex-end; position: relative; overflow: hidden; }
.project-hero::after { content: ""; position: absolute; width: 640px; height: 640px; right: -210px; top: -210px; border-radius: 50%; background: radial-gradient(circle, rgba(186,255,53,.12), transparent 66%); pointer-events: none; }
.project-heading { position: relative; z-index: 1; }
.project-heading h1 { max-width: 1100px; margin: 0 0 26px; font-size: clamp(5rem, 11vw, 10rem); }
.project-tagline { max-width: 690px; color: #bcc3be; font-size: clamp(1.15rem, 2vw, 1.55rem); }
.project-meta-grid { display: grid; grid-template-columns: 1.2fr repeat(3, 1fr); gap: 30px; margin-top: 70px; padding-top: 28px; border-top: 1px solid var(--line); }
.project-meta-item span { display: block; margin-bottom: 8px; color: #747d77; font-size: .67rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.project-meta-item strong { color: #dfe4e0; font-size: .86rem; font-weight: 500; }
.case-cover { height: min(72vw, 880px); min-height: 500px; overflow: hidden; border-block: 1px solid var(--line); }
.case-cover img { width: 100%; height: 116%; object-fit: cover; filter: saturate(.82) contrast(1.04); }
.case-grid { display: grid; grid-template-columns: .7fr 1.3fr; gap: 9vw; align-items: start; }
.case-label { color: var(--accent); font: 400 clamp(4rem, 8vw, 7rem)/.8 "Instrument Serif"; }
.case-copy h2 { margin-bottom: 26px; }
.case-copy > p { max-width: 720px; color: #b7beb9; font-size: 1.08rem; line-height: 1.8; }
.case-copy > p + p { margin-top: 20px; }
.case-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 48px; }
.case-stat { min-height: 150px; padding: 24px; border: 1px solid var(--line); border-radius: 16px; background: rgba(255,255,255,.02); }
.case-stat strong { display: block; margin-bottom: 10px; font: 600 clamp(2rem, 4vw, 3.4rem)/1 "Manrope"; letter-spacing: -.06em; color: var(--accent); }
.case-stat span { color: var(--muted); font-size: .75rem; }
.case-gallery { display: grid; grid-template-columns: 1.15fr .85fr; gap: 14px; }
.case-gallery figure { margin: 0; min-height: 620px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); }
.case-gallery figure:last-child { margin-top: 90px; }
.case-gallery img { width: 100%; height: 112%; object-fit: cover; }
.case-quote { display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: end; padding: 52px; border: 1px solid var(--line-strong); border-radius: 28px; background: linear-gradient(135deg, rgba(255,255,255,.045), rgba(186,255,53,.025)); }
.case-quote blockquote { max-width: 850px; margin: 0; color: #f0f3f0; font: 400 clamp(2rem, 4.5vw, 4.2rem)/1.1 "Instrument Serif"; }
.case-quote cite { color: #aeb5b1; font-size: .78rem; font-style: normal; white-space: nowrap; }
.next-project { display: block; position: relative; min-height: 420px; padding: 55px; overflow: hidden; border: 1px solid var(--line); border-radius: 28px; }
.next-project img { position: absolute; z-index: -2; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.next-project::after { content: ""; position: absolute; z-index: -1; inset: 0; background: linear-gradient(90deg, rgba(4,6,5,.94), rgba(4,6,5,.3)); }
.next-project:hover img { transform: scale(1.04); }
.next-project h2 { max-width: 720px; margin: 26px 0; }

/* Footer */
.site-footer { padding: 72px 0 34px; border-top: 1px solid var(--line); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 50px; }
.footer-brand p { max-width: 260px; color: var(--muted); font-size: .8rem; margin-top: 17px; }
.footer-col h4 { font-size: .75rem; text-transform: uppercase; letter-spacing: .12em; color: #7d8580; margin-bottom: 17px; }
.footer-col a { display: block; color: #bdc3bf; font-size: .8rem; padding: 4px 0; }
.footer-col a[href*="linkedin.com"], .footer-col a[href*="instagram.com"], .footer-col a[href*="dribbble.com"], .footer-col a[href*="behance.net"] { display: flex; align-items: center; gap: 8px; }
.footer-col a[href*="linkedin.com"]::before, .footer-col a[href*="instagram.com"]::before, .footer-col a[href*="dribbble.com"]::before, .footer-col a[href*="behance.net"]::before { content: ""; width: 13px; height: 13px; background-position: center; background-size: contain; background-repeat: no-repeat; }
.footer-col a[href*="linkedin.com"]::before { background-image: url("assets/brands/linkedin.svg"); }
.footer-col a[href*="instagram.com"]::before { background-image: url("assets/brands/instagram.svg"); }
.footer-col a[href*="dribbble.com"]::before { background-image: url("assets/brands/dribbble.svg"); }
.footer-col a[href*="behance.net"]::before { background-image: url("assets/brands/behance.svg"); }
.footer-col a:hover { color: var(--accent); }
.socials img { width: 18px; height: 18px; object-fit: contain; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding-top: 36px; margin-top: 48px; border-top: 1px solid var(--line); color: #747b77; font-size: .72rem; }
.made-by { display: inline-flex; align-items: center; gap: 6px; white-space: nowrap; }
.made-by strong { color: #c5cbc7; font-weight: 600; }
.made-by img { width: 22px; height: 22px; object-fit: contain; }

/* Motion */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay { transition-delay: .12s; }
[data-parallax] { will-change: transform; }
.cursor-glow { position: fixed; z-index: -1; width: 420px; height: 420px; left: 0; top: 0; border-radius: 50%; background: radial-gradient(circle, rgba(186,255,53,.035), transparent 68%); pointer-events: none; transform: translate(-50%,-50%); }

@media (max-width: 980px) {
  .header-actions .btn { display: none; }
  .menu-toggle { display: grid; place-items: center; }
  .site-nav { position: fixed; top: 72px; left: 20px; right: 20px; padding: 14px; flex-direction: column; align-items: stretch; background: rgba(13,16,15,.97); border: 1px solid var(--line); border-radius: 18px; opacity: 0; transform: translateY(-12px); pointer-events: none; transition: .25s var(--ease); }
  .site-nav.open { opacity: 1; transform: none; pointer-events: auto; }
  .site-nav a { padding: .9rem 1rem; font-size: .95rem; }
  .hero { min-height: 760px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-note { display: none; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .project-card, .project-card.wide { grid-column: span 6; }
  .tools-grid { grid-template-columns: repeat(4,1fr); }
  .process-grid { grid-template-columns: 1fr 1fr; gap: 0; }
  .process-step:nth-child(2) { border-right: 0; }
  .process-step:nth-child(2)::after { display: none; }
  .quote-card { min-width: calc((100% - 14px) / 2); }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
  .footer-brand { grid-column: 1/-1; }
}

@media (max-width: 700px) {
  .container, .narrow { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 78px 0; }
  .section-head { grid-template-columns: 1fr; gap: 18px; margin-bottom: 32px; }
  h1 { font-size: clamp(3rem, 15vw, 4.5rem); }
  h2 { font-size: 2.35rem; }
  .hero { min-height: 780px; padding-top: 130px; }
  .hero::before { background: linear-gradient(90deg, rgba(7,9,8,.98), rgba(7,9,8,.42)), linear-gradient(0deg, #070908, transparent 55%); }
  .hero-media { left: 15%; opacity: .68; }
  .hero-copy { padding-bottom: 0; }
  .hero-lead { font-size: 1rem; max-width: 92%; }
  .floating-badge { width: 98px; height: 98px; right: 18px; top: 120px; }
  .brand-row { gap: 1.4rem; }
  .brand-logo { height: 19px; max-width: 72px; }
  .services-grid, .values-grid, .articles { grid-template-columns: 1fr; }
  .service-card { min-height: 265px; }
  .project-card, .project-card.wide { grid-column: span 12; min-height: 350px; }
  .split-feature { grid-template-columns: 1fr; }
  .feature-image { min-height: 480px; }
  .feature-image::after { background: linear-gradient(0deg, var(--bg), transparent 35%); }
  .feature-copy { padding: 55px 18px 75px; }
  .benefit-grid, .stats { grid-template-columns: 1fr 1fr; }
  .tools-grid { grid-template-columns: repeat(2,1fr); }
  .process-grid { grid-template-columns: 1fr; }
  .process-step, .process-step + .process-step { padding: 24px 0 28px; border-right: 0; border-bottom: 1px solid var(--line); }
  .process-step::after { display: none; }
  .step-number { margin-bottom: 20px; }
  .quote-card { min-width: 100%; margin-right: 10px; }
  .cta-panel { grid-template-columns: 1fr; gap: 24px; padding: 30px 24px; }
  .cta-action { justify-self: start; text-align: left; }
  .page-hero { padding: 145px 0 70px; min-height: 510px; }
  .page-kicker { display: block; }
  .page-number { display: none; }
  .detail-step { grid-template-columns: 55px 1fr; gap: 18px; }
  .detail-step > :last-child { grid-column: 2; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .field.full { grid-column: auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-brand { grid-column: 1/-1; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .article-hero { padding: 130px 0 56px; }
  .article-back { margin-bottom: 48px; }
  .article-cover { min-height: 320px; }
  .article-layout { grid-template-columns: 1fr; gap: 35px; }
  .article-aside { position: static; display: grid; grid-template-columns: 1fr 1fr; gap: 0 18px; padding-bottom: 24px; border-bottom: 1px solid var(--line); }
  .article-aside strong, .share-row, .copy-status { grid-column: 1 / -1; }
  .article-prose { font-size: 1rem; }
  .project-hero { min-height: 680px; padding-top: 135px; }
  .project-heading h1 { font-size: clamp(4rem, 22vw, 6rem); }
  .project-meta-grid { grid-template-columns: 1fr 1fr; margin-top: 48px; }
  .case-cover { min-height: 380px; }
  .case-grid { grid-template-columns: 1fr; gap: 30px; }
  .case-gallery { grid-template-columns: 1fr; }
  .case-gallery figure { min-height: 440px; }
  .case-gallery figure:last-child { margin-top: 0; }
  .case-quote { grid-template-columns: 1fr; padding: 30px 24px; }
  .case-stats { grid-template-columns: 1fr; }
  .next-project { min-height: 350px; padding: 34px 24px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
  [data-parallax] { transform: none !important; }
}
