/* set */
:root {
  --bg:         #0e0e0e;
  --bg2:        #181818;
  --bg3:        #222222;
  --border:     #333333;
  --border2:    #484848;
  --text:       #ffffff;
  --sub:        #e8e4dc;
  --muted:      #ccc8c0;
  --accent:     #6b72d8;
  --accent2:    #535ac8;
  --accent-dim: rgba(107,114,216,.15);
  --mono:       'DM Mono', monospace;
  --sans:       'Noto Sans JP', sans-serif;
  --r:          6px;
}

/* base */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.85;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
a[style*="color:var(--accent)"],
a[style*="color: var(--accent)"] {
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(107,114,216,.5);
  transition: color .15s, text-decoration-color .15s;
}
a[style*="color:var(--accent)"]:hover,
a[style*="color: var(--accent)"]:hover {
  color: #9aa0e8 !important;
  text-decoration-color: rgba(154,160,232,.7);
}
strong { font-weight: 500; }

/* layout */
.site { max-width: 720px; margin: 0 auto; padding: 0 24px; }

/* header */
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0 16px;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background: var(--bg);
  z-index: 100;
  gap: 16px;
}
.logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; cursor: pointer; transition: opacity .15s; }
.logo:hover { opacity: .75; }
.logo-banner { height: 52px; width: auto; max-width: 280px; object-fit: contain; display: block; }
nav { display: flex; gap: 2px; }
nav a {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 400;
  color: var(--sub);
  letter-spacing: .05em;
  padding: 5px 11px;
  border: 1px solid transparent;
  border-radius: var(--r);
  transition: color .15s, border-color .15s, background .15s;
  white-space: nowrap;
}
nav a:hover,
nav a.active { color: var(--text); border-color: var(--border2); background: var(--bg3); }

.page { display: none; padding: 52px 0 80px; }
.page.active { display: block; animation: fadein .2s ease; }
@keyframes fadein { from { opacity: 0; transform: translateY(5px); } to { opacity: 1; transform: none; } }
.page-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .14em;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.page-label::after { content: ''; flex: 1; height: 1px; background: var(--border); }

/* top */
.hero { margin-bottom: 44px; }
.hero-tagline {
  font-size: clamp(24px, 5vw, 38px);
  font-weight: 300;
  line-height: 1.35;
  letter-spacing: -.01em;
  margin-bottom: 18px;
}
.hero-tagline em { font-style: normal; color: var(--accent); }
.hero-sub { color: var(--sub); font-size: 14px; max-width: 440px; line-height: 1.95; }

.works-toggle-wrap { margin-top: 28px; }
.works-toggle-row { display: flex; align-items: flex-start; gap: 10px; }
.works-toggle-col { flex: 1; }

.works-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  color: #fff;
  background: var(--accent);
  padding: 11px 20px;
  border-radius: var(--r);
  letter-spacing: .04em;
  transition: background .15s, border-radius .2s;
  margin-top: 28px;
  border: none;
  cursor: pointer;
}
.works-btn:hover { background: var(--accent2); }
.works-btn.open { border-radius: var(--r) var(--r) 0 0; }
.works-btn .btn-chevron { width: 10px; height: 10px; flex-shrink: 0; transition: transform .25s; }
.works-btn.open .btn-chevron { transform: rotate(180deg); }

.works-panel {
  display: none;
  border: 1px solid var(--accent);
  border-top: none;
  border-radius: 0 0 var(--r) var(--r);
  overflow: hidden;
  background: #000;
}
.works-panel.open { display: block; }
.works-panel iframe { width: 100%; height: 340px; display: block; border: none; }

.contact-toggle-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  background: var(--bg3);
  padding: 13px 20px;
  border-radius: var(--r);
  border: 1px solid var(--accent);
  letter-spacing: .04em;
  transition: color .15s, border-color .15s, background .15s, border-radius .2s;
  margin-top: 18px;
  cursor: pointer;
  width: 100%;
  justify-content: space-between;
}
.contact-toggle-btn:hover { background: var(--accent-dim); border-color: var(--accent); }
.contact-toggle-btn.open { border-radius: var(--r) var(--r) 0 0; border-color: var(--accent); background: var(--accent-dim); }
.contact-toggle-btn .btn-chevron { width: 11px; height: 11px; flex-shrink: 0; transition: transform .25s; color: var(--accent); }
.contact-toggle-btn.open .btn-chevron { transform: rotate(180deg); }

.contact-toggle-panel {
  display: none;
  border: 1px solid var(--accent);
  border-top: none;
  border-radius: 0 0 var(--r) var(--r);
  overflow: hidden;
  background: var(--bg2);
  padding: 16px;
  flex-direction: column;
  gap: 10px;
}
.contact-toggle-panel.open { display: flex; }

.first-time-btn {
  align-self: flex-start;
  margin-top: 28px;
  flex-shrink: 0;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  padding: 11px 16px;
  border-radius: var(--r);
  background: var(--bg3);
  border: 1px solid var(--border2);
  color: var(--sub);
  cursor: pointer;
  transition: color .15s, border-color .15s, background .15s;
}
.first-time-btn:hover { background: var(--bg2); color: var(--text); }
.first-time-btn svg { width: 11px; height: 11px; flex-shrink: 0; }

.spec-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  margin: 44px 0 40px;
  cursor: pointer;
  transition: border-color .15s;
}
.spec-grid:hover { border-color: var(--border2); }
.spec-item { background: var(--bg2); padding: 18px 20px; transition: background .15s; }
.spec-grid:hover .spec-item { background: #1e1e1e; }
.spec-item .key {
  font-size: 11px;
  color: var(--muted);
  display: block;
  margin-bottom: 6px;
  letter-spacing: .05em;
  text-transform: uppercase;
  font-family: var(--mono);
}
.spec-item .val {
  font-family: var(--mono);
  font-size: 18px;
  font-weight: 500;
  color: var(--accent);
  display: block;
}

hr { border: none; border-top: 1px solid var(--border); margin: 32px 0; }

.contact-btns { display: flex; gap: 10px; margin-top: 20px; flex-wrap: wrap; }
.contact-col { flex: 1; display: flex; flex-direction: column; gap: 7px; min-width: 140px; }

.discord-btn, .mail-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  padding: 9px 16px;
  border-radius: var(--r);
  transition: opacity .15s;
  flex: 1;
  justify-content: center;
}
.discord-btn { background: #5865f2; color: #fff; }
.mail-btn { background: rgba(200,80,80,.18); color: #fff; border: 1px solid rgba(200,80,80,.35); }
.discord-btn:hover, .mail-btn:hover { opacity: .75; }
.discord-btn svg, .mail-btn svg { width: 13px; height: 13px; flex-shrink: 0; }

.copy-id-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 400;
  padding: 6px 14px;
  border-radius: var(--r);
  background: var(--bg3);
  border: 1px solid var(--border2);
  color: var(--muted);
  cursor: pointer;
  transition: color .15s, border-color .15s, background .15s;
  width: 100%;
}
.copy-id-btn:hover { background: var(--bg2); border-color: var(--accent); color: var(--text); }
.copy-id-btn svg { width: 11px; height: 11px; flex-shrink: 0; }

.contact-form-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  padding: 28px 16px;
  border-radius: var(--r);
  background: #2a2a2a;
  color: var(--text);
  border: 1px solid #555;
  cursor: pointer;
  transition: opacity .15s;
  width: 100%;
  margin-top: 10px;
}
.contact-form-btn:hover { opacity: .75; }
.contact-form-btn svg { width: 13px; height: 13px; flex-shrink: 0; }

.credit-note {
  margin-top: 22px;
  padding: 14px 16px;
  background: var(--bg3);
  border-radius: var(--r);
  font-size: 13px;
  color: var(--sub);
  line-height: 1.9;
}
.credit-copy-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--text);
  background: var(--bg2);
  border: 1px solid var(--border2);
  border-radius: 4px;
  padding: 2px 8px 2px 6px;
  cursor: pointer;
  transition: border-color .15s, color .15s, background .15s;
  vertical-align: middle;
  line-height: 1.6;
}
.credit-copy-btn:hover { border-color: var(--accent); color: var(--accent); background: var(--accent-dim); }
.credit-copy-btn.copied { border-color: #6ddb8f; color: #6ddb8f; background: rgba(109,219,143,.08); }
.credit-copy-btn svg { width: 11px; height: 11px; flex-shrink: 0; }

/* 依頼の流れ */
.steps { display: flex; flex-direction: column; }
.step { display: grid; grid-template-columns: 48px 1fr; gap: 0 18px; position: relative; }
.step:not(:last-child) .step-line {
  position: absolute; left: 23px; top: 48px; bottom: 0;
  width: 1px; background: var(--border);
}
.step-num {
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--mono); font-size: 12px; font-weight: 500;
  color: var(--accent);
  border: 1px solid var(--border2);
  border-radius: 50%;
  background: var(--bg2);
  flex-shrink: 0; position: relative; z-index: 1;
}
.step-body { padding: 10px 0 36px; }
.step-body h3 { font-size: 15px; font-weight: 500; margin-bottom: 9px; color: var(--text); }
.step-body p { color: var(--sub); font-size: 14px; line-height: 1.9; }
.step-body ul { list-style: none; margin-top: 9px; display: flex; flex-direction: column; gap: 4px; }
.step-body ul li { font-size: 13px; font-family: var(--mono); color: var(--sub); padding-left: 14px; position: relative; }
.step-body ul li::before { content: '—'; position: absolute; left: 0; color: var(--border2); }

.template-block { margin-top: 40px; border: 1px solid var(--border); border-radius: var(--r); overflow: hidden; }
.template-head {
  background: var(--bg3); padding: 9px 16px;
  font-family: var(--mono); font-size: 12px; color: var(--muted);
  border-bottom: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center;
}
.copy-btn { font-family: var(--mono); font-size: 12px; color: var(--accent); background: none; border: none; cursor: pointer; padding: 0; white-space: nowrap; flex-shrink: 0; }
.copy-btn:hover { text-decoration: underline; }
.template-sub { font-family: var(--mono); font-size: 11px; color: var(--muted); padding: 8px 16px 10px; background: var(--bg2); border-top: 1px solid var(--border); }
.template-block pre {
  background: var(--bg2); padding: 18px 20px;
  font-family: var(--mono); font-size: 13px; line-height: 2.1;
  color: var(--text); overflow-x: auto;
}
.f-key { color: var(--sub); }

/* overview */
.service-overview {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 36px;
}
@media (max-width: 520px) {
  .service-overview { grid-template-columns: repeat(2, 1fr); }
}
.service-overview-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}
.service-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 18px 12px 16px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--r);
  text-align: center;
}
.service-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--accent-dim);
  border: 1px solid rgba(107,114,216,.25);
  color: var(--accent);
  flex-shrink: 0;
}
.service-icon svg { width: 16px; height: 16px; }
.service-name {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  color: var(--text);
  letter-spacing: .04em;
}
.service-desc {
  font-size: 11px;
  color: var(--muted);
  line-height: 1.5;
}

/* price */
.price-section { margin-bottom: 36px; }
.price-h {
  font-family: var(--mono); font-size: 12px; color: var(--muted);
  letter-spacing: .1em; text-transform: uppercase; margin-bottom: 10px;
}
.price-table { width: 100%; border-collapse: collapse; border: 1px solid var(--border); border-radius: var(--r); overflow: hidden; }
.price-table td {
  padding: 12px 16px; font-size: 14px;
  border-bottom: 1px solid var(--border);
  vertical-align: middle; color: var(--sub); background: var(--bg3);
}
.price-table tr:last-child td { border-bottom: none; }
.price-table td:last-child { text-align: right; font-family: var(--mono); font-weight: 500; color: #fff; white-space: nowrap; width: 130px; }
.price-table .muted-row td { color: var(--sub); background: var(--bg3); }
.price-table .muted-row td:last-child { color: #fff; }
.note-small, .note-paren { font-size: 12px; color: var(--muted); display: block; margin-top: 3px; }
.discount-box {
  display: flex; gap: 10px; align-items: flex-start;
  background: var(--accent-dim); border: 1px solid rgba(107,114,216,.3);
  border-radius: var(--r); padding: 13px 16px;
  font-size: 14px; color: var(--sub); line-height: 1.85; margin-bottom: 24px;
}
.discount-box::before { content: '↻'; color: var(--accent); font-size: 15px; flex-shrink: 0; line-height: 1.5; }
.payment-section { margin-top: 4px; }
.payment-label { font-family: var(--mono); font-size: 12px; color: var(--muted); letter-spacing: .08em; text-transform: uppercase; margin-bottom: 12px; }
.payment-row { display: flex; flex-direction: column; gap: 10px; }
.pay-tags { display: flex; gap: 6px; flex-wrap: wrap; }
.pay-tag { font-family: var(--mono); font-size: 12px; color: var(--sub); border: 1px solid var(--border2); border-radius: 20px; padding: 3px 11px; }
.pay-tag-restricted {
  font-family: var(--mono); font-size: 12px; color: var(--sub);
  border: 1px solid var(--border2); border-radius: 20px; padding: 3px 11px;
  display: inline-flex; align-items: center; gap: 5px;
}
.pay-tag-restricted::before {
  content: '!';
  display: inline-flex; align-items: center; justify-content: center;
  width: 13px; height: 13px; border-radius: 50%;
  background: var(--border2); color: var(--text);
  font-size: 9px; font-weight: 700; flex-shrink: 0;
}
.card-logos { height: 24px; width: auto; display: block; border-radius: 4px; padding: 2px 4px; background: #fff; }
.card-logos-inline { display: flex; gap: 4px; align-items: center; flex-wrap: wrap; padding-left: 2px; }
.card-brand { font-family: var(--mono); font-size: 10px; font-weight: 400; color: var(--muted); background: var(--bg3); border: 1px solid var(--border); border-radius: 3px; padding: 2px 5px; letter-spacing: .03em; white-space: nowrap; }
.price-footnote { margin-top: 16px; font-family: var(--mono); font-size: 12px; color: var(--muted); line-height: 2.1; }
.footnote-badge {
  display: inline-flex; align-items: center; justify-content: center;
  width: 13px; height: 13px; border-radius: 50%;
  background: var(--border2); color: var(--text);
  font-size: 9px; font-weight: 700; vertical-align: middle; margin-right: 2px;
}

/* equip */
.equip-section-label {
  font-family: var(--mono); font-size: 11px; color: var(--muted);
  letter-spacing: .1em; text-transform: uppercase;
  margin-bottom: 12px; margin-top: 32px;
}
.equip-section-label:first-of-type { margin-top: 0; }
.equip-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 20px; }
.equip-grid-plugins { grid-template-columns: repeat(2, 1fr); }
.equip-card { border: 1px solid var(--border); border-radius: var(--r); overflow: hidden; }
.equip-card-head {
  background: var(--bg3); padding: 9px 14px;
  font-family: var(--mono); font-size: 13px; letter-spacing: .1em;
  color: var(--muted); text-transform: uppercase; border-bottom: 1px solid var(--border);
}
.equip-list { list-style: none; }
.equip-list li { display: block; padding: 10px 14px; border-bottom: 1px solid var(--border); font-size: 13px; color: var(--text); line-height: 1.6; }
.equip-list.equip-list-flex li { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; }
.equip-list li:last-child { border-bottom: none; }
.equip-list .brand { font-family: var(--mono); color: var(--muted); font-size: 13px; flex-shrink: 0; }


/* legal */
.law-block { background: var(--bg2); border: 1px solid var(--border); border-radius: var(--r); padding: 24px 26px; margin-bottom: 28px; }
.law-block h2 { font-size: 14px; font-weight: 500; font-family: var(--mono); letter-spacing: .05em; margin-bottom: 18px; color: var(--text); border-bottom: 1px solid var(--border); padding-bottom: 11px; }
.law-table { width: 100%; border-collapse: collapse; }
.law-table tr { border-bottom: 1px solid var(--border); }
.law-table tr:last-child { border-bottom: none; }
.law-table td { padding: 9px 0; font-size: 13px; vertical-align: top; line-height: 1.9; color: var(--muted); }
.law-table td:first-child { color: var(--text); width: 175px; padding-right: 18px; white-space: nowrap; }
.law-note { margin-top: 12px; padding: 11px 15px; background: var(--bg3); border-radius: var(--r); font-size: 12px; font-family: var(--mono); color: var(--sub); line-height: 1.9; }
.privacy-list { list-style: none; }
.privacy-list li { font-size: 13px; color: var(--sub); padding: 9px 0; border-bottom: 1px solid var(--border); line-height: 1.9; display: grid; grid-template-columns: 18px 1fr; gap: 10px; }
.privacy-list li:last-child { border-bottom: none; }
.privacy-list .idx { font-family: var(--mono); color: var(--accent); font-size: 12px; padding-top: 2px; }
.privacy-list strong { color: var(--text); font-weight: 500; }

/* お問い合わせフォーム */
.contact-form-wrap { max-width: 520px; }
.cf-back {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--mono); font-size: 12px; color: var(--muted);
  background: none; border: none; cursor: pointer; padding: 0;
  margin-bottom: 32px; transition: color .15s;
}
.cf-back:hover { color: var(--text); }
.cf-back svg { width: 13px; height: 13px; }
.cf-field { margin-bottom: 24px; }
.cf-label {
  display: flex; align-items: baseline; gap: 8px;
  font-family: var(--mono); font-size: 12px; letter-spacing: .06em;
  color: var(--sub); margin-bottom: 9px; text-transform: uppercase; font-weight: 400;
}
.cf-label small { font-size: 11px; letter-spacing: .01em; color: var(--muted); text-transform: none; font-weight: 300; }
.required-badge { font-size: 10px; color: #e07070; letter-spacing: .03em; font-weight: 400; text-transform: none; }
.cf-input, .cf-textarea {
  width: 100%; background: var(--bg3); border: 1px solid var(--border2);
  border-radius: var(--r); color: var(--text); font-family: var(--sans);
  font-size: 15px; font-weight: 300; padding: 13px 16px; outline: none;
  transition: border-color .15s, background .15s, box-shadow .15s;
  -webkit-appearance: none;
}
.cf-input::placeholder, .cf-textarea::placeholder { color: var(--border2); font-size: 14px; }
.cf-input:focus, .cf-textarea:focus { border-color: var(--accent); background: var(--bg2); box-shadow: 0 0 0 3px rgba(107,114,216,.12); }
.cf-input.invalid, .cf-textarea.invalid { border-color: #e07070; box-shadow: 0 0 0 3px rgba(224,112,112,.12); }
.cf-textarea { resize: vertical; min-height: 160px; line-height: 1.8; }
.cf-submit {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%; font-family: var(--mono); font-size: 13px; font-weight: 500;
  color: #fff; background: var(--accent); border: none; border-radius: var(--r);
  padding: 14px 24px; cursor: pointer; transition: background .15s;
  letter-spacing: .06em; margin-top: 8px;
}
.cf-submit:hover { background: var(--accent2); }
.cf-submit:disabled { opacity: .5; cursor: not-allowed; }
.cf-status { margin-top: 16px; font-family: var(--mono); font-size: 12px; padding: 12px 16px; border-radius: var(--r); display: none; }
.cf-status.ok  { color: #6ddb8f; background: rgba(109,219,143,.08); border: 1px solid rgba(109,219,143,.25); display: block; }
.cf-status.err { color: #e07070; background: rgba(224,112,112,.08); border: 1px solid rgba(224,112,112,.25); display: block; }
.cf-validate-msg {
  display: none; margin-top: 10px; font-family: var(--mono); font-size: 12px;
  color: #e07070; padding: 10px 14px; border-radius: var(--r);
  background: rgba(224,112,112,.08); border: 1px solid rgba(224,112,112,.25);
}

/* footer */
footer { border-top: 1px solid var(--border); padding: 22px 0 32px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
.f-logo { font-family: var(--mono); font-size: 12px; color: var(--muted); }
.f-logo span { color: var(--accent); }
.f-links { display: flex; gap: 16px; align-items: center; }
.f-links a { font-family: var(--mono); font-size: 12px; color: var(--muted); transition: color .15s; display: inline-flex; align-items: center; gap: 5px; }
.f-links a:hover { color: var(--text); }
.f-links a svg { width: 13px; height: 13px; flex-shrink: 0; }

/* responsive */
@media (max-width: 640px) {
  header { flex-wrap: wrap; gap: 10px; }
  nav { width: 100%; justify-content: flex-start; }
  nav a { padding: 5px 9px; font-size: 11px; }
  .logo-banner { height: 38px; max-width: 220px; }
  .spec-grid { grid-template-columns: 1fr 1fr; }
  .hero-tagline { font-size: 22px; }
  .law-table td:first-child { width: 110px; font-size: 12px; }
}
/* YouTube */
.works-btn-row { display: flex; align-items: center; gap: 10px; margin-top: 28px; }
.works-yt-link {
  display: none;
  align-items: center;
  gap: 6px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  color: #fff;
  background: #ff0000;
  border: 1px solid #cc0000;
  border-radius: var(--r);
  padding: 6px 12px;
  white-space: nowrap;
  flex-shrink: 0;
  transition: color .15s, border-color .15s, background .15s;
  text-decoration: none;
}
.works-yt-link:hover { background: #cc0000; border-color: #aa0000; color: #fff; }
.works-yt-link svg { width: 13px; height: 13px; flex-shrink: 0; }
.works-yt-link.visible { display: inline-flex; }
.works-btn-row .works-btn { margin-top: 0; }

@media (max-width: 520px) { .equip-grid, .equip-grid-plugins { grid-template-columns: 1fr; } }
@media (max-width: 400px) { .spec-grid { grid-template-columns: 1fr; } }
