@font-face {
  font-family: "SST Arabic Local";
  src: url("assets/fonts/SST-Arabic-Roman.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "SST Arabic Local";
  src: url("assets/fonts/SST-Arabic-Medium.ttf") format("truetype");
  font-weight: 500 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "SST Arabic Local";
  src: url("assets/fonts/SST-Arabic-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "SST Arabic Local";
  src: url("assets/fonts/SST-Arabic-Bold.ttf") format("truetype");
  font-weight: 800 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --ink: #101722;
  --muted: #667085;
  --paper: #f4f8fb;
  --white: #ffffff;
  --blue: #1059a6;
  --blue-2: #00a7c8;
  --cyan: #26d9d0;
  --gold: #f5a524;
  --coral: #ff6b4a;
  --line: rgba(16, 23, 34, 0.12);
  --shadow: 0 24px 70px rgba(15, 89, 166, 0.18);
  font-family: "SST Arabic Local", "Tahoma", "Arial", sans-serif;
  color: var(--ink);
  background: var(--paper);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  font-family: "SST Arabic Local", "Tahoma", "Arial", sans-serif;
  font-size: 16px;
  line-height: 1.75;
  background:
    radial-gradient(circle at 12% 8%, rgba(38, 217, 208, 0.16), transparent 22rem),
    radial-gradient(circle at 82% 18%, rgba(245, 165, 36, 0.12), transparent 20rem),
    linear-gradient(135deg, rgba(16, 89, 166, 0.08), transparent 30rem),
    var(--paper);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.scroll-progress {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 50;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--cyan), var(--blue-2));
  transform: scaleX(0);
  transform-origin: right;
}

.site-header {
  position: fixed;
  inset: 14px 0 auto;
  z-index: 20;
  width: min(1440px, calc(100% - 40px));
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.56);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.66)),
    radial-gradient(circle at 14% 0, rgba(38, 217, 208, 0.18), transparent 13rem);
  box-shadow: 0 18px 50px rgba(16, 23, 34, 0.12);
  backdrop-filter: blur(22px);
  transition: transform 220ms ease, background 220ms ease, border-color 220ms ease, backdrop-filter 220ms ease;
}

.site-header.is-scrolled {
  transform: translateY(-4px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(244, 248, 251, 0.86)),
    radial-gradient(circle at 14% 0, rgba(38, 217, 208, 0.2), transparent 13rem);
  border-color: rgba(16, 23, 34, 0.14);
}

.print-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  height: 5px;
  overflow: hidden;
}

.print-strip span:nth-child(1),
.cmyk-dots span:nth-child(1) {
  background: #00a7c8;
}

.print-strip span:nth-child(2),
.cmyk-dots span:nth-child(2) {
  background: #e6499a;
}

.print-strip span:nth-child(3),
.cmyk-dots span:nth-child(3) {
  background: #f5c542;
}

.print-strip span:nth-child(4),
.cmyk-dots span:nth-child(4) {
  background: #101722;
}

.nav {
  width: 100%;
  min-height: 82px;
  padding: 14px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-logo-img {
  width: 146px;
  height: 66px;
  object-fit: contain;
  object-position: right center;
}

.footer-logo-img {
  width: 190px;
  height: auto;
  max-height: 142px;
  object-fit: contain;
  object-position: right center;
  filter: drop-shadow(0 12px 26px rgba(0, 0, 0, 0.16));
}

.brand-mark {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 34% 34%, rgba(255, 255, 255, 0.34), transparent 24%),
    conic-gradient(from 90deg, #00a7c8, #e6499a, #f5c542, #101722, #00a7c8);
  color: var(--white);
  font-weight: 800;
  box-shadow: 0 14px 30px rgba(0, 167, 200, 0.28);
  position: relative;
}

.brand-mark::before {
  content: "";
  position: absolute;
  inset: 8px;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  clip-path: polygon(50% 0, 100% 26%, 100% 74%, 50% 100%, 0 74%, 0 26%);
}

.brand-mark span {
  position: relative;
  z-index: 1;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.25;
}

.brand strong {
  font-size: 1rem;
  font-weight: 900;
}

.brand small {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 500;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.62);
  border-radius: 999px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.42);
}

.nav-links a {
  padding: 9px 15px;
  border-radius: 999px;
  color: #334155;
  font-size: 0.88rem;
  font-weight: 700;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.nav-links a:hover {
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  color: var(--white);
  transform: translateY(-2px);
}

.nav-call {
  min-height: 44px;
  padding: 10px 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(16, 89, 166, 0.22);
  background:
    linear-gradient(var(--white), var(--white)) padding-box,
    linear-gradient(135deg, var(--cyan), var(--gold)) border-box;
  color: var(--ink);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 900;
  position: relative;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(16, 89, 166, 0.12);
  transition: transform 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.nav-call::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(38, 217, 208, 0.16), rgba(245, 165, 36, 0.14));
  opacity: 0;
  transition: opacity 180ms ease;
}

.nav-call:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(16, 89, 166, 0.18);
}

.nav-call:hover::before {
  opacity: 1;
}

.menu-toggle {
  width: 44px;
  height: 44px;
  display: none;
  place-items: center;
  gap: 4px;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 4px;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  display: block;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: 880px;
  display: grid;
  align-content: center;
  overflow: hidden;
  padding: 166px max(28px, calc((100vw - 1180px) / 2)) 76px;
  isolation: isolate;
  perspective: 1200px;
}

.print-marks {
  position: absolute;
  inset: 118px max(18px, calc((100vw - 1240px) / 2)) 48px;
  z-index: 2;
  pointer-events: none;
}

.print-marks span {
  position: absolute;
  width: 28px;
  height: 28px;
  opacity: 0.7;
}

.print-marks span::before,
.print-marks span::after {
  content: "";
  position: absolute;
  background: rgba(255, 255, 255, 0.55);
}

.print-marks span::before {
  width: 100%;
  height: 2px;
  top: 0;
}

.print-marks span::after {
  width: 2px;
  height: 100%;
  right: 0;
}

.print-marks span:nth-child(1) {
  top: 0;
  right: 0;
}

.print-marks span:nth-child(2) {
  top: 0;
  left: 0;
  transform: rotate(90deg);
}

.print-marks span:nth-child(3) {
  bottom: 0;
  right: 0;
  transform: rotate(-90deg);
}

.print-marks span:nth-child(4) {
  bottom: 0;
  left: 0;
  transform: rotate(180deg);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: #07111f;
  overflow: hidden;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(270deg, rgba(5, 12, 23, 0.9) 0%, rgba(7, 39, 73, 0.6) 42%, rgba(5, 12, 23, 0.18) 100%),
    linear-gradient(0deg, rgba(244, 248, 251, 0.96) 0%, transparent 28%),
    radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.28) 1px, transparent 1.8px);
  background-size: auto, auto, 22px 22px;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.84;
  transform: scale(1.08);
  animation: heroDrift 18s ease-in-out infinite alternate;
}

.color-wash {
  position: absolute;
  width: 34rem;
  height: 34rem;
  border-radius: 999px;
  filter: blur(42px);
  opacity: 0.36;
  mix-blend-mode: screen;
  animation: floatWash 12s ease-in-out infinite;
}

.color-wash-one {
  top: 8%;
  left: 10%;
  background: var(--cyan);
}

.color-wash-two {
  right: 22%;
  bottom: 10%;
  background: var(--gold);
  animation-delay: -5s;
}

.hero-cut {
  position: absolute;
  background: linear-gradient(135deg, rgba(16, 89, 166, 0.95), rgba(38, 217, 208, 0.4), rgba(245, 165, 36, 0.26));
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  animation: cutPulse 8s ease-in-out infinite;
}

.hero-cut-one {
  width: 34vw;
  height: 34vw;
  top: 10%;
  right: -8vw;
}

.hero-cut-two {
  width: 18vw;
  height: 18vw;
  bottom: 15%;
  left: 6vw;
  transform: rotate(180deg);
  animation-delay: -3s;
}

.ink-lines {
  position: absolute;
  inset: 18% auto auto 7%;
  width: 34vw;
  height: 34vw;
  opacity: 0.56;
}

.ink-lines span {
  position: absolute;
  display: block;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.76), transparent);
  transform: rotate(-28deg);
  animation: lineSweep 4.8s ease-in-out infinite;
}

.ink-lines span:nth-child(2) {
  top: 34%;
  animation-delay: -1.3s;
}

.ink-lines span:nth-child(3) {
  top: 68%;
  animation-delay: -2.6s;
}

.hero-content {
  width: min(620px, 100%);
  justify-self: start;
  color: var(--white);
  padding-bottom: 0;
  text-align: right;
  transform-style: preserve-3d;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--blue-2);
  font-weight: 800;
  font-size: 0.98rem;
  letter-spacing: 0;
}

.hero .eyebrow {
  color: #dbeafe;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3,
.lead,
.footer-cta strong {
  font-family: "SST Arabic Local", "Tahoma", "Arial", sans-serif;
}

h1 {
  max-width: 620px;
  margin-bottom: 16px;
  font-size: clamp(2.7rem, 4.45vw, 4.45rem);
  line-height: 1.1;
  font-weight: 900;
  text-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
}

.kinetic-words {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 18px;
  justify-content: flex-start;
}

.kinetic-words span {
  padding: 7px 12px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
  font-size: 0.94rem;
  font-weight: 800;
  animation: wordPop 3.6s ease-in-out infinite;
}

.kinetic-words span:nth-child(2) {
  animation-delay: -0.6s;
}

.kinetic-words span:nth-child(3) {
  animation-delay: -1.2s;
}

.kinetic-words span:nth-child(4) {
  animation-delay: -1.8s;
}

.hero-copy {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1rem, 1.65vw, 1.22rem);
  line-height: 1.95;
  font-weight: 500;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 21px;
  border-radius: 8px;
  font-weight: 800;
  position: relative;
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent, rgba(255, 255, 255, 0.42), transparent);
  transform: translateX(120%);
  transition: transform 460ms ease;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
}

.btn:hover::after {
  transform: translateX(-120%);
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), #ffd166);
  color: #102033;
}

.btn-ghost {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.44);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  width: min(660px, 100%);
  justify-self: start;
  margin-top: 40px;
}

.hero-stats div {
  min-height: 108px;
  padding: 20px 22px;
  background:
    linear-gradient(var(--white), var(--white)) padding-box,
    linear-gradient(135deg, rgba(0, 167, 200, 0.55), rgba(245, 197, 66, 0.42)) border-box;
  border: 1px solid transparent;
  box-shadow: 0 18px 46px rgba(7, 18, 34, 0.18);
  position: relative;
  overflow: hidden;
  transition: transform 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.hero-stats div::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--cyan), var(--gold));
}

.hero-stats div:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 56px rgba(7, 18, 34, 0.24);
}

.hero-stats strong,
.hero-stats span {
  display: block;
}

.hero-stats strong {
  color: var(--blue);
  font-size: 1.85rem;
  font-weight: 900;
}

.hero-stats span {
  color: #334155;
  font-size: 0.95rem;
  font-weight: 600;
}

.section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 92px 0;
  position: relative;
  scroll-margin-top: 132px;
}

.section-heading {
  max-width: 640px;
  margin-bottom: 34px;
}

.section-heading h2,
.vision-panel h2,
.machine-copy h2,
.contact-copy h2 {
  margin-bottom: 16px;
  font-size: clamp(1.85rem, 3.4vw, 3.45rem);
  line-height: 1.18;
  font-weight: 700;
}

.section-heading .eyebrow,
.machine-copy .eyebrow,
.contact-copy .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.section-heading .eyebrow::before,
.machine-copy .eyebrow::before,
.contact-copy .eyebrow::before {
  content: "";
  width: 28px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--cyan));
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.lead {
  font-size: clamp(1.28rem, 2.45vw, 2.25rem);
  line-height: 1.68;
  font-weight: 700;
}

.intro-card {
  min-height: 300px;
  padding: clamp(30px, 4vw, 46px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(248, 252, 253, 0.94)) padding-box,
    linear-gradient(135deg, rgba(38, 217, 208, 0.82), rgba(245, 165, 36, 0.72)) border-box;
  border: 1px solid transparent;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  display: grid;
  align-content: center;
  gap: 16px;
}

.intro-card::before {
  content: "";
  position: absolute;
  width: 12rem;
  height: 12rem;
  top: -7rem;
  left: -6rem;
  background: linear-gradient(135deg, rgba(38, 217, 208, 0.2), rgba(245, 165, 36, 0.1));
  transform: rotate(45deg);
}

.intro-card span {
  width: fit-content;
  color: var(--blue-2);
  font-size: 0.95rem;
  font-weight: 900;
  position: relative;
  z-index: 1;
}

.intro-card p,
.vision-panel p,
.machine-copy p,
.contact-copy p,
.service-card p {
  color: #475569;
  line-height: 1.9;
  font-size: 1rem;
  font-weight: 500;
}

.intro-card p {
  max-width: 540px;
  margin: 0;
  color: #334155;
  font-size: clamp(1.08rem, 1.35vw, 1.22rem);
  line-height: 2;
  font-weight: 700;
  position: relative;
  z-index: 1;
}

.vision {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.vision-panel {
  min-height: 360px;
  padding: clamp(26px, 4.2vw, 46px);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(16, 89, 166, 0.95), rgba(7, 18, 34, 0.88)),
    url("assets/images/press-detail.jpg") center / cover;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.vision-panel:nth-child(2) {
  background:
    linear-gradient(135deg, rgba(7, 18, 34, 0.88), rgba(0, 167, 200, 0.78)),
    url("assets/images/box-mockup.jpg") center / cover;
}

.vision-panel:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: var(--shadow);
}

.vision-panel span {
  color: #cfe4ff;
  font-weight: 800;
  font-size: 0.95rem;
}

.vision-panel p {
  color: rgba(255, 255, 255, 0.86);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.service-card {
  min-height: 292px;
  padding: 24px;
  background:
    linear-gradient(var(--white), var(--white)) padding-box,
    linear-gradient(135deg, rgba(16, 89, 166, 0.28), rgba(38, 217, 208, 0.28), rgba(245, 165, 36, 0.28)) border-box;
  border: 1px solid transparent;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: auto -24% -35% auto;
  width: 12rem;
  height: 12rem;
  border-radius: 999px;
  background: rgba(38, 217, 208, 0.12);
  transition: transform 320ms ease, background 320ms ease;
}

.service-card:hover {
  transform: translateY(-10px) rotate(-0.6deg);
  box-shadow: var(--shadow);
}

.service-card:hover::after {
  transform: scale(1.5);
  background: rgba(245, 165, 36, 0.16);
}

.service-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  border-radius: 8px;
  box-shadow: 0 12px 24px rgba(0, 167, 200, 0.24);
}

.service-card span {
  color: var(--blue-2);
  font-weight: 900;
}

.service-card h3 {
  margin: 20px 0 12px;
  font-size: 1.2rem;
  line-height: 1.35;
  font-weight: 700;
}

.showcase-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 18px;
}

.feature-work {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  background: var(--ink);
  box-shadow: var(--shadow);
}

.feature-work img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 800ms ease;
}

.feature-work::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(7, 18, 34, 0.78), transparent 44%),
    linear-gradient(135deg, transparent, rgba(38, 217, 208, 0.18));
  pointer-events: none;
}

.feature-work:hover img {
  transform: scale(1.05);
}

.feature-work div {
  position: absolute;
  inset: auto 28px 28px 28px;
  color: var(--white);
  z-index: 1;
}

.feature-work span {
  color: #dbeafe;
  font-weight: 800;
}

.feature-work h3 {
  width: min(520px, 100%);
  margin: 8px 0 0;
  font-size: clamp(1.7rem, 3.4vw, 3rem);
  line-height: 1.16;
  font-weight: 700;
}

.work-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.work-strip img {
  width: 100%;
  height: 271px;
  object-fit: cover;
  background: var(--white);
  transition: transform 260ms ease, box-shadow 260ms ease, filter 260ms ease;
}

.work-strip img:hover {
  transform: translateY(-7px) scale(1.03);
  box-shadow: var(--shadow);
  filter: saturate(1.08);
}

.machine {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: 26px;
  align-items: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.machine-img {
  width: 100%;
  filter: drop-shadow(0 24px 38px rgba(16, 23, 34, 0.14));
  transform: translateX(var(--machine-shift, 0));
  transition: transform 120ms linear;
}

.contact {
  display: grid;
  grid-template-columns: minmax(340px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 4vw, 64px);
  align-items: center;
  padding: clamp(44px, 5vw, 74px);
  margin-bottom: 80px;
  background:
    radial-gradient(circle at 20% 20%, rgba(38, 217, 208, 0.24), transparent 18rem),
    radial-gradient(circle at 85% 70%, rgba(245, 165, 36, 0.2), transparent 18rem),
    var(--ink);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.contact-shine {
  position: absolute;
  inset: -40% auto auto -20%;
  width: 38rem;
  height: 38rem;
  background: conic-gradient(from 180deg, transparent, rgba(38, 217, 208, 0.26), transparent, rgba(245, 165, 36, 0.2), transparent);
  animation: rotateShine 16s linear infinite;
}

.contact-copy,
.contact-actions {
  position: relative;
  z-index: 1;
}

.contact-copy {
  max-width: 560px;
  justify-self: end;
}

.contact-copy p {
  color: rgba(255, 255, 255, 0.74);
}

.contact-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.contact-link {
  min-width: 0;
  padding: 24px;
  min-height: 128px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  z-index: 1;
  overflow: hidden;
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.contact-link::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--cyan), var(--gold));
  opacity: 0.86;
}

.contact-link:hover {
  transform: translateY(-6px);
  border-color: rgba(38, 217, 208, 0.5);
  background: rgba(255, 255, 255, 0.14);
}

.contact-link span {
  color: #b9cde2;
}

.contact-link strong {
  font-size: clamp(1.05rem, 1.75vw, 1.45rem);
  line-height: 1.45;
  font-weight: 900;
  overflow-wrap: anywhere;
}

.footer {
  width: min(1440px, calc(100% - 40px));
  margin: 0 auto 28px;
  color: rgba(255, 255, 255, 0.82);
  background:
    radial-gradient(circle at 8% 18%, rgba(38, 217, 208, 0.22), transparent 18rem),
    radial-gradient(circle at 86% 14%, rgba(245, 197, 66, 0.16), transparent 18rem),
    linear-gradient(135deg, #0c1522, #111b2a);
  position: relative;
  overflow: hidden;
  box-shadow: 0 28px 80px rgba(16, 23, 34, 0.18);
  scroll-margin-top: 132px;
}

.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.16;
  background-image: radial-gradient(circle at 1px 1px, #ffffff 1px, transparent 1.8px);
  background-size: 18px 18px;
  pointer-events: none;
}

.footer-print-strip {
  height: 7px;
  background: linear-gradient(90deg, #00a7c8 0 25%, #e6499a 25% 50%, #f5c542 50% 75%, #101722 75%);
}

.footer-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(300px, 1.18fr) minmax(190px, 0.72fr) minmax(190px, 0.72fr) minmax(280px, 0.9fr);
  gap: clamp(24px, 3vw, 52px);
  padding: 46px clamp(28px, 4vw, 56px) 34px;
  align-items: start;
}

.footer-brand p {
  max-width: 390px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.85;
  font-size: 0.98rem;
}

.footer-logo strong,
.footer-logo small,
.footer-col h3,
.footer-cta span,
.footer-cta strong {
  color: var(--white);
}

.footer-logo-img {
  width: 184px;
  max-height: 118px;
  background: transparent;
  padding: 0;
  border: 0;
  filter: brightness(0) invert(1) drop-shadow(0 14px 28px rgba(0, 0, 0, 0.24));
  opacity: 0.94;
}

.footer-col {
  display: grid;
  align-content: start;
  gap: 12px;
}

.footer-col h3 {
  margin: 0 0 8px;
  font-size: 0.96rem;
  font-weight: 900;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.95rem;
  line-height: 1.65;
  transition: color 180ms ease, transform 180ms ease;
}

.footer-col a:hover {
  color: var(--cyan);
  transform: translateX(-4px);
}

.footer-contact-list {
  display: grid;
  gap: 10px;
}

.footer-contact-list a,
.footer-contact-list p {
  margin: 0;
  padding: 0 0 10px;
  display: grid;
  gap: 2px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-contact-list span {
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.78rem;
  font-weight: 700;
}

.footer-contact-list strong {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.98rem;
  line-height: 1.5;
  font-weight: 700;
}

.footer-top-link {
  width: fit-content;
  margin-top: 4px;
}

.footer-cta {
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(135deg, rgba(38, 217, 208, 0.13), rgba(255, 255, 255, 0.06)),
    rgba(255, 255, 255, 0.06);
  display: grid;
  gap: 14px;
  align-content: start;
  min-height: 100%;
}

.footer-cta span {
  color: var(--cyan);
  font-weight: 800;
}

.footer-cta strong {
  font-size: 1.12rem;
  line-height: 1.65;
  font-weight: 900;
}

.footer-cta .btn {
  width: fit-content;
}

.footer-bottom {
  position: relative;
  z-index: 1;
  min-height: 72px;
  padding: 18px 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.88rem;
}

.cmyk-dots {
  display: flex;
  gap: 8px;
}

.cmyk-dots span {
  width: 14px;
  height: 14px;
  border-radius: 999px;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.08);
}

.reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 700ms ease, transform 700ms ease;
}

.motion-ready .reveal {
  opacity: 1;
  transform: translateY(34px);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.motion-ready .service-card.reveal:nth-child(2),
.motion-ready .vision-panel.reveal:nth-child(2),
.motion-ready .work-strip.reveal {
  transition-delay: 100ms;
}

.motion-ready .service-card.reveal:nth-child(3) {
  transition-delay: 180ms;
}

.motion-ready .service-card.reveal:nth-child(4) {
  transition-delay: 260ms;
}

@keyframes heroDrift {
  from {
    transform: scale(1.08) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.14) translate3d(2.4%, -1.4%, 0);
  }
}

@keyframes floatWash {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(6%, -5%, 0) scale(1.12);
  }
}

@keyframes cutPulse {
  0%,
  100% {
    opacity: 0.76;
    transform: translateY(0) rotate(0deg);
  }
  50% {
    opacity: 0.96;
    transform: translateY(-12px) rotate(3deg);
  }
}

@keyframes lineSweep {
  0% {
    opacity: 0;
    transform: translateX(-26%) rotate(-28deg);
  }
  35%,
  70% {
    opacity: 0.78;
  }
  100% {
    opacity: 0;
    transform: translateX(30%) rotate(-28deg);
  }
}

@keyframes wordPop {
  0%,
  100% {
    transform: translateY(0);
    border-color: rgba(255, 255, 255, 0.26);
  }
  50% {
    transform: translateY(-5px);
    border-color: rgba(38, 217, 208, 0.68);
  }
}

@keyframes rotateShine {
  to {
    transform: rotate(360deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

  .motion-ready .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 980px) {
  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .vision,
  .intro-grid,
  .showcase-layout,
  .machine,
  .contact,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .contact {
    padding: 42px 24px;
  }

  .nav-call {
    display: none;
  }

  .ink-lines {
    display: none;
  }
}

@media (max-width: 720px) {
  .site-header {
    inset: 8px 8px auto;
    width: auto;
  }

  .nav {
    min-height: 70px;
    padding: 10px 12px;
  }

  .brand-mark {
    width: 46px;
    height: 46px;
  }

  .brand-logo-img {
    width: 128px;
    height: 58px;
  }

  .brand strong {
    font-size: 0.88rem;
  }

  .brand small {
    font-size: 0.64rem;
  }

  .menu-toggle {
    display: grid;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    border-radius: 6px;
  }

  .hero {
    min-height: auto;
    padding-top: 128px;
  }

  .print-marks {
    display: none;
  }

  h1 {
    font-size: clamp(2.25rem, 10.8vw, 3.45rem);
    line-height: 1.08;
  }

  .hero-copy {
    font-size: 1rem;
    line-height: 1.85;
  }

  .section-heading h2,
  .vision-panel h2,
  .machine-copy h2,
  .contact-copy h2 {
    font-size: clamp(1.72rem, 8vw, 2.35rem);
    line-height: 1.24;
  }

  .contact-copy h2 {
    max-width: 100%;
    font-size: clamp(1.62rem, 7vw, 2.05rem);
    line-height: 1.32;
  }

  .lead {
    font-size: clamp(1.18rem, 6.4vw, 1.72rem);
    line-height: 1.72;
  }

  .service-card h3 {
    font-size: 1.14rem;
  }

  .color-wash {
    width: 18rem;
    height: 18rem;
  }

  .hero-stats,
  .service-grid,
  .work-strip,
  .contact-actions {
    grid-template-columns: 1fr;
  }

  .hero-stats div {
    min-height: 94px;
  }

  .section {
    padding: 64px 0;
    scroll-margin-top: 104px;
  }

  .feature-work {
    min-height: 430px;
  }

  .work-strip img {
    height: 230px;
  }

  .footer {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 16px;
  }

  .footer-grid {
    padding: 34px 24px 24px;
  }

  .footer-logo-img {
    width: 160px;
  }

  .footer-bottom {
    width: 100%;
    padding: 18px 24px 24px;
    flex-direction: column;
    align-items: flex-start;
  }
}
