/* PacketFive brand palette */
:root {
  --pf-violet:   #5a67d8;
  --pf-indigo:   #434190;
  --pf-periwinkle: #ebf4ff;
  --pf-dark:     #ffffff;
  --pf-surface:  #f8fafc;
  --pf-text:     #1e293b;
  --pf-muted:    #64748b;
  --pf-border:   #e2e8f0;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  background: var(--pf-dark);
  color: var(--pf-text);
  line-height: 1.6;
  min-height: 100vh;
}

/* ── Typography ─────────────────────────────────────────── */
h1, h2, h3, h4, h5 { font-weight: 700; line-height: 1.15; }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.5rem); }
h3 { font-size: 1.25rem; }
p  { color: var(--pf-muted); line-height: 1.7; }
a  { color: var(--pf-violet); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ── Layout helpers ─────────────────────────────────────── */
.container { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5rem 0; }
.section--alt { background: var(--pf-surface); }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }

/* ── Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: .65rem 1.5rem;
  border-radius: 6px;
  font-size: .95rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform .15s, box-shadow .15s;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(120,127,246,.35); text-decoration: none; }
.btn-primary  { background: var(--pf-violet); color: #fff; }
.btn-outline  { background: transparent; color: var(--pf-violet); border-color: var(--pf-violet); }
.btn-indigo   { background: var(--pf-indigo); color: #fff; }

/* ── Navigation ─────────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--pf-border);
}
.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.nav__brand {
  display: flex;
  align-items: center;
  line-height: 1;
}
.nav__brand img { display: block; }
.nav__links { display: flex; gap: 2rem; align-items: center; list-style: none; }
.nav__links a { color: var(--pf-muted); font-size: .93rem; }
.nav__links a:hover { color: var(--pf-text); text-decoration: none; }
.nav__links .active { color: var(--pf-violet) !important; }
.nav__ext {
  color: var(--pf-violet) !important;
  font-weight: 600;
  padding: .3rem .7rem;
  border: 1px solid var(--pf-border);
  border-radius: 999px;
  background: var(--pf-periwinkle);
  transition: background .15s, border-color .15s;
}
.nav__ext:hover {
  background: var(--pf-violet);
  border-color: var(--pf-violet);
  color: #fff !important;
  text-decoration: none;
}
.nav__cta { margin-left: 1rem; }

/* ── Hero ───────────────────────────────────────────────── */
.hero {
  position: relative; overflow: hidden;
  padding: 8rem 0 7rem;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 60%, #f8fafc 100%);
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 65% 40%, rgba(90,103,216,.15) 0%, transparent 70%);
  pointer-events: none;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr; /* Narrower terminal side */
  align-items: center;
  gap: 3rem;
  position: relative;
  z-index: 2;
}
.hero__specialization {
  font-family: 'Open Sans', system-ui, sans-serif;
  font-size: clamp(1.15rem, 1.6vw, 1.55rem);
  font-weight: 700;
  letter-spacing: .01em;
  color: var(--pf-violet);
  margin: 0 0 2rem 0;
  line-height: 1.3;
}
.hero__headline { margin-bottom: 1.25rem; }
.hero__headline em { font-style: normal; color: var(--pf-violet); display: block; margin-bottom: .6rem; }
.hero__headline-line { display: block; }
.hero__sub { font-size: 1.15rem; max-width: 560px; margin-bottom: 2.5rem; }
.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero__terminal {
  background: #1e1e1e;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 30px 60px -12px rgba(0,0,0,0.25), 0 18px 36px -18px rgba(0,0,0,0.3);
  border: 1px solid rgba(255,255,255,0.05);
  transform: perspective(1000px) rotateY(-5deg);
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  width: 95%; /* Narrower width */
  margin-left: auto;
}
.hero__terminal:hover {
  transform: perspective(1000px) rotateY(0deg) translateY(-5px);
}

.terminal__bar {
  background: #2d2d2d;
  padding: 0.6rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.terminal__dot { width: 10px; height: 10px; border-radius: 50%; }
.terminal__dot--red    { background: #ff5f56; }
.terminal__dot--yellow { background: #ffbd2e; }
.terminal__dot--green  { background: #27c93f; }
.terminal__title {
  color: #888; font-size: 0.7rem; font-family: "JetBrains Mono", monospace;
  margin-left: 0.5rem; letter-spacing: 0.05em; opacity: 0.8;
}

.terminal__code {
  padding: 1.25rem 1.5rem;
  margin: 0;
  color: #4ade80; /* Monochrome green */
  background: #0c0c0c;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.8rem;
  line-height: 1.6;
  overflow: hidden;
  text-shadow: 0 0 8px rgba(74, 222, 128, 0.3);
  max-height: 400px; /* 25% height increase */
}

/* Verilog highlighting tokens */
.v-kw { color: #5eead4; font-weight: 700; } /* teal keywords */
.v-comment { color: #64748b; font-style: italic; }
.v-mod { color: #fef08a; } /* yellowish module names */
.v-num { color: #fb7185; } /* reddish numbers */


@media (max-width: 1024px) {
  .hero { padding: 5rem 0 4rem; }
  .hero__grid { grid-template-columns: 1fr; gap: 3rem; text-align: center; }
  .hero__sub { margin: 0 auto 2.5rem; }
  .hero__actions { justify-content: center; }
  .hero__terminal { transform: none; max-width: 600px; margin: 0 auto; }
  .hero__terminal:hover { transform: translateY(-5px); }
}

/* ── TORUS demo hero map (movable) ───────────────────────── */
.hero__grid--torus { grid-template-columns: 1.05fr 0.95fr; }
.hero__map {
  margin: 0;
  background: #10160F;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 30px 60px -12px rgba(0,0,0,0.35), 0 18px 36px -18px rgba(0,0,0,0.4);
  border: 1px solid rgba(255,255,255,0.06);
  transform: perspective(1000px) rotateY(-5deg);
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  width: 100%;
}
.hero__map:hover {
  transform: perspective(1000px) rotateY(0deg) translateY(-5px);
}
.hero__map-bar {
  background: #1a221a;
  padding: 0.6rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.hero__map img { display: block; width: 100%; height: auto; background: #10160F; }
.hero__map figcaption {
  padding: 0.7rem 1rem;
  background: #0c110b;
  color: #7f8a78;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.72rem;
  letter-spacing: 0.03em;
}

@media (max-width: 1024px) {
  .hero__grid--torus { grid-template-columns: 1fr; }
  .hero__map { transform: none; max-width: 600px; margin: 0 auto; }
  .hero__map:hover { transform: translateY(-5px); }
}

/* ── Cards ───────────────────────────────────────────────── */
.card {
  background: var(--pf-surface);
  border: 1px solid var(--pf-border);
  border-radius: 12px;
  padding: 1.75rem;
}
.card__icon { font-size: 2rem; margin-bottom: .75rem; }
.card h3    { margin-bottom: .5rem; }
.card p     { font-size: .9rem; }

/* ── Software component grid ─────────────────────────────── */
.swgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.swcard {
  background: var(--pf-surface);
  border: 1px solid var(--pf-border);
  border-radius: 10px;
  padding: 1.1rem 1.25rem;
}
.swcard__name { font-weight: 800; color: var(--pf-text); font-size: 1rem; font-family: 'Open Sans', system-ui, sans-serif; }
.swcard p { font-size: .82rem; margin: .5rem 0 .75rem; line-height: 1.55; }
@media (max-width: 900px) { .swgrid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .swgrid { grid-template-columns: 1fr; } }

/* ── Tags / badges ──────────────────────────────────────── */
.tag {
  display: inline-block;
  padding: .2rem .65rem;
  border-radius: 4px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .05em;
  background: rgba(90,103,216,.1);
  color: var(--pf-violet);
  margin-right: .35rem;
  margin-bottom: .35rem;
}

/* ── Product highlight ──────────────────────────────────── */
.product-hero {
  background: linear-gradient(135deg, var(--pf-surface) 0%, #e2e8f0 100%);
  border: 1px solid var(--pf-border);
  border-radius: 16px;
  padding: 2.5rem;
}
.product-hero__name {
  font-size: 2rem; font-weight: 900; color: var(--pf-violet); letter-spacing: .08em;
}
.product-hero__sub {
  font-size: .85rem; color: var(--pf-muted); text-transform: uppercase; letter-spacing: .12em;
  margin-top: .2rem;
}

/* ── Stat bar ───────────────────────────────────────────── */
.stat-row { 
  display: flex; 
  justify-content: center; 
  gap: 5rem; 
  flex-wrap: wrap; 
  padding: 2.5rem 0; 
}
.stat { text-align: center; }
.stat__val { font-size: 2.5rem; font-weight: 900; color: var(--pf-violet); }
.stat__lbl { font-size: .8rem; color: var(--pf-muted); text-transform: uppercase; letter-spacing: .08em; }

/* ── Section heading ────────────────────────────────────── */
.section-heading { margin-bottom: 3rem; text-align: center; }
.section-heading p { max-width: 580px; margin: .75rem auto 0; }

/* ── Feature list ───────────────────────────────────────── */
.feature-list { list-style: none; }
.feature-list li { padding: .5rem 0; color: var(--pf-muted); font-size: .95rem; }
.feature-list li::before { content: "✦ "; color: var(--pf-violet); }

/* ── Contact form ───────────────────────────────────────── */
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: .85rem; font-weight: 600; margin-bottom: .4rem; color: var(--pf-muted); }
.form-group input, .form-group textarea {
  width: 100%; padding: .7rem 1rem;
  background: var(--pf-surface);
  border: 1px solid var(--pf-border);
  border-radius: 6px;
  color: var(--pf-text); font-size: .95rem;
}
.form-group input:focus, .form-group textarea:focus {
  outline: none; border-color: var(--pf-violet);
}
.form-group textarea { min-height: 130px; resize: vertical; }

/* ── Footer ─────────────────────────────────────────────── */
.footer {
  background: var(--pf-surface);
  border-top: 1px solid var(--pf-border);
  padding: 3rem 0 2rem;
  font-size: .85rem;
  color: var(--pf-muted);
}
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 2rem; margin-bottom: 2rem; }
.footer__brand h3  { font-size: 1.25rem; color: var(--pf-violet); margin-bottom: .5rem; }
.footer__col h4    { font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 1rem; color: var(--pf-text); }
.footer__col ul    { list-style: none; display: flex; flex-direction: column; gap: .55rem; }
.footer__col ul a  { color: var(--pf-muted); }
.footer__col ul a:hover { color: var(--pf-violet); text-decoration: none; }
.footer__bottom { border-top: 1px solid var(--pf-border); padding-top: 1.25rem; display: flex; justify-content: space-between; flex-wrap: wrap; gap: .5rem; }
.social-links { display: flex; gap: 1rem; }
.social-links a { color: var(--pf-muted); }
.social-links a:hover { color: var(--pf-violet); }

/* ── Focus areas grid (three programmes) ────────────────── */
.focus-grid .card { display: flex; flex-direction: column; }
.focus-grid .card h3 { font-size: 1.08rem; line-height: 1.35; }
.focus-grid .card > div:last-child { margin-top: auto; }
.focus-grid .card__icon { min-height: 2.75rem; display: flex; align-items: center; }
@media (max-width: 1100px) and (min-width: 769px) {
  .focus-grid { grid-template-columns: 1fr 1fr; }
}

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 768px) {
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .footer__grid    { grid-template-columns: 1fr; }
  .nav__links      { display: none; }
}

/* ── Rack icon (Cnuas) ──────────────────────────────────── */
.rack-icon { color: var(--pf-violet); margin-bottom: .75rem; display: block; }

/* ── Cnuas rack figure ──────────────────────────────────── */
.cnuas-rack {
  background: var(--pf-surface);
  border: 1px solid var(--pf-border);
  border-radius: 16px;
  padding: 1.5rem;
  text-align: center;
}
.cnuas-rack img { max-width: 320px; width: 100%; height: auto; }
.cnuas-rack__caption { color: var(--pf-muted); font-size: .78rem; margin-top: .75rem; letter-spacing: .04em; }

/* ── Cnuas floating 3D rack ─────────────────────────────── */
.rack3d {
  --w: 150px; --h: 270px; --d: 100px;
  width: 260px; height: 340px;
  margin: 0 auto;
  perspective: 900px;
  perspective-origin: 50% 42%;
}
.rack3d__stage {
  position: relative;
  width: 100%; height: 100%;
  transform-style: preserve-3d;
  display: flex; align-items: center; justify-content: center;
}
.rack3d__float {
  position: relative;
  transform-style: preserve-3d;
  animation: rack-float 6s ease-in-out infinite;
}
.rack3d__spin {
  transform-style: preserve-3d;
  transform: rotateX(-14deg);
  animation: rack-spin 26s linear infinite;
}
.rack3d__cabinet {
  position: relative;
  width: var(--w); height: var(--h);
  transform-style: preserve-3d;
}
.rack3d__face {
  position: absolute;
  top: 50%; left: 50%;
  border-radius: 6px;
}
.rack3d__face--front {
  width: var(--w); height: var(--h);
  transform: translate(-50%, -50%) translateZ(calc(var(--d) / 2));
  background: linear-gradient(155deg, #232a3a 0%, #161b27 60%, #0f1420 100%);
  border: 1px solid #0a0e16;
  box-shadow: inset 0 0 0 3px rgba(90,103,216,.08);
  padding: 8px 8px;
  display: flex; flex-direction: column; gap: 5px;
  overflow: hidden;
}
.rack3d__face--back {
  width: var(--w); height: var(--h);
  transform: translate(-50%, -50%) rotateY(180deg) translateZ(calc(var(--d) / 2));
  background: linear-gradient(155deg, #10141d, #0a0d13);
  border: 1px solid #06080d;
}
.rack3d__face--right {
  width: var(--d); height: var(--h);
  transform: translate(-50%, -50%) rotateY(90deg) translateZ(calc(var(--w) / 2));
  background: linear-gradient(180deg, #191e2a, #0c1017);
  border: 1px solid #06080d;
}
.rack3d__face--left {
  width: var(--d); height: var(--h);
  transform: translate(-50%, -50%) rotateY(-90deg) translateZ(calc(var(--w) / 2));
  background: linear-gradient(180deg, #1d2330, #0d111a);
  border: 1px solid #06080d;
}
.rack3d__face--top {
  width: var(--w); height: var(--d);
  transform: translate(-50%, -50%) rotateX(90deg) translateZ(calc(var(--h) / 2));
  background: linear-gradient(135deg, #2a3145, #1a2030);
  border: 1px solid #06080d;
}
.rack3d__face--bottom {
  width: var(--w); height: var(--d);
  transform: translate(-50%, -50%) rotateX(-90deg) translateZ(calc(var(--h) / 2));
  background: #070a10;
}
/* rack units on the front face */
.rack3d__u {
  flex: 1;
  display: flex; align-items: center; gap: 6px;
  padding: 0 6px;
  border-radius: 3px;
  background: linear-gradient(180deg, #2b3346, #1b2130);
  border: 1px solid #0b0f18;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.04);
}
.rack3d__u--switch { background: linear-gradient(180deg, #22304d, #14203a); }
.rack3d__u--link   { background: linear-gradient(180deg, #33223a, #23142b); }
.rack3d__u--psu    { flex: .7; background: linear-gradient(180deg, #20252f, #12161d); }
.rack3d__label {
  font-family: var(--mono, ui-monospace, SFMono-Regular, Menlo, monospace);
  font-size: 8px; letter-spacing: .05em;
  color: #6b7689; font-weight: 600;
}
.rack3d__leds { margin-left: auto; display: flex; gap: 4px; }
.led {
  width: 5px; height: 5px; border-radius: 50%;
  display: inline-block;
  background: #3a4152;
  animation: led-blink 2.6s ease-in-out infinite;
}
.led--green { background: #22c55e; box-shadow: 0 0 5px #22c55e; }
.led--blue  { background: #3b82f6; box-shadow: 0 0 5px #3b82f6; }
.led--pink  { background: #ec4899; box-shadow: 0 0 5px #ec4899; }
.rack3d__u:nth-child(2) .led { animation-delay: .2s; }
.rack3d__u:nth-child(3) .led { animation-delay: .5s; }
.rack3d__u:nth-child(4) .led { animation-delay: .9s; }
.rack3d__u:nth-child(5) .led { animation-delay: 1.3s; }
.rack3d__u:nth-child(6) .led { animation-delay: 1.6s; }
.rack3d__u:nth-child(7) .led { animation-delay: 2s; }
.rack3d__u .led:nth-child(2) { animation-delay: .7s; }
.rack3d__u .led:nth-child(3) { animation-delay: 1.1s; }
.rack3d__u .led:nth-child(4) { animation-delay: 1.5s; }
/* vertical data-flow sweep on the front face */
.rack3d__flow {
  position: absolute; inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg,
    transparent 0%, rgba(90,103,216,.0) 42%,
    rgba(120,150,255,.35) 50%, rgba(90,103,216,.0) 58%, transparent 100%);
  background-size: 100% 220%;
  animation: rack-flow 3.4s linear infinite;
  mix-blend-mode: screen;
}
/* orbiting particles */
.rack3d__orbit {
  position: absolute; top: 50%; left: 50%;
  width: 0; height: 0;
  transform-style: preserve-3d;
}
.rack3d__orbit i {
  position: absolute;
  width: 8px; height: 8px; border-radius: 50%;
  background: #7c8cff;
  box-shadow: 0 0 10px 2px rgba(124,140,255,.8);
  transform: translateX(150px);
}
.rack3d__orbit--1 { transform: rotateX(-14deg); animation: orbit-spin 9s linear infinite; }
.rack3d__orbit--2 { transform: rotateX(-14deg) rotateY(60deg) rotateZ(70deg); animation: orbit-spin 13s linear infinite reverse; }
.rack3d__orbit--2 i { background: #4dc3ff; box-shadow: 0 0 10px 2px rgba(77,195,255,.8); transform: translateX(170px); }
.rack3d__orbit--3 { transform: rotateX(-14deg) rotateY(-40deg) rotateZ(-60deg); animation: orbit-spin 17s linear infinite; }
.rack3d__orbit--3 i { width: 6px; height: 6px; background: #ec4899; box-shadow: 0 0 9px 2px rgba(236,72,153,.75); transform: translateX(135px); }
/* floor glow */
.rack3d__shadow {
  position: absolute; left: 50%; bottom: 22px;
  width: 190px; height: 34px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center, rgba(90,103,216,.28), rgba(90,103,216,0) 70%);
  filter: blur(2px);
  animation: rack-shadow 6s ease-in-out infinite;
}
@keyframes rack-spin { to { transform: rotateX(-14deg) rotateY(360deg); } }
@keyframes rack-float { 0%,100% { transform: translateY(-8px); } 50% { transform: translateY(10px); } }
@keyframes rack-shadow { 0%,100% { opacity: .55; transform: translateX(-50%) scale(1); } 50% { opacity: .8; transform: translateX(-50%) scale(1.08); } }
@keyframes orbit-spin { to { transform: rotateX(-14deg) rotateY(360deg); } }
.rack3d__orbit--2 { animation-name: orbit-spin-2; }
.rack3d__orbit--3 { animation-name: orbit-spin-3; }
@keyframes orbit-spin-2 { from { transform: rotateX(-14deg) rotateY(60deg) rotateZ(70deg); } to { transform: rotateX(-14deg) rotateY(420deg) rotateZ(70deg); } }
@keyframes orbit-spin-3 { from { transform: rotateX(-14deg) rotateY(-40deg) rotateZ(-60deg); } to { transform: rotateX(-14deg) rotateY(320deg) rotateZ(-60deg); } }
@keyframes led-blink { 0%,100% { opacity: .35; } 45% { opacity: 1; } 55% { opacity: 1; } }
@keyframes rack-flow { 0% { background-position: 0 -110%; } 100% { background-position: 0 110%; } }
@media (prefers-reduced-motion: reduce) {
  .rack3d__float, .rack3d__spin, .rack3d__orbit,
  .rack3d__flow, .rack3d__shadow, .led {
    animation: none !important;
  }
  .rack3d__spin { transform: rotateX(-16deg) rotateY(-28deg); }
  .led { opacity: .9; }
}

/* ── Cnuas rack + terminal showcase ─────────────────────── */
.cnuas-showcase {
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}
.cnuas-showcase .hero__terminal { max-width: 560px; }
@media (max-width: 860px) {
  .cnuas-showcase { grid-template-columns: 1fr; gap: 2rem; justify-items: center; }
  .cnuas-showcase .hero__terminal { max-width: 100%; }
}

/* ── Cnuas CLI terminal tokens (reuses .terminal__*) ────── */
.c-prompt { color: #5eead4; font-weight: 700; }
.c-cmd    { color: #e2e8f0; }
.c-out    { color: #64748b; }
.c-ok     { color: #4ade80; font-weight: 700; }
.c-key    { color: #fef08a; }

/* ── Programmability split (CLI + API) ──────────────────── */
.prog-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: start; }
@media (max-width: 900px) { .prog-grid { grid-template-columns: 1fr; } }

/* ── Built-on technology tiles (Cnuas) ──────────────────── */
.techlogos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  max-width: 900px;
  margin: 0 auto;
}
.techlogo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: 1.75rem 1rem;
  background: #fff;
  border: 1px solid var(--pf-border);
  border-radius: 12px;
  text-align: center;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.techlogo:hover {
  transform: translateY(-4px);
  border-color: var(--pf-violet);
  box-shadow: 0 12px 28px -14px rgba(90,103,216,.45);
  text-decoration: none;
}
.techlogo__mark {
  font-family: 'Open Sans', system-ui, sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: .01em;
  color: var(--pf-text);
  line-height: 1.2;
  min-height: 56px;
  display: flex;
  align-items: center;
}
.techlogo__img { max-height: 48px; max-width: 140px; width: auto; height: auto; object-fit: contain; }
.techlogo__img--wide { max-width: 150px; }
.techlogo__role { font-size: .78rem; color: var(--pf-muted); line-height: 1.35; }
@media (max-width: 820px) { .techlogos { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px) { .techlogos { grid-template-columns: 1fr; } }
