/* ─── Hoopoetech homepage ─────────────────────────────────────────── */

:root {
  --bg: #0a0a0c;
  --bg-1: #101015;
  --bg-2: #16161c;
  --bg-3: #1c1c24;
  --steel: #262630;
  --line: rgba(255,255,255,0.08);
  --line-2: rgba(255,255,255,0.14);
  --text: #f3f3f5;
  --text-2: #b3b6bf;
  --text-3: #7a7d86;
  --text-4: #54565d;
  --accent: #FFE135;
  --accent-deep: #F0C808;
  --accent-dim: rgba(255,225,53,0.14);
  --red: #ef4444;
  --green: #84cc16;

  --serif: 'Inter Tight', system-ui, sans-serif;
  --sans:  'Inter', system-ui, sans-serif;
  --mono:  'JetBrains Mono', ui-monospace, monospace;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
button { font-family: inherit; }

/* ── Layout primitives ─────────────────────────────────────────── */

.container {
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 32px;
}
@media (max-width: 720px) {
  .container { padding: 0 20px; }
}

.section {
  position: relative;
  padding: 120px 0;
  border-top: 1px solid var(--line);
}
.section:first-of-type { border-top: 0; }
@media (max-width: 720px) {
  .section { padding: 80px 0; }
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}
.section-head .eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-head .eyebrow::before {
  content: '';
  width: 22px; height: 1px;
  background: var(--accent);
}
.section-head h2 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(36px, 4.4vw, 64px);
  line-height: 1.04;
  letter-spacing: -0.025em;
  margin: 0;
  max-width: 18ch;
  text-wrap: balance;
}
.section-head .head-aside {
  max-width: 36ch;
  color: var(--text-2);
  font-size: 15px;
  line-height: 1.65;
}

/* ── Buttons ───────────────────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 22px;
  border-radius: 0;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid var(--line-2);
  background: transparent;
  color: var(--text);
  transition: all 0.18s ease;
  text-decoration: none;
  white-space: nowrap;
}
.btn:hover { border-color: var(--text); background: rgba(255,255,255,0.04); }

.btn-primary {
  background: var(--accent);
  color: #111;
  border-color: var(--accent);
}
.btn-primary:hover {
  background: #fde047;
  border-color: #fde047;
  color: #111;
}
.btn-ghost { border-color: transparent; padding-left: 0; padding-right: 0; }
.btn-ghost:hover { background: transparent; color: var(--accent); border-color: transparent; }

.btn .arr { transition: transform 0.22s ease; }
.btn:hover .arr { transform: translateX(4px); }

/* ── Nav ───────────────────────────────────────────────────────── */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(10,10,12,0.72);
  border-bottom: 1px solid var(--line);
  overflow: visible;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 32px 18px 120px;
  max-width: none;
  margin: 0;
  gap: 24px;
  overflow: visible;
}
.nav-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
  min-width: 0;
  overflow: visible;
}
.brand-logo {
  height: 150px;
  width: auto;
  max-width: 100%;
  display: block;
  object-fit: contain;
}
@media (max-width: 1200px) {
  .nav-inner { padding: 16px 28px 16px 56px; }
  .brand-logo { height: 124px; }
}
@media (max-width: 900px) {
  .nav-inner { padding: 12px 20px !important; gap: 12px; }
  .brand-logo { height: 120px; }
  .nav-cta .btn { padding: 10px 14px; font-size: 11px; }
}
@media (max-width: 600px) {
  .nav-inner { padding: 10px 14px !important; }
  .brand-logo { height: 96px; }
  .nav-cta .btn { padding: 9px 12px; font-size: 10.5px; letter-spacing: 0.08em; }
  .nav-cta .btn .arr { display: none; }
}
@media (max-width: 380px) {
  .brand-logo { height: 78px; }
}
.nav-logo .mark {
  width: 28px; height: 28px;
  background: var(--accent);
  position: relative;
  display: grid;
  place-items: center;
}
.nav-logo .mark::before {
  content: '';
  width: 12px; height: 12px;
  background: #111;
  transform: rotate(45deg);
}
.nav-links {
  display: flex;
  gap: 36px;
  align-items: center;
}
.nav-links a {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-2);
  text-decoration: none;
  transition: color 0.15s ease;
}
.nav-links a:hover { color: var(--text); }
.nav-cta { display: flex; gap: 12px; align-items: center; }

/* ── Mobile menu (hamburger) ─────────────────────────────────── */
.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1px solid var(--line-2);
  cursor: pointer;
  padding: 0 11px;
  flex-shrink: 0;
}
.nav-burger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text);
  transition: transform 0.26s ease, opacity 0.2s ease;
}
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0;
  background: var(--bg-1);
  border-bottom: 1px solid var(--line);
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease;
  z-index: 49;
}
.mobile-menu.open {
  max-height: 100vh;
  padding: 96px 24px 32px;
}
.mobile-menu-links {
  display: flex;
  flex-direction: column;
}
.mobile-menu-links a {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  color: var(--text);
  text-decoration: none;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 24px;
  letter-spacing: -0.01em;
  opacity: 0;
  transform: translateX(-12px);
  transition: opacity 0.3s ease, transform 0.3s ease, color 0.18s ease;
}
.mobile-menu.open .mobile-menu-links a {
  opacity: 1;
  transform: translateX(0);
}
.mobile-menu-links a:hover { color: var(--accent); }
.mobile-menu-links a .mm-num {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.1em;
}
.mobile-menu-cta {
  width: 100%;
  justify-content: center;
  margin-top: 28px;
}
.mobile-menu-backdrop {
  position: fixed;
  inset: 0;
  top: 0;
  background: rgba(5,5,7,0.6);
  backdrop-filter: blur(2px);
  z-index: 48;
  animation: fadeIn 0.3s ease;
}

@media (max-width: 900px) {
  .nav-burger { display: flex; }
}
@media (max-width: 600px) {
  .mobile-menu-links a { font-size: 20px; padding: 16px 0; }
  .mobile-menu.open { padding-top: 80px; }
}
@media (max-width: 900px) {
  .nav-links { display: none; }
}

/* ── Hero ──────────────────────────────────────────────────────── */

.hero {
  position: relative;
  padding: 190px 0 100px;
  overflow: hidden;
  border-top: 0;
}
.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 80px 80px;
  background-position: -1px -1px;
  mask-image: radial-gradient(ellipse 80% 70% at 70% 40%, #000 30%, transparent 80%);
  pointer-events: none;
  opacity: 0.6;
}
.hero-meta {
  display: flex;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 64px;
  border-top: 1px dashed var(--line);
  padding-top: 16px;
}
.hero-meta span { display: inline-flex; align-items: center; gap: 8px; }
.hero-meta .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 3px rgba(132,204,22,0.18);
}

.hero h1 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(48px, 8.6vw, 132px);
  line-height: 0.92;
  letter-spacing: -0.04em;
  margin: 0;
  text-wrap: balance;
  max-width: 14ch;
}
.hero h1 .accent {
  color: var(--accent);
  position: relative;
  white-space: nowrap;
}
.hero h1 .accent::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0.06em;
  height: 0.06em;
  background: var(--accent);
  opacity: 0.3;
}

.hero-sub-row {
  margin-top: 56px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: end;
}
@media (max-width: 900px) {
  .hero-sub-row { grid-template-columns: 1fr; }
}
.hero-sub {
  color: var(--text-2);
  font-size: 18px;
  line-height: 1.55;
  max-width: 48ch;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-stats {
  margin-top: 84px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.hero-stat {
  padding: 24px 0;
  border-right: 1px solid var(--line);
  padding-right: 24px;
  padding-left: 24px;
}
.hero-stat:first-child { padding-left: 0; }
.hero-stat:last-child { border-right: 0; padding-right: 0; }
.hero-stat .n {
  font-family: var(--serif);
  font-size: clamp(32px, 3vw, 44px);
  font-weight: 700;
  letter-spacing: -0.025em;
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.hero-stat .n .suffix { font-size: 0.5em; color: var(--accent); font-weight: 600; }
.hero-stat .lbl {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-top: 6px;
}
@media (max-width: 720px) {
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .hero-stat { border-right: 0; border-bottom: 1px solid var(--line); }
  .hero-stat:nth-child(2n) { padding-right: 0; }
  .hero-stat:nth-child(2n+1) { padding-left: 0; }
}

/* Marquee (services tape) */
.marquee {
  margin-top: 60px;
  border-top: 1px dashed var(--line);
  border-bottom: 1px dashed var(--line);
  padding: 18px 0;
  overflow: hidden;
  position: relative;
}
.marquee-track {
  display: flex;
  gap: 60px;
  white-space: nowrap;
  animation: marquee 50s linear infinite;
  width: max-content;
}
.marquee span {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-3);
  display: inline-flex;
  align-items: center;
  gap: 60px;
}
.marquee span::after {
  content: '◆';
  color: var(--accent);
  font-size: 8px;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Hero video embed */
.hero-video {
  margin-top: 56px;
  max-width: 100%;
  width: 100%;
}
.hero-video-heading {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 24px;
  color: var(--text);
  text-wrap: balance;
  display: flex;
  align-items: center;
  gap: 16px;
}
.hero-video-heading::before {
  content: '';
  width: 32px;
  height: 3px;
  background: var(--accent);
  flex-shrink: 0;
}
.hero-video-frame {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 ratio */
  background: var(--bg-2);
  border: 1px solid var(--line-2);
  overflow: hidden;
}
.hero-video-frame::before,
.hero-video-frame::after {
  content: '';
  position: absolute;
  width: 16px; height: 16px;
  border: 2px solid var(--accent);
  z-index: 2;
  pointer-events: none;
}
.hero-video-frame::before { top: -1px; left: -1px; border-right: 0; border-bottom: 0; }
.hero-video-frame::after  { bottom: -1px; right: -1px; border-left: 0; border-top: 0; }
.hero-video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
@media (max-width: 720px) {
  .hero-video { margin-top: 40px; }
}

/* Hero side schematic */
.hero-schematic {
  position: absolute;
  top: 180px;
  right: -60px;
  width: 520px;
  height: 520px;
  pointer-events: none;
  opacity: 0.85;
}
@media (max-width: 1180px) { .hero-schematic { display: none; } }

/* ── About ─────────────────────────────────────────────────────── */

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
}
.about-body p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-2);
  margin: 0 0 20px;
}
.about-body p:first-of-type {
  font-size: 20px;
  color: var(--text);
  font-weight: 500;
}
.about-cta-card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  padding: 36px;
  position: relative;
}
.about-cta-card::before, .about-cta-card::after,
.corner-frame::before, .corner-frame::after {
  content: '';
  position: absolute;
  width: 14px; height: 14px;
  border: 1px solid var(--accent);
}
.about-cta-card::before { top: -1px; left: -1px; border-right: 0; border-bottom: 0; }
.about-cta-card::after  { bottom: -1px; right: -1px; border-left: 0; border-top: 0; }

.about-cta-card .label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.about-cta-card h3 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 30px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
}
.about-cta-card p {
  color: var(--text-2);
  font-size: 15px;
  margin: 0 0 24px;
}
.about-cta-card .quick-list {
  list-style: none;
  padding: 0; margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.about-cta-card .quick-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--text-2);
}
.about-cta-card .quick-list li::before {
  content: '';
  width: 8px; height: 8px; background: var(--accent);
  flex-shrink: 0;
}
.about-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  margin-top: 40px;
  border: 1px solid var(--line);
}
.about-feature {
  background: var(--bg);
  padding: 24px 22px;
}
.about-feature .idx {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--text-4);
  letter-spacing: 0.1em;
}
.about-feature h4 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 17px;
  margin: 8px 0 8px;
  letter-spacing: -0.01em;
}
.about-feature p {
  font-size: 13px;
  line-height: 1.55;
  color: var(--text-3);
  margin: 0;
}

/* ── Services ──────────────────────────────────────────────────── */

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
@media (max-width: 980px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .services-grid { grid-template-columns: 1fr; } }

.service {
  background: var(--bg-1);
  padding: 32px;
  position: relative;
  cursor: pointer;
  transition: background 0.22s ease, transform 0.22s ease;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}
.service:hover { background: var(--bg-2); }
.service:hover .service-hover { opacity: 1; transform: translateY(0); }
.service:hover .service-arr { color: var(--accent); transform: translate(4px, -4px); }
.service.dense { min-height: 220px; padding: 24px; }

.service-idx {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 0.14em;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.service-arr {
  color: var(--text-3);
  transition: all 0.22s ease;
  font-size: 18px;
}
.service-glyph {
  width: 72px; height: 72px;
  margin: 28px 0 24px;
  position: relative;
  color: var(--text);
}
.service h3 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -0.015em;
  margin: 0 0 10px;
  text-wrap: balance;
  color: var(--accent);
  position: relative;
  display: inline-block;
  padding-bottom: 4px;
}
.service h3::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--accent);
  opacity: 0.3;
}
.service p {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--text-3);
  margin: 0;
}
.service-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 16px;
}
.service-tag {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-3);
  padding: 4px 8px;
  border: 1px solid var(--line);
  background: var(--bg);
}

/* ── Case studies ──────────────────────────────────────────────── */

.cases-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
@media (max-width: 820px) { .cases-grid { grid-template-columns: 1fr; } }
.case-card {
  background: var(--bg-1);
  border: 1px solid var(--line);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: border-color 0.22s ease, transform 0.22s ease;
}
.case-card:hover { border-color: var(--line-2); }
.case-card:hover .case-img { transform: scale(1.03); }
.case-img-wrap {
  height: 280px;
  overflow: hidden;
  position: relative;
  background: var(--bg-2);
  border-bottom: 1px solid var(--line);
}
.case-img {
  width: 100%; height: 100%;
  transition: transform 0.6s ease;
}
.case-body { padding: 28px; }
.case-meta {
  display: flex;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 14px;
}
.case-meta .sector { color: var(--accent); }
.case-card h3 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 24px;
  line-height: 1.15;
  margin: 0 0 12px;
  letter-spacing: -0.015em;
}
.case-card p {
  font-size: 14px;
  color: var(--text-2);
  margin: 0 0 20px;
  line-height: 1.6;
}
.case-stats {
  display: flex;
  gap: 32px;
  padding-top: 18px;
  border-top: 1px dashed var(--line);
}
.case-stat .n {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.02em;
}
.case-stat .l {
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
  color: var(--text-3);
  letter-spacing: 0.1em;
}

/* ── Clients ───────────────────────────────────────────────────── */

.client-band {
  background: var(--bg-1);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.client-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border-left: 1px solid var(--line);
}
.client-cell {
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  height: 110px;
  display: grid;
  place-items: center;
  color: var(--text-3);
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: -0.01em;
  font-size: 16px;
  transition: color 0.2s ease, background 0.2s ease;
  padding: 16px;
}
.client-logo-img {
  max-width: 80%;
  max-height: 60%;
  object-fit: contain;
  filter: brightness(0) invert(0.7);
  transition: filter 0.2s ease;
}
.client-cell:hover .client-logo-img {
  filter: brightness(0) invert(1);
}
.client-cell:hover { color: var(--text); background: var(--bg-2); }
.client-cell .tiny {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-4);
  display: block;
  margin-top: 4px;
  text-align: center;
}
@media (max-width: 820px) { .client-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 480px) { .client-grid { grid-template-columns: repeat(2, 1fr); } }

.testimonial {
  margin-top: 80px;
  padding: 48px;
  border: 1px solid var(--line);
  background: var(--bg);
  position: relative;
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}
.testimonial blockquote {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.35;
  letter-spacing: -0.015em;
  margin: 0 0 28px;
  color: var(--text);
  text-wrap: balance;
}
.testimonial blockquote .mark {
  color: var(--accent);
  font-weight: 700;
}
.testimonial-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-3);
  flex-wrap: wrap;
  gap: 12px;
}
.testimonial-foot strong { color: var(--text); font-weight: 600; }

/* ── FAQs ──────────────────────────────────────────────────────── */

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 900px) { .faq-grid { grid-template-columns: 1fr; gap: 40px; } }

.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: 0;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  cursor: pointer;
  color: var(--text);
  font-family: var(--serif);
  font-weight: 500;
  font-size: 19px;
  letter-spacing: -0.01em;
  line-height: 1.3;
  transition: color 0.18s ease;
}
.faq-q:hover { color: var(--accent); }
.faq-q .idx {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--text-4);
  letter-spacing: 0.1em;
  flex-shrink: 0;
}
.faq-q .plus {
  width: 22px; height: 22px;
  position: relative;
  flex-shrink: 0;
}
.faq-q .plus::before, .faq-q .plus::after {
  content: '';
  position: absolute;
  background: var(--text);
  transition: all 0.22s ease;
}
.faq-q .plus::before { top: 50%; left: 0; right: 0; height: 1px; transform: translateY(-50%); }
.faq-q .plus::after  { left: 50%; top: 0; bottom: 0; width: 1px; transform: translateX(-50%); }
.faq-item.open .faq-q .plus::after { transform: translateX(-50%) rotate(90deg); opacity: 0; }
.faq-item.open .faq-q .plus::before { background: var(--accent); }
.faq-item.open .faq-q { color: var(--accent); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.32s ease;
}
.faq-item.open .faq-a { max-height: 400px; }
.faq-a-inner {
  padding: 0 0 28px 60px;
  color: var(--text-2);
  font-size: 15px;
  line-height: 1.65;
  max-width: 60ch;
}

/* ── Contact ───────────────────────────────────────────────────── */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 72px;
  align-items: start;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; gap: 48px; } }

.contact-info h2 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin: 16px 0 24px;
}
.contact-info p { color: var(--text-2); font-size: 16px; line-height: 1.65; margin: 0 0 32px; max-width: 38ch; }

.contact-rows { border-top: 1px solid var(--line); }
.contact-row {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}
.contact-row .k {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-3);
}
.contact-row .v { font-size: 15px; color: var(--text); }
.contact-row .v a { color: var(--text); text-decoration: none; border-bottom: 1px dashed var(--text-3); }
.contact-row .v a:hover { color: var(--accent); border-color: var(--accent); }

.contact-form {
  background: var(--bg-1);
  border: 1px solid var(--line);
  padding: 36px;
  position: relative;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}
.field label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-3);
}
.field label .req { color: var(--accent); margin-left: 2px; }
.input, .textarea, .select {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line-2);
  padding: 10px 0;
  font-family: var(--sans);
  font-size: 15px;
  color: var(--text);
  outline: none;
  transition: border-color 0.18s ease;
  width: 100%;
  resize: none;
}
.input:focus, .textarea:focus, .select:focus { border-bottom-color: var(--accent); }
.input::placeholder, .textarea::placeholder { color: var(--text-4); }
.textarea { min-height: 100px; }
.select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%237a7d86' fill='none' stroke-width='1.4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 4px center;
  padding-right: 24px;
  cursor: pointer;
}
.select option { background: var(--bg-1); color: var(--text); }
.row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 540px) { .row-2 { grid-template-columns: 1fr; } }

.file-drop {
  border: 1px dashed var(--line-2);
  padding: 18px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--text-3);
  text-align: center;
  cursor: pointer;
  transition: all 0.18s ease;
}
.file-drop:hover, .file-drop.drag { border-color: var(--accent); color: var(--accent); background: var(--accent-dim); }
.file-drop .name { color: var(--text); display: block; margin-top: 6px; }

.form-submit {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 28px;
  gap: 16px;
  flex-wrap: wrap;
}
.form-submit .legal { font-family: var(--mono); font-size: 10px; color: var(--text-4); letter-spacing: 0.08em; }

.form-success {
  border: 1px solid var(--accent);
  background: var(--accent-dim);
  padding: 36px;
  text-align: center;
}
.form-success h3 {
  font-family: var(--serif);
  font-size: 26px;
  margin: 0 0 12px;
  letter-spacing: -0.015em;
}
.form-success p { color: var(--text-2); margin: 0; }

/* ── Footer ────────────────────────────────────────────────────── */

.footer {
  border-top: 1px solid var(--line);
  padding: 80px 0 40px;
  background: var(--bg);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 64px;
}
@media (max-width: 820px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
.footer-col h5 {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-3);
  margin: 0 0 18px;
}
.footer-col a {
  color: var(--text-2);
  text-decoration: none;
  font-size: 14px;
  display: block;
  padding: 4px 0;
}
.footer-col a:hover { color: var(--accent); }
.footer-brand p { color: var(--text-3); font-size: 14px; line-height: 1.6; max-width: 36ch; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 28px;
  border-top: 1px dashed var(--line);
  font-family: var(--mono);
  font-size: 11px;
  color: var(--text-4);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  flex-wrap: wrap;
  gap: 12px;
}

/* ── Quote Modal ───────────────────────────────────────────────── */

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(5,5,7,0.78);
  backdrop-filter: blur(6px);
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 24px;
  animation: fadeIn 0.22s ease;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.modal {
  background: var(--bg-1);
  border: 1px solid var(--line-2);
  width: 100%;
  max-width: 720px;
  max-height: 90vh;
  overflow: auto;
  position: relative;
  animation: slideUp 0.28s ease;
}
@keyframes slideUp { from { transform: translateY(20px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.modal-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 32px;
  border-bottom: 1px solid var(--line);
}
.modal-head .step-meta {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-3);
}
.modal-head .step-meta strong { color: var(--accent); }
.modal-close {
  background: none; border: 0; cursor: pointer;
  color: var(--text-2); font-size: 22px; line-height: 1; padding: 4px 8px;
}
.modal-close:hover { color: var(--text); }

.modal-progress { height: 2px; background: var(--line); position: relative; }
.modal-progress .bar {
  height: 100%; background: var(--accent);
  transition: width 0.32s ease;
}

.modal-body { padding: 36px 32px; }
.modal-body h3 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 28px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 8px;
}
.modal-body .lead {
  color: var(--text-2);
  font-size: 14px;
  margin: 0 0 28px;
}

.service-picker {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}
@media (max-width: 540px) { .service-picker { grid-template-columns: 1fr; } }
.pick {
  background: transparent;
  border: 1px solid var(--line);
  padding: 16px 18px;
  cursor: pointer;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--text-2);
  font-family: var(--sans);
  font-size: 14px;
  transition: all 0.18s ease;
}
.pick:hover { border-color: var(--text-3); color: var(--text); }
.pick.selected { border-color: var(--accent); color: var(--text); background: var(--accent-dim); }
.pick .num {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 0.1em;
  width: 28px;
}

.chip-row { display: flex; gap: 8px; flex-wrap: wrap; }
.chip {
  border: 1px solid var(--line);
  background: transparent;
  color: var(--text-2);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 10px 16px;
  cursor: pointer;
  transition: all 0.18s ease;
}
.chip:hover { color: var(--text); border-color: var(--text-3); }
.chip.on { background: var(--accent); color: #111; border-color: var(--accent); }

.modal-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 32px;
  border-top: 1px solid var(--line);
  gap: 12px;
}

/* ── Service Image Cards (new 500x500 layout) ─────────────────── */

.services-image-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  background: transparent;
  border: 0;
}
@media (max-width: 1080px) { .services-image-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; } }
@media (max-width: 620px)  { .services-image-grid { grid-template-columns: 1fr; } }

.service-card-img {
  background: var(--bg-1);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: border-color 0.22s ease, transform 0.22s ease;
  position: relative;
}
.service-card-img:hover { border-color: var(--line-2); }
.service-card-img:hover .service-arr { color: var(--accent); transform: translate(4px, -4px); }

.service-card-img-frame {
  aspect-ratio: 1 / 1;
  width: 100%;
  background: var(--bg-2);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  position: relative;
}

.service-card-body {
  padding: 28px 28px 32px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 14px;
}
.service-card-body .service-idx {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 0.14em;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.service-card-body h3 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -0.015em;
  margin: 0;
  color: var(--accent);
  position: relative;
  display: inline-block;
  align-self: flex-start;
  padding-bottom: 4px;
  text-wrap: balance;
}
.service-card-body h3::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px; background: var(--accent); opacity: 0.3;
}
.service-card-body p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-2);
  margin: 0;
}
.service-card-body .service-tags { margin-top: 4px; }
.service-card-body .service-tag {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-3);
  padding: 4px 8px;
  border: 1px solid var(--line);
  background: var(--bg);
}
.service-quote-btn {
  margin-top: auto;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--text);
  background: none;
  border: 0;
  border-top: 1px solid var(--line);
  padding: 18px 0 4px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: color 0.18s ease, border-color 0.18s ease;
  width: 100%;
}
.service-quote-btn:hover { color: var(--accent); border-top-color: var(--accent); }
.service-quote-btn .arr { transition: transform 0.22s ease; }
.service-quote-btn:hover .arr { transform: translateX(4px); }

/* ── Design & Development section ──────────────────────────── */

.design-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 900px) { .design-grid { grid-template-columns: 1fr; gap: 48px; } }

.design-steps {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
}
.design-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}
.design-step-n {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.14em;
  color: var(--accent);
  padding-top: 4px;
}
.design-step h4 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.015em;
  margin: 0 0 8px;
  color: var(--text);
}
.design-step p {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-2);
  max-width: 50ch;
}

/* ── Why Choose Us ─────────────────────────────────────────── */

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
@media (max-width: 820px) { .why-grid { grid-template-columns: 1fr; } }

.why-item {
  background: var(--bg-1);
  padding: 32px 32px;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 20px;
  align-items: start;
}
.why-check {
  width: 40px; height: 40px;
  background: var(--accent);
  color: #1a1a1a;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.why-item h4 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 19px;
  letter-spacing: -0.015em;
  margin: 0 0 10px;
  color: var(--text);
  text-wrap: balance;
}
.why-item p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-2);
  max-width: 50ch;
}

/* ── Final CTA band ────────────────────────────────────────── */

.cta-band {
  background: var(--accent);
  color: #0a0a0c;
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,0,0,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.cta-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: end;
}
@media (max-width: 900px) {
  .cta-inner { grid-template-columns: 1fr; gap: 32px; align-items: start; }
}
.cta-band h2 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin: 0 0 20px;
  color: #0a0a0c;
  text-wrap: balance;
  max-width: 18ch;
}
.cta-band p {
  font-size: 17px;
  line-height: 1.6;
  color: rgba(10,10,12,0.78);
  margin: 0;
  max-width: 50ch;
}
.cta-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
@media (max-width: 900px) { .cta-actions { justify-content: flex-start; } }
.btn-dark {
  background: #0a0a0c;
  color: var(--accent);
  border-color: #0a0a0c;
}
.btn-dark:hover {
  background: #1a1a1a;
  border-color: #1a1a1a;
  color: var(--accent);
}
.btn-dark-outline {
  background: transparent;
  color: #0a0a0c;
  border-color: #0a0a0c;
}
.btn-dark-outline:hover {
  background: rgba(10,10,12,0.08);
  color: #0a0a0c;
  border-color: #0a0a0c;
}
/* ── Gallery (tabbed) ─────────────────────────────────────────── */

.gallery-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  border: 1px solid var(--line);
  border-bottom: 0;
  margin-bottom: 0;
}
.gallery-tab {
  flex: 1 1 auto;
  min-width: 130px;
  background: var(--bg-1);
  border: 0;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--text-3);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 16px 18px;
  cursor: pointer;
  transition: color 0.18s ease, background 0.18s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
}
.gallery-tab:hover { color: var(--text); background: var(--bg-2); }
.gallery-tab.active {
  color: #111;
  background: var(--accent);
  border-bottom-color: var(--accent);
}
.gallery-tab-num {
  font-size: 10px;
  opacity: 0.6;
}
.gallery-tab.active .gallery-tab-num { opacity: 0.8; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
@media (max-width: 980px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 680px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }

.gallery-cell {
  position: relative;
  border: 0;
  padding: 0;
  background: var(--bg-2);
  aspect-ratio: 4 / 3;
  overflow: hidden;
  cursor: pointer;
  display: block;
}
.gallery-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease, opacity 0.3s ease;
}
.gallery-cell:hover img { transform: scale(1.06); }
.gallery-cell-zoom {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #111;
  background: rgba(255,225,53,0);
  opacity: 0;
  transition: opacity 0.2s ease, background 0.2s ease;
}
.gallery-cell:hover .gallery-cell-zoom {
  opacity: 1;
  background: rgba(255,225,53,0.22);
}
.gallery-cell-zoom svg {
  background: var(--accent);
  border-radius: 50%;
  padding: 10px;
  width: 40px; height: 40px;
}
.gallery-empty {
  grid-column: 1 / -1;
  background: var(--bg-1);
  padding: 60px;
  text-align: center;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-3);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 120;
  background: rgba(5,5,7,0.92);
  backdrop-filter: blur(8px);
  display: grid;
  place-items: center;
  padding: 40px;
  animation: fadeIn 0.2s ease;
}
.lightbox-figure {
  margin: 0;
  max-width: 90vw;
  max-height: 86vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.lightbox-figure img {
  max-width: 100%;
  max-height: 76vh;
  object-fit: contain;
  border: 1px solid var(--line-2);
}
.lightbox-figure figcaption {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}
.lightbox-close {
  position: absolute;
  top: 24px; right: 28px;
  background: none;
  border: 0;
  color: var(--text);
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
  width: 48px; height: 48px;
}
.lightbox-close:hover { color: var(--accent); }
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--line-2);
  color: var(--text);
  font-size: 32px;
  width: 56px; height: 56px;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: all 0.18s ease;
}
.lightbox-nav:hover { background: var(--accent); color: #111; border-color: var(--accent); }
.lightbox-nav.prev { left: 28px; }
.lightbox-nav.next { right: 28px; }
@media (max-width: 600px) {
  .lightbox-nav { width: 44px; height: 44px; font-size: 26px; }
  .lightbox-nav.prev { left: 10px; }
  .lightbox-nav.next { right: 10px; }
  .lightbox-close { top: 12px; right: 12px; }
}

/* ── Floating WhatsApp button ──────────────────────────────────── */
.whatsapp-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: 0;
  height: 60px;
  padding: 0;
  background: #25D366;
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(37,211,102,0.35), 0 2px 6px rgba(0,0,0,0.3);
  overflow: hidden;
  transition: padding 0.28s ease, box-shadow 0.2s ease, transform 0.2s ease;
  animation: waPulse 2.6s ease-in-out infinite;
}
.whatsapp-fab svg {
  width: 60px;
  height: 60px;
  padding: 15px;
  flex-shrink: 0;
}
.whatsapp-fab-label {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  max-width: 0;
  opacity: 0;
  transition: max-width 0.28s ease, opacity 0.2s ease, padding 0.28s ease;
}
.whatsapp-fab:hover {
  box-shadow: 0 10px 30px rgba(37,211,102,0.45), 0 2px 8px rgba(0,0,0,0.35);
  animation-play-state: paused;
}
.whatsapp-fab:hover .whatsapp-fab-label {
  max-width: 220px;
  opacity: 1;
  padding-right: 22px;
}
@keyframes waPulse {
  0%, 100% { box-shadow: 0 8px 24px rgba(37,211,102,0.35), 0 0 0 0 rgba(37,211,102,0.4); }
  50% { box-shadow: 0 8px 24px rgba(37,211,102,0.35), 0 0 0 12px rgba(37,211,102,0); }
}
@media (max-width: 600px) {
  .whatsapp-fab { bottom: 16px; right: 16px; height: 54px; }
  .whatsapp-fab svg { width: 54px; height: 54px; padding: 13px; }
}
@media (prefers-reduced-motion: reduce) {
  .whatsapp-fab { animation: none; }
}

/* ── Animations ────────────────────────────────────────────────── */
@keyframes drawIn {
  from { stroke-dashoffset: var(--total); }
  to   { stroke-dashoffset: 0; }
}
@keyframes flicker {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.in { opacity: 1; transform: translateY(0); }

/* ── Helpers ───────────────────────────────────────────────────── */
.placeholder {
  width: 100%;
  height: 100%;
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,0.04) 0 14px, transparent 14px 28px),
    var(--bg-3);
  display: grid;
  place-items: center;
  color: var(--text-3);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.placeholder.tape::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 18px;
  background: repeating-linear-gradient(45deg, var(--accent) 0 10px, #111 10px 20px);
}
