/* =============================================================
   TeamGetCloser (TGC) brand layer
   Loaded AFTER the Soale template CSS.
   Goal: keep the TGC section STRUCTURE, but inherit the original
   template's typography (Inter Tight), theme (black + purple &
   orange dual accent) and base UI components (rounded buttons,
   surfaces, mono eyebrows).
   ============================================================= */

/* ---- Tokens: Copilot Purple + Boost Orange ------------------ */
:root {
  --tgc-purple-1: #C898FD;
  --tgc-purple-2: #B870FF;
  --tgc-purple-3: #8534F3;      /* Copilot Purple — primary UI accent */
  --tgc-purple-4: #43179E;
  --tgc-purple-5: #26115F;
  --tgc-purple-6: #160048;

  --tgc-orange-1: #F4A876;
  --tgc-orange-2: #F08A3A;
  --tgc-orange-3: #FE4C25;      /* Boost Orange — CTAs, gauges, turbo */
  --tgc-orange-4: #C53211;
  --tgc-orange-5: #801E0F;
  --tgc-orange-6: #500A00;

  --tgc-accent: var(--tgc-purple-3);
  --tgc-accent-2: var(--tgc-purple-2);
  --tgc-boost: var(--tgc-orange-3);
  --tgc-boost-2: var(--tgc-orange-2);
  --tgc-base: #000;
  --tgc-surface: #0a0a0a;
  --tgc-surface-2: #141414;
  --tgc-surface-3: #0c0c0c;
  --tgc-line: #ffffff1a;
  --tgc-line-2: #ffffff3d;
  --tgc-muted: #ffffffb3;
  --tgc-muted-2: #ffffff80;
}

/* ---- Base (matches template: black bg, Inter Tight, white) -- */
html, body {
  background-color: var(--tgc-base);
  color: #fff;
  font-family: var(--font-family--inter-tight);
  overflow-x: clip;
}

main {
  overflow-x: clip;
  overflow-y: visible;
}

main:has(.tgc-marketplace-section) {
  overflow-x: visible;
}

/* Monochrome imagery (brand requirement). Apply .bw to any <img>. */
.bw { filter: grayscale(100%) contrast(1.03) brightness(.97); }
.bw:hover { filter: grayscale(100%) contrast(1.06) brightness(1); }
.bw-hover-color { filter: grayscale(100%) contrast(1.03) brightness(.97); transition: filter .35s ease; }
.bw-hover-color:hover { filter: grayscale(0) contrast(1) brightness(1); }

/* Custom-section headings inherit the template's heading feel:
   Inter Tight, weight 400, normal case (NOT condensed/uppercase). */
.tgc-card h3,
.tgc-stage h3,
.tgc-founder-body h3,
.tgc-legal h2 {
  font-family: var(--font-family--inter-tight);
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  color: #fff;
}

/* boost / turbo highlight word in headings */
.tgc-boost-text { color: var(--tgc-boost); }

/* ---- Eyebrow / mono label (matches .sub-heading-text) ------- */
.tgc-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-family--ibm-plex-mono);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 13px;
  font-weight: 500;
  color: #fff;
}
.tgc-eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: linear-gradient(90deg, var(--tgc-accent), var(--tgc-boost));
}
.tgc-eyebrow.is-light { color: #fff; }
.tgc-eyebrow.is-light::before { background: linear-gradient(90deg, var(--tgc-accent), var(--tgc-boost)); }

/* ---- Buttons: purple CTAs; orange reserved for turbo/gauge highlights -- */
.common-button.tgc-boost-btn {
  border-color: var(--tgc-accent);
  background-color: var(--tgc-accent);
  color: #fff;
}
.common-button.tgc-boost-btn:hover {
  border-color: var(--tgc-accent-2);
  background-color: var(--tgc-accent-2);
  color: #fff;
}

/* Ensure all CTA/button-like links never show underline */
a.common-button,
a.common-button:hover,
a.common-button:focus,
a.common-button:active,
a.common-button:visited,
a.common-button.outline-button,
a.common-button.outline-button:hover {
  text-decoration: none !important;
}

/* ---- Navbar ------------------------------------------------- */
.nav-link.w--current { background-image: none; padding-left: 0; color: var(--tgc-accent); }
.tgc-nav .nav-link,
.tgc-nav-links a {
  text-decoration: none !important;
}

/* dependency-free nav layout (replaces webflow IX) */
.tgc-nav { position: sticky; top: 0; z-index: 50; background: rgba(0,0,0,.72); backdrop-filter: blur(12px); border-bottom: 1px solid var(--tgc-line); }
.tgc-nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 16px 0; }
.tgc-nav-logo img { height: 34px; width: auto; display: block; }
.tgc-nav-links { display: flex; align-items: center; gap: 30px; }
.tgc-burger { display: none; background: none; border: 0; cursor: pointer; width: 30px; height: 22px; position: relative; }
.tgc-burger span { position: absolute; left: 0; right: 0; height: 2px; background: #fff; transition: .25s; }
.tgc-burger span:nth-child(1) { top: 0; }
.tgc-burger span:nth-child(2) { top: 10px; }
.tgc-burger span:nth-child(3) { top: 20px; }
.tgc-nav.is-open .tgc-burger span:nth-child(1) { top: 10px; transform: rotate(45deg); }
.tgc-nav.is-open .tgc-burger span:nth-child(2) { opacity: 0; }
.tgc-nav.is-open .tgc-burger span:nth-child(3) { top: 10px; transform: rotate(-45deg); }

@media (max-width: 767px) {
  .tgc-burger { display: block; }
  .tgc-nav-links {
    position: absolute; left: 0; right: 0; top: 100%;
    flex-direction: column; align-items: flex-start; gap: 18px;
    background: var(--tgc-base); border-bottom: 1px solid var(--tgc-line);
    padding: 24px 20px; transform: translateY(-12px); opacity: 0; pointer-events: none; transition: .2s;
  }
  .tgc-nav.is-open .tgc-nav-links { transform: translateY(0); opacity: 1; pointer-events: auto; }
}

/* ---- Section rhythm + reusable shells ----------------------- */
.tgc-section { padding: clamp(72px, 10vw, 140px) 0; position: relative; }
.tgc-section.is-tight { padding: clamp(48px, 7vw, 90px) 0; }
.tgc-divider { border: 0; border-top: 1px solid var(--tgc-line); margin: 0; }

/* mono ticker strip used as a section seam */
.tgc-ticker { border-top: 1px solid var(--tgc-line); border-bottom: 1px solid var(--tgc-line); overflow: hidden; background: var(--tgc-surface); }
.tgc-ticker-track {
  display: flex; gap: 56px; white-space: nowrap;
  font-family: var(--font-family--ibm-plex-mono);
  text-transform: uppercase; letter-spacing: 2px; font-size: 13px; color: var(--tgc-muted);
  padding: 16px 0; width: max-content;
  animation: tgc-marquee 28s linear infinite;
}
.tgc-ticker-track span { display: inline-flex; align-items: center; gap: 56px; }
.tgc-ticker-track b { color: var(--tgc-boost); font-weight: 500; }
@keyframes tgc-marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---- HERO: dyno boost --------------------------------------- */
.tgc-hero { position: relative; overflow: hidden; padding: clamp(120px, 16vw, 200px) 0 clamp(80px, 9vw, 120px); min-height: 80vh; }
.tgc-hero-bg { position: absolute; inset: 0; z-index: 0; background-size: cover; background-position: center; opacity: 0; pointer-events: none; }
.tgc-hero-bg::after { content: ""; position: absolute; inset: 0; background: radial-gradient(120% 90% at 50% 0%, transparent 30%, var(--tgc-base) 88%); }
.tgc-hero-inner { position: relative; z-index: 2; max-width: 920px; }
.tgc-hero-3d {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

/* Full-bleed turbo video background */
.tgc-turbo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.tgc-turbo-video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  /* JS drives this for a smooth fade-to-black loop seam */
  opacity: 1;
  filter: saturate(1.06) contrast(1.03);
}
.tgc-hero-3d::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  /* Keep copy readable over the full-bleed video */
  background:
    linear-gradient(90deg, #000000f0 0%, #000000c8 22%, #00000070 42%, #00000030 62%, transparent 78%),
    linear-gradient(180deg, transparent 55%, #000000b3 100%);
}
.tgc-hero h1 { margin: 18px 0 22px; }
.tgc-hero-lead { color: var(--tgc-muted); font-size: clamp(16px, 1.4vw, 20px); max-width: 560px; line-height: 150%; }
.tgc-hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }

/* boost gauge stat row */
.tgc-gauges { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; margin-top: 64px; background: var(--tgc-line); border: 1px solid var(--tgc-line); border-radius: 14px; overflow: hidden; }
.tgc-gauge { background: var(--tgc-surface); padding: 26px 22px; }
.tgc-gauge-num { font-family: var(--font-family--inter-tight); font-weight: 400; font-size: clamp(30px, 3.4vw, 46px); line-height: 1; }
.tgc-gauge-num small { color: var(--tgc-boost); font-size: .7em; }
.tgc-gauge-label { font-family: var(--font-family--ibm-plex-mono); text-transform: uppercase; letter-spacing: 1.5px; font-size: 11px; color: var(--tgc-muted-2); margin-top: 12px; }
.tgc-gauge-bar { height: 3px; background: #ffffff14; margin-top: 16px; border-radius: 2px; overflow: hidden; }
.tgc-gauge-bar i { display: block; height: 100%; width: 0; background: linear-gradient(90deg, var(--tgc-boost), var(--tgc-accent)); transition: width 1.1s cubic-bezier(.2,.8,.2,1); }
.is-visible .tgc-gauge-bar i { width: var(--lvl, 80%); }
@media (max-width: 767px) { .tgc-gauges { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 991px) {
  .tgc-turbo-video { object-position: 58% center; }
  .tgc-hero-3d::before {
    background:
      linear-gradient(90deg, #000000f2 0%, #000000d0 30%, #00000080 55%, transparent 85%),
      linear-gradient(180deg, transparent 45%, #000000c0 100%);
  }
}
@media (max-width: 600px) {
  .tgc-turbo-video { object-position: 62% center; }
}

/* ---- Partner logos: continuous marquee (no decoration) ------ */
.tgc-partner-zone {
  position: relative;
  overflow: hidden;
}
.tgc-partner-zone > .container {
  position: relative;
  z-index: 3;
}
.tgc-partner-deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}
.tgc-partner-lane {
  position: absolute;
  border: 2px solid #ffffff24;
  border-left: 0;
  border-right: 0;
  border-radius: 50%;
  filter: blur(0.2px);
}
.tgc-partner-lane-a {
  width: 130%;
  height: 78%;
  left: -18%;
  top: 8%;
  transform: rotate(-6deg);
  border-top-color: #ffffff1f;
  border-bottom-color: #ffffff10;
}
.tgc-partner-lane-b {
  width: 118%;
  height: 66%;
  left: -8%;
  top: 20%;
  transform: rotate(8deg);
  border-top-color: #ffffff14;
  border-bottom-color: #ffffff0d;
}
.tgc-logo-marquee {
  margin-top: 40px;
  overflow: hidden;
  width: 100%;
  position: relative;
  z-index: 2;
}
.tgc-logo-track {
  display: flex;
  align-items: center;
  gap: 110px;
  width: max-content;
  animation: tgc-logo-scroll 34s linear infinite;
}
.tgc-logo-item {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
}
.tgc-logo-item img {
  width: auto;
  height: 122px;
  max-width: 220px;
  object-fit: contain;
  filter: grayscale(100%) brightness(0) invert(1);
  opacity: .95;
}

@keyframes tgc-logo-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (max-width: 991px) {
  .tgc-logo-track { gap: 72px; animation-duration: 28s; }
  .tgc-logo-item { min-width: 170px; }
  .tgc-logo-item img { height: 92px; max-width: 170px; }
  .tgc-partner-lane-a { width: 150%; left: -30%; top: 12%; }
  .tgc-partner-lane-b { width: 140%; left: -20%; top: 28%; }
}

@media (max-width: 767px) {
  .tgc-logo-track { gap: 48px; animation-duration: 22s; }
  .tgc-logo-item { min-width: 130px; }
  .tgc-logo-item img { height: 68px; max-width: 130px; }
}

/* ---- "What we build" service cards -------------------------- */
.tgc-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 48px; }
.tgc-card { background: var(--tgc-surface); border: 1px solid var(--tgc-line); border-radius: 20px; padding: 32px; position: relative; overflow: hidden; transition: border-color .2s, transform .2s; }
.tgc-card:hover { border-color: var(--tgc-accent); transform: translateY(-4px); }
.tgc-card-idx { font-family: var(--font-family--ibm-plex-mono); color: var(--tgc-accent); font-size: 13px; letter-spacing: 1.5px; text-transform: uppercase; }
.tgc-card h3 { font-size: 28px; margin: 18px 0 12px; }
.tgc-card p { color: var(--tgc-muted); font-size: 15px; line-height: 152%; margin: 0; }
.tgc-card ul { list-style: none; margin: 22px 0 0; padding: 0; }
.tgc-card li { font-size: 14px; color: #fff; padding: 9px 0; border-top: 1px solid var(--tgc-line); }
.tgc-card li::before { content: "› "; color: var(--tgc-accent); }
@media (max-width: 991px) { .tgc-cards { grid-template-columns: 1fr; } }

/* ---- Stages / pit-lane process ------------------------------ */
.tgc-stages { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 52px; }
.tgc-stage { position: relative; padding-top: 28px; border-top: 1px solid var(--tgc-line); }
.tgc-stage::before { content: ""; position: absolute; top: -1px; left: 0; width: 64px; height: 3px; background: var(--tgc-accent); }
.tgc-stage-no { font-family: var(--font-family--ibm-plex-mono); color: var(--tgc-accent); font-size: 13px; letter-spacing: 1.5px; text-transform: uppercase; }
.tgc-stage h3 { font-size: 26px; margin: 12px 0 10px; }
.tgc-stage p { color: var(--tgc-muted); font-size: 14px; line-height: 150%; margin: 0; }
@media (max-width: 991px) { .tgc-stages { grid-template-columns: 1fr 1fr; } }
@media (max-width: 479px) { .tgc-stages { grid-template-columns: 1fr; } }

/* ---- Telemetry result spotlight ----------------------------- */
.tgc-telemetry { background: var(--tgc-surface); border: 1px solid var(--tgc-line); border-radius: 24px; padding: clamp(28px, 4vw, 56px); display: grid; grid-template-columns: 1.1fr .9fr; gap: 40px; align-items: center; }
.tgc-telemetry .tgc-lead + .common-button {
  display: inline-block;
  margin-top: clamp(36px, 4vw, 48px);
}
.tgc-telemetry-readout { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--tgc-line); border: 1px solid var(--tgc-line); border-radius: 16px; overflow: hidden; }
.tgc-readout { background: var(--tgc-base); padding: 24px; }
.tgc-readout .v { font-family: var(--font-family--inter-tight); font-weight: 400; font-size: clamp(28px, 3.2vw, 42px); line-height: 1; }
.tgc-readout .v.is-boost { color: var(--tgc-boost); }
.tgc-readout .k { font-family: var(--font-family--ibm-plex-mono); text-transform: uppercase; letter-spacing: 1.4px; font-size: 11px; color: var(--tgc-muted-2); margin-top: 12px; }
@media (max-width: 991px) { .tgc-telemetry { grid-template-columns: 1fr; } }

/* ---- Founders ----------------------------------------------- */
.tgc-founders { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 48px; }
.tgc-founder { background: var(--tgc-surface); border: 1px solid var(--tgc-line); border-radius: 20px; overflow: hidden; }
.tgc-founder-photo { aspect-ratio: 4/3; overflow: hidden; }
.tgc-founder-photo img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(100%) contrast(1.04); }
.tgc-founder-body { padding: 26px 28px 30px; }
.tgc-founder-role { font-family: var(--font-family--ibm-plex-mono); color: var(--tgc-accent); text-transform: uppercase; letter-spacing: 1.5px; font-size: 12px; }
.tgc-founder-body h3 { font-size: 28px; margin: 10px 0 12px; }
.tgc-founder-body p { color: var(--tgc-muted); font-size: 15px; line-height: 152%; margin: 0; }
.tgc-founder-body a { color: var(--tgc-accent); text-decoration: none; }
.tgc-founder-body a:hover { color: var(--tgc-accent-2); text-decoration: underline; }

/* ---- About: mission statement ------------------------------- */
.tgc-mission {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.tgc-mission .tgc-eyebrow { justify-content: center; }
.tgc-mission .tgc-lead { margin-top: 18px; }

@media (max-width: 767px) { .tgc-founders { grid-template-columns: 1fr; } }

/* ---- Split / editorial block -------------------------------- */
.tgc-split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.tgc-split > * { min-width: 0; }
.tgc-split.is-reverse .tgc-split-media { order: -1; }
.tgc-split-media { border-radius: 20px; overflow: hidden; border: 1px solid var(--tgc-line); }
.tgc-split-media img { width: 100%; max-width: 100%; height: auto; display: block; }
.tgc-lead { color: var(--tgc-muted); font-size: clamp(16px, 1.3vw, 19px); line-height: 156%; }
.tgc-values { list-style: none; margin: 28px 0 0; padding: 0; }
.tgc-values li { padding: 16px 0; border-top: 1px solid var(--tgc-line); display: flex; gap: 16px; }
.tgc-values li b { font-family: var(--font-family--ibm-plex-mono); color: var(--tgc-accent); font-size: 13px; min-width: 40px; }
@media (max-width: 767px) { .tgc-split { grid-template-columns: 1fr; } .tgc-split.is-reverse .tgc-split-media { order: 0; } }

/* ---- CTA band ----------------------------------------------- */
.tgc-cta { background: var(--tgc-surface); border: 1px solid var(--tgc-line); border-radius: 24px; padding: clamp(40px, 6vw, 76px); text-align: center; position: relative; overflow: hidden; }
.tgc-cta::after {
  content: "";
  position: absolute;
  left: 50%;
  top: -40%;
  width: 70%;
  height: 120%;
  background:
    radial-gradient(closest-side at 35% 50%, #8534F32e, transparent),
    radial-gradient(closest-side at 65% 50%, #FE4C2524, transparent);
  transform: translateX(-50%);
}
.tgc-cta > * { position: relative; z-index: 1; }

/* ---- Contact ------------------------------------------------ */
.tgc-contact { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(32px, 5vw, 64px); align-items: start; }
.tgc-contact-card { background: var(--tgc-surface); border: 1px solid var(--tgc-line); border-radius: 24px; padding: clamp(24px, 3vw, 40px); }
.contact-input { color: #fff !important; border-color: #ffffff14 #ffffff14 var(--tgc-line) !important; }
.contact-input::placeholder { color: #ffffff4d; }
.contact-input:focus { border-bottom-color: var(--tgc-accent) !important; background-color: #8534F30d !important; }
.contact-label { font-family: var(--font-family--ibm-plex-mono); text-transform: uppercase; letter-spacing: 1.4px; font-size: 11px; color: var(--tgc-muted-2); }
.tgc-info-row { padding: 18px 0; border-top: 1px solid var(--tgc-line); }
.tgc-info-row .k { font-family: var(--font-family--ibm-plex-mono); text-transform: uppercase; letter-spacing: 1.5px; font-size: 11px; color: var(--tgc-accent); }
.tgc-info-row .v { font-size: 16px; margin-top: 6px; color: #fff; }
.tgc-info-row a { color: #fff; text-decoration: none; }
.tgc-info-row a:hover { color: var(--tgc-accent); }
.tgc-alert { background: #11240f; border: 1px solid #2f7a3a; color: #d8ffe0; border-radius: 14px; padding: 16px 18px; margin-bottom: 22px; font-size: 14px; }
.tgc-error { color: var(--tgc-accent); font-family: var(--font-family--ibm-plex-mono); font-size: 11px; letter-spacing: .5px; margin-top: 6px; }

/* ---- Impressum / legal -------------------------------------- */
.tgc-legal { max-width: 760px; }
.tgc-legal h2 { font-size: 22px; margin: 40px 0 14px; }
.tgc-legal p, .tgc-legal address { color: #ffffffc2; font-style: normal; line-height: 168%; font-size: 15px; }
.tgc-legal ul { color: #ffffffc2; line-height: 168%; font-size: 15px; margin: 0 0 18px; padding-left: 1.2em; }
.tgc-legal li { margin-bottom: 8px; }
.tgc-legal code { font-family: var(--font-family--ibm-plex-mono); font-size: 13px; color: var(--tgc-muted); background: var(--tgc-surface-2); padding: 2px 6px; border-radius: 4px; }
.tgc-legal a { color: var(--tgc-accent); text-decoration: none; }

/* ---- Cookie consent banner ----------------------------------- */
.tgc-cookie-banner {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 100;
  max-width: 380px;
  padding: 22px 24px;
  border: 1px solid var(--tgc-line);
  border-radius: 20px;
  background: var(--tgc-surface-2);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.45);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .35s ease, transform .35s cubic-bezier(.2, .8, .2, 1);
}
.tgc-cookie-banner.is-visible {
  opacity: 1;
  transform: none;
}
.tgc-cookie-banner[hidden] { display: none !important; }
.tgc-cookie-banner__text {
  margin: 0 0 18px;
  font-size: 14px;
  line-height: 155%;
  color: #fff;
}
.tgc-cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 14px;
}
.tgc-cookie-banner__accept,
.tgc-cookie-banner__decline {
  padding: 10px 18px !important;
  font-size: 13px !important;
  letter-spacing: .5px !important;
  cursor: pointer;
}
.tgc-cookie-banner__decline {
  border-color: var(--tgc-line-2) !important;
  background: transparent !important;
  color: #fff !important;
}
.tgc-cookie-banner__decline:hover {
  border-color: var(--tgc-accent) !important;
  color: var(--tgc-accent) !important;
  background: transparent !important;
}
.tgc-cookie-banner__link {
  font-family: var(--font-family--ibm-plex-mono);
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--tgc-muted-2);
  text-decoration: none;
  transition: color .2s;
}
.tgc-cookie-banner__link:hover { color: var(--tgc-accent); }
@media (max-width: 767px) {
  .tgc-cookie-banner {
    left: 50%;
    right: auto;
    bottom: 16px;
    width: calc(100% - 32px);
    max-width: none;
    transform: translate(-50%, 16px);
  }
  .tgc-cookie-banner.is-visible {
    transform: translate(-50%, 0);
  }
}
@media (prefers-reduced-motion: reduce) {
  .tgc-cookie-banner { transition: none; transform: none; }
  .tgc-cookie-banner.is-visible { transform: none; }
  @media (max-width: 767px) {
    .tgc-cookie-banner { transform: translateX(-50%); }
    .tgc-cookie-banner.is-visible { transform: translateX(-50%); }
  }
}

/* ---- Footer ------------------------------------------------- */
.footer {
  border-top: 0;
  overflow: visible;
  padding-top: clamp(28px, 4vw, 44px);
}
.tgc-footer-link { color: var(--tgc-muted); text-decoration: none; font-size: 15px; }
.tgc-footer-link:hover { color: var(--tgc-accent); }

/* ---- Page header (interior pages) --------------------------- */
.tgc-page-hero { padding: clamp(120px, 14vw, 180px) 0 clamp(48px, 6vw, 80px); position: relative; overflow: hidden; border-bottom: 1px solid var(--tgc-line); }
.tgc-page-hero .tgc-hero-lead { max-width: 620px; }

/* ---- Scroll reveal ------------------------------------------ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.8,.2,1); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } .tgc-ticker-track { animation: none; } }

/* layout helpers */
.tgc-max-720 { max-width: 720px; }
.tgc-mt-16 { margin-top: 16px; }
.tgc-center { text-align: center; margin-left: auto; margin-right: auto; }

/* ---- 3-up gauges variant ------------------------------------ */
.tgc-gauges.is-3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 767px) { .tgc-gauges.is-3 { grid-template-columns: 1fr; } }

/* ---- Language toggle ---------------------------------------- */
.tgc-lang { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-family--ibm-plex-mono); }
.tgc-lang-link { color: var(--tgc-muted-2); text-decoration: none; font-size: 13px; letter-spacing: 1.5px; text-transform: uppercase; transition: color .2s; }
.tgc-lang-link:hover { color: #fff; }
.tgc-lang-link.is-active { color: var(--tgc-accent); }
.tgc-lang-sep { color: var(--tgc-line); font-size: 13px; }

/* ---- 4-up service grid -------------------------------------- */
.tgc-cards.is-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1100px) { .tgc-cards.is-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 700px) { .tgc-cards.is-4 { grid-template-columns: 1fr; } }

/* ---- Audience columns (Für wen?) ---------------------------- */
.tgc-audience { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 48px; }
.tgc-audience-col { background: var(--tgc-surface); border: 1px solid var(--tgc-line); border-radius: 20px; padding: 32px; }
.tgc-audience-col h3 { font-family: var(--font-family--inter-tight); font-weight: 400; font-size: 26px; margin: 0 0 8px; }
.tgc-audience-col ul { list-style: none; margin: 22px 0 0; padding: 0; }
.tgc-audience-col li { font-size: 15px; color: #fff; padding: 12px 0; border-top: 1px solid var(--tgc-line); }
.tgc-audience-col li::before { content: "› "; color: var(--tgc-accent); }
@media (max-width: 767px) { .tgc-audience { grid-template-columns: 1fr; } }

/* ---- Case study bullets ------------------------------------- */
.tgc-case-list { list-style: none; margin: 26px 0 0; padding: 0; }
.tgc-case-list li { padding: 14px 0; border-top: 1px solid var(--tgc-line); display: flex; gap: 14px; align-items: flex-start; font-size: 15px; color: #fff; }
.tgc-case-list li::before { content: "›"; color: var(--tgc-accent); font-family: var(--font-family--ibm-plex-mono); }
.tgc-case-result { margin-top: 28px; padding: 22px 24px; border: 1px solid var(--tgc-line); border-radius: 16px; background: var(--tgc-base); }
.tgc-case-result .k { font-family: var(--font-family--ibm-plex-mono); text-transform: uppercase; letter-spacing: 1.4px; font-size: 11px; color: var(--tgc-accent); }
.tgc-case-result .v { font-family: var(--font-family--inter-tight); font-size: clamp(20px, 2.2vw, 26px); line-height: 1.2; margin-top: 10px; }

/* ---- Extraction engine pipeline ----------------------------- */
.tgc-engine-flow {
  display: grid;
  grid-template-columns: 1fr auto 1.15fr auto 1fr;
  gap: 12px;
  align-items: stretch;
  margin-top: 52px;
}
.tgc-engine-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--tgc-accent);
  opacity: .85;
}
.tgc-engine-arrow svg { width: 28px; height: 28px; }
.tgc-engine-step {
  background: var(--tgc-surface);
  border: 1px solid var(--tgc-line);
  border-radius: 20px;
  padding: clamp(22px, 2.4vw, 28px);
  display: flex;
  flex-direction: column;
  min-height: 100%;
}
.tgc-engine-step.is-engine {
  border-color: #8534F355;
  background:
    radial-gradient(120% 80% at 50% 0%, #8534F318, transparent 55%),
    var(--tgc-surface);
  position: relative;
  overflow: hidden;
}
.tgc-engine-step-head {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 20px;
}
.tgc-engine-no {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-family--ibm-plex-mono);
  font-size: 12px;
  letter-spacing: .5px;
  color: #fff;
  background: var(--tgc-accent);
}
.tgc-engine-step.is-output .tgc-engine-no { background: #2ecc71; }
.tgc-engine-step-head h3 {
  font-family: var(--font-family--inter-tight);
  font-size: clamp(20px, 2vw, 24px);
  font-weight: 400;
  margin: 0;
  line-height: 1.15;
}
.tgc-engine-sub {
  margin: 6px 0 0;
  font-size: 13px;
  color: var(--tgc-muted-2);
}
.tgc-engine-sources,
.tgc-engine-outputs {
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1;
}
.tgc-engine-sources li,
.tgc-engine-outputs li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px 0;
  border-top: 1px solid var(--tgc-line);
  font-size: 14px;
}
.tgc-engine-sources li:first-child,
.tgc-engine-outputs li:first-child { border-top: 0; padding-top: 0; }
.tgc-engine-sources strong {
  display: block;
  font-weight: 500;
  color: #fff;
  font-size: 14px;
}
.tgc-engine-sources small {
  display: block;
  margin-top: 3px;
  color: var(--tgc-muted-2);
  font-size: 12px;
  line-height: 140%;
}
.tgc-engine-icon {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: var(--tgc-surface-2);
  border: 1px solid var(--tgc-line);
  position: relative;
}
.tgc-engine-icon::after {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 3px;
  border: 1.5px solid currentColor;
  opacity: .9;
}
.tgc-engine-icon.is-src-1 { color: #5b9dff; }
.tgc-engine-icon.is-src-1::after { border-radius: 50%; border-width: 1.5px; inset: 9px; }
.tgc-engine-icon.is-src-2 { color: #2ecc71; }
.tgc-engine-icon.is-src-2::after { border-style: dashed; transform: rotate(-12deg); }
.tgc-engine-icon.is-src-3 { color: var(--tgc-accent); }
.tgc-engine-formats {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--tgc-line);
}
.tgc-engine-formats .k {
  font-family: var(--font-family--ibm-plex-mono);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-size: 10px;
  color: var(--tgc-muted-2);
  margin-bottom: 10px;
}
.tgc-engine-formats .tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.tgc-engine-formats .tags span {
  font-family: var(--font-family--ibm-plex-mono);
  font-size: 10px;
  letter-spacing: .8px;
  text-transform: uppercase;
  padding: 5px 8px;
  border-radius: 6px;
  background: var(--tgc-surface-2);
  border: 1px solid var(--tgc-line);
  color: var(--tgc-muted);
}
.tgc-engine-formats .tags .is-more {
  border-style: dashed;
  color: var(--tgc-muted-2);
}
.tgc-engine-core {
  position: relative;
  height: 148px;
  margin: 4px 0 18px;
  display: grid;
  place-items: center;
}
.tgc-engine-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px dashed var(--tgc-line-2);
}
.tgc-engine-ring-a { width: 120px; height: 120px; animation: tgc-engine-spin 14s linear infinite; }
.tgc-engine-ring-b { width: 88px; height: 88px; animation: tgc-engine-spin 10s linear infinite reverse; opacity: .7; }
.tgc-engine-brain {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--tgc-base);
  border: 1px solid #8534F344;
  color: var(--tgc-accent);
  box-shadow: 0 0 32px #8534F320;
}
.tgc-engine-brain svg { width: 36px; height: 36px; }
.tgc-engine-desc {
  margin: 0;
  font-size: 14px;
  line-height: 150%;
  color: var(--tgc-muted);
  text-align: center;
}
.tgc-engine-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-top: 18px;
}
.tgc-engine-pills span {
  font-family: var(--font-family--ibm-plex-mono);
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid #8534F333;
  background: #8534F310;
  color: #fff;
}
.tgc-engine-outputs li {
  justify-content: space-between;
  color: #fff;
}
.tgc-engine-outputs li::after {
  content: "✓";
  color: #2ecc71;
  font-size: 13px;
  flex-shrink: 0;
}
.tgc-engine-benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 22px;
  padding: 22px;
  border: 1px solid var(--tgc-line);
  border-radius: 20px;
  background: var(--tgc-surface);
}
.tgc-engine-benefit {
  padding: 8px 10px;
  text-align: center;
}
.tgc-engine-benefit-icon {
  display: inline-block;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  margin-bottom: 12px;
  border: 1px solid var(--tgc-line);
  background: var(--tgc-surface-2);
  position: relative;
}
.tgc-engine-benefit-icon::before,
.tgc-engine-benefit-icon::after {
  content: "";
  position: absolute;
  inset: 11px;
  border: 1.5px solid currentColor;
  border-radius: 50%;
}
.tgc-engine-benefit-icon.is-b1 { color: #5b9dff; }
.tgc-engine-benefit-icon.is-b2 { color: #2ecc71; }
.tgc-engine-benefit-icon.is-b2::before { border-radius: 3px; inset: 13px 10px; border-width: 0 0 2px 0; border-style: solid; transform: skewX(-12deg); }
.tgc-engine-benefit-icon.is-b2::after { display: none; }
.tgc-engine-benefit-icon.is-b3 { color: #a78bfa; }
.tgc-engine-benefit-icon.is-b3::before { border-radius: 4px; inset: 12px 13px 14px; }
.tgc-engine-benefit-icon.is-b4 { color: var(--tgc-accent); }
.tgc-engine-benefit-icon.is-b4::before { border: none; background: currentColor; inset: 18px 12px 12px; border-radius: 2px 2px 0 0; opacity: .35; }
.tgc-engine-benefit-icon.is-b4::after { border: none; background: currentColor; inset: 12px 16px auto; height: 8px; border-radius: 2px; opacity: .8; }
.tgc-engine-benefit h4 {
  font-family: var(--font-family--inter-tight);
  font-size: 17px;
  font-weight: 400;
  margin: 0 0 6px;
}
.tgc-engine-benefit p {
  margin: 0;
  font-size: 13px;
  line-height: 145%;
  color: var(--tgc-muted-2);
}
@keyframes tgc-engine-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@media (prefers-reduced-motion: reduce) {
  .tgc-engine-ring-a, .tgc-engine-ring-b { animation: none; }
}
@media (max-width: 1100px) {
  .tgc-engine-flow {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .tgc-engine-arrow {
    padding: 10px 0;
    transform: rotate(90deg);
  }
  .tgc-engine-benefits { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .tgc-engine-benefits { grid-template-columns: 1fr; padding: 18px; }
}

/* ---- Tilted start-line divider -------------------------------- */
.tgc-startline-divider {
  position: relative;
  width: 100%;
  /* Tall enough for the rotated stripe to render without top/bottom clipping */
  height: clamp(80px, 10vw, 112px);
  margin-top: clamp(42px, 6vw, 72px);
  overflow: visible;
  pointer-events: none;
}

.tgc-startline-divider::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 135vw;
  height: clamp(42px, 5.3vw, 56px);
  transform: translate(-50%, -50%) rotate(-1.8deg);
  transform-origin: center;
  border-top: 2px solid #f5f5f5;
  border-bottom: 2px solid #f5f5f5;
  background-color: #1d1f24;
  background-image:
    linear-gradient(
      45deg,
      #f5f5f5 25%,
      transparent 25%,
      transparent 75%,
      #f5f5f5 75%,
      #f5f5f5
    ),
    linear-gradient(
      45deg,
      #f5f5f5 25%,
      transparent 25%,
      transparent 75%,
      #f5f5f5 75%,
      #f5f5f5
    );
  background-size: 40px 40px;
  background-position: 0 0, 20px 20px;
}

/* Footer variant: first element inside <footer> */
.tgc-startline-divider--footer {
  margin-top: 0;
  margin-bottom: clamp(36px, 5vw, 56px);
}

@media (max-width: 767px) {
  .tgc-startline-divider {
    height: clamp(64px, 16vw, 80px);
    margin-top: 30px;
  }

  .tgc-startline-divider--footer {
    margin-top: 0;
    margin-bottom: 28px;
  }

  .tgc-startline-divider::before {
    width: 155vw;
    height: 34px;
    transform: translate(-50%, -50%) rotate(-2deg);
    background-size: 28px 28px;
    background-position: 0 0, 14px 14px;
  }
}

/* ---- Integrations marketplace (Personio-style layout) -------- */
.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;
}

.tgc-marketplace-section {
  padding-top: clamp(48px, 6vw, 72px);
  overflow-x: visible;
}

.tgc-marketplace-section > .container {
  overflow-x: visible;
}

.tgc-marketplace {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
  width: 100%;
  min-width: 0;
}

.tgc-market-main {
  min-width: 0;
  max-width: 100%;
}

.tgc-market-sidebar {
  position: sticky;
  top: 88px;
  align-self: start;
}

.tgc-market-sidebar-head { margin-bottom: 22px; }

.tgc-market-count {
  margin: 12px 0 0;
  font-family: var(--font-family--ibm-plex-mono);
  font-size: 12px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--tgc-muted-2);
}

.tgc-market-nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.tgc-market-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  padding: 11px 14px;
  border: 1px solid transparent;
  border-radius: 12px;
  background: transparent;
  color: var(--tgc-muted);
  font-family: var(--font-family--inter-tight);
  font-size: 15px;
  text-align: left;
  cursor: pointer;
  transition: background .2s, border-color .2s, color .2s;
}

.tgc-market-nav-link:hover {
  background: var(--tgc-surface);
  border-color: var(--tgc-line);
  color: #fff;
}

.tgc-market-nav-link.is-active {
  background: var(--tgc-surface);
  border-color: var(--tgc-accent);
  color: #fff;
}

.tgc-market-nav-badge {
  flex: 0 0 auto;
  min-width: 26px;
  padding: 2px 8px;
  border-radius: 999px;
  background: #ffffff12;
  font-family: var(--font-family--ibm-plex-mono);
  font-size: 11px;
  letter-spacing: .5px;
  color: var(--tgc-muted-2);
  text-align: center;
}

.tgc-market-nav-link.is-active .tgc-market-nav-badge {
  background: #8534F326;
  color: var(--tgc-accent);
}

.tgc-market-toolbar { margin-bottom: 36px; }

.tgc-market-search {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  max-width: 520px;
  padding: 0 18px;
  border: 1px solid var(--tgc-line);
  border-radius: 999px;
  background: var(--tgc-surface);
  transition: border-color .2s;
}

.tgc-market-search:focus-within { border-color: var(--tgc-accent); }

.tgc-market-search-icon {
  display: inline-flex;
  color: var(--tgc-muted-2);
  flex: 0 0 auto;
}

.tgc-market-search-input {
  flex: 1;
  min-width: 0;
  padding: 14px 0;
  border: 0;
  background: transparent;
  color: #fff;
  font-family: var(--font-family--inter-tight);
  font-size: 15px;
  outline: none;
}

.tgc-market-search-input::placeholder { color: var(--tgc-muted-2); }

.tgc-market-group { margin-bottom: clamp(40px, 5vw, 64px); }
.tgc-market-group:last-child { margin-bottom: 0; }

.tgc-market-group-head { margin-bottom: 22px; }

.tgc-market-group-head .h3-heading {
  margin: 0 0 8px;
  font-size: clamp(22px, 2.4vw, 28px);
}

.tgc-market-group-desc {
  margin: 0;
  color: var(--tgc-muted);
  font-size: 15px;
  line-height: 150%;
  max-width: 640px;
}

.tgc-int-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 260px), 1fr));
  gap: 16px;
  min-width: 0;
  width: 100%;
}

.tgc-int-card {
  display: flex;
  flex-direction: column;
  gap: 0;
  min-height: 100%;
  min-width: 0;
  max-width: 100%;
  box-sizing: border-box;
  padding: 22px;
  border: 1px solid var(--tgc-line);
  border-radius: 18px;
  background: var(--tgc-surface);
  transition: border-color .2s, transform .2s, opacity .2s;
}

.tgc-int-card:hover {
  border-color: var(--tgc-accent);
  transform: translateY(-3px);
}

.tgc-int-card.is-hidden { display: none; }

.tgc-int-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
  min-width: 0;
}

.tgc-int-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  padding: 8px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid #ffffff1f;
  flex: 0 0 auto;
}

.tgc-int-logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.tgc-int-logo.is-wide {
  width: 118px;
  height: 40px;
  padding: 4px 8px;
}

.tgc-int-badge {
  font-family: var(--font-family--ibm-plex-mono);
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #6ee7a8;
  background: #6ee7a814;
  border: 1px solid #6ee7a833;
  padding: 4px 8px;
  border-radius: 999px;
}

.tgc-int-card h3 {
  font-family: var(--font-family--inter-tight);
  font-size: 20px;
  font-weight: 400;
  margin: 0 0 8px;
  color: #fff;
}

.tgc-int-card p {
  margin: 0;
  color: var(--tgc-muted);
  font-size: 14px;
  line-height: 150%;
  flex: 1;
}

.tgc-int-meta {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid var(--tgc-line);
}

.tgc-int-category {
  font-family: var(--font-family--ibm-plex-mono);
  font-size: 11px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--tgc-muted-2);
}

.tgc-market-group.is-hidden { display: none; }

.tgc-market-empty {
  margin: 48px 0 0;
  padding: 32px;
  text-align: center;
  color: var(--tgc-muted);
  border: 1px dashed var(--tgc-line);
  border-radius: 16px;
}

@media (max-width: 991px) {
  .tgc-marketplace { grid-template-columns: 1fr; gap: 28px; }

  .tgc-market-sidebar {
    position: static;
    top: auto;
    min-width: 0;
    max-width: 100%;
  }

  .tgc-market-nav {
    flex-direction: row;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 8px;
    padding-bottom: 6px;
    max-width: 100%;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .tgc-market-nav::-webkit-scrollbar { display: none; }

  .tgc-market-nav-link {
    flex: 0 0 auto;
    white-space: nowrap;
    padding: 10px 16px;
  }
}

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

  .tgc-int-card-top {
    flex-wrap: wrap;
  }

  .tgc-int-logo.is-wide {
    width: min(118px, 72%);
    height: 36px;
  }

  .tgc-int-badge {
    margin-left: auto;
  }
}

/* ---- Digital business card ---------------------------------- */
.tgc-card-body {
  min-height: 100dvh;
  min-height: 100vh;
}

.tgc-card-main {
  min-height: 100dvh;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: env(safe-area-inset-top) env(safe-area-inset-right) env(safe-area-inset-bottom) env(safe-area-inset-left);
}

.tgc-dbc {
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  padding: 24px 20px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.tgc-dbc-logo img {
  height: 32px;
  width: auto;
  opacity: 0.9;
}

.tgc-dbc-card {
  width: 100%;
  background: var(--tgc-surface);
  border: 1px solid var(--tgc-line);
  border-radius: 24px;
  overflow: hidden;
}

.tgc-dbc-photo {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--tgc-surface-2);
}

.tgc-dbc-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(100%) contrast(1.04);
}

.tgc-dbc-body {
  padding: 28px 24px 32px;
}

.tgc-dbc-role {
  font-family: var(--font-family--ibm-plex-mono);
  color: var(--tgc-accent);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 12px;
}

.tgc-dbc-name {
  font-family: var(--font-family--inter-tight);
  font-size: clamp(28px, 6vw, 34px);
  font-weight: 400;
  line-height: 1.1;
  margin: 10px 0 6px;
  color: #fff;
}

.tgc-dbc-company {
  font-size: 15px;
  color: var(--tgc-muted-2);
  margin-bottom: 24px;
}

.tgc-dbc-details {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 28px;
}

.tgc-dbc-detail {
  display: block;
  padding: 14px 0;
  border-top: 1px solid var(--tgc-line);
  text-decoration: none;
  color: inherit;
  transition: color 0.2s ease;
}

.tgc-dbc-detail:first-child {
  border-top: none;
  padding-top: 0;
}

.tgc-dbc-detail:active {
  color: var(--tgc-accent);
}

.tgc-dbc-detail-label {
  display: block;
  font-family: var(--font-family--ibm-plex-mono);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-size: 10px;
  color: var(--tgc-accent);
  margin-bottom: 4px;
}

.tgc-dbc-detail-value {
  display: block;
  font-size: 16px;
  line-height: 1.45;
  color: #fff;
}

.tgc-dbc-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.tgc-dbc-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 20px;
  border-radius: 14px;
  font-family: var(--font-family--inter-tight);
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  text-align: center;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}

.tgc-dbc-btn-primary {
  background: var(--tgc-boost);
  color: #fff;
  border: 1px solid var(--tgc-boost);
}

.tgc-dbc-btn-primary:active {
  background: var(--tgc-orange-4);
  border-color: var(--tgc-orange-4);
}

.tgc-dbc-btn-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.tgc-dbc-btn-secondary {
  background: transparent;
  color: #fff;
  border: 1px solid var(--tgc-line-2);
}

.tgc-dbc-btn-secondary:active {
  border-color: var(--tgc-accent);
  color: var(--tgc-accent);
}

.tgc-dbc-website {
  font-family: var(--font-family--ibm-plex-mono);
  font-size: 12px;
  letter-spacing: 0.5px;
  color: var(--tgc-muted-2);
  text-decoration: none;
}

.tgc-dbc-website:active {
  color: var(--tgc-accent);
}

@media (min-width: 480px) {
  .tgc-dbc {
    padding: 40px 24px 48px;
  }

  .tgc-dbc-photo {
    aspect-ratio: 4/3;
  }

  .tgc-dbc-btn-primary:hover {
    background: var(--tgc-orange-4);
    border-color: var(--tgc-orange-4);
  }

  .tgc-dbc-btn-secondary:hover {
    border-color: var(--tgc-accent);
    color: var(--tgc-accent);
  }

  .tgc-dbc-detail:hover {
    color: var(--tgc-accent);
  }

  .tgc-dbc-website:hover {
    color: var(--tgc-accent);
  }
}
