@font-face {
  font-family: Manrope;
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('assets/manrope-regular.ttf') format('truetype');
}
@font-face {
  font-family: Manrope;
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('assets/manrope-bold.ttf') format('truetype');
}
:root {
  color-scheme: dark;
  --ink: #f5f5f7;
  --muted: #a2a2b0;
  --line: #292930;
  --paper: #0a0a0d;
  --surface: #111116;
  --accent: #b9a0ff;
  --cyan: #87dfea;
  --nav-height: 88px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-height) + 24px); }
body { margin: 0; background: var(--paper); color: var(--ink); font: 16px/1.65 Manrope, Arial, Helvetica, sans-serif; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button[hidden] { display: none !important; }
a, button, summary { -webkit-tap-highlight-color: transparent; }
a:focus-visible, button:focus-visible, summary:focus-visible { outline: 2px solid var(--accent); outline-offset: 5px; }
::selection { background: #b9a0ff; color: #101016; }
h1, h2, h3, h4, p { margin: 0; }
h2 { font-size: clamp(2.4rem, 4.4vw, 4.25rem); line-height: 1.12; font-weight: 700; letter-spacing: -.055em; text-wrap: balance; }
h3 { font-size: 1.25rem; font-weight: 700; line-height: 1.3; letter-spacing: -.03em; }
.wrap { width: calc(100% - 96px); max-width: 1440px; margin-inline: auto; }
.eyebrow { font-size: .8125rem; line-height: 1.5; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); }
.section { padding-block: clamp(80px, 9vw, 144px); }
.section-head { margin-bottom: 64px; }
.section-intro { color: var(--muted); max-width: 590px; margin-top: 24px; font-size: 1.125rem; }
summary { cursor: pointer; list-style: none; }
summary::-webkit-details-marker { display: none; }
.number { font: .875rem/1.4 ui-monospace, monospace; color: var(--muted); padding-top: 10px; }
.toggle { position: relative; width: 40px; height: 40px; border: 1px solid #44414c; border-radius: 50%; flex-shrink: 0; margin-top: 3px; transition: background .25s, border-color .25s; }
.toggle::before, .toggle::after { content: ''; position: absolute; width: 14px; height: 1px; left: 12px; top: 19px; background: #ddd5ee; }
.toggle::after { transform: rotate(90deg); transition: transform .25s; }
details[open] > summary .toggle { border-color: #746485; background: #2b2338; }
details[open] > summary .toggle::after { transform: rotate(0); }
.tags { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 24px; }
.tags span { border: 1px solid #3a3445; border-radius: 100px; padding: 5px 12px; font-size: .8125rem; line-height: 1.5; color: #b7adcb; }
.section-foot { display: flex; justify-content: space-between; align-items: center; gap: 28px; padding-top: 28px; color: var(--muted); font-size: .9375rem; }
.section-foot a { color: var(--ink); white-space: nowrap; }
.faq-list { max-width: 960px; }
.faq-list details { border-top: 1px solid var(--line); }
.faq-list details:last-child { border-bottom: 1px solid var(--line); }
.faq-list summary { display: flex; justify-content: space-between; align-items: center; gap: 28px; padding-block: 26px; font-size: 1.25rem; }
.faq-list p { color: var(--muted); padding: 0 60px 28px 0; font-size: 1rem; }
.contact-section { position: relative; padding-block: 100px; border-block: 1px solid #392d48; background: radial-gradient(ellipse at 0% 100%, #251b35, transparent 65%), #111016; }
.contact-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 100px; align-items: center; }
.contact-grid h2 { font-size: clamp(2.75rem, 5.5vw, 5rem); }
.contact-copy .intro { font-size: 1.125rem; line-height: 1.65; }
.contact-copy > p + p { margin-top: 22px; color: var(--muted); }
.contact-copy .button { display: flex; width: fit-content; margin-top: 32px; background: #c5adf0; }
.contact-copy .button:hover { background: #e3d4ff; }
.contact-copy .text-link { margin-top: 18px; overflow-wrap: anywhere; }
.footer { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding-block: 42px; }
.footer > span, .footer > a:last-child { font-size: .875rem; color: var(--muted); }
.footer > a:last-child { padding-block: 12px; }
body.motion-enabled details[open] .service-body, body.motion-enabled .faq-list details[open] p { animation: detail-enter .35s ease both; }
body.motion-enabled [data-reveal].is-revealed { animation: section-enter .7s cubic-bezier(.2, .65, .2, 1) both; }
@keyframes section-enter { from { opacity: .2; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes detail-enter { from { opacity: 0; transform: translateY(7px); } to { opacity: 1; transform: translateY(0); } }
@media (max-width: 1100px) {
  .wrap { width: calc(100% - 64px); }
  .contact-grid { gap: 48px; }
}
@media (max-width: 900px) {
  .wrap { width: calc(100% - 48px); }
  .section-head { margin-bottom: 44px; }
}
@media (max-width: 760px) {
  .section { padding-block: 72px; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-grid { gap: 40px; }
  .contact-section { padding-block: 72px; }
  .section-foot { align-items: flex-start; flex-direction: column; gap: 8px; }
}
@media (max-width: 440px) {
  .wrap { width: calc(100% - 36px); }
  h2 { font-size: 2.2rem; }
  .section-head { margin-bottom: 34px; }
  .section-intro { font-size: 1rem; margin-top: 18px; }
  .number { padding-top: 5px; font-size: .8125rem; }
  .toggle { width: 32px; height: 32px; margin-top: 0; }
  .toggle::before, .toggle::after { top: 15px; left: 8px; }
  .faq-list summary { gap: 18px; font-size: 1.125rem; }
  .faq-list p { padding-right: 0; }
  .contact-grid h2 { font-size: 2.75rem; }
  .footer { flex-wrap: wrap; padding-block: 32px; }
  .footer > span { order: 3; width: 100%; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  [data-reveal] { animation: none !important; }
}
@media print {
  :root { --ink: #111; --paper: #fff; --surface: #fff; --muted: #444; --line: #ccc; }
  body { background: #fff; color: #111; }
  .wrap { width: 100%; }
  .section, .contact-section { padding-block: 30px; }
  .project, .service { break-inside: avoid; }
  .footer { display: none; }
}
