@font-face {
  font-family: "DM Sans";
  src: url("fonts/dm-sans-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("fonts/manrope-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 500 800;
  font-display: swap;
}

:root {
  --ink: #0b1110;
  --ink-soft: #17201e;
  --paper: #f4f1e9;
  --paper-deep: #e7e2d6;
  --white: #fffdf8;
  --lime: #b8ef58;
  --mint: #79dcb5;
  --line: rgba(11, 17, 16, .14);
  --muted: #5e6763;
  --radius: 28px;
  --shadow: 0 28px 80px rgba(11, 17, 16, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scrollbar-gutter: stable; }
section[id] { scroll-margin-top: 88px; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "DM Sans", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
.shell { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.skip-link { position: fixed; left: 16px; top: -80px; z-index: 100; padding: 12px 18px; background: var(--lime); color: var(--ink); border-radius: 8px; font-weight: 700; }
.skip-link:focus { top: 16px; }

.site-header { position: fixed; inset: 0 0 auto; z-index: 50; padding: 18px 0; transition: background .25s ease, padding .25s ease, box-shadow .25s ease; }
.site-header.scrolled { padding: 10px 0; background: rgba(244, 241, 233, .97); box-shadow: 0 1px 0 var(--line); }
.nav-wrap { display: flex; align-items: center; justify-content: space-between; }
.brand { display: inline-flex; align-items: center; gap: 11px; font-family: "Manrope", sans-serif; font-weight: 800; letter-spacing: -.04em; }
.brand-mark { display: grid; place-items: center; width: 38px; aspect-ratio: 1; border-radius: 12px; background: var(--ink); color: var(--lime); font-size: 20px; }
.brand-name { font-size: 21px; }
.brand-name > span { color: #689b22; }
.navigation { display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 600; }
.navigation a { padding: 8px 11px; border-radius: 999px; transition: opacity .2s ease, background .2s ease; }
.navigation a:hover { opacity: .6; }
.navigation a[aria-current="page"] { color: var(--ink); background: rgba(184, 239, 88, .68); box-shadow: inset 0 0 0 1px rgba(74, 105, 26, .1); }
.navigation .nav-github { display: inline-flex; align-items: center; gap: 6px; border: 1px solid rgba(11, 17, 16, .24); }
.navigation .nav-cta { padding: 11px 18px; border-radius: 999px; color: var(--white); background: var(--ink); }
.menu-button { display: none; border: 0; background: none; color: inherit; cursor: pointer; }

.about-page .site-header:not(.scrolled) .brand-name,
.about-page .site-header:not(.scrolled) .navigation:not(.open) { color: var(--white); }
.about-page .site-header:not(.scrolled) .brand-mark { color: var(--ink); background: var(--white); }
.about-page .site-header:not(.scrolled) .navigation:not(.open) .nav-github { border-color: rgba(255, 255, 255, .42); }
.about-page .site-header:not(.scrolled) .navigation:not(.open) .nav-cta { color: var(--ink); background: var(--white); }
.about-page .site-header:not(.scrolled) .menu-button { color: var(--white); border-color: rgba(255, 255, 255, .28); }

.hero { position: relative; overflow: hidden; min-height: 100svh; padding: 156px 0 46px; background: var(--paper); }
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.1fr .68fr; align-items: center; gap: clamp(48px, 8vw, 112px); }
.hero-glow { position: absolute; border-radius: 50%; filter: blur(2px); opacity: .65; }
.glow-one { width: 520px; height: 520px; left: -300px; bottom: -190px; background: radial-gradient(circle, rgba(184, 239, 88, .45), transparent 68%); }
.glow-two { width: 600px; height: 600px; right: -200px; top: -260px; background: radial-gradient(circle, rgba(121, 220, 181, .26), transparent 68%); }
.eyebrow, .section-label { margin: 0 0 24px; color: #56731d; font-size: 12px; font-weight: 800; letter-spacing: .14em; line-height: 1.4; text-transform: uppercase; }
.hero h1 { max-width: 760px; margin: 0; font-family: "Manrope", sans-serif; font-size: clamp(52px, 6.7vw, 94px); font-weight: 700; letter-spacing: -.065em; line-height: .99; }
.hero h1 span { color: #56841a; }
.hero-intro { max-width: 650px; margin: 32px 0 0; color: var(--muted); font-size: clamp(18px, 2vw, 22px); line-height: 1.55; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 38px; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 16px; min-height: 54px; padding: 0 24px; border: 0; border-radius: 999px; font-weight: 700; cursor: pointer; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { color: var(--ink); background: var(--lime); box-shadow: 0 12px 28px rgba(97, 139, 30, .2); }
.button-primary:hover { background: #c7f576; box-shadow: 0 16px 32px rgba(97, 139, 30, .26); }
.button-secondary { border: 1px solid var(--line); background: rgba(255, 253, 248, .4); }

.hero-card { position: relative; min-height: 550px; display: flex; flex-direction: column; justify-content: space-between; padding: 27px; border: 1px solid rgba(255, 255, 255, .12); border-radius: 36px; color: var(--white); background: var(--ink); box-shadow: var(--shadow); }
.hero-photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 66% center; }
.hero-photo-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(5, 9, 8, .92) 0%, rgba(5, 9, 8, .65) 48%, rgba(5, 9, 8, .18) 100%), linear-gradient(0deg, rgba(5, 9, 8, .75), transparent 48%); }
.hero-card::before { content: ""; position: absolute; z-index: 1; inset: 1px; border-radius: 35px; background: radial-gradient(circle at 80% 18%, rgba(184, 239, 88, .12), transparent 38%); pointer-events: none; }
.hero-card-top, .hero-card-bottom { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 12px; color: #bbc4c0; font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.status { display: flex; align-items: center; gap: 7px; }
.status i { width: 7px; height: 7px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 0 5px rgba(184, 239, 88, .09); }
.big-slogan { position: relative; z-index: 2; margin: 42px 0; font-family: "Manrope", sans-serif; font-size: clamp(34px, 3.5vw, 53px); font-weight: 600; letter-spacing: -.055em; line-height: 1.03; text-shadow: 0 3px 22px rgba(0,0,0,.4); }
.big-slogan strong { color: var(--lime); font-weight: 800; }
.hero-card-top, .hero-card-bottom { z-index: 2; }
.hero-card-bottom { justify-content: flex-start; gap: 7px; }
.hero-card-bottom span { padding: 7px 10px; border: 1px solid rgba(255, 255, 255, .15); border-radius: 99px; }
.hero-proof { position: relative; z-index: 2; display: flex; gap: 0; margin-top: 70px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.hero-proof p { flex: 1; margin: 0; padding: 17px 20px; text-align: center; color: var(--muted); font-size: 13px; font-weight: 600; }
.hero-proof p + p { border-left: 1px solid var(--line); }

.section { padding: 128px 0; }
.intro-section { background: var(--white); }
.split-heading { display: grid; grid-template-columns: .45fr 1.55fr; gap: 60px; }
.split-heading h2, .section-head h2, .process-copy h2, .about-copy h2, .about-copy h1, .contact-card h2 { margin: 0; font-family: "Manrope", sans-serif; font-size: clamp(40px, 5.3vw, 70px); font-weight: 650; letter-spacing: -.055em; line-height: 1.08; }
.split-heading > div > p { max-width: 770px; margin: 34px 0 0; color: var(--muted); font-size: 19px; }
.services-section { background: var(--paper-deep); }
.section-head { display: grid; grid-template-columns: 1.5fr .6fr; align-items: end; gap: 60px; margin-bottom: 60px; }
.section-head > p { max-width: 410px; margin: 0 0 7px; color: var(--muted); }
.service-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.service-card { position: relative; min-height: 370px; padding: 24px; border: 1px solid rgba(11, 17, 16, .08); border-radius: var(--radius); background: #d8d4ca; overflow: hidden; transition: transform .25s ease, box-shadow .25s ease; }
.service-card:hover { transform: translateY(-5px); box-shadow: 0 24px 55px rgba(11, 17, 16, .09); }
.service-card.featured { color: var(--white); background: var(--ink-soft); }
.service-icon { position: absolute; right: 30px; top: 25px; display: grid; place-items: center; width: 46px; height: 46px; border-radius: 50%; color: var(--ink); background: var(--lime); font-size: 19px; font-weight: 800; }
.service-image { margin-top: 52px; aspect-ratio: 3 / 2; overflow: hidden; border-radius: 18px; background: var(--ink); }
.service-image img { display: block; width: 100%; height: 100%; object-fit: cover; transition: transform .45s cubic-bezier(.2,.8,.2,1); }
.service-card:hover .service-image img { transform: scale(1.025); }
.service-card h2, .service-card h3 { margin: 24px 0 14px; font-family: "Manrope", sans-serif; font-size: 30px; letter-spacing: -.035em; line-height: 1.2; }
.service-card p { max-width: 520px; margin: 0; color: var(--muted); }
.service-card.featured p { color: #b9c2be; }
.service-card ul { display: flex; flex-wrap: wrap; gap: 8px; margin: 28px 0 0; padding: 0; list-style: none; }
.service-card li { padding: 6px 11px; border: 1px solid var(--line); border-radius: 999px; color: var(--muted); font-size: 12px; }
.service-card.featured li { border-color: rgba(255, 255, 255, .14); color: #cdd4d1; }
.service-hosting { grid-column: 1 / -1; min-height: 430px; display: grid; grid-template-columns: 1.08fr .92fr; align-items: center; gap: clamp(38px, 7vw, 90px); padding: clamp(34px, 5vw, 62px); color: var(--white); background: #234c3d; }
.service-hosting .section-label { margin-bottom: 18px; color: var(--lime); }
.service-hosting h2, .service-hosting h3 { margin-top: 0; font-size: clamp(40px, 5vw, 62px); }
.service-hosting p { max-width: 650px; color: #d0dcd7; font-size: 18px; }
.service-hosting li { border-color: rgba(255,255,255,.18); color: #e1e9e5; }
.service-hosting .service-icon { position: static; margin-bottom: 28px; }
.hosting-visual { position: relative; min-height: 290px; display: grid; grid-template-columns: repeat(3, 1fr); align-content: end; gap: 8px; padding: 28px; border: 1px solid rgba(255,255,255,.15); border-radius: 26px; background: #101916; overflow: hidden; }
.hosting-visual::before { content: ""; position: absolute; width: 240px; height: 240px; right: -70px; top: -80px; border-radius: 50%; background: radial-gradient(circle, rgba(184,239,88,.22), transparent 68%); }
.hosting-visual > span { position: relative; z-index: 2; padding: 8px 5px; border: 1px solid rgba(255,255,255,.14); border-radius: 999px; color: #d8e4df; font-size: 11px; font-weight: 700; text-align: center; }
.hosting-rack { position: relative; z-index: 2; grid-column: 1 / -1; display: grid; gap: 12px; margin-bottom: 28px; }
.hosting-rack i { position: relative; display: block; height: 38px; border: 1px solid rgba(255,255,255,.13); border-radius: 10px; background: rgba(255,255,255,.055); }
.hosting-rack i::after { content: ""; position: absolute; width: 7px; height: 7px; right: 14px; top: 14px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 0 5px rgba(184,239,88,.08); }

.process-section { color: var(--white); background: var(--ink); }
.process-section .section-label { color: var(--lime); }
.process-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(60px, 10vw, 140px); }
.process-copy { position: static; align-self: start; }
.process-copy p:not(.section-label) { max-width: 520px; margin: 28px 0; color: #aeb8b4; font-size: 18px; }
.text-link { display: inline-flex; gap: 15px; align-items: center; border-bottom: 1px solid rgba(255,255,255,.35); padding-bottom: 5px; font-weight: 700; }
.process-list { margin: 0; padding: 0; list-style: none; }
.process-list li { display: grid; grid-template-columns: 1fr; padding: 34px 0; border-top: 1px solid rgba(255,255,255,.14); }
.process-list li:last-child { border-bottom: 1px solid rgba(255,255,255,.14); }
.process-list h3 { margin: 0 0 8px; font-family: "Manrope", sans-serif; font-size: 26px; }
.process-list p { margin: 0; color: #aeb8b4; }

.reference-section { background: var(--white); }
.reference-head { margin-bottom: 48px; }
.reference-card { display: grid; grid-template-columns: 1.08fr .92fr; overflow: hidden; border-radius: 36px; background: var(--paper); box-shadow: var(--shadow); }
.reference-card + .reference-card { margin-top: 28px; }
.reference-visual { position: relative; min-height: 540px; display: grid; place-items: center; padding: 34px; background: linear-gradient(145deg, #a9e24a, #5cbf93); overflow: hidden; }
.reference-slides { width: 100%; height: 100%; display: grid; place-items: center; }
.reference-slide { position: relative; width: 100%; height: 100%; margin: 0; animation: slide-in .35s ease both; }
.reference-slide img { display: block; width: 100%; height: 100%; max-height: 470px; object-fit: contain; border-radius: 18px; box-shadow: 0 25px 50px rgba(11,17,16,.25); background: #fff; }
.reference-slide figcaption { position: absolute; left: 14px; bottom: 14px; padding: 7px 11px; border-radius: 999px; color: var(--white); background: rgba(11,17,16,.78); backdrop-filter: blur(10px); font-size: 11px; font-weight: 700; }
.slider-arrow { position: absolute; z-index: 3; top: 50%; display: grid; place-items: center; width: 48px; height: 48px; padding: 0; border: 1px solid rgba(255,255,255,.34); border-radius: 50%; color: var(--white); background: rgba(11,17,16,.78); box-shadow: 0 8px 24px rgba(11,17,16,.2); cursor: pointer; transform: translateY(-50%); transition: transform .2s ease, background .2s ease; }
.slider-arrow:hover { background: var(--ink); transform: translateY(-50%) scale(1.06); }
.slider-prev { left: 14px; }
.slider-next { right: 14px; }
.slider-status { position: absolute; z-index: 3; right: 18px; bottom: 14px; padding: 7px 10px; border-radius: 999px; color: var(--white); background: rgba(11,17,16,.78); font-size: 11px; font-weight: 700; }
@keyframes slide-in { from { opacity: 0; transform: translateX(12px); } to { opacity: 1; transform: translateX(0); } }
.browser-bar { width: 112%; display: flex; align-items: center; gap: 7px; height: 44px; padding: 0 16px; border-radius: 13px 0 0; background: #eef0eb; color: #7d8581; font-size: 11px; }
.browser-bar i { width: 8px; height: 8px; border-radius: 50%; background: #c2c9c4; }
.browser-bar span { margin-left: 10px; }
.mockup { width: 112%; height: 450px; padding: 24px 28px; background: #fff; }
.mockup-nav { width: 100%; height: 24px; border-radius: 7px; background: #15201d; }
.mockup-title { width: 54%; height: 48px; margin-top: 44px; border-radius: 9px; background: #17201e; }
.mockup-lines { margin-top: 15px; }
.mockup-lines i { display: block; width: 72%; height: 9px; margin-top: 8px; border-radius: 9px; background: #dce2dd; }
.mockup-lines i:last-child { width: 49%; }
.mockup-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 45px; }
.mockup-cards i { height: 145px; border-radius: 12px; background: #eef1ec; border-top: 7px solid #9fd943; }
.reference-copy { min-width: 0; display: flex; flex-direction: column; justify-content: center; padding: clamp(45px, 6vw, 80px); }
.reference-copy h3 { margin: 0; font-family: "Manrope", sans-serif; font-size: clamp(42px, 5vw, 66px); font-weight: 650; letter-spacing: -.055em; line-height: 1.08; }
.partner-reference .reference-copy h3 { font-size: clamp(35px, 3.7vw, 46px); }
.reference-copy > p:not(.section-label) { margin: 28px 0; color: var(--muted); font-size: 18px; }
.reference-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.reference-tags span { padding: 7px 11px; border: 1px solid var(--line); border-radius: 99px; color: var(--muted); font-size: 12px; }
.reference-link { align-self: flex-start; display: inline-flex; align-items: center; gap: 12px; margin-top: 28px; padding: 13px 18px; border-radius: 999px; color: var(--ink); background: var(--lime); font-weight: 700; transition: transform .2s ease, background .2s ease; }
.reference-link:hover { transform: translateY(-2px); background: #c7f576; }
.partner-visual { background: linear-gradient(145deg, #ff9a4f, #f06418); }
.partner-visual img { display: block; width: 100%; height: auto; border-radius: 18px; background: #fff; box-shadow: 0 25px 50px rgba(11,17,16,.25); }
.pype-reference { grid-template-columns: .92fr 1.08fr; color: var(--white); background: var(--ink); }
.pype-reference .reference-copy { grid-column: 1; grid-row: 1; }
.pype-reference .reference-visual { grid-column: 2; grid-row: 1; }
.pype-reference .section-label { color: var(--lime); }
.pype-reference .reference-copy > p:not(.section-label) { color: #b9c2be; }
.pype-reference .reference-tags span { border-color: rgba(255,255,255,.17); color: #d5ddd9; }
.pype-reference .reference-note { margin-bottom: 0 !important; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.14); font-size: 15px !important; }
.pype-visual { background: linear-gradient(145deg, #171f1d, #315c4c); }
.pype-stage { position: relative; width: min(100%, 480px); min-height: 430px; display: flex; flex-direction: column; justify-content: space-between; padding: 34px; border: 1px solid rgba(184,239,88,.32); border-radius: 26px; background: rgba(5,10,9,.72); box-shadow: 0 28px 65px rgba(0,0,0,.28); overflow: hidden; }
.pype-stage::after { content: ""; position: absolute; width: 260px; height: 260px; right: -90px; bottom: -110px; border: 1px solid rgba(184,239,88,.22); border-radius: 50%; box-shadow: 0 0 0 40px rgba(184,239,88,.035), 0 0 0 80px rgba(184,239,88,.025); }
.pype-kicker, .pype-stage-note { position: relative; z-index: 1; color: #b8c4bf; font-size: 11px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.pype-stage strong { position: relative; z-index: 1; color: var(--white); font-family: "Manrope", sans-serif; font-size: clamp(68px, 7vw, 98px); letter-spacing: -.075em; line-height: .78; }
.pype-stage strong::first-line { color: var(--lime); }
.pype-lines { position: absolute; top: 34px; right: 34px; display: grid; gap: 7px; }
.pype-lines i { display: block; width: 48px; height: 2px; background: var(--lime); }
.pype-lines i:nth-child(2) { width: 32px; }
.pype-lines i:nth-child(3) { width: 16px; }
.proof-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-top: 28px; }
.proof-card { position: relative; min-height: 430px; padding: clamp(34px, 5vw, 58px); overflow: hidden; border-radius: 36px; }
.proof-card .section-label { margin-bottom: 34px; }
.proof-card p { color: var(--muted); }
.proof-card-rating { color: var(--white); background: #234c3d; }
.proof-card-rating .section-label { color: var(--lime); }
.proof-card-rating p { color: #cfdbd6; }
.rating-line { display: flex; align-items: end; gap: 14px; margin-bottom: 24px; }
.rating-line strong { color: var(--lime); font-family: "Manrope", sans-serif; font-size: clamp(76px, 9vw, 116px); letter-spacing: -.08em; line-height: .78; }
.rating-line span { padding-bottom: 6px; color: #dce7e2; font-size: 15px; font-weight: 700; }
.reviews-slider { margin: 30px 0 24px; overflow-anchor: none; }
.reviews-viewport { overflow: hidden; border-top: 1px solid rgba(255,255,255,.16); border-bottom: 1px solid rgba(255,255,255,.16); contain: layout paint; }
.reviews-track { display: flex; transition: transform .55s cubic-bezier(.2,.8,.2,1); will-change: transform; }
.review-slide { flex: 0 0 100%; min-width: 0; min-height: 184px; display: flex; flex-direction: column; justify-content: center; gap: 18px; margin: 0; padding: 26px 2px; }
.review-meta { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.review-meta strong { color: var(--white); font-size: 14px; }
.review-meta span { flex: 0 0 auto; color: var(--lime); font-size: 15px; letter-spacing: .08em; }
.review-slide blockquote { margin: 0; color: var(--white); font-family: "Manrope", sans-serif; font-size: clamp(19px, 2vw, 24px); font-weight: 600; letter-spacing: -.025em; line-height: 1.38; }
.reviews-controls { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding-top: 14px; color: #cbd8d2; font-size: 13px; }
.reviews-controls button { width: 38px; height: 38px; padding: 0; border: 1px solid rgba(255,255,255,.22); border-radius: 50%; color: var(--white); background: rgba(255,255,255,.07); cursor: pointer; transition: background .2s ease, border-color .2s ease; }
.reviews-controls button:hover, .reviews-controls button:focus-visible { border-color: var(--lime); background: rgba(184,239,88,.12); }
.proof-link { display: inline-flex; align-items: center; gap: 10px; border-bottom: 1px solid rgba(255,255,255,.38); padding-bottom: 4px; font-weight: 700; }
.proof-card-gastro { background: #e7e2d6; }
.gastro-visual { width: min(100%, 270px); margin: 0; overflow: hidden; border-radius: 24px; background: var(--ink); box-shadow: 0 20px 42px rgba(11,17,16,.16); }
.gastro-visual img { display: block; width: 100%; height: auto; aspect-ratio: 2 / 3; object-fit: cover; }
.proof-card-gastro h3 { max-width: 540px; margin: 28px 0 16px; font-family: "Manrope", sans-serif; font-size: clamp(30px, 3.5vw, 46px); letter-spacing: -.045em; line-height: 1.08; }
.proof-note { margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--line); font-size: 13px; }
.receipt-visual { width: min(100%, 220px); display: grid; gap: 9px; padding: 24px; color: var(--ink); background: var(--white); box-shadow: 0 18px 35px rgba(11,17,16,.12); transform: rotate(2deg); }
.receipt-visual span, .receipt-visual b { font-family: "Manrope", sans-serif; font-size: 13px; letter-spacing: .08em; }
.receipt-visual b { margin-top: 8px; color: #5b861c; }
.receipt-visual i { display: block; width: 100%; height: 5px; background: #d9ded9; }
.receipt-visual i:nth-of-type(2) { width: 72%; }
.receipt-visual i:nth-of-type(3) { width: 88%; }
.examples-section { background: var(--paper-deep); }
.example-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.example-card { position: relative; min-height: 470px; display: flex; align-items: flex-end; overflow: hidden; border-radius: var(--radius); color: var(--white); background: var(--ink); box-shadow: 0 20px 45px rgba(11,17,16,.1); }
.example-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.02) 28%, rgba(5,9,8,.92) 100%); }
.example-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .5s cubic-bezier(.2,.8,.2,1); }
.example-card:hover img { transform: scale(1.035); }
.example-card > div { position: relative; z-index: 2; padding: 30px; }
.example-card p { margin: 0 0 8px; color: var(--lime); font-size: 12px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.example-card h3 { max-width: 440px; margin: 0 0 20px; font-family: "Manrope", sans-serif; font-size: clamp(26px, 3vw, 38px); line-height: 1.08; letter-spacing: -.04em; }
.example-card .example-description { max-width: 470px; margin: 0 0 20px; color: #e0e6e3; font-size: 15px; font-weight: 400; letter-spacing: 0; line-height: 1.55; text-transform: none; }
.example-card > div > span { font-size: 13px; font-weight: 700; }
.example-shop img { object-fit: cover; }
.demo-badge { position: absolute; z-index: 3; top: 20px; left: 20px; padding: 7px 11px; border-radius: 999px; color: var(--ink); background: var(--lime); font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }

.projects-teaser { color: var(--white); background: var(--ink); }
.projects-teaser-card { display: grid; grid-template-columns: 1.35fr .65fr; align-items: end; gap: clamp(45px, 9vw, 120px); }
.projects-teaser .section-label { color: var(--lime); }
.projects-teaser h2 { max-width: 820px; margin: 0; font-family: "Manrope", sans-serif; font-size: clamp(40px, 5.3vw, 70px); font-weight: 650; letter-spacing: -.055em; line-height: 1.08; }
.projects-teaser-copy p { margin: 0 0 28px; color: #b9c4c0; font-size: 18px; }

.projects-hero { position: relative; overflow: hidden; padding: 188px 0 118px; background: var(--paper); }
.projects-hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.15fr .85fr; align-items: end; gap: clamp(45px, 9vw, 120px); }
.projects-hero h1 { max-width: 760px; margin: 0; font-family: "Manrope", sans-serif; font-size: clamp(64px, 9vw, 124px); font-weight: 700; letter-spacing: -.075em; line-height: .92; }
.projects-hero-copy > p { max-width: 580px; margin: 0; color: var(--muted); font-size: 20px; }
.subpage-hero { position: relative; overflow: hidden; padding: 176px 0 108px; background: var(--paper); }
.subpage-hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.18fr .82fr; align-items: end; gap: clamp(45px, 9vw, 120px); }
.subpage-hero h1 { max-width: 900px; margin: 0; font-family: "Manrope", sans-serif; font-size: clamp(56px, 7.5vw, 104px); font-weight: 700; letter-spacing: -.07em; line-height: .98; }
.subpage-intro { max-width: 570px; margin: 0 0 7px; color: var(--muted); font-size: 20px; }
.compact-subpage-hero { padding-bottom: 90px; }
.single-column-hero { grid-template-columns: 1fr; }
.single-column-hero h1 { max-width: 1050px; }
.reference-intro { position: relative; overflow: hidden; padding: 154px 0 68px; background: var(--paper); }
.reference-intro-inner { position: relative; z-index: 2; }
.reference-intro h1 { max-width: 720px; margin: 0; font-family: "Manrope", sans-serif; font-size: clamp(42px, 5.4vw, 68px); font-weight: 700; letter-spacing: -.055em; line-height: 1.02; }
.reference-intro-inner > p:last-child { max-width: 620px; margin: 22px 0 0; color: var(--muted); font-size: 19px; }
.examples-page-start { padding-top: 146px; }
.examples-page-intro { margin-bottom: 38px; }
.examples-page-intro h1 { max-width: 760px; margin: 0; font-family: "Manrope", sans-serif; font-size: clamp(32px, 4vw, 50px); font-weight: 650; letter-spacing: -.045em; line-height: 1.08; }
.projects-contact { color: var(--white); background: var(--ink); }
.projects-contact-card { max-width: 940px; text-align: center; }
.projects-contact .section-label { color: var(--lime); }
.projects-contact h2 { margin: 0; font-family: "Manrope", sans-serif; font-size: clamp(44px, 6vw, 80px); font-weight: 650; letter-spacing: -.055em; line-height: 1.05; }
.projects-contact p { max-width: 720px; margin: 28px auto; color: #b9c4c0; font-size: 19px; }

.reasons-section { background: var(--paper); }
.reason-row { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.reason-row article { padding: 38px 28px 42px 0; }
.reason-row article + article { padding-left: 28px; border-left: 1px solid var(--line); }
.reason-row h3 { margin: 0 0 12px; font-family: "Manrope", sans-serif; font-size: 25px; letter-spacing: -.03em; }
.reason-row p { margin: 0; color: var(--muted); }

.about-section { color: var(--white); background: var(--ink); }
.about-grid { display: grid; grid-template-columns: .78fr 1.22fr; align-items: center; gap: clamp(50px, 9vw, 120px); }
.about-portrait { position: relative; min-height: 680px; margin: 0; overflow: hidden; border-radius: 36px; background: #26302d; box-shadow: 0 30px 80px rgba(0,0,0,.25); }
.about-portrait::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 60%, rgba(5,9,8,.82) 100%); pointer-events: none; }
.about-portrait img { display: block; width: 100%; height: 100%; min-height: 680px; object-fit: cover; object-position: center 42%; }
.about-portrait figcaption { position: absolute; z-index: 2; inset: auto 28px 25px; display: flex; justify-content: space-between; gap: 20px; color: #d9e1de; font-size: 12px; font-weight: 700; }
.about-portrait figcaption span:first-child { color: var(--white); }
.about-copy .section-label { color: var(--lime); }
.about-copy h2, .about-copy h1 { max-width: 750px; }
.about-copy > p { max-width: 720px; color: #adb8b4; font-size: 18px; }
.about-copy .about-lead { margin-top: 34px; color: var(--white); font-size: 22px; }
.about-link { margin-top: 18px; }
.about-page-section { padding-top: 176px; }

.contact-section { padding-top: 40px; background: var(--paper); }
.contact-card { display: grid; grid-template-columns: .84fr 1.16fr; gap: clamp(40px, 7vw, 90px); padding: clamp(45px, 7vw, 90px); border-radius: 40px; color: var(--white); background: #234c3d; box-shadow: var(--shadow); }
.contact-card .section-label { color: var(--lime); }
.contact-card h2 { max-width: 640px; font-size: clamp(44px, 6vw, 78px); }
.contact-intro > p:not(.section-label, .contact-direct) { max-width: 580px; margin: 28px 0; color: #c7d4cf; font-size: 18px; }
.contact-direct { margin-top: 34px; color: #dbe7e2; font-size: 14px; }
.contact-direct a { border-bottom: 1px solid rgba(255,255,255,.45); font-weight: 700; }
.contact-form { display: grid; gap: 18px; padding: clamp(24px, 4vw, 38px); border: 1px solid rgba(255,255,255,.13); border-radius: 28px; background: rgba(7,18,15,.26); }
.contact-form label { display: grid; gap: 7px; text-align: left; }
.contact-form label > span:first-child { color: #eaf1ee; font-size: 12px; font-weight: 700; }
.form-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; border: 1px solid rgba(255,255,255,.18); border-radius: 13px; outline: 0; color: var(--white); background: rgba(255,255,255,.08); transition: border-color .2s ease, box-shadow .2s ease, background .2s ease; }
.contact-form input, .contact-form select { min-height: 50px; padding: 0 14px; }
.contact-form textarea { min-height: 150px; padding: 13px 14px; resize: vertical; }
.contact-form select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, #dce7e2 50%), linear-gradient(135deg, #dce7e2 50%, transparent 50%); background-position: calc(100% - 18px) 22px, calc(100% - 13px) 22px; background-size: 5px 5px, 5px 5px; background-repeat: no-repeat; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--lime); background-color: rgba(255,255,255,.11); box-shadow: 0 0 0 3px rgba(184,239,88,.13); }
.contact-form textarea::placeholder { color: #aebdb7; }
.privacy-check { grid-template-columns: 20px 1fr !important; align-items: start; gap: 10px !important; color: #c7d4cf; font-size: 12px; line-height: 1.5; }
.privacy-check input { width: 18px; min-height: 18px; margin: 2px 0 0; accent-color: var(--lime); }
.privacy-check a { color: var(--white); text-decoration: underline; text-underline-offset: 3px; }
.contact-form .button { justify-self: start; margin-top: 2px; }
.form-status { min-height: 24px; margin: 0; color: #e6efeb; font-size: 13px; }
.form-status.success { color: var(--lime); }
.form-status.error { color: #ffd0c9; }
.honeypot { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.button-light { color: var(--ink); background: var(--lime); }
.contact-note { margin: 20px 0 0; color: #dce6e2; font-size: 14px; }
.contact-meta { grid-column: 1 / -1; display: flex; justify-content: center; gap: 22px; margin-top: 12px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.16); color: #b7c7c1; font-size: 12px; }
.site-footer { padding: 42px 0; background: var(--paper); }
.footer-grid { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 24px; color: var(--muted); font-size: 12px; }
.footer-grid p { margin: 0; }
.footer-brand { grid-column: 1; justify-self: start; color: var(--ink); }
.footer-brand .brand-mark { width: 32px; border-radius: 9px; font-size: 16px; }
.footer-brand .brand-name { font-size: 18px; }
.footer-claim { grid-column: 2; justify-self: center; text-align: center; }
.footer-copyright { grid-column: 3; justify-self: end; text-align: right; }
.legal-placeholder { grid-column: 1 / -1; padding-top: 18px; border-top: 1px solid var(--line); text-align: center; }
.legal-placeholder a { color: inherit; text-underline-offset: 3px; }
.legal-placeholder a:hover { color: var(--ink); }

.legal-body { min-height: 100vh; background: var(--paper); }
.legal-header { width: min(1080px, calc(100% - 40px)); display: flex; align-items: center; justify-content: space-between; gap: 24px; margin: 0 auto; padding: 28px 0; border-bottom: 1px solid var(--line); }
.legal-back { padding: 10px 16px; border: 1px solid var(--line); border-radius: 999px; font-size: 13px; font-weight: 700; }
.legal-page { width: min(820px, calc(100% - 40px)); margin: 0 auto; padding: 92px 0 120px; }
.legal-page h1 { margin: 0 0 70px; font-family: "Manrope", sans-serif; font-size: clamp(56px, 9vw, 100px); font-weight: 650; letter-spacing: -.07em; line-height: .95; }
.legal-page h2 { margin: 52px 0 15px; font-family: "Manrope", sans-serif; font-size: clamp(24px, 3vw, 32px); letter-spacing: -.035em; line-height: 1.2; }
.legal-page p, .legal-page address { color: var(--muted); font-size: 17px; font-style: normal; }
.legal-page a { color: var(--ink); text-decoration: underline; text-decoration-color: #84aa43; text-underline-offset: 4px; }
.legal-page .legal-note { margin-top: 70px; padding-top: 20px; border-top: 1px solid var(--line); font-size: 13px; }

.reveal { opacity: 0; transition: opacity .55s ease; }
.reveal-delay { transition-delay: .12s; }
.reveal.visible { opacity: 1; }

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

@media (max-width: 960px) {
  .site-header { padding: 13px 0; }
  .menu-button { display: flex; align-items: center; gap: 12px; padding: 9px 13px; border: 1px solid var(--line); border-radius: 999px; font-weight: 700; }
  .menu-icon { width: 19px; display: grid; gap: 5px; }
  .menu-icon i { display: block; height: 2px; background: currentColor; transition: transform .2s ease; }
  .menu-button[aria-expanded="true"] .menu-icon i:first-child { transform: translateY(3.5px) rotate(45deg); }
  .menu-button[aria-expanded="true"] .menu-icon i:last-child { transform: translateY(-3.5px) rotate(-45deg); }
  .navigation { position: fixed; inset: 76px 20px auto; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 12px; border: 1px solid var(--line); border-radius: 22px; background: var(--white); box-shadow: var(--shadow); }
  .navigation.open { display: flex; }
  .navigation a { padding: 14px 12px; }
  .navigation .nav-github { justify-content: space-between; margin-top: 8px; padding-inline: 16px; }
  .navigation .nav-cta { margin-top: 8px; text-align: center; }
  .hero { min-height: auto; padding-top: 132px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 760px; }
  .hero-card { min-height: 470px; transform: none; }
  .big-slogan { font-size: clamp(42px, 10vw, 66px); }
  .split-heading, .section-head, .process-grid, .reference-card, .about-grid, .contact-card, .projects-teaser-card, .projects-hero-grid, .subpage-hero-grid { grid-template-columns: 1fr; }
  .split-heading { gap: 22px; }
  .section-head { gap: 20px; }
  .process-copy { position: static; }
  .reference-visual { min-height: 430px; }
  .pype-reference .reference-copy, .pype-reference .reference-visual { grid-column: 1; grid-row: auto; }
  .pype-reference .reference-visual { grid-row: 1; }
  .about-portrait { width: min(100%, 620px); min-height: 620px; }
  .about-portrait img { min-height: 620px; }
  .contact-meta { grid-column: 1; }
  .projects-hero { padding: 150px 0 96px; }
  .subpage-hero { padding: 150px 0 92px; }
  .reference-intro { padding-top: 136px; }
  .examples-page-start { padding-top: 132px; }
  .about-page-section { padding-top: 150px; }
}

@media (max-width: 640px) {
  .shell { width: min(100% - 28px, 1180px); }
  .section { padding: 86px 0; }
  .brand-name { font-size: 19px; }
  .menu-label { display: none; }
  .hero { padding-top: 112px; }
  .hero h1 { font-size: clamp(47px, 14vw, 69px); }
  .eyebrow { max-width: 280px; margin-bottom: 20px; }
  .hero-intro { margin-top: 24px; font-size: 18px; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .hero-card { min-height: 430px; padding: 22px; border-radius: 28px; }
  .hero-card-top { align-items: flex-start; }
  .status { max-width: 130px; text-align: right; }
  .hero-proof { flex-direction: column; margin-top: 45px; }
  .hero-proof p + p { border-top: 1px solid var(--line); border-left: 0; }
  .service-grid { grid-template-columns: 1fr; }
  .example-grid { grid-template-columns: 1fr; }
  .example-card { min-height: 420px; }
  .service-card { min-height: 345px; padding: 20px; }
  .service-image { margin-top: 48px; }
  .service-hosting { min-height: auto; grid-template-columns: 1fr; padding: 34px 22px 22px; }
  .service-hosting p { font-size: 16px; }
  .hosting-visual { min-height: 270px; padding: 20px; }
  .reference-visual { min-height: 300px; padding: 20px; }
  .slider-arrow { width: 42px; height: 42px; }
  .mockup { height: 320px; }
  .mockup-cards i { height: 95px; }
  .reference-copy { padding: 35px 28px 42px; }
  .proof-grid { grid-template-columns: 1fr; }
  .proof-card { min-height: auto; padding: 36px 26px; border-radius: 28px; }
  .gastro-visual { width: min(100%, 250px); }
  .rating-line { align-items: center; }
  .rating-line strong { font-size: 82px; }
  .form-row { grid-template-columns: 1fr; }
  .pype-stage { min-height: 330px; padding: 25px; }
  .pype-lines { top: 25px; right: 25px; }
  .reason-row { grid-template-columns: 1fr; }
  .reason-row article, .reason-row article + article { padding: 30px 0; border-left: 0; }
  .reason-row article + article { border-top: 1px solid var(--line); }
  .reason-row h3 { margin-top: 0; }
  .about-portrait, .about-portrait img { min-height: 520px; }
  .about-portrait { border-radius: 28px; }
  .about-portrait figcaption { inset: auto 20px 19px; flex-direction: column; gap: 2px; }
  .about-copy .about-lead { font-size: 20px; }
  .subpage-hero { padding: 124px 0 76px; }
  .subpage-hero h1 { font-size: clamp(46px, 13vw, 68px); }
  .subpage-intro { font-size: 18px; }
  .reference-intro { padding: 116px 0 54px; }
  .reference-intro h1 { font-size: clamp(38px, 11vw, 50px); }
  .reference-intro-inner > p:last-child { margin-top: 18px; font-size: 17px; }
  .examples-page-start { padding-top: 116px; }
  .examples-page-intro { margin-bottom: 28px; }
  .examples-page-intro h1 { font-size: clamp(30px, 9.5vw, 42px); }
  .about-page-section { padding-top: 124px; }
  .contact-section { padding-top: 15px; }
  .contact-card { padding: 48px 20px 28px; border-radius: 28px; }
  .contact-form { padding: 24px 18px; border-radius: 22px; }
  .contact-form .button { width: 100%; }
  .contact-meta { flex-direction: column; gap: 5px; margin-top: 45px; }
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .footer-brand, .footer-claim, .footer-copyright { grid-column: 1; justify-self: center; }
  .footer-brand { justify-content: center; }
  .footer-copyright { text-align: center; }
  .legal-header, .legal-page { width: min(100% - 28px, 820px); }
  .legal-page { padding: 70px 0 90px; }
  .legal-page h1 { margin-bottom: 50px; }
}
