:root {
  --ink: #07101f;
  --ink-deep: #050a14;
  --surface: #111827;
  --surface-2: #172033;
  --surface-3: #1e293b;
  --paper: #ffffff;
  --text: #f8fafc;
  --muted: #94a3b8;
  --muted-2: #cbd5e1;
  --blue: #3b82f6;
  --blue-soft: rgba(59, 130, 246, 0.18);
  --violet: #7c3aed;
  --violet-soft: rgba(124, 58, 237, 0.18);
  --yellow: #facc15;
  --line: rgba(148, 163, 184, 0.18);
  --glass: rgba(17, 24, 39, 0.76);
  --gradient: linear-gradient(135deg, var(--blue) 0%, var(--violet) 100%);
  --font-display: "Space Grotesk", sans-serif;
  --font-body: "Outfit", sans-serif;
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 32px;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.32);
  --container: 1180px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(59, 130, 246, 0.16), transparent 34rem),
    radial-gradient(circle at 85% 18%, rgba(124, 58, 237, 0.14), transparent 30rem),
    var(--ink);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid rgba(250, 204, 21, 0.9);
  outline-offset: 4px;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

::selection {
  background: var(--violet);
  color: var(--paper);
}

.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;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.narrow {
  max-width: 860px;
}

.section-padding {
  padding: 96px 0;
}

.section-padding-large {
  padding: 150px 0 110px;
}

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 50;
  width: min(calc(100% - 32px), 1180px);
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 12px 14px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 999px;
  background: rgba(7, 16, 31, 0.72);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.28);
  transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.site-header.is-scrolled {
  background: rgba(7, 16, 31, 0.92);
  border-color: rgba(59, 130, 246, 0.38);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gradient);
  color: var(--paper);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  box-shadow: 0 0 34px rgba(59, 130, 246, 0.46);
}

.brand-text {
  color: var(--text);
  white-space: nowrap;
}

.primary-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.primary-nav a {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--muted-2);
  font-size: 0.94rem;
  transition: color 0.2s ease, background 0.2s ease;
}

.primary-nav a:hover,
.primary-nav a.active {
  color: var(--text);
  background: rgba(59, 130, 246, 0.13);
}

.header-cta {
  padding: 11px 18px;
  border-radius: 999px;
  background: var(--paper);
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.header-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 38px rgba(255, 255, 255, 0.16);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.eyebrow {
  margin-bottom: 16px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  line-height: 1.04;
  letter-spacing: -0.055em;
}

h1 {
  max-width: 900px;
  font-size: clamp(3.1rem, 8vw, 7.4rem);
}

h2 {
  font-size: clamp(2.1rem, 4vw, 4.2rem);
}

h3 {
  font-size: 1.35rem;
}

p {
  color: var(--muted-2);
}

.hero,
.page-hero,
.cta-band {
  position: relative;
  overflow: hidden;
}

.ambient {
  position: absolute;
  pointer-events: none;
  filter: blur(80px);
  opacity: 0.82;
}

.ambient-one {
  top: 14%;
  right: -8%;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: rgba(59, 130, 246, 0.35);
}

.ambient-two {
  bottom: -16%;
  left: -8%;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(124, 58, 237, 0.24);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  align-items: center;
  gap: 58px;
}

.hero-lead,
.page-hero p {
  max-width: 690px;
  margin-top: 24px;
  font-size: clamp(1.08rem, 2vw, 1.28rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.button:hover {
  transform: translateY(-3px);
}

.button-primary {
  background: var(--gradient);
  color: var(--paper);
  box-shadow: 0 18px 50px rgba(59, 130, 246, 0.28);
}

.button-secondary {
  border: 1px solid rgba(148, 163, 184, 0.28);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
}

.button-secondary:hover {
  border-color: rgba(59, 130, 246, 0.7);
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 42px;
}

.hero-stats div {
  min-width: 132px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.045);
}

.hero-stats strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.85rem;
}

.hero-stats span {
  color: var(--muted);
  font-size: 0.92rem;
}

.print-stack {
  position: relative;
  min-height: 620px;
}

.print-card {
  position: absolute;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.print-card-large {
  inset: 8% 7% auto 8%;
  height: 78%;
}

.print-card-small {
  width: 44%;
  height: 30%;
}

.top-card {
  top: 0;
  right: 0;
  transform: rotate(8deg);
}

.bottom-card {
  bottom: 8%;
  left: 0;
  transform: rotate(-8deg);
}

.floating-label {
  position: absolute;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(7, 16, 31, 0.78);
  backdrop-filter: blur(12px);
  color: var(--text);
  font-weight: 700;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
}

.label-one {
  top: 24%;
  left: -3%;
}

.label-two {
  right: 0;
  bottom: 22%;
}

.split-section {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 60px;
  align-items: start;
}

.intro-copy {
  display: grid;
  gap: 18px;
  font-size: 1.08rem;
}

.surface-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent),
    var(--ink-deep);
  border-block: 1px solid rgba(148, 163, 184, 0.12);
}

.section-heading {
  max-width: 760px;
}

.centred {
  margin-inline: auto;
  text-align: center;
}

.category-grid,
.values-grid,
.process-grid,
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 46px;
}

.feature-card,
.value-card,
.process-card,
.testimonial-card,
.contact-panel,
.quote-form,
.cta-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.035));
  box-shadow: 0 22px 80px rgba(0, 0, 0, 0.16);
}

.feature-card,
.value-card,
.process-card,
.testimonial-card {
  padding: 28px;
  transition: transform 0.24s ease, border-color 0.24s ease, background 0.24s ease;
}

.feature-card:hover,
.value-card:hover,
.process-card:hover,
.product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(59, 130, 246, 0.52);
}

.card-number,
.process-card strong {
  display: inline-flex;
  margin-bottom: 30px;
  color: var(--yellow);
  font-family: var(--font-display);
  font-size: 0.9rem;
  letter-spacing: 0.14em;
}

.feature-card h3,
.value-card h2,
.process-card h3 {
  margin-bottom: 12px;
}

.two-column {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 60px;
  align-items: center;
}

.image-panel {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.image-panel img {
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.image-panel:hover img {
  transform: scale(1.04);
}

.benefit-list {
  display: grid;
  gap: 20px;
  margin-top: 34px;
}

.benefit-list div {
  padding-left: 24px;
  border-left: 2px solid rgba(59, 130, 246, 0.7);
}

.benefit-list h3 {
  margin-bottom: 6px;
}

.testimonial-card blockquote {
  color: var(--text);
  font-size: 1.04rem;
}

.testimonial-card figcaption {
  margin-top: 22px;
  color: var(--blue);
  font-weight: 700;
}

.cta-card {
  position: relative;
  overflow: hidden;
  padding: clamp(34px, 6vw, 72px);
  text-align: center;
}

.cta-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  pointer-events: none;
  background: radial-gradient(circle at top, rgba(59, 130, 246, 0.22), transparent 48%);
}

.cta-card > * {
  position: relative;
}

.cta-card p:not(.eyebrow) {
  max-width: 720px;
  margin: 18px auto 28px;
}

.page-hero {
  text-align: left;
}

.page-hero .button {
  margin-top: 30px;
}

.products-section {
  padding-top: 40px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.product-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.045);
  transition: transform 0.24s ease, border-color 0.24s ease;
}

.product-card img {
  height: 220px;
  object-fit: cover;
}

.product-card div {
  padding: 24px;
}

.product-card h2 {
  margin-bottom: 10px;
  font-size: 1.5rem;
}

.product-card a {
  display: inline-flex;
  margin-top: 18px;
  color: var(--blue);
  font-weight: 800;
}

.process-card strong {
  margin-bottom: 24px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 32px;
  align-items: start;
}

.contact-panel,
.quote-form {
  padding: clamp(26px, 4vw, 42px);
}

.contact-methods {
  display: grid;
  gap: 14px;
  margin: 34px 0;
}

.contact-method {
  display: grid;
  gap: 4px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.04);
}

.contact-method span {
  color: var(--muted);
  font-size: 0.9rem;
}

.contact-method strong {
  color: var(--text);
  overflow-wrap: anywhere;
}

.fine-print,
.form-note {
  color: var(--muted);
  font-size: 0.95rem;
}

.quote-form {
  display: grid;
  gap: 18px;
}

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

label {
  display: grid;
  gap: 8px;
  color: var(--text);
  font-weight: 700;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid rgba(148, 163, 184, 0.24);
  border-radius: 16px;
  background: rgba(7, 16, 31, 0.68);
  color: var(--text);
  padding: 15px 16px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

textarea {
  resize: vertical;
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.14);
}

select option {
  background: var(--ink);
}

.site-footer {
  border-top: 1px solid var(--line);
  background: var(--ink-deep);
  padding: 64px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.6fr 0.8fr;
  gap: 42px;
}

.footer-grid h2 {
  margin-bottom: 16px;
  font-size: 1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer-grid a,
.footer-grid span {
  display: block;
  margin-top: 8px;
  color: var(--muted-2);
}

.footer-grid a:hover {
  color: var(--blue);
}

.footer-brand {
  margin-bottom: 18px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.92rem;
}

html.js .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.72s ease, transform 0.72s ease;
}

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

.delay-100 { transition-delay: 0.08s; }
.delay-150 { transition-delay: 0.12s; }
.delay-200 { transition-delay: 0.16s; }
.delay-300 { transition-delay: 0.24s; }
.delay-400 { transition-delay: 0.32s; }
.delay-500 { transition-delay: 0.4s; }

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
    border-radius: 26px;
  }

  .nav-toggle {
    display: block;
  }

  .primary-nav {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(7, 16, 31, 0.96);
    backdrop-filter: blur(18px);
  }

  html.js .primary-nav {
    display: none;
  }

  html.js .primary-nav.is-open {
    display: flex;
  }

  .primary-nav a {
    padding: 14px 16px;
  }

  .header-cta {
    display: none;
  }

  .hero-grid,
  .split-section,
  .two-column,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 36px;
  }

  .print-stack {
    min-height: 500px;
  }

  .category-grid,
  .values-grid,
  .process-grid,
  .testimonial-grid,
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .section-padding {
    padding: 72px 0;
  }

  .section-padding-large {
    padding: 132px 0 76px;
  }

  .brand-text {
    font-size: 0.96rem;
  }

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

  h1 {
    font-size: clamp(2.7rem, 14vw, 4.4rem);
  }

  .hero-actions,
  .hero-stats,
  .footer-bottom {
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .print-stack {
    min-height: 390px;
  }

  .floating-label {
    font-size: 0.84rem;
  }

  .category-grid,
  .values-grid,
  .process-grid,
  .testimonial-grid,
  .product-grid,
  .form-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .image-panel img {
    min-height: 360px;
  }

  .product-card img {
    height: 210px;
  }
}

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

  html.js .reveal {
    opacity: 1;
    transform: none;
  }
}
