




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














.nav-logo { display: flex; align-items: center; }
.nav-logo img { height: 38px; width: auto; display: block; }
.nav-links { display: flex; gap: 28px; }
.nav-links a { color: rgba(255,255,255,0.78); font-size: 14px; font-weight: 500; transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: #fff; }
.nav-actions { display: flex; align-items: center; gap: 18px; }
.nav-login { color: rgba(255,255,255,0.78); font-size: 14px; font-weight: 500; }
.nav-login:hover { color: #fff; }
.nav-signup { background: var(--pink); color: #fff; padding: 10px 22px; font-size: 13px; font-weight: 600; letter-spacing: 0.5px; transition: background 0.2s; }
.nav-signup:hover { background: var(--pink-dark); }


.btn-pink { background: var(--pink); color: #fff; }
.btn-pink:hover { background: var(--pink-dark); transform: translateY(-1px); }
.btn-cyan { background: var(--cyan); color: var(--ink); }
.btn-cyan:hover { background: var(--cyan-dark); transform: translateY(-1px); }
.btn-outline-light { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,0.25); padding: 14.5px 30.5px; }
.btn-outline-light:hover { border-color: #fff; }
.btn-outline-dark { background: transparent; color: var(--ink); border: 1.5px solid var(--line-strong); padding: 14.5px 30.5px; }
.btn-outline-dark:hover { border-color: var(--ink); }
/* ── Page hero ── */
.page-hero { background: var(--ink); color: #fff; padding: 100px 0 120px; position: relative; overflow: hidden; }
/* Halftone dot pattern — screen-print texture, on-brand for a print-shop About page.
   Two offset layers (cyan + pink) read as misregistration. */
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(54,182,224,0.22) 1.6px, transparent 2.6px),
    radial-gradient(circle, rgba(236,30,124,0.18) 1.6px, transparent 2.6px);
  background-size: 28px 28px, 28px 28px;
  background-position: 0 0, 14px 14px;
  pointer-events: none;
  animation: halftoneDrift 90s linear infinite;
  z-index: 0;
}
.page-hero::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 240px; background: radial-gradient(ellipse at 50% 100%, rgba(236,30,124,0.18) 0%, transparent 60%); pointer-events: none; z-index: 0; }
.page-hero .wrap { position: relative; z-index: 2; text-align: center; }
.page-hero .label { color: var(--cyan); justify-content: center; }
.page-hero .label::before { display: none; }
.page-hero h1 { font-family: var(--font-display); font-size: clamp(44px, 6.5vw, 80px); font-weight: 700; line-height: 1.02; letter-spacing: -2px; margin-bottom: 26px; }
.page-hero h1 em { color: var(--pink); font-style: normal; }
.page-hero .page-hero-lede { font-size: 23px; line-height: 1.6; color: rgba(255,255,255,0.78); max-width: 760px; margin: 0 auto; }
/* Halftone dot pattern drift — slow horizontal/vertical creep */
@keyframes halftoneDrift {
  from { background-position: 0 0, 14px 14px; }
  to   { background-position: 56px 28px, 70px 42px; }
}
@media (prefers-reduced-motion: reduce) {
  .page-hero::before, .history::before { animation: none; }
}
/* ── Dual-tone SVG spot illustrations (print-industry motif set) ──
   Same treatment used on the imagery mockup: two offset stacked copies
   of the same artwork (cyan + pink) plus drop-shadow glow. */
.duotone { position: relative; display: inline-block; }




/* ── Photo band ──
   Full-width photo with dark gradient overlay + short overlay tagline.
   Used twice on the page: hero-adjacent (press-in-action) and
   mid-page (shipped-boxes). */
.photo-band {
  position: relative;
  height: clamp(320px, 46vw, 560px);
  overflow: hidden;
  background: var(--ink);
}
.photo-band img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.photo-band::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(15,15,18,0.72) 0%, rgba(15,15,18,0.35) 45%, transparent 70%);
  z-index: 1;
}
.photo-band .wrap { position: relative; z-index: 2; height: 100%; display: flex; align-items: center; }
.photo-band .caption { max-width: 520px; color: #fff; }
.photo-band .caption .label { color: var(--cyan); margin-bottom: 14px; }
.photo-band .caption h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.6vw, 44px);
  font-weight: 700;
  letter-spacing: -1.2px;
  line-height: 1.08;
}
.photo-band .caption h2 em { color: var(--pink); font-style: normal; }
.photo-band .caption p {
  margin-top: 14px;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255,255,255,0.78);
}
/* Right-aligned variant for the second photo band (subject sits on the left of the photo) */
.photo-band.right-align::before {
  background: linear-gradient(to left, rgba(15,15,18,0.72) 0%, rgba(15,15,18,0.35) 45%, transparent 70%);
}
.photo-band.right-align .wrap { justify-content: flex-end; }
.photo-band.right-align .caption { text-align: right; }
/* ── Story section ── */
.story { padding: 110px 0; background: var(--bg); position: relative; }
.story-header { max-width: 760px; margin: 0 auto 64px; text-align: center; }
.story-header .label { color: var(--pink); justify-content: center; }
.story-header .label::before { display: none; }
.story-header h2 { font-family: var(--font-display); font-size: clamp(36px, 4.5vw, 52px); font-weight: 700; letter-spacing: -1.4px; line-height: 1.05; margin-bottom: 18px; }
.story-header h2 em { color: var(--cyan); font-style: normal; }
.story-header p { color: var(--ink-muted); font-size: 19px; line-height: 1.65; }
.story-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.story-card {
  background: var(--bg-white);
  border: 1px solid var(--line);
  padding: 36px 30px 32px;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.story-card:hover { transform: translateY(-3px); box-shadow: 0 22px 50px -28px rgba(15,15,18,0.22); }
.story-card:nth-child(1):hover { border-color: var(--pink); }
.story-card:nth-child(2):hover { border-color: var(--cyan); }
.story-card:nth-child(3):hover { border-color: var(--yellow); }
/* Story-card spot illustrations replace the old colored icon squares
   with the approved print-industry motif set (dual-tone glow). */
.story-card .s-spot { margin-bottom: 24px; height: 88px; display: flex; align-items: center; }
.story-card .s-spot .duotone { width: 84px; height: 84px; }
.story-card h3 { font-family: var(--font-display); font-size: 22px; font-weight: 700; letter-spacing: -0.5px; margin-bottom: 14px; line-height: 1.2; }
.story-card p { color: var(--ink-muted); font-size: 17.5px; line-height: 1.7; }
/* ── Pull-quote ── */
.pullquote {
  margin: 110px auto 0;
  max-width: 880px;
  text-align: center;
  padding: 0 24px;
}
.pullquote .quote {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -1.2px;
  color: var(--ink);
}
.pullquote .quote em { color: var(--pink); font-style: normal; }
.pullquote .attrib {
  margin-top: 22px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ink-muted);
}
/* ── History timeline ── */
.history { padding: 110px 0; background: var(--ink); color: #fff; position: relative; overflow: hidden; }
.history::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(245,204,54,0.16) 1.5px, transparent 2.5px),
    radial-gradient(circle, rgba(54,182,224,0.14) 1.5px, transparent 2.5px);
  background-size: 32px 32px, 32px 32px;
  background-position: 0 0, 16px 16px;
  pointer-events: none;
  animation: halftoneDrift 110s linear infinite;
  z-index: 0;
}
.history .wrap { position: relative; z-index: 2; }
.history-header { max-width: 760px; margin: 0 auto 64px; text-align: center; }
.history-header .label { color: var(--yellow); justify-content: center; }
.history-header .label::before { display: none; }
.history-header h2 { font-family: var(--font-display); font-size: clamp(36px, 4.5vw, 52px); font-weight: 700; letter-spacing: -1.4px; line-height: 1.05; margin-bottom: 18px; }
.history-header h2 em { color: var(--cyan); font-style: normal; }
.history-grid { display: grid; grid-template-columns: 220px 1fr; gap: 60px; align-items: start; max-width: 1000px; margin: 0 auto; }
.history-years { position: sticky; top: 100px; }
.history-year {
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding: 14px 0;
  border-top: 1px solid var(--line-dark);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.history-year:first-child { border-top: 0; padding-top: 0; }
.history-year .year-num {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.8px;
  line-height: 1;
  color: #fff;
}
.history-year:nth-child(1) .year-num { color: var(--pink); }
.history-year:nth-child(2) .year-num { color: var(--cyan); }
.history-year:nth-child(3) .year-num { color: var(--yellow); }
.history-body p { color: rgba(255,255,255,0.75); font-size: 19px; line-height: 1.75; margin-bottom: 22px; }
.history-body p:last-child { margin-bottom: 0; }
.history-body p strong { color: #fff; font-weight: 600; }
.history-body em { color: var(--cyan); font-style: normal; }
/* ── Closing CTA ── */
.about-cta { padding: 110px 0; background: var(--bg-white); position: relative; overflow: hidden; }
.about-cta::before { content: ''; position: absolute; top: -120px; right: -180px; width: 460px; height: 460px; background: radial-gradient(circle, rgba(236,30,124,0.10) 0%, transparent 70%); pointer-events: none; }
.about-cta::after { content: ''; position: absolute; bottom: -150px; left: -200px; width: 460px; height: 460px; background: radial-gradient(circle, rgba(54,182,224,0.10) 0%, transparent 70%); pointer-events: none; }
.about-cta .wrap { position: relative; z-index: 1; text-align: center; }
.about-cta .label { color: var(--pink); justify-content: center; }
.about-cta .label::before { display: none; }
.about-cta h2 { font-family: var(--font-display); font-size: clamp(44px, 5.8vw, 72px); font-weight: 700; letter-spacing: -1.8px; line-height: 1.04; margin-bottom: 22px; }
.about-cta h2 em { color: var(--cyan); font-style: normal; }
.about-cta p { color: var(--ink-muted); font-size: 23px; line-height: 1.6; max-width: 660px; margin: 0 auto 36px; }
.about-cta-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
/* Footer */
.footer { background: var(--ink); color: #fff; padding: 80px 0 32px; position: relative; overflow: hidden; }
















/* Responsive */
@media (max-width: 960px) {
  .wrap { padding: 0 24px; }
  .page-hero { padding: 70px 0 90px; }
  .story-grid { grid-template-columns: 1fr; gap: 18px; }
  .history-grid { grid-template-columns: 1fr; gap: 36px; }
  .history-years { position: static; display: flex; flex-wrap: wrap; gap: 24px; }
  .history-year { border-top: 0; padding: 0; flex-direction: column; gap: 4px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 560px) {
  .nav-links { display: none; }
  
}
