/* Big Ideas — AI + Print website redesign */
:root {
  --navy: #06162f;
  --navy-deep: #020b19;
  --navy-soft: #102342;
  --cyan: #00aeef;
  --magenta: #ec008c;
  --yellow: #ffde00;
  --ink: #101827;
  --muted: #5f6673;
  --paper: #f2eee4;
  --cream: #fbf8f1;
  --white: #ffffff;
  --line: #dcd8ce;
  --line-dark: rgba(255, 255, 255, 0.16);
  --success: #16815e;
  --max: 1240px;
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --shadow: 0 24px 70px rgba(2, 11, 25, 0.16);
  --font-sans: "DM Sans", "Segoe UI", Arial, sans-serif;
  --font-display: "Fraunces", Georgia, serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 116px; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
:focus-visible { outline: 3px solid var(--cyan); outline-offset: 4px; }
::selection { background: var(--yellow); color: var(--navy-deep); }

.container { width: min(var(--max), calc(100% - 48px)); margin-inline: auto; }
.section { padding: 112px 0; }
.section-dark { background: var(--navy); color: var(--white); }

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 16px;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--yellow);
  color: var(--navy-deep);
  font-weight: 700;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}
.skip-link:focus { transform: translateY(0); }

/* Announcement and navigation */
.announcement { background: var(--navy-deep); color: #dce7f6; border-bottom: 1px solid rgba(255,255,255,.1); }
.announcement-inner { min-height: 34px; display: flex; align-items: center; justify-content: space-between; gap: 24px; font-size: 12px; letter-spacing: .02em; }
.announcement p { margin: 0; }
.announcement a { color: var(--white); font-weight: 700; }
.announcement a:hover { color: var(--yellow); }
.announcement-dot { display: inline-block; width: 7px; height: 7px; margin-right: 9px; border-radius: 50%; background: var(--magenta); box-shadow: 0 0 0 5px rgba(236,0,140,.14); }

.site-header { position: sticky; top: 0; z-index: 100; background: rgba(6, 22, 47, .96); border-bottom: 1px solid rgba(255,255,255,.1); transition: box-shadow 180ms ease, background 180ms ease; }
.site-header.scrolled { background: rgba(2, 11, 25, .98); box-shadow: 0 10px 35px rgba(0,0,0,.18); }
.nav-wrap { min-height: 80px; display: flex; align-items: center; justify-content: space-between; gap: 34px; }
.brand { display: block; flex: 0 0 auto; }
.brand img { width: 214px; }
.primary-nav { display: flex; align-items: center; gap: 30px; color: var(--white); font-size: 14px; font-weight: 600; }
.primary-nav > a:not(.nav-cta) { position: relative; padding: 28px 0 26px; }
.primary-nav > a:not(.nav-cta)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 20px; height: 2px; background: var(--cyan); transition: right 180ms ease; }
.primary-nav > a:not(.nav-cta):hover::after { right: 0; }
.nav-cta { display: inline-flex; min-height: 46px; align-items: center; gap: 10px; padding: 0 17px; border-radius: 10px; background: var(--magenta); color: var(--white); box-shadow: 0 0 0 1px rgba(255,255,255,.14) inset; }
.nav-cta:hover { background: #ff169d; }
.menu-toggle { display: none; width: 48px; height: 48px; padding: 0; border: 1px solid rgba(255,255,255,.2); border-radius: 10px; background: transparent; align-items: center; justify-content: center; flex-direction: column; gap: 5px; cursor: pointer; }
.menu-toggle span { width: 22px; height: 2px; background: #fff; border-radius: 2px; transition: transform 180ms ease, opacity 180ms ease; }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Reusable type and buttons */
.eyebrow { margin: 0 0 18px; color: var(--navy); font-size: 12px; line-height: 1.3; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.eyebrow span { color: var(--magenta); }
.eyebrow-light { color: #d6e0ee; }
.eyebrow-light span { color: var(--cyan); }
.kicker { margin: 0; font-size: 11px; line-height: 1.3; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
h1, h2, h3, p { text-wrap: pretty; }
h2 { margin: 0; font-size: clamp(42px, 5vw, 72px); line-height: 1.02; letter-spacing: -.055em; }
h2 em { color: var(--magenta); font-family: var(--font-display); font-weight: 600; }
.button { min-height: 54px; display: inline-flex; align-items: center; justify-content: center; gap: 12px; padding: 0 21px; border: 0; border-radius: 11px; font-size: 14px; font-weight: 700; line-height: 1; cursor: pointer; transition: transform 160ms ease, background 160ms ease, color 160ms ease, box-shadow 160ms ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--magenta); color: var(--white); box-shadow: 0 12px 30px rgba(236,0,140,.22); }
.button-primary:hover { background: #ff139c; box-shadow: 0 15px 36px rgba(236,0,140,.27); }
.button-ghost { border: 1px solid rgba(255,255,255,.55); color: var(--white); background: transparent; }
.button-ghost:hover { border-color: var(--white); background: var(--white); color: var(--navy); }
.button-light { background: var(--yellow); color: var(--navy-deep); }
.button-light:hover { background: #ffe83f; }
.text-link { display: inline-flex; align-items: center; gap: 10px; padding-bottom: 5px; border-bottom: 1px solid var(--ink); color: var(--ink); font-weight: 700; }
.text-link:hover { color: var(--magenta); border-color: var(--magenta); }

/* Hero */
.hero { position: relative; overflow: hidden; background: var(--navy); color: var(--white); }
.hero::before { content: ""; position: absolute; width: 480px; height: 480px; right: -180px; top: -240px; border: 110px solid rgba(0,174,239,.09); border-radius: 50%; }
.hero::after { content: ""; position: absolute; width: 280px; height: 280px; left: -210px; bottom: -150px; border: 80px solid rgba(236,0,140,.09); border-radius: 50%; }
.hero-color-rule { position: absolute; z-index: 2; inset: auto auto 0 0; display: grid; grid-template-columns: repeat(4, 1fr); width: 180px; height: 8px; }
.hero-color-rule span:nth-child(1) { background: var(--magenta); }
.hero-color-rule span:nth-child(2) { background: var(--cyan); }
.hero-color-rule span:nth-child(3) { background: var(--yellow); }
.hero-color-rule span:nth-child(4) { background: #0c0c0d; }
.hero-grid { position: relative; z-index: 1; min-height: 705px; display: grid; grid-template-columns: minmax(0, .96fr) minmax(470px, .84fr); align-items: center; gap: 70px; padding: 76px 0 92px; }
.hero-copy { max-width: 675px; }
.hero h1 { margin: 0; font-size: clamp(54px, 6.1vw, 88px); line-height: .95; letter-spacing: -.065em; font-weight: 600; }
.hero h1 em { display: block; margin-top: 13px; color: var(--yellow); font-family: var(--font-display); font-weight: 600; letter-spacing: -.035em; }
.hero-lede { max-width: 640px; margin: 30px 0 32px; color: #dce5f2; font-size: 19px; line-height: 1.62; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; }
.hero-proof { display: flex; flex-wrap: wrap; gap: 11px 25px; margin: 28px 0 0; padding: 0; list-style: none; color: #c3cede; font-size: 12px; font-weight: 600; }
.hero-proof li { display: flex; align-items: center; gap: 7px; }
.hero-proof span { color: var(--cyan); font-weight: 700; }
.hero-visual { --tilt-x: 0deg; --tilt-y: 0deg; --shift-x: 0px; --shift-y: 0px; position: relative; isolation: isolate; width: 100%; max-width: 610px; margin-left: auto; padding: 4px 0 66px 24px; perspective: 1100px; transform-style: preserve-3d; }
.hero-visual::before { content: ""; position: absolute; z-index: -1; inset: 8% -8% 4% 2%; background: radial-gradient(circle at 36% 42%, rgba(0,174,239,.22), transparent 45%), radial-gradient(circle at 77% 62%, rgba(236,0,140,.18), transparent 40%); filter: blur(28px); opacity: .85; pointer-events: none; }
.hero-image-frame { position: relative; overflow: visible; background: transparent; transform-style: preserve-3d; transform: translate3d(var(--shift-x), var(--shift-y), 0) rotateX(var(--tilt-x)) rotateY(var(--tilt-y)); transform-origin: 52% 55%; transition: transform 260ms cubic-bezier(.2,.8,.2,1); will-change: transform; }
.hero-image-frame::after { content: ""; position: absolute; inset: 11% 8% 10% 10%; z-index: -1; border-radius: 50%; background: rgba(0,0,0,.26); filter: blur(38px); transform: translate3d(0, 28px, -30px); pointer-events: none; }
.hero-image-frame > img { width: 100%; aspect-ratio: 1; object-fit: contain; filter: drop-shadow(0 30px 38px rgba(0,0,0,.38)); animation: hero-drift 8s ease-in-out infinite; }
.new-service-stamp { position: absolute; z-index: 3; top: 30px; left: 4px; width: 132px; height: 132px; display: flex; flex-direction: column; align-items: center; justify-content: center; border-radius: 50%; background: var(--yellow); color: var(--navy-deep); text-align: center; transform: translateZ(72px) rotate(-8deg); box-shadow: 0 18px 40px rgba(2,11,25,.3); }
.new-service-stamp::before, .new-service-stamp::after { content: ""; position: absolute; inset: 7px; border: 1px dashed rgba(2,11,25,.35); border-radius: inherit; }
.new-service-stamp::after { inset: 11px; }
.new-service-stamp span { font-size: 10px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.new-service-stamp strong { max-width: 90px; font-size: 21px; line-height: 1; letter-spacing: -.04em; text-transform: uppercase; }
.project-card { position: absolute; z-index: 4; right: -12px; bottom: 0; width: min(330px, 78%); padding: 17px 18px 15px; border: 1px solid rgba(216,220,227,.9); border-radius: 16px; background: rgba(255,255,255,.96); color: var(--ink); box-shadow: 0 26px 65px rgba(0,0,0,.26); backdrop-filter: blur(8px); transform: translateZ(90px) rotateY(-2deg); }
.project-card-head { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding-bottom: 12px; border-bottom: 1px solid #e6e8ec; font-size: 9px; font-weight: 700; letter-spacing: .11em; }
.status-pill { display: inline-flex; align-items: center; gap: 5px; padding: 4px 7px; border-radius: 999px; background: #eaf7f2; color: #14674e; letter-spacing: 0; }
.status-pill i { width: 6px; height: 6px; border-radius: 50%; background: var(--success); }
.project-card ol { display: grid; gap: 0; margin: 8px 0 0; padding: 0; list-style: none; }
.project-card li { display: grid; grid-template-columns: 28px 1fr; align-items: center; min-height: 34px; border-bottom: 1px solid #eceef1; font-size: 11px; }
.project-card li:last-child { border-bottom: 0; }
.project-card li span { color: var(--magenta); font-size: 9px; font-weight: 700; }
.project-card li strong { font-weight: 600; }

@keyframes hero-drift {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(0, -9px, 0) scale(1.012); }
}

/* Toolchain */
.toolchain { border-bottom: 1px solid var(--line); background: var(--cream); }
.toolchain-grid { min-height: 132px; display: grid; grid-template-columns: 210px 1fr; align-items: center; gap: 44px; }
.toolchain-note { margin: 5px 0 0; color: var(--muted); font-size: 12px; }
.tool-list { display: flex; flex-wrap: wrap; gap: 9px; margin: 0; padding: 0; list-style: none; }
.tool-list li { padding: 7px 11px; border: 1px solid var(--line); border-radius: 7px; background: var(--white); color: #2a3340; font-size: 12px; font-weight: 600; box-shadow: 0 2px 0 rgba(16,24,39,.03); }
.tool-list li:nth-last-child(1) { background: var(--navy); color: var(--white); border-color: var(--navy); }

/* AI service accordion */
.ai-services { background: var(--paper); }
.services-layout { display: grid; grid-template-columns: minmax(330px, .78fr) minmax(500px, 1.22fr); align-items: start; gap: 100px; }
.services-intro { position: sticky; top: 126px; }
.services-intro h2 { font-size: clamp(48px, 5.25vw, 72px); }
.services-intro > p:not(.eyebrow) { max-width: 530px; margin: 28px 0 27px; color: #4d5561; font-size: 17px; }
.services-principle { display: grid; grid-template-columns: 42px 1fr; gap: 16px; margin-top: 46px; padding-top: 22px; border-top: 1px solid #cec8bb; }
.services-principle > span { display: grid; place-items: center; width: 35px; height: 35px; border-radius: 50%; background: var(--cyan); color: var(--navy-deep); font-size: 10px; font-weight: 700; }
.services-principle p { margin: 0; color: #4d5561; font-size: 13px; }
.services-principle strong { color: var(--ink); }
.service-list { border-top: 1px solid #c9c4b9; }
.service-item { border-bottom: 1px solid #c9c4b9; }
.service-item summary { min-height: 92px; display: grid; grid-template-columns: 48px 1fr 28px; align-items: center; gap: 16px; padding: 0 5px; list-style: none; cursor: pointer; }
.service-item summary::-webkit-details-marker { display: none; }
.service-item summary:hover .service-title { color: var(--magenta); }
.service-number { color: #77796f; font-size: 11px; font-weight: 700; }
.service-title { font-size: clamp(20px, 2vw, 27px); line-height: 1.2; letter-spacing: -.025em; font-weight: 600; transition: color 150ms ease; }
.service-toggle { position: relative; width: 24px; height: 24px; border: 1px solid #a9a89f; border-radius: 50%; }
.service-toggle::before, .service-toggle::after { content: ""; position: absolute; top: 50%; left: 50%; width: 9px; height: 1px; background: var(--ink); transform: translate(-50%, -50%); }
.service-toggle::after { transform: translate(-50%, -50%) rotate(90deg); transition: transform 160ms ease; }
.service-item[open] .service-toggle { border-color: var(--magenta); background: var(--magenta); }
.service-item[open] .service-toggle::before, .service-item[open] .service-toggle::after { background: #fff; }
.service-item[open] .service-toggle::after { transform: translate(-50%, -50%) rotate(0); }
.service-item[open] .service-title { color: var(--magenta); }
.service-content { padding: 0 48px 30px 69px; }
.service-content > p { max-width: 650px; margin: -3px 0 19px; color: #4e5661; font-size: 15px; }
.service-content ul { display: flex; flex-wrap: wrap; gap: 7px; margin: 0; padding: 0; list-style: none; }
.service-content li { padding: 6px 9px; border: 1px solid #cec9be; border-radius: 6px; background: rgba(255,255,255,.42); color: #414955; font-size: 11px; font-weight: 600; }

/* Prompt-to-print scenarios */
.prompt-to-print { position: relative; overflow: hidden; padding: 118px 0; }
.prompt-to-print::before { content: ""; position: absolute; top: 0; left: 0; width: 168px; height: 8px; background: linear-gradient(90deg, var(--magenta) 0 25%, var(--cyan) 25% 50%, var(--yellow) 50% 75%, #111 75%); }
.prompt-grid { display: grid; grid-template-columns: .74fr 1.26fr; gap: 105px; align-items: start; }
.prompt-intro h2 { color: var(--white); font-size: clamp(60px, 7.2vw, 102px); }
.prompt-intro h2 em { color: var(--yellow); }
.prompt-intro > p:not(.eyebrow) { max-width: 475px; margin: 28px 0 31px; color: #c5d0df; font-size: 17px; }
.scenario-list { border-top: 1px solid var(--line-dark); }
.scenario { padding: 27px 0 30px; border-bottom: 1px solid var(--line-dark); }
.scenario-head { display: grid; grid-template-columns: 42px 1fr; align-items: baseline; margin-bottom: 18px; }
.scenario-head span { color: var(--cyan); font-size: 10px; font-weight: 700; }
.scenario-head h3 { margin: 0; font-size: 25px; line-height: 1.2; letter-spacing: -.02em; }
.scenario-flow { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; align-items: center; gap: 10px; padding-left: 42px; }
.scenario-flow span { min-height: 54px; display: grid; place-items: center; padding: 8px 10px; border: 1px solid rgba(255,255,255,.17); border-radius: 9px; background: rgba(255,255,255,.04); color: #d7dfeb; font-size: 11px; font-weight: 600; text-align: center; }
.scenario-flow span:last-child { border-color: rgba(255,222,0,.45); color: var(--yellow); background: rgba(255,222,0,.06); }
.scenario-flow i { color: #8593a6; font-style: normal; }

/* Print */
.print-services { background: var(--cream); }
.section-heading.split-heading { display: grid; grid-template-columns: 1.08fr .92fr; align-items: end; gap: 90px; margin-bottom: 50px; }
.split-heading > p { max-width: 500px; margin: 0 0 8px; color: var(--muted); font-size: 17px; }
.print-mosaic { display: grid; grid-template-columns: repeat(12, 1fr); gap: 18px; }
.print-card { position: relative; grid-column: span 6; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--white); transform: translateZ(0); transition: transform 320ms cubic-bezier(.2,.8,.2,1), box-shadow 320ms ease, border-color 320ms ease, opacity 520ms ease, translate 620ms cubic-bezier(.2,.8,.2,1); transition-delay: 0ms, 0ms, 0ms, var(--reveal-delay, 0ms), var(--reveal-delay, 0ms); }
.motion-ready .print-card { opacity: 0; translate: 0 22px; }
.motion-ready .print-card.is-visible { opacity: 1; translate: 0 0; }
.print-card:hover { transform: translateY(-7px) rotateX(1deg); border-color: #cac4b9; box-shadow: 0 24px 55px rgba(2,11,25,.14); }
.print-card-featured { grid-column: span 7; grid-row: span 2; }
.print-card:nth-child(2), .print-card:nth-child(3) { grid-column: span 5; }
.print-card:nth-child(4), .print-card:nth-child(5), .print-card:nth-child(6) { grid-column: span 4; }
.print-card img { width: 100%; height: 245px; object-fit: cover; transform: scale(1.002); transition: transform 650ms cubic-bezier(.2,.8,.2,1), filter 320ms ease; filter: saturate(1.02) contrast(1.015); }
.print-card:hover img { transform: scale(1.045); filter: saturate(1.06) contrast(1.025); }
.print-card-featured img { height: 504px; }
.print-card-copy { display: grid; grid-template-columns: 35px 1fr; gap: 10px; padding: 20px 21px 22px; }
.print-card-copy > span { color: var(--magenta); font-size: 10px; font-weight: 700; }
.print-card h3 { margin: 0 0 4px; font-size: 20px; line-height: 1.2; letter-spacing: -.02em; }
.print-card p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.5; }
.equipment-band { margin-top: 18px; padding: 20px 22px; border-radius: 12px; background: var(--navy); color: #cdd7e5; }
.equipment-band p { margin: 0; font-size: 12px; line-height: 1.7; }
.equipment-band strong { color: var(--yellow); }

/* Process */
.process { background: var(--paper); }
.process-heading { display: grid; grid-template-columns: .72fr 1.28fr; align-items: end; gap: 80px; margin-bottom: 58px; }
.process-heading .eyebrow { align-self: start; }
.process-list { margin: 0; padding: 0; border-top: 1px solid #c9c4b9; list-style: none; }
.process-list li { display: grid; grid-template-columns: 100px .42fr 1fr; gap: 25px; align-items: baseline; padding: 31px 0; border-bottom: 1px solid #c9c4b9; }
.process-list li::after { content: ""; display: block; }
.process-number { color: var(--magenta); font-size: 11px; font-weight: 700; }
.process-list li > div { grid-column: 2 / 4; display: grid; grid-template-columns: .42fr 1fr; gap: 25px; align-items: baseline; }
.process-list h3 { margin: 0; font-size: 30px; letter-spacing: -.025em; }
.process-list p { max-width: 660px; margin: 0; color: #535b66; font-size: 15px; }

/* About */
.about { position: relative; overflow: hidden; padding: 122px 0; }
.about::after { content: ""; position: absolute; right: -180px; bottom: -240px; width: 480px; height: 480px; border: 110px solid rgba(0,174,239,.07); border-radius: 50%; }
.about-grid { position: relative; z-index: 1; display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: 105px; }
.about-mark { position: relative; display: flex; flex-direction: column; align-items: flex-start; }
.about-word { color: var(--white); font-size: clamp(92px, 12vw, 174px); font-weight: 700; line-height: .73; letter-spacing: -.09em; }
.about-word.outline { margin-top: 27px; color: transparent; -webkit-text-stroke: 2px rgba(255,255,255,.65); text-stroke: 2px rgba(255,255,255,.65); }
.about-swatch { display: flex; width: 126px; height: 12px; margin: 43px 0 0 8px; }
.about-swatch i { flex: 1; }
.about-swatch i:nth-child(1) { background: var(--cyan); }
.about-swatch i:nth-child(2) { background: var(--magenta); }
.about-swatch i:nth-child(3) { background: var(--yellow); }
.about-copy h2 { max-width: 700px; color: var(--white); font-size: clamp(46px, 5.3vw, 72px); }
.about-copy > p:not(.eyebrow) { max-width: 660px; margin: 27px 0 0; color: #c9d4e3; font-size: 16px; }
.about-tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 32px 0 0; padding: 0; list-style: none; }
.about-tags li { padding: 7px 10px; border: 1px solid rgba(255,255,255,.2); border-radius: 7px; color: #e7edf6; font-size: 11px; font-weight: 600; }

/* Contact */
.contact { background: var(--cream); }
.contact-heading { display: grid; grid-template-columns: .72fr 1.28fr; column-gap: 70px; margin-bottom: 55px; }
.contact-heading .eyebrow { grid-column: 1; }
.contact-heading h2 { grid-column: 2; grid-row: 1 / span 2; }
.contact-heading > p:last-child { grid-column: 2; max-width: 700px; margin: 25px 0 0; color: var(--muted); font-size: 17px; }
.contact-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: 70px; align-items: start; }
.contact-options { display: grid; gap: 14px; }
.contact-options article { padding: 22px; border: 1px solid var(--line); border-radius: 14px; background: var(--white); }
.contact-type { color: var(--magenta); font-size: 10px; font-weight: 700; letter-spacing: .12em; }
.contact-options h3 { margin: 10px 0 7px; font-size: 20px; line-height: 1.25; }
.contact-options p { margin: 0; color: var(--muted); font-size: 13px; }
.direct-contact { display: grid; gap: 3px; padding: 19px 22px; border-radius: 14px; background: var(--navy); color: var(--white); }
.direct-contact p { margin: 0 0 7px; color: #aebbcf; font-size: 11px; text-transform: uppercase; letter-spacing: .1em; }
.direct-contact a { width: fit-content; font-size: 15px; font-weight: 700; }
.direct-contact a:hover { color: var(--yellow); }
.project-form { display: grid; gap: 18px; padding: 32px; border: 1px solid var(--line); border-radius: 20px; background: var(--white); box-shadow: 0 22px 60px rgba(2,11,25,.08); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.project-form label { display: grid; gap: 7px; color: #27303d; font-size: 12px; font-weight: 700; }
.project-form label span { color: var(--magenta); }
.project-form input, .project-form select, .project-form textarea { width: 100%; min-height: 51px; padding: 12px 13px; border: 1px solid #cfd3da; border-radius: 9px; background: #fcfcfb; color: var(--ink); font-size: 14px; outline: 0; transition: border 150ms ease, box-shadow 150ms ease; }
.project-form textarea { resize: vertical; min-height: 145px; }
.project-form input:focus, .project-form select:focus, .project-form textarea:focus { border-color: var(--cyan); box-shadow: 0 0 0 3px rgba(0,174,239,.14); }
.form-footer { display: flex; align-items: center; justify-content: space-between; gap: 25px; }
.form-footer p { max-width: 390px; margin: 0; color: #6e7580; font-size: 11px; }
.form-footer .button { flex: 0 0 auto; }
.form-status { min-height: 0; margin: -8px 0 0; color: var(--success); font-size: 12px; font-weight: 700; }
.form-status:empty { display: none; }

/* Footer */
.site-footer { padding: 55px 0 25px; background: var(--navy-deep); color: #d6dfec; }
.footer-main { display: grid; grid-template-columns: .8fr 1fr .8fr; align-items: center; gap: 55px; padding-bottom: 43px; }
.footer-main img { width: 210px; }
.footer-main > p { margin: 0; color: #aebacc; font-size: 15px; }
.footer-contact { display: grid; justify-items: end; gap: 4px; font-weight: 700; }
.footer-contact a:hover { color: var(--yellow); }
.footer-bottom { display: flex; justify-content: space-between; gap: 24px; padding-top: 23px; border-top: 1px solid rgba(255,255,255,.12); color: #77879e; font-size: 11px; }
.footer-bottom p { margin: 0; }

/* Responsive */
@media (max-width: 1080px) {
  .primary-nav { gap: 20px; }
  .hero-grid { grid-template-columns: 1fr 430px; gap: 40px; }
  .hero h1 { font-size: 65px; }
  .services-layout { gap: 60px; }
  .prompt-grid { gap: 65px; }
  .about-grid { gap: 65px; }
}

@media (max-width: 900px) {
  html { scroll-padding-top: 94px; }
  .announcement { display: none; }
  .container { width: min(var(--max), calc(100% - 36px)); }
  .section { padding: 88px 0; }
  .nav-wrap { min-height: 72px; }
  .brand img { width: 192px; }
  .menu-toggle { display: flex; }
  .primary-nav { position: fixed; z-index: 99; inset: 72px 0 auto; display: grid; gap: 0; max-height: calc(100vh - 72px); overflow: auto; padding: 12px 18px 24px; border-top: 1px solid rgba(255,255,255,.1); background: var(--navy-deep); transform: translateY(-120%); opacity: 0; visibility: hidden; transition: transform 200ms ease, opacity 160ms ease, visibility 200ms ease; }
  .primary-nav.open { transform: translateY(0); opacity: 1; visibility: visible; }
  .primary-nav > a:not(.nav-cta) { padding: 16px 5px; border-bottom: 1px solid rgba(255,255,255,.1); font-size: 17px; }
  .primary-nav > a:not(.nav-cta)::after { display: none; }
  .nav-cta { margin-top: 14px; justify-content: center; }
  .hero-grid { grid-template-columns: 1fr; min-height: auto; gap: 60px; padding: 72px 0 105px; }
  .hero-copy { max-width: 760px; }
  .hero h1 { max-width: 760px; font-size: clamp(56px, 10vw, 80px); }
  .hero-visual { max-width: 590px; margin: 0 auto; }
  .toolchain-grid { grid-template-columns: 1fr; gap: 15px; padding: 28px 0; }
  .services-layout { grid-template-columns: 1fr; gap: 58px; }
  .services-intro { position: static; }
  .services-intro h2 { max-width: 720px; }
  .services-principle { max-width: 540px; }
  .prompt-grid { grid-template-columns: 1fr; gap: 65px; }
  .prompt-intro > p:not(.eyebrow) { max-width: 620px; }
  .section-heading.split-heading { grid-template-columns: 1fr; gap: 25px; }
  .split-heading > p { max-width: 700px; }
  .print-card-featured { grid-column: span 12; grid-row: auto; }
  .print-card-featured img { height: 420px; }
  .print-card:nth-child(2), .print-card:nth-child(3), .print-card:nth-child(4), .print-card:nth-child(5), .print-card:nth-child(6) { grid-column: span 6; }
  .process-heading { grid-template-columns: 1fr; gap: 18px; }
  .process-list li { grid-template-columns: 60px 1fr; }
  .process-list li > div { grid-column: 2; grid-template-columns: .35fr 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 75px; }
  .about-mark { max-width: 600px; }
  .contact-heading { grid-template-columns: 1fr; }
  .contact-heading .eyebrow, .contact-heading h2, .contact-heading > p:last-child { grid-column: 1; grid-row: auto; }
  .contact-grid { grid-template-columns: 1fr; gap: 35px; }
  .contact-options { grid-template-columns: 1fr 1fr; }
  .direct-contact { grid-column: 1 / -1; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-main > p { order: 3; grid-column: 1 / -1; }
}

@media (max-width: 620px) {
  .container { width: min(var(--max), calc(100% - 28px)); }
  .section { padding: 72px 0; }
  h2 { font-size: 43px; }
  .hero-grid { gap: 48px; padding: 57px 0 92px; }
  .hero h1 { font-size: clamp(48px, 14.7vw, 65px); }
  .hero h1 em { margin-top: 9px; }
  .hero-lede { margin-top: 24px; font-size: 17px; }
  .hero-actions { display: grid; }
  .hero-actions .button { width: 100%; }
  .hero-proof { display: grid; gap: 9px; }
  .hero-visual { padding: 0 7px 45px 0; }
  .hero-image-frame { transform: none; }
  .new-service-stamp { top: 13px; left: 13px; width: 100px; height: 100px; }
  .new-service-stamp span { font-size: 7px; }
  .new-service-stamp strong { font-size: 16px; }
  .project-card { right: -2px; width: 78%; padding: 13px 14px 11px; }
  .tool-list li { font-size: 11px; }
  .services-intro h2 { font-size: 45px; }
  .services-principle { margin-top: 34px; }
  .service-item summary { grid-template-columns: 31px 1fr 26px; gap: 10px; min-height: 82px; }
  .service-title { font-size: 19px; }
  .service-content { padding: 0 36px 25px 41px; }
  .scenario-head { grid-template-columns: 30px 1fr; }
  .scenario-flow { grid-template-columns: 1fr; gap: 6px; padding-left: 30px; }
  .scenario-flow i { transform: rotate(90deg); justify-self: center; line-height: 1; }
  .print-mosaic { grid-template-columns: 1fr; }
  .print-card-featured, .print-card:nth-child(2), .print-card:nth-child(3), .print-card:nth-child(4), .print-card:nth-child(5), .print-card:nth-child(6) { grid-column: 1; }
  .print-card img, .print-card-featured img { height: 245px; }
  .process-list li { grid-template-columns: 38px 1fr; gap: 12px; }
  .process-list li > div { grid-column: 2; display: block; }
  .process-list h3 { margin-bottom: 8px; font-size: 26px; }
  .about { padding: 88px 0; }
  .about-grid { gap: 55px; }
  .about-word { font-size: 96px; }
  .about-copy h2 { font-size: 44px; }
  .contact-heading h2 { font-size: 43px; }
  .contact-options { grid-template-columns: 1fr; }
  .direct-contact { grid-column: 1; }
  .project-form { padding: 22px 18px; }
  .field-row { grid-template-columns: 1fr; }
  .form-footer { align-items: stretch; flex-direction: column; }
  .form-footer .button { width: 100%; }
  .footer-main { grid-template-columns: 1fr; gap: 24px; }
  .footer-main > p { order: initial; grid-column: auto; }
  .footer-contact { justify-items: start; }
  .footer-bottom { flex-direction: column; gap: 7px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
  .button:hover, .print-card:hover { transform: none; }
  .hero-image-frame { transform: none !important; }
  .hero-image-frame > img { animation: none !important; }
}
