:root {
  --bg: #ffffff;
  --surface: #ffffff;
  --surface-solid: #ffffff;
  --text: #07131d;
  --muted: #60717e;
  --line: rgba(7, 19, 29, 0.12);
  --cyan: #146ef5;
  --cyan-bright: #4c92ff;
  --blue: #0a55cc;
  --green: #00b578;
  --shadow: 0 24px 70px rgba(40, 89, 115, 0.13);
  --mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  --sans: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--cyan) #e8f4f9;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 15%, rgba(0, 202, 255, .14), transparent 24%),
    radial-gradient(circle at 92% 10%, rgba(62, 106, 255, .12), transparent 25%),
    var(--bg);
  font-family: var(--sans);
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }

.noise {
  position: fixed;
  inset: 0;
  z-index: 20;
  pointer-events: none;
  opacity: .025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.9'/%3E%3C/svg%3E");
}

.cursor-glow {
  position: fixed;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(0, 201, 255, .11), transparent 68%);
  pointer-events: none;
  z-index: 0;
}

#matrixCanvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: .06;
  pointer-events: none;
  z-index: 0;
}

.nav {
  width: min(1200px, calc(100% - 40px));
  height: 78px;
  position: fixed;
  z-index: 30;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  border: 1px solid rgba(255,255,255,.8);
  background: rgba(248,253,255,.75);
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 40px rgba(30, 91, 120, .08);
  border-radius: 18px;
}

.brand {
  display: flex;
  gap: 10px;
  align-items: center;
  font-weight: 800;
  letter-spacing: -.04em;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(0, 169, 214, .25);
  background: linear-gradient(145deg, #fff, #e8faff);
  border-radius: 11px;
  color: var(--cyan);
  font-family: var(--mono);
  font-size: 14px;
  box-shadow: inset 0 0 18px rgba(0, 196, 255, .08);
}

.brand-muted { color: var(--cyan); }

.nav nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14px;
  font-weight: 600;
}

.nav nav a { transition: color .25s ease; }
.nav nav a:hover { color: var(--cyan); }

.nav-cta {
  padding: 12px 17px;
  color: white !important;
  background: var(--text);
  border-radius: 10px;
}

.hero {
  min-height: 100svh;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  align-items: center;
  gap: 70px;
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
  padding: 150px 0 90px;
}

.hero-grid {
  position: absolute;
  inset: 95px -150px 0;
  z-index: -2;
  mask-image: linear-gradient(to bottom, black, transparent 86%);
  background-image:
    linear-gradient(rgba(0, 150, 190, .08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 150, 190, .08) 1px, transparent 1px);
  background-size: 44px 44px;
  transform: perspective(700px) rotateX(57deg) translateY(180px);
  transform-origin: center bottom;
}

.orb {
  position: absolute;
  z-index: -3;
  border-radius: 50%;
  filter: blur(4px);
  animation: float 7s ease-in-out infinite;
}

.orb-one {
  width: 340px;
  height: 340px;
  top: 15%;
  right: 13%;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,.8), rgba(19,216,255,.14), transparent 70%);
}

.orb-two {
  width: 220px;
  height: 220px;
  bottom: 8%;
  left: 5%;
  background: radial-gradient(circle, rgba(56,107,255,.14), transparent 68%);
  animation-delay: -2s;
}

.status-pill {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  padding: 9px 12px;
  border: 1px solid rgba(0,181,120,.18);
  background: rgba(255,255,255,.65);
  border-radius: 999px;
  color: #18795a;
  font: 600 11px var(--mono);
  letter-spacing: .08em;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 6px rgba(0,181,120,.1), 0 0 16px rgba(0,181,120,.7);
  animation: pulse 2s infinite;
}

.eyebrow {
  margin: 28px 0 16px;
  color: var(--cyan);
  font: 600 12px var(--mono);
  letter-spacing: .16em;
}

h1, h2, h3, p { margin-top: 0; }

h1 {
  max-width: 780px;
  margin-bottom: 24px;
  font-size: clamp(48px, 6.1vw, 86px);
  line-height: .98;
  letter-spacing: -.072em;
}

.glitch {
  position: relative;
  display: inline-block;
  color: transparent;
  -webkit-text-stroke: 1px rgba(0, 120, 165, .65);
  background: linear-gradient(90deg, var(--cyan), var(--blue));
  -webkit-background-clip: text;
  background-clip: text;
}

.glitch::before,
.glitch::after {
  content: attr(data-text);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  overflow: hidden;
  opacity: .38;
  pointer-events: none;
}

.glitch::before {
  color: var(--cyan-bright);
  transform: translate(2px, -1px);
  clip-path: inset(0 0 57% 0);
  animation: glitch 3.4s infinite steps(1);
}

.glitch::after {
  color: var(--blue);
  transform: translate(-2px, 1px);
  clip-path: inset(58% 0 0 0);
  animation: glitch 2.8s infinite steps(1) reverse;
}

.hero-description {
  max-width: 650px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.72;
}

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

.btn {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 0 20px;
  border: 0;
  border-radius: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

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

.btn-primary {
  color: white;
  background: linear-gradient(115deg, #07131d 0%, #0c2431 75%);
  box-shadow: 0 16px 36px rgba(7, 19, 29, .2);
}

.btn-primary:hover { box-shadow: 0 20px 45px rgba(0, 117, 153, .26); }
.btn-ghost { border: 1px solid var(--line); background: rgba(255,255,255,.55); }
.btn-arrow { color: var(--cyan-bright); font-size: 20px; }

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 43px;
  color: #71828d;
  font: 500 10px var(--mono);
  letter-spacing: .1em;
}

.trust-row span::before {
  content: "●";
  margin-right: 8px;
  color: var(--cyan);
}

.terminal-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.9);
  background: rgba(255,255,255,.68);
  backdrop-filter: blur(18px);
  border-radius: 22px;
  box-shadow: var(--shadow);
  transform: rotate(1.2deg);
}

.terminal-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(110deg, transparent 35%, rgba(255,255,255,.85) 48%, transparent 60%);
  transform: translateX(-120%);
  animation: shine 6s infinite;
}

.terminal-top {
  height: 54px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 18px;
  border-bottom: 1px solid var(--line);
  color: #71818b;
  font: 500 10px var(--mono);
}

.terminal-top > :last-child {
  justify-self: end;
  color: var(--green);
}

.terminal-dots { display: flex; gap: 7px; }
.terminal-dots span { width: 9px; height: 9px; border-radius: 50%; background: #c9d6dc; }
.terminal-dots span:first-child { background: #ff7d7d; }
.terminal-dots span:nth-child(2) { background: #f1c768; }
.terminal-dots span:nth-child(3) { background: #62d7a5; }

.terminal-body {
  min-height: 365px;
  padding: 29px;
  color: #233844;
  font: 500 13px/1.85 var(--mono);
}

.terminal-body p { margin: 0 0 8px; }
.t-cyan { color: var(--cyan); }
.t-green { color: var(--green); }
.t-muted { color: #9bb0ba; }
.typing { margin-top: 24px !important; }
.cursor { animation: blink .8s steps(1) infinite; }

.terminal-meter {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 17px 20px;
  border-top: 1px solid var(--line);
  font: 600 10px var(--mono);
}

.meter {
  height: 5px;
  background: #dcebf0;
  border-radius: 20px;
  overflow: hidden;
}

.meter i {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--cyan), var(--blue));
  animation: load 2s ease;
}

.scroll-indicator {
  position: absolute;
  left: 50%;
  bottom: 26px;
  display: flex;
  gap: 10px;
  align-items: center;
  color: #788b96;
  font: 600 9px var(--mono);
  letter-spacing: .16em;
  writing-mode: vertical-rl;
}

.scroll-indicator i {
  width: 1px;
  height: 38px;
  background: linear-gradient(to bottom, var(--cyan), transparent);
  animation: scroll 1.8s infinite;
}

.marquee {
  position: relative;
  z-index: 2;
  overflow: hidden;
  padding: 17px 0;
  border-block: 1px solid rgba(0,169,214,.13);
  background: rgba(255,255,255,.55);
}

.marquee-track {
  width: max-content;
  display: flex;
  gap: 25px;
  align-items: center;
  animation: marquee 23s linear infinite;
  color: #526d7b;
  font: 600 11px var(--mono);
  letter-spacing: .12em;
}

.marquee-track b { color: var(--cyan); }

.section {
  position: relative;
  z-index: 1;
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
  padding: 120px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 70px;
  align-items: end;
  margin-bottom: 52px;
}

.section-heading .eyebrow { margin-top: 0; }

.section-heading h2 {
  margin-bottom: 0;
  font-size: clamp(38px, 5vw, 65px);
  line-height: 1.03;
  letter-spacing: -.055em;
}

.section-heading > p {
  margin-bottom: 6px;
  color: var(--muted);
  line-height: 1.7;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 17px;
}

.service-card {
  position: relative;
  min-height: 310px;
  overflow: hidden;
  padding: 30px;
  border: 1px solid rgba(7, 19, 29, .1);
  background: rgba(255,255,255,.68);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.service-card:hover {
  transform: translateY(-7px);
  border-color: rgba(0,169,214,.35);
  box-shadow: var(--shadow);
}

.service-card::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  right: -100px;
  bottom: -120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,201,255,.17), transparent 70%);
  transition: transform .4s ease;
}

.service-card:hover::after { transform: scale(1.35); }

.service-index {
  position: absolute;
  right: 24px;
  top: 24px;
  color: #9db0ba;
  font: 500 10px var(--mono);
}

.service-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 52px;
  border: 1px solid rgba(0,169,214,.18);
  background: #f1fbff;
  border-radius: 14px;
  color: var(--cyan);
  font: 600 17px var(--mono);
}

.service-card h3 {
  margin-bottom: 12px;
  font-size: 25px;
  letter-spacing: -.04em;
}

.service-card p {
  max-width: 470px;
  color: var(--muted);
  line-height: 1.65;
}

.card-code {
  margin-top: 25px;
  color: #78909c;
  font: 500 11px var(--mono);
}

.process-section {
  border-top: 1px solid var(--line);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  background: rgba(255,255,255,.45);
  border-radius: 20px;
  overflow: hidden;
}

.process-item {
  min-height: 255px;
  padding: 28px;
  border-right: 1px solid var(--line);
  transition: background .3s ease;
}

.process-item:last-child { border-right: 0; }
.process-item:hover { background: rgba(255,255,255,.92); }

.process-item > span {
  color: var(--cyan);
  font: 600 11px var(--mono);
}

.process-item h3 {
  margin-top: 70px;
  margin-bottom: 13px;
  font-size: 22px;
}

.process-item p {
  color: var(--muted);
  line-height: 1.62;
  font-size: 14px;
}

.contact-section {
  position: relative;
  z-index: 2;
  width: min(1200px, calc(100% - 40px));
  display: grid;
  grid-template-columns: 1fr .86fr;
  gap: 70px;
  margin: 0 auto 80px;
  padding: 78px;
  overflow: hidden;
  color: white;
  background:
    radial-gradient(circle at 18% 0%, rgba(0,216,255,.17), transparent 35%),
    linear-gradient(135deg, #07131d, #0b2634);
  border-radius: 30px;
  box-shadow: 0 35px 90px rgba(7,19,29,.26);
}

.contact-section::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .07;
  background-image:
    linear-gradient(rgba(255,255,255,.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.1) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
}

.contact-bg-code {
  position: absolute;
  left: -20px;
  bottom: 4px;
  color: rgba(255,255,255,.025);
  white-space: nowrap;
  font: 800 58px var(--mono);
  pointer-events: none;
}

.contact-copy,
.contact-form { position: relative; z-index: 2; }

.contact-copy .eyebrow { margin-top: 0; }

.contact-copy h2 {
  margin: 22px 0;
  font-size: clamp(40px, 5vw, 68px);
  line-height: 1.02;
  letter-spacing: -.06em;
}

.contact-copy h2 span { color: var(--cyan-bright); }

.contact-copy > p {
  max-width: 520px;
  color: #a9bec8;
  line-height: 1.7;
}

.contact-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 35px;
}

.contact-badges span {
  padding: 10px 12px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 10px;
  color: #cce0e8;
  font: 500 11px var(--mono);
}

.contact-form {
  padding: 25px;
  border: 1px solid rgba(255,255,255,.13);
  background: rgba(255,255,255,.07);
  backdrop-filter: blur(12px);
  border-radius: 20px;
}

.form-label {
  display: flex;
  justify-content: space-between;
  margin-bottom: 23px;
  color: #9cb6c2;
  font: 500 9px var(--mono);
  letter-spacing: .1em;
}

.encrypted { color: #68dfb4; }

.contact-form label {
  display: block;
  margin-bottom: 17px;
  color: #d6e5eb;
  font-size: 12px;
  font-weight: 600;
}

.contact-form label > span {
  display: block;
  margin-bottom: 8px;
}

.contact-form small {
  color: #7f9ba8;
  font-weight: 400;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  color: white;
  outline: none;
  border: 1px solid rgba(255,255,255,.13);
  background: rgba(0,0,0,.13);
  border-radius: 11px;
  padding: 15px 15px;
  transition: border-color .25s ease, box-shadow .25s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder { color: #6e8995; }

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 4px rgba(0,201,255,.08);
}

.contact-form textarea { resize: vertical; }

.submit-btn {
  width: 100%;
  margin-top: 3px;
  color: #06151d;
  background: linear-gradient(100deg, #63e9ff, #22bde7);
  box-shadow: 0 15px 35px rgba(0,201,255,.16);
}

.submit-btn .btn-arrow { color: #06151d; }
.privacy-note {
  margin: 13px 0 0;
  color: #7896a3;
  text-align: center;
  font: 400 9px var(--mono);
}

footer {
  position: relative;
  z-index: 2;
  width: min(1200px, calc(100% - 40px));
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
  margin: 0 auto;
  padding: 0 0 38px;
  color: #728792;
  font: 500 10px var(--mono);
}

footer > a:last-child { color: var(--cyan); }

.reveal {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity .75s ease, transform .75s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes pulse {
  50% { box-shadow: 0 0 0 10px rgba(0,181,120,0), 0 0 19px rgba(0,181,120,.8); }
}
@keyframes float {
  50% { transform: translateY(-24px) translateX(9px); }
}
@keyframes shine {
  0%, 65% { transform: translateX(-120%); }
  100% { transform: translateX(120%); }
}
@keyframes blink { 50% { opacity: 0; } }
@keyframes load { from { width: 0; } }
@keyframes scroll {
  0% { transform: scaleY(0); transform-origin: top; }
  45% { transform: scaleY(1); transform-origin: top; }
  55% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}
@keyframes marquee { to { transform: translateX(-50%); } }
@keyframes glitch {
  0%, 86%, 100% { transform: translate(0); }
  88% { transform: translate(4px, -2px); }
  90% { transform: translate(-3px, 1px); }
  92% { transform: translate(2px, 2px); }
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 50px;
    padding-top: 150px;
  }
  .terminal-card { max-width: 660px; transform: none; }
  .section-heading { grid-template-columns: 1fr; gap: 25px; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-item:nth-child(2) { border-right: 0; }
  .process-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .contact-section { grid-template-columns: 1fr; padding: 55px; }
}

@media (max-width: 680px) {
  .nav {
    height: 64px;
    top: 10px;
    width: calc(100% - 20px);
    padding: 0 12px;
  }
  .nav nav a:not(.nav-cta) { display: none; }
  .nav-cta { padding: 10px 12px; font-size: 12px; }
  .hero {
    width: calc(100% - 28px);
    padding: 120px 0 75px;
  }
  h1 { font-size: clamp(43px, 14vw, 67px); }
  .hero-description { font-size: 16px; }
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; }
  .trust-row { gap: 12px; }
  .terminal-body { min-height: 330px; padding: 20px; font-size: 11px; }
  .terminal-top { grid-template-columns: 1fr auto; }
  .terminal-top > span:nth-child(2) { display: none; }
  .scroll-indicator { display: none; }
  .section {
    width: calc(100% - 28px);
    padding: 85px 0;
  }
  .service-grid, .process-grid { grid-template-columns: 1fr; }
  .process-item,
  .process-item:nth-child(2) { border-right: 0; border-bottom: 1px solid var(--line); }
  .process-item:last-child { border-bottom: 0; }
  .contact-section {
    width: calc(100% - 20px);
    gap: 42px;
    padding: 42px 18px 18px;
    border-radius: 22px;
  }
  .contact-copy { padding: 0 8px; }
  .contact-copy h2 { font-size: 43px; }
  footer {
    width: calc(100% - 28px);
    flex-direction: column;
    align-items: flex-start;
  }
  .cursor-glow { display: none; }
}

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


/* Sade bağlantı tabanlı referans alanı */
.references-section {
  border-top: 1px solid var(--line);
}

.reference-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-bottom: 28px;
  padding: 15px 18px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 14px;
  color: var(--muted);
  font: 500 11px var(--mono);
}

.reference-count strong {
  color: var(--text);
  font-size: 17px;
}

.reference-note {
  display: flex;
  align-items: center;
  gap: 8px;
}

.reference-note span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 5px rgba(56, 107, 255, .09);
}

.reference-groups {
  display: grid;
  gap: 22px;
}

.reference-group {
  padding: 24px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .86);
  border-radius: 20px;
}

.reference-group-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 18px;
  margin-bottom: 17px;
  padding-bottom: 17px;
  border-bottom: 1px solid var(--line);
}

.reference-group-label {
  display: block;
  margin-bottom: 7px;
  color: var(--blue);
  font: 600 9px var(--mono);
  letter-spacing: .14em;
}

.reference-group-head h3 {
  margin: 0;
  font-size: 22px;
  letter-spacing: -.035em;
}

.reference-group-head > span {
  color: var(--muted);
  font: 500 10px var(--mono);
}

.reference-list {
  display: grid;
}

.reference-list-item {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr) auto;
  align-items: center;
  gap: 17px;
  padding: 18px 4px;
  border-bottom: 1px solid var(--line);
}

.reference-list-item:last-child {
  border-bottom: 0;
}

.reference-list-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(56, 107, 255, .16);
  background: #f3f7ff;
  border-radius: 12px;
  color: var(--blue);
  font: 600 12px var(--mono);
}

.reference-list-content {
  min-width: 0;
}

.reference-title-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.reference-title-row h4 {
  margin: 0;
  font-size: 16px;
  letter-spacing: -.025em;
}

.reference-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #17765a;
  font: 600 8px var(--mono);
  letter-spacing: .08em;
}

.reference-status i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
}

.reference-list-content p {
  margin: 6px 0 4px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.reference-url {
  color: #80909b;
  font: 500 10px var(--mono);
}

.reference-list-link {
  min-width: 135px;
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 12px 14px;
  border: 1px solid rgba(56, 107, 255, .16);
  background: #f7f9ff;
  border-radius: 10px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}

.reference-list-link:hover {
  transform: translateX(3px);
  color: white;
  background: var(--blue);
}

.reference-list-link b {
  font-size: 16px;
}

@media (max-width: 680px) {
  .reference-toolbar,
  .reference-group-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .reference-group {
    padding: 16px;
  }

  .reference-list-item {
    grid-template-columns: 42px minmax(0, 1fr);
  }

  .reference-list-icon {
    width: 42px;
    height: 42px;
  }

  .reference-list-link {
    grid-column: 1 / -1;
    width: 100%;
    margin-top: 2px;
  }

  .reference-title-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }
}
