:root {
  /* Base colours – standard white background */
  --bg: #ffffff;
  --bg-soft: #f5f5f7;
  --bg-softer: #eeeeF2;
  --text: #181a21;
  --text-soft: #66697a;
  --accent: #111827;
  --accent-soft: rgba(17, 24, 39, 0.06);
  --border-subtle: rgba(15, 23, 42, 0.08);
  --danger: #b91c1c;

  /* Font: Demica Pro Mono (adjust name to match your font file) */
  --font-sans: "Demica Pro Mono", system-ui, -apple-system, BlinkMacSystemFont,
    "SF Pro Text", "Helvetica Neue", Arial, monospace;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}

body {
  min-height: 100vh;
}

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

a:hover {
  text-decoration: underline;
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 16px;
}

.section {
  padding: 72px 0;
}

.section.muted {
  background: var(--bg-soft);
}

.section h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 12px;
}

.section-intro {
  max-width: 540px;
  color: var(--text-soft);
  margin-bottom: 24px;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
  gap: 40px;
}

/* Vertically center logo next to About text */
#about .two-column {
  align-items: center;
}

@media (max-width: 800px) {
  .two-column {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

.logo {
  display: inline-flex;
  align-items: center;
}

.logo img {
  display: block;
  height: 32px;
  width: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.9rem;
}

.nav a {
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--text-soft);
  text-decoration: none;
}

.nav a:hover {
  background: var(--accent-soft);
  color: var(--accent);
}

.nav-cta {
  border: 1px solid rgba(15, 23, 42, 0.14);
}

/* Mobile navigation toggle */

.nav-toggle {
  display: none;
  border: none;
  background: transparent;
  padding: 4px;
  cursor: pointer;
}

.nav-toggle-bar {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: var(--text);
  + .nav-toggle-bar {
    margin-top: 4px;
  }
}

@media (max-width: 720px) {
  .header-inner {
    position: relative;
    justify-content: center;
  }

  .logo {
    margin: 0 auto;
  }

  .nav-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
  }

  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    padding: 8px 16px 12px;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
    flex-direction: column;
    gap: 8px;
  }

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

  .nav a {
    padding: 8px 10px;
  }
}

/* Hero */

.hero {
  padding: 88px 0 48px;
  background: var(--bg-soft);
}

.hero-inner {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.hero-text {
  text-align: center;
}

.hero-media {
  display: flex;
  justify-content: center;
}

.hero-media-inner {
  width: 100%;
  max-width: 420px;
  border-radius: 24px;
  padding: 20px 20px 18px;
  border: 1px solid var(--border-subtle);
  background: radial-gradient(circle at top left, #f3f4ff 0, #ffffff 40%, #eef2ff 100%);
  box-shadow: 0 22px 45px rgba(15, 23, 42, 0.12);
}

.hero-tag {
  display: inline-flex;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(17, 24, 39, 0.04);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-bottom: 14px;
}

.hero-metric-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
}

.hero-metric {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
}

.hero-metric-label {
  margin: 4px 0 0;
  font-size: 0.8rem;
  color: var(--text-soft);
}

.hero-metrics {
  width: 100%;
  display: flex;
  justify-content: center;
  margin: 20px 0 24px;
}

@media (max-width: 900px) {
  .hero-metrics {
    justify-content: center;
  }
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.75rem;
  color: var(--text-soft);
  margin: 0 0 12px;
}

.hero h1 {
  margin: 0 0 16px;
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  line-height: 1.1;
}

.hero-line {
  margin: 0;
  font-size: clamp(2.6rem, 4.4vw, 3.4rem);
  line-height: 1.08;
}

.hero-line + .hero-line {
  margin-top: 6px;
}

.hero-subtitle {
  margin-top: 24px;
  margin-bottom: 8px;
}

.hero-actions {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 0.75rem;
}

.hero-note {
  margin: 10px 0 0;
  color: var(--text-soft);
  font-size: 0.85rem;
}

.trusted-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 20px 24px;
}

.trusted-logo {
  height: 34px;
  max-width: 110px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.6;
}

.trusted-logo:hover {
  opacity: 1;
}

.hero-note {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.85rem;
}

/* Typewriter */

.typewriter {
  color: var(--accent);
}

.typewriter-caret {
  display: inline-block;
  width: 0.6ch;
  color: var(--accent);
  animation: blink 1s step-end infinite;
}

@keyframes blink {
  0%, 50% {
    opacity: 1;
  }
  50.1%, 100% {
    opacity: 0;
  }
}

/* Trusted */

.trusted {
  padding: 28px 0 40px;
}

.trusted-label {
  margin: 0 0 10px;
  font-size: 0.85rem;
  color: var(--text-soft);
  text-align: center;
}

.logo-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.logo-pill {
  font-size: 0.8rem;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.14);
  background: #ffffff;
  color: var(--text-soft);
}

/* Cards & layout */

.service-card,
.testimonial-card,
.sidebar-card {
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid var(--border-subtle);
  padding: 18px 18px 16px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
}

.solution-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.testimonial-card {
  position: relative;
  padding-top: 26px;
  border-radius: 20px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.10);
}

.testimonial-card::before {
  content: "“";
  position: absolute;
  top: 6px;
  left: 18px;
  font-size: 2.3rem;
  line-height: 1;
  color: var(--accent-soft);
}

.service-card + .service-card {
  margin-top: 18px;
}

.service-card h3 {
  margin-top: 0;
  margin-bottom: 8px;
}

.service-card p {
  margin-top: 0;
  margin-bottom: 8px;
  color: var(--text-soft);
}

.service-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.service-icon svg {
  width: 22px;
  height: 22px;
}

.service-icon--bi {
  background: linear-gradient(135deg, #fef3c7, #fde68a);
}

.service-icon--de {
  background: linear-gradient(135deg, #e0f2fe, #bfdbfe);
}

.service-icon--web {
  background: linear-gradient(135deg, #ecfeff, #a5f3fc);
}

.service-card ul {
  padding-left: 18px;
  margin: 0 0 8px;
  color: var(--text-soft);
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  gap: 20px;
  margin-top: 24px;
  align-items: stretch;
}

/* Offers: For players / For clubs */
.offers-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2.5rem;
  align-items: stretch;
}

.offer-card {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2.5rem;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(15, 23, 42, 0.04);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.offer-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.04);
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.offer-tag-icon {
  margin-right: 0.45rem;
  font-size: 0.9rem;
  color: #111111;
}

.offer-card h2 {
  font-size: 1.10rem;
  line-height: 1.80;
}

.offer-title {
  position: relative;
  display: inline-block;
  margin: 0 auto 0.25rem;
  text-align: center;
}

.offer-title span {
  position: relative;
  z-index: 1;
}

.offer-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0.3em;
  background: rgba(0, 64, 0, 0.16); /* #004000 with light opacity */
  border-radius: 0;
  z-index: 0;
}

.offer-intro {
  font-size: 0.98rem;
  color: var(--muted);
}

.offer-price {
  margin: 0.25rem 0 0.1rem;
	font-weight: 700;
	font-size: 1.2rem;
}

.offer-price-note {
  margin: 0 0 0.4rem;
  font-size: 0.8rem;
  color: var(--text-soft);
}

.offer-bullet-box {
  margin-top: 0.65rem;
  margin-bottom: 0.1rem;
  padding: 0.6rem 0.75rem;
  border-radius: 14px;
  background: rgba(15, 23, 42, 0.03);
}

.offer-tech-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0.45rem;
  margin: 0.85rem 0 0.4rem;
}

.offer-tech {
  display: flex;
  align-items: flex-start;
  gap: 0.4rem;
  padding: 0.5rem 0.7rem;
  border-radius: 10px;
  background: rgba(15, 23, 42, 0.03);
  font-size: 0.8rem;
  color: var(--text-soft);
}

.offer-tech-icon {
  font-size: 0.9rem;
  color: #111111;
}

.offer-tech-text {
  display: flex;
  flex-direction: column;
}

.offer-tech-title {
  font-weight: 600;
  font-size: 0.82rem;
}

.offer-tech-sub {
  font-size: 0.75rem;
}

.offer-points {
  list-style: none;
  padding: 0;
  margin: 0.25rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.18rem;
}

.offer-points li {
  display: flex;
  align-items: flex-start;
  font-size: 0.75rem;
}

.offer-points li::before {
  content: "";
  margin-right: 0.35rem;
  width: 14px;
  height: 14px;
  background-image: url("pics/Symbol32.jpg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
  transform: translateY(1px);
}

.offer-card--consultancy {
  background: #ffffff;
}

.offer-logos-label {
  margin: 0.75rem 0 0.25rem;
  font-size: 0.85rem;
  color: var(--text-soft);
}

.offer-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  font-size: 0.75rem;
  color: var(--text-soft);
}

.offer-list li {
  display: flex;
  align-items: flex-start;
}

.offer-list li::before {
  content: "";
  margin-right: 0.35rem;
  width: 14px;
  height: 14px;
  background-image: url("pics/symbol32.jpg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
  transform: translateY(1px);
}

.offer-logos {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
  margin-top: 0.25rem;
}

.offer-logos--grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, auto));
  justify-content: center;
  gap: 1.25rem 2.5rem;
}

.offer-logos-note {
  margin-top: 0.75rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  font-size: 0.85rem;
  color: var(--text-soft);
  text-align: center;
}

.offer-logo {
  width: 72px;
  height: 40px;
  object-fit: contain;
  border-radius: 0;
  background: transparent;
  padding: 0;
}

.offer-logo--emphasised {
  transform: scale(1.75);
  transform-origin: center;
}

.offer-card .btn {
  align-self: flex-start;
  margin-top: auto;
}

.offer-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.offer-cta-row .btn {
  margin-top: 0;
}

.copy-toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.92);
  color: #ffffff;
  font-size: 0.8rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  opacity: 0;
  transform: translateY(6px);
  pointer-events: none;
  transition: opacity 0.16s ease-out, transform 0.16s ease-out;
  z-index: 50;
}

.copy-toast--visible {
  opacity: 1;
  transform: translateY(0);
}

.offer-image {
  margin-top: 1rem;
}

.offer-image img {
  width: 100%;
  height: auto;
  border-radius: 14px;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.18);
}

.offer-image-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 0 -8px;
}

.offer-image-grid img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.offer-image-setpiece {
  grid-column: 1;
  grid-row: 1;
}

.offer-image-radar {
  grid-column: 1;
  grid-row: 3;
}

.offer-image-momentum {
  grid-column: 2;
  grid-row: 2;
}

.offer-image-toj {
  grid-column: 3;
  grid-row: 1;
}

.offer-image-pca {
  grid-column: 3;
  grid-row: 3;
}

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

@media (max-width: 720px) {
  .solutions-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 900px) {
  .offers-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

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

@media (max-width: 900px) {
  .cards-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

.quote {
  margin-top: 0;
  margin-bottom: 14px;
  color: var(--text);
  font-size: 1rem;
  line-height: 1.6;
  font-style: italic;
}

.name {
  margin: 0;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--accent);
}

.role {
  margin: 4px 0 0;
  font-size: 0.82rem;
  color: var(--text-soft);
}

.sidebar {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.sidebar-card h3 {
  margin-top: 0;
  margin-bottom: 8px;
}

.sidebar-card.compact p {
  margin: 2px 0;
  text-align: left;
}

.sidebar-card--logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-logo-board {
  display: block;
  max-width: 100%;
  max-height: 190px;
  height: auto;
}

.company-logo {
  display: block;
  height: 32px;
  width: auto;
  margin: 0 0 10px;
}

.plain-list {
  list-style: none;
  padding-left: 0;
  margin: 0 0 8px;
}

.plain-list li {
  font-size: 0.95rem;
  color: var(--text-soft);
}

.small-text {
  font-size: 0.85rem;
  color: var(--text-soft);
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.08s ease-out, box-shadow 0.08s ease-out, background 0.1s ease-out, border-color 0.1s ease-out;
}

.btn.primary {
  background: var(--accent);
  color: #ffffff;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.25);
}

.btn.secondary {
  background: #ffffff;
  border-color: rgba(15, 23, 42, 0.16);
  color: var(--text);
}

.btn.ghost {
  background: transparent;
  border-color: rgba(15, 23, 42, 0.28);
  color: var(--text);
}

.btn-get-in-touch {
  background: #ffffff;
  border-color: rgba(15, 23, 42, 0.16);
  color: #004000;
}

.btn-get-in-touch::before {
  content: "";
  display: inline-block;
  margin-right: 0.4rem;
  width: 18px;
  height: 18px;
  border-radius: 4px;
  background-color: #ffffff;
  background-image: url("pics/symbol32.jpg");
  background-size: 70%;
  background-repeat: no-repeat;
  background-position: center;
}

.btn-player-testimonial {
  background: #000000;
  border-color: #000000;
  color: #ffffff;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
  text-decoration: none;
}

/* Contact */

.contact .contact-methods {
  margin-top: 12px;
}

.contact .small-text {
  margin-top: 6px;
}

/* Footer */

.site-footer {
  padding: 18px 0 24px;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  background: #ffffff;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.8rem;
  color: var(--text-soft);
}

.footer-inner a {
  color: var(--text-soft);
}

@media (max-width: 640px) {
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Cookie banner */

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 40;
  background: rgba(15, 23, 42, 0.98);
  color: #f9fafb;
  padding: 12px 0;
  font-size: 0.85rem;
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.25s ease-out, opacity 0.25s ease-out;
}

.cookie-banner--visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.cookie-banner-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.cookie-banner-text {
  margin: 0;
}

.cookie-banner-text a {
  color: #e5e7eb;
  text-decoration: underline;
}

.cookie-banner-buttons {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

@media (max-width: 720px) {
  .cookie-banner-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-banner-buttons {
    width: 100%;
  }

  .cookie-banner-buttons .btn {
    flex: 1 1 auto;
    justify-content: center;
  }
}
