:root {
  --ink: #242423;
  --panel: #333533;
  --panel-2: #333533;
  --paper: #e8eddf;
  --white: #e8eddf;
  --blue: #cfdbd5;
  --violet: #333533;
  --cyan: #cfdbd5;
  --yellow: #f5cb5c;
  --coral: #f5cb5c;
  --muted: #cfdbd5;
  --radius: 34px;
  --radius-sm: 22px;
  --shell: 1248px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: clip; }
body {
  margin: 0;
  color: var(--white);
  background: var(--ink);
  font-family: "DM Sans", sans-serif;
  overflow-x: clip;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .25;
  z-index: -1;
  background: radial-gradient(circle at 12% 10%, rgba(207,219,213,.08), transparent 24%), radial-gradient(circle at 88% 38%, rgba(245,203,92,.05), transparent 26%);
}
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
button { color: inherit; }
p { line-height: 1.55; }
.shell { width: min(var(--shell), calc(100% - 32px)); margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link {
  width: 1px;
  height: 1px;
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 180;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}
.skip-link:focus-visible {
  width: auto;
  height: auto;
  margin: 0;
  padding: 12px 18px;
  overflow: visible;
  clip-path: none;
  border-radius: 999px;
  color: var(--ink);
  background: var(--yellow);
}
#main { scroll-margin-top: 96px; }

.site-loader {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
  transition: opacity .4s ease, visibility .4s ease;
}
.site-loader::before,
.site-loader::after {
  content: "";
  width: 42vw;
  height: 140vh;
  position: absolute;
  top: -20vh;
  border: 1px solid rgba(207,219,213,.18);
  transform: skewX(-24deg);
}
.site-loader::before { left: -26vw; }
.site-loader::after { right: -26vw; }
.site-loader-inner { width: min(280px, 72vw); display: grid; justify-items: center; position: relative; }
.site-loader-inner img {
  width: 84px;
  height: 84px;
  display: block;
  object-fit: contain;
  clip-path: inset(0 50% 0 50%);
  animation: loaderMarkIn .48s cubic-bezier(.2,.8,.2,1) .08s forwards;
}
.site-loader-name { margin-top: 16px; display: flex; align-items: baseline; gap: 8px; opacity: 0; transform: translateY(8px); animation: loaderNameIn .35s ease .28s forwards; }
.site-loader-name strong { font-family: "Syne", sans-serif; font-size: 1.02rem; letter-spacing: .08em; }
.site-loader-name span { color: var(--cyan); font-size: .58rem; font-weight: 700; letter-spacing: .22em; }
.site-loader-progress { width: 100%; height: 2px; margin-top: 26px; overflow: hidden; background: rgba(255,255,255,.12); }
.site-loader-progress i { width: 100%; height: 100%; display: block; background: var(--cyan); transform: scaleX(0); transform-origin: left; animation: loaderProgress .55s cubic-bezier(.4,0,.2,1) .12s forwards; }
.site-loader.is-finished { opacity: 0; visibility: hidden; pointer-events: none; }
.site-loader.is-finished .site-loader-inner { transform: scale(1.035); transition: transform .4s ease; }

@keyframes loaderMarkIn { to { clip-path: inset(0); } }
@keyframes loaderNameIn { to { opacity: 1; transform: none; } }
@keyframes loaderProgress { to { transform: scaleX(1); } }

.site-header {
  width: min(var(--shell), calc(100% - 32px));
  min-height: 64px;
  margin: 14px auto 18px;
  padding: 8px 18px;
  display: flex;
  align-items: center;
  position: sticky;
  top: 12px;
  z-index: 50;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 999px;
  background: rgba(36,36,35,.92);
  backdrop-filter: blur(18px);
  box-shadow: 0 14px 38px rgba(0,0,0,.32);
}
.brand { display: inline-flex; align-items: center; gap: 10px; min-width: 214px; }
.brand-symbol { width: 36px; height: 36px; display: inline-block; flex: 0 0 auto; }
.brand-symbol img { width: 100%; height: 100%; display: block; object-fit: contain; }
.brand-name { font-family: "Syne", sans-serif; font-weight: 800; font-size: .94rem; letter-spacing: .04em; line-height: .92; }
.brand-name small { display: block; margin-top: 5px; color: rgba(207,219,213,.7); font-family: "DM Sans", sans-serif; font-size: .54rem; font-weight: 500; letter-spacing: .2em; text-transform: uppercase; }
.main-nav { margin-left: auto; display: flex; align-items: center; justify-content: flex-end; gap: clamp(20px, 2.7vw, 36px); font-size: .84rem; }
.main-nav a { padding: 8px 0; color: rgba(232,237,223,.76); transition: color .2s ease; }
.main-nav a:hover { color: var(--paper); }
.main-nav a[aria-current="true"] { color: var(--cyan); font-weight: 700; }
.header-cta, .pill, .closing-button { border: 0; border-radius: 999px; }
.header-cta { padding: 8px 0; border-radius: 0; color: var(--cyan); background: transparent; cursor: pointer; font-size: .84rem; font-weight: 700; transition: color .2s ease; }
.header-cta:hover { color: var(--yellow); }
.menu-toggle { display: none; }

.hero { display: grid; grid-template-columns: minmax(0, 3fr) minmax(300px, 1fr); gap: 16px; min-height: 630px; }
.hero-main, .side-card, .service-card, .project-stage, .about-art, .about-copy, .closing { border-radius: var(--radius); overflow: hidden; }
.hero-main { position: relative; min-height: 630px; padding: 30px 36px; display: flex; flex-direction: column; justify-content: space-between; background: #171c5f; isolation: isolate; }
.pill { display: inline-flex; align-items: center; width: max-content; padding: 12px 18px; font-size: .68rem; letter-spacing: .07em; text-transform: uppercase; }
.pill-dark { background: var(--ink); color: white; }
.hero-copy { position: relative; z-index: 2; }
h1, h2, h3 { font-family: "Syne", sans-serif; }
h1 { max-width: 900px; margin: 0; font-size: clamp(3.5rem, 6.6vw, 6.15rem); line-height: .88; letter-spacing: -.065em; }
h1 em, h2 em { color: var(--yellow); font-style: normal; }
.hero-bottom { margin-top: 26px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.22); display: flex; align-items: end; justify-content: space-between; gap: 24px; }
.hero-bottom p { margin: 0; max-width: 470px; font-size: 1rem; }
.hero-cta { flex: 0 0 auto; padding: 15px 20px; border: 0; border-radius: 999px; color: var(--ink); background: var(--cyan); cursor: pointer; font-weight: 700; transition: transform .2s ease, background .2s ease; }
.hero-cta:hover { transform: translateY(-2px); background: var(--paper); }
.hero-art { position: absolute; inset: -24px; overflow: hidden; pointer-events: none; z-index: -1; }
.hero-art::before { content: ""; position: absolute; inset: -30%; z-index: 1; opacity: .18; background: linear-gradient(112deg, transparent 38%, rgba(255,255,255,.18) 48%, transparent 58%); transform: translateX(-8%); }
.hero-art::after { content: ""; position: absolute; inset: 0; z-index: 2; background: linear-gradient(180deg, rgba(3,5,22,.04) 8%, rgba(12,21,87,.16) 42%, rgba(24,42,178,.94) 91%), linear-gradient(90deg, rgba(5,7,31,.2), transparent 70%); }
.hero-image { width: 100%; height: 100%; display: block; object-fit: cover; object-position: 56% 42%; transform: scale(1.045); }
.hero-side { display: grid; grid-template-rows: 1fr 1fr; gap: 16px; }
.side-card { min-height: 0; padding: 30px 26px 28px; display: flex; flex-direction: column; justify-content: space-between; border: 1px solid rgba(255,255,255,.05); }
.side-card-dark { background: var(--panel); }
.side-card-blue { background: #1b3dba; }
.deliverable-list { margin: 0 0 26px; padding: 0; display: grid; list-style: none; }
.deliverable-list li { padding: 8px 0; display: flex; align-items: center; gap: 9px; border-bottom: 1px solid rgba(255,255,255,.13); color: rgba(255,255,255,.76); font-size: .72rem; }
.deliverable-list li::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--cyan); }
.card-number { display: block; margin-bottom: 13px; color: rgba(255,255,255,.55); font-size: .68rem; letter-spacing: .12em; }
.side-card h2 { margin: 0; font-size: clamp(1.35rem, 2vw, 1.72rem); line-height: 1.02; letter-spacing: -.035em; }
.side-card p { margin: 16px 0 0; color: #c6c9d0; font-size: .88rem; line-height: 1.45; }

.section { padding-block: 120px; }
.section[id] { scroll-margin-top: 96px; }
.section-intro { margin-bottom: 56px; display: grid; grid-template-columns: 1.25fr .75fr; gap: 50px; align-items: end; }
.kicker { display: block; margin-bottom: 22px; color: #878b93; font-size: .72rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.section-intro h2, .faq-intro h2, .about-copy h2 { margin: 0; font-size: clamp(2.7rem, 5vw, 5rem); line-height: .93; letter-spacing: -.06em; }
.section-intro p { max-width: 520px; margin: 0 0 4px; color: var(--muted); font-size: 1.02rem; }
.service-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.service-card { min-height: 360px; padding: 34px; display: flex; flex-direction: column; justify-content: space-between; color: var(--ink); }
.service-card-yellow { background: var(--yellow); }
.service-card-light { background: var(--paper); }
.service-card-cyan { background: var(--cyan); }
.service-card-dark { color: white; background: var(--panel); }
.service-card > div { height: 100%; display: flex; flex-direction: column; }
.service-index { display: block; margin-bottom: 64px; font-size: .72rem; font-weight: 700; }
.service-card h3 { margin: 0 0 9px; font-size: 1.7rem; letter-spacing: -.035em; }
.service-card p { max-width: 48ch; margin: 0; color: inherit; opacity: .72; font-size: .95rem; }
.service-includes { margin: 24px 0 0; padding: 18px 0 0; display: flex; flex-wrap: wrap; gap: 8px 16px; border-top: 1px solid currentColor; list-style: none; }
.service-includes li { font-size: .74rem; opacity: .72; }
.service-includes li:not(:last-child)::after { content: "/"; margin-left: 16px; opacity: .45; }
.scope-band { margin-top: 16px; display: grid; grid-template-columns: 1fr 1fr; gap: 1px; overflow: hidden; border-radius: var(--radius-sm); background: rgba(207,219,213,.18); }
.scope-band article { padding: 30px 32px; background: var(--panel); }
.scope-band .kicker { margin-bottom: 12px; color: var(--cyan); }
.scope-band p { max-width: 58ch; margin: 0; color: var(--muted); font-size: .92rem; }

.work-section { color: var(--ink); background: var(--paper); }
.section-intro-light .kicker, .section-intro-light p { color: #61636a; }
.project-tabs { display: flex; gap: 10px; margin-bottom: 16px; }
.project-tab { padding: 12px 20px; border: 1px solid #c8c7c1; border-radius: 999px; color: #4b4c50; background: transparent; cursor: pointer; }
.project-tab.active { color: white; border-color: var(--ink); background: var(--ink); }
.project-stage { color: white; background: var(--ink); }
.project-panel { min-height: 690px; padding: 26px; display: none; grid-template-columns: .43fr .57fr; gap: 32px; }
.project-panel.active { display: grid; animation: panelIn .45s ease both; }
.project-copy { padding: 26px 10px 22px; }
.project-copy > span { color: #858991; font-size: .68rem; letter-spacing: .13em; text-transform: uppercase; }
.project-copy h3 { margin: 34px 0 12px; font-size: clamp(2.2rem, 3.7vw, 3.8rem); line-height: .98; letter-spacing: -.055em; }
.project-copy > p { max-width: 420px; margin: 0 0 30px; color: #aeb1b8; }
.case-facts { margin: 0; }
.case-facts div { padding: 15px 0; border-top: 1px solid #2d3035; }
.case-facts dt { margin-bottom: 6px; color: var(--cyan); font-size: .66rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.case-facts dd { margin: 0; color: #b9bcc3; font-size: .86rem; line-height: 1.45; }
.project-visual { position: relative; min-height: 638px; overflow: hidden; border-radius: 24px; background: #202228; }
.project-visual > img { width: 100%; height: 100%; position: absolute; inset: 0; display: block; object-fit: cover; transition: transform .8s cubic-bezier(.2,.7,.2,1); }
.project-panel:hover .project-visual > img { transform: scale(1.035); }
.browser-frame { position: absolute; inset: 24px; overflow: hidden; border: 1px solid rgba(255,255,255,.22); border-radius: 18px; background: #fff; box-shadow: 0 24px 60px rgba(0,0,0,.3); }
.browser-bar { height: 38px; padding: 0 14px; display: flex; align-items: center; gap: 6px; color: #7b7e84; background: #ebeae5; font-size: .58rem; }
.browser-bar i { width: 7px; height: 7px; border-radius: 50%; background: #c4c3be; }
.browser-bar span { margin-left: 8px; }
.mock-site { height: calc(100% - 38px); overflow: hidden; }
.mock-site header { display: flex; align-items: center; justify-content: space-between; gap: 20px; font-size: .64rem; }
.mock-site header b { font-family: "Syne", sans-serif; letter-spacing: .04em; }
.mock-site header em { padding: 8px 12px; border-radius: 999px; font-style: normal; }
.mock-site h4 { font-family: "Syne", sans-serif; letter-spacing: -.055em; }
.atlas-visual { background: #d6c33c; }
.atlas-site { padding: 22px; color: #11120f; background: #e8db50; }
.atlas-site header em { color: white; background: #11120f; }
.atlas-site main { max-width: 82%; padding-top: 86px; }
.atlas-site main small, .north-site main > small { font-size: .56rem; font-weight: 700; letter-spacing: .12em; }
.atlas-site h4 { max-width: 520px; margin: 12px 0 16px; font-size: clamp(2.1rem, 4.2vw, 4.2rem); line-height: .88; }
.atlas-site main p { max-width: 380px; font-size: .77rem; line-height: 1.4; }
.mock-button { margin-top: 14px; padding: 10px 14px; display: inline-block; border-radius: 999px; color: white; background: #1a1c18; font-size: .64rem; font-weight: 700; }
.atlas-site footer { position: absolute; left: 22px; right: 22px; bottom: 22px; padding-top: 14px; display: flex; gap: 20px; border-top: 1px solid rgba(0,0,0,.3); font-size: .6rem; }
.forma-visual { background: #b8ae9d; }
.forma-site { padding: 18px; color: #181818; background: #f1eee7; }
.forma-site header { height: 38px; }
.forma-hero { height: calc(100% - 92px); position: relative; overflow: hidden; }
.forma-hero img { width: 100%; height: 100%; display: block; object-fit: cover; filter: saturate(.75); }
.forma-hero::after { content: ""; position: absolute; inset: 45% 0 0; background: linear-gradient(transparent, rgba(0,0,0,.55)); }
.forma-hero h4 { max-width: 420px; margin: 0; position: absolute; left: 24px; bottom: 22px; z-index: 1; color: white; font-size: clamp(2rem, 4vw, 3.8rem); line-height: .9; }
.forma-site footer { height: 54px; display: flex; align-items: center; gap: 18px; font-size: .58rem; }
.forma-site footer em { margin-left: auto; font-style: normal; font-weight: 700; }
.north-visual { background: #6ee8cd; }
.north-site { padding: 22px; color: #f8faf8; background: #153b35; }
.north-site main { padding-top: 62px; }
.north-site h4 { max-width: 540px; margin: 12px 0 28px; font-size: clamp(2rem, 4vw, 4rem); line-height: .9; }
.audience-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.audience-cards article { min-height: 170px; padding: 18px; display: flex; flex-direction: column; border-radius: 14px; color: #11342e; background: #6ee8cd; }
.audience-cards article:last-child { color: #17181a; background: #f3df4e; }
.audience-cards span { font-size: .58rem; text-transform: uppercase; letter-spacing: .08em; }
.audience-cards b { margin-top: auto; max-width: 180px; font-family: "Syne", sans-serif; font-size: 1.25rem; line-height: 1; }
.audience-cards em { margin-top: 12px; font-size: .6rem; font-style: normal; font-weight: 700; }

.fit-section { padding-top: 120px; }
.fit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.fit-card { min-height: 330px; padding: 34px; display: flex; flex-direction: column; border-radius: var(--radius); background: var(--panel); }
.fit-card > span { color: var(--cyan); font-size: .68rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.fit-card h3 { max-width: 520px; margin: auto 0 14px; font-size: clamp(1.8rem, 3vw, 3rem); line-height: .98; letter-spacing: -.045em; }
.fit-card p { max-width: 58ch; margin: 0; color: var(--muted); }
.fit-card small { margin-top: 18px; color: inherit; opacity: .7; line-height: 1.45; }
.fit-card-cyan, .fit-card-yellow { color: var(--ink); }
.fit-card-cyan { background: var(--cyan); }
.fit-card-yellow { background: var(--yellow); }
.fit-card-cyan > span, .fit-card-yellow > span { color: var(--ink); }
.fit-card-cyan p, .fit-card-yellow p { color: inherit; opacity: .72; }
.support-strip { margin-top: 16px; padding: 24px 28px; display: grid; grid-template-columns: .25fr 1fr auto; gap: 28px; align-items: center; border: 1px solid #2c2e33; border-radius: var(--radius-sm); }
.support-strip strong { font-family: "Syne", sans-serif; font-size: 1.2rem; }
.support-strip p { margin: 0; color: var(--muted); }
.support-strip .text-button { margin: 0; white-space: nowrap; }

.process-list { border-top: 1px solid #2a2c31; }
.process-list article { display: grid; grid-template-columns: 70px .75fr 1.25fr; gap: 26px; align-items: center; padding: 30px 4px; border-bottom: 1px solid #2a2c31; transition: padding .25s ease, background .25s ease; }
.process-list article:hover { padding-inline: 18px; background: #121316; }
.process-list span { color: #777b83; font-size: .72rem; text-transform: uppercase; letter-spacing: .1em; }
.process-list h3 { margin: 0; font-size: 1.35rem; }
.process-list p { margin: 0; color: var(--muted); }

.about-section { padding-block: 16px 120px; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.about-art, .about-copy { min-height: 580px; }
.about-art { position: relative; color: var(--ink); background: #15205b; }
.about-art::after { content: ""; position: absolute; inset: 58% 0 0; background: linear-gradient(transparent, rgba(4,7,20,.48)); pointer-events: none; }
.about-art > img { width: 100%; height: 100%; display: block; object-fit: cover; object-position: center; transition: transform 1s cubic-bezier(.2,.7,.2,1); }
.about-art:hover > img { transform: scale(1.025); }
.studio-model { padding: clamp(34px, 6vw, 68px); display: flex; flex-direction: column; color: var(--ink); background: var(--cyan); }
.studio-model::after { display: none; }
.studio-model > span { font-family: "Syne", sans-serif; font-size: clamp(6rem, 11vw, 9rem); font-weight: 800; line-height: .75; letter-spacing: -.1em; }
.studio-model > p { margin: auto 0 24px; font-family: "Syne", sans-serif; font-size: clamp(1.8rem, 3.4vw, 3.2rem); font-weight: 700; line-height: .98; letter-spacing: -.045em; }
.studio-model > small { max-width: 42ch; line-height: 1.45; opacity: .65; }
.about-copy { padding: clamp(38px, 6vw, 76px); display: flex; flex-direction: column; justify-content: center; background: var(--panel); }
.about-copy p { margin: 30px 0 36px; color: var(--muted); font-size: 1.05rem; }
.about-copy ul { margin: 0; padding: 0; list-style: none; }
.about-copy li { display: flex; gap: 18px; padding: 15px 0; border-top: 1px solid #34363b; }
.about-copy li span { color: var(--cyan); font-size: .75rem; }

.faq-section { display: grid; grid-template-columns: .72fr 1.28fr; gap: 80px; }
.faq-intro { position: sticky; top: 110px; align-self: start; }
.text-button { margin-top: 32px; padding: 0 0 8px; border: 0; border-bottom: 1px solid var(--cyan); color: var(--cyan); background: transparent; cursor: pointer; }
.faq-list { border-top: 1px solid #2c2e33; }
.faq-list details { border-bottom: 1px solid #2c2e33; }
.faq-list summary { padding: 27px 2px; display: flex; align-items: center; gap: 24px; cursor: pointer; list-style: none; font-family: "Syne", sans-serif; font-size: 1.2rem; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; margin-left: auto; color: var(--cyan); font-size: 1.5rem; }
.faq-list details[open] summary::after { content: "-"; }
.faq-list summary span { color: #73767d; font-family: "DM Sans", sans-serif; font-size: .7rem; }
.faq-list details p { margin: -4px 56px 28px; color: var(--muted); }

.closing { min-height: 510px; margin-bottom: 18px; padding: 36px; position: relative; display: flex; flex-direction: column; justify-content: space-between; background: linear-gradient(135deg, #7330ff, #2457ff 67%, #168cf4); isolation: isolate; }
.closing h2 { position: relative; z-index: 2; margin: 0; font-size: clamp(3.2rem, 7vw, 6.5rem); line-height: .88; letter-spacing: -.07em; }
.closing > div { display: flex; justify-content: flex-end; align-items: end; gap: 30px; }
.closing-button { position: relative; z-index: 2; flex: 0 0 auto; padding: 10px 10px 10px 24px; color: var(--ink); background: var(--cyan); cursor: pointer; font-weight: 700; }
.closing-button span { width: 46px; height: 46px; margin-left: 18px; display: inline-grid; place-items: center; border-radius: 50%; color: white; background: var(--ink); font-size: 1.35rem; }

.site-footer { padding: 42px 12px 30px; display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: start; color: #8e9198; }
.footer-brand { color: white; }
.site-footer > p { margin: 0; text-align: right; }
.footer-links { grid-column: 1 / -1; display: flex; flex-wrap: wrap; gap: 25px; padding-block: 24px; border-block: 1px solid #25272c; }
.footer-links a:hover { color: var(--cyan); }
.site-footer > small { grid-column: 1 / -1; }

.brief-dialog { width: min(840px, calc(100% - 24px)); max-height: calc(100vh - 24px); padding: 0; overflow: auto; border: 1px solid rgba(207,219,213,.18); border-radius: 30px; color: var(--paper); background: var(--panel); box-shadow: 0 30px 120px rgba(0,0,0,.72); }
.brief-dialog::backdrop { background: rgba(0,0,0,.76); backdrop-filter: blur(10px); }
.brief-form { min-height: 590px; position: relative; padding: clamp(34px, 5vw, 54px); color: var(--paper); }
.dialog-close { width: 42px; height: 42px; position: absolute; top: 18px; right: 18px; z-index: 3; border: 1px solid rgba(207,219,213,.2); border-radius: 50%; color: var(--paper); background: var(--ink); cursor: pointer; font-size: 1.45rem; line-height: 1; }
.dialog-close:hover { color: var(--ink); border-color: var(--cyan); background: var(--cyan); }
.main-quote-progress { margin: 0 58px 34px 0; display: grid; grid-template-columns: auto 1fr; gap: 20px; align-items: center; color: #aeb1b8; font-size: .78rem; }
.main-quote-progress[hidden], .main-quote-step[hidden] { display: none !important; }
.main-quote-progress > i { height: 4px; overflow: hidden; border-radius: 999px; background: #34373e; }
.main-quote-progress > i span { width: 25%; height: 100%; display: block; border-radius: inherit; background: var(--cyan); transition: width .3s ease; }
.main-quote-step { min-height: 450px; margin: 0; padding: 0; display: flex; flex-direction: column; border: 0; }
.main-quote-step:focus { outline: 0; }
.main-quote-welcome, .main-quote-success { justify-content: center; }
.main-quote-eyebrow { color: var(--cyan); font-size: .7rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.main-quote-welcome-eyebrow { width: max-content; display: inline-flex; align-items: center; gap: 10px; }
.main-quote-welcome-eyebrow i { width: 34px; height: 34px; display: block; background: url('/images/quote-hourglass-ai-68.avif') center / contain no-repeat; }
.main-quote-step h2, .main-quote-step legend { max-width: 720px; margin: 20px 0 0; color: var(--paper); font-family: "Syne", sans-serif; font-size: clamp(2.7rem, 5.5vw, 4.5rem); font-weight: 700; line-height: .92; letter-spacing: -.06em; }
.main-quote-step legend { float: left; width: 100%; }
.main-quote-step legend + p { clear: both; }
.main-quote-step > p { max-width: 650px; margin: 22px 0 0; color: #aeb1b8; font-size: 1rem; }
.main-quote-welcome > p { max-width: 590px; }
.main-quote-options { margin-top: 34px; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.brief-form .main-quote-options label { margin: 0; display: block; color: #d9dce2; cursor: pointer; font-size: .92rem; }
.main-quote-options input { position: absolute; opacity: 0; pointer-events: none; }
.main-quote-options label > span { min-height: 84px; padding: 10px 18px 10px 12px; display: grid; grid-template-columns: 62px 1fr; gap: 14px; align-items: center; border: 1px solid rgba(207,219,213,.2); border-radius: 19px; background: var(--ink); transition: border-color .18s ease, background .18s ease, transform .18s ease; }
.main-quote-options label:hover > span { border-color: #646870; transform: translateY(-1px); }
.main-quote-options input:focus-visible + span { outline: 2px solid var(--cyan); outline-offset: 3px; }
.main-quote-options input:checked + span { color: var(--ink); border-color: var(--cyan); background: var(--cyan); }
.main-quote-option-icon { width: 60px; height: 60px; display: block; background-position: center; background-repeat: no-repeat; background-size: contain; }
.quote-icon-01 { background-image: url('/images/quote-icon-new-ai-120.avif'); }
.quote-icon-02 { background-image: url('/images/quote-icon-redesign-ai-120.avif'); }
.quote-icon-03 { background-image: url('/images/quote-icon-landing-ai-120.avif'); }
.quote-icon-04 { background-image: url('/images/quote-icon-unsure-ai-120.avif'); }
.quote-icon-05 { background-image: url('/images/quote-icon-one-page-ai-120.avif'); }
.quote-icon-06 { background-image: url('/images/quote-icon-small-site-ai-120.avif'); }
.quote-icon-07 { background-image: url('/images/quote-icon-large-site-ai-120.avif'); }
.quote-icon-08 { background-image: url('/images/quote-icon-unsure-size-ai-120.avif'); }
.quote-icon-09 { background-image: url('/images/quote-icon-fast-ai-120.avif'); }
.quote-icon-10 { background-image: url('/images/quote-icon-clock-ai-120.avif'); }
.quote-icon-11 { background-image: url('/images/quote-icon-calendar-ai-120.avif'); }
.quote-icon-12 { background-image: url('/images/quote-icon-open-ai-120.avif'); }
.main-quote-controls { margin-top: auto; padding-top: 34px; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.main-quote-primary, .main-quote-back { border: 0; border-radius: 999px; cursor: pointer; font-weight: 700; }
.main-quote-primary { padding: 9px 9px 9px 23px; color: var(--ink); background: var(--cyan); }
.main-quote-primary > span { width: 42px; height: 42px; margin-left: 18px; display: inline-grid; place-items: center; border-radius: 50%; color: var(--paper); background: var(--ink); font-size: 1.2rem; }
.main-quote-primary:hover { background: var(--paper); }
.main-quote-primary:disabled { opacity: .6; cursor: wait; }
.main-quote-back { padding: 14px 20px; color: #c4c7ce; border: 1px solid #44474f; background: transparent; }
.main-quote-back:hover { color: white; border-color: #696d76; }
.main-quote-welcome .main-quote-primary { width: max-content; margin-top: 30px; }
.main-quote-contact { gap: 0; }
.main-quote-contact h2 { margin-bottom: 28px; font-size: clamp(2.35rem, 5vw, 3.8rem); }
.brief-form .main-quote-contact > label, .brief-form .main-quote-contact .form-row label { display: grid; gap: 7px; margin-bottom: 14px; color: #bfc2c9; font-size: .78rem; font-weight: 700; }
.brief-form label small { margin-left: 5px; color: #858a93; font-size: .68rem; font-weight: 500; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.brief-form .main-quote-contact input, .brief-form .main-quote-contact textarea { width: 100%; padding: 12px 13px; border: 1px solid rgba(207,219,213,.2); border-radius: 11px; color: var(--paper); background: var(--ink); outline: none; }
.brief-form .main-quote-contact textarea { resize: vertical; }
.brief-form .main-quote-contact input:focus, .brief-form .main-quote-contact textarea:focus { border-color: var(--cyan); box-shadow: 0 0 0 3px rgba(207,219,213,.12); }
.brief-form .privacy-check { display: flex; align-items: flex-start; gap: 10px; color: #aeb1b8; font-weight: 500; line-height: 1.4; }
.brief-form .privacy-check input { width: 17px; height: 17px; margin: 2px 0 0; flex: 0 0 auto; accent-color: var(--cyan); }
.privacy-check a { color: var(--cyan); text-decoration: underline; text-underline-offset: 2px; }
.form-status { min-height: 20px; margin: 12px 0 0; color: var(--yellow); font-size: .84rem; }
.main-quote-success-message { max-width: 560px; }
.honeypot { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }

.legal-page { color: var(--ink); background: var(--paper); }
.legal-page::before { display: none; }
.legal-header { min-height: 84px; padding-block: 20px; display: flex; align-items: center; justify-content: space-between; color: var(--ink); }
.legal-header > a:last-child { font-size: .85rem; font-weight: 700; }
.legal-main { max-width: 900px; padding-block: 80px 120px; }
.legal-main > header { padding-bottom: 54px; border-bottom: 1px solid #cccbc5; }
.legal-main > header .kicker { margin-bottom: 18px; color: #64676d; }
.legal-main h1 { max-width: none; color: var(--ink); font-size: clamp(3.8rem, 9vw, 7.5rem); }
.legal-main > header p { max-width: 620px; margin: 24px 0 0; color: #5c5f64; font-size: 1.1rem; }
.legal-main section { padding: 34px 0; border-bottom: 1px solid #d6d5cf; }
.legal-main section h2 { margin: 0 0 15px; color: var(--ink); font-size: 1.45rem; letter-spacing: -.025em; }
.legal-main section p, .legal-main section li { color: #4f5257; line-height: 1.65; }
.legal-main section p { max-width: 760px; margin: 10px 0; }
.legal-main section ul { margin: 12px 0; padding-left: 22px; }
.legal-main a { color: var(--ink); font-weight: 700; text-decoration: underline; text-decoration-color: var(--yellow); text-decoration-thickness: 2px; text-underline-offset: 3px; }
.legal-footer { padding-block: 30px 50px; display: flex; justify-content: space-between; gap: 24px; border-top: 1px solid #cccbc5; color: #4f5257; font-size: .84rem; }

.reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in-view { opacity: 1; transform: none; }
@keyframes panelIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
@media (max-width: 1050px) {
  .brand { min-width: auto; }
  .hero { grid-template-columns: 1fr; }
  .hero-side { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .side-card { min-height: 320px; }
  .project-panel { grid-template-columns: 1fr; }
  .project-copy { min-height: 0; }
  .project-visual { min-height: 560px; }
}

@media (max-width: 880px) {
  .site-header { width: calc(100% - 20px); min-height: 60px; margin: 10px auto 14px; padding: 7px 10px 7px 14px; top: 8px; }
  .site-header:has(.main-nav.open) { border-radius: 999px; }
  .menu-toggle { width: 40px; height: 40px; margin-left: auto; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px; border: 0; padding: 0; background: transparent; }
  .menu-toggle .menu-line { width: 18px; height: 1.5px; border-radius: 999px; background: white; transform-origin: center; transition: opacity .18s ease, transform .2s ease; }
  .menu-toggle:focus-visible { outline: 2px solid rgba(255,255,255,.9); outline-offset: 2px; }
  .menu-toggle[aria-expanded="true"] .menu-line:first-child { transform: translateY(5.5px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] .menu-line:nth-child(2) { opacity: 0; transform: scaleX(0); }
  .menu-toggle[aria-expanded="true"] .menu-line:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }
  .main-nav { width: auto; position: absolute; inset: calc(100% + 8px) 0 auto; margin: 0; padding: 10px 14px 14px; display: flex; align-items: stretch; flex-direction: column; gap: 0; border: 1px solid rgba(207,219,213,.16); border-radius: 22px; background: rgba(36,36,35,.98); box-shadow: 0 18px 42px rgba(0,0,0,.38); backdrop-filter: blur(18px); opacity: 0; visibility: hidden; pointer-events: none; transform: translateY(-8px) scale(.985); transform-origin: top; transition: opacity .18s ease, transform .2s ease, visibility .2s ease; }
  .main-nav a { width: 100%; padding: 12px 2px; }
  .main-nav .header-cta { width: 100%; margin-top: 4px; padding: 12px 2px; text-align: left; }
  .main-nav.open { opacity: 1; visibility: visible; pointer-events: auto; transform: none; }
}

@media (max-width: 760px) {
  :root { --radius: 25px; }
  .shell { width: min(100% - 20px, var(--shell)); }
  .hero-main { min-height: 620px; padding: 22px; }
  .hero { min-height: auto; }
  h1 { font-size: clamp(3.1rem, 15vw, 5rem); }
  .hero-side { grid-template-columns: 1fr; }
  .hero-bottom { align-items: flex-start; flex-direction: column; }
  .hero-bottom p { font-size: .88rem; }
  .hero-cta { width: 100%; }
  .section { padding-block: 82px; }
  .section[id] { scroll-margin-top: 82px; }
  .section-intro { grid-template-columns: 1fr; gap: 24px; margin-bottom: 40px; }
  .section-intro h2, .faq-intro h2, .about-copy h2 { font-size: clamp(2.55rem, 12vw, 4rem); }
  .service-grid, .scope-band, .fit-grid, .about-grid, .faq-section { grid-template-columns: 1fr; }
  .service-card { min-height: 320px; padding: 28px; }
  .scope-band article { padding: 26px; }
  .fit-card { min-height: 290px; padding: 28px; }
  .support-strip { padding: 24px; grid-template-columns: 1fr; gap: 12px; }
  .support-strip .text-button { justify-self: start; margin-top: 8px; }
  .work-section { padding-block: 80px; }
  .project-tabs { overflow-x: auto; padding-bottom: 4px; }
  .project-tab { white-space: nowrap; }
  .project-panel { min-height: 0; padding: 15px; gap: 20px; }
  .project-copy { min-height: 0; padding: 24px 12px; }
  .project-visual { min-height: 500px; }
  .browser-frame { inset: 12px; }
  .mock-site header > span { display: none; }
  .atlas-site main { max-width: 100%; padding-top: 56px; }
  .atlas-site h4, .north-site h4 { font-size: clamp(2.2rem, 10vw, 3.5rem); }
  .north-site main { padding-top: 42px; }
  .audience-cards article { min-height: 150px; padding: 14px; }
  .process-list article { grid-template-columns: 44px 1fr; gap: 12px; }
  .process-list article p { grid-column: 2; text-align: left; }
  .about-art, .about-copy { min-height: 480px; }
  .about-section { padding-bottom: 80px; }
  .faq-section { gap: 40px; }
  .faq-intro { position: static; }
  .closing { min-height: 580px; padding: 26px; }
  .closing > div { display: block; }
  .closing-button { margin-top: 30px; }
  .site-footer { grid-template-columns: 1fr; }
  .site-footer > p { text-align: left; }
  .site-footer > p, .footer-links, .site-footer > small { grid-column: 1; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .brief-dialog { width: calc(100% - 16px); max-height: calc(100vh - 16px); border-radius: 24px; }
  .brief-form { min-height: 0; padding: 26px 18px 22px; }
  .dialog-close { width: 38px; height: 38px; top: 14px; right: 14px; }
  .main-quote-progress { margin: 4px 50px 28px 0; gap: 12px; }
  .main-quote-step { min-height: 0; }
  .main-quote-welcome, .main-quote-success { min-height: 430px; }
  .main-quote-step h2, .main-quote-step legend { font-size: clamp(2.25rem, 11vw, 3.2rem); }
  .main-quote-step > p { margin-top: 16px; font-size: .92rem; }
  .main-quote-options { margin-top: 26px; grid-template-columns: 1fr; gap: 8px; }
  .main-quote-options label > span { min-height: 68px; padding: 7px 14px 7px 8px; grid-template-columns: 52px 1fr; gap: 12px; border-radius: 16px; }
  .main-quote-option-icon { width: 52px; height: 52px; }
  .main-quote-controls { padding-top: 26px; }
  .main-quote-primary { padding-left: 19px; }
  .main-quote-primary > span { width: 38px; height: 38px; margin-left: 12px; }
  .main-quote-contact h2 { margin-bottom: 24px; }
  .main-quote-contact .main-quote-controls { align-items: stretch; flex-direction: column-reverse; }
  .main-quote-contact .main-quote-primary { width: 100%; display: flex; align-items: center; justify-content: space-between; }
  .main-quote-contact .main-quote-back { width: 100%; }
  .legal-header .brand-name { display: block; }
  .legal-header > a:last-child { font-size: .72rem; }
  .legal-main { padding-block: 54px 80px; }
  .legal-main > header { padding-bottom: 38px; }
  html[lang^="ro"] .legal-main h1 { font-size: clamp(2.4rem, 10.8vw, 4rem); }
  .legal-footer { flex-direction: column; }
}

@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; }
  .site-loader { display: none; }
}
